Re: [U-Boot] [RFC] mmc: Properly determine maximum supported bus width

2012-11-27 Thread Stephen Warren
On 11/26/2012 04:33 PM, Fleming Andy-AFLEMING wrote: Yes, I'm processing my queue today. This patch didn't show up in the pull request you just sent. On Nov 26, 2012, at 17:27, Stephen Warren swar...@wwwdotorg.org wrote: On 10/31/2012 11:02 PM, Andy Fleming wrote: At some point, a

Re: [U-Boot] [RFC] mmc: Properly determine maximum supported bus width

2012-11-27 Thread Andy Fleming
On Tue, Nov 27, 2012 at 5:40 PM, Stephen Warren swar...@wwwdotorg.orgwrote: On 11/26/2012 04:33 PM, Fleming Andy-AFLEMING wrote: Yes, I'm processing my queue today. This patch didn't show up in the pull request you just sent. Yeah, sorry, I don't know how that happened. I'm applying it

Re: [U-Boot] [RFC] mmc: Properly determine maximum supported bus width

2012-11-26 Thread Stephen Warren
On 10/31/2012 11:02 PM, Andy Fleming wrote: At some point, a confusion arose about the use of the bit definitions in host_caps for bus widths, and the value in ext_csd. By coincidence, a simple shift could convert between one and the other: MMC_MODE_1BIT = 0, EXT_CSD_BUS_WIDTH_1 = 0

Re: [U-Boot] [RFC] mmc: Properly determine maximum supported bus width

2012-11-26 Thread Fleming Andy-AFLEMING
Yes, I'm processing my queue today. On Nov 26, 2012, at 17:27, Stephen Warren swar...@wwwdotorg.org wrote: On 10/31/2012 11:02 PM, Andy Fleming wrote: At some point, a confusion arose about the use of the bit definitions in host_caps for bus widths, and the value in ext_csd. By coincidence,

Re: [U-Boot] [RFC] mmc: Properly determine maximum supported bus width

2012-11-02 Thread Stephen Warren
On 10/31/2012 11:02 PM, Andy Fleming wrote: At some point, a confusion arose about the use of the bit definitions in host_caps for bus widths, and the value in ext_csd. By coincidence, a simple shift could convert between one and the other: MMC_MODE_1BIT = 0, EXT_CSD_BUS_WIDTH_1 = 0

[U-Boot] [RFC] mmc: Properly determine maximum supported bus width

2012-11-01 Thread Andy Fleming
At some point, a confusion arose about the use of the bit definitions in host_caps for bus widths, and the value in ext_csd. By coincidence, a simple shift could convert between one and the other: MMC_MODE_1BIT = 0, EXT_CSD_BUS_WIDTH_1 = 0 MMC_MODE_4BIT = 0x100, EXT_CSD_BUS_WIDTH_4 = 1

Re: [U-Boot] [RFC] mmc: Properly determine maximum supported bus width

2012-11-01 Thread Jaehoon Chung
Hi Andy, It's working fine on my environment. Tested-by: Jaehoon Chung jh80.ch...@samsung.com Best Regards, Jaehoon Chung On 11/01/2012 02:02 PM, Andy Fleming wrote: At some point, a confusion arose about the use of the bit definitions in host_caps for bus widths, and the value in ext_csd.