[U-Boot] Boot ELF image using tftpboot

2009-06-13 Thread Vered Zvi
Hello, I want to boot vxworks with uboot 1.3.4 using tftp. After I got the prompt I wrote: tftpboot. The vxworks ELF image was downloaded to the target but then I had to write bootelf. Should tftpboot load and run the ELF image upon download completion ? I also tried: tftp; bootelf.

Re: [U-Boot] Boot ELF image using tftpboot

2009-06-13 Thread Wolfgang Denk
Dear Vered Zvi, In message 0e3b1cafceb8484d8071762f8538e90317a...@eltimail.elta.co.il you wrote: I want to boot vxworks with uboot 1.3.4 using tftp. After I got the prompt I wrote: tftpboot. The vxworks ELF image was downloaded to the target but then I had to write bootelf. Should

[U-Boot] Add support for AT91 WDT

2009-06-13 Thread Giulio Benetti
-- Giulio Benetti RD Micronova srl diff -urpN u-boot-2009.03.orig/cpu/arm926ejs/at91/Makefile u-boot-2009.03/cpu/arm926ejs/at91/Makefile --- u-boot-2009.03.orig/cpu/arm926ejs/at91/Makefile 2009-03-21 22:04:41.0 +0100 +++ u-boot-2009.03/cpu/arm926ejs/at91/Makefile 2009-06-13

Re: [U-Boot] Add support for AT91 WDT

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
already present please read doc/README.at91 Best Regards, J. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [patch] rm9200 ethernet driver: board-specific quirk (csb337)

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:02 Fri 12 Jun , David Brownell wrote: On Friday 12 June 2009, Jean-Christophe PLAGNIOL-VILLARD wrote: On 11:14 Tue 09 Jun , David Brownell wrote: I'm not really a fan of this but ok if I see the csn337 board patch I meant to send that in before, thanks for the reminder.

[U-Boot] [PATCH 1/1] avr32/hsdramc: Move conditional compilation to Makefile

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Haavard Skinnemoen haavard.skinnem...@atmel.com --- cpu/at32ap/Makefile |2 +- cpu/at32ap/hsdramc.c |3 --- 2 files changed, 1 insertions(+), 4 deletions(-) diff --git a/cpu/at32ap/Makefile b/cpu/at32ap/Makefile

Re: [U-Boot] Add support for AT91 WDT

2009-06-13 Thread Giulio Benetti
Jean-Christophe PLAGNIOL-VILLARD wrote: already present please read doc/README.at91 Best Regards, J. That's right,sorry. -- Giulio Benetti RD Micronova srl Vigonza (PD) ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [PATCH 1/2] at91sam9: add watchdog support

2009-06-13 Thread Giulio Benetti
Jean-Christophe PLAGNIOL-VILLARD wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- Makefile |1 + doc/README.at91 |9 drivers/serial/atmel_usart.c |4 +- drivers/watchdog/Makefile

[U-Boot] [PATCH 2/5] pm9263: use macro instead of hardcode value for the lowlevel_init

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
optimize a few the RAM init Signed-off-by: Ilko Iliev il...@ronetix.at Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- board/ronetix/pm9263/lowlevel_init.S |2 +- board/ronetix/pm9263/pm9263.c|2 +- include/asm-arm/arch-at91/at91_pmc.h |1 +

[U-Boot] [PATCH 1/5] pm9263: lowlevel init update

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
move PSRAM init to pm9263.c this will allow us after to make the nor lowlevel_init generic Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- board/ronetix/pm9263/lowlevel_init.S | 17 + board/ronetix/pm9263/pm9263.c| 21 +

[U-Boot] [PATCH 4/5] at91sam9263ek: add nor flash support

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
this will allow you to store use it for the env and to boot directly U-Boot from Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Stelian Pop stel...@popies.net --- Makefile |9 + board/atmel/at91sam9263ek/Makefile|7 +-

[U-Boot] [PATCH 5/5] at91: unify nor boot support

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
the lowlevel init sequence is the same so unify it Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- board/atmel/at91sam9263ek/Makefile |3 - board/atmel/at91sam9263ek/lowlevel_init.S | 264 board/ronetix/pm9261/Makefile

[U-Boot] [PATCH 3/5] at91: add support for the PM9261 board of Ronetix GmbH

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
From: Ilko Iliev il...@ronetix.at The PM9261 board is based on the AT91SAM9261-EK board. Here is the page on Ronetix website: http://www.ronetix.at/starter_kit_9261.html Signed-off-by: Ilko Iliev il...@ronetix.at Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com ---

Re: [U-Boot] [PATCH 2/2] at91sam9263ek: active watchdog support via at91sam9263ek_wdt_config

2009-06-13 Thread Giulio Benetti
In this way the linux driver won't work(the one by Renaud CERRATO). Because it expects MR register not to be set, or to be set enabled. After I don't agree refreshing watchdog inside atmel_usart.c If u-boot hangs there instead of execute bootcmd, then the machine lies there forever. In my opinion

[U-Boot] [PATCH 1/1] malloc.h: protect it against multiple include

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- include/malloc.h |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/include/malloc.h b/include/malloc.h index 47154b0..a38464e 100644 --- a/include/malloc.h +++ b/include/malloc.h @@ -216,7 +216,8

Re: [U-Boot] [patch] rm9200 ethernet driver: board-specific quirk (csb337)

2009-06-13 Thread David Brownell
On Saturday 13 June 2009, Jean-Christophe PLAGNIOL-VILLARD wrote: The machine_is_X() macros are automatically #ifdeffed in the header; no size impact.  Read asm/mach-types.h ... If I use this pacth on the rm9200ek the u-boot.bin size will increase for nothing I'm not following you. The

Re: [U-Boot] [patch] rm9200 ethernet driver: board-specific quirk (csb337)

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
On 04:13 Sat 13 Jun , David Brownell wrote: On Saturday 13 June 2009, Jean-Christophe PLAGNIOL-VILLARD wrote: The machine_is_X() macros are automatically #ifdeffed in the header; no size impact.  Read asm/mach-types.h ... If I use this pacth on the rm9200ek the u-boot.bin size

Re: [U-Boot] [PATCH 2/2] at91sam9263ek: active watchdog support via at91sam9263ek_wdt_config

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
On 12:52 Sat 13 Jun , Giulio Benetti wrote: In this way the linux driver won't work(the one by Renaud CERRATO). Because it expects MR register not to be set, or to be set enabled. it's work we have test it you need to enable it in the at91bootstrap or in your lowlevel board config After I

Re: [U-Boot] [PATCH 1/1] avr32/hsdramc: Move conditional compilation to Makefile

2009-06-13 Thread Haavard Skinnemoen
Jean-Christophe PLAGNIOL-VILLARD wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Cc: Haavard Skinnemoen haavard.skinnem...@atmel.com Acked-by: Haavard Skinnemoen haavard.skinnem...@atmel.com ___ U-Boot mailing list

Re: [U-Boot] [PATCH 1/1] SMC911x driver fixed for NFS boot

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
On 23:04 Fri 12 Jun , Wolfgang Denk wrote: Dear Manikandan Pillai, In message 20090609220854.a1377832e...@gemini.denx.de I wrote: ... This patch (commit ID ca9c8a1e in the master branch) causes compile warnings on all systems that use this driver, for example: ... Please either

[U-Boot] [PATCH 1/2] smc911x: fix warning: large integer implicitly truncated to unsigned type

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
use smc911x_reg_read/smc911x_reg_write instead of smc911x_get_mac_csr/smc911x_set_mac_csr Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/net/smc911x.c | 10 +- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/net/smc911x.c

[U-Boot] [PATCH 2/2] smc911x: move function implementation for header to c

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- drivers/net/smc911x.c | 87 drivers/net/smc911x.h | 88 - 2 files changed, 87 insertions(+), 88 deletions(-) diff --git

Re: [U-Boot] [PATCH v2 1/3][repost] nand: Add Marvell Kirkwood NAND driver

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:34 Mon 08 Jun , Prafulla Wadaskar wrote: This patch adds a NAND driver for the Marvell Kirkwood SoC's. Acked-by: Stefan Roese s...@denx.de Signed-off-by: Prafulla Wadaskar prafu...@marvell.com --- Change log: v2: updated as per feedback for v1 (cosmetic change) Scott what is

Re: [U-Boot] [PATCH 4/4] ZOOM1 Add power reset button

2009-06-13 Thread Tom
Tom wrote: Menon, Nishanth wrote: -Original Message- From: Tom [mailto:tom@windriver.com] Sent: Friday, June 12, 2009 4:57 PM To: Jean-Christophe PLAGNIOL-VILLARD Cc: u-boot@lists.denx.de; Menon, Nishanth Subject: Re: [U-Boot] [PATCH 4/4] ZOOM1 Add power reset button */ void

Re: [U-Boot] [PATCH] Add AVR32 LCD support

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
diff --git a/drivers/video/atmel_lcdfb.c b/drivers/video/atmel_lcdfb.c index 3a51cc7..14f578e 100644 --- a/drivers/video/atmel_lcdfb.c +++ b/drivers/video/atmel_lcdfb.c @@ -42,6 +42,7 @@ short console_row; /* configurable parameters */ #define ATMEL_LCDC_CVAL_DEFAULT 0xc8

Re: [U-Boot] [PATCH 4/4] ZOOM1 Add power reset button

2009-06-13 Thread Nishanth Menon
looping in beagleboard for comments. Tom said the following on 06/13/2009 09:16 AM: Tom wrote: Menon, Nishanth wrote: -Original Message- From: Tom [mailto:tom@windriver.com] Sent: Friday, June 12, 2009 4:57 PM To: Jean-Christophe PLAGNIOL-VILLARD Cc:

Re: [U-Boot] where is the ethernet of S3C2410 initialized?

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
On 17:51 Fri 12 Jun , J.Hwan.Kim wrote: Hi, everyone I cannot find where the ethernet of SAMSUNG S3C2410 is initialized ? Does not S3C2410 use Ethernet for U-boot? IIRC the 2410 does not have any Ethernet IP include in the SOC so you will have to use a external chip as the VCMA9 with the

Re: [U-Boot] [PATCH 2/2] smc911x: move function implementation for header to c

2009-06-13 Thread Mike Frysinger
uhh, NACK -- changelog/comment as to why you're doing this and you just broke the smc911x_eeprom -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] [patch] rm9200 ethernet driver: boa rd-specific quirk (csb337)

2009-06-13 Thread Mike Frysinger
On Saturday 13 June 2009 08:28:23 Jean-Christophe PLAGNIOL-VILLARD wrote: On 04:13 Sat 13 Jun , David Brownell wrote: On Saturday 13 June 2009, Jean-Christophe PLAGNIOL-VILLARD wrote: The machine_is_X() macros are automatically #ifdeffed in the header; no size impact. Read

Re: [U-Boot] [patch] rm9200 ethernet driver: board-specific quirk?(csb337)

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:50 Sat 13 Jun , Mike Frysinger wrote: On Saturday 13 June 2009 08:28:23 Jean-Christophe PLAGNIOL-VILLARD wrote: On 04:13 Sat 13 Jun , David Brownell wrote: On Saturday 13 June 2009, Jean-Christophe PLAGNIOL-VILLARD wrote: The machine_is_X() macros are automatically

[U-Boot] [ANNOUNCE] ARM config scheme for board and machine update

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, Currently boards and arch define there own CONFIG_IXP or CONFIG_VCMA9 where they are also have a define in the mach-types.h so now to simplify linux code share and reduce duplicate define we switch to the linux style (please check the mach-types.h for it)

Re: [U-Boot] [patch] rm9200 ethernet driver: board-specific quirk?(csb337)

2009-06-13 Thread Mike Frysinger
On Saturday 13 June 2009 10:54:39 Jean-Christophe PLAGNIOL-VILLARD wrote: On 10:50 Sat 13 Jun , Mike Frysinger wrote: On Saturday 13 June 2009 08:28:23 Jean-Christophe PLAGNIOL-VILLARD wrote: On 04:13 Sat 13 Jun , David Brownell wrote: On Saturday 13 June 2009, Jean-Christophe

[U-Boot] [PATCH 1/1] at91: use Linux CONFIG scheme for board and arch

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- applied on testing branch with the following patch pm9263: lowlevel init update pm9263: use macro instead of hardcode value for the lowlevel_init at91: add support for the PM9261 board of Ronetix GmbH at91sam9263ek: add nor

Re: [U-Boot] [patch] rm9200 ethernet driver: board-specific quirk (csb337)

2009-06-13 Thread David Brownell
On Saturday 13 June 2009, Mike Frysinger wrote: See above.  There already *IS* such an #ifdef, but it's just not cluttering up the guts of that driver. you adding MUST have NO size impact on other board if we apply you code as it we will increase the size of u-boot for

[U-Boot] [PATCH v4 0/6] MX31: NAND boot for PDK boards.

2009-06-13 Thread Magnus Lilja
Hi all, This is the latest set of patches that introduces NAND boot support for the i.MX31 CPU in general and the PDK board especially. The patches apply on u-boot/next. For u-boot-arm/next I get an error from StGit when applying the CONFIG_PRELOADER patch but that's because the u-boot-arm/next

[U-Boot] [PATCH v4 1/6] ARM1136: Introduce CONFIG_PRELOADER macro.

2009-06-13 Thread Magnus Lilja
Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's in start.S. In preparation for adding support for NAND SPL the macro CONFIG_PRELOADER is introducted and replaces the CONFIG_ONENAND_IPL in start.S. Signed-off-by: Magnus Lilja lilja.mag...@gmail.com --- NOTE: This patch applies to

[U-Boot] [PATCH v4 2/6] MX31: Add NAND SPL for i.MX31.

2009-06-13 Thread Magnus Lilja
This patch adds the NAND SPL framework needed to boot i.MX31 boards from NAND. It has been tested on a i.MX31 PDK board with large page NAND. Small page NANDs should work as well, but this has not been tested. Note: The i.MX31 NFC uses a non-standard layout for large page NANDs, whether this is

[U-Boot] [PATCH v4 5/6] MX31: Add basic support for Freescale i.MX31 PDK board.

2009-06-13 Thread Magnus Lilja
Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board). This patch assumes that some other program performs the actual NAND boot. Signed-off-by: Magnus Lilja lilja.mag...@gmail.com --- MAINTAINERS |4 + MAKEALL |1 +

[U-Boot] [PATCH v4 6/6] MX31: Add NAND SPL boot support to i.MX31 PDK board.

2009-06-13 Thread Magnus Lilja
Signed-off-by: Magnus Lilja lilja.mag...@gmail.com --- MAKEALL |1 + Makefile| 14 +++- board/freescale/mx31pdk/config.mk |4 + board/freescale/mx31pdk/lowlevel_init.S | 114

[U-Boot] [PATCH v4 3/6] ARM: Add macros.h to be used in assembler file.

2009-06-13 Thread Magnus Lilja
From: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- Changes from last version: Added documentation for the macros. include/asm-arm/macro.h | 74 +++ 1 files changed,

Re: [U-Boot] [ANNOUNCE] ARM config scheme for board and machine update

2009-06-13 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message 20090613150259.gh25...@game.jcrosoft.org you wrote: Currently boards and arch define there own CONFIG_IXP or CONFIG_VCMA9 where they are also have a define in the mach-types.h so now to simplify linux code share and reduce

Re: [U-Boot] [PATCH 1/1] at91: use Linux CONFIG scheme for board and arch

2009-06-13 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message 1244911289-30585-1-git-send-email-plagn...@jcrosoft.com you wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- applied on testing branch with the following patch pm9263: lowlevel init update pm9263: use macro

[U-Boot] [RFC] Menu Frameworj

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, The following patch will introduce a menu framework that allow us to create list menu to simplify u-boot and make it more convivial for the end-user. This kind of menu is very usefull when you do not have a keyboard or a serial console attached to your

[U-Boot] [RFC/PATCH 1/2] Add menu Framework

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
Introduce a menu framework that allow us to create list menu to simplify u-boot and make it more convivial for the end-user. This kind of menu is very usefull when you do not have a keyboard or a serial console attached to your board to allow you to interract with u-boot For the develloper part,

[U-Boot] [RFC/PATCH 1/2] r2dplus: add menu example support

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
this patch is just an example to show you how to create your own menu using the C API. It will not be a part of the final version Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- board/renesas/r2dplus/Makefile | 12 --- board/renesas/r2dplus/menu_example.c |

Re: [U-Boot] [ANNOUNCE] ARM config scheme for board and machine update

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:06 Sat 13 Jun , Wolfgang Denk wrote: Dear Jean-Christophe PLAGNIOL-VILLARD, In message 20090613150259.gh25...@game.jcrosoft.org you wrote: Currently boards and arch define there own CONFIG_IXP or CONFIG_VCMA9 where they are also have a define in the mach-types.h

Re: [U-Boot] [PATCH 1/1] at91: use Linux CONFIG scheme for board and arch

2009-06-13 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:08 Sat 13 Jun , Wolfgang Denk wrote: Dear Jean-Christophe PLAGNIOL-VILLARD, In message 1244911289-30585-1-git-send-email-plagn...@jcrosoft.com you wrote: Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- applied on testing branch with the following

[U-Boot] [PATCH v4 4/6] i.MX31: Create a common device file.

2009-06-13 Thread Magnus Lilja
Signed-off-by: Magnus Lilja lilja.mag...@gmail.com --- cpu/arm1136/mx31/Makefile|1 + cpu/arm1136/mx31/devices.c | 56 ++ include/asm-arm/arch-mx31/mx31.h |3 ++ 3 files changed, 60 insertions(+), 0 deletions(-) create mode 100644

Re: [U-Boot] [PATCH 10/10] imx27lite: add support for imx27lite board from LogicPD

2009-06-13 Thread Paul Thomas
On Thu, Jun 11, 2009 at 3:38 PM, Paul Thomas pthomas8...@gmail.com wrote: Note that the old version of that code is available in the imx27lite branch of the u-boot-testing repository; see http://git.denx.de/?p=u-boot/u-boot-testing.git;a=shortlog;h=refs/heads/imx27lite Is this still the

Re: [U-Boot] [RFC] Menu Frameworj

2009-06-13 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message 20090613191011.gk25...@game.jcrosoft.org you wrote: Subject Typo: Frameworj The following patch will introduce a menu framework that allow us to create list menu to simplify u-boot and make it more convivial for the

Re: [U-Boot] [RFC/PATCH 1/2] Add menu Framework

2009-06-13 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message 1244920382-21434-1-git-send-email-plagn...@jcrosoft.com you wrote: Introduce a menu framework that allow us to create list menu to simplify u-boot and make it more convivial for the end-user. This kind of menu is very usefull when you do not

Re: [U-Boot] [RFC/PATCH 1/2] r2dplus: add menu example support

2009-06-13 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message 1244920382-21434-2-git-send-email-plagn...@jcrosoft.com you wrote: this patch is just an example to show you how to create your own menu using the C API. It will not be a part of the final version Signed-off-by: Jean-Christophe

Re: [U-Boot] [ANNOUNCE] ARM config scheme for board and machine update

2009-06-13 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message 20090613191644.gl25...@game.jcrosoft.org you wrote: The Kconfig support will be send with in days and it will be also mandatory to have switch to it before be include in it's Kconfig files How is this supposed to work with non-ARM

Re: [U-Boot] [PATCH 1/1] at91: use Linux CONFIG scheme for board and arch

2009-06-13 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message 20090613191845.gm25...@game.jcrosoft.org you wrote: NAK. The ARM mach ID thing is evil, and shall not spread into the U-Boot code - especially since it is ARM only and not usable for other architectures. there is nothing to do

[U-Boot] subscription for mailing u-boot updates

2009-06-13 Thread durga prasad
Hi sir.., I would like to receive u-boot updates related mails.., please add me in the subscription list.., -- B.D.D.PRASAD ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot