Re: [U-Boot] [PATCH v4 2/2] ORIGEN: Add MMC SPL support

2011-07-30 Thread Lei Wen
Hi Chander, On Fri, Jul 29, 2011 at 12:41 PM, Chander Kashyap wrote: > Adds mmc boot support. > > Signed-off-by: Chander Kashyap > --- >  mmc_spl/board/samsung/origen/Makefile             |  106 >  mmc_spl/board/samsung/origen/mmc_boot.c           |   57 + >  mmc_spl/boa

[U-Boot] [PATCH] environment.h: fix warning: "CONFIG_ENV_IS_EMBEDDED" redefined

2011-07-30 Thread Wolfgang Denk
Signed-off-by: Wolfgang Denk Cc: Stefan Roese --- include/environment.h |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/include/environment.h b/include/environment.h index e8b6e45..6394a96 100644 --- a/include/environment.h +++ b/include/environment.h @@ -124,7 +124,9

Re: [U-Boot] [PATCH] ARM MX31: fix clock.h: warning: function declaration isn't a prototype

2011-07-30 Thread Wolfgang Denk
Dear Fabio Estevam, In message you wrote: > > Stefano has already addressed this issue: > http://www.mail-archive.com/u-boot@lists.denx.de/msg57483.html Argh.. wasted effort then. Thanks for pointing out. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk

[U-Boot] [PATCH] fpga: constify to fix build warning

2011-07-30 Thread Wolfgang Denk
Fix compiler warning: cmd_fpga.c:318: warning: passing argument 3 of 'fit_image_get_data' from incompatible pointer type Adding the needed 'const' here entails a whole bunch of additonal changes all over the FPGA code. Signed-off-by: Wolfgang Denk Cc: Andre Schwarz Cc: Murray Jensen --- boar

Re: [U-Boot] [PATCH] ARM MX31: fix clock.h: warning: function declaration isn't a prototype

2011-07-30 Thread Fabio Estevam
Wolfgang, On Sat, Jul 30, 2011 at 7:37 PM, Wolfgang Denk wrote: ... >  unsigned int mxc_get_clock(enum mxc_clock clk); > -extern u32 imx_get_uartclk(); > +extern uint32_t imx_get_uartclk(void); >  extern void mx31_gpio_mux(unsigned long mode); >  extern void mx31_set_pad(enum iomux_pins pin, u32

[U-Boot] [PATCH 3/3 v2] cfb_console.c: checkpatch cleanup

2011-07-30 Thread Wolfgang Denk
Fix the following: ERROR: do not initialise statics to 0 or NULL ERROR: do not use assignment in if condition Signed-off-by: Wolfgang Denk --- Changes: v2: Fix compile error / incomplete edit drivers/video/cfb_console.c | 16 ++-- 1 files changed, 10 insertions(+), 6 deletio

Re: [U-Boot] [PATCH 3/3] cfb_console.c: checkpatch cleanup

2011-07-30 Thread Wolfgang Denk
Dear Sergei, In message <4e341151.8080...@mvista.com> you wrote: > > > - if ((pGD = video_hw_init()) == NULL) > > + pGD = video_hw_init()) == ; > > Did you try to compile this? :-) Heh. What's your guess? Sorry, will send update. Sergei, for quite some time you have been performing c

[U-Boot] [PATCH] ARM MX31: fix clock.h: warning: function declaration isn't a prototype

2011-07-30 Thread Wolfgang Denk
Signed-off-by: Wolfgang Denk Cc: Stefano Babic Cc: Albert Aribaud --- arch/arm/include/asm/arch-mx31/clock.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/include/asm/arch-mx31/clock.h b/arch/arm/include/asm/arch-mx31/clock.h index fb035c4..d4565ac 100644 -

[U-Boot] [PATCH] Unify timer_init() and cpu_init() prototypes

2011-07-30 Thread Wolfgang Denk
Clean up some duplicated prototype declarations. Get rid of now useless AVR32 initcalls.h file. Signed-off-by: Wolfgang Denk Cc: Albert Aribaud Cc: Haavard Skinnemoen Cc: Graeme Russ --- arch/arm/include/asm/u-boot-arm.h |3 --- arch/avr32/include/asm/initcalls.h | 30 -

[U-Boot] [PATCH] ARM: fix error: conflicting types for 'setenv'

2011-07-30 Thread Wolfgang Denk
Also remove bogus comment. Signed-off-by: Zhong hongbo Changed commit message Signed-off-by: Wolfgang Denk Cc: Albert Aribaud --- arch/arm/include/asm/u-boot-arm.h |8 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/arch/arm/include/asm/u-boot-arm.h b/arch/arm/incl

[U-Boot] [PATCH] tqm834x.c: fix compiler warning

2011-07-30 Thread Wolfgang Denk
Fix: tqm834x.c:299: warning: passing argument 1 of 'get_ram_size' discards qualifiers from pointer target type Signed-off-by: Wolfgang Denk Cc: Kim Phillips Cc: Kumar Gala --- board/tqc/tqm834x/tqm834x.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/tqc/t

Re: [U-Boot] "armv7: integrate cache maintenance support" breaks km_kirkwood ethernet

2011-07-30 Thread Wolfgang Denk
Dear Aneesh V, In message <4e32c223.2050...@ti.com> you wrote: > > I had written a small write-up on this earlier today in the below > thread: > http://marc.info/?l=u-boot&m=131193466800729&w=2 Thanks. > I had done extensive testing on the armv7 cache-maintenance APIs by > creating coherency is

Re: [U-Boot] [PATCH] Fix the Double defind for setenv

2011-07-30 Thread Wolfgang Denk
Dear Zhong Hongbo, In message <1312046929-10260-2-git-send-email-bocui...@gmail.com> you wrote: > From: seedshope > > setenv is defined common.h. We do not need re-defined it Thanks, but there are some more function prototypes in this block which are actually bogus. I have a more complete clea

[U-Boot] Fix the Double defind for setenv on ARM platform

2011-07-30 Thread Zhong Hongbo
Hi all, Today, I test s5p_goni board 1. I have found two issue: (1) Double defind setenv I found setenv defind in the file of include/common.h and arch/arm/include/asm/u-boot-arm.h. At the same time, common.h include u-boot-arm.h head file. (2) The type of parameters is inconsistent for the set

[U-Boot] [PATCH] Fix the Double defind for setenv

2011-07-30 Thread Zhong Hongbo
From: seedshope setenv is defined common.h. We do not need re-defined it Zhong hongbo --- arch/arm/include/asm/u-boot-arm.h |8 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/arch/arm/include/asm/u-boot-arm.h b/arch/arm/include/asm/u-boot-arm.h index 3904027..e3fb

Re: [U-Boot] Coould not access ftp://ftp.denx.de/pub/u-boot/

2011-07-30 Thread Wolfgang Denk
Dear Zaheer Sheriff, In message <4e33c850.6070...@easunreyrolle.com> you wrote: > I could not access the ftp server for u boot source code download .. > please can anybody help me out..!! > I have been trying to access the site for the past two days...!! The server ist working fine. I cannot se

Re: [U-Boot] toolchain for u-boot

2011-07-30 Thread Angelo Dureghello
On 30/07/2011 13:47, Angelo Dureghello wrote: > On 30/07/2011 13:05, Wolfgang Wegner wrote: >> Hi Angelo, >> >> On Sat, Jul 30, 2011 at 11:06:56AM +0200, Angelo Dureghello wrote: >>> hi all, >>> >>> i have some issues with an mcf5307 (coldfire, see my previous post of 38 >>> Jul). >>> >>> I am now

Re: [U-Boot] status of patches in usb next branch

2011-07-30 Thread Kumar Gala
On Jul 30, 2011, at 5:29 AM, Remy Bohmer wrote: > Hi, > > 2011/7/11 John Rigby : >> Remy, >> >> Are the patches in your next branch candidates for moving to master >> and doing a pull request or is there still work to be done? > > Things have been pushed to u-boot-usb master,and there will be

Re: [U-Boot] [PATCH 3/3] cfb_console.c: checkpatch cleanup

2011-07-30 Thread Sergei Shtylyov
Hello. On 29-07-2011 23:55, Wolfgang Denk wrote: > Fix the following: > ERROR: do not initialise statics to 0 or NULL > ERROR: do not use assignment in if condition > Signed-off-by: Wolfgang Denk > --- > drivers/video/cfb_console.c | 16 ++-- > 1 files changed, 10 insertions(+)

Re: [U-Boot] toolchain for u-boot

2011-07-30 Thread Angelo Dureghello
On 30/07/2011 13:05, Wolfgang Wegner wrote: > Hi Angelo, > > On Sat, Jul 30, 2011 at 11:06:56AM +0200, Angelo Dureghello wrote: >> hi all, >> >> i have some issues with an mcf5307 (coldfire, see my previous post of 38 >> Jul). >> >> I am now suspecting of some differences in the toolchain. >> >>

Re: [U-Boot] toolchain for u-boot

2011-07-30 Thread Wolfgang Wegner
Hi Angelo, On Sat, Jul 30, 2011 at 11:06:56AM +0200, Angelo Dureghello wrote: > hi all, > > i have some issues with an mcf5307 (coldfire, see my previous post of 38 Jul). > > I am now suspecting of some differences in the toolchain. > > Is there a specific gcc toolchain (or gcc version) require

Re: [U-Boot] [PATCH 47/52] ARM: remove broken "at91sam9261ek" / "at91sam9g10ek" boards

2011-07-30 Thread Remy Bohmer
Hi Wolfgang, 2011/7/18 Wolfgang Denk : > Signed-off-by: Wolfgang Denk > Cc: Stelian Pop > Cc: Sedji Gaouaou > --- >  MAINTAINERS                               |    2 - >  MAKEALL                                   |    2 - >  Makefile                                  |   23 --- >  board/atmel/at9

Re: [U-Boot] Coould not access ftp://ftp.denx.de/pub/u-boot/

2011-07-30 Thread Anatolij Gustschin
Hi, On Sat, 30 Jul 2011 14:31:04 +0530 Zaheer Sheriff wrote: > I could not access the ftp server for u boot source code download .. > please can anybody help me out..!! > I have been trying to access the site for the past two days...!! Please try http://git.denx.de/?p=u-boot.git;a=snapshot;h=

Re: [U-Boot] [PATCH V4] I2C: mxc_i2c rework

2011-07-30 Thread Marek Vasut
On Saturday, July 30, 2011 08:42:19 AM Jason Hui wrote: > Hi, Marek, > > On Sat, Jul 30, 2011 at 1:09 AM, Marek Vasut wrote: > > On Friday, July 29, 2011 01:24:49 PM Jason Hui wrote: > >> Hi, Marek, > >> > >> On Fri, Jul 29, 2011 at 5:32 PM, Marek Vasut wrote: > >> > Rewrite the mxc_i2c driver.

Re: [U-Boot] status of patches in usb next branch

2011-07-30 Thread Remy Bohmer
Hi, 2011/7/11 John Rigby : > Remy, > > Are the patches in your next branch candidates for moving to master > and doing a pull request or is there still work to be done? Things have been pushed to u-boot-usb master,and there will be a pull-request. Kind regards, Remy

[U-Boot] Coould not access ftp://ftp.denx.de/pub/u-boot/

2011-07-30 Thread Zaheer Sheriff
I could not access the ftp server for u boot source code download .. please can anybody help me out..!! I have been trying to access the site for the past two days...!! -- WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the p

[U-Boot] toolchain for u-boot

2011-07-30 Thread Angelo Dureghello
hi all, i have some issues with an mcf5307 (coldfire, see my previous post of 38 Jul). I am now suspecting of some differences in the toolchain. Is there a specific gcc toolchain (or gcc version) required to build u-boot ? thanks angelo ___ U-Boot mai