diff options
author | A.s. Dong <aisheng.dong@nxp.com> | 2018-11-01 16:20:13 +0100 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2018-11-14 02:20:47 +0100 |
commit | c800cd7824bd8ceb1291f90e3f124c9172f59177 (patch) | |
tree | 205af202bf694f4b0f2025b94b8a94afdc1e1a58 /drivers/firmware/imx/Makefile | |
parent | firmware: imx: add pm svc headfile (diff) | |
download | linux-c800cd7824bd8ceb1291f90e3f124c9172f59177.tar.xz linux-c800cd7824bd8ceb1291f90e3f124c9172f59177.zip |
firmware: imx: add SCU power domain driver
Some i.MX SoCs contain a system controller that is responsible for
controlling the state of the IPs that are present. Communication
between the host processor running an OS and the system controller
happens through a SCU protocol. This patch adds SCU protocol based
power domains drivers.
Cc: Ulf Hansson <ulf.hansson@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Shawn Guo <shawnguo@kernel.org>
Cc: Sascha Hauer <kernel@pengutronix.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Kevin Hilman <khilman@kernel.org>
Cc: linux-pm@vger.kernel.org
Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/firmware/imx/Makefile')
-rw-r--r-- | drivers/firmware/imx/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/firmware/imx/Makefile b/drivers/firmware/imx/Makefile index 0ac04dfda8d4..1b2e15b3c9ca 100644 --- a/drivers/firmware/imx/Makefile +++ b/drivers/firmware/imx/Makefile @@ -1,2 +1,3 @@ # SPDX-License-Identifier: GPL-2.0 -obj-$(CONFIG_IMX_SCU) += imx-scu.o misc.o +obj-$(CONFIG_IMX_SCU) += imx-scu.o misc.o +obj-$(CONFIG_IMX_SCU_PD) += scu-pd.o |