card.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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/mmc.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 sd_scr {
  39. unsigned char sda_vsn;
  40. unsigned char bus_widths;
  41. #define SD_SCR_BUS_WIDTH_1 (1<<0)
  42. #define SD_SCR_BUS_WIDTH_4 (1<<2)
  43. };
  44. struct mmc_host;
  45. /*
  46. * MMC device
  47. */
  48. struct mmc_card {
  49. struct list_head node; /* node in hosts devices list */
  50. struct mmc_host *host; /* the host this device belongs to */
  51. struct device dev; /* the device */
  52. unsigned int rca; /* relative card address of device */
  53. unsigned int state; /* (our) card state */
  54. #define MMC_STATE_PRESENT (1<<0) /* present in sysfs */
  55. #define MMC_STATE_DEAD (1<<1) /* device no longer in stack */
  56. #define MMC_STATE_BAD (1<<2) /* unrecognised device */
  57. #define MMC_STATE_SDCARD (1<<3) /* is an SD card */
  58. #define MMC_STATE_READONLY (1<<4) /* card is read-only */
  59. u32 raw_cid[4]; /* raw card CID */
  60. u32 raw_csd[4]; /* raw card CSD */
  61. u32 raw_scr[2]; /* raw card SCR */
  62. struct mmc_cid cid; /* card identification */
  63. struct mmc_csd csd; /* card specific */
  64. struct sd_scr scr; /* extra SD information */
  65. };
  66. #define mmc_card_present(c) ((c)->state & MMC_STATE_PRESENT)
  67. #define mmc_card_dead(c) ((c)->state & MMC_STATE_DEAD)
  68. #define mmc_card_bad(c) ((c)->state & MMC_STATE_BAD)
  69. #define mmc_card_sd(c) ((c)->state & MMC_STATE_SDCARD)
  70. #define mmc_card_readonly(c) ((c)->state & MMC_STATE_READONLY)
  71. #define mmc_card_set_present(c) ((c)->state |= MMC_STATE_PRESENT)
  72. #define mmc_card_set_dead(c) ((c)->state |= MMC_STATE_DEAD)
  73. #define mmc_card_set_bad(c) ((c)->state |= MMC_STATE_BAD)
  74. #define mmc_card_set_sd(c) ((c)->state |= MMC_STATE_SDCARD)
  75. #define mmc_card_set_readonly(c) ((c)->state |= MMC_STATE_READONLY)
  76. #define mmc_card_name(c) ((c)->cid.prod_name)
  77. #define mmc_card_id(c) ((c)->dev.bus_id)
  78. #define mmc_list_to_card(l) container_of(l, struct mmc_card, node)
  79. #define mmc_get_drvdata(c) dev_get_drvdata(&(c)->dev)
  80. #define mmc_set_drvdata(c,d) dev_set_drvdata(&(c)->dev, d)
  81. /*
  82. * MMC device driver (e.g., Flash card, I/O card...)
  83. */
  84. struct mmc_driver {
  85. struct device_driver drv;
  86. int (*probe)(struct mmc_card *);
  87. void (*remove)(struct mmc_card *);
  88. int (*suspend)(struct mmc_card *, pm_message_t);
  89. int (*resume)(struct mmc_card *);
  90. };
  91. extern int mmc_register_driver(struct mmc_driver *);
  92. extern void mmc_unregister_driver(struct mmc_driver *);
  93. static inline int mmc_card_claim_host(struct mmc_card *card)
  94. {
  95. return __mmc_claim_host(card->host, card);
  96. }
  97. #define mmc_card_release_host(c) mmc_release_host((c)->host)
  98. #endif