#ifndef __LINUX_ATMEL_MCI_H1#define __LINUX_ATMEL_MCI_H23#define ATMEL_MCI_MAX_NR_SLOTS 245/**6* struct mci_slot_pdata - board-specific per-slot configuration7* @bus_width: Number of data lines wired up the slot8* @detect_pin: GPIO pin wired to the card detect switch9* @wp_pin: GPIO pin wired to the write protect sensor10* @detect_is_active_high: The state of the detect pin when it is active11*12* If a given slot is not present on the board, @bus_width should be13* 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 cards18* might get upset if we don't get the clock management exactly right.19* But in most cases, it should work just fine.20*/21struct mci_slot_pdata {22unsigned int bus_width;23int detect_pin;24int wp_pin;25bool detect_is_active_high;26};2728/**29* struct mci_platform_data - board-specific MMC/SDcard configuration30* @dma_slave: DMA slave interface to use in data transfers.31* @slot: Per-slot configuration data.32*/33struct mci_platform_data {34struct mci_dma_data *dma_slave;35struct mci_slot_pdata slot[ATMEL_MCI_MAX_NR_SLOTS];36};3738#endif /* __LINUX_ATMEL_MCI_H */394041