Re: [U-Boot] [RFC][PATCH 00/21] [x86] 'Comming of Age'

2010-03-28 Thread Graeme Russ
Joakim Tjernlund wrote: > > Graeme Russ wrote on 2010/03/27 12:54:03: >> Joakim Tjernlund wrote: >>> I did a few months ago for MPC83xx and sent it to the list. There was some >>> discussion but in the end it wasn't applied because it was too invasive. >>> PPC is especially bad as it needs to rel

[U-Boot] [PATCH v4 tabify] net: add altera triple speeds ethernet mac driver

2010-03-28 Thread Thomas Chou
This driver supports the Altera triple speeds 10/100/1000 ethernet mac. Signed-off-by: Thomas Chou --- drivers/net/Makefile |1 + drivers/net/altera_tse.c | 978 ++ drivers/net/altera_tse.h | 512 include/netdev.h

Re: [U-Boot] [RFC][PATCH 00/21] [x86] 'Comming of Age'

2010-03-28 Thread Joakim Tjernlund
Graeme Russ wrote on 2010/03/28 09:38:47: > > Joakim Tjernlund wrote: > > > > Graeme Russ wrote on 2010/03/27 12:54:03: > >> Joakim Tjernlund wrote: > >>> I did a few months ago for MPC83xx and sent it to the list. There was some > >>> discussion but in the end it wasn't applied because it was to

[U-Boot] [PATCH V2] Moved board specific values in config file

2010-03-28 Thread Stefano Babic
The lowlevel_init file contained some hard-coded values to setup the RAM. These board related values are moved into the board configuration file. Signed-off-by: Stefano Babic --- cpu/arm_cortexa8/mx51/lowlevel_init.S |5 - include/configs/mx51evk.h |3 +++ 2 files changed

Re: [U-Boot] [PATCH] using AT91_PMC_MCKR_MDIV_ instead of LEGACY one in at91/clock.c

2010-03-28 Thread Tom
Asen Dimov wrote: > Signed-off-by: Asen Dimov > --- > cpu/arm926ejs/at91/clock.c |3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/cpu/arm926ejs/at91/clock.c b/cpu/arm926ejs/at91/clock.c > index b06d760..ecf91f5 100644 > --- a/cpu/arm926ejs/at91/clock.c > +++ b/cpu/

[U-Boot] cant not enter uboot command line

2010-03-28 Thread zs
when debuging the S3C2416, it could not enter uboot command line, as follows printed information, and then the there will be with no response when the key pressed. I'm very pleased for your advice! Thank you! CPU: s3c2...@400mhz mmc0: S Fclk = 800MHz, Hclk = 133MHz, Pclk

[U-Boot] [PATCH 1/2] Add AT91_ECC_BASE to at91sam9260.h to use atmel_nand with HW-ECC

2010-03-28 Thread Alexander Holler
--- include/asm-arm/arch-at91/at91sam9260.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/asm-arm/arch-at91/at91sam9260.h b/include/asm-arm/arch-at91/at91sam9260.h index a60a081..3bc7167 100644 --- a/include/asm-arm/arch-at91/at91sam9260.h +++ b/include/asm-arm/

[U-Boot] [PATCH 0/2] atmel_nand with HW-ECC

2010-03-28 Thread Alexander Holler
Hello, I've cherry-picked the patch for atmel_nand to enable HW-ECC on the master and had to apply some changes. Afterwards it seems to work on an AT91SAM9263. Thanks for that functionality. Regards, Alexander Holler ___ U-Boot mailing list U-Boot@l

[U-Boot] [PATCH 2/2] Fix compile errors for atmel_nand with hw-ecc and new SoC access

2010-03-28 Thread Alexander Holler
atmel_nand.c with HW-ECC doesn't compile with the new SoC access. Using CONFIG_AT91_LEGACY to circumvent the compile errors only leaves the driver in a state where it doesn't find the NAND. To use HW-ECC with atmel_nand one has to use CONFIG_SYS_NAND_ECC_BASE AT91_ECC0_BASE (instead of AT91_ECC0)

[U-Boot] [PATCH] nios2: add altera cf reset

2010-03-28 Thread Thomas Chou
This patch toggles power to reset the cf card. Signed-off-by: Thomas Chou --- board/altera/common/cfide.c | 34 ++ 1 files changed, 34 insertions(+), 0 deletions(-) create mode 100644 board/altera/common/cfide.c diff --git a/board/altera/common/cfide.c b/board

[U-Boot] [PATCH v2] nios2: add altera cf reset

2010-03-28 Thread Thomas Chou
This patch toggles power to reset the cf card. Signed-off-by: Thomas Chou --- board/altera/common/cfide.c | 33 + 1 files changed, 33 insertions(+), 0 deletions(-) create mode 100644 board/altera/common/cfide.c diff --git a/board/altera/common/cfide.c b/board/

[U-Boot] [PATCH v3] nios2: add altera cf reset

2010-03-28 Thread Thomas Chou
This patch toggles power to reset the cf card. Signed-off-by: Thomas Chou --- board/altera/common/cfide.c | 34 ++ 1 files changed, 34 insertions(+), 0 deletions(-) create mode 100644 board/altera/common/cfide.c diff --git a/board/altera/common/cfide.c b/board

Re: [U-Boot] [PATCH v3] nios2: add altera cf reset

2010-03-28 Thread Scott McNutt
Thomas, Please test your patches _before_ you post them. When you post three versions of the same patch all within thirty minutes, you do little to build any confidence in their quality or your reputation. Regards, --Scott ___ U-Boot mailing list U-Boo

Re: [U-Boot] [PATCH 0/8] ST-Ericsson Ux500 support

2010-03-28 Thread Tom
Rabin Vincent wrote: > This series adds base support for ST-Ericsson's Ux500 series of Cortex-A9 > based The big change I would like to see with this patchset is for the arm_cortexa9 cpu be added. > SoCs. Several peripherals are shared with the Nomadik family, for which > support already exists

Re: [U-Boot] [PATCH 1/8] Nomadik: move timer code to drivers/misc

2010-03-28 Thread Tom
Rabin Vincent wrote: > The Nomadik MTU driver will also be used on the U8500 SoC, so move it > out of platform-specific code. > > Acked-by: Alessandro Rubini > Acked-by: Michael Brandt > Signed-off-by: Rabin Vincent > --- > cpu/arm926ejs/nomadik/Makefile |2 +- > driver

Re: [U-Boot] [PATCH v3] nios2: add altera cf reset

2010-03-28 Thread Wolfgang Denk
Dear Thomas Chou, In message <1269782852-4347-1-git-send-email-tho...@wytron.com.tw> you wrote: > This patch toggles power to reset the cf card. > > Signed-off-by: Thomas Chou In addition to Scott's comment: Please always include a log of what was changed compared to the previous version of th

Re: [U-Boot] [PATCH 2/8] Nomadik: move gpio driver to drivers/gpio

2010-03-28 Thread Tom
Rabin Vincent wrote: > The Nomadik GPIO driver will also be used on the U8500 SoC, so move it > out of platform-specific code. > > Acked-by: Alessandro Rubini > Acked-by: Michael Brandt > Signed-off-by: Rabin Vincent > --- > board/st/nhk8815/nhk8815.c |2 +- > cpu/a

Re: [U-Boot] [PATCH 3/8] nomadik_gpio: get base address from platform code

2010-03-28 Thread Tom
Rabin Vincent wrote: > Change the Nomadik GPIO driver to get the base addresses from platform > specific code, since it will be used on multiple platforms with > different base addresses. > > Acked-by: Alessandro Rubini > Acked-by: Michael Brandt > Signed-off-by: Rabin Vincent > --- > board/st

Re: [U-Boot] [PATCH 4/8] nomadik_mtu: support configurable clock rates

2010-03-28 Thread Tom
Rabin Vincent wrote: > Change the Nomadik MTU driver to get the clock rate and prescaler from > the config file. Also remove the hardcoded divisors and do the > calculations based on the configured rate. > > Acked-by: Alessandro Rubini > Acked-by: Michael Brandt > Signed-off-by: Rabin Vincent

Re: [U-Boot] [PATCH 5/8] ARM Cortex A8: ifdef code calling lowlevel init

2010-03-28 Thread Tom
Rabin Vincent wrote: > Conditionally compile the code calling lowlevel_init, to avoid the > following build error when CONFIG_SKIP_LOWLEVEL_INIT is defined: > > start.S:218: undefined reference to `lowlevel_init' Move this change to the cpu/arm_cortexa9/start.S That will be created from comment

Re: [U-Boot] [PATCH 6/8] ux500: add SoC-specific code

2010-03-28 Thread Tom
Rabin Vincent wrote: > Add the base SoC code for ST-Ericsson's Ux500 series of Cortex A9 based > SoCs. > > Even though this is a Cortex A9, we put it under Cortex A8 to avoid code > duplication, since the CPU specific code can be used unmodified across > the two CPUs. > I would rather have arm_co

Re: [U-Boot] [PATCH 7/8] pl01x: add support for Ux500 variant of pl011

2010-03-28 Thread Tom
Rabin Vincent wrote: > The Ux500 variants of the pl011 have separate LCRH registers for RX and > TX. The TX register is at the same offset as the unmodified pl011, so > we need to additionally program only the RX register. > > Acked-by: Michael Brandt > Signed-off-by: Rabin Vincent This is ser

Re: [U-Boot] [PATCH 8/8] mop500: add board-specific files

2010-03-28 Thread Tom
Rabin Vincent wrote: > Add base board code for the MOP500 board, which uses the U8500 SoC. > > Acked-by: Michael Brandt > Tested-by: Michael Brandt > Signed-off-by: Rabin Vincent > --- > MAINTAINERS |4 ++ > MAKEALL |1 + MAINTAINERS and

[U-Boot] [STATUS] v2010.03-rc3 is out

2010-03-28 Thread Wolfgang Denk
Hello all, U-Boot v2010.03-rc3 has been released. Please help testing, and send any feedback / last minute patches ASAP. I'm trying to keep the release date of March 31. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Of

Re: [U-Boot] [PATCH v2] [ARM] at91: Add support for taskit AT91SAM9G20 boards

2010-03-28 Thread Tom
Achim Ehrlich wrote: > This adds support for the AT91SAM9G20 boards by taskit GmbH. > Both boards, Stamp9G20 and PortuxG20, are integrated in one file. > PortuxG20 is basically a SBC built around Stamp9G20. > > Signed-off-by: Achim Ehrlich > --- > MAINTAINERS|5 + > M

[U-Boot] git merge summary

2010-03-28 Thread Alexander Holler
Hello, may I ask if there is reason why merge commits don't have a summary? I find those summaries (enabled with git config [--global] merge.summary true) very hand to see what was changed with the merge commit. Regards, Alexander ___ U-Boot mailing

Re: [U-Boot] [PATCH 1/4] SPEAr : SMI erase and write timeouts increased

2010-03-28 Thread Tom
Vipin KUMAR wrote: > SMI driver fails because of low timeout values. Increasing the erase and write > timeouts to 3 seconds This is a huge timeout change. 2ms to 3000ms. If something goes wrong, it will seem like the board is hung. Is this ok? > > Signed-off-by: Vipin Kumar > --- > drivers/mtd

Re: [U-Boot] [PATCH 2/4] SPEAr : Placing ethaddr write and read within CONFIG_CMD_NET

2010-03-28 Thread Tom
Vipin KUMAR wrote: > ethaddr can be optionally read from i2c memory. So, chip_config command > supports > reading/writing hw mac id into i2c memory. Placing this code within > CONFIG_CMD_NET as this would only be needed when network interface is > configured > > Signed-off-by: Vipin Kumar > ---

Re: [U-Boot] [PATCH 4/4] SPEAr : macb driver support added for spear310 and spear320

2010-03-28 Thread Tom
Vipin KUMAR wrote: > Signed-off-by: Vipin Kumar > --- > board/spear/spear310/spear310.c |9 - > board/spear/spear320/spear320.c |6 +- > include/asm-arm/arch-spear/clk.h | 27 +++ > include/configs/spear3xx.h | 21 + > 4

Re: [U-Boot] [PATCH] [ARM] Convert at91 watchdog driver to new SoC access

2010-03-28 Thread Tom
Alexander Holler wrote: > Hello, > > Am 23.03.2010 16:58, schrieb Tom: >> Achim Ehrlich wrote: >>> This converts the at91 watchdog driver to new c structure >>> type to access registers of the SoC >>> >>> Signed-off-by: Achim Ehrlich >> Applied to arm/next > > Maybe this should go to the current

Re: [U-Boot] [STATUS] v2010.03-rc3 is out

2010-03-28 Thread Kumar Gala
On Mar 28, 2010, at 3:13 PM, Wolfgang Denk wrote: > Hello all, > > U-Boot v2010.03-rc3 has been released. > > Please help testing, and send any feedback / last minute patches ASAP. > > I'm trying to keep the release date of March 31. Doesn't look like you pushed to master the v2010.03-rc3 com

[U-Boot] [PATCH v4] nios2: add altera cf reset

2010-03-28 Thread Thomas Chou
This patch toggles power to reset the cf card. Signed-off-by: Thomas Chou --- fix checkpatch.pl error board/altera/common/cfide.c | 33 + 1 files changed, 33 insertions(+), 0 deletions(-) create mode 100644 board/altera/common/cfide.c diff --git a/board/alter

[U-Boot] [PATCH 1/4] s5p6442: Support Samsung s5p6442 SoC

2010-03-28 Thread Joonyoung Shim
This patch adds support s5p6442 SoC. The s5p6442 SoC is ARM1176 processor. Cc: Minkyu Kang Cc: Kyungmin Park Signed-off-by: Joonyoung Shim --- cpu/arm1176/s5p64xx/Makefile | 52 + cpu/arm1176/s5p64xx/clock.c | 163 +++ cpu/arm1176/s5p64xx/cpu

[U-Boot] [PATCH 2/4] s5p6442: Support onenand driver

2010-03-28 Thread Joonyoung Shim
This patch is for onenand support of s5p6442 SoC. Cc: Minkyu Kang Cc: Kyungmin Park Signed-off-by: Joonyoung Shim --- drivers/mtd/onenand/samsung.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/onenand/samsung.c b/drivers/mtd/onenand/samsung.c index

[U-Boot] [PATCH 3/4] s5p6442: Support serial driver

2010-03-28 Thread Joonyoung Shim
This patch is for serial support of s5p6442 SoC. Cc: Minkyu Kang Cc: Kyungmin Park Signed-off-by: Joonyoung Shim --- common/serial.c |2 +- drivers/serial/Makefile |1 + drivers/serial/serial_s5p.c |5 + include/serial.h|2 +- 4 files changed, 8

[U-Boot] [PATCH 4/4] s5p6442: Add support SMDK6442 board

2010-03-28 Thread Joonyoung Shim
This patch adds the new board SMDK6442 that uses s5p6442 SoC. Cc: Minkyu Kang Cc: Kyungmin Park Signed-off-by: Joonyoung Shim --- MAKEALL|1 + Makefile |3 + board/samsung/smdk6442/Makefile| 55 +++ board/samsu

Re: [U-Boot] [PATCH 1/4] SPEAr : SMI erase and write timeouts increased

2010-03-28 Thread Vipin KUMAR
On 3/29/2010 3:21 AM, Tom wrote: > Vipin KUMAR wrote: >> SMI driver fails because of low timeout values. Increasing the erase >> and write >> timeouts to 3 seconds > > This is a huge timeout change. > 2ms to 3000ms. > If something goes wrong, it will seem like the board is hung. > Is this ok? >

Re: [U-Boot] [PATCH 2/4] SPEAr : Placing ethaddr write and read within CONFIG_CMD_NET

2010-03-28 Thread Vipin KUMAR
On 3/29/2010 4:08 AM, Tom wrote: > Vipin KUMAR wrote: >> ethaddr can be optionally read from i2c memory. So, chip_config >> command supports >> reading/writing hw mac id into i2c memory. Placing this code within >> CONFIG_CMD_NET as this would only be needed when network interface is >> configured

Re: [U-Boot] [PATCH 4/4] SPEAr : macb driver support added for spear310 and spear320

2010-03-28 Thread Vipin KUMAR
On 3/29/2010 4:10 AM, Tom wrote: > Vipin KUMAR wrote: >> Signed-off-by: Vipin Kumar >> --- >> board/spear/spear310/spear310.c |9 - >> board/spear/spear320/spear320.c |6 +- >> include/asm-arm/arch-spear/clk.h | 27 +++ >> include/configs/spear3xx.h

Re: [U-Boot] [PATCH 4/4] s5p6442: Add support SMDK6442 board

2010-03-28 Thread Minkyu Kang
Dear Joonyoung Shim, On 29 March 2010 11:56, Joonyoung Shim wrote: > This patch adds the new board SMDK6442 that uses s5p6442 SoC. > > Cc: Minkyu Kang > Cc: Kyungmin Park > Signed-off-by: Joonyoung Shim > --- >  MAKEALL                                |    1 + >  Makefile                      

Re: [U-Boot] [PATCH 3/4] s5p6442: Support serial driver

2010-03-28 Thread Minkyu Kang
Dear Joonyoung Shim, On 29 March 2010 11:56, Joonyoung Shim wrote: > This patch is for serial support of s5p6442 SoC. > > Cc: Minkyu Kang > Cc: Kyungmin Park > Signed-off-by: Joonyoung Shim > --- >  common/serial.c             |    2 +- >  drivers/serial/Makefile     |    1 + >  drivers/serial

Re: [U-Boot] [PATCH 1/4] s5p6442: Support Samsung s5p6442 SoC

2010-03-28 Thread Minkyu Kang
Dear Joonyoung Shim, On 29 March 2010 11:56, Joonyoung Shim wrote: > This patch adds support s5p6442 SoC. The s5p6442 SoC is ARM1176 > processor. > > Cc: Minkyu Kang > Cc: Kyungmin Park > Signed-off-by: Joonyoung Shim > --- >  cpu/arm1176/s5p64xx/Makefile         |   52 + >  cpu/arm117