2005-04-17 00:20:36 +02:00
|
|
|
#ifndef ASMARM_ARCH_MMC_H
|
|
|
|
#define ASMARM_ARCH_MMC_H
|
|
|
|
|
|
|
|
#include <linux/mmc/protocol.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
|
|
|
|
struct device;
|
|
|
|
struct mmc_host;
|
|
|
|
|
|
|
|
struct pxamci_platform_data {
|
|
|
|
unsigned int ocr_mask; /* available voltages */
|
2005-09-08 23:48:16 +02:00
|
|
|
unsigned long detect_delay; /* delay in jiffies before detecting cards after interrupt */
|
2006-10-09 13:19:47 +02:00
|
|
|
int (*init)(struct device *, irq_handler_t , void *);
|
2005-09-07 00:18:56 +02:00
|
|
|
int (*get_ro)(struct device *);
|
2005-04-17 00:20:36 +02:00
|
|
|
void (*setpower)(struct device *, unsigned int);
|
|
|
|
void (*exit)(struct device *, void *);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern void pxa_set_mci_info(struct pxamci_platform_data *info);
|
|
|
|
|
|
|
|
#endif
|