setup-sh7786.c 27 KB

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