card.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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 mmca_vsn;
  25. unsigned short cmdclass;
  26. unsigned short tacc_clks;
  27. unsigned int tacc_ns;
  28. unsigned int r2w_factor;
  29. unsigned int max_dtr;
  30. unsigned int read_blkbits;
  31. unsigned int write_blkbits;
  32. unsigned int capacity;
  33. unsigned int read_partial:1,
  34. read_misalign:1,
  35. write_partial:1,
  36. write_misalign:1;
  37. };
  38. struct mmc_ext_csd {
  39. unsigned int hs_max_dtr;
  40. unsigned int sectors;
  41. };
  42. struct sd_scr {
  43. unsigned char sda_vsn;
  44. unsigned char bus_widths;
  45. #define SD_SCR_BUS_WIDTH_1 (1<<0)
  46. #define SD_SCR_BUS_WIDTH_4 (1<<2)
  47. };
  48. struct sd_switch_caps {
  49. unsigned int hs_max_dtr;
  50. };
  51. struct sdio_cccr {
  52. unsigned int sdio_vsn;
  53. unsigned int sd_vsn;
  54. unsigned int multi_block:1,
  55. low_speed:1,
  56. wide_bus:1,
  57. high_power:1,
  58. high_speed:1;
  59. };
  60. struct mmc_host;
  61. struct sdio_func;
  62. #define SDIO_MAX_FUNCS 7
  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. u32 raw_cid[4]; /* raw card CID */
  80. u32 raw_csd[4]; /* raw card CSD */
  81. u32 raw_scr[2]; /* raw card SCR */
  82. struct mmc_cid cid; /* card identification */
  83. struct mmc_csd csd; /* card specific */
  84. struct mmc_ext_csd ext_csd; /* mmc v4 extended card specific */
  85. struct sd_scr scr; /* extra SD information */
  86. struct sd_switch_caps sw_caps; /* switch (CMD6) caps */
  87. unsigned int sdio_funcs; /* number of SDIO functions */
  88. struct sdio_cccr cccr; /* common card info */
  89. struct sdio_func *sdio_func[SDIO_MAX_FUNCS]; /* SDIO functions (devices) */
  90. };
  91. #define mmc_card_mmc(c) ((c)->type == MMC_TYPE_MMC)
  92. #define mmc_card_sd(c) ((c)->type == MMC_TYPE_SD)
  93. #define mmc_card_sdio(c) ((c)->type == MMC_TYPE_SDIO)
  94. #define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT)
  95. #define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY)
  96. #define mmc_card_highspeed(c) ((c)->state & MMC_STATE_HIGHSPEED)
  97. #define mmc_card_blockaddr(c) ((c)->state & MMC_STATE_BLOCKADDR)
  98. #define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT)
  99. #define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY)
  100. #define mmc_card_set_highspeed(c) ((c)->state |= MMC_STATE_HIGHSPEED)
  101. #define mmc_card_set_blockaddr(c) ((c)->state |= MMC_STATE_BLOCKADDR)
  102. #define mmc_card_name(c) ((c)->cid.prod_name)
  103. #define mmc_card_id(c) ((c)->dev.bus_id)
  104. #define mmc_list_to_card(l) container_of(l, struct mmc_card, node)
  105. #define mmc_get_drvdata(c) dev_get_drvdata(&(c)->dev)
  106. #define mmc_set_drvdata(c,d) dev_set_drvdata(&(c)->dev, d)
  107. /*
  108. * MMC device driver (e.g., Flash card, I/O card...)
  109. */
  110. struct mmc_driver {
  111. struct device_driver drv;
  112. int (*probe)(struct mmc_card *);
  113. void (*remove)(struct mmc_card *);
  114. int (*suspend)(struct mmc_card *, pm_message_t);
  115. int (*resume)(struct mmc_card *);
  116. };
  117. extern int mmc_register_driver(struct mmc_driver *);
  118. extern void mmc_unregister_driver(struct mmc_driver *);
  119. #endif