mmci.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * include/linux/amba/mmci.h
  3. */
  4. #ifndef AMBA_MMCI_H
  5. #define AMBA_MMCI_H
  6. #include <linux/mmc/host.h>
  7. /*
  8. * These defines is places here due to access is needed from machine
  9. * configuration files. The ST Micro version does not have ROD and
  10. * reuse the voltage registers for direction settings.
  11. */
  12. #define MCI_ST_DATA2DIREN (1 << 2)
  13. #define MCI_ST_CMDDIREN (1 << 3)
  14. #define MCI_ST_DATA0DIREN (1 << 4)
  15. #define MCI_ST_DATA31DIREN (1 << 5)
  16. #define MCI_ST_FBCLKEN (1 << 7)
  17. #define MCI_ST_DATA74DIREN (1 << 8)
  18. /* Just some dummy forwarding */
  19. struct dma_chan;
  20. /**
  21. * struct mmci_platform_data - platform configuration for the MMCI
  22. * (also known as PL180) block.
  23. * @f_max: the maximum operational frequency for this host in this
  24. * platform configuration. When this is specified it takes precedence
  25. * over the module parameter for the same frequency.
  26. * @ocr_mask: available voltages on the 4 pins from the block, this
  27. * is ignored if a regulator is used, see the MMC_VDD_* masks in
  28. * mmc/host.h
  29. * @ios_handler: a callback function to act on specfic ios changes,
  30. * used for example to control a levelshifter
  31. * mask into a value to be binary (or set some other custom bits
  32. * in MMCIPWR) or:ed and written into the MMCIPWR register of the
  33. * block. May also control external power based on the power_mode.
  34. * @status: if no GPIO read function was given to the block in
  35. * gpio_wp (below) this function will be called to determine
  36. * whether a card is present in the MMC slot or not
  37. * @gpio_wp: read this GPIO pin to see if the card is write protected
  38. * @gpio_cd: read this GPIO pin to detect card insertion
  39. * @cd_invert: true if the gpio_cd pin value is active low
  40. * @capabilities: the capabilities of the block as implemented in
  41. * this platform, signify anything MMC_CAP_* from mmc/host.h
  42. * @capabilities2: more capabilities, MMC_CAP2_* from mmc/host.h
  43. * @sigdir: a bit field indicating for what bits in the MMC bus the host
  44. * should enable signal direction indication.
  45. * @dma_filter: function used to select an appropriate RX and TX
  46. * DMA channel to be used for DMA, if and only if you're deploying the
  47. * generic DMA engine
  48. * @dma_rx_param: parameter passed to the DMA allocation
  49. * filter in order to select an appropriate RX channel. If
  50. * there is a bidirectional RX+TX channel, then just specify
  51. * this and leave dma_tx_param set to NULL
  52. * @dma_tx_param: parameter passed to the DMA allocation
  53. * filter in order to select an appropriate TX channel. If this
  54. * is NULL the driver will attempt to use the RX channel as a
  55. * bidirectional channel
  56. */
  57. struct mmci_platform_data {
  58. unsigned int f_max;
  59. unsigned int ocr_mask;
  60. int (*ios_handler)(struct device *, struct mmc_ios *);
  61. unsigned int (*status)(struct device *);
  62. int gpio_wp;
  63. int gpio_cd;
  64. bool cd_invert;
  65. unsigned long capabilities;
  66. unsigned long capabilities2;
  67. u32 sigdir;
  68. bool (*dma_filter)(struct dma_chan *chan, void *filter_param);
  69. void *dma_rx_param;
  70. void *dma_tx_param;
  71. };
  72. #endif