[U-Boot] [PATCH V4 0/4] Add basic NVIDIA Tegra2 SoC support

2011-01-20 Thread Tom Warren
This series of patches adds preliminary/baseline support for NVIDIA's Tegra2 SoC. Basic CPU (AVP), RAM and UART init are covered so that the system (Harmony or Seaboard) can boot to the U-Boot serial cmd prompt. Further support (for Cortex-A9 CPU(s), USB, SD/MMC, etc.) to follow. Changes for V2:

[U-Boot] [PATCH v2] Net: Add Intel E1000 82574L PCIe card support

2011-01-20 Thread Roy Zang
Add Intel E1000 82574L PCIe card support. Test on MPC8544DS and MPC8572 board. Add the missing contact information for future support. Signed-off-by: Roy Zang Acked-by: Kumar Gala --- minor style clean up vs. v1 version. drivers/net/e1000.c | 33 + drivers/net

Re: [U-Boot] environmental "baudrate" not used at boot up

2011-01-20 Thread Aggrwal Poonam-B10812
> -Original Message- > From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] > On Behalf Of Wood Scott-B07421 > Sent: Thursday, January 20, 2011 1:28 AM > To: chr...@cyberswitching.com > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] environmental "baudrate" not used at

Re: [U-Boot] [PATCH] net: ftmac100: remove unncessary volatiles

2011-01-20 Thread Po-Yu Chuang
Hi Sergei, On Thu, Jan 20, 2011 at 11:38 PM, Sergei Shtylyov wrote: > Hello. > > Po-Yu Chuang wrote: > >> From: Po-Yu Chuang > >> This patch also update get_timer() usage. > >   This seems like a material for a separate patch. OK, I will split this to 2 patches later. > [...] >> >> @@ -219,14

Re: [U-Boot] [PATCH V2 03/11] mxc_i2c: Add support for the i.MX35 processor

2011-01-20 Thread Heiko Schocher
Hello Stefano, Stefano Babic wrote: > Signed-off-by: Stefano Babic > CC: Heiko Schocher > --- > Changes: > > Wolfgang Denk: > - Do not use XXX in defines because are blocked by SPAM filters > > drivers/i2c/mxc_i2c.c |9 + > 1 files changed, 5 insertions(+), 4 deletions(-) A

Re: [U-Boot] [PATCH V3 04/11] I2C: mxc_i2c: get rid of __REG access

2011-01-20 Thread Heiko Schocher
Hello Stefano, Stefano Babic wrote: > This driver accesses to processor's register > via __REG macros, that are removed (or are planned > to be removed) and replaced by C structures. > This patches replaces all occurrencies of __REG macros. > > Signed-off-by: Stefano Babic > CC: Heiko Schocher

[U-Boot] [PATCH] mpc52xx, digsy_mtc_rev5: Fix Linux crash, if no Flash in bank 2

2011-01-20 Thread Heiko Schocher
If no Flash is connected to cs1, Linux crashes, because reg entries are not correct adapted. Following fix is needed: - swap base addresses in CONFIG_SYS_FLASH_BANKS_LIST, as flash bank 1 is on chipselect 0 and flash bank 2 on chipselect 1 - call fdt_fixup_nor_flash_size() from ft_board_setup(

Re: [U-Boot] [PATCH v3 1/2] armv7: add support for S5PC210 SoC

2011-01-20 Thread Minkyu Kang
Dear Wolfgang Denk, On 20 January 2011 22:31, Wolfgang Denk wrote: > Dear Minkyu Kang, > > In message <4d382f3e.6080...@samsung.com> you wrote: >> S5PC210 is a 32-bit RISC and Cortex-A9 Dual Core based micro-processor. > ... >> new file mode 100644 >> index 000..69011fc >> --- /dev/null >> ++

Re: [U-Boot] [PATCH V3 05/11] I2C: mxc_i2c: address failure with mx35 processor

2011-01-20 Thread Heiko Schocher
Hello Stefano, just a question ... Stefano Babic wrote: > There is sporadic failures when more as one I2C slave > is on the bus and the processor tries to communicate > with more as one slave. > The problem was seen on a mx35pdk (two I2C slaves, > PMIC controller and CAN/RTC chip). > > The curre

Re: [U-Boot] U-Boot support for board(s) meesc, otc570

2011-01-20 Thread Reinhard Meyer
Dear Daniel Gorsulowski, > Hello Reinhard, > > Reinhard Meyer wrote: >> Dear Daniel Gorsulowski, ... >> The at91sam9260(9xe)ek board builds fine and works. > > I can confirm that. > >> Use that as a template or reference what to do. >> You should *only* need to adapt board/*/files and your config

Re: [U-Boot] [PATCH v2] include/linux/mii.h: update for supporting GE

2011-01-20 Thread Wolfgang Denk
Dear Macpaul Lin, In message <129134-18586-1-git-send-email-macp...@andestech.com> you wrote: > This file has been synced (copy) from Linux source code. > This commit was based on kernel 2.6.32. > It updates gigabit related phy registers and basic definitions. > > Signed-off-by: Macpaul Lin

[U-Boot] ??: [PATCH v2] include/linux/mii.h: update for supporting GE

2011-01-20 Thread macpaul
Dear Wolfgang, > > Dear Macpaul Lin, > > In message > <129134-18586-1-git-send-email-macp...@andestech.com> you wrote: > > This file has been synced (copy) from Linux source code. > > This commit was based on kernel 2.6.32. > > It updates gigabit related phy registers and basic definitions

[U-Boot] ??: [PATCH v2] include/linux/mii.h: update for supporting GE

2011-01-20 Thread macpaul
Dear Wolfgang, > /home/wd/git/u-boot/work/include/linux/mii.h:133:1: warning: > "LPA_1000FULL" redefined > In file included from uec.c:31: > uec_phy.h:34:1: warning: this is the location of the previous > definition > In file included from /home/wd/git/u-boot/work/include/miiphy.h:37, >

[U-Boot] ??: [PATCH v2] include/linux/mii.h: update for supporting GE

2011-01-20 Thread macpaul
Dear Wolfgang, > /home/wd/git/u-boot/work/include/linux/mii.h:134:1: warning: > "LPA_1000HALF" redefined > In file included from uec_phy.c:26: > uec_phy.h:35:1: warning: this is the location of the previous > definition >textdata bss dec hex filename > 327682 28828 2305

[U-Boot] [PATCH v2 1/2] net: ftmac100: remove unncessary volatiles

2011-01-20 Thread Po-Yu Chuang
From: Po-Yu Chuang Signed-off-by: Po-Yu Chuang --- v2: split get_timer() changes to a seperate patch drivers/net/ftmac100.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/net/ftmac100.c b/drivers/net/ftmac100.c index 2328cb5..27381a3 100644 --- a/d

[U-Boot] [PATCH v2 2/2] net: ftmac100: update get_timer() usages

2011-01-20 Thread Po-Yu Chuang
From: Po-Yu Chuang Use get_timer() the same way as drivers/net/ftgmac100.c Signed-off-by: Po-Yu Chuang --- v2: this patch is splitted from "net: ftmac100: remove unncessary volatiles" drivers/net/ftmac100.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/

<    1   2