2005-04-17 05:20:36 +07:00
|
|
|
/*
|
2009-09-22 20:29:36 +07:00
|
|
|
* include/linux/amba/mmci.h
|
2005-04-17 05:20:36 +07:00
|
|
|
*/
|
2009-09-22 20:29:36 +07:00
|
|
|
#ifndef AMBA_MMCI_H
|
|
|
|
#define AMBA_MMCI_H
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2007-02-10 04:49:31 +07:00
|
|
|
#include <linux/mmc/host.h>
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2009-09-22 20:29:36 +07:00
|
|
|
struct mmci_platform_data {
|
2005-04-17 05:20:36 +07:00
|
|
|
unsigned int ocr_mask; /* available voltages */
|
|
|
|
u32 (*translate_vdd)(struct device *, unsigned int);
|
|
|
|
unsigned int (*status)(struct device *);
|
2009-07-09 21:15:12 +07:00
|
|
|
int gpio_wp;
|
|
|
|
int gpio_cd;
|
2009-09-14 18:57:11 +07:00
|
|
|
unsigned long capabilities;
|
2005-04-17 05:20:36 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|