diff options
author | Sudeep Holla <sudeep.holla@arm.com> | 2017-06-06 12:32:24 +0200 |
---|---|---|
committer | Sudeep Holla <sudeep.holla@arm.com> | 2018-02-28 17:37:57 +0100 |
commit | 76a6550990e296a7acbb4d33201c9740be912a8c (patch) | |
tree | 76774fc28a4ed2f5fd02dc86f0c7d3873225b479 /drivers/firmware/arm_scmi/Makefile | |
parent | firmware: arm_scmi: add initial support for clock protocol (diff) | |
download | linux-76a6550990e296a7acbb4d33201c9740be912a8c.tar.xz linux-76a6550990e296a7acbb4d33201c9740be912a8c.zip |
firmware: arm_scmi: add initial support for power protocol
The power protocol is intended for management of power states of various
power domains. The power domain management protocol provides commands to
describe the protocol version, discover the implementation specific
attributes, set and get the power state of a domain.
This patch adds support for the above mention features of the protocol.
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
--
drivers/firmware/arm_scmi/Makefile | 2 +-
drivers/firmware/arm_scmi/power.c | 242 +++++++++++++++++++++++++++++++++++++
include/linux/scmi_protocol.h | 28 +++++
3 files changed, 271 insertions(+), 1 deletion(-)
create mode 100644 drivers/firmware/arm_scmi/power.c
Diffstat (limited to 'drivers/firmware/arm_scmi/Makefile')
-rw-r--r-- | drivers/firmware/arm_scmi/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/arm_scmi/Makefile b/drivers/firmware/arm_scmi/Makefile index 2130ee9ac825..420c761ced94 100644 --- a/drivers/firmware/arm_scmi/Makefile +++ b/drivers/firmware/arm_scmi/Makefile @@ -1,4 +1,4 @@ obj-y = scmi-bus.o scmi-driver.o scmi-protocols.o scmi-bus-y = bus.o scmi-driver-y = driver.o -scmi-protocols-y = base.o clock.o perf.o +scmi-protocols-y = base.o clock.o perf.o power.o |