2009-12-08 22:11:36 +03:00
|
|
|
/*
|
|
|
|
* arch/arm/include/asm/mach/mmc.h
|
|
|
|
*/
|
|
|
|
#ifndef ASMARM_MACH_MMC_H
|
|
|
|
#define ASMARM_MACH_MMC_H
|
|
|
|
|
|
|
|
#include <linux/mmc/host.h>
|
|
|
|
#include <linux/mmc/card.h>
|
|
|
|
#include <linux/mmc/sdio_func.h>
|
|
|
|
|
2011-01-18 08:52:49 +03:00
|
|
|
struct msm_mmc_gpio {
|
|
|
|
unsigned no;
|
|
|
|
const char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct msm_mmc_gpio_data {
|
|
|
|
struct msm_mmc_gpio *gpio;
|
|
|
|
u8 size;
|
|
|
|
};
|
|
|
|
|
2010-07-29 15:25:34 +04:00
|
|
|
struct msm_mmc_platform_data {
|
2009-12-08 22:11:36 +03:00
|
|
|
unsigned int ocr_mask; /* available voltages */
|
|
|
|
u32 (*translate_vdd)(struct device *, unsigned int);
|
|
|
|
unsigned int (*status)(struct device *);
|
|
|
|
int (*register_status_notify)(void (*callback)(int card_present, void *dev_id), void *dev_id);
|
2011-01-18 08:52:49 +03:00
|
|
|
struct msm_mmc_gpio_data *gpio_data;
|
2011-08-21 15:52:44 +04:00
|
|
|
void (*init_card)(struct mmc_card *card);
|
2009-12-08 22:11:36 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|