2009-11-27 12:31:27 +08:00
|
|
|
#ifndef __SH_MOBILE_SDHI_H__
|
|
|
|
#define __SH_MOBILE_SDHI_H__
|
|
|
|
|
2010-05-20 02:37:36 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2009-11-27 12:31:27 +08:00
|
|
|
struct sh_mobile_sdhi_info {
|
2010-05-20 02:34:16 +08:00
|
|
|
int dma_slave_tx;
|
|
|
|
int dma_slave_rx;
|
2010-05-20 02:36:08 +08:00
|
|
|
unsigned long tmio_flags;
|
2010-05-20 02:37:36 +08:00
|
|
|
u32 tmio_ocr_mask; /* available MMC voltages */
|
2009-11-27 12:31:27 +08:00
|
|
|
void (*set_pwr)(struct platform_device *pdev, int state);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __SH_MOBILE_SDHI_H__ */
|