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

965ebf33e   Haavard Skinnemoen   atmel-mci: suppor...
4
  #define ATMEL_MCI_MAX_NR_SLOTS	2
6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
5
6
7
8
9
  /**
   * 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...
10
   * @detect_is_active_high: The state of the detect pin when it is active
6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
11
12
13
14
15
   *
   * 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...
16
17
18
19
   *
   * 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...
20
21
22
   */
  struct mci_slot_pdata {
  	unsigned int		bus_width;
7d2be0749   Haavard Skinnemoen   atmel-mci: Driver...
23
24
  	int			detect_pin;
  	int			wp_pin;
1c1452be2   Jonas Larsson   atmel-mci: Add su...
25
  	bool			detect_is_active_high;
7d2be0749   Haavard Skinnemoen   atmel-mci: Driver...
26
  };
6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
27
28
  /**
   * struct mci_platform_data - board-specific MMC/SDcard configuration
74465b4ff   Dan Williams   atmel-mci: conver...
29
   * @dma_slave: DMA slave interface to use in data transfers.
6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
30
31
32
   * @slot: Per-slot configuration data.
   */
  struct mci_platform_data {
2635d1ba7   Nicolas Ferre   atmel-mci: change...
33
  	struct mci_dma_data	*dma_slave;
965ebf33e   Haavard Skinnemoen   atmel-mci: suppor...
34
  	struct mci_slot_pdata	slot[ATMEL_MCI_MAX_NR_SLOTS];
6b918657b   Haavard Skinnemoen   atmel-mci: Platfo...
35
  };
c42aa775c   Nicolas Ferre   atmel-mci: move a...
36
  #endif /* __LINUX_ATMEL_MCI_H */