Re: [U-Boot] [PATCH] Initial support for Orion5x SoC and EDMini board

2009-11-14 Thread Albert ARIBAUD
Hi Prafulla and all, Prafulla Wadaskar a écrit : -Original Message- From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud Sent: Saturday, November 14, 2009 6:32 AM To: U-Boot@lists.denx.de Subject: [U-Boot] [PATCH] Initial support for

Re: [U-Boot] [PATCH] Initial support for Orion5x SoC and EDMini board

2009-11-14 Thread Prafulla Wadaskar
-Original Message- From: Albert ARIBAUD [mailto:albert.arib...@free.fr] Sent: Saturday, November 14, 2009 2:53 PM To: Prafulla Wadaskar Cc: U-Boot@lists.denx.de; Ashish Karkare; Prabhanjan Sarnaik Subject: Re: [U-Boot] [PATCH] Initial support for Orion5x SoC and EDMini board

Re: [U-Boot] [PATCH] Initial support for Orion5x SoC and EDMini board

2009-11-14 Thread Albert ARIBAUD
Hi again Prafulla, Prafulla Wadaskar a écrit : Break this in to basic orion5x Soc support patch And individual drivers patches like gpio, uart, etc.. Will do. What exact criteria should I use for splitting patches? Obviously some patches will never be compiled alone, e.g. basic Orion5x

[U-Boot] Cute Kid of the Year - enter to win $25,000

2009-11-14 Thread thecute...@iammyownboss.co.uk
Welcome to The CuteKid, the internet’s largest online child photo contest! Judged by professional talent and casting agents. Do you have a Cute Kid? If so, we invite you to join our growing community of loving parents just like you by submitting a photo of YOUR cute kid for a chance to win a

[U-Boot] [PATCH V2 3/3] Add support for the LaCie ED Mini V2 board

2009-11-14 Thread Albert Aribaud
This board is based on the Marvell Orion5x SoC. Current support is limited to console and Flash. Flash support uses LEGACY as the Macronix 29LV400 used on ED Mini V2 is not 100% CFI compliant. Signed-off-by: Albert Aribaud albert.arib...@free.fr --- MAINTAINERS |4 +

[U-Boot] [PATCH V2 2/3] Add Orion5x support to 16550 serial device driver

2009-11-14 Thread Albert Aribaud
This patch provides access to the 16550-compatible serial device of the Orion5x SoC. Signed-off-by: Albert Aribaud albert.arib...@free.fr --- drivers/serial/serial.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/serial/serial.c b/drivers/serial/serial.c index

[U-Boot] [PATCH V2 1/3] Initial support for Marvell Orion5x SoC

2009-11-14 Thread Albert Aribaud
This patch adds support for the Marvell Orion5x SoC. It has no use alone, and must be followed by a patch to add Orion5x support for serial, then support for the ED Mini V2, an Orion5x-based board from LaCie. Signed-off-by: Albert Aribaud albert.arib...@free.fr --- cpu/arm926ejs/orion5x/Makefile

[U-Boot] [PATCH 4/4 v4] DA830: Add usb config

2009-11-14 Thread Ajay Kumar Gupta
Adding USB configuration. Default is set for USB MSC host. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Swaminathan S swami.i...@ti.com --- include/configs/da830evm.h | 38 +- 1 files changed, 33 insertions(+), 5 deletions(-) diff --git

[U-Boot] [PATCH 2/4 v4] DA8xx: Add GPIO register definitions

2009-11-14 Thread Ajay Kumar Gupta
Added DA8xx GPIO base addresses in gpio_defs.h and pointers to different BANKs which can be used to program GPIOs. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Swaminathan S swami.i...@ti.com --- include/asm-arm/arch-davinci/gpio_defs.h | 14 ++ 1 files changed,

[U-Boot] [PATCH 0/4 v4] DA8xx: USB support

2009-11-14 Thread Ajay Kumar Gupta
Hi, These patch set have been created against uboot-ti/master branch. Changes from previous version are, - Used C structure for DA8xx usb registers. I didn't modify the alignment in include/usb.h as Nick suggested, would wait for Remy Bohmer's comment on this. Regards, Ajay Ajay

[U-Boot] [PATCH 1/4 v4] DA830: Add pinmux for USB0_DRVVBUS

2009-11-14 Thread Ajay Kumar Gupta
USB0_DRVVBUS pinmux configuration is required for USB functinality in uboot. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Swaminathan S swami.i...@ti.com --- board/davinci/da830evm/da830evm.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH 3/4 v4] DA8xx: Add MUSB host support

2009-11-14 Thread Ajay Kumar Gupta
Tested USB host functionality on DA830 EVM. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Swaminathan S swami.i...@ti.com --- drivers/usb/musb/Makefile |1 + drivers/usb/musb/da8xx.c | 139 + drivers/usb/musb/da8xx.h | 103

Re: [U-Boot] [PATCH 3/4 v4] DA8xx: Add MUSB host support

2009-11-14 Thread Gupta, Ajay Kumar
Hi, -Original Message- From: Gupta, Ajay Kumar Sent: Sunday, November 15, 2009 11:04 AM To: u-boot@lists.denx.de Cc: li...@bohmer.net; tom@windriver.com; Gupta, Ajay Kumar; Subbrathnam, Swaminathan Subject: [PATCH 3/4 v4] DA8xx: Add MUSB host support Tested USB host

[U-Boot] [PATCH 1/4 v5] DA830: Add pinmux for USB0_DRVVBUS

2009-11-14 Thread Ajay Kumar Gupta
USB0_DRVVBUS pinmux configuration is required for USB functinality in uboot. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Swaminathan S swami.i...@ti.com --- board/davinci/da830evm/da830evm.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git

[U-Boot] [PATCH 2/4 v5] DA8xx: Add GPIO register definitions

2009-11-14 Thread Ajay Kumar Gupta
Added DA8xx GPIO base addresses in gpio_defs.h and pointers to different BANKs which can be used to program GPIOs. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Swaminathan S swami.i...@ti.com --- include/asm-arm/arch-davinci/gpio_defs.h | 14 ++ 1 files changed,

[U-Boot] [PATCH 4/4 v5] DA830: Add usb config

2009-11-14 Thread Ajay Kumar Gupta
Adding USB configuration. Default is set for USB MSC host. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Swaminathan S swami.i...@ti.com --- include/configs/da830evm.h | 38 +- 1 files changed, 33 insertions(+), 5 deletions(-) diff --git

[U-Boot] [PATCH 0/4 v5] DA8xx: USB support

2009-11-14 Thread Ajay Kumar Gupta
Hi, These patch set have been created against uboot-ti/master branch. Fixed missing '' in [PATCH 3/4] from previous version. I didn't modify the alignment in include/usb.h as Nick suggested, would wait for Remy Bohmer's comment on this. Regards, Ajay Ajay Kumar Gupta (4): DA830: Add pinmux

[U-Boot] [PATCH 3/4 v5] DA8xx: Add MUSB host support

2009-11-14 Thread Ajay Kumar Gupta
Tested USB host functionality on DA830 EVM. Signed-off-by: Ajay Kumar Gupta ajay.gu...@ti.com Signed-off-by: Swaminathan S swami.i...@ti.com --- drivers/usb/musb/Makefile |1 + drivers/usb/musb/da8xx.c | 139 + drivers/usb/musb/da8xx.h | 103

Re: [U-Boot] [PATCH] smc911x: fix typo in smc911x_handle_mac_address name

2009-11-14 Thread Mike Rapoport
Ben, Any chance this one can be merged as well? Mike Rapoport wrote: Signed-off-by: Mike Rapoport m...@compulab.co.il --- drivers/net/smc911x.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/smc911x.c b/drivers/net/smc911x.c index c50758e..acc2306

[U-Boot] [PATCHi v3] OMAP3: add CM-T35 board

2009-11-14 Thread Mike Rapoport
Add CM-T35 board support Signed-off-by: Mike Rapoport m...@compulab.co.il -- v2 changes: - rename board config file from omap3_cm-t35.h to cm-t35.h - remove SZ_xx references - add MAKEALL/MAINTEINERS entries v3 changes: - fix whitespace and indentation - remove eth_init from board_eth_init -

[U-Boot] [PATCH V2 1/3 CORRECTED] Initial support for Marvell Orion5x SoC

2009-11-14 Thread Albert Aribaud
** ATTENTION: this patch supersedes the previous '1/3' patch in the same series. The correction is the removal of Kirkwood-inherited device init code unused at the moment and partly inapplicable to Orion5x anyway. This correct patch has been run through checkpatch.pl again with the exact same