exynos.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  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. .dev.platform_data = exynos_enter_aftr,
  152. .id = -1,
  153. };
  154. void __iomem *sysram_base_addr;
  155. void __iomem *sysram_ns_base_addr;
  156. void __init exynos_sysram_init(void)
  157. {
  158. struct device_node *node;
  159. for_each_compatible_node(node, NULL, "samsung,exynos4210-sysram") {
  160. if (!of_device_is_available(node))
  161. continue;
  162. sysram_base_addr = of_iomap(node, 0);
  163. break;
  164. }
  165. for_each_compatible_node(node, NULL, "samsung,exynos4210-sysram-ns") {
  166. if (!of_device_is_available(node))
  167. continue;
  168. sysram_ns_base_addr = of_iomap(node, 0);
  169. break;
  170. }
  171. }
  172. static void __init exynos_init_late(void)
  173. {
  174. if (of_machine_is_compatible("samsung,exynos5440"))
  175. /* to be supported later */
  176. return;
  177. exynos_pm_init();
  178. }
  179. static int __init exynos_fdt_map_chipid(unsigned long node, const char *uname,
  180. int depth, void *data)
  181. {
  182. struct map_desc iodesc;
  183. const __be32 *reg;
  184. int len;
  185. if (!of_flat_dt_is_compatible(node, "samsung,exynos4210-chipid") &&
  186. !of_flat_dt_is_compatible(node, "samsung,exynos5440-clock"))
  187. return 0;
  188. reg = of_get_flat_dt_prop(node, "reg", &len);
  189. if (reg == NULL || len != (sizeof(unsigned long) * 2))
  190. return 0;
  191. iodesc.pfn = __phys_to_pfn(be32_to_cpu(reg[0]));
  192. iodesc.length = be32_to_cpu(reg[1]) - 1;
  193. iodesc.virtual = (unsigned long)S5P_VA_CHIPID;
  194. iodesc.type = MT_DEVICE;
  195. iotable_init(&iodesc, 1);
  196. return 1;
  197. }
  198. /*
  199. * exynos_map_io
  200. *
  201. * register the standard cpu IO areas
  202. */
  203. static void __init exynos_map_io(void)
  204. {
  205. if (soc_is_exynos4())
  206. iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
  207. if (soc_is_exynos5())
  208. iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
  209. }
  210. static void __init exynos_init_io(void)
  211. {
  212. debug_ll_io_init();
  213. of_scan_flat_dt(exynos_fdt_map_chipid, NULL);
  214. /* detect cpu id and rev. */
  215. s5p_init_cpu(S5P_VA_CHIPID);
  216. exynos_map_io();
  217. }
  218. static const struct of_device_id exynos_dt_pmu_match[] = {
  219. { .compatible = "samsung,exynos3250-pmu" },
  220. { .compatible = "samsung,exynos4210-pmu" },
  221. { .compatible = "samsung,exynos4212-pmu" },
  222. { .compatible = "samsung,exynos4412-pmu" },
  223. { .compatible = "samsung,exynos5250-pmu" },
  224. { .compatible = "samsung,exynos5260-pmu" },
  225. { .compatible = "samsung,exynos5410-pmu" },
  226. { .compatible = "samsung,exynos5420-pmu" },
  227. { /*sentinel*/ },
  228. };
  229. static void exynos_map_pmu(void)
  230. {
  231. struct device_node *np;
  232. np = of_find_matching_node(NULL, exynos_dt_pmu_match);
  233. if (np)
  234. pmu_base_addr = of_iomap(np, 0);
  235. if (!pmu_base_addr)
  236. panic("failed to find exynos pmu register\n");
  237. }
  238. static void __init exynos_init_irq(void)
  239. {
  240. irqchip_init();
  241. /*
  242. * Since platsmp.c needs pmu base address by the time
  243. * DT is not unflatten so we can't use DT APIs before
  244. * init_irq
  245. */
  246. exynos_map_pmu();
  247. }
  248. static void __init exynos_dt_machine_init(void)
  249. {
  250. struct device_node *i2c_np;
  251. const char *i2c_compat = "samsung,s3c2440-i2c";
  252. unsigned int tmp;
  253. int id;
  254. /*
  255. * Exynos5's legacy i2c controller and new high speed i2c
  256. * controller have muxed interrupt sources. By default the
  257. * interrupts for 4-channel HS-I2C controller are enabled.
  258. * If node for first four channels of legacy i2c controller
  259. * are available then re-configure the interrupts via the
  260. * system register.
  261. */
  262. if (soc_is_exynos5()) {
  263. for_each_compatible_node(i2c_np, NULL, i2c_compat) {
  264. if (of_device_is_available(i2c_np)) {
  265. id = of_alias_get_id(i2c_np, "i2c");
  266. if (id < 4) {
  267. tmp = readl(EXYNOS5_SYS_I2C_CFG);
  268. writel(tmp & ~(0x1 << id),
  269. EXYNOS5_SYS_I2C_CFG);
  270. }
  271. }
  272. }
  273. }
  274. /*
  275. * This is called from smp_prepare_cpus if we've built for SMP, but
  276. * we still need to set it up for PM and firmware ops if not.
  277. */
  278. if (!IS_ENABLED(CONFIG_SMP))
  279. exynos_sysram_init();
  280. if (of_machine_is_compatible("samsung,exynos4210") ||
  281. of_machine_is_compatible("samsung,exynos5250"))
  282. platform_device_register(&exynos_cpuidle);
  283. platform_device_register_simple("exynos-cpufreq", -1, NULL, 0);
  284. of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
  285. }
  286. static char const *exynos_dt_compat[] __initconst = {
  287. "samsung,exynos3",
  288. "samsung,exynos3250",
  289. "samsung,exynos4",
  290. "samsung,exynos4210",
  291. "samsung,exynos4212",
  292. "samsung,exynos4412",
  293. "samsung,exynos5",
  294. "samsung,exynos5250",
  295. "samsung,exynos5260",
  296. "samsung,exynos5420",
  297. "samsung,exynos5440",
  298. NULL
  299. };
  300. static void __init exynos_reserve(void)
  301. {
  302. #ifdef CONFIG_S5P_DEV_MFC
  303. int i;
  304. char *mfc_mem[] = {
  305. "samsung,mfc-v5",
  306. "samsung,mfc-v6",
  307. "samsung,mfc-v7",
  308. };
  309. for (i = 0; i < ARRAY_SIZE(mfc_mem); i++)
  310. if (of_scan_flat_dt(s5p_fdt_alloc_mfc_mem, mfc_mem[i]))
  311. break;
  312. #endif
  313. }
  314. static void __init exynos_dt_fixup(void)
  315. {
  316. /*
  317. * Some versions of uboot pass garbage entries in the memory node,
  318. * use the old CONFIG_ARM_NR_BANKS
  319. */
  320. of_fdt_limit_memory(8);
  321. }
  322. DT_MACHINE_START(EXYNOS_DT, "SAMSUNG EXYNOS (Flattened Device Tree)")
  323. /* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
  324. /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
  325. .l2c_aux_val = 0x3c400001,
  326. .l2c_aux_mask = 0xc20fffff,
  327. .smp = smp_ops(exynos_smp_ops),
  328. .map_io = exynos_init_io,
  329. .init_early = exynos_firmware_init,
  330. .init_irq = exynos_init_irq,
  331. .init_machine = exynos_dt_machine_init,
  332. .init_late = exynos_init_late,
  333. .dt_compat = exynos_dt_compat,
  334. .restart = exynos_restart,
  335. .reserve = exynos_reserve,
  336. .dt_fixup = exynos_dt_fixup,
  337. MACHINE_END