setup-sh7786.c 23 KB

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