blob: 57b1846a3c876baf138214b2d511c693143fefa8 [file] [log] [blame]
Nicolas Ferrec42aa772008-11-20 15:59:12 +01001#ifndef __LINUX_ATMEL_MCI_H
2#define __LINUX_ATMEL_MCI_H
Haavard Skinnemoen7d2be072008-06-30 18:35:03 +02003
Haavard Skinnemoen965ebf32008-09-17 20:53:55 +02004#define ATMEL_MCI_MAX_NR_SLOTS 2
5
Dan Williams74465b42009-01-06 11:38:16 -07006#include <linux/dw_dmac.h>
Haavard Skinnemoen65e8b082008-07-30 20:29:03 +02007
Haavard Skinnemoen6b918652008-08-07 14:08:49 +02008/**
9 * struct mci_slot_pdata - board-specific per-slot configuration
10 * @bus_width: Number of data lines wired up the slot
11 * @detect_pin: GPIO pin wired to the card detect switch
12 * @wp_pin: GPIO pin wired to the write protect sensor
Jonas Larsson1c1452b2009-03-31 11:16:48 +020013 * @detect_is_active_high: The state of the detect pin when it is active
Haavard Skinnemoen6b918652008-08-07 14:08:49 +020014 *
15 * If a given slot is not present on the board, @bus_width should be
16 * set to 0. The other fields are ignored in this case.
17 *
18 * Any pins that aren't available should be set to a negative value.
Haavard Skinnemoen965ebf32008-09-17 20:53:55 +020019 *
20 * Note that support for multiple slots is experimental -- some cards
21 * might get upset if we don't get the clock management exactly right.
22 * But in most cases, it should work just fine.
Haavard Skinnemoen6b918652008-08-07 14:08:49 +020023 */
24struct mci_slot_pdata {
25 unsigned int bus_width;
Haavard Skinnemoen7d2be072008-06-30 18:35:03 +020026 int detect_pin;
27 int wp_pin;
Jonas Larsson1c1452b2009-03-31 11:16:48 +020028 bool detect_is_active_high;
Haavard Skinnemoen7d2be072008-06-30 18:35:03 +020029};
30
Haavard Skinnemoen6b918652008-08-07 14:08:49 +020031/**
32 * struct mci_platform_data - board-specific MMC/SDcard configuration
Dan Williams74465b42009-01-06 11:38:16 -070033 * @dma_slave: DMA slave interface to use in data transfers.
Haavard Skinnemoen6b918652008-08-07 14:08:49 +020034 * @slot: Per-slot configuration data.
35 */
36struct mci_platform_data {
Dan Williams74465b42009-01-06 11:38:16 -070037 struct dw_dma_slave dma_slave;
Haavard Skinnemoen965ebf32008-09-17 20:53:55 +020038 struct mci_slot_pdata slot[ATMEL_MCI_MAX_NR_SLOTS];
Haavard Skinnemoen6b918652008-08-07 14:08:49 +020039};
40
Nicolas Ferrec42aa772008-11-20 15:59:12 +010041#endif /* __LINUX_ATMEL_MCI_H */