mmc-s3cmci.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #ifndef _ARCH_MCI_H
  2. #define _ARCH_MCI_H
  3. /**
  4. * struct s3c24xx_mci_pdata - sd/mmc controller platform data
  5. * @no_wprotect: Set this to indicate there is no write-protect switch.
  6. * @no_detect: Set this if there is no detect switch.
  7. * @wprotect_invert: Invert the default sense of the write protect switch.
  8. * @detect_invert: Invert the default sense of the write protect switch.
  9. * @use_dma: Set to allow the use of DMA.
  10. * @gpio_detect: GPIO number for the card detect line.
  11. * @gpio_wprotect: GPIO number for the write protect line.
  12. * @ocr_avail: The mask of the available power states, non-zero to use.
  13. * @set_power: Callback to control the power mode.
  14. *
  15. * The @gpio_detect is used for card detection when @no_wprotect is unset,
  16. * and the default sense is that 0 returned from gpio_get_value() means
  17. * that a card is inserted. If @detect_invert is set, then the value from
  18. * gpio_get_value() is inverted, which makes 1 mean card inserted.
  19. *
  20. * The driver will use @gpio_wprotect to signal whether the card is write
  21. * protected if @no_wprotect is not set. A 0 returned from gpio_get_value()
  22. * means the card is read/write, and 1 means read-only. The @wprotect_invert
  23. * will invert the value returned from gpio_get_value().
  24. *
  25. * Card power is set by @ocr_availa, using MCC_VDD_ constants if it is set
  26. * to a non-zero value, otherwise the default of 3.2-3.4V is used.
  27. */
  28. struct s3c24xx_mci_pdata {
  29. unsigned int no_wprotect:1;
  30. unsigned int no_detect:1;
  31. unsigned int wprotect_invert:1;
  32. unsigned int detect_invert:1; /* set => detect active high */
  33. unsigned int use_dma:1;
  34. unsigned int gpio_detect;
  35. unsigned int gpio_wprotect;
  36. unsigned long ocr_avail;
  37. void (*set_power)(unsigned char power_mode,
  38. unsigned short vdd);
  39. };
  40. /**
  41. * s3c24xx_mci_set_platdata - set platform data for mmc/sdi device
  42. * @pdata: The platform data
  43. *
  44. * Copy the platform data supplied by @pdata so that this can be marked
  45. * __initdata.
  46. */
  47. extern void s3c24xx_mci_set_platdata(struct s3c24xx_mci_pdata *pdata);
  48. #endif /* _ARCH_NCI_H */