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

ARM: dts: omap5-board-common: fix ldo1_reg and ldo4_reg ranges

ldo4_reg is connected to DSS, and should always be 1.8V. However the
The dts defines a range of 1.5V-1.8V, which requires somethings to set
the actual voltage at runtime. Currently we set the voltage in omapdss
driver.

As the voltage must always be 1.8V, let's just define the range to 1.8V
so that the driver doesn't need to deal with the voltage. In fact, the
driver should not touch the voltage, except in the cases where the
voltage needs to be changed at runtime.

I presume the situation is the same for ldo1_reg, used for CSI, although
I think it is not currently used in the mainline.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>

authored by

Tomi Valkeinen and committed by
Tony Lindgren
5086e5c7 f55532a0

+2 -2
+2 -2
arch/arm/boot/dts/omap5-board-common.dtsi
··· 472 472 ldo1_reg: ldo1 { 473 473 /* VDDAPHY_CAM: vdda_csiport */ 474 474 regulator-name = "ldo1"; 475 - regulator-min-microvolt = <1500000>; 475 + regulator-min-microvolt = <1800000>; 476 476 regulator-max-microvolt = <1800000>; 477 477 }; 478 478 ··· 498 498 ldo4_reg: ldo4 { 499 499 /* VDDAPHY_DISP: vdda_dsiport/hdmi */ 500 500 regulator-name = "ldo4"; 501 - regulator-min-microvolt = <1500000>; 501 + regulator-min-microvolt = <1800000>; 502 502 regulator-max-microvolt = <1800000>; 503 503 }; 504 504