setup-sh7367.c 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. /*
  2. * sh7367 processor support
  3. *
  4. * Copyright (C) 2010 Magnus Damm
  5. * Copyright (C) 2008 Yoshihiro Shimoda
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; version 2 of the License.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <linux/kernel.h>
  21. #include <linux/init.h>
  22. #include <linux/interrupt.h>
  23. #include <linux/irq.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/uio_driver.h>
  26. #include <linux/delay.h>
  27. #include <linux/input.h>
  28. #include <linux/io.h>
  29. #include <linux/serial_sci.h>
  30. #include <linux/sh_timer.h>
  31. #include <mach/hardware.h>
  32. #include <mach/common.h>
  33. #include <asm/mach-types.h>
  34. #include <asm/mach/arch.h>
  35. #include <asm/mach/map.h>
  36. static struct map_desc sh7367_io_desc[] __initdata = {
  37. /* create a 1:1 entity map for 0xe6xxxxxx
  38. * used by CPGA, INTC and PFC.
  39. */
  40. {
  41. .virtual = 0xe6000000,
  42. .pfn = __phys_to_pfn(0xe6000000),
  43. .length = 256 << 20,
  44. .type = MT_DEVICE_NONSHARED
  45. },
  46. };
  47. void __init sh7367_map_io(void)
  48. {
  49. iotable_init(sh7367_io_desc, ARRAY_SIZE(sh7367_io_desc));
  50. }
  51. /* SCIFA0 */
  52. static struct plat_sci_port scif0_platform_data = {
  53. .mapbase = 0xe6c40000,
  54. .flags = UPF_BOOT_AUTOCONF,
  55. .scscr = SCSCR_RE | SCSCR_TE,
  56. .scbrr_algo_id = SCBRR_ALGO_4,
  57. .type = PORT_SCIFA,
  58. .irqs = { evt2irq(0xc00), evt2irq(0xc00),
  59. evt2irq(0xc00), evt2irq(0xc00) },
  60. };
  61. static struct platform_device scif0_device = {
  62. .name = "sh-sci",
  63. .id = 0,
  64. .dev = {
  65. .platform_data = &scif0_platform_data,
  66. },
  67. };
  68. /* SCIFA1 */
  69. static struct plat_sci_port scif1_platform_data = {
  70. .mapbase = 0xe6c50000,
  71. .flags = UPF_BOOT_AUTOCONF,
  72. .scscr = SCSCR_RE | SCSCR_TE,
  73. .scbrr_algo_id = SCBRR_ALGO_4,
  74. .type = PORT_SCIFA,
  75. .irqs = { evt2irq(0xc20), evt2irq(0xc20),
  76. evt2irq(0xc20), evt2irq(0xc20) },
  77. };
  78. static struct platform_device scif1_device = {
  79. .name = "sh-sci",
  80. .id = 1,
  81. .dev = {
  82. .platform_data = &scif1_platform_data,
  83. },
  84. };
  85. /* SCIFA2 */
  86. static struct plat_sci_port scif2_platform_data = {
  87. .mapbase = 0xe6c60000,
  88. .flags = UPF_BOOT_AUTOCONF,
  89. .scscr = SCSCR_RE | SCSCR_TE,
  90. .scbrr_algo_id = SCBRR_ALGO_4,
  91. .type = PORT_SCIFA,
  92. .irqs = { evt2irq(0xc40), evt2irq(0xc40),
  93. evt2irq(0xc40), evt2irq(0xc40) },
  94. };
  95. static struct platform_device scif2_device = {
  96. .name = "sh-sci",
  97. .id = 2,
  98. .dev = {
  99. .platform_data = &scif2_platform_data,
  100. },
  101. };
  102. /* SCIFA3 */
  103. static struct plat_sci_port scif3_platform_data = {
  104. .mapbase = 0xe6c70000,
  105. .flags = UPF_BOOT_AUTOCONF,
  106. .scscr = SCSCR_RE | SCSCR_TE,
  107. .scbrr_algo_id = SCBRR_ALGO_4,
  108. .type = PORT_SCIFA,
  109. .irqs = { evt2irq(0xc60), evt2irq(0xc60),
  110. evt2irq(0xc60), evt2irq(0xc60) },
  111. };
  112. static struct platform_device scif3_device = {
  113. .name = "sh-sci",
  114. .id = 3,
  115. .dev = {
  116. .platform_data = &scif3_platform_data,
  117. },
  118. };
  119. /* SCIFA4 */
  120. static struct plat_sci_port scif4_platform_data = {
  121. .mapbase = 0xe6c80000,
  122. .flags = UPF_BOOT_AUTOCONF,
  123. .scscr = SCSCR_RE | SCSCR_TE,
  124. .scbrr_algo_id = SCBRR_ALGO_4,
  125. .type = PORT_SCIFA,
  126. .irqs = { evt2irq(0xd20), evt2irq(0xd20),
  127. evt2irq(0xd20), evt2irq(0xd20) },
  128. };
  129. static struct platform_device scif4_device = {
  130. .name = "sh-sci",
  131. .id = 4,
  132. .dev = {
  133. .platform_data = &scif4_platform_data,
  134. },
  135. };
  136. /* SCIFA5 */
  137. static struct plat_sci_port scif5_platform_data = {
  138. .mapbase = 0xe6cb0000,
  139. .flags = UPF_BOOT_AUTOCONF,
  140. .scscr = SCSCR_RE | SCSCR_TE,
  141. .scbrr_algo_id = SCBRR_ALGO_4,
  142. .type = PORT_SCIFA,
  143. .irqs = { evt2irq(0xd40), evt2irq(0xd40),
  144. evt2irq(0xd40), evt2irq(0xd40) },
  145. };
  146. static struct platform_device scif5_device = {
  147. .name = "sh-sci",
  148. .id = 5,
  149. .dev = {
  150. .platform_data = &scif5_platform_data,
  151. },
  152. };
  153. /* SCIFB */
  154. static struct plat_sci_port scif6_platform_data = {
  155. .mapbase = 0xe6c30000,
  156. .flags = UPF_BOOT_AUTOCONF,
  157. .scscr = SCSCR_RE | SCSCR_TE,
  158. .scbrr_algo_id = SCBRR_ALGO_4,
  159. .type = PORT_SCIFB,
  160. .irqs = { evt2irq(0xd60), evt2irq(0xd60),
  161. evt2irq(0xd60), evt2irq(0xd60) },
  162. };
  163. static struct platform_device scif6_device = {
  164. .name = "sh-sci",
  165. .id = 6,
  166. .dev = {
  167. .platform_data = &scif6_platform_data,
  168. },
  169. };
  170. static struct sh_timer_config cmt10_platform_data = {
  171. .name = "CMT10",
  172. .channel_offset = 0x10,
  173. .timer_bit = 0,
  174. .clockevent_rating = 125,
  175. .clocksource_rating = 125,
  176. };
  177. static struct resource cmt10_resources[] = {
  178. [0] = {
  179. .name = "CMT10",
  180. .start = 0xe6138010,
  181. .end = 0xe613801b,
  182. .flags = IORESOURCE_MEM,
  183. },
  184. [1] = {
  185. .start = evt2irq(0xb00), /* CMT1_CMT10 */
  186. .flags = IORESOURCE_IRQ,
  187. },
  188. };
  189. static struct platform_device cmt10_device = {
  190. .name = "sh_cmt",
  191. .id = 10,
  192. .dev = {
  193. .platform_data = &cmt10_platform_data,
  194. },
  195. .resource = cmt10_resources,
  196. .num_resources = ARRAY_SIZE(cmt10_resources),
  197. };
  198. /* VPU */
  199. static struct uio_info vpu_platform_data = {
  200. .name = "VPU5",
  201. .version = "0",
  202. .irq = intcs_evt2irq(0x980),
  203. };
  204. static struct resource vpu_resources[] = {
  205. [0] = {
  206. .name = "VPU",
  207. .start = 0xfe900000,
  208. .end = 0xfe902807,
  209. .flags = IORESOURCE_MEM,
  210. },
  211. };
  212. static struct platform_device vpu_device = {
  213. .name = "uio_pdrv_genirq",
  214. .id = 0,
  215. .dev = {
  216. .platform_data = &vpu_platform_data,
  217. },
  218. .resource = vpu_resources,
  219. .num_resources = ARRAY_SIZE(vpu_resources),
  220. };
  221. /* VEU0 */
  222. static struct uio_info veu0_platform_data = {
  223. .name = "VEU0",
  224. .version = "0",
  225. .irq = intcs_evt2irq(0x700),
  226. };
  227. static struct resource veu0_resources[] = {
  228. [0] = {
  229. .name = "VEU0",
  230. .start = 0xfe920000,
  231. .end = 0xfe9200b7,
  232. .flags = IORESOURCE_MEM,
  233. },
  234. };
  235. static struct platform_device veu0_device = {
  236. .name = "uio_pdrv_genirq",
  237. .id = 1,
  238. .dev = {
  239. .platform_data = &veu0_platform_data,
  240. },
  241. .resource = veu0_resources,
  242. .num_resources = ARRAY_SIZE(veu0_resources),
  243. };
  244. /* VEU1 */
  245. static struct uio_info veu1_platform_data = {
  246. .name = "VEU1",
  247. .version = "0",
  248. .irq = intcs_evt2irq(0x720),
  249. };
  250. static struct resource veu1_resources[] = {
  251. [0] = {
  252. .name = "VEU1",
  253. .start = 0xfe924000,
  254. .end = 0xfe9240b7,
  255. .flags = IORESOURCE_MEM,
  256. },
  257. };
  258. static struct platform_device veu1_device = {
  259. .name = "uio_pdrv_genirq",
  260. .id = 2,
  261. .dev = {
  262. .platform_data = &veu1_platform_data,
  263. },
  264. .resource = veu1_resources,
  265. .num_resources = ARRAY_SIZE(veu1_resources),
  266. };
  267. /* VEU2 */
  268. static struct uio_info veu2_platform_data = {
  269. .name = "VEU2",
  270. .version = "0",
  271. .irq = intcs_evt2irq(0x740),
  272. };
  273. static struct resource veu2_resources[] = {
  274. [0] = {
  275. .name = "VEU2",
  276. .start = 0xfe928000,
  277. .end = 0xfe9280b7,
  278. .flags = IORESOURCE_MEM,
  279. },
  280. };
  281. static struct platform_device veu2_device = {
  282. .name = "uio_pdrv_genirq",
  283. .id = 3,
  284. .dev = {
  285. .platform_data = &veu2_platform_data,
  286. },
  287. .resource = veu2_resources,
  288. .num_resources = ARRAY_SIZE(veu2_resources),
  289. };
  290. /* VEU3 */
  291. static struct uio_info veu3_platform_data = {
  292. .name = "VEU3",
  293. .version = "0",
  294. .irq = intcs_evt2irq(0x760),
  295. };
  296. static struct resource veu3_resources[] = {
  297. [0] = {
  298. .name = "VEU3",
  299. .start = 0xfe92c000,
  300. .end = 0xfe92c0b7,
  301. .flags = IORESOURCE_MEM,
  302. },
  303. };
  304. static struct platform_device veu3_device = {
  305. .name = "uio_pdrv_genirq",
  306. .id = 4,
  307. .dev = {
  308. .platform_data = &veu3_platform_data,
  309. },
  310. .resource = veu3_resources,
  311. .num_resources = ARRAY_SIZE(veu3_resources),
  312. };
  313. /* VEU2H */
  314. static struct uio_info veu2h_platform_data = {
  315. .name = "VEU2H",
  316. .version = "0",
  317. .irq = intcs_evt2irq(0x520),
  318. };
  319. static struct resource veu2h_resources[] = {
  320. [0] = {
  321. .name = "VEU2H",
  322. .start = 0xfe93c000,
  323. .end = 0xfe93c27b,
  324. .flags = IORESOURCE_MEM,
  325. },
  326. };
  327. static struct platform_device veu2h_device = {
  328. .name = "uio_pdrv_genirq",
  329. .id = 5,
  330. .dev = {
  331. .platform_data = &veu2h_platform_data,
  332. },
  333. .resource = veu2h_resources,
  334. .num_resources = ARRAY_SIZE(veu2h_resources),
  335. };
  336. /* JPU */
  337. static struct uio_info jpu_platform_data = {
  338. .name = "JPU",
  339. .version = "0",
  340. .irq = intcs_evt2irq(0x560),
  341. };
  342. static struct resource jpu_resources[] = {
  343. [0] = {
  344. .name = "JPU",
  345. .start = 0xfe980000,
  346. .end = 0xfe9902d3,
  347. .flags = IORESOURCE_MEM,
  348. },
  349. };
  350. static struct platform_device jpu_device = {
  351. .name = "uio_pdrv_genirq",
  352. .id = 6,
  353. .dev = {
  354. .platform_data = &jpu_platform_data,
  355. },
  356. .resource = jpu_resources,
  357. .num_resources = ARRAY_SIZE(jpu_resources),
  358. };
  359. /* SPU1 */
  360. static struct uio_info spu1_platform_data = {
  361. .name = "SPU1",
  362. .version = "0",
  363. .irq = evt2irq(0xfc0),
  364. };
  365. static struct resource spu1_resources[] = {
  366. [0] = {
  367. .name = "SPU1",
  368. .start = 0xfe300000,
  369. .end = 0xfe3fffff,
  370. .flags = IORESOURCE_MEM,
  371. },
  372. };
  373. static struct platform_device spu1_device = {
  374. .name = "uio_pdrv_genirq",
  375. .id = 7,
  376. .dev = {
  377. .platform_data = &spu1_platform_data,
  378. },
  379. .resource = spu1_resources,
  380. .num_resources = ARRAY_SIZE(spu1_resources),
  381. };
  382. static struct platform_device *sh7367_early_devices[] __initdata = {
  383. &scif0_device,
  384. &scif1_device,
  385. &scif2_device,
  386. &scif3_device,
  387. &scif4_device,
  388. &scif5_device,
  389. &scif6_device,
  390. &cmt10_device,
  391. };
  392. static struct platform_device *sh7367_devices[] __initdata = {
  393. &vpu_device,
  394. &veu0_device,
  395. &veu1_device,
  396. &veu2_device,
  397. &veu3_device,
  398. &veu2h_device,
  399. &jpu_device,
  400. &spu1_device,
  401. };
  402. void __init sh7367_add_standard_devices(void)
  403. {
  404. platform_add_devices(sh7367_early_devices,
  405. ARRAY_SIZE(sh7367_early_devices));
  406. platform_add_devices(sh7367_devices,
  407. ARRAY_SIZE(sh7367_devices));
  408. }
  409. #define SYMSTPCR2 0xe6158048
  410. #define SYMSTPCR2_CMT1 (1 << 29)
  411. void __init sh7367_add_early_devices(void)
  412. {
  413. /* enable clock to CMT1 */
  414. __raw_writel(__raw_readl(SYMSTPCR2) & ~SYMSTPCR2_CMT1, SYMSTPCR2);
  415. early_platform_add_devices(sh7367_early_devices,
  416. ARRAY_SIZE(sh7367_early_devices));
  417. /* setup early console here as well */
  418. shmobile_setup_console();
  419. }