linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2 00/10] ARM: OMAP4: Add PMU Support
@ 2012-06-07 21:22 Jon Hunter
  2012-06-07 21:22 ` [PATCH V2 01/10] ARM: PMU: Add runtime PM Support Jon Hunter
                   ` (10 more replies)
  0 siblings, 11 replies; 59+ messages in thread
From: Jon Hunter @ 2012-06-07 21:22 UTC (permalink / raw)
  To: linux-arm-kernel

This series adds PMU support for OMAP4 devices. This is based upon Will Deacons
series [1]. This series fixes the management of the EMU power domain so that
PMU can be enabled at runtime and low-power states are not prevented when PMU
is not in-use. The fix is based upon inputs from Benoit, Paul and Kevin [2].

This series also converts OMAP2/3 devices to use HWMOD to create the PMU device
and add a new file to mach-omap2 directory called pmu.c where the PMU devices
are created.

This series is based upon the latest linux-omap master branch from Tony
(3.5-rc1).

Testing:
- Verified that PMU is working on OMAP3430 Beagle Board, OMAP4430 Blaze and
  4460 Panda.
- Tested on the above boards with CPU-idle enabled to ensure that PMU is working
  with power management. For OMAP4 boards I have disabled CPU1 so that CPU0 and
  hence the MPU power domain is reaching the low-power retention state.
- I have booted the kernel on an OMAP2430 SDP but not verified PMU is working.
- Unable to verify 4470 Blaze because kernel is not currently booting.

[1] git://git.kernel.org/pub/scm/linux/kernel/git/will/linux.git perf/omap4
[2] http://marc.info/?l=oprofile-list&m=133657425417229&w=3

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>

Jon Hunter (8):
  ARM: PMU: Add runtime PM Support
  ARM: OMAP2+: PMU: Convert OMAP2/3 devices to use HWMOD
  ARM: OMAP4: Re-map the CTIs IRQs from MPU to DEBUGSS
  ARM: OMAP2+: PMU: Add runtime PM support
  ARM: OMAP4: CLKDM: Update supported transition modes
  ARM: OMAP4: Prevent EMU power domain transitioning to OFF when in-use
  ARM: OMAP4: Enable PMU for OMAP4460/70
  ARM: OMAP2+: PMU: Add QoS constraint

Ming Lei (2):
  ARM: OMAP4430: Create PMU device via HWMOD
  ARM: OMAP4: Route PMU IRQs to CTI IRQs

 arch/arm/include/asm/pmu.h                         |   20 +-
 arch/arm/kernel/perf_event.c                       |   41 +++-
 arch/arm/mach-omap2/Makefile                       |    1 +
 arch/arm/mach-omap2/clockdomain44xx.c              |    7 +-
 arch/arm/mach-omap2/clockdomains44xx_data.c        |    2 +-
 arch/arm/mach-omap2/cminst44xx.c                   |   14 --
 arch/arm/mach-omap2/devices.c                      |   33 ---
 arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c |    6 +
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c         |    6 +
 arch/arm/mach-omap2/omap_hwmod_44xx_data.c         |   11 +-
 arch/arm/mach-omap2/pmu.c                          |  251 ++++++++++++++++++++
 arch/arm/plat-omap/include/plat/irqs.h             |    1 +
 arch/arm/plat-omap/include/plat/omap44xx.h         |    3 +
 13 files changed, 328 insertions(+), 68 deletions(-)
 create mode 100644 arch/arm/mach-omap2/pmu.c

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 59+ messages in thread

end of thread, other threads:[~2012-10-09  4:41 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-07 21:22 [PATCH V2 00/10] ARM: OMAP4: Add PMU Support Jon Hunter
2012-06-07 21:22 ` [PATCH V2 01/10] ARM: PMU: Add runtime PM Support Jon Hunter
2012-06-08  9:47   ` Will Deacon
2012-06-08 14:17     ` Jon Hunter
2012-06-08 15:24     ` Jon Hunter
2012-06-11 17:39       ` Will Deacon
2012-06-11 19:01         ` Jon Hunter
2012-06-12  9:28           ` Will Deacon
2012-06-12 21:17             ` Jon Hunter
2012-06-12 21:31               ` Will Deacon
2012-06-12 22:41                 ` Jon Hunter
2012-07-02  9:55                   ` Will Deacon
2012-07-02 16:50                     ` Jon Hunter
2012-07-02 22:01                       ` Will Deacon
2012-07-06  0:40                         ` Jon Hunter
2012-07-26  0:41                           ` Jon Hunter
2012-07-26 15:05                             ` Will Deacon
2012-07-26 15:16                               ` Jon Hunter
2012-07-31 15:14                                 ` Will Deacon
2012-07-31 23:07                                   ` Jon Hunter
2012-08-01 20:47                                     ` Will Deacon
2012-08-01 22:34                                       ` Jon Hunter
2012-06-07 21:22 ` [PATCH V2 02/10] ARM: OMAP2+: PMU: Convert OMAP2/3 devices to use HWMOD Jon Hunter
2012-06-07 21:22 ` [PATCH V2 03/10] ARM: OMAP4: Re-map the CTIs IRQs from MPU to DEBUGSS Jon Hunter
2012-06-13  6:07   ` Pandita, Vikram
2012-06-13  6:13     ` Pandita, Vikram
2012-06-13  6:19       ` Shilimkar, Santosh
2012-06-07 21:22 ` [PATCH V2 04/10] ARM: OMAP4430: Create PMU device via HWMOD Jon Hunter
2012-06-07 21:22 ` [PATCH V2 05/10] ARM: OMAP2+: PMU: Add runtime PM support Jon Hunter
2012-06-07 21:22 ` [PATCH V2 06/10] ARM: OMAP4: Route PMU IRQs to CTI IRQs Jon Hunter
2012-06-07 21:22 ` [PATCH V2 07/10] ARM: OMAP4: CLKDM: Update supported transition modes Jon Hunter
2012-07-04 15:38   ` Paul Walmsley
2012-07-05 17:14     ` Jon Hunter
2012-06-07 21:22 ` [PATCH V2 08/10] ARM: OMAP4: Prevent EMU power domain transitioning to OFF when in-use Jon Hunter
2012-07-12 21:17   ` Paul Walmsley
2012-07-13 13:54     ` Jon Hunter
2012-07-13 14:00       ` Will Deacon
2012-07-13 14:07         ` Jon Hunter
2012-07-20 22:24         ` Jon Hunter
2012-07-13 21:00       ` Paul Walmsley
2012-07-16 18:27         ` Jon Hunter
2012-07-16 18:38           ` Paul Walmsley
2012-07-16 19:38             ` Jon Hunter
2012-07-20 22:24             ` Jon Hunter
2012-07-30 23:26             ` Jon Hunter
2012-07-31  4:36               ` Jon Hunter
2012-07-31 18:16                 ` Jon Hunter
2012-08-01  0:20                   ` Jon Hunter
2012-08-01 15:08                     ` Paul Walmsley
2012-08-01 18:17                       ` Jon Hunter
2012-08-01 15:36                     ` Paul Walmsley
2012-08-01 19:41                       ` Jon Hunter
2012-08-02  7:34                       ` Shilimkar, Santosh
2012-10-08 22:24                       ` Jon Hunter
2012-10-09  4:41                         ` Paul Walmsley
2012-07-31 20:56     ` Jon Hunter
2012-06-07 21:22 ` [PATCH V2 09/10] ARM: OMAP4: Enable PMU for OMAP4460/70 Jon Hunter
2012-06-07 21:22 ` [PATCH V2 10/10] ARM: OMAP2+: PMU: Add QoS constraint Jon Hunter
2012-06-07 23:36 ` [PATCH V2 00/10] ARM: OMAP4: Add PMU Support Jon Hunter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).