setup-sh7723.c 18 KB

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