sh_mobile_sdhi.h 397 B

12345678910111213141516
  1. #ifndef __SH_MOBILE_SDHI_H__
  2. #define __SH_MOBILE_SDHI_H__
  3. #include <linux/types.h>
  4. struct sh_mobile_sdhi_info {
  5. int dma_slave_tx;
  6. int dma_slave_rx;
  7. unsigned long tmio_flags;
  8. unsigned long tmio_caps;
  9. u32 tmio_ocr_mask; /* available MMC voltages */
  10. void (*set_pwr)(struct platform_device *pdev, int state);
  11. int (*get_cd)(struct platform_device *pdev);
  12. };
  13. #endif /* __SH_MOBILE_SDHI_H__ */