tegra_mmc.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * (C) Copyright 2009 SAMSUNG Electronics
  3. * Minkyu Kang <mk7.kang@samsung.com>
  4. * Portions Copyright (C) 2011-2012 NVIDIA Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. */
  21. #ifndef __TEGRA_MMC_H_
  22. #define __TEGRA_MMC_H_
  23. #define TEGRA20_SDMMC1_BASE 0xC8000000
  24. #define TEGRA20_SDMMC2_BASE 0xC8000200
  25. #define TEGRA20_SDMMC3_BASE 0xC8000400
  26. #define TEGRA20_SDMMC4_BASE 0xC8000600
  27. #ifndef __ASSEMBLY__
  28. struct tegra20_mmc {
  29. unsigned int sysad; /* _SYSTEM_ADDRESS_0 */
  30. unsigned short blksize; /* _BLOCK_SIZE_BLOCK_COUNT_0 15:00 */
  31. unsigned short blkcnt; /* _BLOCK_SIZE_BLOCK_COUNT_0 31:16 */
  32. unsigned int argument; /* _ARGUMENT_0 */
  33. unsigned short trnmod; /* _CMD_XFER_MODE_0 15:00 xfer mode */
  34. unsigned short cmdreg; /* _CMD_XFER_MODE_0 31:16 cmd reg */
  35. unsigned int rspreg0; /* _RESPONSE_R0_R1_0 CMD RESP 31:00 */
  36. unsigned int rspreg1; /* _RESPONSE_R2_R3_0 CMD RESP 63:32 */
  37. unsigned int rspreg2; /* _RESPONSE_R4_R5_0 CMD RESP 95:64 */
  38. unsigned int rspreg3; /* _RESPONSE_R6_R7_0 CMD RESP 127:96 */
  39. unsigned int bdata; /* _BUFFER_DATA_PORT_0 */
  40. unsigned int prnsts; /* _PRESENT_STATE_0 */
  41. unsigned char hostctl; /* _POWER_CONTROL_HOST_0 7:00 */
  42. unsigned char pwrcon; /* _POWER_CONTROL_HOST_0 15:8 */
  43. unsigned char blkgap; /* _POWER_CONTROL_HOST_9 23:16 */
  44. unsigned char wakcon; /* _POWER_CONTROL_HOST_0 31:24 */
  45. unsigned short clkcon; /* _CLOCK_CONTROL_0 15:00 */
  46. unsigned char timeoutcon; /* _TIMEOUT_CTRL 23:16 */
  47. unsigned char swrst; /* _SW_RESET_ 31:24 */
  48. unsigned int norintsts; /* _INTERRUPT_STATUS_0 */
  49. unsigned int norintstsen; /* _INTERRUPT_STATUS_ENABLE_0 */
  50. unsigned int norintsigen; /* _INTERRUPT_SIGNAL_ENABLE_0 */
  51. unsigned short acmd12errsts; /* _AUTO_CMD12_ERR_STATUS_0 15:00 */
  52. unsigned char res1[2]; /* _RESERVED 31:16 */
  53. unsigned int capareg; /* _CAPABILITIES_0 */
  54. unsigned char res2[4]; /* RESERVED, offset 44h-47h */
  55. unsigned int maxcurr; /* _MAXIMUM_CURRENT_0 */
  56. unsigned char res3[4]; /* RESERVED, offset 4Ch-4Fh */
  57. unsigned short setacmd12err; /* offset 50h */
  58. unsigned short setinterr; /* offset 52h */
  59. unsigned char admaerr; /* offset 54h */
  60. unsigned char res4[3]; /* RESERVED, offset 55h-57h */
  61. unsigned long admaaddr; /* offset 58h-5Fh */
  62. unsigned char res5[0x9c]; /* RESERVED, offset 60h-FBh */
  63. unsigned short slotintstatus; /* offset FCh */
  64. unsigned short hcver; /* HOST Version */
  65. unsigned char res6[0x100]; /* RESERVED, offset 100h-1FFh */
  66. };
  67. #define TEGRA_MMC_HOSTCTL_DMASEL_MASK (3 << 3)
  68. #define TEGRA_MMC_HOSTCTL_DMASEL_SDMA (0 << 3)
  69. #define TEGRA_MMC_HOSTCTL_DMASEL_ADMA2_32BIT (2 << 3)
  70. #define TEGRA_MMC_HOSTCTL_DMASEL_ADMA2_64BIT (3 << 3)
  71. #define TEGRA_MMC_TRNMOD_DMA_ENABLE (1 << 0)
  72. #define TEGRA_MMC_TRNMOD_BLOCK_COUNT_ENABLE (1 << 1)
  73. #define TEGRA_MMC_TRNMOD_DATA_XFER_DIR_SEL_WRITE (0 << 4)
  74. #define TEGRA_MMC_TRNMOD_DATA_XFER_DIR_SEL_READ (1 << 4)
  75. #define TEGRA_MMC_TRNMOD_MULTI_BLOCK_SELECT (1 << 5)
  76. #define TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_MASK (3 << 0)
  77. #define TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_NO_RESPONSE (0 << 0)
  78. #define TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_136 (1 << 0)
  79. #define TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_48 (2 << 0)
  80. #define TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_48_BUSY (3 << 0)
  81. #define TEGRA_MMC_TRNMOD_CMD_CRC_CHECK (1 << 3)
  82. #define TEGRA_MMC_TRNMOD_CMD_INDEX_CHECK (1 << 4)
  83. #define TEGRA_MMC_TRNMOD_DATA_PRESENT_SELECT_DATA_TRANSFER (1 << 5)
  84. #define TEGRA_MMC_PRNSTS_CMD_INHIBIT_CMD (1 << 0)
  85. #define TEGRA_MMC_PRNSTS_CMD_INHIBIT_DAT (1 << 1)
  86. #define TEGRA_MMC_CLKCON_INTERNAL_CLOCK_ENABLE (1 << 0)
  87. #define TEGRA_MMC_CLKCON_INTERNAL_CLOCK_STABLE (1 << 1)
  88. #define TEGRA_MMC_CLKCON_SD_CLOCK_ENABLE (1 << 2)
  89. #define TEGRA_MMC_CLKCON_SDCLK_FREQ_SEL_SHIFT 8
  90. #define TEGRA_MMC_CLKCON_SDCLK_FREQ_SEL_MASK (0xff << 8)
  91. #define TEGRA_MMC_SWRST_SW_RESET_FOR_ALL (1 << 0)
  92. #define TEGRA_MMC_SWRST_SW_RESET_FOR_CMD_LINE (1 << 1)
  93. #define TEGRA_MMC_SWRST_SW_RESET_FOR_DAT_LINE (1 << 2)
  94. #define TEGRA_MMC_NORINTSTS_CMD_COMPLETE (1 << 0)
  95. #define TEGRA_MMC_NORINTSTS_XFER_COMPLETE (1 << 1)
  96. #define TEGRA_MMC_NORINTSTS_DMA_INTERRUPT (1 << 3)
  97. #define TEGRA_MMC_NORINTSTS_ERR_INTERRUPT (1 << 15)
  98. #define TEGRA_MMC_NORINTSTS_CMD_TIMEOUT (1 << 16)
  99. #define TEGRA_MMC_NORINTSTSEN_CMD_COMPLETE (1 << 0)
  100. #define TEGRA_MMC_NORINTSTSEN_XFER_COMPLETE (1 << 1)
  101. #define TEGRA_MMC_NORINTSTSEN_DMA_INTERRUPT (1 << 3)
  102. #define TEGRA_MMC_NORINTSTSEN_BUFFER_WRITE_READY (1 << 4)
  103. #define TEGRA_MMC_NORINTSTSEN_BUFFER_READ_READY (1 << 5)
  104. #define TEGRA_MMC_NORINTSIGEN_XFER_COMPLETE (1 << 1)
  105. struct mmc_host {
  106. struct tegra20_mmc *reg;
  107. unsigned int version; /* SDHCI spec. version */
  108. unsigned int clock; /* Current clock (MHz) */
  109. unsigned int base; /* Base address, SDMMC1/2/3/4 */
  110. enum periph_id mmc_id; /* Peripheral ID: PERIPH_ID_... */
  111. int pwr_gpio; /* Power GPIO */
  112. int cd_gpio; /* Change Detect GPIO */
  113. };
  114. #endif /* __ASSEMBLY__ */
  115. #endif /* __TEGRA_MMC_H_ */