omap3.h 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /*
  2. * (C) Copyright 2006-2008
  3. * Texas Instruments, <www.ti.com>
  4. * Richard Woodruff <r-woodruff2@ti.com>
  5. * Syed Mohammed Khasim <x0khasim@ti.com>
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #ifndef _OMAP3_H_
  26. #define _OMAP3_H_
  27. /* Stuff on L3 Interconnect */
  28. #define SMX_APE_BASE 0x68000000
  29. /* GPMC */
  30. #define OMAP34XX_GPMC_BASE 0x6E000000
  31. /* SMS */
  32. #define OMAP34XX_SMS_BASE 0x6C000000
  33. /* SDRC */
  34. #define OMAP34XX_SDRC_BASE 0x6D000000
  35. /*
  36. * L4 Peripherals - L4 Wakeup and L4 Core now
  37. */
  38. #define OMAP34XX_CORE_L4_IO_BASE 0x48000000
  39. #define OMAP34XX_WAKEUP_L4_IO_BASE 0x48300000
  40. #define OMAP34XX_L4_PER 0x49000000
  41. #define OMAP34XX_L4_IO_BASE OMAP34XX_CORE_L4_IO_BASE
  42. /* CONTROL */
  43. #define OMAP34XX_CTRL_BASE (OMAP34XX_L4_IO_BASE + 0x2000)
  44. /* UART */
  45. #define OMAP34XX_UART1 (OMAP34XX_L4_IO_BASE + 0x6a000)
  46. #define OMAP34XX_UART2 (OMAP34XX_L4_IO_BASE + 0x6c000)
  47. #define OMAP34XX_UART3 (OMAP34XX_L4_PER + 0x20000)
  48. /* General Purpose Timers */
  49. #define OMAP34XX_GPT1 0x48318000
  50. #define OMAP34XX_GPT2 0x49032000
  51. #define OMAP34XX_GPT3 0x49034000
  52. #define OMAP34XX_GPT4 0x49036000
  53. #define OMAP34XX_GPT5 0x49038000
  54. #define OMAP34XX_GPT6 0x4903A000
  55. #define OMAP34XX_GPT7 0x4903C000
  56. #define OMAP34XX_GPT8 0x4903E000
  57. #define OMAP34XX_GPT9 0x49040000
  58. #define OMAP34XX_GPT10 0x48086000
  59. #define OMAP34XX_GPT11 0x48088000
  60. #define OMAP34XX_GPT12 0x48304000
  61. /* WatchDog Timers (1 secure, 3 GP) */
  62. #define WD1_BASE 0x4830C000
  63. #define WD2_BASE 0x48314000
  64. #define WD3_BASE 0x49030000
  65. /* 32KTIMER */
  66. #define SYNC_32KTIMER_BASE 0x48320000
  67. #ifndef __ASSEMBLY__
  68. typedef struct s32ktimer {
  69. unsigned char res[0x10];
  70. unsigned int s32k_cr; /* 0x10 */
  71. } s32ktimer_t;
  72. #endif /* __ASSEMBLY__ */
  73. /* OMAP3 GPIO registers */
  74. #define OMAP34XX_GPIO1_BASE 0x48310000
  75. #define OMAP34XX_GPIO2_BASE 0x49050000
  76. #define OMAP34XX_GPIO3_BASE 0x49052000
  77. #define OMAP34XX_GPIO4_BASE 0x49054000
  78. #define OMAP34XX_GPIO5_BASE 0x49056000
  79. #define OMAP34XX_GPIO6_BASE 0x49058000
  80. #ifndef __ASSEMBLY__
  81. typedef struct gpio {
  82. unsigned char res1[0x34];
  83. unsigned int oe; /* 0x34 */
  84. unsigned int datain; /* 0x38 */
  85. unsigned char res2[0x54];
  86. unsigned int cleardataout; /* 0x90 */
  87. unsigned int setdataout; /* 0x94 */
  88. } gpio_t;
  89. #endif /* __ASSEMBLY__ */
  90. #define GPIO0 (0x1 << 0)
  91. #define GPIO1 (0x1 << 1)
  92. #define GPIO2 (0x1 << 2)
  93. #define GPIO3 (0x1 << 3)
  94. #define GPIO4 (0x1 << 4)
  95. #define GPIO5 (0x1 << 5)
  96. #define GPIO6 (0x1 << 6)
  97. #define GPIO7 (0x1 << 7)
  98. #define GPIO8 (0x1 << 8)
  99. #define GPIO9 (0x1 << 9)
  100. #define GPIO10 (0x1 << 10)
  101. #define GPIO11 (0x1 << 11)
  102. #define GPIO12 (0x1 << 12)
  103. #define GPIO13 (0x1 << 13)
  104. #define GPIO14 (0x1 << 14)
  105. #define GPIO15 (0x1 << 15)
  106. #define GPIO16 (0x1 << 16)
  107. #define GPIO17 (0x1 << 17)
  108. #define GPIO18 (0x1 << 18)
  109. #define GPIO19 (0x1 << 19)
  110. #define GPIO20 (0x1 << 20)
  111. #define GPIO21 (0x1 << 21)
  112. #define GPIO22 (0x1 << 22)
  113. #define GPIO23 (0x1 << 23)
  114. #define GPIO24 (0x1 << 24)
  115. #define GPIO25 (0x1 << 25)
  116. #define GPIO26 (0x1 << 26)
  117. #define GPIO27 (0x1 << 27)
  118. #define GPIO28 (0x1 << 28)
  119. #define GPIO29 (0x1 << 29)
  120. #define GPIO30 (0x1 << 30)
  121. #define GPIO31 (0x1 << 31)
  122. /* base address for indirect vectors (internal boot mode) */
  123. #define SRAM_OFFSET0 0x40000000
  124. #define SRAM_OFFSET1 0x00200000
  125. #define SRAM_OFFSET2 0x0000F800
  126. #define SRAM_VECT_CODE (SRAM_OFFSET0 | SRAM_OFFSET1 | \
  127. SRAM_OFFSET2)
  128. #define LOW_LEVEL_SRAM_STACK 0x4020FFFC
  129. #define DEBUG_LED1 149 /* gpio */
  130. #define DEBUG_LED2 150 /* gpio */
  131. #define XDR_POP 5 /* package on package part */
  132. #define SDR_DISCRETE 4 /* 128M memory SDR module */
  133. #define DDR_STACKED 3 /* stacked part on 2422 */
  134. #define DDR_COMBO 2 /* combo part on cpu daughter card */
  135. #define DDR_DISCRETE 1 /* 2x16 parts on daughter card */
  136. #define DDR_100 100 /* type found on most mem d-boards */
  137. #define DDR_111 111 /* some combo parts */
  138. #define DDR_133 133 /* most combo, some mem d-boards */
  139. #define DDR_165 165 /* future parts */
  140. #define CPU_3430 0x3430
  141. /*
  142. * 343x real hardware:
  143. * ES1 = rev 0
  144. *
  145. * 343x code defines:
  146. * ES1 = 0+1 = 1
  147. * ES1 = 1+1 = 1
  148. */
  149. #define CPU_3430_ES1 1
  150. #define CPU_3430_ES2 2
  151. #define WIDTH_8BIT 0x0000
  152. #define WIDTH_16BIT 0x1000 /* bit pos for 16 bit in gpmc */
  153. /* SDP definitions according to FPGA Rev. Is this OK?? */
  154. #define SDP_3430_V1 0x1
  155. #define SDP_3430_V2 0x2
  156. /* EVM definitions */
  157. #define OMAP3EVM_V1 0x1
  158. #define OMAP3EVM_V2 0x2
  159. /* I2C power management companion definitions */
  160. #define PWRMGT_ADDR_ID1 0x48
  161. #define PWRMGT_ADDR_ID2 0x49
  162. #define PWRMGT_ADDR_ID3 0x4A
  163. #define PWRMGT_ADDR_ID4 0x4B
  164. /* I2C ID3 (slave3) register */
  165. #define LEDEN 0xEE
  166. #define LEDAON (0x1 << 0)
  167. #define LEDBON (0x1 << 1)
  168. #define LEDAPWM (0x1 << 4)
  169. #define LEDBPWM (0x1 << 5)
  170. /* I2C ID4 (slave4) register */
  171. #define VAUX2_DEV_GRP 0x76
  172. #define VAUX2_DEDICATED 0x79
  173. #define VAUX3_DEV_GRP 0x7A
  174. #define VAUX3_DEDICATED 0x7D
  175. #define VMMC1_DEV_GRP 0x82
  176. #define VMMC1_DEDICATED 0x85
  177. #define VPLL2_DEV_GRP 0x8E
  178. #define VPLL2_DEDICATED 0x91
  179. #define VDAC_DEV_GRP 0x96
  180. #define VDAC_DEDICATED 0x99
  181. #define DEV_GRP_P1 0x20
  182. #define DEV_GRP_ALL 0xE0
  183. #define VAUX2_VSEL_28 0x09
  184. #define VAUX3_VSEL_28 0x03
  185. #define VPLL2_VSEL_18 0x05
  186. #define VDAC_VSEL_18 0x03
  187. #define VMMC1_VSEL_30 0x02
  188. #endif