]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
regulator: anatop: set default voltage selector for pcie
authorDong Aisheng <aisheng.dong@nxp.com>
Wed, 12 Apr 2017 01:58:47 +0000 (09:58 +0800)
committerMark Brown <broonie@kernel.org>
Thu, 13 Apr 2017 18:06:24 +0000 (19:06 +0100)
Set the initial voltage selector for vddpcie in case it's disabled
by default.

This fixes the below warning:
20c8000.anatop:regulator-vddpcie: Failed to read a valid default voltage selector.
anatop_regulator: probe of 20c8000.anatop:regulator-vddpcie failed with error -22

Cc: Liam Girdwood <lgirdwood@gmail.com>
Cc: Mark Brown <broonie@kernel.org>
Cc: Shawn Guo <shawnguo@kernel.org>
Cc: Sascha Hauer <kernel@pengutronix.de>
Cc: Robin Gong <yibin.gong@nxp.com>
Cc: Richard Zhu <hongxing.zhu@nxp.com>
Signed-off-by: Richard Zhu <hongxing.zhu@nxp.com>
Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/anatop-regulator.c

index c6ce9745ffc8dd18de8368fd547f31c6a5c31aab..fa27c9de6744825d8067ce09ecb4868355dde862 100644 (file)
@@ -299,6 +299,11 @@ static int anatop_regulator_probe(struct platform_device *pdev)
                if (!sreg->sel && !strcmp(rdesc->name, "vddpu"))
                        sreg->sel = 22;
 
+               /* set the default voltage of the pcie phy to be 1.100v */
+               if (!sreg->sel && rdesc->name &&
+                   !strcmp(rdesc->name, "vddpcie"))
+                       sreg->sel = 0x10;
+
                if (!sreg->bypass && !sreg->sel) {
                        dev_err(&pdev->dev, "Failed to read a valid default voltage selector.\n");
                        return -EINVAL;