cpu.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. /*
  2. * cpu.h
  3. *
  4. * AM33xx specific header file
  5. *
  6. * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #ifndef _AM33XX_CPU_H
  11. #define _AM33XX_CPU_H
  12. #if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
  13. #include <asm/types.h>
  14. #endif /* !(__KERNEL_STRICT_NAMES || __ASSEMBLY__) */
  15. #include <asm/arch/hardware.h>
  16. #define BIT(x) (1 << x)
  17. #define CL_BIT(x) (0 << x)
  18. /* Timer register bits */
  19. #define TCLR_ST BIT(0) /* Start=1 Stop=0 */
  20. #define TCLR_AR BIT(1) /* Auto reload */
  21. #define TCLR_PRE BIT(5) /* Pre-scaler enable */
  22. #define TCLR_PTV_SHIFT (2) /* Pre-scaler shift value */
  23. #define TCLR_PRE_DISABLE CL_BIT(5) /* Pre-scalar disable */
  24. /* device type */
  25. #define DEVICE_MASK (BIT(8) | BIT(9) | BIT(10))
  26. #define TST_DEVICE 0x0
  27. #define EMU_DEVICE 0x1
  28. #define HS_DEVICE 0x2
  29. #define GP_DEVICE 0x3
  30. /* cpu-id for AM33XX and TI81XX family */
  31. #define AM335X 0xB944
  32. #define TI81XX 0xB81E
  33. #define DEVICE_ID (CTRL_BASE + 0x0600)
  34. /* This gives the status of the boot mode pins on the evm */
  35. #define SYSBOOT_MASK (BIT(0) | BIT(1) | BIT(2)\
  36. | BIT(3) | BIT(4))
  37. #define PRM_RSTCTRL_RESET 0x01
  38. #define PRM_RSTST_WARM_RESET_MASK 0x232
  39. #ifndef __KERNEL_STRICT_NAMES
  40. #ifndef __ASSEMBLY__
  41. struct gpmc_cs {
  42. u32 config1; /* 0x00 */
  43. u32 config2; /* 0x04 */
  44. u32 config3; /* 0x08 */
  45. u32 config4; /* 0x0C */
  46. u32 config5; /* 0x10 */
  47. u32 config6; /* 0x14 */
  48. u32 config7; /* 0x18 */
  49. u32 nand_cmd; /* 0x1C */
  50. u32 nand_adr; /* 0x20 */
  51. u32 nand_dat; /* 0x24 */
  52. u8 res[8]; /* blow up to 0x30 byte */
  53. };
  54. struct bch_res_0_3 {
  55. u32 bch_result_x[4];
  56. };
  57. struct gpmc {
  58. u8 res1[0x10];
  59. u32 sysconfig; /* 0x10 */
  60. u8 res2[0x4];
  61. u32 irqstatus; /* 0x18 */
  62. u32 irqenable; /* 0x1C */
  63. u8 res3[0x20];
  64. u32 timeout_control; /* 0x40 */
  65. u8 res4[0xC];
  66. u32 config; /* 0x50 */
  67. u32 status; /* 0x54 */
  68. u8 res5[0x8]; /* 0x58 */
  69. struct gpmc_cs cs[8]; /* 0x60, 0x90, .. */
  70. u8 res6[0x14]; /* 0x1E0 */
  71. u32 ecc_config; /* 0x1F4 */
  72. u32 ecc_control; /* 0x1F8 */
  73. u32 ecc_size_config; /* 0x1FC */
  74. u32 ecc1_result; /* 0x200 */
  75. u32 ecc2_result; /* 0x204 */
  76. u32 ecc3_result; /* 0x208 */
  77. u32 ecc4_result; /* 0x20C */
  78. u32 ecc5_result; /* 0x210 */
  79. u32 ecc6_result; /* 0x214 */
  80. u32 ecc7_result; /* 0x218 */
  81. u32 ecc8_result; /* 0x21C */
  82. u32 ecc9_result; /* 0x220 */
  83. u8 res7[12]; /* 0x224 */
  84. u32 testmomde_ctrl; /* 0x230 */
  85. u8 res8[12]; /* 0x234 */
  86. struct bch_res_0_3 bch_result_0_3[2]; /* 0x240 */
  87. };
  88. /* Used for board specific gpmc initialization */
  89. extern struct gpmc *gpmc_cfg;
  90. #ifndef CONFIG_AM43XX
  91. /* Encapsulating core pll registers */
  92. struct cm_wkuppll {
  93. unsigned int wkclkstctrl; /* offset 0x00 */
  94. unsigned int wkctrlclkctrl; /* offset 0x04 */
  95. unsigned int wkgpio0clkctrl; /* offset 0x08 */
  96. unsigned int wkl4wkclkctrl; /* offset 0x0c */
  97. unsigned int resv2[4];
  98. unsigned int idlestdpllmpu; /* offset 0x20 */
  99. unsigned int resv3[2];
  100. unsigned int clkseldpllmpu; /* offset 0x2c */
  101. unsigned int resv4[1];
  102. unsigned int idlestdpllddr; /* offset 0x34 */
  103. unsigned int resv5[2];
  104. unsigned int clkseldpllddr; /* offset 0x40 */
  105. unsigned int resv6[4];
  106. unsigned int clkseldplldisp; /* offset 0x54 */
  107. unsigned int resv7[1];
  108. unsigned int idlestdpllcore; /* offset 0x5c */
  109. unsigned int resv8[2];
  110. unsigned int clkseldpllcore; /* offset 0x68 */
  111. unsigned int resv9[1];
  112. unsigned int idlestdpllper; /* offset 0x70 */
  113. unsigned int resv10[2];
  114. unsigned int clkdcoldodpllper; /* offset 0x7c */
  115. unsigned int divm4dpllcore; /* offset 0x80 */
  116. unsigned int divm5dpllcore; /* offset 0x84 */
  117. unsigned int clkmoddpllmpu; /* offset 0x88 */
  118. unsigned int clkmoddpllper; /* offset 0x8c */
  119. unsigned int clkmoddpllcore; /* offset 0x90 */
  120. unsigned int clkmoddpllddr; /* offset 0x94 */
  121. unsigned int clkmoddplldisp; /* offset 0x98 */
  122. unsigned int clkseldpllper; /* offset 0x9c */
  123. unsigned int divm2dpllddr; /* offset 0xA0 */
  124. unsigned int divm2dplldisp; /* offset 0xA4 */
  125. unsigned int divm2dpllmpu; /* offset 0xA8 */
  126. unsigned int divm2dpllper; /* offset 0xAC */
  127. unsigned int resv11[1];
  128. unsigned int wkup_uart0ctrl; /* offset 0xB4 */
  129. unsigned int wkup_i2c0ctrl; /* offset 0xB8 */
  130. unsigned int resv12[7];
  131. unsigned int divm6dpllcore; /* offset 0xD8 */
  132. };
  133. /**
  134. * Encapsulating peripheral functional clocks
  135. * pll registers
  136. */
  137. struct cm_perpll {
  138. unsigned int l4lsclkstctrl; /* offset 0x00 */
  139. unsigned int l3sclkstctrl; /* offset 0x04 */
  140. unsigned int l4fwclkstctrl; /* offset 0x08 */
  141. unsigned int l3clkstctrl; /* offset 0x0c */
  142. unsigned int resv1;
  143. unsigned int cpgmac0clkctrl; /* offset 0x14 */
  144. unsigned int lcdclkctrl; /* offset 0x18 */
  145. unsigned int usb0clkctrl; /* offset 0x1C */
  146. unsigned int resv2;
  147. unsigned int tptc0clkctrl; /* offset 0x24 */
  148. unsigned int emifclkctrl; /* offset 0x28 */
  149. unsigned int ocmcramclkctrl; /* offset 0x2c */
  150. unsigned int gpmcclkctrl; /* offset 0x30 */
  151. unsigned int mcasp0clkctrl; /* offset 0x34 */
  152. unsigned int uart5clkctrl; /* offset 0x38 */
  153. unsigned int mmc0clkctrl; /* offset 0x3C */
  154. unsigned int elmclkctrl; /* offset 0x40 */
  155. unsigned int i2c2clkctrl; /* offset 0x44 */
  156. unsigned int i2c1clkctrl; /* offset 0x48 */
  157. unsigned int spi0clkctrl; /* offset 0x4C */
  158. unsigned int spi1clkctrl; /* offset 0x50 */
  159. unsigned int resv3[3];
  160. unsigned int l4lsclkctrl; /* offset 0x60 */
  161. unsigned int l4fwclkctrl; /* offset 0x64 */
  162. unsigned int mcasp1clkctrl; /* offset 0x68 */
  163. unsigned int uart1clkctrl; /* offset 0x6C */
  164. unsigned int uart2clkctrl; /* offset 0x70 */
  165. unsigned int uart3clkctrl; /* offset 0x74 */
  166. unsigned int uart4clkctrl; /* offset 0x78 */
  167. unsigned int timer7clkctrl; /* offset 0x7C */
  168. unsigned int timer2clkctrl; /* offset 0x80 */
  169. unsigned int timer3clkctrl; /* offset 0x84 */
  170. unsigned int timer4clkctrl; /* offset 0x88 */
  171. unsigned int resv4[8];
  172. unsigned int gpio1clkctrl; /* offset 0xAC */
  173. unsigned int gpio2clkctrl; /* offset 0xB0 */
  174. unsigned int gpio3clkctrl; /* offset 0xB4 */
  175. unsigned int resv5;
  176. unsigned int tpccclkctrl; /* offset 0xBC */
  177. unsigned int dcan0clkctrl; /* offset 0xC0 */
  178. unsigned int dcan1clkctrl; /* offset 0xC4 */
  179. unsigned int resv6[2];
  180. unsigned int emiffwclkctrl; /* offset 0xD0 */
  181. unsigned int resv7[2];
  182. unsigned int l3instrclkctrl; /* offset 0xDC */
  183. unsigned int l3clkctrl; /* Offset 0xE0 */
  184. unsigned int resv8[4];
  185. unsigned int mmc1clkctrl; /* offset 0xF4 */
  186. unsigned int mmc2clkctrl; /* offset 0xF8 */
  187. unsigned int resv9[8];
  188. unsigned int l4hsclkstctrl; /* offset 0x11C */
  189. unsigned int l4hsclkctrl; /* offset 0x120 */
  190. unsigned int resv10[8];
  191. unsigned int cpswclkstctrl; /* offset 0x144 */
  192. };
  193. #else
  194. /* Encapsulating core pll registers */
  195. struct cm_wkuppll {
  196. unsigned int resv0[136];
  197. unsigned int wkl4wkclkctrl; /* offset 0x220 */
  198. unsigned int resv1[55];
  199. unsigned int wkclkstctrl; /* offset 0x300 */
  200. unsigned int resv2[15];
  201. unsigned int wkup_i2c0ctrl; /* offset 0x340 */
  202. unsigned int resv3;
  203. unsigned int wkup_uart0ctrl; /* offset 0x348 */
  204. unsigned int resv4[5];
  205. unsigned int wkctrlclkctrl; /* offset 0x360 */
  206. unsigned int resv5;
  207. unsigned int wkgpio0clkctrl; /* offset 0x368 */
  208. unsigned int resv6[109];
  209. unsigned int clkmoddpllcore; /* offset 0x520 */
  210. unsigned int idlestdpllcore; /* offset 0x524 */
  211. unsigned int resv61;
  212. unsigned int clkseldpllcore; /* offset 0x52C */
  213. unsigned int resv7[2];
  214. unsigned int divm4dpllcore; /* offset 0x538 */
  215. unsigned int divm5dpllcore; /* offset 0x53C */
  216. unsigned int divm6dpllcore; /* offset 0x540 */
  217. unsigned int resv8[7];
  218. unsigned int clkmoddpllmpu; /* offset 0x560 */
  219. unsigned int idlestdpllmpu; /* offset 0x564 */
  220. unsigned int resv9;
  221. unsigned int clkseldpllmpu; /* offset 0x56c */
  222. unsigned int divm2dpllmpu; /* offset 0x570 */
  223. unsigned int resv10[11];
  224. unsigned int clkmoddpllddr; /* offset 0x5A0 */
  225. unsigned int idlestdpllddr; /* offset 0x5A4 */
  226. unsigned int resv11;
  227. unsigned int clkseldpllddr; /* offset 0x5AC */
  228. unsigned int divm2dpllddr; /* offset 0x5B0 */
  229. unsigned int resv12[11];
  230. unsigned int clkmoddpllper; /* offset 0x5E0 */
  231. unsigned int idlestdpllper; /* offset 0x5E4 */
  232. unsigned int resv13;
  233. unsigned int clkseldpllper; /* offset 0x5EC */
  234. unsigned int divm2dpllper; /* offset 0x5F0 */
  235. unsigned int resv14[8];
  236. unsigned int clkdcoldodpllper; /* offset 0x614 */
  237. unsigned int resv15[2];
  238. unsigned int clkmoddplldisp; /* offset 0x620 */
  239. unsigned int resv16[2];
  240. unsigned int clkseldplldisp; /* offset 0x62C */
  241. unsigned int divm2dplldisp; /* offset 0x630 */
  242. };
  243. /*
  244. * Encapsulating peripheral functional clocks
  245. * pll registers
  246. */
  247. struct cm_perpll {
  248. unsigned int l3clkstctrl; /* offset 0x00 */
  249. unsigned int resv0[7];
  250. unsigned int l3clkctrl; /* Offset 0x20 */
  251. unsigned int resv1[7];
  252. unsigned int l3instrclkctrl; /* offset 0x40 */
  253. unsigned int resv2[3];
  254. unsigned int ocmcramclkctrl; /* offset 0x50 */
  255. unsigned int resv3[9];
  256. unsigned int tpccclkctrl; /* offset 0x78 */
  257. unsigned int resv4;
  258. unsigned int tptc0clkctrl; /* offset 0x80 */
  259. unsigned int resv5[7];
  260. unsigned int l4hsclkctrl; /* offset 0x0A0 */
  261. unsigned int resv6;
  262. unsigned int l4fwclkctrl; /* offset 0x0A8 */
  263. unsigned int resv7[85];
  264. unsigned int l3sclkstctrl; /* offset 0x200 */
  265. unsigned int resv8[7];
  266. unsigned int gpmcclkctrl; /* offset 0x220 */
  267. unsigned int resv9[5];
  268. unsigned int mcasp0clkctrl; /* offset 0x238 */
  269. unsigned int resv10;
  270. unsigned int mcasp1clkctrl; /* offset 0x240 */
  271. unsigned int resv11;
  272. unsigned int mmc2clkctrl; /* offset 0x248 */
  273. unsigned int resv12[5];
  274. unsigned int usb0clkctrl; /* offset 0x260 */
  275. unsigned int resv13[103];
  276. unsigned int l4lsclkstctrl; /* offset 0x400 */
  277. unsigned int resv14[7];
  278. unsigned int l4lsclkctrl; /* offset 0x420 */
  279. unsigned int resv15;
  280. unsigned int dcan0clkctrl; /* offset 0x428 */
  281. unsigned int resv16;
  282. unsigned int dcan1clkctrl; /* offset 0x430 */
  283. unsigned int resv17[13];
  284. unsigned int elmclkctrl; /* offset 0x468 */
  285. unsigned int resv18[3];
  286. unsigned int gpio1clkctrl; /* offset 0x478 */
  287. unsigned int resv19;
  288. unsigned int gpio2clkctrl; /* offset 0x480 */
  289. unsigned int resv20;
  290. unsigned int gpio3clkctrl; /* offset 0x488 */
  291. unsigned int resv21[7];
  292. unsigned int i2c1clkctrl; /* offset 0x4A8 */
  293. unsigned int resv22;
  294. unsigned int i2c2clkctrl; /* offset 0x4B0 */
  295. unsigned int resv23[3];
  296. unsigned int mmc0clkctrl; /* offset 0x4C0 */
  297. unsigned int resv24;
  298. unsigned int mmc1clkctrl; /* offset 0x4C8 */
  299. unsigned int resv25[13];
  300. unsigned int spi0clkctrl; /* offset 0x500 */
  301. unsigned int resv26;
  302. unsigned int spi1clkctrl; /* offset 0x508 */
  303. unsigned int resv27[9];
  304. unsigned int timer2clkctrl; /* offset 0x530 */
  305. unsigned int resv28;
  306. unsigned int timer3clkctrl; /* offset 0x538 */
  307. unsigned int resv29;
  308. unsigned int timer4clkctrl; /* offset 0x540 */
  309. unsigned int resv30[5];
  310. unsigned int timer7clkctrl; /* offset 0x558 */
  311. unsigned int resv31[9];
  312. unsigned int uart1clkctrl; /* offset 0x580 */
  313. unsigned int resv32;
  314. unsigned int uart2clkctrl; /* offset 0x588 */
  315. unsigned int resv33;
  316. unsigned int uart3clkctrl; /* offset 0x590 */
  317. unsigned int resv34;
  318. unsigned int uart4clkctrl; /* offset 0x598 */
  319. unsigned int resv35;
  320. unsigned int uart5clkctrl; /* offset 0x5A0 */
  321. unsigned int resv36[87];
  322. unsigned int emifclkstctrl; /* offset 0x700 */
  323. unsigned int resv361[7];
  324. unsigned int emifclkctrl; /* offset 0x720 */
  325. unsigned int resv37[3];
  326. unsigned int emiffwclkctrl; /* offset 0x730 */
  327. unsigned int resv371;
  328. unsigned int otfaemifclkctrl; /* offset 0x738 */
  329. unsigned int resv38[57];
  330. unsigned int lcdclkctrl; /* offset 0x820 */
  331. unsigned int resv39[183];
  332. unsigned int cpswclkstctrl; /* offset 0xB00 */
  333. unsigned int resv40[7];
  334. unsigned int cpgmac0clkctrl; /* offset 0xB20 */
  335. };
  336. #endif /* CONFIG_AM43XX */
  337. /* Encapsulating Display pll registers */
  338. struct cm_dpll {
  339. unsigned int resv1[2];
  340. unsigned int clktimer2clk; /* offset 0x08 */
  341. };
  342. /* Control Module RTC registers */
  343. struct cm_rtc {
  344. unsigned int rtcclkctrl; /* offset 0x0 */
  345. unsigned int clkstctrl; /* offset 0x4 */
  346. };
  347. /* Watchdog timer registers */
  348. struct wd_timer {
  349. unsigned int resv1[4];
  350. unsigned int wdtwdsc; /* offset 0x010 */
  351. unsigned int wdtwdst; /* offset 0x014 */
  352. unsigned int wdtwisr; /* offset 0x018 */
  353. unsigned int wdtwier; /* offset 0x01C */
  354. unsigned int wdtwwer; /* offset 0x020 */
  355. unsigned int wdtwclr; /* offset 0x024 */
  356. unsigned int wdtwcrr; /* offset 0x028 */
  357. unsigned int wdtwldr; /* offset 0x02C */
  358. unsigned int wdtwtgr; /* offset 0x030 */
  359. unsigned int wdtwwps; /* offset 0x034 */
  360. unsigned int resv2[3];
  361. unsigned int wdtwdly; /* offset 0x044 */
  362. unsigned int wdtwspr; /* offset 0x048 */
  363. unsigned int resv3[1];
  364. unsigned int wdtwqeoi; /* offset 0x050 */
  365. unsigned int wdtwqstar; /* offset 0x054 */
  366. unsigned int wdtwqsta; /* offset 0x058 */
  367. unsigned int wdtwqens; /* offset 0x05C */
  368. unsigned int wdtwqenc; /* offset 0x060 */
  369. unsigned int resv4[39];
  370. unsigned int wdt_unfr; /* offset 0x100 */
  371. };
  372. /* Timer 32 bit registers */
  373. struct gptimer {
  374. unsigned int tidr; /* offset 0x00 */
  375. unsigned char res1[12];
  376. unsigned int tiocp_cfg; /* offset 0x10 */
  377. unsigned char res2[12];
  378. unsigned int tier; /* offset 0x20 */
  379. unsigned int tistatr; /* offset 0x24 */
  380. unsigned int tistat; /* offset 0x28 */
  381. unsigned int tisr; /* offset 0x2c */
  382. unsigned int tcicr; /* offset 0x30 */
  383. unsigned int twer; /* offset 0x34 */
  384. unsigned int tclr; /* offset 0x38 */
  385. unsigned int tcrr; /* offset 0x3c */
  386. unsigned int tldr; /* offset 0x40 */
  387. unsigned int ttgr; /* offset 0x44 */
  388. unsigned int twpc; /* offset 0x48 */
  389. unsigned int tmar; /* offset 0x4c */
  390. unsigned int tcar1; /* offset 0x50 */
  391. unsigned int tscir; /* offset 0x54 */
  392. unsigned int tcar2; /* offset 0x58 */
  393. };
  394. /* RTC Registers */
  395. struct rtc_regs {
  396. unsigned int res[21];
  397. unsigned int osc; /* offset 0x54 */
  398. unsigned int res2[5];
  399. unsigned int kick0r; /* offset 0x6c */
  400. unsigned int kick1r; /* offset 0x70 */
  401. };
  402. /* UART Registers */
  403. struct uart_sys {
  404. unsigned int resv1[21];
  405. unsigned int uartsyscfg; /* offset 0x54 */
  406. unsigned int uartsyssts; /* offset 0x58 */
  407. };
  408. /* VTP Registers */
  409. struct vtp_reg {
  410. unsigned int vtp0ctrlreg;
  411. };
  412. /* Control Status Register */
  413. struct ctrl_stat {
  414. unsigned int resv1[16];
  415. unsigned int statusreg; /* ofset 0x40 */
  416. unsigned int resv2[51];
  417. unsigned int secure_emif_sdram_config; /* offset 0x0110 */
  418. };
  419. /* AM33XX GPIO registers */
  420. #define OMAP_GPIO_REVISION 0x0000
  421. #define OMAP_GPIO_SYSCONFIG 0x0010
  422. #define OMAP_GPIO_SYSSTATUS 0x0114
  423. #define OMAP_GPIO_IRQSTATUS1 0x002c
  424. #define OMAP_GPIO_IRQSTATUS2 0x0030
  425. #define OMAP_GPIO_CTRL 0x0130
  426. #define OMAP_GPIO_OE 0x0134
  427. #define OMAP_GPIO_DATAIN 0x0138
  428. #define OMAP_GPIO_DATAOUT 0x013c
  429. #define OMAP_GPIO_LEVELDETECT0 0x0140
  430. #define OMAP_GPIO_LEVELDETECT1 0x0144
  431. #define OMAP_GPIO_RISINGDETECT 0x0148
  432. #define OMAP_GPIO_FALLINGDETECT 0x014c
  433. #define OMAP_GPIO_DEBOUNCE_EN 0x0150
  434. #define OMAP_GPIO_DEBOUNCE_VAL 0x0154
  435. #define OMAP_GPIO_CLEARDATAOUT 0x0190
  436. #define OMAP_GPIO_SETDATAOUT 0x0194
  437. /* Control Device Register */
  438. struct ctrl_dev {
  439. unsigned int deviceid; /* offset 0x00 */
  440. unsigned int resv1[7];
  441. unsigned int usb_ctrl0; /* offset 0x20 */
  442. unsigned int resv2;
  443. unsigned int usb_ctrl1; /* offset 0x28 */
  444. unsigned int resv3;
  445. unsigned int macid0l; /* offset 0x30 */
  446. unsigned int macid0h; /* offset 0x34 */
  447. unsigned int macid1l; /* offset 0x38 */
  448. unsigned int macid1h; /* offset 0x3c */
  449. unsigned int resv4[4];
  450. unsigned int miisel; /* offset 0x50 */
  451. };
  452. #endif /* __ASSEMBLY__ */
  453. #endif /* __KERNEL_STRICT_NAMES */
  454. #endif /* _AM33XX_CPU_H */