[U-Boot] at91sam9g20 sd card boot

2009-04-16 Thread Rob Emanuele
Greetings, Is there a framework in place for using U-Boot to boot Linux from an SD Card on an at91sam9g20 processor? I've been reading through the code and found at a minimum, I would need to enable the mmc command and the atmel_mci library. Then the mmc commands exist in the console but mmcinfo

Re: [U-Boot] at91sam9g45ekes SDHC/MMC

2010-04-22 Thread Rob Emanuele
Hi Henry & U-Boot Community, I've been experiencing the same errors and frustration you have. So I've been looking at this code and these patch sets for a day or two now. I've done that in conjunction with reading the SD card spec: http://www.sdcard.org/developers/tech/sdcard/pls/ I've come to

[U-Boot] [PATCH] Create a new driver for Atmel at91/avr MCI adapters that uses the u-boot mmc framework.

2010-04-28 Thread Rob Emanuele
atmel_mmc_init(bd); } Signed-off-by: Rob Emanuele --- drivers/mmc/Makefile|1 + drivers/mmc/gen_atmel_mci.c | 330 +++ 2 files changed, 331 insertions(+), 0 deletions(-) create mode 100644 drivers/mmc/gen_atmel_mci.c diff --git a/drivers/mmc