Re: [U-Boot] TFTP on beagle board

2009-11-16 Thread Dirk Behme
Mai Daftedar wrote: > Hi all, >I was wondering how can we configure the u-boot with the TFTP > capability on the beagle board at runtime.. For this you will need ethernet support in U-Boot. There are two (?) options to achieve this: Add support for USB ethernet dongle in U-Boot or use a Beag

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-11-16 Thread Wolfgang Denk
Dear Alfred Steele, In message <528f13590911161846q6a91df8awa309d4e1f990d...@mail.gmail.com> you wrote: > > Thanks for your submission! > What is the current design on the mxc fec interface's attainment of a > MAC address. From the kernel driver it looks like it looks at the There is none. > II

Re: [U-Boot] [PATCH v2] crc32: Impl. linux optimized crc32()

2009-11-16 Thread Mike Frysinger
On Monday 16 November 2009 23:01:59 Mike Frysinger wrote: > On Friday 13 November 2009 03:52:05 Joakim Tjernlund wrote: > > --- a/lib_generic/crc32.c > > +++ b/lib_generic/crc32.c > > @@ -13,6 +13,8 @@ > > #else > > #include > > #endif > > +#include > > +#include > > the target system improv

Re: [U-Boot] [PATCH v2] crc32: Impl. linux optimized crc32()

2009-11-16 Thread Mike Frysinger
On Friday 13 November 2009 03:52:05 Joakim Tjernlund wrote: > --- a/lib_generic/crc32.c > +++ b/lib_generic/crc32.c > @@ -13,6 +13,8 @@ > #else > #include > #endif > +#include > +#include the target system improvements are awesome, but this breaks cross-compiling crc32 code for anything othe

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-11-16 Thread Ben Warren
Hi Alfred, alfred steele wrote: >> Thanks for your submission! >> > What is the current design on the mxc fec interface's attainment of a > MAC address. From the kernel driver it looks like it looks at the > IIM(IC identification registers) on the MXC platform(like mx51/35) to > look for a pr

Re: [U-Boot] [PATCH 3/7] fec_imx27: driver for FEC ethernet controller on i.MX27

2009-11-16 Thread alfred steele
> Thanks for your submission! What is the current design on the mxc fec interface's attainment of a MAC address. From the kernel driver it looks like it looks at the IIM(IC identification registers) on the MXC platform(like mx51/35) to look for a programmed mac address and then the set the fec mac

Re: [U-Boot] [RFC] env: Group environment variables

2009-11-16 Thread Wolfgang Denk
Dear John Schmoller, In message <1257460973.8937.1170.ca...@johns> you wrote: > > > > > Also, it would be nice if "prontenv" now would allow to print a group, > > > > i. e. in your example something as "printenv net pci" should be > > > > supported. > > > > > > This is already (accidentally :) su

Re: [U-Boot] [PATCH 3/4] ARM Add New Board GEC2410

2009-11-16 Thread Wolfgang Denk
Dear "Hui.Tang", In message <1257324505-19451-1-git-send-email-zetal...@gmail.com> you wrote: > S3C2410 NAND flash add missing function. Please squash into one single NAND flash related patch. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel

Re: [U-Boot] [PATCH 2/4] ARM Add New Board GEC2410

2009-11-16 Thread Wolfgang Denk
Dear "Hui.Tang", In message <1257324383-19408-1-git-send-email-zetal...@gmail.com> you wrote: > Add ARM920T NAND flash booting. > > checkpatch.pl shows that all things are fine. > > total: 0 errors, 0 warnings, 70 lines checked > > 0002-ARM920T-NAND-flash-booting.patch has no obvious style prob

Re: [U-Boot] [PATCH 1/4] ARM Add New Board GEC2410

2009-11-16 Thread Wolfgang Denk
Dear "Hui.Tang", In message <1257324286-19359-1-git-send-email-zetal...@gmail.com> you wrote: > This patch add a new ARM board GEC2410. > checkpatch.pl shows that all things are fine. > > total: 0 errors, 0 warnings, 1268 lines checked > > 0001-ARM-Add-New-Board-GEC2410.patch has no obvious styl

Re: [U-Boot] [PATCH 3/3] [OneNAND] Flex-OneNAND boundary settings

2009-11-16 Thread Wolfgang Denk
Dear Amul Kumar Saha, In message <0870c11eae73409e8727cac3891e4...@sisodomain.com> you wrote: > Add command for changing Flex-OneNAND SLC / MLC boundary. > Also onenand commands work for Flex-OneNAND. > > Signed-off-by: Rohit Hagargundgi > Signed-off-by: Amul Kumar Saha > --- > common/cmd_onen

Re: [U-Boot] [PATCH] flash.h: pull in common.h for types

2009-11-16 Thread Mike Frysinger
On Monday 16 November 2009 16:31:27 Wolfgang Denk wrote: > Mike Frysinger wrote: > > Signed-off-by: Mike Frysinger > > --- > > include/flash.h |3 +++ > > 1 files changed, 3 insertions(+), 0 deletions(-) > > > > diff --git a/include/flash.h b/include/flash.h > > index c5e7bf4..886d8ef 100644

Re: [U-Boot] [PATCH] flash.h: pull in common.h for types

2009-11-16 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1258401513-16014-1-git-send-email-vap...@gentoo.org> you wrote: > Signed-off-by: Mike Frysinger > --- > include/flash.h |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/include/flash.h b/include/flash.h > index c5e7bf4..886d8ef 100

Re: [U-Boot] [PATCH v4] OMAP3: add CM-T35 board

2009-11-16 Thread Tom
Mike Rapoport wrote: > >>> >>> >> Yes this change would apply to all the omap3 boards. >> But it looks like they are are all the same change. >> >> The change per board, would be to delete these externs once the >> first code change is made. >> >> Since this is a code movement change, it can be

[U-Boot] [PATCH] OMAP3 Move declaration of gpmc_cfg.

2009-11-16 Thread Tom Rix
Every omap3 board config file declared the global variable gpmc_cfg. This changes moves the declaration to a better location in the arch dependent header file cpu.h. Signed-off-by: Tom Rix --- include/asm-arm/arch-omap3/cpu.h |4 include/configs/devkit8000.h |1 - include/config

[U-Boot] OMAP3 move declaration of gpmc_cfg

2009-11-16 Thread Tom Rix
This is cleanup of omap3 board config files. This is the link to the thread on the list http://lists.denx.de/pipermail/u-boot/2009-November/064351.html This was regression tested with MAKEALL arm and runtested on Zoom2 Tom ___ U-Boot mailing list U-B

[U-Boot] [PATCH] flash.h: pull in common.h for types

2009-11-16 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- include/flash.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/flash.h b/include/flash.h index c5e7bf4..886d8ef 100644 --- a/include/flash.h +++ b/include/flash.h @@ -25,6 +25,9 @@ #define _FLASH_H_ #ifndef CONFIG_SYS_NO_FL

Re: [U-Boot] [PATCH] Davinci: Configurable NAND chip selects

2009-11-16 Thread Paulraj, Sandeep
Hi Nick, > -Original Message- > From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] > On Behalf Of Nick Thompson > Sent: Monday, November 16, 2009 12:50 PM > To: u-boot@lists.denx.de > Subject: [U-Boot] [PATCH] Davinci: Configurable NAND chip selects > > Davinci: Conf

[U-Boot] [PATCH] NAND: Update read_read_subpage API check

2009-11-16 Thread s-paulraj
From: Sandeep Paulraj This patch updates a check condition in the NAND driver. The check condition is similat to what is in linux/next. Signed-off-by: Sandeep Paulraj --- drivers/mtd/nand/nand_base.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mtd/nand/nan

[U-Boot] [PATCH] NAND:Extending the nand_ecclayout structure

2009-11-16 Thread s-paulraj
From: Sandeep Paulraj NANDs with page size of lesser than and equal to 2K are reaching EOL. They are bing replaced with NANDs of page size 4K and above. To support this we have to extend the eccpos field Signed-off-by: Sandeep Paulraj --- I believe a patch was submitted to linux-mtd to update t

[U-Boot] [PATCH] Davinci: Configurable NAND chip selects

2009-11-16 Thread Nick Thompson
Davinci: Configurable NAND chip selects Add a CONFIG_SYS_NAND_CS setting to all davinci configs and use it to setup the NAND controller in the davinci_nand mtd driver. Signed-off-by: Nick Thompson --- This config item is already used on many other platforms so is not a new config item as such.

Re: [U-Boot] [PATCH] TI: DaVinci: Updating EMAC driver for DM365 and DM646x

2009-11-16 Thread Paulraj, Sandeep
Hi Nick, > -Original Message- > From: Nick Thompson [mailto:nick.thomp...@gefanuc.com] > Sent: Monday, November 16, 2009 11:47 AM > To: Paulraj, Sandeep > Cc: u-boot@lists.denx.de; biggerbadder...@gmail.com > Subject: Re: [U-Boot] [PATCH] TI: DaVinci: Updating EMAC driver for DM365 > and D

Re: [U-Boot] [PATCH] TI: DaVinci: Updating EMAC driver for DM365 and DM646x

2009-11-16 Thread Nick Thompson
Hi Sandeep, On 13/11/09 20:42, s-paul...@ti.com wrote: > From: Sandeep Paulraj > > The EMAC IP on DM365 and DM646x is slightly different from > that on DM644x. This patch updates the DaVinci EMAC driver > so that EMAC becomes operational on DM365 in U-Boot. > A flag 'CONFIG_DAVINCI_EMAC_VERSION2

Re: [U-Boot] [PATCH v2] Fix build failure in examples/standalone

2009-11-16 Thread Premi, Sanjeev
> -Original Message- > From: Premi, Sanjeev > Sent: Monday, November 09, 2009 10:43 PM > To: u-boot@lists.denx.de > Cc: Premi, Sanjeev > Subject: [PATCH v2] Fix build failure in examples/standalone > > Some versions of 'make' do not handle trailing white-spaces > properly. Trailing spaces

Re: [U-Boot] [PATCH v4] OMAP3: add CM-T35 board

2009-11-16 Thread Mike Rapoport
Tom wrote: > Mike Rapoport wrote: >> Tom, >> >> Tom wrote: >>> Paulraj, Sandeep wrote: > Add CM-T35 board support > >>> Please add more description of the board. >>> > Signed-off-by: Mike Rapoport > > -- > v2 changes: > - rename board config file from omap3_cm-t35.h

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

2009-11-16 Thread Prafulla Wadaskar
> -Original Message- > From: Albert ARIBAUD [mailto:albert.arib...@free.fr] > Sent: Monday, November 16, 2009 2:52 PM > To: Prafulla Wadaskar > Cc: U-Boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH V2 1/3 CORRECTED] Initial > support for Marvell Orion5x SoC > > Hi Rafulla, > > Praf

Re: [U-Boot] [PATCH v4] OMAP3: add CM-T35 board

2009-11-16 Thread Tom
Mike Rapoport wrote: > Tom, > > Tom wrote: >> Paulraj, Sandeep wrote: Add CM-T35 board support >> Please add more description of the board. >> Signed-off-by: Mike Rapoport -- v2 changes: - rename board config file from omap3_cm-t35.h to cm-t35.h - remove S

Re: [U-Boot] EHCI hub not powering on port

2009-11-16 Thread Florian Fainelli
Hi, On Friday 13 November 2009 17:02:26 Florian Fainelli wrote: > Hi all, > > I am trying to make u-boot work with my EHCI controler and everything goes > well up to when it comes to powering on the port: Forgot to mention that the hardware works fine with Linux and does not require any specif

Re: [U-Boot] u-boot: How to read file from FAT filesystem on NorFlash MTD partition

2009-11-16 Thread Xianwei Zeng
Dear Wolfgang Denk, Sorry for the simple question, but I can't find the document to guide me to read file from FAT file system in NOR FLASH. On Mon, Nov 16, 2009 at 3:40 PM, Wolfgang Denk wrote: > Dear Xianwei Zeng, > > In message <52c6d4120911151729s61a250e0j1b0ec02b43191...@mail.gmail.com> >

[U-Boot] [PATCH] Davinci: Table driven pinmux configuration

2009-11-16 Thread Nick Thompson
Davinci: Table driven pinmux configuration Add code to allow pinmux_config tables to be grouped and configured as a single resource. This removes multiple calls to the pinmux configuration code from board_init and allows pinmuxes to be individually configured and added by data manipulation only.

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

2009-11-16 Thread Albert ARIBAUD
Hi Rafulla, Prafulla Wadaskar a écrit : > > Please post this patch as v3 with above description as change log for v3 > > Regards.. > Prafulla . . . Seeing as I have also some fixes to do on patch V2 3/3, I'll report a whole V3 patchset with the description in the cover letter. Is that fine?

Re: [U-Boot] [PATCH v3] DA8xx: Add MUSB host support

2009-11-16 Thread Nick Thompson
On 13/11/09 16:47, Gupta, Ajay Kumar wrote: > Hi, >> Tested USB host functionality on DA830 EVM. >> >> Signed-off-by: Ajay Kumar Gupta >> Signed-off-by: Swaminathan S >> --- > > > >> --- a/include/usb.h >> +++ b/include/usb.h >> @@ -183,7 +183,8 @@ struct usb_device { >> #if defined(CONFIG_US

Re: [U-Boot] [PATCH v4] OMAP3: add CM-T35 board

2009-11-16 Thread Mike Rapoport
Tom, Tom wrote: > Paulraj, Sandeep wrote: >>> Add CM-T35 board support >>> > > Please add more description of the board. > >>> Signed-off-by: Mike Rapoport >>> >>> -- >>> v2 changes: >>> - rename board config file from omap3_cm-t35.h to cm-t35.h >>> - remove SZ_xx references >>> - add MAKEALL/

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

2009-11-16 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud > Sent: Sunday, November 15, 2009 4:33 AM > To: U-Boot@lists.denx.de > Subject: [U-Boot] [PATCH V2 3/3] Add support for the LaCie ED > Mini V2 board > > This b

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

2009-11-16 Thread Mike Rapoport
CM-T35 is a system-on-module board from CompuLab, Ltd. The CM-T35 datasheet can be found at http://www.compulab.co.il/t35/html/t35-cm-datasheet.htm Signed-off-by: Mike Rapoport -- v2 changes: - rename board config file from omap3_cm-t35.h to cm-t35.h - remove SZ_xx references - add MAKEALL/MAINT

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

2009-11-16 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud > Sent: Sunday, November 15, 2009 1:27 PM > To: U-Boot@lists.denx.de > Subject: [U-Boot] [PATCH V2 1/3 CORRECTED] Initial support > for Marvell Orion5x SoC > >

[U-Boot] [PATCH] Kirkwood: Makefile cleanup- fixed ordering (cosmetic change)

2009-11-16 Thread Prafulla Wadaskar
As per coding guidlines, it is good to maintain proper ordering in the makefiles. This was missed during initial coding, corrected here. This was discovered during orion5x code review Thanks to Albert Aribaud for this. Signed-off-by: Prafulla Wadaskar --- cpu/arm926ejs/kirkwood/Makefile |4