[U-Boot] [PATCH V4] Add support for Bluewater Systems Snapper9260/9G20 modules

2011-02-13 Thread 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 Mallon --- Build and run tested with new changes. Changes for v4: - Rebased on atmel/rework110202 branch - Changed text base to

Re: [U-Boot] [PATCH v3] Add support for Bluewater Systems Snapper 9260 and 9G20 modules

2011-02-07 Thread Ryan Mallon
On 02/02/2011 03:18 PM, Ryan Mallon wrote: > 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 Mallon Hello Reinhard, Is this patch okay for inclusion in your tr

[U-Boot] [PATCH v3] Add support for Bluewater Systems Snapper 9260 and 9G20 modules

2011-02-01 Thread 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 Mallon --- Patches apply against the rework101229 branch of git://git.denx.de/u-boot-atmel.git. Builds and runs. Tested Ethernet and

Re: [U-Boot] [PATCH v2 2/3] Add support for Bluewater Systems Snapper 9260 and 9G20 modules

2011-01-26 Thread Ryan Mallon
On 01/26/2011 08:40 PM, Reinhard Meyer wrote: > Dear Wolfgang Denk, >> Dear Ryan Mallon, >> >> In >> message >> >> you wrote: >>> >>> Signed-off-by: Ryan Mallon >>> --- >>> board/bluewater/snapper9260/Makefile

[U-Boot] [PATCH] Fix at91 includes in soft_i2c driver

2011-01-26 Thread Ryan Mallon
Make at91 header includes in soft_i2c depend only on CONFIG_AT91FAMILY rather than individual SoCs. Signed-off-by: Ryan Mallon --- drivers/i2c/soft_i2c.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/i2c/soft_i2c.c b/drivers/i2c/soft_i2c.c index 1a1809a

[U-Boot] [PATCH v2 1/3] Fix at91 includes in soft_i2c driver

2011-01-25 Thread Ryan Mallon
Signed-off-by: Ryan Mallon --- drivers/i2c/soft_i2c.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/i2c/soft_i2c.c b/drivers/i2c/soft_i2c.c index 1a1809a..d3803a2 100644 --- a/drivers/i2c/soft_i2c.c +++ b/drivers/i2c/soft_i2c.c @@ -30,9 +30,7 @@ #include

[U-Boot] [PATCH v2 2/3] Add support for Bluewater Systems Snapper 9260 and 9G20 modules

2011-01-25 Thread Ryan Mallon
Signed-off-by: Ryan Mallon --- board/bluewater/snapper9260/Makefile | 53 board/bluewater/snapper9260/snapper9260.c | 169 + include/configs/snapper9260.h | 191 + 3 files changed, 413 insertions(+), 0 deletions

[U-Boot] [PATCH v2 0/3] Add Bluewater Systems Snapper 9260/9G20 module support

2011-01-25 Thread Ryan Mallon
: - Updated for recent at91 changes - Use CONFIG_AT91FAMILY in soft_i2c driver - Fixed missing snapper9260.h config file - Add config to boards.cfg not Makefile - Removed config.mk (now in snapper9260.h) Ryan Mallon (3): Fix at91 includes in soft_i2c driver Add support for Bluewater Systems Snapper

[U-Boot] [PATCH v2 3/3] Add Bluewater Systems Snapper 9260 and 9G20 modules to top-level boards.cfg

2011-01-25 Thread Ryan Mallon
Signed-off-by: Ryan Mallon --- boards.cfg |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/boards.cfg b/boards.cfg index 9b15026..370ab02 100644 --- a/boards.cfg +++ b/boards.cfg @@ -113,6 +113,8 @@ imx27litearm arm926ejs imx27lite

[U-Boot] [PATCH 2/3] Add support for Bluewater Systems Snapper 9260 and 9G20 modules

2011-01-24 Thread Ryan Mallon
Signed-off-by: Ryan Mallon --- board/bluewater/snapper9260/Makefile | 55 + board/bluewater/snapper9260/config.mk |1 + board/bluewater/snapper9260/snapper9260.c | 177 + 3 files changed, 233 insertions(+), 0 deletions(-) create mode 100644

[U-Boot] [PATCH 1/3] Add AT91SAM9G20 to list of AT91 processors in soft_i2c driver.

2011-01-24 Thread Ryan Mallon
Signed-off-by: Ryan Mallon --- drivers/i2c/soft_i2c.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/i2c/soft_i2c.c b/drivers/i2c/soft_i2c.c index 1a1809a..0a21d02 100644 --- a/drivers/i2c/soft_i2c.c +++ b/drivers/i2c/soft_i2c.c @@ -32,7 +32,7 @@ #endif #if

[U-Boot] [PATCH 3/3] Added Bluewater Systems Snapper 9260 and 9G20 module config to top-level Makefile

2011-01-24 Thread Ryan Mallon
Signed-off-by: Ryan Mallon --- Makefile | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index fd21ef3..7d4ba28 100644 --- a/Makefile +++ b/Makefile @@ -901,6 +901,19 @@ TNY_A9260_config : unconfig @$(MKCONFIG) -n $@ -a

[U-Boot] [PATCH 0/3] Add support for Bluewater System Snapper 9260 and 9G20 modules

2011-01-24 Thread Ryan Mallon
Add support for Bluewater Systems Snapper9260/9G20 modules. The modules are based on the AT91SAM9260 and AT91SAM9G20 processors respectively and support NAND flash and Ethernet. Ryan Mallon (3): Add AT91SAM9G20 to list of AT91 processors in soft_i2c driver. Add support for Bluewater Systems