Re: [U-Boot] [PATCH] common/dlmalloc: support reinit bin for fast reset

2010-12-30 Thread Mike Frysinger
On Friday, December 31, 2010 02:13:48 Macpaul Lin wrote: > There are several way to reset the u-boot. > Some platform will use watchdog timeout to reset the system. > Some platfrom will jump to 0x0 to reload the u-boot. > Some platform will jump to CONFIG_SYS_TEXT_BASE to do fast reset. > > This p

Re: [U-Boot] dlmalloc: sbrk_base error after cpu reset.

2010-12-30 Thread Macpaul Lin
HI all, 2010/12/24 Macpaul Lin : > Dear Wolfgang, > > 2010/12/23 Wolfgang Denk : >> Dear Macpaul Lin, >> >> In message you wrote: >>> >>> The problem is that, after the command "reset" under u-boot console. >>> The cpu will do flush I/D cache , disable interrupt , redo >>> mem_malloc_init(). >>>

[U-Boot] [PATCH] common/dlmalloc: support reinit bin for fast reset

2010-12-30 Thread Macpaul Lin
There are several way to reset the u-boot. Some platform will use watchdog timeout to reset the system. Some platfrom will jump to 0x0 to reload the u-boot. Some platform will jump to CONFIG_SYS_TEXT_BASE to do fast reset. This patch fixed the problem of static varible didn't cleared on the platfo

Re: [U-Boot] [PATCH v3 7/8] imximage: Add MX53 boot image support

2010-12-30 Thread Jason Liu
Hi, Stefano, 2010/12/31 Jason Liu : > Hi, Stefano, > > 2010/12/30 Stefano Babic : >> On 12/29/2010 01:49 PM, Jason Liu wrote: >>> This patch add the MX53 boot image support. >>> @@ -82,44 +213,91 @@ static int imximage_check_image_types(uint8_t type) >>>  static int imximage_verify_header(unsigned

Re: [U-Boot] Regarding the config.mk in U-boot TOP directory

2010-12-30 Thread Asokan, Shyama Trikkadeeri
Thanks Vaibhav! I will check this out. Regards, Shyama. -Original Message- From: Bedia, Vaibhav [mailto:vaibhav.be...@ti.com] Sent: Friday, December 31, 2010 9:43 AM To: Asokan, Shyama Trikkadeeri; U-Boot@lists.denx.de Subject: RE: [U-Boot] Regarding the config.mk in U-boot TOP directory

Re: [U-Boot] Regarding the config.mk in U-boot TOP directory

2010-12-30 Thread Bedia, Vaibhav
On Thursday, December 30, 2010 6:51 PM, Asokan, Shyama Trikkadeeri wrote: > Hi Wolfgang, > I have been facing an issue while building u-boot for AT91SAM9263ek > board. The environment I am using is CYGWIN and toolchain is the > Code sourcery toolchain. > > > The make configuration step works f

Re: [U-Boot] [PATCH v3 6/8] fsl_pmic: add I2C interface support

2010-12-30 Thread Jason Liu
Hi, Stefano, 2010/12/31 Stefano Babic : > On 12/29/2010 01:38 PM, Jason Liu wrote: >> This patch add I2C interface for fsl_pmic driver support >> >> Signed-off-by: Jason Liu >> >> --- >> Changes for v2: >> - Address the comments from Stefano, >>   - factor out the param_check in pmic_reg for both

[U-Boot] Which Version of Cross-Compiler should i choose?

2010-12-30 Thread sohu
Hello,everybody,i am new to uboot. now i choose v2010.09-rc2 Uboot for porting. I used to compiling uboot1.1.2 by arm-elf-20050511 and works well.Now i do not know which version of arm cross-compiler to choose? Any suggestions are appreciated ! Thanks all . By MrGates __

Re: [U-Boot] [PATCH v3 7/8] imximage: Add MX53 boot image support

2010-12-30 Thread Jason Liu
Hi, Stefano, 2010/12/30 Stefano Babic : > On 12/29/2010 01:49 PM, Jason Liu wrote: >> This patch add the MX53 boot image support. >> >> This patch has been tested on Freescale MX53EVK board >> and MX51EVK board. >> >> Signed-off-by: Jason Liu > > Hi Jason, > >> diff --git a/board/freescale/mx51ev

Re: [U-Boot] [PATCH v3 1/8] MX5: Add initial support for MX53 processor

2010-12-30 Thread Jason Liu
Hi, Stefano, 2010/12/30 Stefano Babic : > On 12/29/2010 01:38 PM, Jason Liu wrote: >> Add initial support for Freescale MX53 processor, >> >> - Add the iomux support and the pin definition, >> - Add the regs definition, clean up some unused def from mx51, >> - Add the low level init support, make

Re: [U-Boot] [PATCH v3 3/3] MX5:MX53: add initial support for MX53EVK board

2010-12-30 Thread Jason Liu
Hi, Stefano, 2010/12/30 Stefano Babic : > On 12/29/2010 01:38 PM, Jason Liu wrote: >> Add initial support for MX53EVK board support. >> FEC, SD/MMC, UART, I2C, have been support. >> >> Signed-off-by: Jason Liu > > Hi Jason, > >> Changes for v3: >> - put uart and fec iomux setting to board_early_i

[U-Boot] [PATCH] cmd_jffs2: Fix get_part_sector_size_nor() overflow bug

2010-12-30 Thread Peter Tyser
When a flash partition was positioned at the very top of a 32-bit memory map (eg located at 0xf800 with a size of 0x800) get_part_sector_size_nor() would incorrectly calculate the partition's ending address to 0x0 due to overflow. When the overflow occurred get_part_sector_size_nor() would

[U-Boot] [PATCH 1/2] Blackfin: bfin_sdh: set all timer bits before transfer

2010-12-30 Thread Mike Frysinger
From: Cliff Cai The timer register is 32bits, not 16bit, so 0x won't fill it. Write out -1 to make sure to fill the whole thing. Signed-off-by: Cliff Cai Signed-off-by: Mike Frysinger --- drivers/mmc/bfin_sdh.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/driv

[U-Boot] [PATCH 2/2] Blackfin: bfin_sdh: add support for multiblock operations

2010-12-30 Thread Mike Frysinger
From: Sonic Zhang Don't forget to count full data size for the multiblock operation request. Signed-off-by: Sonic Zhang Signed-off-by: Mike Frysinger --- drivers/mmc/bfin_sdh.c |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/mmc/bfin_sdh.c b/drivers/mm

[U-Boot] [PATCH] OMAP: Remove omapfb.debug=y from Beagle and Overo env settings

2010-12-30 Thread Steve Sakoman
The kernel DSS2 code is mature now, and keeping this setting hurts performance Signed-off-by: Steve Sakoman --- diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 56363f7..d0ef313 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@

Re: [U-Boot] [PATCH v3 6/8] fsl_pmic: add I2C interface support

2010-12-30 Thread Stefano Babic
On 12/29/2010 01:38 PM, Jason Liu wrote: > This patch add I2C interface for fsl_pmic driver support > > Signed-off-by: Jason Liu > > --- > Changes for v2: > - Address the comments from Stefano, > - factor out the param_check in pmic_reg for both spi/i2c > --- > drivers/misc/fsl_pmic.c | 52

[U-Boot] Please pull u-boot-ti/master

2010-12-30 Thread s-paulraj
Albert, Please pull u-boot-ti/master Regards, Sandeep The following changes since commit b722e646f9a6e2ebcae4845afc596b4dad4f7bcb: Sandeep Paulraj (1): DaVinci DM6467: Enhance board Support are available in the git repository at: git://git.denx.de/u-boot-ti.git master Sandeep Paul

Re: [U-Boot] [PATCH 1/2] pci: Add find_hose_by_cfg_addr() helper function

2010-12-30 Thread Kumar Gala
On Dec 17, 2010, at 5:30 PM, Kumar Gala wrote: > Being able to get back a pci_controller struct back by searching for it > means we can do things like dynamically allocate them or not have to > expose the static structures to all users. > > Signed-off-by: Kumar Gala > --- > drivers/pci/pci.c |

[U-Boot] Regarding the config.mk in U-boot TOP directory

2010-12-30 Thread Asokan, Shyama Trikkadeeri
Hi Wolfgang, I have been facing an issue while building u-boot for AT91SAM9263ek board. The environment I am using is CYGWIN and toolchain is the Code sourcery toolchain. The make configuration step works fine while "make CROSS_COMPILE " step throws the following error: make CROSS_COMPILE=arm-n

Re: [U-Boot] [PATCH v3 7/8] imximage: Add MX53 boot image support

2010-12-30 Thread Stefano Babic
On 12/29/2010 01:49 PM, Jason Liu wrote: > This patch add the MX53 boot image support. > > This patch has been tested on Freescale MX53EVK board > and MX51EVK board. > > Signed-off-by: Jason Liu Hi Jason, > diff --git a/board/freescale/mx51evk/imximage.cfg > b/board/freescale/mx51evk/imximage

Re: [U-Boot] [PATCH v3 1/8] MX5: Add initial support for MX53 processor

2010-12-30 Thread Stefano Babic
On 12/29/2010 01:38 PM, Jason Liu wrote: > Add initial support for Freescale MX53 processor, > > - Add the iomux support and the pin definition, > - Add the regs definition, clean up some unused def from mx51, > - Add the low level init support, make use the freq input of setup_pll macro Hi Jason

Re: [U-Boot] OMAP3: EVM: Linker errors across tool chain versions

2010-12-30 Thread Premi, Sanjeev
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Dirk Behme > Sent: Friday, December 17, 2010 4:10 PM > To: Wolfgang Denk > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] OMAP3: EVM: Linker errors across tool > chain versions

Re: [U-Boot] [PATCH v3 3/3] MX5:MX53: add initial support for MX53EVK board

2010-12-30 Thread Stefano Babic
On 12/29/2010 01:38 PM, Jason Liu wrote: > Add initial support for MX53EVK board support. > FEC, SD/MMC, UART, I2C, have been support. > > Signed-off-by: Jason Liu Hi Jason, > Changes for v3: > - put uart and fec iomux setting to board_early_init_f so that uart can print > out the early infor

[U-Boot] We Offer Private, Commercial and Personal Loans with Minimal annual Interest of 3% to any part of the world.

2010-12-30 Thread m-romano
Our loans within the range of $20,000 to $200,000,000 USD. Interested Persons should contact me via E-mail:___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [RFC PATCH v2] ARM: Avoid compiler optimization for usages of readb, writeb and friends.

2010-12-30 Thread Dirk Behme
On 30.12.2010 00:10, Alessandro Rubini wrote: > Dirk Behme: >> Just for the record: >> >> The trick is to ensure that the __arch_putx() containing the volatile >> is not the last statement in the GCC statement-expression. So, using >> something like >> >> #define writeb(v,c) ({ __iowmb(); _

[U-Boot] Regarding the config.mk in U-boot TOP directory

2010-12-30 Thread Asokan, Shyama Trikkadeeri
Hi Wolfgang, I have been facing an issue while building u-boot for AT91SAM9263ek board. The environment I am using is CYGWIN and toolchain is the Code sourcery toolchain. The make configuration step works fine while "make CROSS_COMPILE " step throws the following error: make CROSS_COMPILE

[U-Boot] Regarding the config.mk in U-boot TOP directory

2010-12-30 Thread Asokan, Shyama Trikkadeeri
Hi Wolfgang, I have been facing an issue while building u-boot for AT91SAM9263ek board. The environment I am using is CYGWIN and toolchain is the Code sourcery toolchain. The make configuration step works fine while "make CROSS_COMPILE " step throws the following error: make CROSS_COMPILE