summaryrefslogtreecommitdiff
path: root/drivers/power/domain/Makefile
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2019-09-02 18:16:32 +0800
committerStefano Babic <sbabic@denx.de>2019-11-05 10:27:18 +0100
commitafd267af8dc2a1f33e416dbb77fb30600aefe5cd (patch)
treed3a7bbb9ea204aca8adfc88bb1b999c9c6a98d6f /drivers/power/domain/Makefile
parent954b9311abc265e569d47876e75100b0e5e191ab (diff)
power: domain: add i.MX8 scu power domain driver
The power domain tree is not accepted by Linux Kernel upstream. only a single pd node is used currently, as following: pd: imx8qx-pd { compatible = "fsl,imx8qm-scu-pd", "fsl,scu-pd"; #power-domain-cells = <1>; }; So to migrate to use upstream linux dts, we also need a driver to support this. This patch is to support the new method, compared with legacy power domain tree, it will be simpiler, because each device will has resource id as power domain index, it will be directly passed to scfw, and no need to let power domain build that tree. If multiple power domain is needed, it is the dts node should has correctly power domains entry added and sequence correct. Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'drivers/power/domain/Makefile')
-rw-r--r--drivers/power/domain/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/domain/Makefile b/drivers/power/domain/Makefile
index 6bd090562f..45bf9f6383 100644
--- a/drivers/power/domain/Makefile
+++ b/drivers/power/domain/Makefile
@@ -5,7 +5,7 @@
obj-$(CONFIG_$(SPL_)POWER_DOMAIN) += power-domain-uclass.o
obj-$(CONFIG_BCM6328_POWER_DOMAIN) += bcm6328-power-domain.o
-obj-$(CONFIG_IMX8_POWER_DOMAIN) += imx8-power-domain-legacy.o
+obj-$(CONFIG_IMX8_POWER_DOMAIN) += imx8-power-domain-legacy.o imx8-power-domain.o
obj-$(CONFIG_IMX8M_POWER_DOMAIN) += imx8m-power-domain.o
obj-$(CONFIG_MTK_POWER_DOMAIN) += mtk-power-domain.o
obj-$(CONFIG_MESON_GX_VPU_POWER_DOMAIN) += meson-gx-pwrc-vpu.o