exynos.c 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. /*
  2. * SAMSUNG EXYNOS Flattened Device Tree enabled machine
  3. *
  4. * Copyright (c) 2010-2014 Samsung Electronics Co., Ltd.
  5. * http://www.samsung.com
  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 version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/init.h>
  12. #include <linux/io.h>
  13. #include <linux/kernel.h>
  14. #include <linux/serial_s3c.h>
  15. #include <linux/of.h>
  16. #include <linux/of_address.h>
  17. #include <linux/of_fdt.h>
  18. #include <linux/of_platform.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/pm_domain.h>
  21. #include <linux/irqchip.h>
  22. #include <asm/cacheflush.h>
  23. #include <asm/hardware/cache-l2x0.h>
  24. #include <asm/mach/arch.h>
  25. #include <asm/mach/map.h>
  26. #include <asm/memory.h>
  27. #include "common.h"
  28. #include "mfc.h"
  29. #include "regs-pmu.h"
  30. #include "regs-sys.h"
  31. void __iomem *pmu_base_addr;
  32. static struct map_desc exynos4_iodesc[] __initdata = {
  33. {
  34. .virtual = (unsigned long)S3C_VA_SYS,
  35. .pfn = __phys_to_pfn(EXYNOS4_PA_SYSCON),
  36. .length = SZ_64K,
  37. .type = MT_DEVICE,
  38. }, {
  39. .virtual = (unsigned long)S3C_VA_TIMER,
  40. .pfn = __phys_to_pfn(EXYNOS4_PA_TIMER),
  41. .length = SZ_16K,
  42. .type = MT_DEVICE,
  43. }, {
  44. .virtual = (unsigned long)S3C_VA_WATCHDOG,
  45. .pfn = __phys_to_pfn(EXYNOS4_PA_WATCHDOG),
  46. .length = SZ_4K,
  47. .type = MT_DEVICE,
  48. }, {
  49. .virtual = (unsigned long)S5P_VA_SROMC,
  50. .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC),
  51. .length = SZ_4K,
  52. .type = MT_DEVICE,
  53. }, {
  54. .virtual = (unsigned long)S5P_VA_SYSTIMER,
  55. .pfn = __phys_to_pfn(EXYNOS4_PA_SYSTIMER),
  56. .length = SZ_4K,
  57. .type = MT_DEVICE,
  58. }, {
  59. .virtual = (unsigned long)S5P_VA_COMBINER_BASE,
  60. .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER),
  61. .length = SZ_4K,
  62. .type = MT_DEVICE,
  63. }, {
  64. .virtual = (unsigned long)S5P_VA_GIC_CPU,
  65. .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_CPU),
  66. .length = SZ_64K,
  67. .type = MT_DEVICE,
  68. }, {
  69. .virtual = (unsigned long)S5P_VA_GIC_DIST,
  70. .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST),
  71. .length = SZ_64K,
  72. .type = MT_DEVICE,
  73. }, {
  74. .virtual = (unsigned long)S5P_VA_CMU,
  75. .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
  76. .length = SZ_128K,
  77. .type = MT_DEVICE,
  78. }, {
  79. .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
  80. .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
  81. .length = SZ_8K,
  82. .type = MT_DEVICE,
  83. }, {
  84. .virtual = (unsigned long)S5P_VA_L2CC,
  85. .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC),
  86. .length = SZ_4K,
  87. .type = MT_DEVICE,
  88. }, {
  89. .virtual = (unsigned long)S5P_VA_DMC0,
  90. .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
  91. .length = SZ_64K,
  92. .type = MT_DEVICE,
  93. }, {
  94. .virtual = (unsigned long)S5P_VA_DMC1,
  95. .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1),
  96. .length = SZ_64K,
  97. .type = MT_DEVICE,
  98. }, {
  99. .virtual = (unsigned long)S3C_VA_USB_HSPHY,
  100. .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY),
  101. .length = SZ_4K,
  102. .type = MT_DEVICE,
  103. },
  104. };
  105. static struct map_desc exynos5_iodesc[] __initdata = {
  106. {
  107. .virtual = (unsigned long)S3C_VA_SYS,
  108. .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON),
  109. .length = SZ_64K,
  110. .type = MT_DEVICE,
  111. }, {
  112. .virtual = (unsigned long)S3C_VA_TIMER,
  113. .pfn = __phys_to_pfn(EXYNOS5_PA_TIMER),
  114. .length = SZ_16K,
  115. .type = MT_DEVICE,
  116. }, {
  117. .virtual = (unsigned long)S3C_VA_WATCHDOG,
  118. .pfn = __phys_to_pfn(EXYNOS5_PA_WATCHDOG),
  119. .length = SZ_4K,
  120. .type = MT_DEVICE,
  121. }, {
  122. .virtual = (unsigned long)S5P_VA_SROMC,
  123. .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC),
  124. .length = SZ_4K,
  125. .type = MT_DEVICE,
  126. }, {
  127. .virtual = (unsigned long)S5P_VA_CMU,
  128. .pfn = __phys_to_pfn(EXYNOS5_PA_CMU),
  129. .length = 144 * SZ_1K,
  130. .type = MT_DEVICE,
  131. },
  132. };
  133. static void exynos_restart(enum reboot_mode mode, const char *cmd)
  134. {
  135. struct device_node *np;
  136. u32 val = 0x1;
  137. void __iomem *addr = pmu_base_addr + EXYNOS_SWRESET;
  138. if (of_machine_is_compatible("samsung,exynos5440")) {
  139. u32 status;
  140. np = of_find_compatible_node(NULL, NULL, "samsung,exynos5440-clock");
  141. addr = of_iomap(np, 0) + 0xbc;
  142. status = __raw_readl(addr);
  143. addr = of_iomap(np, 0) + 0xcc;
  144. val = __raw_readl(addr);
  145. val = (val & 0xffff0000) | (status & 0xffff);
  146. }
  147. __raw_writel(val, addr);
  148. }
  149. static struct platform_device exynos_cpuidle = {
  150. .name = "exynos_cpuidle",
  151. #ifdef CONFIG_ARM_EXYNOS_CPUIDLE
  152. .dev.platform_data = exynos_enter_aftr,
  153. #endif
  154. .id = -1,
  155. };
  156. void __iomem *sysram_base_addr;
  157. void __iomem *sysram_ns_base_addr;
  158. void __init exynos_sysram_init(void)
  159. {
  160. struct device_node *node;
  161. for_each_compatible_node(node, NULL, "samsung,exynos4210-sysram") {
  162. if (!of_device_is_available(node))
  163. continue;
  164. sysram_base_addr = of_iomap(node, 0);
  165. break;
  166. }
  167. for_each_compatible_node(node, NULL, "samsung,exynos4210-sysram-ns") {
  168. if (!of_device_is_available(node))
  169. continue;
  170. sysram_ns_base_addr = of_iomap(node, 0);
  171. break;
  172. }
  173. }
  174. static void __init exynos_init_late(void)
  175. {
  176. if (of_machine_is_compatible("samsung,exynos5440"))
  177. /* to be supported later */
  178. return;
  179. exynos_pm_init();
  180. }
  181. static int __init exynos_fdt_map_chipid(unsigned long node, const char *uname,
  182. int depth, void *data)
  183. {
  184. struct map_desc iodesc;
  185. const __be32 *reg;
  186. int len;
  187. if (!of_flat_dt_is_compatible(node, "samsung,exynos4210-chipid") &&
  188. !of_flat_dt_is_compatible(node, "samsung,exynos5440-clock"))
  189. return 0;
  190. reg = of_get_flat_dt_prop(node, "reg", &len);
  191. if (reg == NULL || len != (sizeof(unsigned long) * 2))
  192. return 0;
  193. iodesc.pfn = __phys_to_pfn(be32_to_cpu(reg[0]));
  194. iodesc.length = be32_to_cpu(reg[1]) - 1;
  195. iodesc.virtual = (unsigned long)S5P_VA_CHIPID;
  196. iodesc.type = MT_DEVICE;
  197. iotable_init(&iodesc, 1);
  198. return 1;
  199. }
  200. /*
  201. * exynos_map_io
  202. *
  203. * register the standard cpu IO areas
  204. */
  205. static void __init exynos_map_io(void)
  206. {
  207. if (soc_is_exynos4())
  208. iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
  209. if (soc_is_exynos5())
  210. iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
  211. }
  212. static void __init exynos_init_io(void)
  213. {
  214. debug_ll_io_init();
  215. of_scan_flat_dt(exynos_fdt_map_chipid, NULL);
  216. /* detect cpu id and rev. */
  217. s5p_init_cpu(S5P_VA_CHIPID);
  218. exynos_map_io();
  219. }
  220. static const struct of_device_id exynos_dt_pmu_match[] = {
  221. { .compatible = "samsung,exynos3250-pmu" },
  222. { .compatible = "samsung,exynos4210-pmu" },
  223. { .compatible = "samsung,exynos4212-pmu" },
  224. { .compatible = "samsung,exynos4412-pmu" },
  225. { .compatible = "samsung,exynos5250-pmu" },
  226. { .compatible = "samsung,exynos5260-pmu" },
  227. { .compatible = "samsung,exynos5410-pmu" },
  228. { .compatible = "samsung,exynos5420-pmu" },
  229. { /*sentinel*/ },
  230. };
  231. static void exynos_map_pmu(void)
  232. {
  233. struct device_node *np;
  234. np = of_find_matching_node(NULL, exynos_dt_pmu_match);
  235. if (np)
  236. pmu_base_addr = of_iomap(np, 0);
  237. if (!pmu_base_addr)
  238. panic("failed to find exynos pmu register\n");
  239. }
  240. static void __init exynos_init_irq(void)
  241. {
  242. irqchip_init();
  243. /*
  244. * Since platsmp.c needs pmu base address by the time
  245. * DT is not unflatten so we can't use DT APIs before
  246. * init_irq
  247. */
  248. exynos_map_pmu();
  249. }
  250. static void __init exynos_dt_machine_init(void)
  251. {
  252. struct device_node *i2c_np;
  253. const char *i2c_compat = "samsung,s3c2440-i2c";
  254. unsigned int tmp;
  255. int id;
  256. /*
  257. * Exynos5's legacy i2c controller and new high speed i2c
  258. * controller have muxed interrupt sources. By default the
  259. * interrupts for 4-channel HS-I2C controller are enabled.
  260. * If node for first four channels of legacy i2c controller
  261. * are available then re-configure the interrupts via the
  262. * system register.
  263. */
  264. if (soc_is_exynos5()) {
  265. for_each_compatible_node(i2c_np, NULL, i2c_compat) {
  266. if (of_device_is_available(i2c_np)) {
  267. id = of_alias_get_id(i2c_np, "i2c");
  268. if (id < 4) {
  269. tmp = readl(EXYNOS5_SYS_I2C_CFG);
  270. writel(tmp & ~(0x1 << id),
  271. EXYNOS5_SYS_I2C_CFG);
  272. }
  273. }
  274. }
  275. }
  276. /*
  277. * This is called from smp_prepare_cpus if we've built for SMP, but
  278. * we still need to set it up for PM and firmware ops if not.
  279. */
  280. if (!IS_ENABLED(CONFIG_SMP))
  281. exynos_sysram_init();
  282. if (of_machine_is_compatible("samsung,exynos4210") ||
  283. of_machine_is_compatible("samsung,exynos5250"))
  284. platform_device_register(&exynos_cpuidle);
  285. platform_device_register_simple("exynos-cpufreq", -1, NULL, 0);
  286. of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
  287. }
  288. static char const *exynos_dt_compat[] __initconst = {
  289. "samsung,exynos3",
  290. "samsung,exynos3250",
  291. "samsung,exynos4",
  292. "samsung,exynos4210",
  293. "samsung,exynos4212",
  294. "samsung,exynos4412",
  295. "samsung,exynos5",
  296. "samsung,exynos5250",
  297. "samsung,exynos5260",
  298. "samsung,exynos5420",
  299. "samsung,exynos5440",
  300. NULL
  301. };
  302. static void __init exynos_reserve(void)
  303. {
  304. #ifdef CONFIG_S5P_DEV_MFC
  305. int i;
  306. char *mfc_mem[] = {
  307. "samsung,mfc-v5",
  308. "samsung,mfc-v6",
  309. "samsung,mfc-v7",
  310. };
  311. for (i = 0; i < ARRAY_SIZE(mfc_mem); i++)
  312. if (of_scan_flat_dt(s5p_fdt_alloc_mfc_mem, mfc_mem[i]))
  313. break;
  314. #endif
  315. }
  316. static void __init exynos_dt_fixup(void)
  317. {
  318. /*
  319. * Some versions of uboot pass garbage entries in the memory node,
  320. * use the old CONFIG_ARM_NR_BANKS
  321. */
  322. of_fdt_limit_memory(8);
  323. }
  324. DT_MACHINE_START(EXYNOS_DT, "SAMSUNG EXYNOS (Flattened Device Tree)")
  325. /* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
  326. /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
  327. .l2c_aux_val = 0x3c400001,
  328. .l2c_aux_mask = 0xc20fffff,
  329. .smp = smp_ops(exynos_smp_ops),
  330. .map_io = exynos_init_io,
  331. .init_early = exynos_firmware_init,
  332. .init_irq = exynos_init_irq,
  333. .init_machine = exynos_dt_machine_init,
  334. .init_late = exynos_init_late,
  335. .dt_compat = exynos_dt_compat,
  336. .restart = exynos_restart,
  337. .reserve = exynos_reserve,
  338. .dt_fixup = exynos_dt_fixup,
  339. MACHINE_END