exynos.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  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)S5P_VA_SROMC,
  40. .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC),
  41. .length = SZ_4K,
  42. .type = MT_DEVICE,
  43. }, {
  44. .virtual = (unsigned long)S5P_VA_CMU,
  45. .pfn = __phys_to_pfn(EXYNOS4_PA_CMU),
  46. .length = SZ_128K,
  47. .type = MT_DEVICE,
  48. }, {
  49. .virtual = (unsigned long)S5P_VA_COREPERI_BASE,
  50. .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI),
  51. .length = SZ_8K,
  52. .type = MT_DEVICE,
  53. }, {
  54. .virtual = (unsigned long)S5P_VA_DMC0,
  55. .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0),
  56. .length = SZ_64K,
  57. .type = MT_DEVICE,
  58. }, {
  59. .virtual = (unsigned long)S5P_VA_DMC1,
  60. .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1),
  61. .length = SZ_64K,
  62. .type = MT_DEVICE,
  63. },
  64. };
  65. static struct map_desc exynos5_iodesc[] __initdata = {
  66. {
  67. .virtual = (unsigned long)S3C_VA_SYS,
  68. .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON),
  69. .length = SZ_64K,
  70. .type = MT_DEVICE,
  71. }, {
  72. .virtual = (unsigned long)S5P_VA_SROMC,
  73. .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC),
  74. .length = SZ_4K,
  75. .type = MT_DEVICE,
  76. }, {
  77. .virtual = (unsigned long)S5P_VA_CMU,
  78. .pfn = __phys_to_pfn(EXYNOS5_PA_CMU),
  79. .length = 144 * SZ_1K,
  80. .type = MT_DEVICE,
  81. },
  82. };
  83. static struct platform_device exynos_cpuidle = {
  84. .name = "exynos_cpuidle",
  85. #ifdef CONFIG_ARM_EXYNOS_CPUIDLE
  86. .dev.platform_data = exynos_enter_aftr,
  87. #endif
  88. .id = -1,
  89. };
  90. void __iomem *sysram_base_addr;
  91. void __iomem *sysram_ns_base_addr;
  92. void __init exynos_sysram_init(void)
  93. {
  94. struct device_node *node;
  95. for_each_compatible_node(node, NULL, "samsung,exynos4210-sysram") {
  96. if (!of_device_is_available(node))
  97. continue;
  98. sysram_base_addr = of_iomap(node, 0);
  99. break;
  100. }
  101. for_each_compatible_node(node, NULL, "samsung,exynos4210-sysram-ns") {
  102. if (!of_device_is_available(node))
  103. continue;
  104. sysram_ns_base_addr = of_iomap(node, 0);
  105. break;
  106. }
  107. }
  108. static void __init exynos_init_late(void)
  109. {
  110. if (of_machine_is_compatible("samsung,exynos5440"))
  111. /* to be supported later */
  112. return;
  113. exynos_pm_init();
  114. }
  115. static int __init exynos_fdt_map_chipid(unsigned long node, const char *uname,
  116. int depth, void *data)
  117. {
  118. struct map_desc iodesc;
  119. const __be32 *reg;
  120. int len;
  121. if (!of_flat_dt_is_compatible(node, "samsung,exynos4210-chipid") &&
  122. !of_flat_dt_is_compatible(node, "samsung,exynos5440-clock"))
  123. return 0;
  124. reg = of_get_flat_dt_prop(node, "reg", &len);
  125. if (reg == NULL || len != (sizeof(unsigned long) * 2))
  126. return 0;
  127. iodesc.pfn = __phys_to_pfn(be32_to_cpu(reg[0]));
  128. iodesc.length = be32_to_cpu(reg[1]) - 1;
  129. iodesc.virtual = (unsigned long)S5P_VA_CHIPID;
  130. iodesc.type = MT_DEVICE;
  131. iotable_init(&iodesc, 1);
  132. return 1;
  133. }
  134. /*
  135. * exynos_map_io
  136. *
  137. * register the standard cpu IO areas
  138. */
  139. static void __init exynos_map_io(void)
  140. {
  141. if (soc_is_exynos4())
  142. iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc));
  143. if (soc_is_exynos5())
  144. iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc));
  145. }
  146. static void __init exynos_init_io(void)
  147. {
  148. debug_ll_io_init();
  149. of_scan_flat_dt(exynos_fdt_map_chipid, NULL);
  150. /* detect cpu id and rev. */
  151. s5p_init_cpu(S5P_VA_CHIPID);
  152. exynos_map_io();
  153. }
  154. static const struct of_device_id exynos_dt_pmu_match[] = {
  155. { .compatible = "samsung,exynos3250-pmu" },
  156. { .compatible = "samsung,exynos4210-pmu" },
  157. { .compatible = "samsung,exynos4212-pmu" },
  158. { .compatible = "samsung,exynos4412-pmu" },
  159. { .compatible = "samsung,exynos4415-pmu" },
  160. { .compatible = "samsung,exynos5250-pmu" },
  161. { .compatible = "samsung,exynos5260-pmu" },
  162. { .compatible = "samsung,exynos5410-pmu" },
  163. { .compatible = "samsung,exynos5420-pmu" },
  164. { /*sentinel*/ },
  165. };
  166. static void exynos_map_pmu(void)
  167. {
  168. struct device_node *np;
  169. np = of_find_matching_node(NULL, exynos_dt_pmu_match);
  170. if (np)
  171. pmu_base_addr = of_iomap(np, 0);
  172. if (!pmu_base_addr)
  173. panic("failed to find exynos pmu register\n");
  174. }
  175. static void __init exynos_init_irq(void)
  176. {
  177. irqchip_init();
  178. /*
  179. * Since platsmp.c needs pmu base address by the time
  180. * DT is not unflatten so we can't use DT APIs before
  181. * init_irq
  182. */
  183. exynos_map_pmu();
  184. }
  185. static void __init exynos_dt_machine_init(void)
  186. {
  187. struct device_node *i2c_np;
  188. const char *i2c_compat = "samsung,s3c2440-i2c";
  189. unsigned int tmp;
  190. int id;
  191. /*
  192. * Exynos5's legacy i2c controller and new high speed i2c
  193. * controller have muxed interrupt sources. By default the
  194. * interrupts for 4-channel HS-I2C controller are enabled.
  195. * If node for first four channels of legacy i2c controller
  196. * are available then re-configure the interrupts via the
  197. * system register.
  198. */
  199. if (soc_is_exynos5()) {
  200. for_each_compatible_node(i2c_np, NULL, i2c_compat) {
  201. if (of_device_is_available(i2c_np)) {
  202. id = of_alias_get_id(i2c_np, "i2c");
  203. if (id < 4) {
  204. tmp = readl(EXYNOS5_SYS_I2C_CFG);
  205. writel(tmp & ~(0x1 << id),
  206. EXYNOS5_SYS_I2C_CFG);
  207. }
  208. }
  209. }
  210. }
  211. /*
  212. * This is called from smp_prepare_cpus if we've built for SMP, but
  213. * we still need to set it up for PM and firmware ops if not.
  214. */
  215. if (!IS_ENABLED(CONFIG_SMP))
  216. exynos_sysram_init();
  217. if (of_machine_is_compatible("samsung,exynos4210") ||
  218. of_machine_is_compatible("samsung,exynos4212") ||
  219. (of_machine_is_compatible("samsung,exynos4412") &&
  220. of_machine_is_compatible("samsung,trats2")) ||
  221. of_machine_is_compatible("samsung,exynos5250"))
  222. platform_device_register(&exynos_cpuidle);
  223. platform_device_register_simple("exynos-cpufreq", -1, NULL, 0);
  224. of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
  225. }
  226. static char const *exynos_dt_compat[] __initconst = {
  227. "samsung,exynos3",
  228. "samsung,exynos3250",
  229. "samsung,exynos4",
  230. "samsung,exynos4210",
  231. "samsung,exynos4212",
  232. "samsung,exynos4412",
  233. "samsung,exynos4415",
  234. "samsung,exynos5",
  235. "samsung,exynos5250",
  236. "samsung,exynos5260",
  237. "samsung,exynos5420",
  238. "samsung,exynos5440",
  239. NULL
  240. };
  241. static void __init exynos_reserve(void)
  242. {
  243. #ifdef CONFIG_S5P_DEV_MFC
  244. int i;
  245. char *mfc_mem[] = {
  246. "samsung,mfc-v5",
  247. "samsung,mfc-v6",
  248. "samsung,mfc-v7",
  249. };
  250. for (i = 0; i < ARRAY_SIZE(mfc_mem); i++)
  251. if (of_scan_flat_dt(s5p_fdt_alloc_mfc_mem, mfc_mem[i]))
  252. break;
  253. #endif
  254. }
  255. static void __init exynos_dt_fixup(void)
  256. {
  257. /*
  258. * Some versions of uboot pass garbage entries in the memory node,
  259. * use the old CONFIG_ARM_NR_BANKS
  260. */
  261. of_fdt_limit_memory(8);
  262. }
  263. DT_MACHINE_START(EXYNOS_DT, "SAMSUNG EXYNOS (Flattened Device Tree)")
  264. /* Maintainer: Thomas Abraham <thomas.abraham@linaro.org> */
  265. /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */
  266. .l2c_aux_val = 0x3c400001,
  267. .l2c_aux_mask = 0xc20fffff,
  268. .smp = smp_ops(exynos_smp_ops),
  269. .map_io = exynos_init_io,
  270. .init_early = exynos_firmware_init,
  271. .init_irq = exynos_init_irq,
  272. .init_machine = exynos_dt_machine_init,
  273. .init_late = exynos_init_late,
  274. .dt_compat = exynos_dt_compat,
  275. .reserve = exynos_reserve,
  276. .dt_fixup = exynos_dt_fixup,
  277. MACHINE_END