linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mmc: au1xmmc: allow platforms to disable host capabilities
@ 2009-10-14  7:38 Manuel Lauss
  2010-01-29  0:10 ` Ralf Baechle
  0 siblings, 1 reply; 2+ messages in thread
From: Manuel Lauss @ 2009-10-14  7:38 UTC (permalink / raw)
  To: linux-mmc; +Cc: Manuel Lauss, Linux-MIPS


Although the hardware supports a 4/8bit SD interface and the driver
unconditionally advertises all hardware caps to the MMC core, not all
datalines may actually be wired up.  This patch introduces another
field to au1xmmc platform data allowing platforms to disable certain
advanced host controller features.

Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com>
---
 arch/mips/include/asm/mach-au1x00/au1100_mmc.h |    1 +
 drivers/mmc/host/au1xmmc.c                     |    4 ++++
 2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/arch/mips/include/asm/mach-au1x00/au1100_mmc.h b/arch/mips/include/asm/mach-au1x00/au1100_mmc.h
index c35e209..a674643 100644
--- a/arch/mips/include/asm/mach-au1x00/au1100_mmc.h
+++ b/arch/mips/include/asm/mach-au1x00/au1100_mmc.h
@@ -46,6 +46,7 @@ struct au1xmmc_platform_data {
 	int(*card_readonly)(void *mmc_host);
 	void(*set_power)(void *mmc_host, int state);
 	struct led_classdev *led;
+	unsigned long mask_host_caps;
 };

 #define SD0_BASE	0xB0600000
diff --git a/drivers/mmc/host/au1xmmc.c b/drivers/mmc/host/au1xmmc.c
index 7534726..e2caf5a 100644
--- a/drivers/mmc/host/au1xmmc.c
+++ b/drivers/mmc/host/au1xmmc.c
@@ -1025,6 +1025,10 @@ static int __devinit au1xmmc_probe(struct platform_device *pdev)
 	} else
 		mmc->caps |= MMC_CAP_NEEDS_POLL;

+	/* platform may not be able to use all advertised caps */
+	if (host->platdata)
+		mmc->caps &= ~(host->platdata->mask_host_caps);
+
 	tasklet_init(&host->data_task, au1xmmc_tasklet_data,
 			(unsigned long)host);

-- 
1.6.5

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] mmc: au1xmmc: allow platforms to disable host capabilities
  2009-10-14  7:38 [PATCH] mmc: au1xmmc: allow platforms to disable host capabilities Manuel Lauss
@ 2010-01-29  0:10 ` Ralf Baechle
  0 siblings, 0 replies; 2+ messages in thread
From: Ralf Baechle @ 2010-01-29  0:10 UTC (permalink / raw)
  To: Manuel Lauss; +Cc: linux-mmc, Manuel Lauss, Linux-MIPS

On Wed, Oct 14, 2009 at 09:38:06AM +0200, Manuel Lauss wrote:

> Although the hardware supports a 4/8bit SD interface and the driver
> unconditionally advertises all hardware caps to the MMC core, not all
> datalines may actually be wired up.  This patch introduces another
> field to au1xmmc platform data allowing platforms to disable certain
> advanced host controller features.

Haven't heared anything from the MMC folks so I've queued this one for
2.6.34.

Thanks,

  Ralf

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-01-29  0:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-10-14  7:38 [PATCH] mmc: au1xmmc: allow platforms to disable host capabilities Manuel Lauss
2010-01-29  0:10 ` Ralf Baechle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).