diff options
author | Jon Hunter <jon-hunter@ti.com> | 2012-09-23 19:28:29 -0400 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2012-09-23 19:28:29 -0400 |
commit | ee75d95cea05bd4f42a5db7b17dd8529d25beddd (patch) | |
tree | b0420f03d6ab3eb0713cce7d4c433ed9276f6b3b /arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | |
parent | c7dad45f351e9bea8ebaa974f01b01c8f69432b4 (diff) |
ARM: OMAP2+: PMU: Convert OMAP2/3 devices to use HWMOD
Convert OMAP2/3 devices to use HWMOD for creating a PMU device. To support PMU
on OMAP2 devices we only need to use MPU sub-system and so we can simply use
the MPU HWMOD to create the PMU device. To support PMU on OMAP3 devices, we need
to use the MPU and DEBUG sub-systems and so use these HWMODs to create the PMU
device for OMAP3.
The MPU HWMOD for OMAP2/3 devices is currently missing the PMU interrupt and so
add the PMU interrupt to the MPU HWMOD for these devices.
This change also moves the PMU code out of the mach-omap2/devices.c files into
its own pmu.c file as suggested by Kevin Hilman to de-clutter devices.c.
Cc: Ming Lei <ming.lei@canonical.com>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Benoit Cousson <b-cousson@ti.com>
Cc: Paul Walmsley <paul@pwsan.com>
Cc: Kevin Hilman <khilman@ti.com>
Signed-off-by: Jon Hunter <jon-hunter@ti.com>
[paul@pwsan.com: fixed checkpatch messages; updated to apply; dropped old-style
initial filename line in header comments]
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod_3xxx_data.c')
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c index ffc014244386..4ad1f2b270af 100644 --- a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | |||
@@ -93,8 +93,14 @@ static struct omap_hwmod omap3xxx_l4_sec_hwmod = { | |||
93 | }; | 93 | }; |
94 | 94 | ||
95 | /* MPU */ | 95 | /* MPU */ |
96 | static struct omap_hwmod_irq_info omap3xxx_mpu_irqs[] = { | ||
97 | { .name = "pmu", .irq = 3 }, | ||
98 | { .irq = -1 } | ||
99 | }; | ||
100 | |||
96 | static struct omap_hwmod omap3xxx_mpu_hwmod = { | 101 | static struct omap_hwmod omap3xxx_mpu_hwmod = { |
97 | .name = "mpu", | 102 | .name = "mpu", |
103 | .mpu_irqs = omap3xxx_mpu_irqs, | ||
98 | .class = &mpu_hwmod_class, | 104 | .class = &mpu_hwmod_class, |
99 | .main_clk = "arm_fck", | 105 | .main_clk = "arm_fck", |
100 | }; | 106 | }; |