diff options
author | Andrey Smirnov <andrew.smirnov@gmail.com> | 2017-03-28 08:19:45 -0700 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2017-04-07 19:37:07 +0800 |
commit | 03aa12629fc4f73acf28e519c9ee9cb1f5dd3706 (patch) | |
tree | e146754f23725897f2d370bb3df14dad2c39fc9b /drivers/soc/imx/Makefile | |
parent | 2d9eb1dd58f26bbf782b043e8c29f9c3ca62a15c (diff) |
soc: imx: Add GPCv2 power gating driver
Add code allowing for control of various power domains managed by GPCv2
IP block found in i.MX7 series of SoCs. Power domains covered by this
patch are:
- PCIE PHY
- MIPI PHY
- USB HSIC PHY
- USB OTG1/2 PHY
Support for any other power domain controlled by GPC is not present, and
can be added at some later point.
Testing of this code was done against a PCIe driver.
Cc: yurovsky@gmail.com
Cc: Lucas Stach <l.stach@pengutronix.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: Dong Aisheng <dongas86@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/soc/imx/Makefile')
-rw-r--r-- | drivers/soc/imx/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/soc/imx/Makefile b/drivers/soc/imx/Makefile index 35861f5b2802..5b6e396c1121 100644 --- a/drivers/soc/imx/Makefile +++ b/drivers/soc/imx/Makefile @@ -1 +1,2 @@ obj-y += gpc.o +obj-$(CONFIG_IMX7_PM_DOMAINS) += gpcv2.o |