2005-04-16 18:20:36 -04:00
|
|
|
/*
|
2008-08-02 05:55:55 -04:00
|
|
|
* arch/arm/include/asm/mach/mmc.h
|
2005-04-16 18:20:36 -04:00
|
|
|
*/
|
|
|
|
#ifndef ASMARM_MACH_MMC_H
|
|
|
|
#define ASMARM_MACH_MMC_H
|
|
|
|
|
2007-02-09 16:49:31 -05:00
|
|
|
#include <linux/mmc/host.h>
|
2005-04-16 18:20:36 -04: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 10:15:12 -04:00
|
|
|
int gpio_wp;
|
|
|
|
int gpio_cd;
|
2009-09-14 07:57:11 -04:00
|
|
|
unsigned long capabilities;
|
2005-04-16 18:20:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|