2005-04-16 22:20:36 +00:00
|
|
|
#ifndef ASMARM_ARCH_MMC_H
|
|
|
|
#define ASMARM_ARCH_MMC_H
|
|
|
|
|
2007-02-09 21:49:31 +00:00
|
|
|
#include <linux/mmc/host.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
|
|
|
|
struct device;
|
|
|
|
struct mmc_host;
|
|
|
|
|
|
|
|
struct pxamci_platform_data {
|
|
|
|
unsigned int ocr_mask; /* available voltages */
|
2005-09-08 21:48:16 +00:00
|
|
|
unsigned long detect_delay; /* delay in jiffies before detecting cards after interrupt */
|
2006-10-09 11:19:47 +00:00
|
|
|
int (*init)(struct device *, irq_handler_t , void *);
|
2005-09-06 22:18:56 +00:00
|
|
|
int (*get_ro)(struct device *);
|
2005-04-16 22:20:36 +00:00
|
|
|
void (*setpower)(struct device *, unsigned int);
|
|
|
|
void (*exit)(struct device *, void *);
|
2009-06-23 21:21:03 +00:00
|
|
|
int gpio_card_detect; /* gpio detecting card insertion */
|
|
|
|
int gpio_card_ro; /* gpio detecting read only toggle */
|
|
|
|
bool gpio_card_ro_invert; /* gpio ro is inverted */
|
|
|
|
int gpio_power; /* gpio powering up MMC bus */
|
|
|
|
bool gpio_power_invert; /* gpio power is inverted */
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern void pxa_set_mci_info(struct pxamci_platform_data *info);
|
2007-12-21 11:15:36 +00:00
|
|
|
extern void pxa3xx_set_mci2_info(struct pxamci_platform_data *info);
|
2007-12-21 11:27:08 +00:00
|
|
|
extern void pxa3xx_set_mci3_info(struct pxamci_platform_data *info);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif
|