diff options
author | Chanho Park <chanho61.park@samsung.com> | 2012-12-12 06:03:54 +0100 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2013-04-08 18:47:45 +0200 |
commit | b7bbdbeebd94d63728d6caf12f2c4a670c5f3105 (patch) | |
tree | 0375888c8af59f71e71bcfd007c2482735e8b022 /arch/arm/plat-samsung | |
parent | irqchip: exynos-combiner: Correct combined IRQs for exynos4 (diff) | |
download | linux-b7bbdbeebd94d63728d6caf12f2c4a670c5f3105.tar.xz linux-b7bbdbeebd94d63728d6caf12f2c4a670c5f3105.zip |
ARM: EXYNOS: Enable PMUs for exynos4
This patch defines irq numbers of ARM performance monitoring unit for exynos4.
Firs of all, we need to fix IRQ_PMU correctly and to split pmu initialization
of exynos from plat-samsung for easily defining it.
The number of CPU cores and PMU irq numbers are vary according to soc types.
So, we need to identify each soc type using soc_is_xxx function and to define
the pmu irqs dynamically. For example, the exynos4412 has 4 cpu cores and pmus.
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-samsung')
-rw-r--r-- | arch/arm/plat-samsung/devs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-samsung/devs.c b/arch/arm/plat-samsung/devs.c index 51afedda9ab6..e1124d9fd2b0 100644 --- a/arch/arm/plat-samsung/devs.c +++ b/arch/arm/plat-samsung/devs.c @@ -1113,7 +1113,7 @@ struct platform_device s5p_device_onenand = { /* PMU */ -#ifdef CONFIG_PLAT_S5P +#if defined(CONFIG_PLAT_S5P) && !defined(CONFIG_ARCH_EXYNOS) static struct resource s5p_pmu_resource[] = { DEFINE_RES_IRQ(IRQ_PMU) }; |