]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ARM: dove: create a proper PMU driver for power domains, PMU IRQs and resets
authorRussell King <rmk+kernel@arm.linux.org.uk>
Wed, 15 Jul 2015 18:59:36 +0000 (19:59 +0100)
committerGregory CLEMENT <gregory.clement@free-electrons.com>
Wed, 5 Aug 2015 16:36:49 +0000 (18:36 +0200)
commit44e259ac909f3b41786cf732a44b5cf8444e098a
tree64b295810cbc09821dc2717be1e0b60855cf3e63
parent482d638f98cc626bf01d4c9f6d6d35fc77d630c8
ARM: dove: create a proper PMU driver for power domains, PMU IRQs and resets

The PMU device contains an interrupt controller, power control and
resets.  The interrupt controller is a little sub-standard in that
there is no race free way to clear down pending interrupts, so we try
to avoid problems by reducing the window as much as possible, and
clearing as infrequently as possible.

The interrupt support is implemented using an IRQ domain, and the
parent interrupt referenced in the standard DT way.

The power domains and reset support is closely related - there is a
defined sequence for powering down a domain which is tightly coupled
with asserting the reset.  Hence, it makes sense to group these two
together, and in order to avoid any locking contention disrupting this
sequence, we avoid the use of syscon or regmap.

This patch adds the core PMU driver: power domains must be defined in
the DT file in order to make use of them.  The reset controller can
be referenced in the standard way for reset controllers.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
arch/arm/mach-mvebu/Kconfig
arch/arm/mach-mvebu/dove.c
drivers/soc/Makefile
drivers/soc/dove/Makefile [new file with mode: 0644]
drivers/soc/dove/pmu.c [new file with mode: 0644]
include/linux/soc/dove/pmu.h [new file with mode: 0644]