mmc: add SDIO driver handling
[powerpc.git] / include / linux / mmc / card.h
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
13 #include <linux/mmc/core.h>
14
15 struct 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
26 struct mmc_csd {
27         unsigned char           mmca_vsn;
28         unsigned short          cmdclass;
29         unsigned short          tacc_clks;
30         unsigned int            tacc_ns;
31         unsigned int            r2w_factor;
32         unsigned int            max_dtr;
33         unsigned int            read_blkbits;
34         unsigned int            write_blkbits;
35         unsigned int            capacity;
36         unsigned int            read_partial:1,
37                                 read_misalign:1,
38                                 write_partial:1,
39                                 write_misalign:1;
40 };
41
42 struct mmc_ext_csd {
43         unsigned int            hs_max_dtr;
44         unsigned int            sectors;
45 };
46
47 struct sd_scr {
48         unsigned char           sda_vsn;
49         unsigned char           bus_widths;
50 #define SD_SCR_BUS_WIDTH_1      (1<<0)
51 #define SD_SCR_BUS_WIDTH_4      (1<<2)
52 };
53
54 struct sd_switch_caps {
55         unsigned int            hs_max_dtr;
56 };
57
58 struct mmc_host;
59 struct sdio_func;
60
61 #define SDIO_MAX_FUNCS          7
62
63 /*
64  * MMC device
65  */
66 struct mmc_card {
67         struct mmc_host         *host;          /* the host this device belongs to */
68         struct device           dev;            /* the device */
69         unsigned int            rca;            /* relative card address of device */
70         unsigned int            type;           /* card type */
71 #define MMC_TYPE_MMC            0               /* MMC card */
72 #define MMC_TYPE_SD             1               /* SD card */
73 #define MMC_TYPE_SDIO           2               /* SDIO card */
74         unsigned int            state;          /* (our) card state */
75 #define MMC_STATE_PRESENT       (1<<0)          /* present in sysfs */
76 #define MMC_STATE_READONLY      (1<<1)          /* card is read-only */
77 #define MMC_STATE_HIGHSPEED     (1<<2)          /* card is in high speed mode */
78 #define MMC_STATE_BLOCKADDR     (1<<3)          /* card uses block-addressing */
79
80         u32                     raw_cid[4];     /* raw card CID */
81         u32                     raw_csd[4];     /* raw card CSD */
82         u32                     raw_scr[2];     /* raw card SCR */
83         struct mmc_cid          cid;            /* card identification */
84         struct mmc_csd          csd;            /* card specific */
85         struct mmc_ext_csd      ext_csd;        /* mmc v4 extended card specific */
86         struct sd_scr           scr;            /* extra SD information */
87         struct sd_switch_caps   sw_caps;        /* switch (CMD6) caps */
88
89         unsigned int            sdio_funcs;     /* number of SDIO functions */
90         struct sdio_func        *sdio_func[SDIO_MAX_FUNCS]; /* SDIO functions (devices) */
91 };
92
93 #define mmc_card_mmc(c)         ((c)->type == MMC_TYPE_MMC)
94 #define mmc_card_sd(c)          ((c)->type == MMC_TYPE_SD)
95 #define mmc_card_sdio(c)        ((c)->type == MMC_TYPE_SDIO)
96
97 #define mmc_card_present(c)     ((c)->state & MMC_STATE_PRESENT)
98 #define mmc_card_readonly(c)    ((c)->state & MMC_STATE_READONLY)
99 #define mmc_card_highspeed(c)   ((c)->state & MMC_STATE_HIGHSPEED)
100 #define mmc_card_blockaddr(c)   ((c)->state & MMC_STATE_BLOCKADDR)
101
102 #define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT)
103 #define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY)
104 #define mmc_card_set_highspeed(c) ((c)->state |= MMC_STATE_HIGHSPEED)
105 #define mmc_card_set_blockaddr(c) ((c)->state |= MMC_STATE_BLOCKADDR)
106
107 #define mmc_card_name(c)        ((c)->cid.prod_name)
108 #define mmc_card_id(c)          ((c)->dev.bus_id)
109
110 #define mmc_list_to_card(l)     container_of(l, struct mmc_card, node)
111 #define mmc_get_drvdata(c)      dev_get_drvdata(&(c)->dev)
112 #define mmc_set_drvdata(c,d)    dev_set_drvdata(&(c)->dev, d)
113
114 /*
115  * MMC device driver (e.g., Flash card, I/O card...)
116  */
117 struct mmc_driver {
118         struct device_driver drv;
119         int (*probe)(struct mmc_card *);
120         void (*remove)(struct mmc_card *);
121         int (*suspend)(struct mmc_card *, pm_message_t);
122         int (*resume)(struct mmc_card *);
123 };
124
125 extern int mmc_register_driver(struct mmc_driver *);
126 extern void mmc_unregister_driver(struct mmc_driver *);
127
128 #endif