Skip to content

Commit

Permalink
ARM: dts: imx53-qsb: Provide the TVE DAC regulators
Browse files Browse the repository at this point in the history
On imx53-qsb the TVE DAC regulator comes from:

- LDO7 on the board with the Dialog DA9052 PMIC
- VDAC on the board with the MC34708 PMIC

Pass them in the 'dac-supply' node.

While at it, remove the 'regulator-always-on/regulator-boot-on'
properties as the TVE driver will properly handle it.

Tested on a imx53-qsb board with a Dialog DA9052 PMIC.

Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
  • Loading branch information
Fabio Estevam authored and Shawn Guo committed Jan 10, 2017
1 parent a4e31f2 commit 042f6d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 4 additions & 1 deletion arch/arm/boot/dts/imx53-qsb.dts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@
ldo7_reg: ldo7 {
regulator-min-microvolt = <1200000>;
regulator-max-microvolt = <3600000>;
regulator-always-on;
};

ldo8_reg: ldo8 {
Expand All @@ -113,3 +112,7 @@
};
};
};

&tve {
dac-supply = <&ldo7_reg>;
};
6 changes: 4 additions & 2 deletions arch/arm/boot/dts/imx53-qsrb.dts
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,6 @@
regulator-name = "VDAC";
regulator-min-microvolt = <2500000>;
regulator-max-microvolt = <2775000>;
regulator-boot-on;
regulator-always-on;
};

vgen1_reg: vgen1 {
Expand All @@ -152,3 +150,7 @@
};
};
};

&tve {
dac-supply = <&vdac_reg>;
};

0 comments on commit 042f6d9

Please sign in to comment.