Blame view

include/linux/atmel-mci.h 1.21 KB
c42aa775c   Nicolas Ferre   atmel-mci: move a...
1
2
  #ifndef __LINUX_ATMEL_MCI_H
  #define __LINUX_ATMEL_MCI_H
7d2be0749   Haavard Skinnemoen   atmel-mci: Driver...
3

2c96a293b   Ludovic Desroches   mmc: atmel-mci: c...
4
  #define ATMCI_MAX_NR_SLOTS	2
965ebf33e   Haavard Skinnemoen   atmel-mci: suppor...
5

6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
6
7
8
9
10
  /**
   * struct mci_slot_pdata - board-specific per-slot configuration
   * @bus_width: Number of data lines wired up the slot
   * @detect_pin: GPIO pin wired to the card detect switch
   * @wp_pin: GPIO pin wired to the write protect sensor
1c1452be2   Jonas Larsson   atmel-mci: Add su...
11
   * @detect_is_active_high: The state of the detect pin when it is active
6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
12
13
14
15
16
   *
   * If a given slot is not present on the board, @bus_width should be
   * set to 0. The other fields are ignored in this case.
   *
   * Any pins that aren't available should be set to a negative value.
965ebf33e   Haavard Skinnemoen   atmel-mci: suppor...
17
18
19
20
   *
   * Note that support for multiple slots is experimental -- some cards
   * might get upset if we don't get the clock management exactly right.
   * But in most cases, it should work just fine.
6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
21
22
23
   */
  struct mci_slot_pdata {
  	unsigned int		bus_width;
7d2be0749   Haavard Skinnemoen   atmel-mci: Driver...
24
25
  	int			detect_pin;
  	int			wp_pin;
1c1452be2   Jonas Larsson   atmel-mci: Add su...
26
  	bool			detect_is_active_high;
7d2be0749   Haavard Skinnemoen   atmel-mci: Driver...
27
  };
6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
28
29
  /**
   * struct mci_platform_data - board-specific MMC/SDcard configuration
74465b4ff   Dan Williams   atmel-mci: conver...
30
   * @dma_slave: DMA slave interface to use in data transfers.
6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
31
32
33
   * @slot: Per-slot configuration data.
   */
  struct mci_platform_data {
2635d1ba7   Nicolas Ferre   atmel-mci: change...
34
  	struct mci_dma_data	*dma_slave;
2c96a293b   Ludovic Desroches   mmc: atmel-mci: c...
35
  	struct mci_slot_pdata	slot[ATMCI_MAX_NR_SLOTS];
6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
36
  };
c42aa775c   Nicolas Ferre   atmel-mci: move a...
37
  #endif /* __LINUX_ATMEL_MCI_H */