setup-sh7723.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791
  1. /*
  2. * SH7723 Setup
  3. *
  4. * Copyright (C) 2008 Paul Mundt
  5. *
  6. * This file is subject to the terms and conditions of the GNU General Public
  7. * License. See the file "COPYING" in the main directory of this archive
  8. * for more details.
  9. */
  10. #include <linux/platform_device.h>
  11. #include <linux/init.h>
  12. #include <linux/serial.h>
  13. #include <linux/mm.h>
  14. #include <linux/serial_sci.h>
  15. #include <linux/uio_driver.h>
  16. #include <linux/usb/r8a66597.h>
  17. #include <linux/sh_timer.h>
  18. #include <linux/io.h>
  19. #include <asm/clock.h>
  20. #include <asm/mmzone.h>
  21. #include <cpu/sh7723.h>
  22. /* Serial */
  23. static struct plat_sci_port scif0_platform_data = {
  24. .mapbase = 0xffe00000,
  25. .flags = UPF_BOOT_AUTOCONF,
  26. .type = PORT_SCIF,
  27. .irqs = { 80, 80, 80, 80 },
  28. };
  29. static struct platform_device scif0_device = {
  30. .name = "sh-sci",
  31. .id = 0,
  32. .dev = {
  33. .platform_data = &scif0_platform_data,
  34. },
  35. };
  36. static struct plat_sci_port scif1_platform_data = {
  37. .mapbase = 0xffe10000,
  38. .flags = UPF_BOOT_AUTOCONF,
  39. .type = PORT_SCIF,
  40. .irqs = { 81, 81, 81, 81 },
  41. };
  42. static struct platform_device scif1_device = {
  43. .name = "sh-sci",
  44. .id = 1,
  45. .dev = {
  46. .platform_data = &scif1_platform_data,
  47. },
  48. };
  49. static struct plat_sci_port scif2_platform_data = {
  50. .mapbase = 0xffe20000,
  51. .flags = UPF_BOOT_AUTOCONF,
  52. .type = PORT_SCIF,
  53. .irqs = { 82, 82, 82, 82 },
  54. };
  55. static struct platform_device scif2_device = {
  56. .name = "sh-sci",
  57. .id = 2,
  58. .dev = {
  59. .platform_data = &scif2_platform_data,
  60. },
  61. };
  62. static struct plat_sci_port scif3_platform_data = {
  63. .mapbase = 0xa4e30000,
  64. .flags = UPF_BOOT_AUTOCONF,
  65. .type = PORT_SCIFA,
  66. .irqs = { 56, 56, 56, 56 },
  67. };
  68. static struct platform_device scif3_device = {
  69. .name = "sh-sci",
  70. .id = 3,
  71. .dev = {
  72. .platform_data = &scif3_platform_data,
  73. },
  74. };
  75. static struct plat_sci_port scif4_platform_data = {
  76. .mapbase = 0xa4e40000,
  77. .flags = UPF_BOOT_AUTOCONF,
  78. .type = PORT_SCIFA,
  79. .irqs = { 88, 88, 88, 88 },
  80. };
  81. static struct platform_device scif4_device = {
  82. .name = "sh-sci",
  83. .id = 4,
  84. .dev = {
  85. .platform_data = &scif4_platform_data,
  86. },
  87. };
  88. static struct plat_sci_port scif5_platform_data = {
  89. .mapbase = 0xa4e50000,
  90. .flags = UPF_BOOT_AUTOCONF,
  91. .type = PORT_SCIFA,
  92. .irqs = { 109, 109, 109, 109 },
  93. };
  94. static struct platform_device scif5_device = {
  95. .name = "sh-sci",
  96. .id = 5,
  97. .dev = {
  98. .platform_data = &scif5_platform_data,
  99. },
  100. };
  101. static struct uio_info vpu_platform_data = {
  102. .name = "VPU5",
  103. .version = "0",
  104. .irq = 60,
  105. };
  106. static struct resource vpu_resources[] = {
  107. [0] = {
  108. .name = "VPU",
  109. .start = 0xfe900000,
  110. .end = 0xfe902807,
  111. .flags = IORESOURCE_MEM,
  112. },
  113. [1] = {
  114. /* place holder for contiguous memory */
  115. },
  116. };
  117. static struct platform_device vpu_device = {
  118. .name = "uio_pdrv_genirq",
  119. .id = 0,
  120. .dev = {
  121. .platform_data = &vpu_platform_data,
  122. },
  123. .resource = vpu_resources,
  124. .num_resources = ARRAY_SIZE(vpu_resources),
  125. .archdata = {
  126. .hwblk_id = HWBLK_VPU,
  127. },
  128. };
  129. static struct uio_info veu0_platform_data = {
  130. .name = "VEU2H",
  131. .version = "0",
  132. .irq = 54,
  133. };
  134. static struct resource veu0_resources[] = {
  135. [0] = {
  136. .name = "VEU2H0",
  137. .start = 0xfe920000,
  138. .end = 0xfe92027b,
  139. .flags = IORESOURCE_MEM,
  140. },
  141. [1] = {
  142. /* place holder for contiguous memory */
  143. },
  144. };
  145. static struct platform_device veu0_device = {
  146. .name = "uio_pdrv_genirq",
  147. .id = 1,
  148. .dev = {
  149. .platform_data = &veu0_platform_data,
  150. },
  151. .resource = veu0_resources,
  152. .num_resources = ARRAY_SIZE(veu0_resources),
  153. .archdata = {
  154. .hwblk_id = HWBLK_VEU2H0,
  155. },
  156. };
  157. static struct uio_info veu1_platform_data = {
  158. .name = "VEU2H",
  159. .version = "0",
  160. .irq = 27,
  161. };
  162. static struct resource veu1_resources[] = {
  163. [0] = {
  164. .name = "VEU2H1",
  165. .start = 0xfe924000,
  166. .end = 0xfe92427b,
  167. .flags = IORESOURCE_MEM,
  168. },
  169. [1] = {
  170. /* place holder for contiguous memory */
  171. },
  172. };
  173. static struct platform_device veu1_device = {
  174. .name = "uio_pdrv_genirq",
  175. .id = 2,
  176. .dev = {
  177. .platform_data = &veu1_platform_data,
  178. },
  179. .resource = veu1_resources,
  180. .num_resources = ARRAY_SIZE(veu1_resources),
  181. .archdata = {
  182. .hwblk_id = HWBLK_VEU2H1,
  183. },
  184. };
  185. static struct sh_timer_config cmt_platform_data = {
  186. .channel_offset = 0x60,
  187. .timer_bit = 5,
  188. .clockevent_rating = 125,
  189. .clocksource_rating = 125,
  190. };
  191. static struct resource cmt_resources[] = {
  192. [0] = {
  193. .start = 0x044a0060,
  194. .end = 0x044a006b,
  195. .flags = IORESOURCE_MEM,
  196. },
  197. [1] = {
  198. .start = 104,
  199. .flags = IORESOURCE_IRQ,
  200. },
  201. };
  202. static struct platform_device cmt_device = {
  203. .name = "sh_cmt",
  204. .id = 0,
  205. .dev = {
  206. .platform_data = &cmt_platform_data,
  207. },
  208. .resource = cmt_resources,
  209. .num_resources = ARRAY_SIZE(cmt_resources),
  210. .archdata = {
  211. .hwblk_id = HWBLK_CMT,
  212. },
  213. };
  214. static struct sh_timer_config tmu0_platform_data = {
  215. .channel_offset = 0x04,
  216. .timer_bit = 0,
  217. .clockevent_rating = 200,
  218. };
  219. static struct resource tmu0_resources[] = {
  220. [0] = {
  221. .start = 0xffd80008,
  222. .end = 0xffd80013,
  223. .flags = IORESOURCE_MEM,
  224. },
  225. [1] = {
  226. .start = 16,
  227. .flags = IORESOURCE_IRQ,
  228. },
  229. };
  230. static struct platform_device tmu0_device = {
  231. .name = "sh_tmu",
  232. .id = 0,
  233. .dev = {
  234. .platform_data = &tmu0_platform_data,
  235. },
  236. .resource = tmu0_resources,
  237. .num_resources = ARRAY_SIZE(tmu0_resources),
  238. .archdata = {
  239. .hwblk_id = HWBLK_TMU0,
  240. },
  241. };
  242. static struct sh_timer_config tmu1_platform_data = {
  243. .channel_offset = 0x10,
  244. .timer_bit = 1,
  245. .clocksource_rating = 200,
  246. };
  247. static struct resource tmu1_resources[] = {
  248. [0] = {
  249. .start = 0xffd80014,
  250. .end = 0xffd8001f,
  251. .flags = IORESOURCE_MEM,
  252. },
  253. [1] = {
  254. .start = 17,
  255. .flags = IORESOURCE_IRQ,
  256. },
  257. };
  258. static struct platform_device tmu1_device = {
  259. .name = "sh_tmu",
  260. .id = 1,
  261. .dev = {
  262. .platform_data = &tmu1_platform_data,
  263. },
  264. .resource = tmu1_resources,
  265. .num_resources = ARRAY_SIZE(tmu1_resources),
  266. .archdata = {
  267. .hwblk_id = HWBLK_TMU0,
  268. },
  269. };
  270. static struct sh_timer_config tmu2_platform_data = {
  271. .channel_offset = 0x1c,
  272. .timer_bit = 2,
  273. };
  274. static struct resource tmu2_resources[] = {
  275. [0] = {
  276. .start = 0xffd80020,
  277. .end = 0xffd8002b,
  278. .flags = IORESOURCE_MEM,
  279. },
  280. [1] = {
  281. .start = 18,
  282. .flags = IORESOURCE_IRQ,
  283. },
  284. };
  285. static struct platform_device tmu2_device = {
  286. .name = "sh_tmu",
  287. .id = 2,
  288. .dev = {
  289. .platform_data = &tmu2_platform_data,
  290. },
  291. .resource = tmu2_resources,
  292. .num_resources = ARRAY_SIZE(tmu2_resources),
  293. .archdata = {
  294. .hwblk_id = HWBLK_TMU0,
  295. },
  296. };
  297. static struct sh_timer_config tmu3_platform_data = {
  298. .channel_offset = 0x04,
  299. .timer_bit = 0,
  300. };
  301. static struct resource tmu3_resources[] = {
  302. [0] = {
  303. .start = 0xffd90008,
  304. .end = 0xffd90013,
  305. .flags = IORESOURCE_MEM,
  306. },
  307. [1] = {
  308. .start = 57,
  309. .flags = IORESOURCE_IRQ,
  310. },
  311. };
  312. static struct platform_device tmu3_device = {
  313. .name = "sh_tmu",
  314. .id = 3,
  315. .dev = {
  316. .platform_data = &tmu3_platform_data,
  317. },
  318. .resource = tmu3_resources,
  319. .num_resources = ARRAY_SIZE(tmu3_resources),
  320. .archdata = {
  321. .hwblk_id = HWBLK_TMU1,
  322. },
  323. };
  324. static struct sh_timer_config tmu4_platform_data = {
  325. .channel_offset = 0x10,
  326. .timer_bit = 1,
  327. };
  328. static struct resource tmu4_resources[] = {
  329. [0] = {
  330. .start = 0xffd90014,
  331. .end = 0xffd9001f,
  332. .flags = IORESOURCE_MEM,
  333. },
  334. [1] = {
  335. .start = 58,
  336. .flags = IORESOURCE_IRQ,
  337. },
  338. };
  339. static struct platform_device tmu4_device = {
  340. .name = "sh_tmu",
  341. .id = 4,
  342. .dev = {
  343. .platform_data = &tmu4_platform_data,
  344. },
  345. .resource = tmu4_resources,
  346. .num_resources = ARRAY_SIZE(tmu4_resources),
  347. .archdata = {
  348. .hwblk_id = HWBLK_TMU1,
  349. },
  350. };
  351. static struct sh_timer_config tmu5_platform_data = {
  352. .channel_offset = 0x1c,
  353. .timer_bit = 2,
  354. };
  355. static struct resource tmu5_resources[] = {
  356. [0] = {
  357. .start = 0xffd90020,
  358. .end = 0xffd9002b,
  359. .flags = IORESOURCE_MEM,
  360. },
  361. [1] = {
  362. .start = 57,
  363. .flags = IORESOURCE_IRQ,
  364. },
  365. };
  366. static struct platform_device tmu5_device = {
  367. .name = "sh_tmu",
  368. .id = 5,
  369. .dev = {
  370. .platform_data = &tmu5_platform_data,
  371. },
  372. .resource = tmu5_resources,
  373. .num_resources = ARRAY_SIZE(tmu5_resources),
  374. .archdata = {
  375. .hwblk_id = HWBLK_TMU1,
  376. },
  377. };
  378. static struct resource rtc_resources[] = {
  379. [0] = {
  380. .start = 0xa465fec0,
  381. .end = 0xa465fec0 + 0x58 - 1,
  382. .flags = IORESOURCE_IO,
  383. },
  384. [1] = {
  385. /* Period IRQ */
  386. .start = 69,
  387. .flags = IORESOURCE_IRQ,
  388. },
  389. [2] = {
  390. /* Carry IRQ */
  391. .start = 70,
  392. .flags = IORESOURCE_IRQ,
  393. },
  394. [3] = {
  395. /* Alarm IRQ */
  396. .start = 68,
  397. .flags = IORESOURCE_IRQ,
  398. },
  399. };
  400. static struct platform_device rtc_device = {
  401. .name = "sh-rtc",
  402. .id = -1,
  403. .num_resources = ARRAY_SIZE(rtc_resources),
  404. .resource = rtc_resources,
  405. .archdata = {
  406. .hwblk_id = HWBLK_RTC,
  407. },
  408. };
  409. static struct r8a66597_platdata r8a66597_data = {
  410. .on_chip = 1,
  411. };
  412. static struct resource sh7723_usb_host_resources[] = {
  413. [0] = {
  414. .start = 0xa4d80000,
  415. .end = 0xa4d800ff,
  416. .flags = IORESOURCE_MEM,
  417. },
  418. [1] = {
  419. .start = 65,
  420. .end = 65,
  421. .flags = IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
  422. },
  423. };
  424. static struct platform_device sh7723_usb_host_device = {
  425. .name = "r8a66597_hcd",
  426. .id = 0,
  427. .dev = {
  428. .dma_mask = NULL, /* not use dma */
  429. .coherent_dma_mask = 0xffffffff,
  430. .platform_data = &r8a66597_data,
  431. },
  432. .num_resources = ARRAY_SIZE(sh7723_usb_host_resources),
  433. .resource = sh7723_usb_host_resources,
  434. .archdata = {
  435. .hwblk_id = HWBLK_USB,
  436. },
  437. };
  438. static struct resource iic_resources[] = {
  439. [0] = {
  440. .name = "IIC",
  441. .start = 0x04470000,
  442. .end = 0x04470017,
  443. .flags = IORESOURCE_MEM,
  444. },
  445. [1] = {
  446. .start = 96,
  447. .end = 99,
  448. .flags = IORESOURCE_IRQ,
  449. },
  450. };
  451. static struct platform_device iic_device = {
  452. .name = "i2c-sh_mobile",
  453. .id = 0, /* "i2c0" clock */
  454. .num_resources = ARRAY_SIZE(iic_resources),
  455. .resource = iic_resources,
  456. .archdata = {
  457. .hwblk_id = HWBLK_IIC,
  458. },
  459. };
  460. static struct platform_device *sh7723_devices[] __initdata = {
  461. &scif0_device,
  462. &scif1_device,
  463. &scif2_device,
  464. &scif3_device,
  465. &scif4_device,
  466. &scif5_device,
  467. &cmt_device,
  468. &tmu0_device,
  469. &tmu1_device,
  470. &tmu2_device,
  471. &tmu3_device,
  472. &tmu4_device,
  473. &tmu5_device,
  474. &rtc_device,
  475. &iic_device,
  476. &sh7723_usb_host_device,
  477. &vpu_device,
  478. &veu0_device,
  479. &veu1_device,
  480. };
  481. static int __init sh7723_devices_setup(void)
  482. {
  483. platform_resource_setup_memory(&vpu_device, "vpu", 2 << 20);
  484. platform_resource_setup_memory(&veu0_device, "veu0", 2 << 20);
  485. platform_resource_setup_memory(&veu1_device, "veu1", 2 << 20);
  486. return platform_add_devices(sh7723_devices,
  487. ARRAY_SIZE(sh7723_devices));
  488. }
  489. arch_initcall(sh7723_devices_setup);
  490. static struct platform_device *sh7723_early_devices[] __initdata = {
  491. &scif0_device,
  492. &scif1_device,
  493. &scif2_device,
  494. &scif3_device,
  495. &scif4_device,
  496. &scif5_device,
  497. &cmt_device,
  498. &tmu0_device,
  499. &tmu1_device,
  500. &tmu2_device,
  501. &tmu3_device,
  502. &tmu4_device,
  503. &tmu5_device,
  504. };
  505. void __init plat_early_device_setup(void)
  506. {
  507. early_platform_add_devices(sh7723_early_devices,
  508. ARRAY_SIZE(sh7723_early_devices));
  509. }
  510. #define RAMCR_CACHE_L2FC 0x0002
  511. #define RAMCR_CACHE_L2E 0x0001
  512. #define L2_CACHE_ENABLE (RAMCR_CACHE_L2E|RAMCR_CACHE_L2FC)
  513. void l2_cache_init(void)
  514. {
  515. /* Enable L2 cache */
  516. __raw_writel(L2_CACHE_ENABLE, RAMCR);
  517. }
  518. enum {
  519. UNUSED=0,
  520. ENABLED,
  521. DISABLED,
  522. /* interrupt sources */
  523. IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7,
  524. HUDI,
  525. DMAC1A_DEI0,DMAC1A_DEI1,DMAC1A_DEI2,DMAC1A_DEI3,
  526. _2DG_TRI,_2DG_INI,_2DG_CEI,
  527. DMAC0A_DEI0,DMAC0A_DEI1,DMAC0A_DEI2,DMAC0A_DEI3,
  528. VIO_CEUI,VIO_BEUI,VIO_VEU2HI,VIO_VOUI,
  529. SCIFA_SCIFA0,
  530. VPU_VPUI,
  531. TPU_TPUI,
  532. ADC_ADI,
  533. USB_USI0,
  534. RTC_ATI,RTC_PRI,RTC_CUI,
  535. DMAC1B_DEI4,DMAC1B_DEI5,DMAC1B_DADERR,
  536. DMAC0B_DEI4,DMAC0B_DEI5,DMAC0B_DADERR,
  537. KEYSC_KEYI,
  538. SCIF_SCIF0,SCIF_SCIF1,SCIF_SCIF2,
  539. MSIOF_MSIOFI0,MSIOF_MSIOFI1,
  540. SCIFA_SCIFA1,
  541. FLCTL_FLSTEI,FLCTL_FLTENDI,FLCTL_FLTREQ0I,FLCTL_FLTREQ1I,
  542. I2C_ALI,I2C_TACKI,I2C_WAITI,I2C_DTEI,
  543. CMT_CMTI,
  544. TSIF_TSIFI,
  545. SIU_SIUI,
  546. SCIFA_SCIFA2,
  547. TMU0_TUNI0, TMU0_TUNI1, TMU0_TUNI2,
  548. IRDA_IRDAI,
  549. ATAPI_ATAPII,
  550. VEU2H1_VEU2HI,
  551. LCDC_LCDCI,
  552. TMU1_TUNI0,TMU1_TUNI1,TMU1_TUNI2,
  553. /* interrupt groups */
  554. DMAC1A, DMAC0A, VIO, DMAC0B, FLCTL, I2C, _2DG,
  555. SDHI1, RTC, DMAC1B, SDHI0,
  556. };
  557. static struct intc_vect vectors[] __initdata = {
  558. INTC_VECT(IRQ0, 0x600), INTC_VECT(IRQ1, 0x620),
  559. INTC_VECT(IRQ2, 0x640), INTC_VECT(IRQ3, 0x660),
  560. INTC_VECT(IRQ4, 0x680), INTC_VECT(IRQ5, 0x6a0),
  561. INTC_VECT(IRQ6, 0x6c0), INTC_VECT(IRQ7, 0x6e0),
  562. INTC_VECT(DMAC1A_DEI0,0x700),
  563. INTC_VECT(DMAC1A_DEI1,0x720),
  564. INTC_VECT(DMAC1A_DEI2,0x740),
  565. INTC_VECT(DMAC1A_DEI3,0x760),
  566. INTC_VECT(_2DG_TRI, 0x780),
  567. INTC_VECT(_2DG_INI, 0x7A0),
  568. INTC_VECT(_2DG_CEI, 0x7C0),
  569. INTC_VECT(DMAC0A_DEI0,0x800),
  570. INTC_VECT(DMAC0A_DEI1,0x820),
  571. INTC_VECT(DMAC0A_DEI2,0x840),
  572. INTC_VECT(DMAC0A_DEI3,0x860),
  573. INTC_VECT(VIO_CEUI,0x880),
  574. INTC_VECT(VIO_BEUI,0x8A0),
  575. INTC_VECT(VIO_VEU2HI,0x8C0),
  576. INTC_VECT(VIO_VOUI,0x8E0),
  577. INTC_VECT(SCIFA_SCIFA0,0x900),
  578. INTC_VECT(VPU_VPUI,0x980),
  579. INTC_VECT(TPU_TPUI,0x9A0),
  580. INTC_VECT(ADC_ADI,0x9E0),
  581. INTC_VECT(USB_USI0,0xA20),
  582. INTC_VECT(RTC_ATI,0xA80),
  583. INTC_VECT(RTC_PRI,0xAA0),
  584. INTC_VECT(RTC_CUI,0xAC0),
  585. INTC_VECT(DMAC1B_DEI4,0xB00),
  586. INTC_VECT(DMAC1B_DEI5,0xB20),
  587. INTC_VECT(DMAC1B_DADERR,0xB40),
  588. INTC_VECT(DMAC0B_DEI4,0xB80),
  589. INTC_VECT(DMAC0B_DEI5,0xBA0),
  590. INTC_VECT(DMAC0B_DADERR,0xBC0),
  591. INTC_VECT(KEYSC_KEYI,0xBE0),
  592. INTC_VECT(SCIF_SCIF0,0xC00),
  593. INTC_VECT(SCIF_SCIF1,0xC20),
  594. INTC_VECT(SCIF_SCIF2,0xC40),
  595. INTC_VECT(MSIOF_MSIOFI0,0xC80),
  596. INTC_VECT(MSIOF_MSIOFI1,0xCA0),
  597. INTC_VECT(SCIFA_SCIFA1,0xD00),
  598. INTC_VECT(FLCTL_FLSTEI,0xD80),
  599. INTC_VECT(FLCTL_FLTENDI,0xDA0),
  600. INTC_VECT(FLCTL_FLTREQ0I,0xDC0),
  601. INTC_VECT(FLCTL_FLTREQ1I,0xDE0),
  602. INTC_VECT(I2C_ALI,0xE00),
  603. INTC_VECT(I2C_TACKI,0xE20),
  604. INTC_VECT(I2C_WAITI,0xE40),
  605. INTC_VECT(I2C_DTEI,0xE60),
  606. INTC_VECT(SDHI0, 0xE80),
  607. INTC_VECT(SDHI0, 0xEA0),
  608. INTC_VECT(SDHI0, 0xEC0),
  609. INTC_VECT(CMT_CMTI,0xF00),
  610. INTC_VECT(TSIF_TSIFI,0xF20),
  611. INTC_VECT(SIU_SIUI,0xF80),
  612. INTC_VECT(SCIFA_SCIFA2,0xFA0),
  613. INTC_VECT(TMU0_TUNI0,0x400),
  614. INTC_VECT(TMU0_TUNI1,0x420),
  615. INTC_VECT(TMU0_TUNI2,0x440),
  616. INTC_VECT(IRDA_IRDAI,0x480),
  617. INTC_VECT(ATAPI_ATAPII,0x4A0),
  618. INTC_VECT(SDHI1, 0x4E0),
  619. INTC_VECT(SDHI1, 0x500),
  620. INTC_VECT(SDHI1, 0x520),
  621. INTC_VECT(VEU2H1_VEU2HI,0x560),
  622. INTC_VECT(LCDC_LCDCI,0x580),
  623. INTC_VECT(TMU1_TUNI0,0x920),
  624. INTC_VECT(TMU1_TUNI1,0x940),
  625. INTC_VECT(TMU1_TUNI2,0x960),
  626. };
  627. static struct intc_group groups[] __initdata = {
  628. INTC_GROUP(DMAC1A,DMAC1A_DEI0,DMAC1A_DEI1,DMAC1A_DEI2,DMAC1A_DEI3),
  629. INTC_GROUP(DMAC0A,DMAC0A_DEI0,DMAC0A_DEI1,DMAC0A_DEI2,DMAC0A_DEI3),
  630. INTC_GROUP(VIO, VIO_CEUI,VIO_BEUI,VIO_VEU2HI,VIO_VOUI),
  631. INTC_GROUP(DMAC0B, DMAC0B_DEI4,DMAC0B_DEI5,DMAC0B_DADERR),
  632. INTC_GROUP(FLCTL,FLCTL_FLSTEI,FLCTL_FLTENDI,FLCTL_FLTREQ0I,FLCTL_FLTREQ1I),
  633. INTC_GROUP(I2C,I2C_ALI,I2C_TACKI,I2C_WAITI,I2C_DTEI),
  634. INTC_GROUP(_2DG, _2DG_TRI,_2DG_INI,_2DG_CEI),
  635. INTC_GROUP(RTC, RTC_ATI,RTC_PRI,RTC_CUI),
  636. INTC_GROUP(DMAC1B, DMAC1B_DEI4,DMAC1B_DEI5,DMAC1B_DADERR),
  637. };
  638. static struct intc_mask_reg mask_registers[] __initdata = {
  639. { 0xa4080080, 0xa40800c0, 8, /* IMR0 / IMCR0 */
  640. { 0, TMU1_TUNI2, TMU1_TUNI1, TMU1_TUNI0,
  641. 0, DISABLED, ENABLED, ENABLED } },
  642. { 0xa4080084, 0xa40800c4, 8, /* IMR1 / IMCR1 */
  643. { VIO_VOUI, VIO_VEU2HI,VIO_BEUI,VIO_CEUI,DMAC0A_DEI3,DMAC0A_DEI2,DMAC0A_DEI1,DMAC0A_DEI0 } },
  644. { 0xa4080088, 0xa40800c8, 8, /* IMR2 / IMCR2 */
  645. { 0, 0, 0, VPU_VPUI,0,0,0,SCIFA_SCIFA0 } },
  646. { 0xa408008c, 0xa40800cc, 8, /* IMR3 / IMCR3 */
  647. { DMAC1A_DEI3,DMAC1A_DEI2,DMAC1A_DEI1,DMAC1A_DEI0,0,0,0,IRDA_IRDAI } },
  648. { 0xa4080090, 0xa40800d0, 8, /* IMR4 / IMCR4 */
  649. { 0,TMU0_TUNI2,TMU0_TUNI1,TMU0_TUNI0,VEU2H1_VEU2HI,0,0,LCDC_LCDCI } },
  650. { 0xa4080094, 0xa40800d4, 8, /* IMR5 / IMCR5 */
  651. { KEYSC_KEYI,DMAC0B_DADERR,DMAC0B_DEI5,DMAC0B_DEI4,0,SCIF_SCIF2,SCIF_SCIF1,SCIF_SCIF0 } },
  652. { 0xa4080098, 0xa40800d8, 8, /* IMR6 / IMCR6 */
  653. { 0,0,0,SCIFA_SCIFA1,ADC_ADI,0,MSIOF_MSIOFI1,MSIOF_MSIOFI0 } },
  654. { 0xa408009c, 0xa40800dc, 8, /* IMR7 / IMCR7 */
  655. { I2C_DTEI, I2C_WAITI, I2C_TACKI, I2C_ALI,
  656. FLCTL_FLTREQ1I, FLCTL_FLTREQ0I, FLCTL_FLTENDI, FLCTL_FLSTEI } },
  657. { 0xa40800a0, 0xa40800e0, 8, /* IMR8 / IMCR8 */
  658. { 0, DISABLED, ENABLED, ENABLED,
  659. 0, 0, SCIFA_SCIFA2, SIU_SIUI } },
  660. { 0xa40800a4, 0xa40800e4, 8, /* IMR9 / IMCR9 */
  661. { 0, 0, 0, CMT_CMTI, 0, 0, USB_USI0,0 } },
  662. { 0xa40800a8, 0xa40800e8, 8, /* IMR10 / IMCR10 */
  663. { 0, DMAC1B_DADERR,DMAC1B_DEI5,DMAC1B_DEI4,0,RTC_ATI,RTC_PRI,RTC_CUI } },
  664. { 0xa40800ac, 0xa40800ec, 8, /* IMR11 / IMCR11 */
  665. { 0,_2DG_CEI,_2DG_INI,_2DG_TRI,0,TPU_TPUI,0,TSIF_TSIFI } },
  666. { 0xa40800b0, 0xa40800f0, 8, /* IMR12 / IMCR12 */
  667. { 0,0,0,0,0,0,0,ATAPI_ATAPII } },
  668. { 0xa4140044, 0xa4140064, 8, /* INTMSK00 / INTMSKCLR00 */
  669. { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } },
  670. };
  671. static struct intc_prio_reg prio_registers[] __initdata = {
  672. { 0xa4080000, 0, 16, 4, /* IPRA */ { TMU0_TUNI0, TMU0_TUNI1, TMU0_TUNI2, IRDA_IRDAI } },
  673. { 0xa4080004, 0, 16, 4, /* IPRB */ { VEU2H1_VEU2HI, LCDC_LCDCI, DMAC1A, 0} },
  674. { 0xa4080008, 0, 16, 4, /* IPRC */ { TMU1_TUNI0, TMU1_TUNI1, TMU1_TUNI2, 0} },
  675. { 0xa408000c, 0, 16, 4, /* IPRD */ { } },
  676. { 0xa4080010, 0, 16, 4, /* IPRE */ { DMAC0A, VIO, SCIFA_SCIFA0, VPU_VPUI } },
  677. { 0xa4080014, 0, 16, 4, /* IPRF */ { KEYSC_KEYI, DMAC0B, USB_USI0, CMT_CMTI } },
  678. { 0xa4080018, 0, 16, 4, /* IPRG */ { SCIF_SCIF0, SCIF_SCIF1, SCIF_SCIF2,0 } },
  679. { 0xa408001c, 0, 16, 4, /* IPRH */ { MSIOF_MSIOFI0,MSIOF_MSIOFI1, FLCTL, I2C } },
  680. { 0xa4080020, 0, 16, 4, /* IPRI */ { SCIFA_SCIFA1,0,TSIF_TSIFI,_2DG } },
  681. { 0xa4080024, 0, 16, 4, /* IPRJ */ { ADC_ADI,0,SIU_SIUI,SDHI1 } },
  682. { 0xa4080028, 0, 16, 4, /* IPRK */ { RTC,DMAC1B,0,SDHI0 } },
  683. { 0xa408002c, 0, 16, 4, /* IPRL */ { SCIFA_SCIFA2,0,TPU_TPUI,ATAPI_ATAPII } },
  684. { 0xa4140010, 0, 32, 4, /* INTPRI00 */
  685. { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } },
  686. };
  687. static struct intc_sense_reg sense_registers[] __initdata = {
  688. { 0xa414001c, 16, 2, /* ICR1 */
  689. { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } },
  690. };
  691. static struct intc_mask_reg ack_registers[] __initdata = {
  692. { 0xa4140024, 0, 8, /* INTREQ00 */
  693. { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } },
  694. };
  695. static struct intc_desc intc_desc __initdata = {
  696. .name = "sh7723",
  697. .force_enable = ENABLED,
  698. .force_disable = DISABLED,
  699. .hw = INTC_HW_DESC(vectors, groups, mask_registers,
  700. prio_registers, sense_registers, ack_registers),
  701. };
  702. void __init plat_irq_setup(void)
  703. {
  704. register_intc_controller(&intc_desc);
  705. }