]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/mmc/card.h
sdio: add CD disable support
[net-next-2.6.git] / include / linux / mmc / card.h
CommitLineData
1da177e4
LT
1/*
2 * linux/include/linux/mmc/card.h
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Card driver specific definitions.
9 */
10#ifndef LINUX_MMC_CARD_H
11#define LINUX_MMC_CARD_H
12
aaac1b47 13#include <linux/mmc/core.h>
1da177e4
LT
14
15struct mmc_cid {
16 unsigned int manfid;
17 char prod_name[8];
18 unsigned int serial;
19 unsigned short oemid;
20 unsigned short year;
21 unsigned char hwrev;
22 unsigned char fwrev;
23 unsigned char month;
24};
25
26struct mmc_csd {
27 unsigned char mmca_vsn;
28 unsigned short cmdclass;
29 unsigned short tacc_clks;
30 unsigned int tacc_ns;
37be4e78 31 unsigned int r2w_factor;
1da177e4
LT
32 unsigned int max_dtr;
33 unsigned int read_blkbits;
a6f6c96b 34 unsigned int write_blkbits;
1da177e4 35 unsigned int capacity;
a6f6c96b
RK
36 unsigned int read_partial:1,
37 read_misalign:1,
ce11a161 38 write_partial:1,
a6f6c96b 39 write_misalign:1;
1da177e4
LT
40};
41
bce40a36 42struct mmc_ext_csd {
b1ebe384
JL
43 u8 rev;
44 unsigned int sa_timeout; /* Units: 100ns */
bce40a36 45 unsigned int hs_max_dtr;
85a18ad9 46 unsigned int sectors;
bce40a36
PL
47};
48
b57c43ad
PO
49struct sd_scr {
50 unsigned char sda_vsn;
51 unsigned char bus_widths;
52#define SD_SCR_BUS_WIDTH_1 (1<<0)
53#define SD_SCR_BUS_WIDTH_4 (1<<2)
54};
55
7ccd266e
PO
56struct sd_switch_caps {
57 unsigned int hs_max_dtr;
58};
59
35c66c19
PO
60struct sdio_cccr {
61 unsigned int sdio_vsn;
62 unsigned int sd_vsn;
63 unsigned int multi_block:1,
64 low_speed:1,
65 wide_bus:1,
66 high_power:1,
006ebd5d
OBC
67 high_speed:1,
68 disable_cd:1;
35c66c19
PO
69};
70
1a632f8c
PO
71struct sdio_cis {
72 unsigned short vendor;
73 unsigned short device;
74 unsigned short blksize;
75 unsigned int max_dtr;
76};
77
1da177e4 78struct mmc_host;
e29a7d73 79struct sdio_func;
1a632f8c 80struct sdio_func_tuple;
e29a7d73
PO
81
82#define SDIO_MAX_FUNCS 7
1da177e4
LT
83
84/*
85 * MMC device
86 */
87struct mmc_card {
1da177e4
LT
88 struct mmc_host *host; /* the host this device belongs to */
89 struct device dev; /* the device */
90 unsigned int rca; /* relative card address of device */
9c2c0af9
PO
91 unsigned int type; /* card type */
92#define MMC_TYPE_MMC 0 /* MMC card */
93#define MMC_TYPE_SD 1 /* SD card */
5c4e6f13 94#define MMC_TYPE_SDIO 2 /* SDIO card */
1da177e4
LT
95 unsigned int state; /* (our) card state */
96#define MMC_STATE_PRESENT (1<<0) /* present in sysfs */
bd766312
PO
97#define MMC_STATE_READONLY (1<<1) /* card is read-only */
98#define MMC_STATE_HIGHSPEED (1<<2) /* card is in high speed mode */
99#define MMC_STATE_BLOCKADDR (1<<3) /* card uses block-addressing */
e29a7d73 100
1da177e4
LT
101 u32 raw_cid[4]; /* raw card CID */
102 u32 raw_csd[4]; /* raw card CSD */
b57c43ad 103 u32 raw_scr[2]; /* raw card SCR */
1da177e4
LT
104 struct mmc_cid cid; /* card identification */
105 struct mmc_csd csd; /* card specific */
bce40a36 106 struct mmc_ext_csd ext_csd; /* mmc v4 extended card specific */
b57c43ad 107 struct sd_scr scr; /* extra SD information */
7ccd266e 108 struct sd_switch_caps sw_caps; /* switch (CMD6) caps */
e29a7d73
PO
109
110 unsigned int sdio_funcs; /* number of SDIO functions */
35c66c19 111 struct sdio_cccr cccr; /* common card info */
1a632f8c 112 struct sdio_cis cis; /* common tuple info */
e29a7d73 113 struct sdio_func *sdio_func[SDIO_MAX_FUNCS]; /* SDIO functions (devices) */
759bdc7a
PO
114 unsigned num_info; /* number of info strings */
115 const char **info; /* info strings */
1a632f8c 116 struct sdio_func_tuple *tuples; /* unknown common tuples */
f4b7f927
HS
117
118 struct dentry *debugfs_root;
1da177e4
LT
119};
120
9c2c0af9
PO
121#define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC)
122#define mmc_card_sd(c) ((c)->type == MMC_TYPE_SD)
5c4e6f13 123#define mmc_card_sdio(c) ((c)->type == MMC_TYPE_SDIO)
9c2c0af9 124
1da177e4 125#define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT)
a00fc090 126#define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY)
bce40a36 127#define mmc_card_highspeed(c) ((c)->state & MMC_STATE_HIGHSPEED)
fba68bd2 128#define mmc_card_blockaddr(c) ((c)->state & MMC_STATE_BLOCKADDR)
1da177e4
LT
129
130#define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT)
a00fc090 131#define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY)
bce40a36 132#define mmc_card_set_highspeed(c) ((c)->state |= MMC_STATE_HIGHSPEED)
fba68bd2 133#define mmc_card_set_blockaddr(c) ((c)->state |= MMC_STATE_BLOCKADDR)
1da177e4
LT
134
135#define mmc_card_name(c) ((c)->cid.prod_name)
d1b26863 136#define mmc_card_id(c) (dev_name(&(c)->dev))
1da177e4
LT
137
138#define mmc_list_to_card(l) container_of(l, struct mmc_card, node)
139#define mmc_get_drvdata(c) dev_get_drvdata(&(c)->dev)
140#define mmc_set_drvdata(c,d) dev_set_drvdata(&(c)->dev, d)
141
142/*
143 * MMC device driver (e.g., Flash card, I/O card...)
144 */
145struct mmc_driver {
146 struct device_driver drv;
147 int (*probe)(struct mmc_card *);
148 void (*remove)(struct mmc_card *);
149 int (*suspend)(struct mmc_card *, pm_message_t);
150 int (*resume)(struct mmc_card *);
151};
152
153extern int mmc_register_driver(struct mmc_driver *);
154extern void mmc_unregister_driver(struct mmc_driver *);
155
1da177e4 156#endif