blob: 91b77f8d495da646da8975014e9ce118f405880e [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
Hans-Christian Egtvedt8ca28612014-08-07 15:14:06 +02004#include <linux/types.h>
5
Ludovic Desroches2c96a292011-08-11 15:25:41 +00006#define ATMCI_MAX_NR_SLOTS 2
Haavard Skinnemoen965ebf32008-09-17 20:53:55 +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 {
Nicolas Ferre2635d1b2009-12-14 18:01:30 -080037 struct mci_dma_data *dma_slave;
Ludovic Desroches2c96a292011-08-11 15:25:41 +000038 struct mci_slot_pdata slot[ATMCI_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 */