setup-sh7760.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * SH7760 Setup
  4. *
  5. * Copyright (C) 2006 Paul Mundt
  6. */
  7. #include <linux/platform_device.h>
  8. #include <linux/init.h>
  9. #include <linux/serial.h>
  10. #include <linux/sh_timer.h>
  11. #include <linux/sh_intc.h>
  12. #include <linux/serial_sci.h>
  13. #include <linux/io.h>
  14. #include <asm/platform_early.h>
  15. enum {
  16. UNUSED = 0,
  17. /* interrupt sources */
  18. IRL0, IRL1, IRL2, IRL3,
  19. HUDI, GPIOI, DMAC,
  20. IRQ4, IRQ5, IRQ6, IRQ7,
  21. HCAN20, HCAN21,
  22. SSI0, SSI1,
  23. HAC0, HAC1,
  24. I2C0, I2C1,
  25. USB, LCDC,
  26. DMABRG0, DMABRG1, DMABRG2,
  27. SCIF0_ERI, SCIF0_RXI, SCIF0_BRI, SCIF0_TXI,
  28. SCIF1_ERI, SCIF1_RXI, SCIF1_BRI, SCIF1_TXI,
  29. SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI,
  30. SIM_ERI, SIM_RXI, SIM_TXI, SIM_TEI,
  31. HSPI,
  32. MMCIF0, MMCIF1, MMCIF2, MMCIF3,
  33. MFI, ADC, CMT,
  34. TMU0, TMU1, TMU2,
  35. WDT, REF,
  36. /* interrupt groups */
  37. DMABRG, SCIF0, SCIF1, SCIF2, SIM, MMCIF,
  38. };
  39. static struct intc_vect vectors[] __initdata = {
  40. INTC_VECT(HUDI, 0x600), INTC_VECT(GPIOI, 0x620),
  41. INTC_VECT(DMAC, 0x640), INTC_VECT(DMAC, 0x660),
  42. INTC_VECT(DMAC, 0x680), INTC_VECT(DMAC, 0x6a0),
  43. INTC_VECT(DMAC, 0x780), INTC_VECT(DMAC, 0x7a0),
  44. INTC_VECT(DMAC, 0x7c0), INTC_VECT(DMAC, 0x7e0),
  45. INTC_VECT(DMAC, 0x6c0),
  46. INTC_VECT(IRQ4, 0x800), INTC_VECT(IRQ5, 0x820),
  47. INTC_VECT(IRQ6, 0x840), INTC_VECT(IRQ6, 0x860),
  48. INTC_VECT(HCAN20, 0x900), INTC_VECT(HCAN21, 0x920),
  49. INTC_VECT(SSI0, 0x940), INTC_VECT(SSI1, 0x960),
  50. INTC_VECT(HAC0, 0x980), INTC_VECT(HAC1, 0x9a0),
  51. INTC_VECT(I2C0, 0x9c0), INTC_VECT(I2C1, 0x9e0),
  52. INTC_VECT(USB, 0xa00), INTC_VECT(LCDC, 0xa20),
  53. INTC_VECT(DMABRG0, 0xa80), INTC_VECT(DMABRG1, 0xaa0),
  54. INTC_VECT(DMABRG2, 0xac0),
  55. INTC_VECT(SCIF0_ERI, 0x880), INTC_VECT(SCIF0_RXI, 0x8a0),
  56. INTC_VECT(SCIF0_BRI, 0x8c0), INTC_VECT(SCIF0_TXI, 0x8e0),
  57. INTC_VECT(SCIF1_ERI, 0xb00), INTC_VECT(SCIF1_RXI, 0xb20),
  58. INTC_VECT(SCIF1_BRI, 0xb40), INTC_VECT(SCIF1_TXI, 0xb60),
  59. INTC_VECT(SCIF2_ERI, 0xb80), INTC_VECT(SCIF2_RXI, 0xba0),
  60. INTC_VECT(SCIF2_BRI, 0xbc0), INTC_VECT(SCIF2_TXI, 0xbe0),
  61. INTC_VECT(SIM_ERI, 0xc00), INTC_VECT(SIM_RXI, 0xc20),
  62. INTC_VECT(SIM_TXI, 0xc40), INTC_VECT(SIM_TEI, 0xc60),
  63. INTC_VECT(HSPI, 0xc80),
  64. INTC_VECT(MMCIF0, 0xd00), INTC_VECT(MMCIF1, 0xd20),
  65. INTC_VECT(MMCIF2, 0xd40), INTC_VECT(MMCIF3, 0xd60),
  66. INTC_VECT(MFI, 0xe80), /* 0xf80 according to data sheet */
  67. INTC_VECT(ADC, 0xf80), INTC_VECT(CMT, 0xfa0),
  68. INTC_VECT(TMU0, 0x400), INTC_VECT(TMU1, 0x420),
  69. INTC_VECT(TMU2, 0x440), INTC_VECT(TMU2, 0x460),
  70. INTC_VECT(WDT, 0x560),
  71. INTC_VECT(REF, 0x580), INTC_VECT(REF, 0x5a0),
  72. };
  73. static struct intc_group groups[] __initdata = {
  74. INTC_GROUP(DMABRG, DMABRG0, DMABRG1, DMABRG2),
  75. INTC_GROUP(SCIF0, SCIF0_ERI, SCIF0_RXI, SCIF0_BRI, SCIF0_TXI),
  76. INTC_GROUP(SCIF1, SCIF1_ERI, SCIF1_RXI, SCIF1_BRI, SCIF1_TXI),
  77. INTC_GROUP(SCIF2, SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI),
  78. INTC_GROUP(SIM, SIM_ERI, SIM_RXI, SIM_TXI, SIM_TEI),
  79. INTC_GROUP(MMCIF, MMCIF0, MMCIF1, MMCIF2, MMCIF3),
  80. };
  81. static struct intc_mask_reg mask_registers[] __initdata = {
  82. { 0xfe080040, 0xfe080060, 32, /* INTMSK00 / INTMSKCLR00 */
  83. { IRQ4, IRQ5, IRQ6, IRQ7, 0, 0, HCAN20, HCAN21,
  84. SSI0, SSI1, HAC0, HAC1, I2C0, I2C1, USB, LCDC,
  85. 0, DMABRG0, DMABRG1, DMABRG2,
  86. SCIF0_ERI, SCIF0_RXI, SCIF0_BRI, SCIF0_TXI,
  87. SCIF1_ERI, SCIF1_RXI, SCIF1_BRI, SCIF1_TXI,
  88. SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI, } },
  89. { 0xfe080044, 0xfe080064, 32, /* INTMSK04 / INTMSKCLR04 */
  90. { 0, 0, 0, 0, 0, 0, 0, 0,
  91. SIM_ERI, SIM_RXI, SIM_TXI, SIM_TEI,
  92. HSPI, MMCIF0, MMCIF1, MMCIF2,
  93. MMCIF3, 0, 0, 0, 0, 0, 0, 0,
  94. 0, MFI, 0, 0, 0, 0, ADC, CMT, } },
  95. };
  96. static struct intc_prio_reg prio_registers[] __initdata = {
  97. { 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2 } },
  98. { 0xffd00008, 0, 16, 4, /* IPRB */ { WDT, REF, 0, 0 } },
  99. { 0xffd0000c, 0, 16, 4, /* IPRC */ { GPIOI, DMAC, 0, HUDI } },
  100. { 0xffd00010, 0, 16, 4, /* IPRD */ { IRL0, IRL1, IRL2, IRL3 } },
  101. { 0xfe080000, 0, 32, 4, /* INTPRI00 */ { IRQ4, IRQ5, IRQ6, IRQ7 } },
  102. { 0xfe080004, 0, 32, 4, /* INTPRI04 */ { HCAN20, HCAN21, SSI0, SSI1,
  103. HAC0, HAC1, I2C0, I2C1 } },
  104. { 0xfe080008, 0, 32, 4, /* INTPRI08 */ { USB, LCDC, DMABRG, SCIF0,
  105. SCIF1, SCIF2, SIM, HSPI } },
  106. { 0xfe08000c, 0, 32, 4, /* INTPRI0C */ { 0, 0, MMCIF, 0,
  107. MFI, 0, ADC, CMT } },
  108. };
  109. static DECLARE_INTC_DESC(intc_desc, "sh7760", vectors, groups,
  110. mask_registers, prio_registers, NULL);
  111. static struct intc_vect vectors_irq[] __initdata = {
  112. INTC_VECT(IRL0, 0x240), INTC_VECT(IRL1, 0x2a0),
  113. INTC_VECT(IRL2, 0x300), INTC_VECT(IRL3, 0x360),
  114. };
  115. static DECLARE_INTC_DESC(intc_desc_irq, "sh7760-irq", vectors_irq, groups,
  116. mask_registers, prio_registers, NULL);
  117. static struct plat_sci_port scif0_platform_data = {
  118. .scscr = SCSCR_REIE,
  119. .type = PORT_SCIF,
  120. .regtype = SCIx_SH4_SCIF_FIFODATA_REGTYPE,
  121. };
  122. static struct resource scif0_resources[] = {
  123. DEFINE_RES_MEM(0xfe600000, 0x100),
  124. DEFINE_RES_IRQ(evt2irq(0x880)),
  125. DEFINE_RES_IRQ(evt2irq(0x8a0)),
  126. DEFINE_RES_IRQ(evt2irq(0x8e0)),
  127. DEFINE_RES_IRQ(evt2irq(0x8c0)),
  128. };
  129. static struct platform_device scif0_device = {
  130. .name = "sh-sci",
  131. .id = 0,
  132. .resource = scif0_resources,
  133. .num_resources = ARRAY_SIZE(scif0_resources),
  134. .dev = {
  135. .platform_data = &scif0_platform_data,
  136. },
  137. };
  138. static struct plat_sci_port scif1_platform_data = {
  139. .type = PORT_SCIF,
  140. .scscr = SCSCR_REIE,
  141. .regtype = SCIx_SH4_SCIF_FIFODATA_REGTYPE,
  142. };
  143. static struct resource scif1_resources[] = {
  144. DEFINE_RES_MEM(0xfe610000, 0x100),
  145. DEFINE_RES_IRQ(evt2irq(0xb00)),
  146. DEFINE_RES_IRQ(evt2irq(0xb20)),
  147. DEFINE_RES_IRQ(evt2irq(0xb60)),
  148. DEFINE_RES_IRQ(evt2irq(0xb40)),
  149. };
  150. static struct platform_device scif1_device = {
  151. .name = "sh-sci",
  152. .id = 1,
  153. .resource = scif1_resources,
  154. .num_resources = ARRAY_SIZE(scif1_resources),
  155. .dev = {
  156. .platform_data = &scif1_platform_data,
  157. },
  158. };
  159. static struct plat_sci_port scif2_platform_data = {
  160. .scscr = SCSCR_REIE,
  161. .type = PORT_SCIF,
  162. .regtype = SCIx_SH4_SCIF_FIFODATA_REGTYPE,
  163. };
  164. static struct resource scif2_resources[] = {
  165. DEFINE_RES_MEM(0xfe620000, 0x100),
  166. DEFINE_RES_IRQ(evt2irq(0xb80)),
  167. DEFINE_RES_IRQ(evt2irq(0xba0)),
  168. DEFINE_RES_IRQ(evt2irq(0xbe0)),
  169. DEFINE_RES_IRQ(evt2irq(0xbc0)),
  170. };
  171. static struct platform_device scif2_device = {
  172. .name = "sh-sci",
  173. .id = 2,
  174. .resource = scif2_resources,
  175. .num_resources = ARRAY_SIZE(scif2_resources),
  176. .dev = {
  177. .platform_data = &scif2_platform_data,
  178. },
  179. };
  180. static struct plat_sci_port scif3_platform_data = {
  181. /*
  182. * This is actually a SIM card module serial port, based on an SCI with
  183. * additional registers. The sh-sci driver doesn't support the SIM port
  184. * type, declare it as a SCI. Don't declare the additional registers in
  185. * the memory resource or the driver will compute an incorrect regshift
  186. * value.
  187. */
  188. .type = PORT_SCI,
  189. };
  190. static struct resource scif3_resources[] = {
  191. DEFINE_RES_MEM(0xfe480000, 0x10),
  192. DEFINE_RES_IRQ(evt2irq(0xc00)),
  193. DEFINE_RES_IRQ(evt2irq(0xc20)),
  194. DEFINE_RES_IRQ(evt2irq(0xc40)),
  195. };
  196. static struct platform_device scif3_device = {
  197. .name = "sh-sci",
  198. .id = 3,
  199. .resource = scif3_resources,
  200. .num_resources = ARRAY_SIZE(scif3_resources),
  201. .dev = {
  202. .platform_data = &scif3_platform_data,
  203. },
  204. };
  205. static struct sh_timer_config tmu0_platform_data = {
  206. .channels_mask = 7,
  207. };
  208. static struct resource tmu0_resources[] = {
  209. DEFINE_RES_MEM(0xffd80000, 0x30),
  210. DEFINE_RES_IRQ(evt2irq(0x400)),
  211. DEFINE_RES_IRQ(evt2irq(0x420)),
  212. DEFINE_RES_IRQ(evt2irq(0x440)),
  213. };
  214. static struct platform_device tmu0_device = {
  215. .name = "sh-tmu",
  216. .id = 0,
  217. .dev = {
  218. .platform_data = &tmu0_platform_data,
  219. },
  220. .resource = tmu0_resources,
  221. .num_resources = ARRAY_SIZE(tmu0_resources),
  222. };
  223. static struct platform_device *sh7760_devices[] __initdata = {
  224. &scif0_device,
  225. &scif1_device,
  226. &scif2_device,
  227. &scif3_device,
  228. &tmu0_device,
  229. };
  230. static int __init sh7760_devices_setup(void)
  231. {
  232. return platform_add_devices(sh7760_devices,
  233. ARRAY_SIZE(sh7760_devices));
  234. }
  235. arch_initcall(sh7760_devices_setup);
  236. static struct platform_device *sh7760_early_devices[] __initdata = {
  237. &scif0_device,
  238. &scif1_device,
  239. &scif2_device,
  240. &scif3_device,
  241. &tmu0_device,
  242. };
  243. void __init plat_early_device_setup(void)
  244. {
  245. sh_early_platform_add_devices(sh7760_early_devices,
  246. ARRAY_SIZE(sh7760_early_devices));
  247. }
  248. #define INTC_ICR 0xffd00000UL
  249. #define INTC_ICR_IRLM (1 << 7)
  250. void __init plat_irq_setup_pins(int mode)
  251. {
  252. switch (mode) {
  253. case IRQ_MODE_IRQ:
  254. __raw_writew(__raw_readw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
  255. register_intc_controller(&intc_desc_irq);
  256. break;
  257. default:
  258. BUG();
  259. }
  260. }
  261. void __init plat_irq_setup(void)
  262. {
  263. register_intc_controller(&intc_desc);
  264. }