omap.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. /*
  2. * (C) Copyright 2010
  3. * Texas Instruments, <www.ti.com>
  4. *
  5. * Authors:
  6. * Aneesh V <aneesh@ti.com>
  7. * Sricharan R <r.sricharan@ti.com>
  8. *
  9. * SPDX-License-Identifier: GPL-2.0+
  10. */
  11. #ifndef _OMAP5_H_
  12. #define _OMAP5_H_
  13. #if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
  14. #include <asm/types.h>
  15. #endif /* !(__KERNEL_STRICT_NAMES || __ASSEMBLY__) */
  16. /*
  17. * L4 Peripherals - L4 Wakeup and L4 Core now
  18. */
  19. #define OMAP54XX_L4_CORE_BASE 0x4A000000
  20. #define OMAP54XX_L4_WKUP_BASE 0x4Ae00000
  21. #define OMAP54XX_L4_PER_BASE 0x48000000
  22. #define OMAP54XX_DRAM_ADDR_SPACE_START 0x80000000
  23. #define OMAP54XX_DRAM_ADDR_SPACE_END 0xFFFFFFFF
  24. #define DRAM_ADDR_SPACE_START OMAP54XX_DRAM_ADDR_SPACE_START
  25. #define DRAM_ADDR_SPACE_END OMAP54XX_DRAM_ADDR_SPACE_END
  26. /* CONTROL ID CODE */
  27. #define CONTROL_CORE_ID_CODE 0x4A002204
  28. #define CONTROL_WKUP_ID_CODE 0x4AE0C204
  29. #ifdef CONFIG_DRA7XX
  30. #define CONTROL_ID_CODE CONTROL_WKUP_ID_CODE
  31. #else
  32. #define CONTROL_ID_CODE CONTROL_CORE_ID_CODE
  33. #endif
  34. /* To be verified */
  35. #define OMAP5430_CONTROL_ID_CODE_ES1_0 0x0B94202F
  36. #define OMAP5430_CONTROL_ID_CODE_ES2_0 0x1B94202F
  37. #define OMAP5432_CONTROL_ID_CODE_ES1_0 0x0B99802F
  38. #define OMAP5432_CONTROL_ID_CODE_ES2_0 0x1B99802F
  39. #define DRA752_CONTROL_ID_CODE_ES1_0 0x0B99002F
  40. /* UART */
  41. #define UART1_BASE (OMAP54XX_L4_PER_BASE + 0x6a000)
  42. #define UART2_BASE (OMAP54XX_L4_PER_BASE + 0x6c000)
  43. #define UART3_BASE (OMAP54XX_L4_PER_BASE + 0x20000)
  44. /* General Purpose Timers */
  45. #define GPT1_BASE (OMAP54XX_L4_WKUP_BASE + 0x18000)
  46. #define GPT2_BASE (OMAP54XX_L4_PER_BASE + 0x32000)
  47. #define GPT3_BASE (OMAP54XX_L4_PER_BASE + 0x34000)
  48. /* Watchdog Timer2 - MPU watchdog */
  49. #define WDT2_BASE (OMAP54XX_L4_WKUP_BASE + 0x14000)
  50. /* GPMC */
  51. #define OMAP54XX_GPMC_BASE 0x50000000
  52. /* QSPI */
  53. #define QSPI_BASE 0x4B300000
  54. /* SATA */
  55. #define DWC_AHSATA_BASE 0x4A140000
  56. /*
  57. * Hardware Register Details
  58. */
  59. /* Watchdog Timer */
  60. #define WD_UNLOCK1 0xAAAA
  61. #define WD_UNLOCK2 0x5555
  62. /* GP Timer */
  63. #define TCLR_ST (0x1 << 0)
  64. #define TCLR_AR (0x1 << 1)
  65. #define TCLR_PRE (0x1 << 5)
  66. /* Control Module */
  67. #define LDOSRAM_ACTMODE_VSET_IN_MASK (0x1F << 5)
  68. #define LDOSRAM_VOLT_CTRL_OVERRIDE 0x0401040f
  69. #define CONTROL_EFUSE_1_OVERRIDE 0x1C4D0110
  70. #define CONTROL_EFUSE_2_OVERRIDE 0x00084000
  71. /* LPDDR2 IO regs */
  72. #define CONTROL_LPDDR2IO_SLEW_125PS_DRV8_PULL_DOWN 0x1C1C1C1C
  73. #define CONTROL_LPDDR2IO_SLEW_325PS_DRV8_GATE_KEEPER 0x9E9E9E9E
  74. #define CONTROL_LPDDR2IO_SLEW_315PS_DRV12_PULL_DOWN 0x7C7C7C7C
  75. #define LPDDR2IO_GR10_WD_MASK (3 << 17)
  76. #define CONTROL_LPDDR2IO_3_VAL 0xA0888C00
  77. /* CONTROL_EFUSE_2 */
  78. #define CONTROL_EFUSE_2_NMOS_PMOS_PTV_CODE_1 0x00ffc000
  79. #define SDCARD_BIAS_PWRDNZ (1 << 27)
  80. #define SDCARD_PWRDNZ (1 << 26)
  81. #define SDCARD_BIAS_HIZ_MODE (1 << 25)
  82. #define SDCARD_PBIASLITE_VMODE (1 << 21)
  83. #ifndef __ASSEMBLY__
  84. struct s32ktimer {
  85. unsigned char res[0x10];
  86. unsigned int s32k_cr; /* 0x10 */
  87. };
  88. #define DEVICE_TYPE_SHIFT 0x6
  89. #define DEVICE_TYPE_MASK (0x7 << DEVICE_TYPE_SHIFT)
  90. #define DEVICE_GP 0x3
  91. /* Output impedance control */
  92. #define ds_120_ohm 0x0
  93. #define ds_60_ohm 0x1
  94. #define ds_45_ohm 0x2
  95. #define ds_30_ohm 0x3
  96. #define ds_mask 0x3
  97. /* Slew rate control */
  98. #define sc_slow 0x0
  99. #define sc_medium 0x1
  100. #define sc_fast 0x2
  101. #define sc_na 0x3
  102. #define sc_mask 0x3
  103. /* Target capacitance control */
  104. #define lb_5_12_pf 0x0
  105. #define lb_12_25_pf 0x1
  106. #define lb_25_50_pf 0x2
  107. #define lb_50_80_pf 0x3
  108. #define lb_mask 0x3
  109. #define usb_i_mask 0x7
  110. #define DDR_IO_I_34OHM_SR_FASTEST_WD_DQ_NO_PULL_DQS_PULL_DOWN 0x80828082
  111. #define DDR_IO_I_34OHM_SR_FASTEST_WD_CK_CKE_NCS_CA_PULL_DOWN 0x82828200
  112. #define DDR_IO_0_DDR2_DQ_INT_EN_ALL_DDR3_CA_DIS_ALL 0x8421
  113. #define DDR_IO_1_DQ_OUT_EN_ALL_DQ_INT_EN_ALL 0x8421084
  114. #define DDR_IO_2_CA_OUT_EN_ALL_CA_INT_EN_ALL 0x8421000
  115. #define DDR_IO_I_40OHM_SR_SLOWEST_WD_DQ_NO_PULL_DQS_NO_PULL 0x7C7C7C6C
  116. #define DDR_IO_I_40OHM_SR_FAST_WD_DQ_NO_PULL_DQS_NO_PULL 0x64646464
  117. #define DDR_IO_0_VREF_CELLS_DDR3_VALUE 0xBAE8C631
  118. #define DDR_IO_1_VREF_CELLS_DDR3_VALUE 0xBC6318DC
  119. #define DDR_IO_2_VREF_CELLS_DDR3_VALUE 0x0
  120. #define DDR_IO_I_40OHM_SR_SLOWEST_WD_DQ_NO_PULL_DQS_NO_PULL_ES2 0x7C7C7C7C
  121. #define DDR_IO_I_40OHM_SR_FAST_WD_DQ_NO_PULL_DQS_NO_PULL_ES2 0x64646464
  122. #define DDR_IO_0_VREF_CELLS_DDR3_VALUE_ES2 0xBAE8C631
  123. #define DDR_IO_1_VREF_CELLS_DDR3_VALUE_ES2 0xBC6318DC
  124. #define DDR_IO_2_VREF_CELLS_DDR3_VALUE_ES2 0x84210000
  125. #define EFUSE_1 0x45145100
  126. #define EFUSE_2 0x45145100
  127. #define EFUSE_3 0x45145100
  128. #define EFUSE_4 0x45145100
  129. #endif /* __ASSEMBLY__ */
  130. /*
  131. * In all cases, the TRM defines the RAM Memory Map for the processor
  132. * and indicates the area for the downloaded image. We use all of that
  133. * space for download and once up and running may use other parts of the
  134. * map for our needs. We set a scratch space that is at the end of the
  135. * OMAP5 download area, but within the DRA7xx download area (as it is
  136. * much larger) and do not, at this time, make use of the additional
  137. * space.
  138. */
  139. #ifdef CONFIG_DRA7XX
  140. #define NON_SECURE_SRAM_START 0x40300000
  141. #define NON_SECURE_SRAM_END 0x40380000 /* Not inclusive */
  142. #else
  143. #define NON_SECURE_SRAM_START 0x40300000
  144. #define NON_SECURE_SRAM_END 0x40320000 /* Not inclusive */
  145. #endif
  146. #define SRAM_SCRATCH_SPACE_ADDR 0x4031E000
  147. /* base address for indirect vectors (internal boot mode) */
  148. #define SRAM_ROM_VECT_BASE 0x4031F000
  149. /* CONTROL_SRCOMP_XXX_SIDE */
  150. #define OVERRIDE_XS_SHIFT 30
  151. #define OVERRIDE_XS_MASK (1 << 30)
  152. #define SRCODE_READ_XS_SHIFT 12
  153. #define SRCODE_READ_XS_MASK (0xff << 12)
  154. #define PWRDWN_XS_SHIFT 11
  155. #define PWRDWN_XS_MASK (1 << 11)
  156. #define DIVIDE_FACTOR_XS_SHIFT 4
  157. #define DIVIDE_FACTOR_XS_MASK (0x7f << 4)
  158. #define MULTIPLY_FACTOR_XS_SHIFT 1
  159. #define MULTIPLY_FACTOR_XS_MASK (0x7 << 1)
  160. #define SRCODE_OVERRIDE_SEL_XS_SHIFT 0
  161. #define SRCODE_OVERRIDE_SEL_XS_MASK (1 << 0)
  162. /* ABB settings */
  163. #define OMAP_ABB_SETTLING_TIME 50
  164. #define OMAP_ABB_CLOCK_CYCLES 16
  165. /* ABB tranxdone mask */
  166. #define OMAP_ABB_MPU_TXDONE_MASK (0x1 << 7)
  167. /* ABB efuse masks */
  168. #define OMAP5_ABB_FUSE_VSET_MASK (0x1F << 24)
  169. #define OMAP5_ABB_FUSE_ENABLE_MASK (0x1 << 29)
  170. #define OMAP5_ABB_LDOVBBMPU_MUX_CTRL_MASK (0x1 << 10)
  171. #define OMAP5_ABB_LDOVBBMPU_VSET_OUT_MASK (0x1f << 0)
  172. /* IO Delay module defines */
  173. #define CFG_IO_DELAY_BASE 0x4844A000
  174. #define CFG_IO_DELAY_LOCK (CFG_IO_DELAY_BASE + 0x02C)
  175. /* CPSW IO Delay registers*/
  176. #define CFG_RGMII0_TXCTL (CFG_IO_DELAY_BASE + 0x74C)
  177. #define CFG_RGMII0_TXD0 (CFG_IO_DELAY_BASE + 0x758)
  178. #define CFG_RGMII0_TXD1 (CFG_IO_DELAY_BASE + 0x764)
  179. #define CFG_RGMII0_TXD2 (CFG_IO_DELAY_BASE + 0x770)
  180. #define CFG_RGMII0_TXD3 (CFG_IO_DELAY_BASE + 0x77C)
  181. #define CFG_VIN2A_D13 (CFG_IO_DELAY_BASE + 0xA7C)
  182. #define CFG_VIN2A_D17 (CFG_IO_DELAY_BASE + 0xAAC)
  183. #define CFG_VIN2A_D16 (CFG_IO_DELAY_BASE + 0xAA0)
  184. #define CFG_VIN2A_D15 (CFG_IO_DELAY_BASE + 0xA94)
  185. #define CFG_VIN2A_D14 (CFG_IO_DELAY_BASE + 0xA88)
  186. #define CFG_IO_DELAY_UNLOCK_KEY 0x0000AAAA
  187. #define CFG_IO_DELAY_LOCK_KEY 0x0000AAAB
  188. #define CFG_IO_DELAY_ACCESS_PATTERN 0x00029000
  189. #define CFG_IO_DELAY_LOCK_MASK 0x400
  190. #ifndef __ASSEMBLY__
  191. struct srcomp_params {
  192. s8 divide_factor;
  193. s8 multiply_factor;
  194. };
  195. struct ctrl_ioregs {
  196. u32 ctrl_ddrch;
  197. u32 ctrl_lpddr2ch;
  198. u32 ctrl_ddr3ch;
  199. u32 ctrl_ddrio_0;
  200. u32 ctrl_ddrio_1;
  201. u32 ctrl_ddrio_2;
  202. u32 ctrl_emif_sdram_config_ext;
  203. u32 ctrl_emif_sdram_config_ext_final;
  204. u32 ctrl_ddr_ctrl_ext_0;
  205. };
  206. struct io_delay {
  207. u32 addr;
  208. u32 dly;
  209. };
  210. #endif /* __ASSEMBLY__ */
  211. #endif