diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-08 14:14:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-08 14:14:29 -0400 |
commit | b3345d7c57d70e6cb6749af25cdbe80515582e99 (patch) | |
tree | 04cce706bc7e944ad1fb257108a8ae735948f97f /arch/arm/mach-exynos/exynos.c | |
parent | 44c916d58b9ef1f2c4aec2def57fa8289c716a60 (diff) | |
parent | c2fff85e21818952aa0ee5778926beee6c03e579 (diff) |
Merge tag 'soc-for-3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull ARM SoC platform changes from Olof Johansson:
"This is the bulk of new SoC enablement and other platform changes for
3.17:
- Samsung S5PV210 has been converted to DT and multiplatform
- Clock drivers and bindings for some of the lower-end i.MX 1/2
platforms
- Kirkwood, one of the popular Marvell platforms, is folded into the
mvebu platform code, removing mach-kirkwood
- Hwmod data for TI AM43xx and DRA7 platforms
- More additions of Renesas shmobile platform support
- Removal of plat-samsung contents that can be removed with S5PV210
being multiplatform/DT-enabled and the other two old platforms
being removed
New platforms (most with only basic support right now):
- Hisilicon X5HD2 settop box chipset is introduced
- Mediatek MT6589 (mobile chipset) is introduced
- Broadcom BCM7xxx settop box chipset is introduced
+ as usual a lot other pieces all over the platform code"
* tag 'soc-for-3.17' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (240 commits)
ARM: hisi: remove smp from machine descriptor
power: reset: move hisilicon reboot code
ARM: dts: Add hix5hd2-dkb dts file.
ARM: debug: Rename Hi3716 to HIX5HD2
ARM: hisi: enable hix5hd2 SoC
ARM: hisi: add ARCH_HISI
MAINTAINERS: add entry for Broadcom ARM STB architecture
ARM: brcmstb: select GISB arbiter and interrupt drivers
ARM: brcmstb: add infrastructure for ARM-based Broadcom STB SoCs
ARM: configs: enable SMP in bcm_defconfig
ARM: add SMP support for Broadcom mobile SoCs
Documentation: arm: misc updates to Marvell EBU SoC status
Documentation: arm: add URLs to public datasheets for the Marvell Armada XP SoC
ARM: mvebu: fix build without platforms selected
ARM: mvebu: add cpuidle support for Armada 38x
ARM: mvebu: add cpuidle support for Armada 370
cpuidle: mvebu: add Armada 38x support
cpuidle: mvebu: add Armada 370 support
cpuidle: mvebu: rename the driver from armada-370-xp to mvebu-v7
ARM: mvebu: export the SCU address
...
Diffstat (limited to 'arch/arm/mach-exynos/exynos.c')
-rw-r--r-- | arch/arm/mach-exynos/exynos.c | 30 |
1 files changed, 6 insertions, 24 deletions
diff --git a/arch/arm/mach-exynos/exynos.c b/arch/arm/mach-exynos/exynos.c index 3164ef2e6b6c..c426093bdbd9 100644 --- a/arch/arm/mach-exynos/exynos.c +++ b/arch/arm/mach-exynos/exynos.c | |||
@@ -61,11 +61,6 @@ static struct map_desc exynos4_iodesc[] __initdata = { | |||
61 | .length = SZ_4K, | 61 | .length = SZ_4K, |
62 | .type = MT_DEVICE, | 62 | .type = MT_DEVICE, |
63 | }, { | 63 | }, { |
64 | .virtual = (unsigned long)S5P_VA_PMU, | ||
65 | .pfn = __phys_to_pfn(EXYNOS4_PA_PMU), | ||
66 | .length = SZ_64K, | ||
67 | .type = MT_DEVICE, | ||
68 | }, { | ||
69 | .virtual = (unsigned long)S5P_VA_COMBINER_BASE, | 64 | .virtual = (unsigned long)S5P_VA_COMBINER_BASE, |
70 | .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER), | 65 | .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER), |
71 | .length = SZ_4K, | 66 | .length = SZ_4K, |
@@ -139,11 +134,6 @@ static struct map_desc exynos5_iodesc[] __initdata = { | |||
139 | .pfn = __phys_to_pfn(EXYNOS5_PA_CMU), | 134 | .pfn = __phys_to_pfn(EXYNOS5_PA_CMU), |
140 | .length = 144 * SZ_1K, | 135 | .length = 144 * SZ_1K, |
141 | .type = MT_DEVICE, | 136 | .type = MT_DEVICE, |
142 | }, { | ||
143 | .virtual = (unsigned long)S5P_VA_PMU, | ||
144 | .pfn = __phys_to_pfn(EXYNOS5_PA_PMU), | ||
145 | .length = SZ_64K, | ||
146 | .type = MT_DEVICE, | ||
147 | }, | 137 | }, |
148 | }; | 138 | }; |
149 | 139 | ||
@@ -151,7 +141,7 @@ static void exynos_restart(enum reboot_mode mode, const char *cmd) | |||
151 | { | 141 | { |
152 | struct device_node *np; | 142 | struct device_node *np; |
153 | u32 val = 0x1; | 143 | u32 val = 0x1; |
154 | void __iomem *addr = EXYNOS_SWRESET; | 144 | void __iomem *addr = pmu_base_addr + EXYNOS_SWRESET; |
155 | 145 | ||
156 | if (of_machine_is_compatible("samsung,exynos5440")) { | 146 | if (of_machine_is_compatible("samsung,exynos5440")) { |
157 | u32 status; | 147 | u32 status; |
@@ -175,17 +165,6 @@ static struct platform_device exynos_cpuidle = { | |||
175 | .id = -1, | 165 | .id = -1, |
176 | }; | 166 | }; |
177 | 167 | ||
178 | void __init exynos_cpuidle_init(void) | ||
179 | { | ||
180 | if (soc_is_exynos4210() || soc_is_exynos5250()) | ||
181 | platform_device_register(&exynos_cpuidle); | ||
182 | } | ||
183 | |||
184 | void __init exynos_cpufreq_init(void) | ||
185 | { | ||
186 | platform_device_register_simple("exynos-cpufreq", -1, NULL, 0); | ||
187 | } | ||
188 | |||
189 | void __iomem *sysram_base_addr; | 168 | void __iomem *sysram_base_addr; |
190 | void __iomem *sysram_ns_base_addr; | 169 | void __iomem *sysram_ns_base_addr; |
191 | 170 | ||
@@ -335,8 +314,11 @@ static void __init exynos_dt_machine_init(void) | |||
335 | if (!IS_ENABLED(CONFIG_SMP)) | 314 | if (!IS_ENABLED(CONFIG_SMP)) |
336 | exynos_sysram_init(); | 315 | exynos_sysram_init(); |
337 | 316 | ||
338 | exynos_cpuidle_init(); | 317 | if (of_machine_is_compatible("samsung,exynos4210") || |
339 | exynos_cpufreq_init(); | 318 | of_machine_is_compatible("samsung,exynos5250")) |
319 | platform_device_register(&exynos_cpuidle); | ||
320 | |||
321 | platform_device_register_simple("exynos-cpufreq", -1, NULL, 0); | ||
340 | 322 | ||
341 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); | 323 | of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL); |
342 | } | 324 | } |