setup-sh7786.c 23 KB

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