Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: power: add defines for i.MX8MP power domain

This adds the DT defines for the GPC power domains found on the
i.MX8MP SoC.

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>

authored by

Lucas Stach and committed by
Shawn Guo
39d01d9c 6ba8986b

+31
+2
Documentation/devicetree/bindings/power/fsl,imx-gpcv2.yaml
··· 28 28 - fsl,imx8mn-gpc 29 29 - fsl,imx8mq-gpc 30 30 - fsl,imx8mm-gpc 31 + - fsl,imx8mp-gpc 31 32 32 33 reg: 33 34 maxItems: 1 ··· 58 57 include/dt-bindings/power/imx7-power.h for fsl,imx7d-gpc and 59 58 include/dt-bindings/power/imx8m-power.h for fsl,imx8mq-gpc 60 59 include/dt-bindings/power/imx8mm-power.h for fsl,imx8mm-gpc 60 + include/dt-bindings/power/imx8mp-power.h for fsl,imx8mp-gpc 61 61 maxItems: 1 62 62 63 63 clocks:
+29
include/dt-bindings/power/imx8mp-power.h
··· 1 + /* SPDX-License-Identifier: (GPL-2.0 OR MIT) */ 2 + /* 3 + * Copyright (C) 2020 Pengutronix, Sascha Hauer <kernel@pengutronix.de> 4 + */ 5 + 6 + #ifndef __DT_BINDINGS_IMX8MP_POWER_DOMAIN_POWER_H__ 7 + #define __DT_BINDINGS_IMX8MP_POWER_DOMAIN_POWER_H__ 8 + 9 + #define IMX8MP_POWER_DOMAIN_MIPI_PHY1 0 10 + #define IMX8MP_POWER_DOMAIN_PCIE_PHY 1 11 + #define IMX8MP_POWER_DOMAIN_USB1_PHY 2 12 + #define IMX8MP_POWER_DOMAIN_USB2_PHY 3 13 + #define IMX8MP_POWER_DOMAIN_MLMIX 4 14 + #define IMX8MP_POWER_DOMAIN_AUDIOMIX 5 15 + #define IMX8MP_POWER_DOMAIN_GPU2D 6 16 + #define IMX8MP_POWER_DOMAIN_GPUMIX 7 17 + #define IMX8MP_POWER_DOMAIN_VPUMIX 8 18 + #define IMX8MP_POWER_DOMAIN_GPU3D 9 19 + #define IMX8MP_POWER_DOMAIN_MEDIAMIX 10 20 + #define IMX8MP_POWER_DOMAIN_VPU_G1 11 21 + #define IMX8MP_POWER_DOMAIN_VPU_G2 12 22 + #define IMX8MP_POWER_DOMAIN_VPU_VC8000E 13 23 + #define IMX8MP_POWER_DOMAIN_HDMIMIX 14 24 + #define IMX8MP_POWER_DOMAIN_HDMI_PHY 15 25 + #define IMX8MP_POWER_DOMAIN_MIPI_PHY2 16 26 + #define IMX8MP_POWER_DOMAIN_HSIOMIX 17 27 + #define IMX8MP_POWER_DOMAIN_MEDIAMIX_ISPDWP 18 28 + 29 + #endif