host.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * linux/include/linux/mmc/host.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. * Host driver specific definitions.
  9. */
  10. #ifndef LINUX_MMC_HOST_H
  11. #define LINUX_MMC_HOST_H
  12. #include <linux/mmc/mmc.h>
  13. struct mmc_ios {
  14. unsigned int clock; /* clock rate */
  15. unsigned short vdd;
  16. #define MMC_VDD_150 0
  17. #define MMC_VDD_155 1
  18. #define MMC_VDD_160 2
  19. #define MMC_VDD_165 3
  20. #define MMC_VDD_170 4
  21. #define MMC_VDD_180 5
  22. #define MMC_VDD_190 6
  23. #define MMC_VDD_200 7
  24. #define MMC_VDD_210 8
  25. #define MMC_VDD_220 9
  26. #define MMC_VDD_230 10
  27. #define MMC_VDD_240 11
  28. #define MMC_VDD_250 12
  29. #define MMC_VDD_260 13
  30. #define MMC_VDD_270 14
  31. #define MMC_VDD_280 15
  32. #define MMC_VDD_290 16
  33. #define MMC_VDD_300 17
  34. #define MMC_VDD_310 18
  35. #define MMC_VDD_320 19
  36. #define MMC_VDD_330 20
  37. #define MMC_VDD_340 21
  38. #define MMC_VDD_350 22
  39. #define MMC_VDD_360 23
  40. unsigned char bus_mode; /* command output mode */
  41. #define MMC_BUSMODE_OPENDRAIN 1
  42. #define MMC_BUSMODE_PUSHPULL 2
  43. unsigned char power_mode; /* power supply mode */
  44. #define MMC_POWER_OFF 0
  45. #define MMC_POWER_UP 1
  46. #define MMC_POWER_ON 2
  47. };
  48. struct mmc_host_ops {
  49. void (*request)(struct mmc_host *host, struct mmc_request *req);
  50. void (*set_ios)(struct mmc_host *host, struct mmc_ios *ios);
  51. };
  52. struct mmc_card;
  53. struct device;
  54. struct mmc_host {
  55. struct device *dev;
  56. struct mmc_host_ops *ops;
  57. unsigned int f_min;
  58. unsigned int f_max;
  59. u32 ocr_avail;
  60. char host_name[8];
  61. /* host specific block data */
  62. unsigned int max_seg_size; /* see blk_queue_max_segment_size */
  63. unsigned short max_hw_segs; /* see blk_queue_max_hw_segments */
  64. unsigned short max_phys_segs; /* see blk_queue_max_phys_segments */
  65. unsigned short max_sectors; /* see blk_queue_max_sectors */
  66. unsigned short unused;
  67. /* private data */
  68. struct mmc_ios ios; /* current io bus settings */
  69. u32 ocr; /* the current OCR setting */
  70. struct list_head cards; /* devices attached to this host */
  71. wait_queue_head_t wq;
  72. spinlock_t lock; /* card_busy lock */
  73. struct mmc_card *card_busy; /* the MMC card claiming host */
  74. struct mmc_card *card_selected; /* the selected MMC card */
  75. struct work_struct detect;
  76. };
  77. extern struct mmc_host *mmc_alloc_host(int extra, struct device *);
  78. extern int mmc_add_host(struct mmc_host *);
  79. extern void mmc_remove_host(struct mmc_host *);
  80. extern void mmc_free_host(struct mmc_host *);
  81. #define mmc_priv(x) ((void *)((x) + 1))
  82. #define mmc_dev(x) ((x)->dev)
  83. extern int mmc_suspend_host(struct mmc_host *, pm_message_t);
  84. extern int mmc_resume_host(struct mmc_host *);
  85. extern void mmc_detect_change(struct mmc_host *);
  86. extern void mmc_request_done(struct mmc_host *, struct mmc_request *);
  87. #endif