<linux/sunrpc/svcauth.h>: Define hash_str() in terms of hashlen_string()
[linux-2.6-block.git] / include / linux / atmel-mci.h
CommitLineData
c42aa775
NF
1#ifndef __LINUX_ATMEL_MCI_H
2#define __LINUX_ATMEL_MCI_H
7d2be074 3
8ca28610 4#include <linux/types.h>
74843787 5#include <linux/dmaengine.h>
8ca28610 6
2c96a293 7#define ATMCI_MAX_NR_SLOTS 2
965ebf33 8
6b918657
HS
9/**
10 * struct mci_slot_pdata - board-specific per-slot configuration
11 * @bus_width: Number of data lines wired up the slot
12 * @detect_pin: GPIO pin wired to the card detect switch
13 * @wp_pin: GPIO pin wired to the write protect sensor
1c1452be 14 * @detect_is_active_high: The state of the detect pin when it is active
76d55564 15 * @non_removable: The slot is not removable, only detect once
6b918657
HS
16 *
17 * If a given slot is not present on the board, @bus_width should be
18 * set to 0. The other fields are ignored in this case.
19 *
20 * Any pins that aren't available should be set to a negative value.
965ebf33
HS
21 *
22 * Note that support for multiple slots is experimental -- some cards
23 * might get upset if we don't get the clock management exactly right.
24 * But in most cases, it should work just fine.
6b918657
HS
25 */
26struct mci_slot_pdata {
27 unsigned int bus_width;
7d2be074
HS
28 int detect_pin;
29 int wp_pin;
1c1452be 30 bool detect_is_active_high;
76d55564 31 bool non_removable;
7d2be074
HS
32};
33
6b918657
HS
34/**
35 * struct mci_platform_data - board-specific MMC/SDcard configuration
74465b4f 36 * @dma_slave: DMA slave interface to use in data transfers.
6b918657
HS
37 * @slot: Per-slot configuration data.
38 */
39struct mci_platform_data {
238d1c60 40 void *dma_slave;
74843787 41 dma_filter_fn dma_filter;
2c96a293 42 struct mci_slot_pdata slot[ATMCI_MAX_NR_SLOTS];
6b918657
HS
43};
44
c42aa775 45#endif /* __LINUX_ATMEL_MCI_H */