setup-sh7723.c 18 KB

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