Lines Matching defs:mmc_card
247 struct mmc_card { struct
248 struct mmc_host *host; /* the host this device belongs to */
249 struct device dev; /* the device */
250 u32 ocr; /* the current OCR setting */
251 unsigned int rca; /* relative card address of device */
252 unsigned int type; /* card type */
257 unsigned int state; /* (our) card state */
265 unsigned int quirks; /* card quirks */
282 unsigned int erase_size; /* erase size in sectors */
283 unsigned int erase_shift; /* if erase unit is power 2 */
284 unsigned int pref_erase; /* in sectors */
285 u8 erased_byte; /* value of erased bytes */
287 u32 raw_cid[4]; /* raw card CID */
288 u32 raw_csd[4]; /* raw card CSD */
289 u32 raw_scr[2]; /* raw card SCR */
290 struct mmc_cid cid; /* card identification */
291 struct mmc_csd csd; /* card specific */
292 struct mmc_ext_csd ext_csd; /* mmc v4 extended card specific */
293 struct sd_scr scr; /* extra SD information */
317 static inline void mmc_part_add(struct mmc_card *card, unsigned int size, in mmc_part_add() argument