* [RFC PATCH] atmel-mci: fix initialization of 8bit-bus-width-mode for at91sam9g45
@ 2011-06-21 22:10 Hubert Feurstein
2011-06-21 22:23 ` Sascha Hauer
0 siblings, 1 reply; 2+ messages in thread
From: Hubert Feurstein @ 2011-06-21 22:10 UTC (permalink / raw)
To: barebox
When the bus_width was set to 8, then only one data-line has been initialized.
Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
---
It seems that nobody tried the 8bit mode yet, because this init-bug is present in the
linux kernel as well.
@Sascha: I assume the mci-host-driver should set both bits (MMC_MODE_4BIT and MMC_MODE_8BIT)
when bus_width == 8 ???
arch/arm/mach-at91/at91sam9g45_devices.c | 4 ++--
drivers/mci/atmel_mci.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/arch/arm/mach-at91/at91sam9g45_devices.c b/arch/arm/mach-at91/at91sam9g45_devices.c
index dc01705..a474bd7 100644
--- a/arch/arm/mach-at91/at91sam9g45_devices.c
+++ b/arch/arm/mach-at91/at91sam9g45_devices.c
@@ -285,7 +285,7 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
/* DAT0, maybe DAT1..DAT3 and maybe DAT4..DAT7 */
at91_set_A_periph(AT91_PIN_PA2, 1);
- if (data->bus_width == 4) {
+ if (data->bus_width >= 4) {
at91_set_A_periph(AT91_PIN_PA3, 1);
at91_set_A_periph(AT91_PIN_PA4, 1);
at91_set_A_periph(AT91_PIN_PA5, 1);
@@ -310,7 +310,7 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
/* DAT0, maybe DAT1..DAT3 and maybe DAT4..DAT7 */
at91_set_A_periph(AT91_PIN_PA23, 1);
- if (data->bus_width == 4) {
+ if (data->bus_width >= 4) {
at91_set_A_periph(AT91_PIN_PA24, 1);
at91_set_A_periph(AT91_PIN_PA25, 1);
at91_set_A_periph(AT91_PIN_PA26, 1);
diff --git a/drivers/mci/atmel_mci.c b/drivers/mci/atmel_mci.c
index 49a7851..d8bcf81 100644
--- a/drivers/mci/atmel_mci.c
+++ b/drivers/mci/atmel_mci.c
@@ -451,9 +451,9 @@ static int mci_probe(struct device_d *hw_dev)
host->mci.init = mci_reset;
host->mci.host_caps = pd->host_caps;
- if (pd->bus_width == 4)
+ if (pd->bus_width >= 4)
host->mci.host_caps |= MMC_MODE_4BIT;
- else if (pd->bus_width == 8)
+ if (pd->bus_width == 8)
host->mci.host_caps |= MMC_MODE_8BIT;
host->base = (void __iomem *)hw_dev->map_base;
--
1.7.4.1
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [RFC PATCH] atmel-mci: fix initialization of 8bit-bus-width-mode for at91sam9g45
2011-06-21 22:10 [RFC PATCH] atmel-mci: fix initialization of 8bit-bus-width-mode for at91sam9g45 Hubert Feurstein
@ 2011-06-21 22:23 ` Sascha Hauer
0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2011-06-21 22:23 UTC (permalink / raw)
To: Hubert Feurstein; +Cc: barebox
On Wed, Jun 22, 2011 at 12:10:16AM +0200, Hubert Feurstein wrote:
> When the bus_width was set to 8, then only one data-line has been initialized.
>
> Signed-off-by: Hubert Feurstein <h.feurstein@gmail.com>
applied to -next
Sascha
> Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
> Cc: Sascha Hauer <s.hauer@pengutronix.de>
> ---
> It seems that nobody tried the 8bit mode yet, because this init-bug is present in the
> linux kernel as well.
>
> @Sascha: I assume the mci-host-driver should set both bits (MMC_MODE_4BIT and MMC_MODE_8BIT)
> when bus_width == 8 ???
>
> arch/arm/mach-at91/at91sam9g45_devices.c | 4 ++--
> drivers/mci/atmel_mci.c | 4 ++--
> 2 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm/mach-at91/at91sam9g45_devices.c b/arch/arm/mach-at91/at91sam9g45_devices.c
> index dc01705..a474bd7 100644
> --- a/arch/arm/mach-at91/at91sam9g45_devices.c
> +++ b/arch/arm/mach-at91/at91sam9g45_devices.c
> @@ -285,7 +285,7 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
>
> /* DAT0, maybe DAT1..DAT3 and maybe DAT4..DAT7 */
> at91_set_A_periph(AT91_PIN_PA2, 1);
> - if (data->bus_width == 4) {
> + if (data->bus_width >= 4) {
> at91_set_A_periph(AT91_PIN_PA3, 1);
> at91_set_A_periph(AT91_PIN_PA4, 1);
> at91_set_A_periph(AT91_PIN_PA5, 1);
> @@ -310,7 +310,7 @@ void at91_add_device_mci(short mmc_id, struct atmel_mci_platform_data *data)
>
> /* DAT0, maybe DAT1..DAT3 and maybe DAT4..DAT7 */
> at91_set_A_periph(AT91_PIN_PA23, 1);
> - if (data->bus_width == 4) {
> + if (data->bus_width >= 4) {
> at91_set_A_periph(AT91_PIN_PA24, 1);
> at91_set_A_periph(AT91_PIN_PA25, 1);
> at91_set_A_periph(AT91_PIN_PA26, 1);
> diff --git a/drivers/mci/atmel_mci.c b/drivers/mci/atmel_mci.c
> index 49a7851..d8bcf81 100644
> --- a/drivers/mci/atmel_mci.c
> +++ b/drivers/mci/atmel_mci.c
> @@ -451,9 +451,9 @@ static int mci_probe(struct device_d *hw_dev)
> host->mci.init = mci_reset;
>
> host->mci.host_caps = pd->host_caps;
> - if (pd->bus_width == 4)
> + if (pd->bus_width >= 4)
> host->mci.host_caps |= MMC_MODE_4BIT;
> - else if (pd->bus_width == 8)
> + if (pd->bus_width == 8)
> host->mci.host_caps |= MMC_MODE_8BIT;
>
> host->base = (void __iomem *)hw_dev->map_base;
> --
> 1.7.4.1
>
>
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-06-21 22:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-21 22:10 [RFC PATCH] atmel-mci: fix initialization of 8bit-bus-width-mode for at91sam9g45 Hubert Feurstein
2011-06-21 22:23 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox