omap_mmc.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /*
  2. * (C) Copyright 2008
  3. * Texas Instruments, <www.ti.com>
  4. * Syed Mohammed Khasim <khasim@ti.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation's version 2 of
  12. * the License.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #ifndef OMAP_MMC_H_
  25. #define OMAP_MMC_H_
  26. #include <mmc.h>
  27. struct hsmmc {
  28. #ifndef CONFIG_OMAP34XX
  29. unsigned int hl_rev;
  30. unsigned int hl_hwinfo;
  31. unsigned int hl_sysconfig;
  32. unsigned char res0[0xf4];
  33. #endif
  34. unsigned char res1[0x10];
  35. unsigned int sysconfig; /* 0x10 */
  36. unsigned int sysstatus; /* 0x14 */
  37. unsigned char res2[0x14];
  38. unsigned int con; /* 0x2C */
  39. unsigned char res3[0xD4];
  40. unsigned int blk; /* 0x104 */
  41. unsigned int arg; /* 0x108 */
  42. unsigned int cmd; /* 0x10C */
  43. unsigned int rsp10; /* 0x110 */
  44. unsigned int rsp32; /* 0x114 */
  45. unsigned int rsp54; /* 0x118 */
  46. unsigned int rsp76; /* 0x11C */
  47. unsigned int data; /* 0x120 */
  48. unsigned int pstate; /* 0x124 */
  49. unsigned int hctl; /* 0x128 */
  50. unsigned int sysctl; /* 0x12C */
  51. unsigned int stat; /* 0x130 */
  52. unsigned int ie; /* 0x134 */
  53. unsigned char res4[0x8];
  54. unsigned int capa; /* 0x140 */
  55. unsigned char res5[0x10];
  56. unsigned int admaes; /* 0x154 */
  57. unsigned int admasal; /* 0x158 */
  58. };
  59. struct omap_hsmmc_plat {
  60. struct mmc_config cfg;
  61. struct hsmmc *base_addr;
  62. struct mmc mmc;
  63. bool cd_inverted;
  64. };
  65. /*
  66. * OMAP HS MMC Bit definitions
  67. */
  68. #define MADMA_EN (0x1 << 0)
  69. #define MMC_SOFTRESET (0x1 << 1)
  70. #define RESETDONE (0x1 << 0)
  71. #define NOOPENDRAIN (0x0 << 0)
  72. #define OPENDRAIN (0x1 << 0)
  73. #define OD (0x1 << 0)
  74. #define INIT_NOINIT (0x0 << 1)
  75. #define INIT_INITSTREAM (0x1 << 1)
  76. #define HR_NOHOSTRESP (0x0 << 2)
  77. #define STR_BLOCK (0x0 << 3)
  78. #define MODE_FUNC (0x0 << 4)
  79. #define DW8_1_4BITMODE (0x0 << 5)
  80. #define MIT_CTO (0x0 << 6)
  81. #define CDP_ACTIVEHIGH (0x0 << 7)
  82. #define WPP_ACTIVEHIGH (0x0 << 8)
  83. #define RESERVED_MASK (0x3 << 9)
  84. #define CTPL_MMC_SD (0x0 << 11)
  85. #define DMA_MASTER (0x1 << 20)
  86. #define BLEN_512BYTESLEN (0x200 << 0)
  87. #define NBLK_STPCNT (0x0 << 16)
  88. #define DE_ENABLE (0x1 << 0)
  89. #define BCE_ENABLE (0x1 << 1)
  90. #define ACEN_ENABLE (0x1 << 2)
  91. #define DDIR_OFFSET (4)
  92. #define DDIR_MASK (0x1 << 4)
  93. #define DDIR_WRITE (0x0 << 4)
  94. #define DDIR_READ (0x1 << 4)
  95. #define MSBS_SGLEBLK (0x0 << 5)
  96. #define MSBS_MULTIBLK (0x1 << 5)
  97. #define RSP_TYPE_OFFSET (16)
  98. #define RSP_TYPE_MASK (0x3 << 16)
  99. #define RSP_TYPE_NORSP (0x0 << 16)
  100. #define RSP_TYPE_LGHT136 (0x1 << 16)
  101. #define RSP_TYPE_LGHT48 (0x2 << 16)
  102. #define RSP_TYPE_LGHT48B (0x3 << 16)
  103. #define CCCE_NOCHECK (0x0 << 19)
  104. #define CCCE_CHECK (0x1 << 19)
  105. #define CICE_NOCHECK (0x0 << 20)
  106. #define CICE_CHECK (0x1 << 20)
  107. #define DP_OFFSET (21)
  108. #define DP_MASK (0x1 << 21)
  109. #define DP_NO_DATA (0x0 << 21)
  110. #define DP_DATA (0x1 << 21)
  111. #define CMD_TYPE_NORMAL (0x0 << 22)
  112. #define INDEX_OFFSET (24)
  113. #define INDEX_MASK (0x3f << 24)
  114. #define INDEX(i) (i << 24)
  115. #define DATI_MASK (0x1 << 1)
  116. #define CMDI_MASK (0x1 << 0)
  117. #define DTW_1_BITMODE (0x0 << 1)
  118. #define DTW_4_BITMODE (0x1 << 1)
  119. #define DTW_8_BITMODE (0x1 << 5) /* CON[DW8]*/
  120. #define SDBP_PWROFF (0x0 << 8)
  121. #define SDBP_PWRON (0x1 << 8)
  122. #define SDVS_1V8 (0x5 << 9)
  123. #define SDVS_3V0 (0x6 << 9)
  124. #define DMA_SELECT (0x2 << 3)
  125. #define ICE_MASK (0x1 << 0)
  126. #define ICE_STOP (0x0 << 0)
  127. #define ICS_MASK (0x1 << 1)
  128. #define ICS_NOTREADY (0x0 << 1)
  129. #define ICE_OSCILLATE (0x1 << 0)
  130. #define CEN_MASK (0x1 << 2)
  131. #define CEN_ENABLE (0x1 << 2)
  132. #define CLKD_OFFSET (6)
  133. #define CLKD_MASK (0x3FF << 6)
  134. #define DTO_MASK (0xF << 16)
  135. #define DTO_15THDTO (0xE << 16)
  136. #define SOFTRESETALL (0x1 << 24)
  137. #define CC_MASK (0x1 << 0)
  138. #define TC_MASK (0x1 << 1)
  139. #define BWR_MASK (0x1 << 4)
  140. #define BRR_MASK (0x1 << 5)
  141. #define ERRI_MASK (0x1 << 15)
  142. #define IE_CC (0x01 << 0)
  143. #define IE_TC (0x01 << 1)
  144. #define IE_BWR (0x01 << 4)
  145. #define IE_BRR (0x01 << 5)
  146. #define IE_CTO (0x01 << 16)
  147. #define IE_CCRC (0x01 << 17)
  148. #define IE_CEB (0x01 << 18)
  149. #define IE_CIE (0x01 << 19)
  150. #define IE_DTO (0x01 << 20)
  151. #define IE_DCRC (0x01 << 21)
  152. #define IE_DEB (0x01 << 22)
  153. #define IE_ADMAE (0x01 << 25)
  154. #define IE_CERR (0x01 << 28)
  155. #define IE_BADA (0x01 << 29)
  156. #define VS30_3V0SUP (1 << 25)
  157. #define VS18_1V8SUP (1 << 26)
  158. /* Driver definitions */
  159. #define MMCSD_SECTOR_SIZE 512
  160. #define MMC_CARD 0
  161. #define SD_CARD 1
  162. #define BYTE_MODE 0
  163. #define SECTOR_MODE 1
  164. #define CLK_INITSEQ 0
  165. #define CLK_400KHZ 1
  166. #define CLK_MISC 2
  167. #define RSP_TYPE_NONE (RSP_TYPE_NORSP | CCCE_NOCHECK | CICE_NOCHECK)
  168. #define MMC_CMD0 (INDEX(0) | RSP_TYPE_NONE | DP_NO_DATA | DDIR_WRITE)
  169. /* Clock Configurations and Macros */
  170. #define MMC_CLOCK_REFERENCE 96 /* MHz */
  171. #define mmc_reg_out(addr, mask, val)\
  172. writel((readl(addr) & (~(mask))) | ((val) & (mask)), (addr))
  173. int omap_mmc_init(int dev_index, uint host_caps_mask, uint f_max, int cd_gpio,
  174. int wp_gpio);
  175. void vmmc_pbias_config(uint voltage);
  176. void board_mmc_poweron_ldo(uint voltage);
  177. #endif /* OMAP_MMC_H_ */