omap.h 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2006-2008
  4. * Texas Instruments, <www.ti.com>
  5. * Richard Woodruff <r-woodruff2@ti.com>
  6. * Syed Mohammed Khasim <x0khasim@ti.com>
  7. */
  8. #ifndef _OMAP3_H_
  9. #define _OMAP3_H_
  10. #include <linux/sizes.h>
  11. /* Stuff on L3 Interconnect */
  12. #define SMX_APE_BASE 0x68000000
  13. /* GPMC */
  14. #define OMAP34XX_GPMC_BASE 0x6E000000
  15. /* SMS */
  16. #define OMAP34XX_SMS_BASE 0x6C000000
  17. /* SDRC */
  18. #define OMAP34XX_SDRC_BASE 0x6D000000
  19. /*
  20. * L4 Peripherals - L4 Wakeup and L4 Core now
  21. */
  22. #define OMAP34XX_CORE_L4_IO_BASE 0x48000000
  23. #define OMAP34XX_WAKEUP_L4_IO_BASE 0x48300000
  24. #define OMAP34XX_ID_L4_IO_BASE 0x4830A200
  25. #define OMAP34XX_L4_PER 0x49000000
  26. #define OMAP34XX_L4_IO_BASE OMAP34XX_CORE_L4_IO_BASE
  27. /* DMA4/SDMA */
  28. #define OMAP34XX_DMA4_BASE 0x48056000
  29. /* CONTROL */
  30. #define OMAP34XX_CTRL_BASE (OMAP34XX_L4_IO_BASE + 0x2000)
  31. #ifndef __ASSEMBLY__
  32. /* Signal Integrity Parameter Control Registers */
  33. struct control_prog_io {
  34. unsigned char res[0x408];
  35. unsigned int io2; /* 0x408 */
  36. unsigned char res2[0x38];
  37. unsigned int io0; /* 0x444 */
  38. unsigned int io1; /* 0x448 */
  39. };
  40. #endif /* __ASSEMBLY__ */
  41. /* Bit definition for CONTROL_PROG_IO1 */
  42. #define PRG_I2C2_PULLUPRESX 0x00000001
  43. /* Scratchpad memory */
  44. #define OMAP34XX_SCRATCHPAD (OMAP34XX_CTRL_BASE + 0x910)
  45. /* UART */
  46. #define OMAP34XX_UART1 (OMAP34XX_L4_IO_BASE + 0x6a000)
  47. #define OMAP34XX_UART2 (OMAP34XX_L4_IO_BASE + 0x6c000)
  48. #define OMAP34XX_UART3 (OMAP34XX_L4_PER + 0x20000)
  49. #define OMAP34XX_UART4 (OMAP34XX_L4_PER + 0x42000)
  50. /* General Purpose Timers */
  51. #define OMAP34XX_GPT1 0x48318000
  52. #define OMAP34XX_GPT2 0x49032000
  53. #define OMAP34XX_GPT3 0x49034000
  54. #define OMAP34XX_GPT4 0x49036000
  55. #define OMAP34XX_GPT5 0x49038000
  56. #define OMAP34XX_GPT6 0x4903A000
  57. #define OMAP34XX_GPT7 0x4903C000
  58. #define OMAP34XX_GPT8 0x4903E000
  59. #define OMAP34XX_GPT9 0x49040000
  60. #define OMAP34XX_GPT10 0x48086000
  61. #define OMAP34XX_GPT11 0x48088000
  62. #define OMAP34XX_GPT12 0x48304000
  63. /* WatchDog Timers (1 secure, 3 GP) */
  64. #define WD1_BASE 0x4830C000
  65. #define WD2_BASE 0x48314000
  66. #define WD3_BASE 0x49030000
  67. /* 32KTIMER */
  68. #define SYNC_32KTIMER_BASE 0x48320000
  69. #ifndef __ASSEMBLY__
  70. struct s32ktimer {
  71. unsigned char res[0x10];
  72. unsigned int s32k_cr; /* 0x10 */
  73. };
  74. #define DEVICE_TYPE_SHIFT 0x8
  75. #define DEVICE_TYPE_MASK (0x7 << DEVICE_TYPE_SHIFT)
  76. #endif /* __ASSEMBLY__ */
  77. #ifndef __ASSEMBLY__
  78. struct gpio {
  79. unsigned char res1[0x34];
  80. unsigned int oe; /* 0x34 */
  81. unsigned int datain; /* 0x38 */
  82. unsigned char res2[0x54];
  83. unsigned int cleardataout; /* 0x90 */
  84. unsigned int setdataout; /* 0x94 */
  85. };
  86. #endif /* __ASSEMBLY__ */
  87. #define GPIO0 (0x1 << 0)
  88. #define GPIO1 (0x1 << 1)
  89. #define GPIO2 (0x1 << 2)
  90. #define GPIO3 (0x1 << 3)
  91. #define GPIO4 (0x1 << 4)
  92. #define GPIO5 (0x1 << 5)
  93. #define GPIO6 (0x1 << 6)
  94. #define GPIO7 (0x1 << 7)
  95. #define GPIO8 (0x1 << 8)
  96. #define GPIO9 (0x1 << 9)
  97. #define GPIO10 (0x1 << 10)
  98. #define GPIO11 (0x1 << 11)
  99. #define GPIO12 (0x1 << 12)
  100. #define GPIO13 (0x1 << 13)
  101. #define GPIO14 (0x1 << 14)
  102. #define GPIO15 (0x1 << 15)
  103. #define GPIO16 (0x1 << 16)
  104. #define GPIO17 (0x1 << 17)
  105. #define GPIO18 (0x1 << 18)
  106. #define GPIO19 (0x1 << 19)
  107. #define GPIO20 (0x1 << 20)
  108. #define GPIO21 (0x1 << 21)
  109. #define GPIO22 (0x1 << 22)
  110. #define GPIO23 (0x1 << 23)
  111. #define GPIO24 (0x1 << 24)
  112. #define GPIO25 (0x1 << 25)
  113. #define GPIO26 (0x1 << 26)
  114. #define GPIO27 (0x1 << 27)
  115. #define GPIO28 (0x1 << 28)
  116. #define GPIO29 (0x1 << 29)
  117. #define GPIO30 (0x1 << 30)
  118. #define GPIO31 (0x1 << 31)
  119. /* base address for indirect vectors (internal boot mode) */
  120. #define SRAM_OFFSET0 0x40000000
  121. #define SRAM_OFFSET1 0x00200000
  122. #define SRAM_OFFSET2 0x0000F800
  123. #define SRAM_VECT_CODE (SRAM_OFFSET0 | SRAM_OFFSET1 | \
  124. SRAM_OFFSET2)
  125. #define SRAM_CLK_CODE (SRAM_VECT_CODE + 64)
  126. #define NON_SECURE_SRAM_START 0x40208000 /* Works for GP & EMU */
  127. #define NON_SECURE_SRAM_END 0x40210000
  128. #define NON_SECURE_SRAM_IMG_END 0x4020F000
  129. #define SRAM_SCRATCH_SPACE_ADDR (NON_SECURE_SRAM_IMG_END - SZ_1K)
  130. #define LOW_LEVEL_SRAM_STACK 0x4020FFFC
  131. /* scratch area - accessible on both EMU and GP */
  132. #define OMAP3_PUBLIC_SRAM_SCRATCH_AREA NON_SECURE_SRAM_START
  133. #define DEBUG_LED1 149 /* gpio */
  134. #define DEBUG_LED2 150 /* gpio */
  135. #define XDR_POP 5 /* package on package part */
  136. #define SDR_DISCRETE 4 /* 128M memory SDR module */
  137. #define DDR_STACKED 3 /* stacked part on 2422 */
  138. #define DDR_COMBO 2 /* combo part on cpu daughter card */
  139. #define DDR_DISCRETE 1 /* 2x16 parts on daughter card */
  140. #define DDR_100 100 /* type found on most mem d-boards */
  141. #define DDR_111 111 /* some combo parts */
  142. #define DDR_133 133 /* most combo, some mem d-boards */
  143. #define DDR_165 165 /* future parts */
  144. #define CPU_3430 0x3430
  145. /*
  146. * 343x real hardware:
  147. * ES1 = rev 0
  148. *
  149. * ES2 onwards, the value maps to contents of IDCODE register [31:28].
  150. *
  151. * Note : CPU_3XX_ES20 is used in cache.S. Please review before changing.
  152. */
  153. #define CPU_3XX_ES10 0
  154. #define CPU_3XX_ES20 1
  155. #define CPU_3XX_ES21 2
  156. #define CPU_3XX_ES30 3
  157. #define CPU_3XX_ES31 4
  158. #define CPU_3XX_ES312 7
  159. #define CPU_3XX_MAX_REV 8
  160. /*
  161. * 37xx real hardware:
  162. * ES1.0 onwards, the value maps to contents of IDCODE register [31:28].
  163. */
  164. #define CPU_37XX_ES10 0
  165. #define CPU_37XX_ES11 1
  166. #define CPU_37XX_ES12 2
  167. #define CPU_37XX_MAX_REV 3
  168. #define CPU_3XX_ID_SHIFT 28
  169. #define WIDTH_8BIT 0x0000
  170. #define WIDTH_16BIT 0x1000 /* bit pos for 16 bit in gpmc */
  171. /*
  172. * Hawkeye values
  173. */
  174. #define HAWKEYE_OMAP34XX 0xb7ae
  175. #define HAWKEYE_AM35XX 0xb868
  176. #define HAWKEYE_OMAP36XX 0xb891
  177. #define HAWKEYE_SHIFT 12
  178. /*
  179. * Define CPU families
  180. */
  181. #define CPU_OMAP34XX 0x3400 /* OMAP34xx/OMAP35 devices */
  182. #define CPU_AM35XX 0x3500 /* AM35xx devices */
  183. #define CPU_OMAP36XX 0x3600 /* OMAP36xx devices */
  184. /*
  185. * Control status register values corresponding to cpu variants
  186. */
  187. #define OMAP3503 0x5c00
  188. #define OMAP3515 0x1c00
  189. #define OMAP3525 0x4c00
  190. #define OMAP3530 0x0c00
  191. #define AM3505 0x5c00
  192. #define AM3517 0x1c00
  193. #define OMAP3730 0x0c00
  194. #define OMAP3725 0x4c00
  195. #define AM3715 0x1c00
  196. #define AM3703 0x5c00
  197. #define OMAP3730_1GHZ 0x0e00
  198. #define OMAP3725_1GHZ 0x4e00
  199. #define AM3715_1GHZ 0x1e00
  200. #define AM3703_1GHZ 0x5e00
  201. /*
  202. * ROM code API related flags
  203. */
  204. #define OMAP3_GP_ROMCODE_API_L2_INVAL 1
  205. #define OMAP3_GP_ROMCODE_API_WRITE_L2ACR 2
  206. #define OMAP3_GP_ROMCODE_API_WRITE_ACR 3
  207. /*
  208. * EMU device PPA HAL related flags
  209. */
  210. #define OMAP3_EMU_HAL_API_L2_INVAL 40
  211. #define OMAP3_EMU_HAL_API_WRITE_ACR 42
  212. #define OMAP3_EMU_HAL_START_HAL_CRITICAL 4
  213. /* ABB settings */
  214. #define OMAP_ABB_SETTLING_TIME 30
  215. #define OMAP_ABB_CLOCK_CYCLES 8
  216. /* ABB tranxdone mask */
  217. #define OMAP_ABB_MPU_TXDONE_MASK (0x1 << 26)
  218. #define OMAP_REBOOT_REASON_OFFSET 0x04
  219. /* Boot parameters */
  220. #ifndef __ASSEMBLY__
  221. struct omap_boot_parameters {
  222. unsigned int boot_message;
  223. unsigned char boot_device;
  224. unsigned char reserved;
  225. unsigned char reset_reason;
  226. unsigned char ch_flags;
  227. unsigned int boot_device_descriptor;
  228. };
  229. int omap_reboot_mode(char *mode, unsigned int length);
  230. int omap_reboot_mode_clear(void);
  231. int omap_reboot_mode_store(char *mode);
  232. #endif
  233. #endif