[PATCH 4/4] [POWERPC] 86xx: mpc8610_hpcd: add SD/MMC card detectpolling

From: Anton Vorontsov
Date: Fri May 16 2008 - 12:52:17 EST


MPC8610HPCD seem to not use interrupts for the SD CD line, so we need
poll it.

Signed-off-by: Anton Vorontsov <avorontsov@xxxxxxxxxxxxx>
---
arch/powerpc/platforms/86xx/mpc8610_hpcd.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c
index be430bc..47078e3 100644
--- a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c
+++ b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c
@@ -63,9 +63,15 @@ static int mmc_get_ro(struct device *dev)
return in_8(pixis_sdcsr) & PX_SDCSR_SD_WP;
}

+static int mmc_get_cd(struct device *dev)
+{
+ return !(in_8(pixis_sdcsr) & PX_SDCSR_SD_nCD);
+}
+
static struct mmc_spi_platform_data mmc_pdata = {
.ocr_mask = MMC_VDD_33_34,
.get_ro = mmc_get_ro,
+ .get_cd = mmc_get_cd,
};

static struct spi_board_info spi_boardinfo = {
--
1.5.5.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/