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 *);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern void pxa_set_mci_info(struct pxamci_platform_data *info);
|
|
|
|
|
|
|
|
#endif
|