atmel-mci.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #ifndef __LINUX_ATMEL_MCI_H
  2. #define __LINUX_ATMEL_MCI_H
  3. #define ATMEL_MCI_MAX_NR_SLOTS 2
  4. #include <linux/dw_dmac.h>
  5. /**
  6. * struct mci_slot_pdata - board-specific per-slot configuration
  7. * @bus_width: Number of data lines wired up the slot
  8. * @detect_pin: GPIO pin wired to the card detect switch
  9. * @wp_pin: GPIO pin wired to the write protect sensor
  10. * @detect_is_active_high: The state of the detect pin when it is active
  11. *
  12. * If a given slot is not present on the board, @bus_width should be
  13. * set to 0. The other fields are ignored in this case.
  14. *
  15. * Any pins that aren't available should be set to a negative value.
  16. *
  17. * Note that support for multiple slots is experimental -- some cards
  18. * might get upset if we don't get the clock management exactly right.
  19. * But in most cases, it should work just fine.
  20. */
  21. struct mci_slot_pdata {
  22. unsigned int bus_width;
  23. int detect_pin;
  24. int wp_pin;
  25. bool detect_is_active_high;
  26. };
  27. /**
  28. * struct mci_platform_data - board-specific MMC/SDcard configuration
  29. * @dma_slave: DMA slave interface to use in data transfers.
  30. * @slot: Per-slot configuration data.
  31. */
  32. struct mci_platform_data {
  33. struct dw_dma_slave dma_slave;
  34. struct mci_slot_pdata slot[ATMEL_MCI_MAX_NR_SLOTS];
  35. };
  36. #endif /* __LINUX_ATMEL_MCI_H */