card.h 9.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 *  linux/include/linux/mmc/card.h
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 *  Card driver specific definitions.
 */
#ifndef LINUX_MMC_CARD_H
#define LINUX_MMC_CARD_H

13
#include <linux/mmc/core.h>
14
#include <linux/mod_devicetable.h>
L
Linus Torvalds 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27

struct mmc_cid {
	unsigned int		manfid;
	char			prod_name[8];
	unsigned int		serial;
	unsigned short		oemid;
	unsigned short		year;
	unsigned char		hwrev;
	unsigned char		fwrev;
	unsigned char		month;
};

struct mmc_csd {
K
Kyungmin Park 已提交
28
	unsigned char		structure;
L
Linus Torvalds 已提交
29 30 31 32
	unsigned char		mmca_vsn;
	unsigned short		cmdclass;
	unsigned short		tacc_clks;
	unsigned int		tacc_ns;
33
	unsigned int		r2w_factor;
L
Linus Torvalds 已提交
34
	unsigned int		max_dtr;
35
	unsigned int		erase_size;		/* In sectors */
L
Linus Torvalds 已提交
36
	unsigned int		read_blkbits;
37
	unsigned int		write_blkbits;
L
Linus Torvalds 已提交
38
	unsigned int		capacity;
39 40
	unsigned int		read_partial:1,
				read_misalign:1,
R
Russell King 已提交
41
				write_partial:1,
42
				write_misalign:1;
L
Linus Torvalds 已提交
43 44
};

45
struct mmc_ext_csd {
46
	u8			rev;
47 48
	u8			erase_group_def;
	u8			sec_feature_support;
A
Andrei Warkentin 已提交
49 50
	u8			rel_sectors;
	u8			rel_param;
51 52
	u8			part_config;
	unsigned int		part_time;		/* Units: ms */
53
	unsigned int		sa_timeout;		/* Units: 100ns */
54
	unsigned int		hs_max_dtr;
P
Pierre Ossman 已提交
55
	unsigned int		sectors;
H
Hanumath Prasad 已提交
56
	unsigned int		card_type;
57 58 59 60 61
	unsigned int		hc_erase_size;		/* In sectors */
	unsigned int		hc_erase_timeout;	/* In milliseconds */
	unsigned int		sec_trim_mult;	/* Secure trim multiplier  */
	unsigned int		sec_erase_mult;	/* Secure erase multiplier */
	unsigned int		trim_timeout;		/* In milliseconds */
62 63 64
	bool			enhanced_area_en;	/* enable bit */
	unsigned long long	enhanced_area_offset;	/* Units: Byte */
	unsigned int		enhanced_area_size;	/* Units: KB */
65
	unsigned int		boot_size;		/* in bytes */
66 67
};

P
Pierre Ossman 已提交
68 69 70 71 72 73 74
struct sd_scr {
	unsigned char		sda_vsn;
	unsigned char		bus_widths;
#define SD_SCR_BUS_WIDTH_1	(1<<0)
#define SD_SCR_BUS_WIDTH_4	(1<<2)
};

75 76 77 78 79 80
struct sd_ssr {
	unsigned int		au;			/* In sectors */
	unsigned int		erase_timeout;		/* In milliseconds */
	unsigned int		erase_offset;		/* In milliseconds */
};

81 82 83 84
struct sd_switch_caps {
	unsigned int		hs_max_dtr;
};

85 86 87 88 89 90 91
struct sdio_cccr {
	unsigned int		sdio_vsn;
	unsigned int		sd_vsn;
	unsigned int		multi_block:1,
				low_speed:1,
				wide_bus:1,
				high_power:1,
O
Ohad Ben-Cohen 已提交
92 93
				high_speed:1,
				disable_cd:1;
94 95
};

96 97 98 99 100 101 102
struct sdio_cis {
	unsigned short		vendor;
	unsigned short		device;
	unsigned short		blksize;
	unsigned int		max_dtr;
};

L
Linus Torvalds 已提交
103
struct mmc_host;
P
Pierre Ossman 已提交
104
struct sdio_func;
105
struct sdio_func_tuple;
P
Pierre Ossman 已提交
106 107

#define SDIO_MAX_FUNCS		7
L
Linus Torvalds 已提交
108 109 110 111 112 113 114 115

/*
 * MMC device
 */
struct mmc_card {
	struct mmc_host		*host;		/* the host this device belongs to */
	struct device		dev;		/* the device */
	unsigned int		rca;		/* relative card address of device */
P
Pierre Ossman 已提交
116 117 118
	unsigned int		type;		/* card type */
#define MMC_TYPE_MMC		0		/* MMC card */
#define MMC_TYPE_SD		1		/* SD card */
P
Pierre Ossman 已提交
119
#define MMC_TYPE_SDIO		2		/* SDIO card */
120
#define MMC_TYPE_SD_COMBO	3		/* SD combo (IO+mem) card */
L
Linus Torvalds 已提交
121 122
	unsigned int		state;		/* (our) card state */
#define MMC_STATE_PRESENT	(1<<0)		/* present in sysfs */
P
Pierre Ossman 已提交
123 124 125
#define MMC_STATE_READONLY	(1<<1)		/* card is read-only */
#define MMC_STATE_HIGHSPEED	(1<<2)		/* card is in high speed mode */
#define MMC_STATE_BLOCKADDR	(1<<3)		/* card uses block-addressing */
H
Hanumath Prasad 已提交
126
#define MMC_STATE_HIGHSPEED_DDR (1<<4)		/* card is in high speed mode */
O
Ohad Ben-Cohen 已提交
127 128
	unsigned int		quirks; 	/* card quirks */
#define MMC_QUIRK_LENIENT_FN0	(1<<0)		/* allow SDIO FN0 writes outside of the VS CCCR range */
129 130
#define MMC_QUIRK_BLKSZ_FOR_BYTE_MODE (1<<1)	/* use func->cur_blksize */
						/* for byte mode */
131 132
#define MMC_QUIRK_NONSTD_SDIO	(1<<2)		/* non-standard SDIO card attached */
						/* (missing CIA registers) */
133
#define MMC_QUIRK_BROKEN_CLK_GATING (1<<3)	/* clock gating the sdio bus will make card fail */
134
#define MMC_QUIRK_NONSTD_FUNC_IF (1<<4)		/* SDIO card has nonstd function interfaces */
O
Ohad Ben-Cohen 已提交
135
#define MMC_QUIRK_DISABLE_CD	(1<<5)		/* disconnect CD/DAT[3] resistor */
P
Pierre Ossman 已提交
136

137 138 139 140 141
	unsigned int		erase_size;	/* erase size in sectors */
 	unsigned int		erase_shift;	/* if erase unit is power 2 */
 	unsigned int		pref_erase;	/* in sectors */
 	u8			erased_byte;	/* value of erased bytes */

L
Linus Torvalds 已提交
142 143
	u32			raw_cid[4];	/* raw card CID */
	u32			raw_csd[4];	/* raw card CSD */
P
Pierre Ossman 已提交
144
	u32			raw_scr[2];	/* raw card SCR */
L
Linus Torvalds 已提交
145 146
	struct mmc_cid		cid;		/* card identification */
	struct mmc_csd		csd;		/* card specific */
147
	struct mmc_ext_csd	ext_csd;	/* mmc v4 extended card specific */
P
Pierre Ossman 已提交
148
	struct sd_scr		scr;		/* extra SD information */
149
	struct sd_ssr		ssr;		/* yet more SD information */
150
	struct sd_switch_caps	sw_caps;	/* switch (CMD6) caps */
P
Pierre Ossman 已提交
151 152

	unsigned int		sdio_funcs;	/* number of SDIO functions */
153
	struct sdio_cccr	cccr;		/* common card info */
154
	struct sdio_cis		cis;		/* common tuple info */
P
Pierre Ossman 已提交
155
	struct sdio_func	*sdio_func[SDIO_MAX_FUNCS]; /* SDIO functions (devices) */
P
Pierre Ossman 已提交
156 157
	unsigned		num_info;	/* number of info strings */
	const char		**info;		/* info strings */
158
	struct sdio_func_tuple	*tuples;	/* unknown common tuples */
159 160

	struct dentry		*debugfs_root;
L
Linus Torvalds 已提交
161 162
};

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
/*
 *  The world is not perfect and supplies us with broken mmc/sdio devices.
 *  For at least some of these bugs we need a work-around.
 */

struct mmc_fixup {
	/* CID-specific fields. */
	const char *name;

	/* Valid revision range */
	u64 rev_start, rev_end;

	unsigned int manfid;
	unsigned short oemid;

	/* SDIO-specfic fields. You can use SDIO_ANY_ID here of course */
	u16 cis_vendor, cis_device;

	void (*vendor_fixup)(struct mmc_card *card, int data);
	int data;
};

185
#define CID_MANFID_ANY (-1u)
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
#define CID_OEMID_ANY ((unsigned short) -1)
#define CID_NAME_ANY (NULL)

#define END_FIXUP { 0 }

#define _FIXUP_EXT(_name, _manfid, _oemid, _rev_start, _rev_end,	\
		   _cis_vendor, _cis_device,				\
		   _fixup, _data)					\
	{						   \
		.name = (_name),			   \
		.manfid = (_manfid),			   \
		.oemid = (_oemid),			   \
		.rev_start = (_rev_start),		   \
		.rev_end = (_rev_end),			   \
		.cis_vendor = (_cis_vendor),		   \
		.cis_device = (_cis_device),		   \
		.vendor_fixup = (_fixup),		   \
		.data = (_data),			   \
	 }

#define MMC_FIXUP_REV(_name, _manfid, _oemid, _rev_start, _rev_end,	\
		      _fixup, _data)					\
	_FIXUP_EXT(_name, _manfid,					\
		   _oemid, _rev_start, _rev_end,			\
		   SDIO_ANY_ID, SDIO_ANY_ID,				\
		   _fixup, _data)					\

#define MMC_FIXUP(_name, _manfid, _oemid, _fixup, _data) \
	MMC_FIXUP_REV(_name, _manfid, _oemid, 0, -1ull, _fixup, _data)

#define SDIO_FIXUP(_vendor, _device, _fixup, _data)			\
	_FIXUP_EXT(CID_NAME_ANY, CID_MANFID_ANY,			\
		    CID_OEMID_ANY, 0, -1ull,				\
		   _vendor, _device,					\
		   _fixup, _data)					\

#define cid_rev(hwrev, fwrev, year, month)	\
	(((u64) hwrev) << 40 |                  \
	 ((u64) fwrev) << 32 |                  \
	 ((u64) year) << 16 |                   \
	 ((u64) month))

#define cid_rev_card(card)		  \
	cid_rev(card->cid.hwrev,	  \
		    card->cid.fwrev,      \
		    card->cid.year,	  \
		    card->cid.month)

/*
 * This hook just adds a quirk unconditionally.
 */
static inline void __maybe_unused add_quirk(struct mmc_card *card, int data)
{
	card->quirks |= data;
}

/*
 * This hook just removes a quirk unconditionally.
 */
static inline void __maybe_unused remove_quirk(struct mmc_card *card, int data)
{
	card->quirks &= ~data;
}
249

P
Pierre Ossman 已提交
250 251
#define mmc_card_mmc(c)		((c)->type == MMC_TYPE_MMC)
#define mmc_card_sd(c)		((c)->type == MMC_TYPE_SD)
P
Pierre Ossman 已提交
252
#define mmc_card_sdio(c)	((c)->type == MMC_TYPE_SDIO)
P
Pierre Ossman 已提交
253

L
Linus Torvalds 已提交
254
#define mmc_card_present(c)	((c)->state & MMC_STATE_PRESENT)
P
Pierre Ossman 已提交
255
#define mmc_card_readonly(c)	((c)->state & MMC_STATE_READONLY)
256
#define mmc_card_highspeed(c)	((c)->state & MMC_STATE_HIGHSPEED)
257
#define mmc_card_blockaddr(c)	((c)->state & MMC_STATE_BLOCKADDR)
H
Hanumath Prasad 已提交
258
#define mmc_card_ddr_mode(c)	((c)->state & MMC_STATE_HIGHSPEED_DDR)
L
Linus Torvalds 已提交
259 260

#define mmc_card_set_present(c)	((c)->state |= MMC_STATE_PRESENT)
P
Pierre Ossman 已提交
261
#define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY)
262
#define mmc_card_set_highspeed(c) ((c)->state |= MMC_STATE_HIGHSPEED)
263
#define mmc_card_set_blockaddr(c) ((c)->state |= MMC_STATE_BLOCKADDR)
H
Hanumath Prasad 已提交
264
#define mmc_card_set_ddr_mode(c) ((c)->state |= MMC_STATE_HIGHSPEED_DDR)
L
Linus Torvalds 已提交
265

O
Ohad Ben-Cohen 已提交
266 267 268 269 270
static inline int mmc_card_lenient_fn0(const struct mmc_card *c)
{
	return c->quirks & MMC_QUIRK_LENIENT_FN0;
}

271 272 273 274 275
static inline int mmc_blksz_for_byte_mode(const struct mmc_card *c)
{
	return c->quirks & MMC_QUIRK_BLKSZ_FOR_BYTE_MODE;
}

O
Ohad Ben-Cohen 已提交
276 277 278 279 280
static inline int mmc_card_disable_cd(const struct mmc_card *c)
{
	return c->quirks & MMC_QUIRK_DISABLE_CD;
}

281 282 283 284 285
static inline int mmc_card_nonstd_func_interface(const struct mmc_card *c)
{
	return c->quirks & MMC_QUIRK_NONSTD_FUNC_IF;
}

L
Linus Torvalds 已提交
286
#define mmc_card_name(c)	((c)->cid.prod_name)
287
#define mmc_card_id(c)		(dev_name(&(c)->dev))
L
Linus Torvalds 已提交
288

289
#define mmc_dev_to_card(d)	container_of(d, struct mmc_card, dev)
290

L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
#define mmc_list_to_card(l)	container_of(l, struct mmc_card, node)
#define mmc_get_drvdata(c)	dev_get_drvdata(&(c)->dev)
#define mmc_set_drvdata(c,d)	dev_set_drvdata(&(c)->dev, d)

/*
 * MMC device driver (e.g., Flash card, I/O card...)
 */
struct mmc_driver {
	struct device_driver drv;
	int (*probe)(struct mmc_card *);
	void (*remove)(struct mmc_card *);
	int (*suspend)(struct mmc_card *, pm_message_t);
	int (*resume)(struct mmc_card *);
};

extern int mmc_register_driver(struct mmc_driver *);
extern void mmc_unregister_driver(struct mmc_driver *);

309 310 311
extern void mmc_fixup_device(struct mmc_card *card,
			     const struct mmc_fixup *table);

L
Linus Torvalds 已提交
312
#endif