card.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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