Re: [U-Boot] smc911x not functional on top of tree

2011-09-15 Thread Stefano Babic
On 09/16/2011 01:13 AM, Fabio Estevam wrote: > Hi Stefano, > > On Thu, Sep 15, 2011 at 5:21 PM, stefano babic wrote: > .. >>> Does anyone have smc911x working with the latest U-boot? >> >> I have now tested on a mx35pdk with Debug board. It has a SMC911x. It works: > > Thanks for testing! I trie

Re: [U-Boot] SPL boot modes

2011-09-15 Thread Joel A Fernandes
On Fri, Sep 16, 2011 at 1:11 AM, Joel A Fernandes wrote: > Hi Simon, > > Great work on the SPL patches for omap. I am getting a bit familiar > with this and earlier SPL work. > > Just one question about one of your patches I happen to notice [1], Sorry, I was referring to this patch: http://patch

[U-Boot] SPL boot modes

2011-09-15 Thread Joel A Fernandes
Hi Simon, Great work on the SPL patches for omap. I am getting a bit familiar with this and earlier SPL work. Just one question about one of your patches I happen to notice [1], why is there a SPL build for each different boot mode such as for NAND, MMC etc?. Wouldn't it be nicer to have a single

Re: [U-Boot] [PATCH] arm, usb, davinci: make USBPHY_CTL register configurable

2011-09-15 Thread Heiko Schocher
Hello Albert, Albert ARIBAUD wrote: > Hi all, > > Le 09/08/2011 07:05, Heiko Schocher a écrit : >> Hello Remy, >> >> Remy Bohmer wrote: >>> Hi, >>> >>> 2011/8/2 Heiko Schocher: Define CONFIG_DV_USBPHY_CTL for setting the USB PHY control register. Signed-off-by: Heiko Schocher

Re: [U-Boot] [PATCH] net, davinci_emac: add KSZ8864 switch

2011-09-15 Thread Heiko Schocher
Hello Mike, Mike Frysinger wrote: > On Thursday, September 15, 2011 01:36:09 Heiko Schocher wrote: >> --- /dev/null >> +++ b/arch/arm/cpu/arm926ejs/davinci/ksz8873.c >> >> +#ifdef CONFIG_DRIVER_TI_EMAC > > this file is only built when this is defined, so this is useless > >> +#ifdef CONFIG_CMD_N

[U-Boot] [PATCH 2/2] mx31pdk: Change the prompt as per other i.MX boards

2011-09-15 Thread Fabio Estevam
Change the prompt as done in other i.MX boards. Signed-off-by: Fabio Estevam --- include/configs/mx31pdk.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/mx31pdk.h b/include/configs/mx31pdk.h index e77805c..7f91f67 100644 --- a/include/configs/mx31pdk.h

[U-Boot] [PATCH 1/2] mx31pdk: Disable watchdog

2011-09-15 Thread Fabio Estevam
When booting a mainline kernel on a mx31pdk the system gets getting resets from the watchdog. As the kernel has watchdog support, disable it from U-boot. Signed-off-by: Fabio Estevam --- include/configs/mx31pdk.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/include/

Re: [U-Boot] [RFC] ARM ISA/cpu/SoC code organization for cache and other functions

2011-09-15 Thread Jason
On Thu, Sep 15, 2011 at 07:10:49PM -0400, Jason wrote: > Albert, > > On Thu, Sep 15, 2011 at 11:42:12PM +0200, Albert ARIBAUD wrote: > > (re-posting cleaned up and outside any other discussion) > > > > This RFC is for discussing how cache operation functions should be > > managed in the ARM tree

Re: [U-Boot] [PATCH 2/2 RESEND] SPL: Allow user to disable CPU support library

2011-09-15 Thread Marek Vasut
On Friday, September 16, 2011 12:57:44 AM Scott Wood wrote: > On 09/11/2011 11:03 PM, Marek Vasut wrote: > > Introduce CONFIG_SPL_NO_CPU_SUPPORT_CODE to avoid compiling the CPU > > support library. This can be useful on some setups. > > > > Signed-off-by: Marek Vasut > > Cc: Stefano Babic > > Cc

[U-Boot] [PATCH V2] FEC: Allow multiple FECes

2011-09-15 Thread Marek Vasut
This patch allows user to register multiple FEC controllers. To preserve compatibility with older boards, the mxcfec_register() call is still in place. To use multiple controllers, new macro is in place, the mxcfec_register_multi(), which takes more arguments. The syntax is: mxcfec_register_multi(

Re: [U-Boot] smc911x not functional on top of tree

2011-09-15 Thread Fabio Estevam
Hi Stefano, On Thu, Sep 15, 2011 at 5:21 PM, stefano babic wrote: .. >> Does anyone have smc911x working with the latest U-boot? > > I have now tested on a mx35pdk with Debug board. It has a SMC911x. It works: Thanks for testing! I tried it at home and it is working fine here. Maybe it was an i

Re: [U-Boot] [RFC] ARM ISA/cpu/SoC code organization for cache and other functions

2011-09-15 Thread Jason
Albert, On Thu, Sep 15, 2011 at 11:42:12PM +0200, Albert ARIBAUD wrote: > (re-posting cleaned up and outside any other discussion) > > This RFC is for discussing how cache operation functions should be > managed in the ARM tree. ... > The source code implementation for ARM cache ops would be: >

Re: [U-Boot] [PATCH 1/2] SPL: Make path to start.S configurable

2011-09-15 Thread Marek Vasut
On Friday, September 16, 2011 12:54:26 AM Scott Wood wrote: > On 09/11/2011 10:56 PM, Marek Vasut wrote: > > Introduce CONFIG_SPL_START_S_PATH to configure path to start.S file. It's > > not always fitting to use CPU's start.S . > > > > Signed-off-by: Marek Vasut > > --- > > > > spl/Makefile |

Re: [U-Boot] [PATCH 2/2 RESEND] SPL: Allow user to disable CPU support library

2011-09-15 Thread Scott Wood
On 09/11/2011 11:03 PM, Marek Vasut wrote: > Introduce CONFIG_SPL_NO_CPU_SUPPORT_CODE to avoid compiling the CPU support > library. This can be useful on some setups. > > Signed-off-by: Marek Vasut > Cc: Stefano Babic > Cc: Wolfgang Denk > Cc: Detlev Zundel > Cc: Chander Kashyap But you didn

Re: [U-Boot] [PATCH 1/2] SPL: Make path to start.S configurable

2011-09-15 Thread Scott Wood
On 09/11/2011 10:56 PM, Marek Vasut wrote: > Introduce CONFIG_SPL_START_S_PATH to configure path to start.S file. It's not > always fitting to use CPU's start.S . > > Signed-off-by: Marek Vasut > --- > spl/Makefile | 10 -- > 1 files changed, 8 insertions(+), 2 deletions(-) > > diff -

Re: [U-Boot] environment in NAND

2011-09-15 Thread Scott Wood
On 09/07/2011 04:34 AM, Arno Steffen wrote: > "# save > Saving Environment to NAND... > Erasing Nand... > Warning: Erase size 0x2000 smaller than one erase block 0x0002 > Erasing 0x0002 instead > Skipping bad block at 0x000c > > Writing to Nand... FAILED!" In newer versi

Re: [U-Boot] [PATCH] powerpc/p3060: Add SoC related support for P3060 platform

2011-09-15 Thread Kumar Gala
On Sep 15, 2011, at 9:43 AM, John Schmoller wrote: > Hello Kumar, > >> From: Shengzhou Liu >> >> Add P3060 SoC specific information:cores setup, LIODN setup, etc >> >> The P3060 SoC combines six e500mc Power Architecture processor cores >> with >> high-performance datapath acceleration archit

[U-Boot] [RFC] ARM ISA/cpu/SoC code organization for cache and other functions

2011-09-15 Thread Albert ARIBAUD
(re-posting cleaned up and outside any other discussion) This RFC is for discussing how cache operation functions should be managed in the ARM tree. ARM boards are frequently based on a SoC, itseff based on a processor (or cpu), itself based on an (instruction set) architecture, 'isa' for shor

Re: [U-Boot] smc911x not functional on top of tree

2011-09-15 Thread Marek Vasut
On Thursday, September 15, 2011 10:21:04 PM stefano babic wrote: > Am 15/09/2011 21:39, schrieb Fabio Estevam: > > Hi, > > Hi Fabio, > > > When using U-boot from top of tree I am not able to get networking to > > work on a mx31pdk: > > > > uboot> dhcp > > smc911x: detected LAN9217 controller > >

Re: [U-Boot] [PATCH v6 1/4] gpio: Move common gpio.h to include/asm-generic

2011-09-15 Thread Albert ARIBAUD
Le 15/09/2011 11:45, Wolfgang Denk a écrit : > Dear Kim, > > In message<20110913200803.4d76579c.kim.phill...@freescale.com> you wrote: >> >>> arch/arm/include/asm/gpio.h | 38 >>> +- >>> arch/powerpc/include/asm/gpio.h |2 ++ >>> include/asm-gener

Re: [U-Boot] smc911x not functional on top of tree

2011-09-15 Thread stefano babic
Am 15/09/2011 21:39, schrieb Fabio Estevam: > Hi, > Hi Fabio, > When using U-boot from top of tree I am not able to get networking to > work on a mx31pdk: > > uboot> dhcp > smc911x: detected LAN9217 controller > smc911x: phy initialized > smc911x: MAC 00:04:9f:00:8d:6e > BOOTP broadcast 1 > BOOTP b

Re: [U-Boot] [RFC PATCH 3/4 v1] mvrtc: add fdt support.

2011-09-15 Thread Jason
On Thu, Sep 15, 2011 at 12:23:52PM -0700, Simon Glass wrote: > On Thu, Sep 15, 2011 at 6:54 AM, Jason Cooper wrote: > > > > Signed-off-by: Jason Cooper > > --- > >  common/fdt_decode.c  |    1 + > >  drivers/rtc/mvrtc.c  |   62 > > +++-- > >  drivers/r

[U-Boot] Orphanage Home

2011-09-15 Thread Mr, Moss Kanga
Dear, We are private consultant in England Representing the interest of India Orphanage Home who is presently looking for a sincere representative in the USA/CANADA to enable good citizens who are contributing to reach them without stress. your kind respond is highly anticipated. Mr, Moss Kanga

Re: [U-Boot] [RFC PATCH 4/4 v1] dreamplug: enable fdt

2011-09-15 Thread Jason
On Thu, Sep 15, 2011 at 12:25:36PM -0700, Simon Glass wrote: > On Thu, Sep 15, 2011 at 6:54 AM, Jason Cooper wrote: > > > > Signed-off-by: Jason Cooper > > --- > >  board/Marvell/dreamplug/kirkwood-dreamplug.dts |   12 +++ > >  board/Marvell/dreamplug/kirkwood.dtsi          |   25 > > ++

Re: [U-Boot] [RFC PATCH 2/4 v1] fdt_decode: make more available.

2011-09-15 Thread Jason
On Thu, Sep 15, 2011 at 12:18:00PM -0700, Simon Glass wrote: > On Thu, Sep 15, 2011 at 6:54 AM, Jason Cooper wrote: > > > > Signed-off-by: Jason Cooper > > --- > >  common/fdt_decode.c  |   11 +-- > >  include/fdt_decode.h |   13 + > >  2 files changed, 18 insertions(+), 6 del

Re: [U-Boot] [RFC PATCH 0/4 v1] Use fdt to init mvrtc driver for dreamplug

2011-09-15 Thread Jason
On Thu, Sep 15, 2011 at 12:16:11PM -0700, Simon Glass wrote: > On Thu, Sep 15, 2011 at 6:54 AM, Jason Cooper wrote: > > To make this work, I applied v2 of Simon Glass' patch series (what this > > email is in reply to) against v2011.09-rc1.  I then cherry picked my > > dreamplug board support patch

[U-Boot] smc911x not functional on top of tree

2011-09-15 Thread Fabio Estevam
Hi, When using U-boot from top of tree I am not able to get networking to work on a mx31pdk: uboot> dhcp smc911x: detected LAN9217 controller smc911x: phy initialized smc911x: MAC 00:04:9f:00:8d:6e BOOTP broadcast 1 BOOTP broadcast 2 DHCP client bound to address 10.29.244.21 BOOTP broadcast 3 DHC

Re: [U-Boot] [RFC PATCH 4/4 v1] dreamplug: enable fdt

2011-09-15 Thread Simon Glass
Hi Jason, On Thu, Sep 15, 2011 at 6:54 AM, Jason Cooper wrote: > > Signed-off-by: Jason Cooper > --- >  board/Marvell/dreamplug/kirkwood-dreamplug.dts |   12 +++ >  board/Marvell/dreamplug/kirkwood.dtsi          |   25 > >  include/configs/dreamplug.h          

Re: [U-Boot] [RFC PATCH 3/4 v1] mvrtc: add fdt support.

2011-09-15 Thread Simon Glass
Hi Jason, On Thu, Sep 15, 2011 at 6:54 AM, Jason Cooper wrote: > > Signed-off-by: Jason Cooper > --- >  common/fdt_decode.c  |    1 + >  drivers/rtc/mvrtc.c  |   62 +++-- >  drivers/rtc/mvrtc.h  |    7 + >  include/fdt_decode.h |    1 + >  4 files

Re: [U-Boot] [RFC PATCH 2/4 v1] fdt_decode: make more available.

2011-09-15 Thread Simon Glass
Hi Jason, On Thu, Sep 15, 2011 at 6:54 AM, Jason Cooper wrote: > > Signed-off-by: Jason Cooper > --- >  common/fdt_decode.c  |   11 +-- >  include/fdt_decode.h |   13 + >  2 files changed, 18 insertions(+), 6 deletions(-) > > diff --git a/common/fdt_decode.c b/common/fdt_deco

Re: [U-Boot] [RFC PATCH 0/4 v1] Use fdt to init mvrtc driver for dreamplug

2011-09-15 Thread Simon Glass
Hi Jason, On Thu, Sep 15, 2011 at 6:54 AM, Jason Cooper wrote: > Simon, All, > > This patch series is my attempt to learn device tree with a driver I'm > familiar with.  Also, to create a real, working example for fdt in U-boot. Great! > > To make this work, I applied v2 of Simon Glass' patch se

Re: [U-Boot] u-boot-1.3.3 SMC91111 driver

2011-09-15 Thread Marek Vasut
On Thursday, September 15, 2011 03:53:02 PM Simon Schwarz wrote: > Hi, > > first thing would be to use a current U-Boot Version. This can be > obtained from: > http://www.denx.de/wiki/U-Boot/SourceCode Try not top-posting please. btw. the lowlevel init function also configures the hardware, mayb

Re: [U-Boot] [PATCH] tegra2: Enable data cache

2011-09-15 Thread Mike Frysinger
On Thursday, September 15, 2011 13:30:09 Albert ARIBAUD wrote: > I agree on the need and interest to support cache. I disagree on the way > to get there. Turning cache off indiscriminately and hoping that board > developers/maintainer turn their caches off will only lead to U-Boot > failing in inte

Re: [U-Boot] [PATCH] tegra2: Enable data cache

2011-09-15 Thread Albert ARIBAUD
Le 15/09/2011 18:31, Mike Frysinger a écrit : > On Thursday, September 15, 2011 12:21:28 Albert ARIBAUD wrote: >> Le 15/09/2011 05:03, Mike Frysinger a écrit : >>> On Wednesday, September 14, 2011 11:13:40 Simon Glass wrote: On Wed, Sep 14, 2011 at 6:10 AM, Aneesh V wrote: >> not specific

[U-Boot] [PATCH] pm9g45: init serial console before relocation

2011-09-15 Thread Asen Chavdarov Dimov
The early messages can be seen on the debug console. Signed-off-by: Asen Chavdarov Dimov --- board/ronetix/pm9g45/pm9g45.c | 14 +- include/configs/pm9g45.h |1 + 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/board/ronetix/pm9g45/pm9g45.c b/board/ronetix/

[U-Boot] [PATCH] pm9261: init serial console before relocation

2011-09-15 Thread Asen Chavdarov Dimov
The early messages can be seen on the debug console. Signed-off-by: Asen Chavdarov Dimov --- board/ronetix/pm9261/pm9261.c | 14 +- include/configs/pm9261.h |1 + 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/board/ronetix/pm9261/pm9261.c b/board/ronetix/

Re: [U-Boot] [PATCH] tegra2: Enable data cache

2011-09-15 Thread Mike Frysinger
On Thursday, September 15, 2011 12:21:28 Albert ARIBAUD wrote: > Le 15/09/2011 05:03, Mike Frysinger a écrit : > > On Wednesday, September 14, 2011 11:13:40 Simon Glass wrote: > >> On Wed, Sep 14, 2011 at 6:10 AM, Aneesh V wrote: > not specific to your patch, but this seems kind of dumb to cop

Re: [U-Boot] [PATCH] tegra2: Enable data cache

2011-09-15 Thread Albert ARIBAUD
Le 15/09/2011 05:03, Mike Frysinger a écrit : > On Wednesday, September 14, 2011 11:13:40 Simon Glass wrote: >> On Wed, Sep 14, 2011 at 6:10 AM, Aneesh V wrote: not specific to your patch, but this seems kind of dumb to copy& paste the same thing between all the arm sub arches/boards. w

Re: [U-Boot] [PATCH] arm, usb, davinci: make USBPHY_CTL register configurable

2011-09-15 Thread Albert ARIBAUD
Hi all, Le 09/08/2011 07:05, Heiko Schocher a écrit : > Hello Remy, > > Remy Bohmer wrote: >> Hi, >> >> 2011/8/2 Heiko Schocher: >>> Define CONFIG_DV_USBPHY_CTL for setting the USB PHY control >>> register. >>> Signed-off-by: Heiko Schocher >>> cc: Sandeep Paulraj >>> cc: Remy Bohmer >>> --- >>>

Re: [U-Boot] [PATCH] net, davinci_emac: add KSZ8864 switch

2011-09-15 Thread Mike Frysinger
On Thursday, September 15, 2011 01:36:09 Heiko Schocher wrote: > --- /dev/null > +++ b/arch/arm/cpu/arm926ejs/davinci/ksz8873.c > > +#ifdef CONFIG_DRIVER_TI_EMAC this file is only built when this is defined, so this is useless > +#ifdef CONFIG_CMD_NET building net drivers but not enabling CMD_N

Re: [U-Boot] [PATCH] powerpc/p3060: Add SoC related support for P3060 platform

2011-09-15 Thread John Schmoller
Hello Kumar, > From: Shengzhou Liu > > Add P3060 SoC specific information:cores setup, LIODN setup, etc > > The P3060 SoC combines six e500mc Power Architecture processor cores > with > high-performance datapath acceleration architecture(DPAA), CoreNet > fabric > infrastructure, as well as netw

Re: [U-Boot] U-Boot for AMCC Sequoia Board (PPC440EPX) fails to boot for version 2009.11-rc1 onwards

2011-09-15 Thread Hayes,Doug
Hi Stefan; Here's an update on what I've discovered in 2 different areas (I am using an older ELDK 4.1.4 for all this code) : 1) SW2 switch configurations that work on Sequoia board with 2011.06 U-boot and some that don't since 2009.11-rc1. 2) Compiler error when accessing data from EHCI controll

Re: [U-Boot] [PATCH 1/1] mmc: omap: enable high capacity

2011-09-15 Thread Paulraj, Sandeep
> > > > > >> > >> On Thu, Aug 25, 2011 at 7:46 AM, Balaji T K wrote: > >> > Enable high capacity to host capability. > >> > Fixes eMMC detection on boot from MMC/SD card. > >> > > >> > Signed-off-by: Balaji T K > >> > Signed-off-by: Aneesh V > >> > --- > >> >  drivers/mmc/omap_hsmmc.c |    3 ++

Re: [U-Boot] [PATCH 2/2] mmc: omap: config VMMC, MMC1_PBIAS

2011-09-15 Thread T Krishnamoorthy, Balaji
Hi Andy, This patch has been tested on OMAP3 beagle board and OMAP4 Blaze mmc read and write is OK. Do you have any comments on this patch? -- Thanks and Regards, Balaji T K On Thu, Sep 8, 2011 at 10:04 PM, Balaji T K wrote: > Config VMMC voltage to 3V for MMC/SD card slot > and PBIAS settings

Re: [U-Boot] [PATCH 1/1] mmc: omap: enable high capacity

2011-09-15 Thread T Krishnamoorthy, Balaji
On Wed, Sep 14, 2011 at 7:43 PM, Paulraj, Sandeep wrote: > > >> >> On Thu, Aug 25, 2011 at 7:46 AM, Balaji T K wrote: >> > Enable high capacity to host capability. >> > Fixes eMMC detection on boot from MMC/SD card. >> > >> > Signed-off-by: Balaji T K >> > Signed-off-by: Aneesh V >> > --- >> >

[U-Boot] [PATCH v3] net: axi_ethernet: Add driver to u-boot

2011-09-15 Thread Michal Simek
Add axi_ethernet driver for little-endian Microblaze. RX/TX BDs and rxframe buffer are shared among all axi_ethernet MACs. Only one MAC can work in one time. Signed-off-by: Michal Simek --- v2: Fix cammelcase weirdness Create mdio_wait function with timeouts Synchronize debug messages

[U-Boot] [RFC PATCH 4/4 v1] dreamplug: enable fdt

2011-09-15 Thread Jason Cooper
Signed-off-by: Jason Cooper --- board/Marvell/dreamplug/kirkwood-dreamplug.dts | 12 +++ board/Marvell/dreamplug/kirkwood.dtsi | 25 include/configs/dreamplug.h|5 3 files changed, 42 insertions(+), 0 deletions(-) create

[U-Boot] [RFC PATCH 3/4 v1] mvrtc: add fdt support.

2011-09-15 Thread Jason Cooper
Signed-off-by: Jason Cooper --- common/fdt_decode.c |1 + drivers/rtc/mvrtc.c | 62 +++-- drivers/rtc/mvrtc.h |7 + include/fdt_decode.h |1 + 4 files changed, 68 insertions(+), 3 deletions(-) diff --git a/common/fdt_decode.c b/co

[U-Boot] [RFC PATCH 1/4 v1] fdt: remove i2c example code.

2011-09-15 Thread Jason Cooper
Signed-off-by: Jason Cooper --- common/fdt_decode.c | 14 -- include/fdt_decode.h | 32 2 files changed, 0 insertions(+), 46 deletions(-) diff --git a/common/fdt_decode.c b/common/fdt_decode.c index 9e8cf4d..cd7a071 100644 --- a/common/fdt_decod

[U-Boot] [RFC PATCH 2/4 v1] fdt_decode: make more available.

2011-09-15 Thread Jason Cooper
Signed-off-by: Jason Cooper --- common/fdt_decode.c | 11 +-- include/fdt_decode.h | 13 + 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/common/fdt_decode.c b/common/fdt_decode.c index cd7a071..0f13089 100644 --- a/common/fdt_decode.c +++ b/common/fdt_d

[U-Boot] [RFC PATCH 0/4 v1] Use fdt to init mvrtc driver for dreamplug

2011-09-15 Thread Jason Cooper
Simon, All, This patch series is my attempt to learn device tree with a driver I'm familiar with. Also, to create a real, working example for fdt in U-boot. To make this work, I applied v2 of Simon Glass' patch series (what this email is in reply to) against v2011.09-rc1. I then cherry picked m

Re: [U-Boot] u-boot-1.3.3 SMC91111 driver

2011-09-15 Thread Simon Schwarz
Hi, first thing would be to use a current U-Boot Version. This can be obtained from: http://www.denx.de/wiki/U-Boot/SourceCode Regards Simon On 09/15/2011 03:31 PM, Chaney Lee wrote: > hello: > > I need your advise. > I port the u-boot-1.3.3 to my PXA270 board。Every thing works well but the >

[U-Boot] [PATCH v4] serial: uartlite: Support for SERIAL_MULTI

2011-09-15 Thread Michal Simek
Add support for SERIAL MULTI for uartlite. Signed-off-by: Michal Simek --- v2: Use in/out_be32 functions v3: Clean coding style v4: Simplify userial_ports array initialization --- common/serial.c | 14 drivers/serial/serial_xuartlite.c | 134 +

[U-Boot] u-boot-1.3.3 SMC91111 driver

2011-09-15 Thread Chaney Lee
hello: I need your advise. I port the u-boot-1.3.3 to my PXA270 board。Every thing works well but the SMC9 dirver.I have aready config the config file like this: #define CONFIG_DRIVER_SMC9 1 #define CONFIG_SMC9_BASE0x1300 #define CONFIG_SMC9_EXT_PHY #define CONFI

Re: [U-Boot] Pull request: u-boot-arm/master

2011-09-15 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message <4e705073.1090...@aribaud.net> you wrote: > Hi Wolfgang, > > The following changes since commit 6ceb0135f96d73063ffbaab5be7ce23933367388: > >Prepare v2011.09 (2011-09-11 21:31:04 +0200) > > are available in the git repository at: >git://git.denx.de/u-boot

Re: [U-Boot] [PATCH 09/12] da850: read MAC address from I2C EEPROM on AM18xx EVM

2011-09-15 Thread Netagunte, Nagabhushana
Denk, I comments are in-lined. Regards, Nag On Tue, Aug 02, 2011 at 22:00:36, Wolfgang Denk wrote: > Dear nagabhushana.netagu...@ti.com, > > In message <1312299792-16415-10-git-send-email-nagabhushana.netagu...@ti.com> > you wrote: > > From: Nagabhushana Netagunte > > > > The AM18xx EVM conta

Re: [U-Boot] [PATCH v6 1/4] gpio: Move common gpio.h to include/asm-generic

2011-09-15 Thread Wolfgang Denk
Dear Kim, In message <20110913200803.4d76579c.kim.phill...@freescale.com> you wrote: > > > arch/arm/include/asm/gpio.h | 38 > > +- > > arch/powerpc/include/asm/gpio.h |2 ++ > > include/asm-generic/gpio.h | 37 > > +++

[U-Boot] [PATCH 2/2] powerpc/p2041: set sysclk according to status of physical switch SW1

2011-09-15 Thread Shaohui Xie
P2041RDB supports 3 sysclk frequencies, it's selected by SW1[6~8], software need to read the SW1 status to decide what the sysclk needs. SW1[8~6] : frequency 0 0 1 : 83.3MHz 0 1 0 : 100MHz others: 66.667MHz Signed-off-by: Shaohui Xie --- board/freescale/p2041rdb/cpld.h |3 +++ board/fre

[U-Boot] [PATCH 1/2] powerpc/p2041: update cpld reset command according to CPLD 2.0

2011-09-15 Thread Shaohui Xie
CPLD 2.0 provides a new register which bit[0] is set to '1' will reset board with initializing the CPLD registers to default values. And add bit[6] of register at offset 0x5 to use to enable flash bank selection . Signed-off-by: Shaohui Xie --- board/freescale/p2041rdb/cpld.c | 16 +---

Re: [U-Boot] [PATCH 8/8] arm, davinci: add support for am1808 based enbw_cmc board

2011-09-15 Thread Heiko Schocher
Hello Igor, Igor Grinberg wrote: > Hi Heiko, > > On 09/15/11 08:59, Heiko Schocher wrote: >> - booting from NOR Flash with direct boot method >> - POST support >> - LOGBUF support >> >> Signed-off-by: Heiko Schocher >> Cc: Paulraj Sandeep >> Cc: Albert ARIBAUD >> --- > > [...] > >> diff --gi

Re: [U-Boot] [PATCH 8/8] arm, davinci: add support for am1808 based enbw_cmc board

2011-09-15 Thread Igor Grinberg
Hi Heiko, On 09/15/11 08:59, Heiko Schocher wrote: > - booting from NOR Flash with direct boot method > - POST support > - LOGBUF support > > Signed-off-by: Heiko Schocher > Cc: Paulraj Sandeep > Cc: Albert ARIBAUD > --- [...] > diff --git a/board/enbw/enbw_cmc/enbw_cmc.c b/board/enbw/enbw_c