mmc_host_def.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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 MMC_HOST_DEF_H
  25. #define MMC_HOST_DEF_H
  26. /*
  27. * OMAP HSMMC register definitions
  28. */
  29. #define OMAP_HSMMC_SYSCONFIG (*(unsigned int *) 0x4809C010)
  30. #define OMAP_HSMMC_SYSSTATUS (*(unsigned int *) 0x4809C014)
  31. #define OMAP_HSMMC_CON (*(unsigned int *) 0x4809C02C)
  32. #define OMAP_HSMMC_BLK (*(unsigned int *) 0x4809C104)
  33. #define OMAP_HSMMC_ARG (*(unsigned int *) 0x4809C108)
  34. #define OMAP_HSMMC_CMD (*(unsigned int *) 0x4809C10C)
  35. #define OMAP_HSMMC_RSP10 (*(unsigned int *) 0x4809C110)
  36. #define OMAP_HSMMC_RSP32 (*(unsigned int *) 0x4809C114)
  37. #define OMAP_HSMMC_RSP54 (*(unsigned int *) 0x4809C118)
  38. #define OMAP_HSMMC_RSP76 (*(unsigned int *) 0x4809C11C)
  39. #define OMAP_HSMMC_DATA (*(unsigned int *) 0x4809C120)
  40. #define OMAP_HSMMC_PSTATE (*(unsigned int *) 0x4809C124)
  41. #define OMAP_HSMMC_HCTL (*(unsigned int *) 0x4809C128)
  42. #define OMAP_HSMMC_SYSCTL (*(unsigned int *) 0x4809C12C)
  43. #define OMAP_HSMMC_STAT (*(unsigned int *) 0x4809C130)
  44. #define OMAP_HSMMC_IE (*(unsigned int *) 0x4809C134)
  45. #define OMAP_HSMMC_CAPA (*(unsigned int *) 0x4809C140)
  46. /* T2 Register definitions */
  47. #define CONTROL_DEV_CONF0 (*(unsigned int *) 0x48002274)
  48. #define CONTROL_PBIAS_LITE (*(unsigned int *) 0x48002520)
  49. /*
  50. * OMAP HS MMC Bit definitions
  51. */
  52. #define MMC_SOFTRESET (0x1 << 1)
  53. #define RESETDONE (0x1 << 0)
  54. #define NOOPENDRAIN (0x0 << 0)
  55. #define OPENDRAIN (0x1 << 0)
  56. #define OD (0x1 << 0)
  57. #define INIT_NOINIT (0x0 << 1)
  58. #define INIT_INITSTREAM (0x1 << 1)
  59. #define HR_NOHOSTRESP (0x0 << 2)
  60. #define STR_BLOCK (0x0 << 3)
  61. #define MODE_FUNC (0x0 << 4)
  62. #define DW8_1_4BITMODE (0x0 << 5)
  63. #define MIT_CTO (0x0 << 6)
  64. #define CDP_ACTIVEHIGH (0x0 << 7)
  65. #define WPP_ACTIVEHIGH (0x0 << 8)
  66. #define RESERVED_MASK (0x3 << 9)
  67. #define CTPL_MMC_SD (0x0 << 11)
  68. #define BLEN_512BYTESLEN (0x200 << 0)
  69. #define NBLK_STPCNT (0x0 << 16)
  70. #define DE_DISABLE (0x0 << 0)
  71. #define BCE_DISABLE (0x0 << 1)
  72. #define ACEN_DISABLE (0x0 << 2)
  73. #define DDIR_OFFSET (4)
  74. #define DDIR_MASK (0x1 << 4)
  75. #define DDIR_WRITE (0x0 << 4)
  76. #define DDIR_READ (0x1 << 4)
  77. #define MSBS_SGLEBLK (0x0 << 5)
  78. #define RSP_TYPE_OFFSET (16)
  79. #define RSP_TYPE_MASK (0x3 << 16)
  80. #define RSP_TYPE_NORSP (0x0 << 16)
  81. #define RSP_TYPE_LGHT136 (0x1 << 16)
  82. #define RSP_TYPE_LGHT48 (0x2 << 16)
  83. #define RSP_TYPE_LGHT48B (0x3 << 16)
  84. #define CCCE_NOCHECK (0x0 << 19)
  85. #define CCCE_CHECK (0x1 << 19)
  86. #define CICE_NOCHECK (0x0 << 20)
  87. #define CICE_CHECK (0x1 << 20)
  88. #define DP_OFFSET (21)
  89. #define DP_MASK (0x1 << 21)
  90. #define DP_NO_DATA (0x0 << 21)
  91. #define DP_DATA (0x1 << 21)
  92. #define CMD_TYPE_NORMAL (0x0 << 22)
  93. #define INDEX_OFFSET (24)
  94. #define INDEX_MASK (0x3f << 24)
  95. #define INDEX(i) (i << 24)
  96. #define DATI_MASK (0x1 << 1)
  97. #define DATI_CMDDIS (0x1 << 1)
  98. #define DTW_1_BITMODE (0x0 << 1)
  99. #define DTW_4_BITMODE (0x1 << 1)
  100. #define SDBP_PWROFF (0x0 << 8)
  101. #define SDBP_PWRON (0x1 << 8)
  102. #define SDVS_1V8 (0x5 << 9)
  103. #define SDVS_3V0 (0x6 << 9)
  104. #define ICE_MASK (0x1 << 0)
  105. #define ICE_STOP (0x0 << 0)
  106. #define ICS_MASK (0x1 << 1)
  107. #define ICS_NOTREADY (0x0 << 1)
  108. #define ICE_OSCILLATE (0x1 << 0)
  109. #define CEN_MASK (0x1 << 2)
  110. #define CEN_DISABLE (0x0 << 2)
  111. #define CEN_ENABLE (0x1 << 2)
  112. #define CLKD_OFFSET (6)
  113. #define CLKD_MASK (0x3FF << 6)
  114. #define DTO_MASK (0xF << 16)
  115. #define DTO_15THDTO (0xE << 16)
  116. #define SOFTRESETALL (0x1 << 24)
  117. #define CC_MASK (0x1 << 0)
  118. #define TC_MASK (0x1 << 1)
  119. #define BWR_MASK (0x1 << 4)
  120. #define BRR_MASK (0x1 << 5)
  121. #define ERRI_MASK (0x1 << 15)
  122. #define IE_CC (0x01 << 0)
  123. #define IE_TC (0x01 << 1)
  124. #define IE_BWR (0x01 << 4)
  125. #define IE_BRR (0x01 << 5)
  126. #define IE_CTO (0x01 << 16)
  127. #define IE_CCRC (0x01 << 17)
  128. #define IE_CEB (0x01 << 18)
  129. #define IE_CIE (0x01 << 19)
  130. #define IE_DTO (0x01 << 20)
  131. #define IE_DCRC (0x01 << 21)
  132. #define IE_DEB (0x01 << 22)
  133. #define IE_CERR (0x01 << 28)
  134. #define IE_BADA (0x01 << 29)
  135. #define VS30_3V0SUP (1 << 25)
  136. #define VS18_1V8SUP (1 << 26)
  137. /* Driver definitions */
  138. #define MMCSD_SECTOR_SIZE 512
  139. #define MMC_CARD 0
  140. #define SD_CARD 1
  141. #define BYTE_MODE 0
  142. #define SECTOR_MODE 1
  143. #define CLK_INITSEQ 0
  144. #define CLK_400KHZ 1
  145. #define CLK_MISC 2
  146. typedef struct {
  147. unsigned int card_type;
  148. unsigned int version;
  149. unsigned int mode;
  150. unsigned int size;
  151. unsigned int RCA;
  152. } mmc_card_data;
  153. #define mmc_reg_out(addr, mask, val)\
  154. (addr) = (((addr)) & (~(mask))) | ((val) & (mask));
  155. #define mmc_reg_out(addr, mask, val)\
  156. (addr) = (((addr)) & (~(mask))) | ((val) & (mask));
  157. #endif /* MMC_HOST_DEF_H */