[U-Boot] [PATCH 1/2] [V2] AT91: Makes AT91SAM9263 SoC build correctly against u-boot-atmel/master

2011-06-11 Thread Hong Xu
Rework for AT91SAM9263 SoC, makes it build again. Based on the work for AT91SAM9260-EK. Signed-off-by: Hong Xu --- arch/arm/cpu/arm926ejs/at91/lowlevel_init.S|2 +- arch/arm/cpu/arm926ejs/at91/timer.c| 13 ++ arch/arm/include/asm/arch-at91/at91_spi.h |2

[U-Boot] [PATCH 2/2] [V2] AT91: Makes AT91SAM9263-EK build correctly against u-boot-atmel/master

2011-06-11 Thread Hong Xu
Rework for AT91SAM9263-EK, makes it build again. Based on the work for AT91SAM9260-EK. Signed-off-by: Hong Xu --- Makefile | 19 --- board/atmel/at91sam9263ek/at91sam9263ek.c | 56 --- board/atmel/at91sam9263ek/config.mk |1 - bo

Re: [U-Boot] Booting to an alternate bank on an ADS512101?

2011-06-11 Thread Wolfgang Denk
Dear Timur Tabi, In message <4df29990.9040...@freescale.com> you wrote: > > I just got an ADS512101, so I have a few beginner questions on it. Which exact board revision is this? > Is it possible to boot to an "alternate" flash bank on this board, like the > "pixis_reset altbank" command does?

[U-Boot] [PATCH 1/2] [V2] AT91: Makes AT91SAM9261(9G10) SoC build correctly against u-boot-atmel/master

2011-06-11 Thread Hong Xu
Rework for AT91SAM9261(9G10) SoC, makes it build again. Based on the work for AT91SAM9260-EK. Signed-off-by: Hong Xu --- arch/arm/cpu/arm926ejs/at91/at91sam9261_devices.c | 45 +--- arch/arm/include/asm/arch-at91/at91_spi.h |2 +- arch/arm/include/asm/arch-at91/at91sam926

[U-Boot] [PATCH 2/2] [V2] AT91: Makes AT91SAM9261(9G10)-EK build correctly against u-boot-atmel/master

2011-06-11 Thread Hong Xu
Rework for AT91SAM9261(9G10)-EK, makes it build again. Based on the work for AT91SAM9260-EK. Signed-off-by: Hong Xu --- Makefile | 23 - board/atmel/at91sam9261ek/at91sam9261ek.c | 136 +++-- board/atmel/at91sam9261ek/config.mk

[U-Boot] [PATCH v10] Add support for Network Space v2 and parents

2011-06-11 Thread Simon Guinot
This patch add support for the Network Space v2 board and parents, based on the Marvell Kirkwood 6281 SoC. This include Network Space (Max) v2 and Internet Space v2. Additional information is available at: http://lacie-nas.org/doku.php?id=network_space_v2 Signed-off-by: Simon Guinot --- Changes

Re: [U-Boot] [Patch V5] Add support for Bluewater Systems Snapper 9260/9G20 modules

2011-06-11 Thread Simon Glass
Hi Reinhard, On Sun, Jun 5, 2011 at 11:09 PM, Reinhard Meyer wrote: > Dear Simon Glass: > > From: Ryan Mallon > > > > Add support for Bluewater Systems AT91 based Snapper 9260 and 9G20 > > single board computer modules. Includes NAND flash and Ethernet > > support. > > > > Signed-off-by: Ryan Ma

Re: [U-Boot] About the CRC of u-boot.bin

2011-06-11 Thread Mike Frysinger
On Saturday, June 11, 2011 02:55:41 Wolfgang Denk wrote: > Peter Pan wrote: > > I found out that even with the same source code, the final u-boot.bin > > has a different MD5sum each time I build. > > Is that possible to get an identical u-boot.bin for the same source > > code, no matter when I buil

[U-Boot] [PATCH 0/8] Add Highbank platform

2011-06-11 Thread Rob Herring
From: Rob Herring This series enables AHCI on non-PCI platforms, converts Samsung mmc to a common SDHCI implementation, and adds basic support for the Calxeda highbank platform which uses AHCI and SDHCI drivers. Rob Rob Herring (8): mmc: copy s5p to sdhci mmc: sdhci: rework Samsung specfic

[U-Boot] [PATCH 3/8] mmc: sdhci: exit cmd on error status

2011-06-11 Thread Rob Herring
From: Rob Herring If the controller has an error condition, then stop polling for command complete and exit mmc_send_cmd. Signed-off-by: Rob Herring --- drivers/mmc/sdhci.c |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c ind

[U-Boot] [PATCH 4/8] arm: add __ilog2 function

2011-06-11 Thread Rob Herring
From: Rob Herring Add __ilog2 function for ARM. Needed for ahci.c Signed-off-by: Rob Herring --- arch/arm/include/asm/bitops.h |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/bitops.h b/arch/arm/include/asm/bitops.h index 270f163..0420182 1

[U-Boot] [PATCH 1/8] mmc: copy s5p to sdhci

2011-06-11 Thread Rob Herring
From: Rob Herring The s5p mmc controller is a standard SDHCI controller with a few extra registers. So rename it to reflect that and so other platforms can use it. Signed-off-by: Rob Herring --- drivers/mmc/Makefile |3 +- drivers/mmc/s5p_mmc.c | 482 -

[U-Boot] [PATCH 2/8] mmc: sdhci: rework Samsung specfic code

2011-06-11 Thread Rob Herring
From: Rob Herring Move the register definitions into the sdhci.c file. Set the base address from the board init code. The Samsung SDHCI controller has extra registers. Make them conditional on CONFIG_MMC_S5P. Signed-off-by: Rob Herring --- arch/arm/include/asm/arch-s5pc1xx/mmc.h | 73 -

[U-Boot] [PATCH 6/8] scsi/ahci: add support for non-PCI controllers

2011-06-11 Thread Rob Herring
From: Rob Herring Add support for AHCI controllers that are not PCI based. Signed-off-by: Rob Herring --- common/cmd_scsi.c|6 +++- drivers/block/ahci.c | 70 +++-- include/ahci.h |4 +++ include/scsi.h |1 + 4 files cha

[U-Boot] [PATCH 5/8] scsi/ahci: ata id little endian fix

2011-06-11 Thread Rob Herring
From: Rob Herring The ata id string always needs swapping, not just on BE machines. Signed-off-by: Rob Herring --- drivers/block/ahci.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/block/ahci.c b/drivers/block/ahci.c index a3ca2dc..d431c5a 100644 --- a/driv

[U-Boot] [PATCH 7/8] ARM: add missing CONFIG_SKIP_LOWLEVEL_INIT for armv7

2011-06-11 Thread Rob Herring
From: Rob Herring cpu_init_crit can be skipped, but the code is still enabled requiring a platform to supply lowlevel_init. Signed-off-by: Rob Herring --- arch/arm/cpu/armv7/start.S |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/armv7/start.S b/arch/arm/

[U-Boot] [PATCH 8/8] ARM: Add Calxeda Highbank platform

2011-06-11 Thread Rob Herring
From: Rob Herring Add basic support for Calxeda Highbank platform. This includes support for serial, mmc, and sata. Signed-off-by: Jason Hobbs Signed-off-by: Rob Herring --- arch/arm/cpu/armv7/highbank/Makefile | 46 +++ arch/arm/cpu/armv7/highbank/config.mk|4 + arch/ar

Re: [U-Boot] [PATCH v7 RESEND 5/5] usbeth: asix: Do a fast init if link already established

2011-06-11 Thread Mike Frysinger
On Friday, June 10, 2011 18:22:06 Simon Glass wrote: > On Fri, Jun 10, 2011 at 1:09 PM, Mike Frysinger wrote: > > On Friday, June 10, 2011 11:04:11 Simon Glass wrote: > >> The Asix driver takes the link down during init() and then brings it > >> back up. This commit changes this so that if a link

Re: [U-Boot] [PATCH v7 RESEND 5/5] usbeth: asix: Do a fast init if link already established

2011-06-11 Thread Simon Glass
On Sat, Jun 11, 2011 at 3:17 PM, Mike Frysinger wrote: > On Friday, June 10, 2011 18:22:06 Simon Glass wrote: >> On Fri, Jun 10, 2011 at 1:09 PM, Mike Frysinger wrote: >> > On Friday, June 10, 2011 11:04:11 Simon Glass wrote: >> >> The Asix driver takes the link down during init() and then brings

[U-Boot] [PATCH] imx31_phycore: Fix build by using new relocation scheme

2011-06-11 Thread Fabio Estevam
Signed-off-by: Fabio Estevam --- Build tested only. Don't have access to this hardware. board/imx31_phycore/config.mk |1 - board/imx31_phycore/imx31_phycore.c | 22 ++ include/configs/imx31_phycore.h | 12 3 files changed, 26 insertions(+), 9 d

[U-Boot] [PATCH] mx1ads: Fix build by using new relocation scheme

2011-06-11 Thread Fabio Estevam
Signed-off-by: Fabio Estevam --- Build tested only. Don't have access to this hardware. board/mx1ads/config.mk | 25 - board/mx1ads/mx1ads.c| 27 +++ include/configs/mx1ads.h | 10 ++ 3 files changed, 29 insertions(+), 33 deleti

[U-Boot] [PATCH] vision2: Fix build due to WEIM registers name change

2011-06-11 Thread Fabio Estevam
commit 0015de1a (MX5: Make the weim structure complete) fixed the name for the WEIM registers in order to match with the MX51/MX53 manuals. Fix the WEIM register for vision2 board so that it can build again. Signed-off-by: Fabio Estevam --- board/ttcontrol/vision2/vision2.c | 10 +- 1