Re: [U-Boot] CONFIG_GENERIC_MMC Usage

2009-10-19 Thread Shane Volpe
After further reviewing the code I now see getting the PXA working with the GENERIC_MMC interface is more complex than I thought. From what I can tell reading through the code I really need to re-write the driver/pxa_mmc.c to support the mmc structure (include/mmc.h). It needs to have an initiali

Re: [U-Boot] CONFIG_GENERIC_MMC Usage

2009-10-16 Thread Shane Volpe
Sorry for the top post, I forgot to delete it. Mike, >if you read the arch-specific init files you'll see that a call is made to >mmc_initialize() which in turn calls a board-specific board_mmc_init(). your >board_mmc_init() then calls the driver init functions. it's the same idiom >that is used

Re: [U-Boot] CONFIG_GENERIC_MMC Usage

2009-10-16 Thread Shane Volpe
d add it to my board file, is that correct? Regards, Shane On Fri, Oct 16, 2009 at 7:57 AM, Minkyu Kang wrote: > Dear Shane Volpe > > 2009/10/15 Shane Volpe : >> I have a PXA270 system with U-boot v2009.08 installed, currently this >> system is successfully using the U-boot m

[U-Boot] CONFIG_GENERIC_MMC Usage

2009-10-15 Thread Shane Volpe
I have a PXA270 system with U-boot v2009.08 installed, currently this system is successfully using the U-boot mmc interface (legacy) . However, after looking through the u-boot source code, I see there is a new mmc interface (CONFIG_GENERIC_MMC), should I be using the generic mmc interface? I hav