setup-sh7723.c 19 KB

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