[U-Boot] [PATCH 7/8] Updates the at91sam9m10g45ek.h config file.

2011-06-30 Thread Alex.Waterman.awaterman
From: Alex Waterman Moves to using newer defines and adds possible support for the second bank of RAM (if so desired). Also, some coding clean up: removed the needless define to 1s for defines that just act as flags. Signed-off-by: Alex Waterman --- include/configs/at91sam9m10g45ek.h | 188 +

[U-Boot] [PATCH 4/8] Updates the at91sam9mg45_matrix.h header to new defines.

2011-06-30 Thread Alex.Waterman.awaterman
From: Alex Waterman Moves the at91sam9g45_matrix.h header file to use the new ATMEL_BASE_MATRIX define. Signed-off-by: Alex Waterman --- .../arm/include/asm/arch-at91/at91sam9g45_matrix.h | 84 ++-- 1 files changed, 42 insertions(+), 42 deletions(-) diff --git a/arch/arm/inc

[U-Boot] [PATCH 5/8] Updates the board specific files for the at91sam9mg45ek.

2011-06-30 Thread Alex.Waterman.awaterman
From: Alex Waterman Fixes the compile errors in the board specific initializations for the at91sam9m10g45ek specific files. Signed-off-by: Alex Waterman --- board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c | 128 +++ board/atmel/at91sam9m10g45ek/led.c |6 +-

[U-Boot] [PATCH 2/8] Update at91sam9m10g45_devices.c to fix compile errors.

2011-06-30 Thread Alex.Waterman.awaterman
From: Alex Waterman Move this file to the new ATMEL_BASE_* and ATMEL_ID_* defines. Also fixed a problem appearing in the ethernet initialization where the entire board was being reset, not just the ethernet controller. This at least makes ethernet work on my board if the correct environment (mac

[U-Boot] [PATCH 0/8] Fixes compilation for the at91sam9m10g45ek

2011-06-30 Thread Alex.Waterman.awaterman
From: Alex Waterman This patch set fixes the at91sam9mg45ek build for my set up. I have only been able to test this patch on my own NAND booting at91sam9m10g45ek. Dataflash and norflash are untested. Anyway, this is a rough approximation of a patch; I would need more input from people with nor-f

[U-Boot] [PATCH 1/8] Remove old config stuff from Makefile

2011-06-30 Thread Alex.Waterman.awaterman
From: Alex Waterman Start the process of pushing the at91sam9m10g45ek* boards to the new builds.cfg configuration style. At the moment just the generic config is available, add the rest as necessary. Signed-off-by: Alex Waterman --- Makefile | 21 - 1 files changed, 0 ins

[U-Boot] [PATCH 8/8] Updates the boards.cfg file

2011-06-30 Thread Alex.Waterman.awaterman
From: Alex Waterman Add the default generic at91sam9m10g45ek_config target to the new config system. Not all possible configurations of u-boot for the at91sam9m10g45ek are included yet. Add them as needed. Signed-off-by: Alex Waterman --- boards.cfg |1 + 1 files changed, 1 insertions(+),

[U-Boot] [PATCH 3/8] Fix compile problem for some boards in the clock code.

2011-06-30 Thread Alex.Waterman.awaterman
From: Alex Waterman Some boards use AT91_SLOW_CLOCK and other use CONFIG_SYS_AT91_SLOW_CLOCK. This patch makes it so the arm926ejs clock code will return which ever is set. Signed-off-by: Alex Waterman --- arch/arm/cpu/arm926ejs/at91/clock.c |4 1 files changed, 4 insertions(+), 0 del

[U-Boot] [PATCH 6/8] Adds wait to atmel_usart serial_init function

2011-06-30 Thread Alex.Waterman.awaterman
From: Alex Waterman Adds a short busy loop wait to the atmel_usart.c serial_init() function. Signed-off-by: Alex Waterman --- drivers/serial/atmel_usart.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/drivers/serial/atmel_usart.c b/drivers/serial/atmel_usart.c i