2011-05-28 04:04:03 +08:00
|
|
|
#ifndef LINUX_MMC_SH_MOBILE_SDHI_H
|
|
|
|
#define LINUX_MMC_SH_MOBILE_SDHI_H
|
2011-03-14 16:52:33 +08:00
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
2011-05-12 00:51:15 +08:00
|
|
|
struct platform_device;
|
|
|
|
struct tmio_mmc_data;
|
|
|
|
|
2011-03-14 16:52:33 +08:00
|
|
|
struct sh_mobile_sdhi_info {
|
|
|
|
int dma_slave_tx;
|
|
|
|
int dma_slave_rx;
|
|
|
|
unsigned long tmio_flags;
|
|
|
|
unsigned long tmio_caps;
|
|
|
|
u32 tmio_ocr_mask; /* available MMC voltages */
|
2011-05-12 00:51:15 +08:00
|
|
|
struct tmio_mmc_data *pdata;
|
2011-03-14 16:52:33 +08:00
|
|
|
void (*set_pwr)(struct platform_device *pdev, int state);
|
|
|
|
int (*get_cd)(struct platform_device *pdev);
|
|
|
|
};
|
|
|
|
|
2011-05-28 04:04:03 +08:00
|
|
|
#endif /* LINUX_MMC_SH_MOBILE_SDHI_H */
|