2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2008-08-02 09:55:55 +00:00
|
|
|
* arch/arm/include/asm/mach/mmc.h
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
#ifndef ASMARM_MACH_MMC_H
|
|
|
|
#define ASMARM_MACH_MMC_H
|
|
|
|
|
2007-02-09 21:49:31 +00:00
|
|
|
#include <linux/mmc/host.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
struct mmc_platform_data {
|
|
|
|
unsigned int ocr_mask; /* available voltages */
|
|
|
|
u32 (*translate_vdd)(struct device *, unsigned int);
|
|
|
|
unsigned int (*status)(struct device *);
|
2009-07-09 14:15:12 +00:00
|
|
|
int gpio_wp;
|
|
|
|
int gpio_cd;
|
2009-09-14 11:57:11 +00:00
|
|
|
unsigned long capabilities;
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|