blob: ce25256f80d58c3d028884c7354f0818ca4377d0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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/mmc.h>
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;
Russell King37be4e72006-05-02 17:24:59 +010031 unsigned int r2w_factor;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 unsigned int max_dtr;
33 unsigned int read_blkbits;
Russell Kinga6f6c962006-01-03 22:38:44 +000034 unsigned int write_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 unsigned int capacity;
Russell Kinga6f6c962006-01-03 22:38:44 +000036 unsigned int read_partial:1,
37 read_misalign:1,
Russell Kingce11a162006-01-04 12:40:39 +000038 write_partial:1,
Russell Kinga6f6c962006-01-03 22:38:44 +000039 write_misalign:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040};
41
Philip Langdalebce40a32006-10-21 12:35:02 +020042struct mmc_ext_csd {
43 unsigned int hs_max_dtr;
44};
45
Pierre Ossmanb57c43a2005-09-06 15:18:53 -070046struct sd_scr {
47 unsigned char sda_vsn;
48 unsigned char bus_widths;
49#define SD_SCR_BUS_WIDTH_1 (1<<0)
50#define SD_SCR_BUS_WIDTH_4 (1<<2)
51};
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053struct mmc_host;
54
55/*
56 * MMC device
57 */
58struct mmc_card {
59 struct list_head node; /* node in hosts devices list */
60 struct mmc_host *host; /* the host this device belongs to */
61 struct device dev; /* the device */
62 unsigned int rca; /* relative card address of device */
63 unsigned int state; /* (our) card state */
64#define MMC_STATE_PRESENT (1<<0) /* present in sysfs */
65#define MMC_STATE_DEAD (1<<1) /* device no longer in stack */
66#define MMC_STATE_BAD (1<<2) /* unrecognised device */
Pierre Ossman335eadf2005-09-06 15:18:50 -070067#define MMC_STATE_SDCARD (1<<3) /* is an SD card */
Pierre Ossmana00fc092005-09-06 15:18:52 -070068#define MMC_STATE_READONLY (1<<4) /* card is read-only */
Philip Langdalebce40a32006-10-21 12:35:02 +020069#define MMC_STATE_HIGHSPEED (1<<5) /* card is in mmc4 highspeed mode */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 u32 raw_cid[4]; /* raw card CID */
71 u32 raw_csd[4]; /* raw card CSD */
Pierre Ossmanb57c43a2005-09-06 15:18:53 -070072 u32 raw_scr[2]; /* raw card SCR */
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 struct mmc_cid cid; /* card identification */
74 struct mmc_csd csd; /* card specific */
Philip Langdalebce40a32006-10-21 12:35:02 +020075 struct mmc_ext_csd ext_csd; /* mmc v4 extended card specific */
Pierre Ossmanb57c43a2005-09-06 15:18:53 -070076 struct sd_scr scr; /* extra SD information */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
79#define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT)
80#define mmc_card_dead(c) ((c)->state & MMC_STATE_DEAD)
81#define mmc_card_bad(c) ((c)->state & MMC_STATE_BAD)
Pierre Ossman335eadf2005-09-06 15:18:50 -070082#define mmc_card_sd(c) ((c)->state & MMC_STATE_SDCARD)
Pierre Ossmana00fc092005-09-06 15:18:52 -070083#define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY)
Philip Langdalebce40a32006-10-21 12:35:02 +020084#define mmc_card_highspeed(c) ((c)->state & MMC_STATE_HIGHSPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86#define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT)
87#define mmc_card_set_dead(c) ((c)->state |= MMC_STATE_DEAD)
88#define mmc_card_set_bad(c) ((c)->state |= MMC_STATE_BAD)
Pierre Ossman335eadf2005-09-06 15:18:50 -070089#define mmc_card_set_sd(c) ((c)->state |= MMC_STATE_SDCARD)
Pierre Ossmana00fc092005-09-06 15:18:52 -070090#define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY)
Philip Langdalebce40a32006-10-21 12:35:02 +020091#define mmc_card_set_highspeed(c) ((c)->state |= MMC_STATE_HIGHSPEED)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93#define mmc_card_name(c) ((c)->cid.prod_name)
94#define mmc_card_id(c) ((c)->dev.bus_id)
95
96#define mmc_list_to_card(l) container_of(l, struct mmc_card, node)
97#define mmc_get_drvdata(c) dev_get_drvdata(&(c)->dev)
98#define mmc_set_drvdata(c,d) dev_set_drvdata(&(c)->dev, d)
99
100/*
101 * MMC device driver (e.g., Flash card, I/O card...)
102 */
103struct mmc_driver {
104 struct device_driver drv;
105 int (*probe)(struct mmc_card *);
106 void (*remove)(struct mmc_card *);
107 int (*suspend)(struct mmc_card *, pm_message_t);
108 int (*resume)(struct mmc_card *);
109};
110
111extern int mmc_register_driver(struct mmc_driver *);
112extern void mmc_unregister_driver(struct mmc_driver *);
113
114static inline int mmc_card_claim_host(struct mmc_card *card)
115{
116 return __mmc_claim_host(card->host, card);
117}
118
119#define mmc_card_release_host(c) mmc_release_host((c)->host)
120
121#endif