setup-sh7786.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993
  1. /*
  2. * SH7786 Setup
  3. *
  4. * Copyright (C) 2009 - 2010 Renesas Solutions Corp.
  5. * Kuninori Morimoto <morimoto.kuninori@renesas.com>
  6. * Paul Mundt <paul.mundt@renesas.com>
  7. *
  8. * Based on SH7785 Setup
  9. *
  10. * Copyright (C) 2007 Paul Mundt
  11. *
  12. * This file is subject to the terms and conditions of the GNU General Public
  13. * License. See the file "COPYING" in the main directory of this archive
  14. * for more details.
  15. */
  16. #include <linux/platform_device.h>
  17. #include <linux/init.h>
  18. #include <linux/serial.h>
  19. #include <linux/serial_sci.h>
  20. #include <linux/io.h>
  21. #include <linux/mm.h>
  22. #include <linux/dma-mapping.h>
  23. #include <linux/sh_timer.h>
  24. #include <linux/sh_dma.h>
  25. #include <linux/sh_intc.h>
  26. #include <cpu/dma-register.h>
  27. #include <asm/mmzone.h>
  28. static struct plat_sci_port scif0_platform_data = {
  29. .mapbase = 0xffea0000,
  30. .flags = UPF_BOOT_AUTOCONF,
  31. .type = PORT_SCIF,
  32. .irqs = { 40, 41, 43, 42 },
  33. };
  34. static struct platform_device scif0_device = {
  35. .name = "sh-sci",
  36. .id = 0,
  37. .dev = {
  38. .platform_data = &scif0_platform_data,
  39. },
  40. };
  41. /*
  42. * The rest of these all have multiplexed IRQs
  43. */
  44. static struct plat_sci_port scif1_platform_data = {
  45. .mapbase = 0xffeb0000,
  46. .flags = UPF_BOOT_AUTOCONF,
  47. .type = PORT_SCIF,
  48. .irqs = { 44, 44, 44, 44 },
  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 = 0xffec0000,
  59. .flags = UPF_BOOT_AUTOCONF,
  60. .type = PORT_SCIF,
  61. .irqs = { 50, 50, 50, 50 },
  62. };
  63. static struct platform_device scif2_device = {
  64. .name = "sh-sci",
  65. .id = 2,
  66. .dev = {
  67. .platform_data = &scif2_platform_data,
  68. },
  69. };
  70. static struct plat_sci_port scif3_platform_data = {
  71. .mapbase = 0xffed0000,
  72. .flags = UPF_BOOT_AUTOCONF,
  73. .type = PORT_SCIF,
  74. .irqs = { 51, 51, 51, 51 },
  75. };
  76. static struct platform_device scif3_device = {
  77. .name = "sh-sci",
  78. .id = 3,
  79. .dev = {
  80. .platform_data = &scif3_platform_data,
  81. },
  82. };
  83. static struct plat_sci_port scif4_platform_data = {
  84. .mapbase = 0xffee0000,
  85. .flags = UPF_BOOT_AUTOCONF,
  86. .type = PORT_SCIF,
  87. .irqs = { 52, 52, 52, 52 },
  88. };
  89. static struct platform_device scif4_device = {
  90. .name = "sh-sci",
  91. .id = 4,
  92. .dev = {
  93. .platform_data = &scif4_platform_data,
  94. },
  95. };
  96. static struct plat_sci_port scif5_platform_data = {
  97. .mapbase = 0xffef0000,
  98. .flags = UPF_BOOT_AUTOCONF,
  99. .type = PORT_SCIF,
  100. .irqs = { 53, 53, 53, 53 },
  101. };
  102. static struct platform_device scif5_device = {
  103. .name = "sh-sci",
  104. .id = 5,
  105. .dev = {
  106. .platform_data = &scif5_platform_data,
  107. },
  108. };
  109. static struct sh_timer_config tmu0_platform_data = {
  110. .channel_offset = 0x04,
  111. .timer_bit = 0,
  112. .clockevent_rating = 200,
  113. };
  114. static struct resource tmu0_resources[] = {
  115. [0] = {
  116. .start = 0xffd80008,
  117. .end = 0xffd80013,
  118. .flags = IORESOURCE_MEM,
  119. },
  120. [1] = {
  121. .start = 16,
  122. .flags = IORESOURCE_IRQ,
  123. },
  124. };
  125. static struct platform_device tmu0_device = {
  126. .name = "sh_tmu",
  127. .id = 0,
  128. .dev = {
  129. .platform_data = &tmu0_platform_data,
  130. },
  131. .resource = tmu0_resources,
  132. .num_resources = ARRAY_SIZE(tmu0_resources),
  133. };
  134. static struct sh_timer_config tmu1_platform_data = {
  135. .channel_offset = 0x10,
  136. .timer_bit = 1,
  137. .clocksource_rating = 200,
  138. };
  139. static struct resource tmu1_resources[] = {
  140. [0] = {
  141. .start = 0xffd80014,
  142. .end = 0xffd8001f,
  143. .flags = IORESOURCE_MEM,
  144. },
  145. [1] = {
  146. .start = 17,
  147. .flags = IORESOURCE_IRQ,
  148. },
  149. };
  150. static struct platform_device tmu1_device = {
  151. .name = "sh_tmu",
  152. .id = 1,
  153. .dev = {
  154. .platform_data = &tmu1_platform_data,
  155. },
  156. .resource = tmu1_resources,
  157. .num_resources = ARRAY_SIZE(tmu1_resources),
  158. };
  159. static struct sh_timer_config tmu2_platform_data = {
  160. .channel_offset = 0x1c,
  161. .timer_bit = 2,
  162. };
  163. static struct resource tmu2_resources[] = {
  164. [0] = {
  165. .start = 0xffd80020,
  166. .end = 0xffd8002f,
  167. .flags = IORESOURCE_MEM,
  168. },
  169. [1] = {
  170. .start = 18,
  171. .flags = IORESOURCE_IRQ,
  172. },
  173. };
  174. static struct platform_device tmu2_device = {
  175. .name = "sh_tmu",
  176. .id = 2,
  177. .dev = {
  178. .platform_data = &tmu2_platform_data,
  179. },
  180. .resource = tmu2_resources,
  181. .num_resources = ARRAY_SIZE(tmu2_resources),
  182. };
  183. static struct sh_timer_config tmu3_platform_data = {
  184. .channel_offset = 0x04,
  185. .timer_bit = 0,
  186. };
  187. static struct resource tmu3_resources[] = {
  188. [0] = {
  189. .start = 0xffda0008,
  190. .end = 0xffda0013,
  191. .flags = IORESOURCE_MEM,
  192. },
  193. [1] = {
  194. .start = 20,
  195. .flags = IORESOURCE_IRQ,
  196. },
  197. };
  198. static struct platform_device tmu3_device = {
  199. .name = "sh_tmu",
  200. .id = 3,
  201. .dev = {
  202. .platform_data = &tmu3_platform_data,
  203. },
  204. .resource = tmu3_resources,
  205. .num_resources = ARRAY_SIZE(tmu3_resources),
  206. };
  207. static struct sh_timer_config tmu4_platform_data = {
  208. .channel_offset = 0x10,
  209. .timer_bit = 1,
  210. };
  211. static struct resource tmu4_resources[] = {
  212. [0] = {
  213. .start = 0xffda0014,
  214. .end = 0xffda001f,
  215. .flags = IORESOURCE_MEM,
  216. },
  217. [1] = {
  218. .start = 21,
  219. .flags = IORESOURCE_IRQ,
  220. },
  221. };
  222. static struct platform_device tmu4_device = {
  223. .name = "sh_tmu",
  224. .id = 4,
  225. .dev = {
  226. .platform_data = &tmu4_platform_data,
  227. },
  228. .resource = tmu4_resources,
  229. .num_resources = ARRAY_SIZE(tmu4_resources),
  230. };
  231. static struct sh_timer_config tmu5_platform_data = {
  232. .channel_offset = 0x1c,
  233. .timer_bit = 2,
  234. };
  235. static struct resource tmu5_resources[] = {
  236. [0] = {
  237. .start = 0xffda0020,
  238. .end = 0xffda002b,
  239. .flags = IORESOURCE_MEM,
  240. },
  241. [1] = {
  242. .start = 22,
  243. .flags = IORESOURCE_IRQ,
  244. },
  245. };
  246. static struct platform_device tmu5_device = {
  247. .name = "sh_tmu",
  248. .id = 5,
  249. .dev = {
  250. .platform_data = &tmu5_platform_data,
  251. },
  252. .resource = tmu5_resources,
  253. .num_resources = ARRAY_SIZE(tmu5_resources),
  254. };
  255. static struct sh_timer_config tmu6_platform_data = {
  256. .channel_offset = 0x04,
  257. .timer_bit = 0,
  258. };
  259. static struct resource tmu6_resources[] = {
  260. [0] = {
  261. .start = 0xffdc0008,
  262. .end = 0xffdc0013,
  263. .flags = IORESOURCE_MEM,
  264. },
  265. [1] = {
  266. .start = 45,
  267. .flags = IORESOURCE_IRQ,
  268. },
  269. };
  270. static struct platform_device tmu6_device = {
  271. .name = "sh_tmu",
  272. .id = 6,
  273. .dev = {
  274. .platform_data = &tmu6_platform_data,
  275. },
  276. .resource = tmu6_resources,
  277. .num_resources = ARRAY_SIZE(tmu6_resources),
  278. };
  279. static struct sh_timer_config tmu7_platform_data = {
  280. .channel_offset = 0x10,
  281. .timer_bit = 1,
  282. };
  283. static struct resource tmu7_resources[] = {
  284. [0] = {
  285. .start = 0xffdc0014,
  286. .end = 0xffdc001f,
  287. .flags = IORESOURCE_MEM,
  288. },
  289. [1] = {
  290. .start = 45,
  291. .flags = IORESOURCE_IRQ,
  292. },
  293. };
  294. static struct platform_device tmu7_device = {
  295. .name = "sh_tmu",
  296. .id = 7,
  297. .dev = {
  298. .platform_data = &tmu7_platform_data,
  299. },
  300. .resource = tmu7_resources,
  301. .num_resources = ARRAY_SIZE(tmu7_resources),
  302. };
  303. static struct sh_timer_config tmu8_platform_data = {
  304. .channel_offset = 0x1c,
  305. .timer_bit = 2,
  306. };
  307. static struct resource tmu8_resources[] = {
  308. [0] = {
  309. .start = 0xffdc0020,
  310. .end = 0xffdc002b,
  311. .flags = IORESOURCE_MEM,
  312. },
  313. [1] = {
  314. .start = 45,
  315. .flags = IORESOURCE_IRQ,
  316. },
  317. };
  318. static struct platform_device tmu8_device = {
  319. .name = "sh_tmu",
  320. .id = 8,
  321. .dev = {
  322. .platform_data = &tmu8_platform_data,
  323. },
  324. .resource = tmu8_resources,
  325. .num_resources = ARRAY_SIZE(tmu8_resources),
  326. };
  327. static struct sh_timer_config tmu9_platform_data = {
  328. .channel_offset = 0x04,
  329. .timer_bit = 0,
  330. };
  331. static struct resource tmu9_resources[] = {
  332. [0] = {
  333. .start = 0xffde0008,
  334. .end = 0xffde0013,
  335. .flags = IORESOURCE_MEM,
  336. },
  337. [1] = {
  338. .start = 46,
  339. .flags = IORESOURCE_IRQ,
  340. },
  341. };
  342. static struct platform_device tmu9_device = {
  343. .name = "sh_tmu",
  344. .id = 9,
  345. .dev = {
  346. .platform_data = &tmu9_platform_data,
  347. },
  348. .resource = tmu9_resources,
  349. .num_resources = ARRAY_SIZE(tmu9_resources),
  350. };
  351. static struct sh_timer_config tmu10_platform_data = {
  352. .channel_offset = 0x10,
  353. .timer_bit = 1,
  354. };
  355. static struct resource tmu10_resources[] = {
  356. [0] = {
  357. .start = 0xffde0014,
  358. .end = 0xffde001f,
  359. .flags = IORESOURCE_MEM,
  360. },
  361. [1] = {
  362. .start = 46,
  363. .flags = IORESOURCE_IRQ,
  364. },
  365. };
  366. static struct platform_device tmu10_device = {
  367. .name = "sh_tmu",
  368. .id = 10,
  369. .dev = {
  370. .platform_data = &tmu10_platform_data,
  371. },
  372. .resource = tmu10_resources,
  373. .num_resources = ARRAY_SIZE(tmu10_resources),
  374. };
  375. static struct sh_timer_config tmu11_platform_data = {
  376. .channel_offset = 0x1c,
  377. .timer_bit = 2,
  378. };
  379. static struct resource tmu11_resources[] = {
  380. [0] = {
  381. .start = 0xffde0020,
  382. .end = 0xffde002b,
  383. .flags = IORESOURCE_MEM,
  384. },
  385. [1] = {
  386. .start = 46,
  387. .flags = IORESOURCE_IRQ,
  388. },
  389. };
  390. static struct platform_device tmu11_device = {
  391. .name = "sh_tmu",
  392. .id = 11,
  393. .dev = {
  394. .platform_data = &tmu11_platform_data,
  395. },
  396. .resource = tmu11_resources,
  397. .num_resources = ARRAY_SIZE(tmu11_resources),
  398. };
  399. static const struct sh_dmae_channel dmac0_channels[] = {
  400. {
  401. .offset = 0,
  402. .dmars = 0,
  403. .dmars_bit = 0,
  404. }, {
  405. .offset = 0x10,
  406. .dmars = 0,
  407. .dmars_bit = 8,
  408. }, {
  409. .offset = 0x20,
  410. .dmars = 4,
  411. .dmars_bit = 0,
  412. }, {
  413. .offset = 0x30,
  414. .dmars = 4,
  415. .dmars_bit = 8,
  416. }, {
  417. .offset = 0x50,
  418. .dmars = 8,
  419. .dmars_bit = 0,
  420. }, {
  421. .offset = 0x60,
  422. .dmars = 8,
  423. .dmars_bit = 8,
  424. }
  425. };
  426. static const unsigned int ts_shift[] = TS_SHIFT;
  427. static struct sh_dmae_pdata dma0_platform_data = {
  428. .channel = dmac0_channels,
  429. .channel_num = ARRAY_SIZE(dmac0_channels),
  430. .ts_low_shift = CHCR_TS_LOW_SHIFT,
  431. .ts_low_mask = CHCR_TS_LOW_MASK,
  432. .ts_high_shift = CHCR_TS_HIGH_SHIFT,
  433. .ts_high_mask = CHCR_TS_HIGH_MASK,
  434. .ts_shift = ts_shift,
  435. .ts_shift_num = ARRAY_SIZE(ts_shift),
  436. .dmaor_init = DMAOR_INIT,
  437. };
  438. /* Resource order important! */
  439. static struct resource dmac0_resources[] = {
  440. {
  441. /* Channel registers and DMAOR */
  442. .start = 0xfe008020,
  443. .end = 0xfe00808f,
  444. .flags = IORESOURCE_MEM,
  445. }, {
  446. /* DMARSx */
  447. .start = 0xfe009000,
  448. .end = 0xfe00900b,
  449. .flags = IORESOURCE_MEM,
  450. }, {
  451. /* DMA error IRQ */
  452. .start = evt2irq(0x5c0),
  453. .end = evt2irq(0x5c0),
  454. .flags = IORESOURCE_IRQ,
  455. }, {
  456. /* IRQ for channels 0-5 */
  457. .start = evt2irq(0x500),
  458. .end = evt2irq(0x5a0),
  459. .flags = IORESOURCE_IRQ,
  460. },
  461. };
  462. static struct platform_device dma0_device = {
  463. .name = "sh-dma-engine",
  464. .id = 0,
  465. .resource = dmac0_resources,
  466. .num_resources = ARRAY_SIZE(dmac0_resources),
  467. .dev = {
  468. .platform_data = &dma0_platform_data,
  469. },
  470. };
  471. static struct resource usb_ohci_resources[] = {
  472. [0] = {
  473. .start = 0xffe70400,
  474. .end = 0xffe704ff,
  475. .flags = IORESOURCE_MEM,
  476. },
  477. [1] = {
  478. .start = 77,
  479. .end = 77,
  480. .flags = IORESOURCE_IRQ,
  481. },
  482. };
  483. static u64 usb_ohci_dma_mask = DMA_BIT_MASK(32);
  484. static struct platform_device usb_ohci_device = {
  485. .name = "sh_ohci",
  486. .id = -1,
  487. .dev = {
  488. .dma_mask = &usb_ohci_dma_mask,
  489. .coherent_dma_mask = DMA_BIT_MASK(32),
  490. },
  491. .num_resources = ARRAY_SIZE(usb_ohci_resources),
  492. .resource = usb_ohci_resources,
  493. };
  494. static struct platform_device *sh7786_early_devices[] __initdata = {
  495. &scif0_device,
  496. &scif1_device,
  497. &scif2_device,
  498. &scif3_device,
  499. &scif4_device,
  500. &scif5_device,
  501. &tmu0_device,
  502. &tmu1_device,
  503. &tmu2_device,
  504. &tmu3_device,
  505. &tmu4_device,
  506. &tmu5_device,
  507. &tmu6_device,
  508. &tmu7_device,
  509. &tmu8_device,
  510. &tmu9_device,
  511. &tmu10_device,
  512. &tmu11_device,
  513. };
  514. static struct platform_device *sh7786_devices[] __initdata = {
  515. &dma0_device,
  516. &usb_ohci_device,
  517. };
  518. /*
  519. * Please call this function if your platform board
  520. * use external clock for USB
  521. * */
  522. #define USBCTL0 0xffe70858
  523. #define CLOCK_MODE_MASK 0xffffff7f
  524. #define EXT_CLOCK_MODE 0x00000080
  525. void __init sh7786_usb_use_exclock(void)
  526. {
  527. u32 val = __raw_readl(USBCTL0) & CLOCK_MODE_MASK;
  528. __raw_writel(val | EXT_CLOCK_MODE, USBCTL0);
  529. }
  530. #define USBINITREG1 0xffe70094
  531. #define USBINITREG2 0xffe7009c
  532. #define USBINITVAL1 0x00ff0040
  533. #define USBINITVAL2 0x00000001
  534. #define USBPCTL1 0xffe70804
  535. #define USBST 0xffe70808
  536. #define PHY_ENB 0x00000001
  537. #define PLL_ENB 0x00000002
  538. #define PHY_RST 0x00000004
  539. #define ACT_PLL_STATUS 0xc0000000
  540. static void __init sh7786_usb_setup(void)
  541. {
  542. int i = 1000000;
  543. /*
  544. * USB initial settings
  545. *
  546. * The following settings are necessary
  547. * for using the USB modules.
  548. *
  549. * see "USB Inital Settings" for detail
  550. */
  551. __raw_writel(USBINITVAL1, USBINITREG1);
  552. __raw_writel(USBINITVAL2, USBINITREG2);
  553. /*
  554. * Set the PHY and PLL enable bit
  555. */
  556. __raw_writel(PHY_ENB | PLL_ENB, USBPCTL1);
  557. while (i--) {
  558. if (ACT_PLL_STATUS == (__raw_readl(USBST) & ACT_PLL_STATUS)) {
  559. /* Set the PHY RST bit */
  560. __raw_writel(PHY_ENB | PLL_ENB | PHY_RST, USBPCTL1);
  561. printk(KERN_INFO "sh7786 usb setup done\n");
  562. break;
  563. }
  564. cpu_relax();
  565. }
  566. }
  567. static int __init sh7786_devices_setup(void)
  568. {
  569. int ret;
  570. sh7786_usb_setup();
  571. ret = platform_add_devices(sh7786_early_devices,
  572. ARRAY_SIZE(sh7786_early_devices));
  573. if (unlikely(ret != 0))
  574. return ret;
  575. return platform_add_devices(sh7786_devices,
  576. ARRAY_SIZE(sh7786_devices));
  577. }
  578. arch_initcall(sh7786_devices_setup);
  579. void __init plat_early_device_setup(void)
  580. {
  581. early_platform_add_devices(sh7786_early_devices,
  582. ARRAY_SIZE(sh7786_early_devices));
  583. }
  584. enum {
  585. UNUSED = 0,
  586. /* interrupt sources */
  587. IRL0_LLLL, IRL0_LLLH, IRL0_LLHL, IRL0_LLHH,
  588. IRL0_LHLL, IRL0_LHLH, IRL0_LHHL, IRL0_LHHH,
  589. IRL0_HLLL, IRL0_HLLH, IRL0_HLHL, IRL0_HLHH,
  590. IRL0_HHLL, IRL0_HHLH, IRL0_HHHL,
  591. IRL4_LLLL, IRL4_LLLH, IRL4_LLHL, IRL4_LLHH,
  592. IRL4_LHLL, IRL4_LHLH, IRL4_LHHL, IRL4_LHHH,
  593. IRL4_HLLL, IRL4_HLLH, IRL4_HLHL, IRL4_HLHH,
  594. IRL4_HHLL, IRL4_HHLH, IRL4_HHHL,
  595. IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7,
  596. WDT,
  597. TMU0_0, TMU0_1, TMU0_2, TMU0_3,
  598. TMU1_0, TMU1_1, TMU1_2,
  599. DMAC0_0, DMAC0_1, DMAC0_2, DMAC0_3, DMAC0_4, DMAC0_5, DMAC0_6,
  600. HUDI1, HUDI0,
  601. DMAC1_0, DMAC1_1, DMAC1_2, DMAC1_3,
  602. HPB_0, HPB_1, HPB_2,
  603. SCIF0_0, SCIF0_1, SCIF0_2, SCIF0_3,
  604. SCIF1,
  605. TMU2, TMU3,
  606. SCIF2, SCIF3, SCIF4, SCIF5,
  607. Eth_0, Eth_1,
  608. PCIeC0_0, PCIeC0_1, PCIeC0_2,
  609. PCIeC1_0, PCIeC1_1, PCIeC1_2,
  610. USB,
  611. I2C0, I2C1,
  612. DU,
  613. SSI0, SSI1, SSI2, SSI3,
  614. PCIeC2_0, PCIeC2_1, PCIeC2_2,
  615. HAC0, HAC1,
  616. FLCTL,
  617. HSPI,
  618. GPIO0, GPIO1,
  619. Thermal,
  620. INTICI0, INTICI1, INTICI2, INTICI3,
  621. INTICI4, INTICI5, INTICI6, INTICI7,
  622. };
  623. static struct intc_vect vectors[] __initdata = {
  624. INTC_VECT(WDT, 0x3e0),
  625. INTC_VECT(TMU0_0, 0x400), INTC_VECT(TMU0_1, 0x420),
  626. INTC_VECT(TMU0_2, 0x440), INTC_VECT(TMU0_3, 0x460),
  627. INTC_VECT(TMU1_0, 0x480), INTC_VECT(TMU1_1, 0x4a0),
  628. INTC_VECT(TMU1_2, 0x4c0),
  629. INTC_VECT(DMAC0_0, 0x500), INTC_VECT(DMAC0_1, 0x520),
  630. INTC_VECT(DMAC0_2, 0x540), INTC_VECT(DMAC0_3, 0x560),
  631. INTC_VECT(DMAC0_4, 0x580), INTC_VECT(DMAC0_5, 0x5a0),
  632. INTC_VECT(DMAC0_6, 0x5c0),
  633. INTC_VECT(HUDI1, 0x5e0), INTC_VECT(HUDI0, 0x600),
  634. INTC_VECT(DMAC1_0, 0x620), INTC_VECT(DMAC1_1, 0x640),
  635. INTC_VECT(DMAC1_2, 0x660), INTC_VECT(DMAC1_3, 0x680),
  636. INTC_VECT(HPB_0, 0x6a0), INTC_VECT(HPB_1, 0x6c0),
  637. INTC_VECT(HPB_2, 0x6e0),
  638. INTC_VECT(SCIF0_0, 0x700), INTC_VECT(SCIF0_1, 0x720),
  639. INTC_VECT(SCIF0_2, 0x740), INTC_VECT(SCIF0_3, 0x760),
  640. INTC_VECT(SCIF1, 0x780),
  641. INTC_VECT(TMU2, 0x7a0), INTC_VECT(TMU3, 0x7c0),
  642. INTC_VECT(SCIF2, 0x840), INTC_VECT(SCIF3, 0x860),
  643. INTC_VECT(SCIF4, 0x880), INTC_VECT(SCIF5, 0x8a0),
  644. INTC_VECT(Eth_0, 0x8c0), INTC_VECT(Eth_1, 0x8e0),
  645. INTC_VECT(PCIeC0_0, 0xae0), INTC_VECT(PCIeC0_1, 0xb00),
  646. INTC_VECT(PCIeC0_2, 0xb20),
  647. INTC_VECT(PCIeC1_0, 0xb40), INTC_VECT(PCIeC1_1, 0xb60),
  648. INTC_VECT(PCIeC1_2, 0xb80),
  649. INTC_VECT(USB, 0xba0),
  650. INTC_VECT(I2C0, 0xcc0), INTC_VECT(I2C1, 0xce0),
  651. INTC_VECT(DU, 0xd00),
  652. INTC_VECT(SSI0, 0xd20), INTC_VECT(SSI1, 0xd40),
  653. INTC_VECT(SSI2, 0xd60), INTC_VECT(SSI3, 0xd80),
  654. INTC_VECT(PCIeC2_0, 0xda0), INTC_VECT(PCIeC2_1, 0xdc0),
  655. INTC_VECT(PCIeC2_2, 0xde0),
  656. INTC_VECT(HAC0, 0xe00), INTC_VECT(HAC1, 0xe20),
  657. INTC_VECT(FLCTL, 0xe40),
  658. INTC_VECT(HSPI, 0xe80),
  659. INTC_VECT(GPIO0, 0xea0), INTC_VECT(GPIO1, 0xec0),
  660. INTC_VECT(Thermal, 0xee0),
  661. INTC_VECT(INTICI0, 0xf00), INTC_VECT(INTICI1, 0xf20),
  662. INTC_VECT(INTICI2, 0xf40), INTC_VECT(INTICI3, 0xf60),
  663. INTC_VECT(INTICI4, 0xf80), INTC_VECT(INTICI5, 0xfa0),
  664. INTC_VECT(INTICI6, 0xfc0), INTC_VECT(INTICI7, 0xfe0),
  665. };
  666. #define CnINTMSK0 0xfe410030
  667. #define CnINTMSK1 0xfe410040
  668. #define CnINTMSKCLR0 0xfe410050
  669. #define CnINTMSKCLR1 0xfe410060
  670. #define CnINT2MSKR0 0xfe410a20
  671. #define CnINT2MSKR1 0xfe410a24
  672. #define CnINT2MSKR2 0xfe410a28
  673. #define CnINT2MSKR3 0xfe410a2c
  674. #define CnINT2MSKCR0 0xfe410a30
  675. #define CnINT2MSKCR1 0xfe410a34
  676. #define CnINT2MSKCR2 0xfe410a38
  677. #define CnINT2MSKCR3 0xfe410a3c
  678. #define INTMSK2 0xfe410068
  679. #define INTMSKCLR2 0xfe41006c
  680. #define INTDISTCR0 0xfe4100b0
  681. #define INTDISTCR1 0xfe4100b4
  682. #define INTACK 0xfe4100b8
  683. #define INTACKCLR 0xfe4100bc
  684. #define INT2DISTCR0 0xfe410900
  685. #define INT2DISTCR1 0xfe410904
  686. #define INT2DISTCR2 0xfe410908
  687. #define INT2DISTCR3 0xfe41090c
  688. static struct intc_mask_reg mask_registers[] __initdata = {
  689. { CnINTMSK0, CnINTMSKCLR0, 32,
  690. { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 },
  691. INTC_SMP_BALANCING(INTDISTCR0) },
  692. { INTMSK2, INTMSKCLR2, 32,
  693. { IRL0_LLLL, IRL0_LLLH, IRL0_LLHL, IRL0_LLHH,
  694. IRL0_LHLL, IRL0_LHLH, IRL0_LHHL, IRL0_LHHH,
  695. IRL0_HLLL, IRL0_HLLH, IRL0_HLHL, IRL0_HLHH,
  696. IRL0_HHLL, IRL0_HHLH, IRL0_HHHL, 0,
  697. IRL4_LLLL, IRL4_LLLH, IRL4_LLHL, IRL4_LLHH,
  698. IRL4_LHLL, IRL4_LHLH, IRL4_LHHL, IRL4_LHHH,
  699. IRL4_HLLL, IRL4_HLLH, IRL4_HLHL, IRL4_HLHH,
  700. IRL4_HHLL, IRL4_HHLH, IRL4_HHHL, 0, } },
  701. { CnINT2MSKR0, CnINT2MSKCR0 , 32,
  702. { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  703. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, WDT },
  704. INTC_SMP_BALANCING(INT2DISTCR0) },
  705. { CnINT2MSKR1, CnINT2MSKCR1, 32,
  706. { TMU0_0, TMU0_1, TMU0_2, TMU0_3, TMU1_0, TMU1_1, TMU1_2, 0,
  707. DMAC0_0, DMAC0_1, DMAC0_2, DMAC0_3, DMAC0_4, DMAC0_5, DMAC0_6,
  708. HUDI1, HUDI0,
  709. DMAC1_0, DMAC1_1, DMAC1_2, DMAC1_3,
  710. HPB_0, HPB_1, HPB_2,
  711. SCIF0_0, SCIF0_1, SCIF0_2, SCIF0_3,
  712. SCIF1,
  713. TMU2, TMU3, 0, }, INTC_SMP_BALANCING(INT2DISTCR1) },
  714. { CnINT2MSKR2, CnINT2MSKCR2, 32,
  715. { 0, 0, SCIF2, SCIF3, SCIF4, SCIF5,
  716. Eth_0, Eth_1,
  717. 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  718. PCIeC0_0, PCIeC0_1, PCIeC0_2,
  719. PCIeC1_0, PCIeC1_1, PCIeC1_2,
  720. USB, 0, 0 }, INTC_SMP_BALANCING(INT2DISTCR2) },
  721. { CnINT2MSKR3, CnINT2MSKCR3, 32,
  722. { 0, 0, 0, 0, 0, 0,
  723. I2C0, I2C1,
  724. DU, SSI0, SSI1, SSI2, SSI3,
  725. PCIeC2_0, PCIeC2_1, PCIeC2_2,
  726. HAC0, HAC1,
  727. FLCTL, 0,
  728. HSPI, GPIO0, GPIO1, Thermal,
  729. 0, 0, 0, 0, 0, 0, 0, 0 }, INTC_SMP_BALANCING(INT2DISTCR3) },
  730. };
  731. static struct intc_prio_reg prio_registers[] __initdata = {
  732. { 0xfe410010, 0, 32, 4, /* INTPRI */ { IRQ0, IRQ1, IRQ2, IRQ3,
  733. IRQ4, IRQ5, IRQ6, IRQ7 } },
  734. { 0xfe410800, 0, 32, 8, /* INT2PRI0 */ { 0, 0, 0, WDT } },
  735. { 0xfe410804, 0, 32, 8, /* INT2PRI1 */ { TMU0_0, TMU0_1,
  736. TMU0_2, TMU0_3 } },
  737. { 0xfe410808, 0, 32, 8, /* INT2PRI2 */ { TMU1_0, TMU1_1,
  738. TMU1_2, 0 } },
  739. { 0xfe41080c, 0, 32, 8, /* INT2PRI3 */ { DMAC0_0, DMAC0_1,
  740. DMAC0_2, DMAC0_3 } },
  741. { 0xfe410810, 0, 32, 8, /* INT2PRI4 */ { DMAC0_4, DMAC0_5,
  742. DMAC0_6, HUDI1 } },
  743. { 0xfe410814, 0, 32, 8, /* INT2PRI5 */ { HUDI0, DMAC1_0,
  744. DMAC1_1, DMAC1_2 } },
  745. { 0xfe410818, 0, 32, 8, /* INT2PRI6 */ { DMAC1_3, HPB_0,
  746. HPB_1, HPB_2 } },
  747. { 0xfe41081c, 0, 32, 8, /* INT2PRI7 */ { SCIF0_0, SCIF0_1,
  748. SCIF0_2, SCIF0_3 } },
  749. { 0xfe410820, 0, 32, 8, /* INT2PRI8 */ { SCIF1, TMU2, TMU3, 0 } },
  750. { 0xfe410824, 0, 32, 8, /* INT2PRI9 */ { 0, 0, SCIF2, SCIF3 } },
  751. { 0xfe410828, 0, 32, 8, /* INT2PRI10 */ { SCIF4, SCIF5,
  752. Eth_0, Eth_1 } },
  753. { 0xfe41082c, 0, 32, 8, /* INT2PRI11 */ { 0, 0, 0, 0 } },
  754. { 0xfe410830, 0, 32, 8, /* INT2PRI12 */ { 0, 0, 0, 0 } },
  755. { 0xfe410834, 0, 32, 8, /* INT2PRI13 */ { 0, 0, 0, 0 } },
  756. { 0xfe410838, 0, 32, 8, /* INT2PRI14 */ { 0, 0, 0, PCIeC0_0 } },
  757. { 0xfe41083c, 0, 32, 8, /* INT2PRI15 */ { PCIeC0_1, PCIeC0_2,
  758. PCIeC1_0, PCIeC1_1 } },
  759. { 0xfe410840, 0, 32, 8, /* INT2PRI16 */ { PCIeC1_2, USB, 0, 0 } },
  760. { 0xfe410844, 0, 32, 8, /* INT2PRI17 */ { 0, 0, 0, 0 } },
  761. { 0xfe410848, 0, 32, 8, /* INT2PRI18 */ { 0, 0, I2C0, I2C1 } },
  762. { 0xfe41084c, 0, 32, 8, /* INT2PRI19 */ { DU, SSI0, SSI1, SSI2 } },
  763. { 0xfe410850, 0, 32, 8, /* INT2PRI20 */ { SSI3, PCIeC2_0,
  764. PCIeC2_1, PCIeC2_2 } },
  765. { 0xfe410854, 0, 32, 8, /* INT2PRI21 */ { HAC0, HAC1, FLCTL, 0 } },
  766. { 0xfe410858, 0, 32, 8, /* INT2PRI22 */ { HSPI, GPIO0,
  767. GPIO1, Thermal } },
  768. { 0xfe41085c, 0, 32, 8, /* INT2PRI23 */ { 0, 0, 0, 0 } },
  769. { 0xfe410860, 0, 32, 8, /* INT2PRI24 */ { 0, 0, 0, 0 } },
  770. { 0xfe410090, 0xfe4100a0, 32, 4, /* CnICIPRI / CnICIPRICLR */
  771. { INTICI7, INTICI6, INTICI5, INTICI4,
  772. INTICI3, INTICI2, INTICI1, INTICI0 }, INTC_SMP(4, 2) },
  773. };
  774. static DECLARE_INTC_DESC(intc_desc, "sh7786", vectors, NULL,
  775. mask_registers, prio_registers, NULL);
  776. /* Support for external interrupt pins in IRQ mode */
  777. static struct intc_vect vectors_irq0123[] __initdata = {
  778. INTC_VECT(IRQ0, 0x200), INTC_VECT(IRQ1, 0x240),
  779. INTC_VECT(IRQ2, 0x280), INTC_VECT(IRQ3, 0x2c0),
  780. };
  781. static struct intc_vect vectors_irq4567[] __initdata = {
  782. INTC_VECT(IRQ4, 0x300), INTC_VECT(IRQ5, 0x340),
  783. INTC_VECT(IRQ6, 0x380), INTC_VECT(IRQ7, 0x3c0),
  784. };
  785. static struct intc_sense_reg sense_registers[] __initdata = {
  786. { 0xfe41001c, 32, 2, /* ICR1 */ { IRQ0, IRQ1, IRQ2, IRQ3,
  787. IRQ4, IRQ5, IRQ6, IRQ7 } },
  788. };
  789. static struct intc_mask_reg ack_registers[] __initdata = {
  790. { 0xfe410024, 0, 32, /* INTREQ */
  791. { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } },
  792. };
  793. static DECLARE_INTC_DESC_ACK(intc_desc_irq0123, "sh7786-irq0123",
  794. vectors_irq0123, NULL, mask_registers,
  795. prio_registers, sense_registers, ack_registers);
  796. static DECLARE_INTC_DESC_ACK(intc_desc_irq4567, "sh7786-irq4567",
  797. vectors_irq4567, NULL, mask_registers,
  798. prio_registers, sense_registers, ack_registers);
  799. /* External interrupt pins in IRL mode */
  800. static struct intc_vect vectors_irl0123[] __initdata = {
  801. INTC_VECT(IRL0_LLLL, 0x200), INTC_VECT(IRL0_LLLH, 0x220),
  802. INTC_VECT(IRL0_LLHL, 0x240), INTC_VECT(IRL0_LLHH, 0x260),
  803. INTC_VECT(IRL0_LHLL, 0x280), INTC_VECT(IRL0_LHLH, 0x2a0),
  804. INTC_VECT(IRL0_LHHL, 0x2c0), INTC_VECT(IRL0_LHHH, 0x2e0),
  805. INTC_VECT(IRL0_HLLL, 0x300), INTC_VECT(IRL0_HLLH, 0x320),
  806. INTC_VECT(IRL0_HLHL, 0x340), INTC_VECT(IRL0_HLHH, 0x360),
  807. INTC_VECT(IRL0_HHLL, 0x380), INTC_VECT(IRL0_HHLH, 0x3a0),
  808. INTC_VECT(IRL0_HHHL, 0x3c0),
  809. };
  810. static struct intc_vect vectors_irl4567[] __initdata = {
  811. INTC_VECT(IRL4_LLLL, 0x900), INTC_VECT(IRL4_LLLH, 0x920),
  812. INTC_VECT(IRL4_LLHL, 0x940), INTC_VECT(IRL4_LLHH, 0x960),
  813. INTC_VECT(IRL4_LHLL, 0x980), INTC_VECT(IRL4_LHLH, 0x9a0),
  814. INTC_VECT(IRL4_LHHL, 0x9c0), INTC_VECT(IRL4_LHHH, 0x9e0),
  815. INTC_VECT(IRL4_HLLL, 0xa00), INTC_VECT(IRL4_HLLH, 0xa20),
  816. INTC_VECT(IRL4_HLHL, 0xa40), INTC_VECT(IRL4_HLHH, 0xa60),
  817. INTC_VECT(IRL4_HHLL, 0xa80), INTC_VECT(IRL4_HHLH, 0xaa0),
  818. INTC_VECT(IRL4_HHHL, 0xac0),
  819. };
  820. static DECLARE_INTC_DESC(intc_desc_irl0123, "sh7786-irl0123", vectors_irl0123,
  821. NULL, mask_registers, NULL, NULL);
  822. static DECLARE_INTC_DESC(intc_desc_irl4567, "sh7786-irl4567", vectors_irl4567,
  823. NULL, mask_registers, NULL, NULL);
  824. #define INTC_ICR0 0xfe410000
  825. #define INTC_INTMSK0 CnINTMSK0
  826. #define INTC_INTMSK1 CnINTMSK1
  827. #define INTC_INTMSK2 INTMSK2
  828. #define INTC_INTMSKCLR1 CnINTMSKCLR1
  829. #define INTC_INTMSKCLR2 INTMSKCLR2
  830. #define INTC_USERIMASK 0xfe411000
  831. #ifdef CONFIG_INTC_BALANCING
  832. unsigned int irq_lookup(unsigned int irq)
  833. {
  834. return __raw_readl(INTACK) & 1 ? irq : NO_IRQ_IGNORE;
  835. }
  836. void irq_finish(unsigned int irq)
  837. {
  838. __raw_writel(irq2evt(irq), INTACKCLR);
  839. }
  840. #endif
  841. void __init plat_irq_setup(void)
  842. {
  843. /* disable IRQ3-0 + IRQ7-4 */
  844. __raw_writel(0xff000000, INTC_INTMSK0);
  845. /* disable IRL3-0 + IRL7-4 */
  846. __raw_writel(0xc0000000, INTC_INTMSK1);
  847. __raw_writel(0xfffefffe, INTC_INTMSK2);
  848. /* select IRL mode for IRL3-0 + IRL7-4 */
  849. __raw_writel(__raw_readl(INTC_ICR0) & ~0x00c00000, INTC_ICR0);
  850. register_intc_controller(&intc_desc);
  851. register_intc_userimask(INTC_USERIMASK);
  852. }
  853. void __init plat_irq_setup_pins(int mode)
  854. {
  855. switch (mode) {
  856. case IRQ_MODE_IRQ7654:
  857. /* select IRQ mode for IRL7-4 */
  858. __raw_writel(__raw_readl(INTC_ICR0) | 0x00400000, INTC_ICR0);
  859. register_intc_controller(&intc_desc_irq4567);
  860. break;
  861. case IRQ_MODE_IRQ3210:
  862. /* select IRQ mode for IRL3-0 */
  863. __raw_writel(__raw_readl(INTC_ICR0) | 0x00800000, INTC_ICR0);
  864. register_intc_controller(&intc_desc_irq0123);
  865. break;
  866. case IRQ_MODE_IRL7654:
  867. /* enable IRL7-4 but don't provide any masking */
  868. __raw_writel(0x40000000, INTC_INTMSKCLR1);
  869. __raw_writel(0x0000fffe, INTC_INTMSKCLR2);
  870. break;
  871. case IRQ_MODE_IRL3210:
  872. /* enable IRL0-3 but don't provide any masking */
  873. __raw_writel(0x80000000, INTC_INTMSKCLR1);
  874. __raw_writel(0xfffe0000, INTC_INTMSKCLR2);
  875. break;
  876. case IRQ_MODE_IRL7654_MASK:
  877. /* enable IRL7-4 and mask using cpu intc controller */
  878. __raw_writel(0x40000000, INTC_INTMSKCLR1);
  879. register_intc_controller(&intc_desc_irl4567);
  880. break;
  881. case IRQ_MODE_IRL3210_MASK:
  882. /* enable IRL0-3 and mask using cpu intc controller */
  883. __raw_writel(0x80000000, INTC_INTMSKCLR1);
  884. register_intc_controller(&intc_desc_irl0123);
  885. break;
  886. default:
  887. BUG();
  888. }
  889. }
  890. void __init plat_mem_setup(void)
  891. {
  892. }