mci.h 446 B

123456789101112131415161718
  1. #ifndef _ARCH_MCI_H
  2. #define _ARCH_MCI_H
  3. struct s3c24xx_mci_pdata {
  4. unsigned int no_wprotect : 1;
  5. unsigned int no_detect : 1;
  6. unsigned int wprotect_invert : 1;
  7. unsigned int detect_invert : 1; /* set => detect active high. */
  8. unsigned int use_dma : 1;
  9. unsigned int gpio_detect;
  10. unsigned int gpio_wprotect;
  11. unsigned long ocr_avail;
  12. void (*set_power)(unsigned char power_mode,
  13. unsigned short vdd);
  14. };
  15. #endif /* _ARCH_NCI_H */