cpu.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455
  1. /*
  2. * arch/arm/plat-omap/include/mach/cpu.h
  3. *
  4. * OMAP cpu type detection
  5. *
  6. * Copyright (C) 2004, 2008 Nokia Corporation
  7. *
  8. * Copyright (C) 2009-11 Texas Instruments.
  9. *
  10. * Written by Tony Lindgren <tony.lindgren@nokia.com>
  11. *
  12. * Added OMAP4 specific defines - Santosh Shilimkar<santosh.shilimkar@ti.com>
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  27. *
  28. */
  29. #ifndef __ASM_ARCH_OMAP_CPU_H
  30. #define __ASM_ARCH_OMAP_CPU_H
  31. #include <linux/bitops.h>
  32. #include <plat/multi.h>
  33. /*
  34. * Omap device type i.e. EMU/HS/TST/GP/BAD
  35. */
  36. #define OMAP2_DEVICE_TYPE_TEST 0
  37. #define OMAP2_DEVICE_TYPE_EMU 1
  38. #define OMAP2_DEVICE_TYPE_SEC 2
  39. #define OMAP2_DEVICE_TYPE_GP 3
  40. #define OMAP2_DEVICE_TYPE_BAD 4
  41. int omap_type(void);
  42. /*
  43. * omap_rev bits:
  44. * CPU id bits (0730, 1510, 1710, 2422...) [31:16]
  45. * CPU revision (See _REV_ defined in cpu.h) [15:08]
  46. * CPU class bits (15xx, 16xx, 24xx, 34xx...) [07:00]
  47. */
  48. unsigned int omap_rev(void);
  49. /*
  50. * Get the CPU revision for OMAP devices
  51. */
  52. #define GET_OMAP_REVISION() ((omap_rev() >> 8) & 0xff)
  53. /*
  54. * Macros to group OMAP into cpu classes.
  55. * These can be used in most places.
  56. * cpu_is_omap7xx(): True for OMAP730, OMAP850
  57. * cpu_is_omap15xx(): True for OMAP1510, OMAP5910 and OMAP310
  58. * cpu_is_omap16xx(): True for OMAP1610, OMAP5912 and OMAP1710
  59. * cpu_is_omap24xx(): True for OMAP2420, OMAP2422, OMAP2423, OMAP2430
  60. * cpu_is_omap242x(): True for OMAP2420, OMAP2422, OMAP2423
  61. * cpu_is_omap243x(): True for OMAP2430
  62. * cpu_is_omap343x(): True for OMAP3430
  63. * cpu_is_omap443x(): True for OMAP4430
  64. * cpu_is_omap446x(): True for OMAP4460
  65. */
  66. #define GET_OMAP_CLASS (omap_rev() & 0xff)
  67. #define IS_OMAP_CLASS(class, id) \
  68. static inline int is_omap ##class (void) \
  69. { \
  70. return (GET_OMAP_CLASS == (id)) ? 1 : 0; \
  71. }
  72. #define GET_OMAP_SUBCLASS ((omap_rev() >> 20) & 0x0fff)
  73. #define IS_OMAP_SUBCLASS(subclass, id) \
  74. static inline int is_omap ##subclass (void) \
  75. { \
  76. return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \
  77. }
  78. #define IS_TI_SUBCLASS(subclass, id) \
  79. static inline int is_ti ##subclass (void) \
  80. { \
  81. return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \
  82. }
  83. IS_OMAP_CLASS(7xx, 0x07)
  84. IS_OMAP_CLASS(15xx, 0x15)
  85. IS_OMAP_CLASS(16xx, 0x16)
  86. IS_OMAP_CLASS(24xx, 0x24)
  87. IS_OMAP_CLASS(34xx, 0x34)
  88. IS_OMAP_CLASS(44xx, 0x44)
  89. IS_OMAP_SUBCLASS(242x, 0x242)
  90. IS_OMAP_SUBCLASS(243x, 0x243)
  91. IS_OMAP_SUBCLASS(343x, 0x343)
  92. IS_OMAP_SUBCLASS(363x, 0x363)
  93. IS_OMAP_SUBCLASS(443x, 0x443)
  94. IS_OMAP_SUBCLASS(446x, 0x446)
  95. IS_TI_SUBCLASS(816x, 0x816)
  96. #define cpu_is_omap7xx() 0
  97. #define cpu_is_omap15xx() 0
  98. #define cpu_is_omap16xx() 0
  99. #define cpu_is_omap24xx() 0
  100. #define cpu_is_omap242x() 0
  101. #define cpu_is_omap243x() 0
  102. #define cpu_is_omap34xx() 0
  103. #define cpu_is_omap343x() 0
  104. #define cpu_is_ti816x() 0
  105. #define cpu_is_omap44xx() 0
  106. #define cpu_is_omap443x() 0
  107. #define cpu_is_omap446x() 0
  108. #if defined(MULTI_OMAP1)
  109. # if defined(CONFIG_ARCH_OMAP730)
  110. # undef cpu_is_omap7xx
  111. # define cpu_is_omap7xx() is_omap7xx()
  112. # endif
  113. # if defined(CONFIG_ARCH_OMAP850)
  114. # undef cpu_is_omap7xx
  115. # define cpu_is_omap7xx() is_omap7xx()
  116. # endif
  117. # if defined(CONFIG_ARCH_OMAP15XX)
  118. # undef cpu_is_omap15xx
  119. # define cpu_is_omap15xx() is_omap15xx()
  120. # endif
  121. # if defined(CONFIG_ARCH_OMAP16XX)
  122. # undef cpu_is_omap16xx
  123. # define cpu_is_omap16xx() is_omap16xx()
  124. # endif
  125. #else
  126. # if defined(CONFIG_ARCH_OMAP730)
  127. # undef cpu_is_omap7xx
  128. # define cpu_is_omap7xx() 1
  129. # endif
  130. # if defined(CONFIG_ARCH_OMAP850)
  131. # undef cpu_is_omap7xx
  132. # define cpu_is_omap7xx() 1
  133. # endif
  134. # if defined(CONFIG_ARCH_OMAP15XX)
  135. # undef cpu_is_omap15xx
  136. # define cpu_is_omap15xx() 1
  137. # endif
  138. # if defined(CONFIG_ARCH_OMAP16XX)
  139. # undef cpu_is_omap16xx
  140. # define cpu_is_omap16xx() 1
  141. # endif
  142. #endif
  143. #if defined(MULTI_OMAP2)
  144. # if defined(CONFIG_ARCH_OMAP2)
  145. # undef cpu_is_omap24xx
  146. # define cpu_is_omap24xx() is_omap24xx()
  147. # endif
  148. # if defined (CONFIG_SOC_OMAP2420)
  149. # undef cpu_is_omap242x
  150. # define cpu_is_omap242x() is_omap242x()
  151. # endif
  152. # if defined (CONFIG_SOC_OMAP2430)
  153. # undef cpu_is_omap243x
  154. # define cpu_is_omap243x() is_omap243x()
  155. # endif
  156. # if defined(CONFIG_ARCH_OMAP3)
  157. # undef cpu_is_omap34xx
  158. # undef cpu_is_omap343x
  159. # define cpu_is_omap34xx() is_omap34xx()
  160. # define cpu_is_omap343x() is_omap343x()
  161. # endif
  162. #else
  163. # if defined(CONFIG_ARCH_OMAP2)
  164. # undef cpu_is_omap24xx
  165. # define cpu_is_omap24xx() 1
  166. # endif
  167. # if defined(CONFIG_SOC_OMAP2420)
  168. # undef cpu_is_omap242x
  169. # define cpu_is_omap242x() 1
  170. # endif
  171. # if defined(CONFIG_SOC_OMAP2430)
  172. # undef cpu_is_omap243x
  173. # define cpu_is_omap243x() 1
  174. # endif
  175. # if defined(CONFIG_ARCH_OMAP3)
  176. # undef cpu_is_omap34xx
  177. # define cpu_is_omap34xx() 1
  178. # endif
  179. # if defined(CONFIG_SOC_OMAP3430)
  180. # undef cpu_is_omap343x
  181. # define cpu_is_omap343x() 1
  182. # endif
  183. #endif
  184. /*
  185. * Macros to detect individual cpu types.
  186. * These are only rarely needed.
  187. * cpu_is_omap330(): True for OMAP330
  188. * cpu_is_omap730(): True for OMAP730
  189. * cpu_is_omap850(): True for OMAP850
  190. * cpu_is_omap1510(): True for OMAP1510
  191. * cpu_is_omap1610(): True for OMAP1610
  192. * cpu_is_omap1611(): True for OMAP1611
  193. * cpu_is_omap5912(): True for OMAP5912
  194. * cpu_is_omap1621(): True for OMAP1621
  195. * cpu_is_omap1710(): True for OMAP1710
  196. * cpu_is_omap2420(): True for OMAP2420
  197. * cpu_is_omap2422(): True for OMAP2422
  198. * cpu_is_omap2423(): True for OMAP2423
  199. * cpu_is_omap2430(): True for OMAP2430
  200. * cpu_is_omap3430(): True for OMAP3430
  201. * cpu_is_omap4430(): True for OMAP4430
  202. * cpu_is_omap3505(): True for OMAP3505
  203. * cpu_is_omap3517(): True for OMAP3517
  204. */
  205. #define GET_OMAP_TYPE ((omap_rev() >> 16) & 0xffff)
  206. #define IS_OMAP_TYPE(type, id) \
  207. static inline int is_omap ##type (void) \
  208. { \
  209. return (GET_OMAP_TYPE == (id)) ? 1 : 0; \
  210. }
  211. IS_OMAP_TYPE(310, 0x0310)
  212. IS_OMAP_TYPE(730, 0x0730)
  213. IS_OMAP_TYPE(850, 0x0850)
  214. IS_OMAP_TYPE(1510, 0x1510)
  215. IS_OMAP_TYPE(1610, 0x1610)
  216. IS_OMAP_TYPE(1611, 0x1611)
  217. IS_OMAP_TYPE(5912, 0x1611)
  218. IS_OMAP_TYPE(1621, 0x1621)
  219. IS_OMAP_TYPE(1710, 0x1710)
  220. IS_OMAP_TYPE(2420, 0x2420)
  221. IS_OMAP_TYPE(2422, 0x2422)
  222. IS_OMAP_TYPE(2423, 0x2423)
  223. IS_OMAP_TYPE(2430, 0x2430)
  224. IS_OMAP_TYPE(3430, 0x3430)
  225. IS_OMAP_TYPE(3505, 0x3517)
  226. IS_OMAP_TYPE(3517, 0x3517)
  227. #define cpu_is_omap310() 0
  228. #define cpu_is_omap730() 0
  229. #define cpu_is_omap850() 0
  230. #define cpu_is_omap1510() 0
  231. #define cpu_is_omap1610() 0
  232. #define cpu_is_omap5912() 0
  233. #define cpu_is_omap1611() 0
  234. #define cpu_is_omap1621() 0
  235. #define cpu_is_omap1710() 0
  236. #define cpu_is_omap2420() 0
  237. #define cpu_is_omap2422() 0
  238. #define cpu_is_omap2423() 0
  239. #define cpu_is_omap2430() 0
  240. #define cpu_is_omap3503() 0
  241. #define cpu_is_omap3515() 0
  242. #define cpu_is_omap3525() 0
  243. #define cpu_is_omap3530() 0
  244. #define cpu_is_omap3505() 0
  245. #define cpu_is_omap3517() 0
  246. #define cpu_is_omap3430() 0
  247. #define cpu_is_omap4430() 0
  248. #define cpu_is_omap3630() 0
  249. /*
  250. * Whether we have MULTI_OMAP1 or not, we still need to distinguish
  251. * between 730 vs 850, 330 vs. 1510 and 1611B/5912 vs. 1710.
  252. */
  253. #if defined(CONFIG_ARCH_OMAP730)
  254. # undef cpu_is_omap730
  255. # define cpu_is_omap730() is_omap730()
  256. #endif
  257. #if defined(CONFIG_ARCH_OMAP850)
  258. # undef cpu_is_omap850
  259. # define cpu_is_omap850() is_omap850()
  260. #endif
  261. #if defined(CONFIG_ARCH_OMAP15XX)
  262. # undef cpu_is_omap310
  263. # undef cpu_is_omap1510
  264. # define cpu_is_omap310() is_omap310()
  265. # define cpu_is_omap1510() is_omap1510()
  266. #endif
  267. #if defined(CONFIG_ARCH_OMAP16XX)
  268. # undef cpu_is_omap1610
  269. # undef cpu_is_omap1611
  270. # undef cpu_is_omap5912
  271. # undef cpu_is_omap1621
  272. # undef cpu_is_omap1710
  273. # define cpu_is_omap1610() is_omap1610()
  274. # define cpu_is_omap1611() is_omap1611()
  275. # define cpu_is_omap5912() is_omap5912()
  276. # define cpu_is_omap1621() is_omap1621()
  277. # define cpu_is_omap1710() is_omap1710()
  278. #endif
  279. #if defined(CONFIG_ARCH_OMAP2)
  280. # undef cpu_is_omap2420
  281. # undef cpu_is_omap2422
  282. # undef cpu_is_omap2423
  283. # undef cpu_is_omap2430
  284. # define cpu_is_omap2420() is_omap2420()
  285. # define cpu_is_omap2422() is_omap2422()
  286. # define cpu_is_omap2423() is_omap2423()
  287. # define cpu_is_omap2430() is_omap2430()
  288. #endif
  289. #if defined(CONFIG_ARCH_OMAP3)
  290. # undef cpu_is_omap3430
  291. # undef cpu_is_omap3503
  292. # undef cpu_is_omap3515
  293. # undef cpu_is_omap3525
  294. # undef cpu_is_omap3530
  295. # undef cpu_is_omap3505
  296. # undef cpu_is_omap3517
  297. # undef cpu_is_ti816x
  298. # define cpu_is_omap3430() is_omap3430()
  299. # define cpu_is_omap3503() (cpu_is_omap3430() && \
  300. (!omap3_has_iva()) && \
  301. (!omap3_has_sgx()))
  302. # define cpu_is_omap3515() (cpu_is_omap3430() && \
  303. (!omap3_has_iva()) && \
  304. (omap3_has_sgx()))
  305. # define cpu_is_omap3525() (cpu_is_omap3430() && \
  306. (!omap3_has_sgx()) && \
  307. (omap3_has_iva()))
  308. # define cpu_is_omap3530() (cpu_is_omap3430())
  309. # define cpu_is_omap3517() is_omap3517()
  310. # define cpu_is_omap3505() (cpu_is_omap3517() && \
  311. !omap3_has_sgx())
  312. # undef cpu_is_omap3630
  313. # define cpu_is_omap3630() is_omap363x()
  314. # define cpu_is_ti816x() is_ti816x()
  315. #endif
  316. # if defined(CONFIG_ARCH_OMAP4)
  317. # undef cpu_is_omap44xx
  318. # undef cpu_is_omap443x
  319. # undef cpu_is_omap446x
  320. # define cpu_is_omap44xx() is_omap44xx()
  321. # define cpu_is_omap443x() is_omap443x()
  322. # define cpu_is_omap446x() is_omap446x()
  323. # endif
  324. /* Macros to detect if we have OMAP1 or OMAP2 */
  325. #define cpu_class_is_omap1() (cpu_is_omap7xx() || cpu_is_omap15xx() || \
  326. cpu_is_omap16xx())
  327. #define cpu_class_is_omap2() (cpu_is_omap24xx() || cpu_is_omap34xx() || \
  328. cpu_is_omap44xx())
  329. /* Various silicon revisions for omap2 */
  330. #define OMAP242X_CLASS 0x24200024
  331. #define OMAP2420_REV_ES1_0 OMAP242X_CLASS
  332. #define OMAP2420_REV_ES2_0 (OMAP242X_CLASS | (0x1 << 8))
  333. #define OMAP243X_CLASS 0x24300024
  334. #define OMAP2430_REV_ES1_0 OMAP243X_CLASS
  335. #define OMAP343X_CLASS 0x34300034
  336. #define OMAP3430_REV_ES1_0 OMAP343X_CLASS
  337. #define OMAP3430_REV_ES2_0 (OMAP343X_CLASS | (0x1 << 8))
  338. #define OMAP3430_REV_ES2_1 (OMAP343X_CLASS | (0x2 << 8))
  339. #define OMAP3430_REV_ES3_0 (OMAP343X_CLASS | (0x3 << 8))
  340. #define OMAP3430_REV_ES3_1 (OMAP343X_CLASS | (0x4 << 8))
  341. #define OMAP3430_REV_ES3_1_2 (OMAP343X_CLASS | (0x5 << 8))
  342. #define OMAP363X_CLASS 0x36300034
  343. #define OMAP3630_REV_ES1_0 OMAP363X_CLASS
  344. #define OMAP3630_REV_ES1_1 (OMAP363X_CLASS | (0x1 << 8))
  345. #define OMAP3630_REV_ES1_2 (OMAP363X_CLASS | (0x2 << 8))
  346. #define OMAP3517_CLASS 0x35170034
  347. #define OMAP3517_REV_ES1_0 OMAP3517_CLASS
  348. #define OMAP3517_REV_ES1_1 (OMAP3517_CLASS | (0x1 << 8))
  349. #define TI816X_CLASS 0x81600034
  350. #define TI8168_REV_ES1_0 TI816X_CLASS
  351. #define TI8168_REV_ES1_1 (TI816X_CLASS | (0x1 << 8))
  352. #define OMAP443X_CLASS 0x44300044
  353. #define OMAP4430_REV_ES1_0 (OMAP443X_CLASS | (0x10 << 8))
  354. #define OMAP4430_REV_ES2_0 (OMAP443X_CLASS | (0x20 << 8))
  355. #define OMAP4430_REV_ES2_1 (OMAP443X_CLASS | (0x21 << 8))
  356. #define OMAP4430_REV_ES2_2 (OMAP443X_CLASS | (0x22 << 8))
  357. #define OMAP446X_CLASS 0x44600044
  358. #define OMAP4460_REV_ES1_0 (OMAP446X_CLASS | (0x10 << 8))
  359. void omap2_check_revision(void);
  360. /*
  361. * Runtime detection of OMAP3 features
  362. *
  363. * OMAP3_HAS_IO_CHAIN_CTRL: Some later members of the OMAP3 chip
  364. * family have OS-level control over the I/O chain clock. This is
  365. * to avoid a window during which wakeups could potentially be lost
  366. * during powerdomain transitions. If this bit is set, it
  367. * indicates that the chip does support OS-level control of this
  368. * feature.
  369. */
  370. extern u32 omap_features;
  371. #define OMAP3_HAS_L2CACHE BIT(0)
  372. #define OMAP3_HAS_IVA BIT(1)
  373. #define OMAP3_HAS_SGX BIT(2)
  374. #define OMAP3_HAS_NEON BIT(3)
  375. #define OMAP3_HAS_ISP BIT(4)
  376. #define OMAP3_HAS_192MHZ_CLK BIT(5)
  377. #define OMAP3_HAS_IO_WAKEUP BIT(6)
  378. #define OMAP3_HAS_SDRC BIT(7)
  379. #define OMAP3_HAS_IO_CHAIN_CTRL BIT(8)
  380. #define OMAP4_HAS_MPU_1GHZ BIT(9)
  381. #define OMAP4_HAS_MPU_1_2GHZ BIT(10)
  382. #define OMAP4_HAS_MPU_1_5GHZ BIT(11)
  383. #define OMAP3_HAS_FEATURE(feat,flag) \
  384. static inline unsigned int omap3_has_ ##feat(void) \
  385. { \
  386. return omap_features & OMAP3_HAS_ ##flag; \
  387. } \
  388. OMAP3_HAS_FEATURE(l2cache, L2CACHE)
  389. OMAP3_HAS_FEATURE(sgx, SGX)
  390. OMAP3_HAS_FEATURE(iva, IVA)
  391. OMAP3_HAS_FEATURE(neon, NEON)
  392. OMAP3_HAS_FEATURE(isp, ISP)
  393. OMAP3_HAS_FEATURE(192mhz_clk, 192MHZ_CLK)
  394. OMAP3_HAS_FEATURE(io_wakeup, IO_WAKEUP)
  395. OMAP3_HAS_FEATURE(sdrc, SDRC)
  396. OMAP3_HAS_FEATURE(io_chain_ctrl, IO_CHAIN_CTRL)
  397. /*
  398. * Runtime detection of OMAP4 features
  399. */
  400. #define OMAP4_HAS_FEATURE(feat, flag) \
  401. static inline unsigned int omap4_has_ ##feat(void) \
  402. { \
  403. return omap_features & OMAP4_HAS_ ##flag; \
  404. } \
  405. OMAP4_HAS_FEATURE(mpu_1ghz, MPU_1GHZ)
  406. OMAP4_HAS_FEATURE(mpu_1_2ghz, MPU_1_2GHZ)
  407. OMAP4_HAS_FEATURE(mpu_1_5ghz, MPU_1_5GHZ)
  408. #endif