card.h 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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. #include <linux/mmc/core.h>
  13. struct mmc_cid {
  14. unsigned int manfid;
  15. char prod_name[8];
  16. unsigned int serial;
  17. unsigned short oemid;
  18. unsigned short year;
  19. unsigned char hwrev;
  20. unsigned char fwrev;
  21. unsigned char month;
  22. };
  23. struct mmc_csd {
  24. unsigned char structure;
  25. unsigned char mmca_vsn;
  26. unsigned short cmdclass;
  27. unsigned short tacc_clks;
  28. unsigned int tacc_ns;
  29. unsigned int r2w_factor;
  30. unsigned int max_dtr;
  31. unsigned int erase_size; /* In sectors */
  32. unsigned int read_blkbits;
  33. unsigned int write_blkbits;
  34. unsigned int capacity;
  35. unsigned int read_partial:1,
  36. read_misalign:1,
  37. write_partial:1,
  38. write_misalign:1;
  39. };
  40. struct mmc_ext_csd {
  41. u8 rev;
  42. u8 erase_group_def;
  43. u8 sec_feature_support;
  44. unsigned int sa_timeout; /* Units: 100ns */
  45. unsigned int hs_max_dtr;
  46. unsigned int sectors;
  47. unsigned int card_type;
  48. unsigned int hc_erase_size; /* In sectors */
  49. unsigned int hc_erase_timeout; /* In milliseconds */
  50. unsigned int sec_trim_mult; /* Secure trim multiplier */
  51. unsigned int sec_erase_mult; /* Secure erase multiplier */
  52. unsigned int trim_timeout; /* In milliseconds */
  53. };
  54. struct sd_scr {
  55. unsigned char sda_vsn;
  56. unsigned char bus_widths;
  57. #define SD_SCR_BUS_WIDTH_1 (1<<0)
  58. #define SD_SCR_BUS_WIDTH_4 (1<<2)
  59. };
  60. struct sd_ssr {
  61. unsigned int au; /* In sectors */
  62. unsigned int erase_timeout; /* In milliseconds */
  63. unsigned int erase_offset; /* In milliseconds */
  64. };
  65. struct sd_switch_caps {
  66. unsigned int hs_max_dtr;
  67. };
  68. struct sdio_cccr {
  69. unsigned int sdio_vsn;
  70. unsigned int sd_vsn;
  71. unsigned int multi_block:1,
  72. low_speed:1,
  73. wide_bus:1,
  74. high_power:1,
  75. high_speed:1,
  76. disable_cd:1;
  77. };
  78. struct sdio_cis {
  79. unsigned short vendor;
  80. unsigned short device;
  81. unsigned short blksize;
  82. unsigned int max_dtr;
  83. };
  84. struct mmc_host;
  85. struct sdio_func;
  86. struct sdio_func_tuple;
  87. #define SDIO_MAX_FUNCS 7
  88. /*
  89. * MMC device
  90. */
  91. struct mmc_card {
  92. struct mmc_host *host; /* the host this device belongs to */
  93. struct device dev; /* the device */
  94. unsigned int rca; /* relative card address of device */
  95. unsigned int type; /* card type */
  96. #define MMC_TYPE_MMC 0 /* MMC card */
  97. #define MMC_TYPE_SD 1 /* SD card */
  98. #define MMC_TYPE_SDIO 2 /* SDIO card */
  99. #define MMC_TYPE_SD_COMBO 3 /* SD combo (IO+mem) card */
  100. unsigned int state; /* (our) card state */
  101. #define MMC_STATE_PRESENT (1<<0) /* present in sysfs */
  102. #define MMC_STATE_READONLY (1<<1) /* card is read-only */
  103. #define MMC_STATE_HIGHSPEED (1<<2) /* card is in high speed mode */
  104. #define MMC_STATE_BLOCKADDR (1<<3) /* card uses block-addressing */
  105. #define MMC_STATE_HIGHSPEED_DDR (1<<4) /* card is in high speed mode */
  106. unsigned int quirks; /* card quirks */
  107. #define MMC_QUIRK_LENIENT_FN0 (1<<0) /* allow SDIO FN0 writes outside of the VS CCCR range */
  108. #define MMC_QUIRK_BLKSZ_FOR_BYTE_MODE (1<<1) /* use func->cur_blksize */
  109. /* for byte mode */
  110. #define MMC_QUIRK_NONSTD_SDIO (1<<2) /* non-standard SDIO card attached */
  111. /* (missing CIA registers) */
  112. unsigned int erase_size; /* erase size in sectors */
  113. unsigned int erase_shift; /* if erase unit is power 2 */
  114. unsigned int pref_erase; /* in sectors */
  115. u8 erased_byte; /* value of erased bytes */
  116. u32 raw_cid[4]; /* raw card CID */
  117. u32 raw_csd[4]; /* raw card CSD */
  118. u32 raw_scr[2]; /* raw card SCR */
  119. struct mmc_cid cid; /* card identification */
  120. struct mmc_csd csd; /* card specific */
  121. struct mmc_ext_csd ext_csd; /* mmc v4 extended card specific */
  122. struct sd_scr scr; /* extra SD information */
  123. struct sd_ssr ssr; /* yet more SD information */
  124. struct sd_switch_caps sw_caps; /* switch (CMD6) caps */
  125. unsigned int sdio_funcs; /* number of SDIO functions */
  126. struct sdio_cccr cccr; /* common card info */
  127. struct sdio_cis cis; /* common tuple info */
  128. struct sdio_func *sdio_func[SDIO_MAX_FUNCS]; /* SDIO functions (devices) */
  129. unsigned num_info; /* number of info strings */
  130. const char **info; /* info strings */
  131. struct sdio_func_tuple *tuples; /* unknown common tuples */
  132. struct dentry *debugfs_root;
  133. };
  134. #define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC)
  135. #define mmc_card_sd(c) ((c)->type == MMC_TYPE_SD)
  136. #define mmc_card_sdio(c) ((c)->type == MMC_TYPE_SDIO)
  137. #define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT)
  138. #define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY)
  139. #define mmc_card_highspeed(c) ((c)->state & MMC_STATE_HIGHSPEED)
  140. #define mmc_card_blockaddr(c) ((c)->state & MMC_STATE_BLOCKADDR)
  141. #define mmc_card_ddr_mode(c) ((c)->state & MMC_STATE_HIGHSPEED_DDR)
  142. #define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT)
  143. #define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY)
  144. #define mmc_card_set_highspeed(c) ((c)->state |= MMC_STATE_HIGHSPEED)
  145. #define mmc_card_set_blockaddr(c) ((c)->state |= MMC_STATE_BLOCKADDR)
  146. #define mmc_card_set_ddr_mode(c) ((c)->state |= MMC_STATE_HIGHSPEED_DDR)
  147. static inline int mmc_card_lenient_fn0(const struct mmc_card *c)
  148. {
  149. return c->quirks & MMC_QUIRK_LENIENT_FN0;
  150. }
  151. static inline int mmc_blksz_for_byte_mode(const struct mmc_card *c)
  152. {
  153. return c->quirks & MMC_QUIRK_BLKSZ_FOR_BYTE_MODE;
  154. }
  155. #define mmc_card_name(c) ((c)->cid.prod_name)
  156. #define mmc_card_id(c) (dev_name(&(c)->dev))
  157. #define mmc_dev_to_card(d) container_of(d, struct mmc_card, dev)
  158. #define mmc_list_to_card(l) container_of(l, struct mmc_card, node)
  159. #define mmc_get_drvdata(c) dev_get_drvdata(&(c)->dev)
  160. #define mmc_set_drvdata(c,d) dev_set_drvdata(&(c)->dev, d)
  161. /*
  162. * MMC device driver (e.g., Flash card, I/O card...)
  163. */
  164. struct mmc_driver {
  165. struct device_driver drv;
  166. int (*probe)(struct mmc_card *);
  167. void (*remove)(struct mmc_card *);
  168. int (*suspend)(struct mmc_card *, pm_message_t);
  169. int (*resume)(struct mmc_card *);
  170. };
  171. extern int mmc_register_driver(struct mmc_driver *);
  172. extern void mmc_unregister_driver(struct mmc_driver *);
  173. #endif