cpu.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  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/5 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. #ifndef __ASSEMBLY__
  32. #include <linux/bitops.h>
  33. #include <plat/multi.h>
  34. /*
  35. * Omap device type i.e. EMU/HS/TST/GP/BAD
  36. */
  37. #define OMAP2_DEVICE_TYPE_TEST 0
  38. #define OMAP2_DEVICE_TYPE_EMU 1
  39. #define OMAP2_DEVICE_TYPE_SEC 2
  40. #define OMAP2_DEVICE_TYPE_GP 3
  41. #define OMAP2_DEVICE_TYPE_BAD 4
  42. int omap_type(void);
  43. /*
  44. * omap_rev bits:
  45. * CPU id bits (0730, 1510, 1710, 2422...) [31:16]
  46. * CPU revision (See _REV_ defined in cpu.h) [15:08]
  47. * CPU class bits (15xx, 16xx, 24xx, 34xx...) [07:00]
  48. */
  49. unsigned int omap_rev(void);
  50. /*
  51. * Get the CPU revision for OMAP devices
  52. */
  53. #define GET_OMAP_REVISION() ((omap_rev() >> 8) & 0xff)
  54. /*
  55. * Macros to group OMAP into cpu classes.
  56. * These can be used in most places.
  57. * cpu_is_omap7xx(): True for OMAP730, OMAP850
  58. * cpu_is_omap15xx(): True for OMAP1510, OMAP5910 and OMAP310
  59. * cpu_is_omap16xx(): True for OMAP1610, OMAP5912 and OMAP1710
  60. * cpu_is_omap24xx(): True for OMAP2420, OMAP2422, OMAP2423, OMAP2430
  61. * cpu_is_omap242x(): True for OMAP2420, OMAP2422, OMAP2423
  62. * cpu_is_omap243x(): True for OMAP2430
  63. * cpu_is_omap343x(): True for OMAP3430
  64. * cpu_is_omap443x(): True for OMAP4430
  65. * cpu_is_omap446x(): True for OMAP4460
  66. * cpu_is_omap447x(): True for OMAP4470
  67. * soc_is_omap543x(): True for OMAP5430, OMAP5432
  68. */
  69. #define GET_OMAP_CLASS (omap_rev() & 0xff)
  70. #define IS_OMAP_CLASS(class, id) \
  71. static inline int is_omap ##class (void) \
  72. { \
  73. return (GET_OMAP_CLASS == (id)) ? 1 : 0; \
  74. }
  75. #define GET_AM_CLASS ((omap_rev() >> 24) & 0xff)
  76. #define IS_AM_CLASS(class, id) \
  77. static inline int is_am ##class (void) \
  78. { \
  79. return (GET_AM_CLASS == (id)) ? 1 : 0; \
  80. }
  81. #define GET_TI_CLASS ((omap_rev() >> 24) & 0xff)
  82. #define IS_TI_CLASS(class, id) \
  83. static inline int is_ti ##class (void) \
  84. { \
  85. return (GET_TI_CLASS == (id)) ? 1 : 0; \
  86. }
  87. #define GET_OMAP_SUBCLASS ((omap_rev() >> 20) & 0x0fff)
  88. #define IS_OMAP_SUBCLASS(subclass, id) \
  89. static inline int is_omap ##subclass (void) \
  90. { \
  91. return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \
  92. }
  93. #define IS_TI_SUBCLASS(subclass, id) \
  94. static inline int is_ti ##subclass (void) \
  95. { \
  96. return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \
  97. }
  98. #define IS_AM_SUBCLASS(subclass, id) \
  99. static inline int is_am ##subclass (void) \
  100. { \
  101. return (GET_OMAP_SUBCLASS == (id)) ? 1 : 0; \
  102. }
  103. IS_OMAP_CLASS(7xx, 0x07)
  104. IS_OMAP_CLASS(15xx, 0x15)
  105. IS_OMAP_CLASS(16xx, 0x16)
  106. IS_OMAP_CLASS(24xx, 0x24)
  107. IS_OMAP_CLASS(34xx, 0x34)
  108. IS_OMAP_CLASS(44xx, 0x44)
  109. IS_AM_CLASS(35xx, 0x35)
  110. IS_OMAP_CLASS(54xx, 0x54)
  111. IS_AM_CLASS(33xx, 0x33)
  112. IS_TI_CLASS(81xx, 0x81)
  113. IS_OMAP_SUBCLASS(242x, 0x242)
  114. IS_OMAP_SUBCLASS(243x, 0x243)
  115. IS_OMAP_SUBCLASS(343x, 0x343)
  116. IS_OMAP_SUBCLASS(363x, 0x363)
  117. IS_OMAP_SUBCLASS(443x, 0x443)
  118. IS_OMAP_SUBCLASS(446x, 0x446)
  119. IS_OMAP_SUBCLASS(447x, 0x447)
  120. IS_OMAP_SUBCLASS(543x, 0x543)
  121. IS_TI_SUBCLASS(816x, 0x816)
  122. IS_TI_SUBCLASS(814x, 0x814)
  123. IS_AM_SUBCLASS(335x, 0x335)
  124. #define cpu_is_omap7xx() 0
  125. #define cpu_is_omap15xx() 0
  126. #define cpu_is_omap16xx() 0
  127. #define cpu_is_omap24xx() 0
  128. #define cpu_is_omap242x() 0
  129. #define cpu_is_omap243x() 0
  130. #define cpu_is_omap34xx() 0
  131. #define cpu_is_omap343x() 0
  132. #define cpu_is_ti81xx() 0
  133. #define cpu_is_ti816x() 0
  134. #define cpu_is_ti814x() 0
  135. #define soc_is_am35xx() 0
  136. #define soc_is_am33xx() 0
  137. #define soc_is_am335x() 0
  138. #define cpu_is_omap44xx() 0
  139. #define cpu_is_omap443x() 0
  140. #define cpu_is_omap446x() 0
  141. #define cpu_is_omap447x() 0
  142. #define soc_is_omap54xx() 0
  143. #define soc_is_omap543x() 0
  144. #if defined(MULTI_OMAP1)
  145. # if defined(CONFIG_ARCH_OMAP730)
  146. # undef cpu_is_omap7xx
  147. # define cpu_is_omap7xx() is_omap7xx()
  148. # endif
  149. # if defined(CONFIG_ARCH_OMAP850)
  150. # undef cpu_is_omap7xx
  151. # define cpu_is_omap7xx() is_omap7xx()
  152. # endif
  153. # if defined(CONFIG_ARCH_OMAP15XX)
  154. # undef cpu_is_omap15xx
  155. # define cpu_is_omap15xx() is_omap15xx()
  156. # endif
  157. # if defined(CONFIG_ARCH_OMAP16XX)
  158. # undef cpu_is_omap16xx
  159. # define cpu_is_omap16xx() is_omap16xx()
  160. # endif
  161. #else
  162. # if defined(CONFIG_ARCH_OMAP730)
  163. # undef cpu_is_omap7xx
  164. # define cpu_is_omap7xx() 1
  165. # endif
  166. # if defined(CONFIG_ARCH_OMAP850)
  167. # undef cpu_is_omap7xx
  168. # define cpu_is_omap7xx() 1
  169. # endif
  170. # if defined(CONFIG_ARCH_OMAP15XX)
  171. # undef cpu_is_omap15xx
  172. # define cpu_is_omap15xx() 1
  173. # endif
  174. # if defined(CONFIG_ARCH_OMAP16XX)
  175. # undef cpu_is_omap16xx
  176. # define cpu_is_omap16xx() 1
  177. # endif
  178. #endif
  179. #if defined(MULTI_OMAP2)
  180. # if defined(CONFIG_ARCH_OMAP2)
  181. # undef cpu_is_omap24xx
  182. # define cpu_is_omap24xx() is_omap24xx()
  183. # endif
  184. # if defined (CONFIG_SOC_OMAP2420)
  185. # undef cpu_is_omap242x
  186. # define cpu_is_omap242x() is_omap242x()
  187. # endif
  188. # if defined (CONFIG_SOC_OMAP2430)
  189. # undef cpu_is_omap243x
  190. # define cpu_is_omap243x() is_omap243x()
  191. # endif
  192. # if defined(CONFIG_ARCH_OMAP3)
  193. # undef cpu_is_omap34xx
  194. # undef cpu_is_omap343x
  195. # define cpu_is_omap34xx() is_omap34xx()
  196. # define cpu_is_omap343x() is_omap343x()
  197. # endif
  198. #else
  199. # if defined(CONFIG_ARCH_OMAP2)
  200. # undef cpu_is_omap24xx
  201. # define cpu_is_omap24xx() 1
  202. # endif
  203. # if defined(CONFIG_SOC_OMAP2420)
  204. # undef cpu_is_omap242x
  205. # define cpu_is_omap242x() 1
  206. # endif
  207. # if defined(CONFIG_SOC_OMAP2430)
  208. # undef cpu_is_omap243x
  209. # define cpu_is_omap243x() 1
  210. # endif
  211. # if defined(CONFIG_ARCH_OMAP3)
  212. # undef cpu_is_omap34xx
  213. # define cpu_is_omap34xx() 1
  214. # endif
  215. # if defined(CONFIG_SOC_OMAP3430)
  216. # undef cpu_is_omap343x
  217. # define cpu_is_omap343x() 1
  218. # endif
  219. #endif
  220. /*
  221. * Macros to detect individual cpu types.
  222. * These are only rarely needed.
  223. * cpu_is_omap310(): True for OMAP310
  224. * cpu_is_omap1510(): True for OMAP1510
  225. * cpu_is_omap1610(): True for OMAP1610
  226. * cpu_is_omap1611(): True for OMAP1611
  227. * cpu_is_omap5912(): True for OMAP5912
  228. * cpu_is_omap1621(): True for OMAP1621
  229. * cpu_is_omap1710(): True for OMAP1710
  230. * cpu_is_omap2420(): True for OMAP2420
  231. * cpu_is_omap2422(): True for OMAP2422
  232. * cpu_is_omap2423(): True for OMAP2423
  233. * cpu_is_omap2430(): True for OMAP2430
  234. * cpu_is_omap3430(): True for OMAP3430
  235. */
  236. #define GET_OMAP_TYPE ((omap_rev() >> 16) & 0xffff)
  237. #define IS_OMAP_TYPE(type, id) \
  238. static inline int is_omap ##type (void) \
  239. { \
  240. return (GET_OMAP_TYPE == (id)) ? 1 : 0; \
  241. }
  242. IS_OMAP_TYPE(310, 0x0310)
  243. IS_OMAP_TYPE(1510, 0x1510)
  244. IS_OMAP_TYPE(1610, 0x1610)
  245. IS_OMAP_TYPE(1611, 0x1611)
  246. IS_OMAP_TYPE(5912, 0x1611)
  247. IS_OMAP_TYPE(1621, 0x1621)
  248. IS_OMAP_TYPE(1710, 0x1710)
  249. IS_OMAP_TYPE(2420, 0x2420)
  250. IS_OMAP_TYPE(2422, 0x2422)
  251. IS_OMAP_TYPE(2423, 0x2423)
  252. IS_OMAP_TYPE(2430, 0x2430)
  253. IS_OMAP_TYPE(3430, 0x3430)
  254. #define cpu_is_omap310() 0
  255. #define cpu_is_omap1510() 0
  256. #define cpu_is_omap1610() 0
  257. #define cpu_is_omap5912() 0
  258. #define cpu_is_omap1611() 0
  259. #define cpu_is_omap1621() 0
  260. #define cpu_is_omap1710() 0
  261. #define cpu_is_omap2420() 0
  262. #define cpu_is_omap2422() 0
  263. #define cpu_is_omap2423() 0
  264. #define cpu_is_omap2430() 0
  265. #define cpu_is_omap3430() 0
  266. #define cpu_is_omap3630() 0
  267. #define soc_is_omap5430() 0
  268. /*
  269. * Whether we have MULTI_OMAP1 or not, we still need to distinguish
  270. * between 310 vs. 1510 and 1611B/5912 vs. 1710.
  271. */
  272. #if defined(CONFIG_ARCH_OMAP15XX)
  273. # undef cpu_is_omap310
  274. # undef cpu_is_omap1510
  275. # define cpu_is_omap310() is_omap310()
  276. # define cpu_is_omap1510() is_omap1510()
  277. #endif
  278. #if defined(CONFIG_ARCH_OMAP16XX)
  279. # undef cpu_is_omap1610
  280. # undef cpu_is_omap1611
  281. # undef cpu_is_omap5912
  282. # undef cpu_is_omap1621
  283. # undef cpu_is_omap1710
  284. # define cpu_is_omap1610() is_omap1610()
  285. # define cpu_is_omap1611() is_omap1611()
  286. # define cpu_is_omap5912() is_omap5912()
  287. # define cpu_is_omap1621() is_omap1621()
  288. # define cpu_is_omap1710() is_omap1710()
  289. #endif
  290. #if defined(CONFIG_ARCH_OMAP2)
  291. # undef cpu_is_omap2420
  292. # undef cpu_is_omap2422
  293. # undef cpu_is_omap2423
  294. # undef cpu_is_omap2430
  295. # define cpu_is_omap2420() is_omap2420()
  296. # define cpu_is_omap2422() is_omap2422()
  297. # define cpu_is_omap2423() is_omap2423()
  298. # define cpu_is_omap2430() is_omap2430()
  299. #endif
  300. #if defined(CONFIG_ARCH_OMAP3)
  301. # undef cpu_is_omap3430
  302. # undef cpu_is_ti81xx
  303. # undef cpu_is_ti816x
  304. # undef cpu_is_ti814x
  305. # undef soc_is_am35xx
  306. # define cpu_is_omap3430() is_omap3430()
  307. # undef cpu_is_omap3630
  308. # define cpu_is_omap3630() is_omap363x()
  309. # define cpu_is_ti81xx() is_ti81xx()
  310. # define cpu_is_ti816x() is_ti816x()
  311. # define cpu_is_ti814x() is_ti814x()
  312. # define soc_is_am35xx() is_am35xx()
  313. #endif
  314. # if defined(CONFIG_SOC_AM33XX)
  315. # undef soc_is_am33xx
  316. # undef soc_is_am335x
  317. # define soc_is_am33xx() is_am33xx()
  318. # define soc_is_am335x() is_am335x()
  319. #endif
  320. # if defined(CONFIG_ARCH_OMAP4)
  321. # undef cpu_is_omap44xx
  322. # undef cpu_is_omap443x
  323. # undef cpu_is_omap446x
  324. # undef cpu_is_omap447x
  325. # define cpu_is_omap44xx() is_omap44xx()
  326. # define cpu_is_omap443x() is_omap443x()
  327. # define cpu_is_omap446x() is_omap446x()
  328. # define cpu_is_omap447x() is_omap447x()
  329. # endif
  330. # if defined(CONFIG_SOC_OMAP5)
  331. # undef soc_is_omap54xx
  332. # undef soc_is_omap543x
  333. # define soc_is_omap54xx() is_omap54xx()
  334. # define soc_is_omap543x() is_omap543x()
  335. #endif
  336. /* Macros to detect if we have OMAP1 or OMAP2 */
  337. #define cpu_class_is_omap1() (cpu_is_omap7xx() || cpu_is_omap15xx() || \
  338. cpu_is_omap16xx())
  339. #define cpu_class_is_omap2() (cpu_is_omap24xx() || cpu_is_omap34xx() || \
  340. cpu_is_omap44xx() || soc_is_omap54xx() || \
  341. soc_is_am33xx())
  342. /* Various silicon revisions for omap2 */
  343. #define OMAP242X_CLASS 0x24200024
  344. #define OMAP2420_REV_ES1_0 OMAP242X_CLASS
  345. #define OMAP2420_REV_ES2_0 (OMAP242X_CLASS | (0x1 << 8))
  346. #define OMAP243X_CLASS 0x24300024
  347. #define OMAP2430_REV_ES1_0 OMAP243X_CLASS
  348. #define OMAP343X_CLASS 0x34300034
  349. #define OMAP3430_REV_ES1_0 OMAP343X_CLASS
  350. #define OMAP3430_REV_ES2_0 (OMAP343X_CLASS | (0x1 << 8))
  351. #define OMAP3430_REV_ES2_1 (OMAP343X_CLASS | (0x2 << 8))
  352. #define OMAP3430_REV_ES3_0 (OMAP343X_CLASS | (0x3 << 8))
  353. #define OMAP3430_REV_ES3_1 (OMAP343X_CLASS | (0x4 << 8))
  354. #define OMAP3430_REV_ES3_1_2 (OMAP343X_CLASS | (0x5 << 8))
  355. #define OMAP363X_CLASS 0x36300034
  356. #define OMAP3630_REV_ES1_0 OMAP363X_CLASS
  357. #define OMAP3630_REV_ES1_1 (OMAP363X_CLASS | (0x1 << 8))
  358. #define OMAP3630_REV_ES1_2 (OMAP363X_CLASS | (0x2 << 8))
  359. #define TI816X_CLASS 0x81600034
  360. #define TI8168_REV_ES1_0 TI816X_CLASS
  361. #define TI8168_REV_ES1_1 (TI816X_CLASS | (0x1 << 8))
  362. #define TI814X_CLASS 0x81400034
  363. #define TI8148_REV_ES1_0 TI814X_CLASS
  364. #define TI8148_REV_ES2_0 (TI814X_CLASS | (0x1 << 8))
  365. #define TI8148_REV_ES2_1 (TI814X_CLASS | (0x2 << 8))
  366. #define AM35XX_CLASS 0x35170034
  367. #define AM35XX_REV_ES1_0 AM35XX_CLASS
  368. #define AM35XX_REV_ES1_1 (AM35XX_CLASS | (0x1 << 8))
  369. #define AM335X_CLASS 0x33500033
  370. #define AM335X_REV_ES1_0 AM335X_CLASS
  371. #define OMAP443X_CLASS 0x44300044
  372. #define OMAP4430_REV_ES1_0 (OMAP443X_CLASS | (0x10 << 8))
  373. #define OMAP4430_REV_ES2_0 (OMAP443X_CLASS | (0x20 << 8))
  374. #define OMAP4430_REV_ES2_1 (OMAP443X_CLASS | (0x21 << 8))
  375. #define OMAP4430_REV_ES2_2 (OMAP443X_CLASS | (0x22 << 8))
  376. #define OMAP4430_REV_ES2_3 (OMAP443X_CLASS | (0x23 << 8))
  377. #define OMAP446X_CLASS 0x44600044
  378. #define OMAP4460_REV_ES1_0 (OMAP446X_CLASS | (0x10 << 8))
  379. #define OMAP4460_REV_ES1_1 (OMAP446X_CLASS | (0x11 << 8))
  380. #define OMAP447X_CLASS 0x44700044
  381. #define OMAP4470_REV_ES1_0 (OMAP447X_CLASS | (0x10 << 8))
  382. #define OMAP54XX_CLASS 0x54000054
  383. #define OMAP5430_REV_ES1_0 (OMAP54XX_CLASS | (0x30 << 16) | (0x10 << 8))
  384. #define OMAP5432_REV_ES1_0 (OMAP54XX_CLASS | (0x32 << 16) | (0x10 << 8))
  385. void omap2xxx_check_revision(void);
  386. void omap3xxx_check_revision(void);
  387. void omap4xxx_check_revision(void);
  388. void omap5xxx_check_revision(void);
  389. void omap3xxx_check_features(void);
  390. void ti81xx_check_features(void);
  391. void omap4xxx_check_features(void);
  392. /*
  393. * Runtime detection of OMAP3 features
  394. *
  395. * OMAP3_HAS_IO_CHAIN_CTRL: Some later members of the OMAP3 chip
  396. * family have OS-level control over the I/O chain clock. This is
  397. * to avoid a window during which wakeups could potentially be lost
  398. * during powerdomain transitions. If this bit is set, it
  399. * indicates that the chip does support OS-level control of this
  400. * feature.
  401. */
  402. extern u32 omap_features;
  403. #define OMAP3_HAS_L2CACHE BIT(0)
  404. #define OMAP3_HAS_IVA BIT(1)
  405. #define OMAP3_HAS_SGX BIT(2)
  406. #define OMAP3_HAS_NEON BIT(3)
  407. #define OMAP3_HAS_ISP BIT(4)
  408. #define OMAP3_HAS_192MHZ_CLK BIT(5)
  409. #define OMAP3_HAS_IO_WAKEUP BIT(6)
  410. #define OMAP3_HAS_SDRC BIT(7)
  411. #define OMAP3_HAS_IO_CHAIN_CTRL BIT(8)
  412. #define OMAP4_HAS_MPU_1GHZ BIT(9)
  413. #define OMAP4_HAS_MPU_1_2GHZ BIT(10)
  414. #define OMAP4_HAS_MPU_1_5GHZ BIT(11)
  415. #define OMAP3_HAS_FEATURE(feat,flag) \
  416. static inline unsigned int omap3_has_ ##feat(void) \
  417. { \
  418. return omap_features & OMAP3_HAS_ ##flag; \
  419. } \
  420. OMAP3_HAS_FEATURE(l2cache, L2CACHE)
  421. OMAP3_HAS_FEATURE(sgx, SGX)
  422. OMAP3_HAS_FEATURE(iva, IVA)
  423. OMAP3_HAS_FEATURE(neon, NEON)
  424. OMAP3_HAS_FEATURE(isp, ISP)
  425. OMAP3_HAS_FEATURE(192mhz_clk, 192MHZ_CLK)
  426. OMAP3_HAS_FEATURE(io_wakeup, IO_WAKEUP)
  427. OMAP3_HAS_FEATURE(sdrc, SDRC)
  428. OMAP3_HAS_FEATURE(io_chain_ctrl, IO_CHAIN_CTRL)
  429. /*
  430. * Runtime detection of OMAP4 features
  431. */
  432. #define OMAP4_HAS_FEATURE(feat, flag) \
  433. static inline unsigned int omap4_has_ ##feat(void) \
  434. { \
  435. return omap_features & OMAP4_HAS_ ##flag; \
  436. } \
  437. OMAP4_HAS_FEATURE(mpu_1ghz, MPU_1GHZ)
  438. OMAP4_HAS_FEATURE(mpu_1_2ghz, MPU_1_2GHZ)
  439. OMAP4_HAS_FEATURE(mpu_1_5ghz, MPU_1_5GHZ)
  440. #endif /* __ASSEMBLY__ */
  441. #endif