Message ID | 1387468774-14216-4-git-send-email-treding@nvidia.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 12/19/2013 08:59 AM, Thierry Reding wrote: > Add a device node for the MIPI calibration block on Tegra114. There is > no need to disable it by default because it only enables the clock while > performing calibration and therefore shouldn't be consuming any power > when unused. > diff --git a/arch/arm/boot/dts/tegra114.dtsi b/arch/arm/boot/dts/tegra114.dtsi > + mipi: mipi { That should be: mipi: mipi@700e3000 { I fixed it up for you.
On Thu, Dec 19, 2013 at 05:11:00PM -0700, Stephen Warren wrote: > On 12/19/2013 08:59 AM, Thierry Reding wrote: > > Add a device node for the MIPI calibration block on Tegra114. There is > > no need to disable it by default because it only enables the clock while > > performing calibration and therefore shouldn't be consuming any power > > when unused. > > > diff --git a/arch/arm/boot/dts/tegra114.dtsi b/arch/arm/boot/dts/tegra114.dtsi > > > + mipi: mipi { > > That should be: > > mipi: mipi@700e3000 { > > I fixed it up for you. Right. Many of the patches I'm carrying locally predate the unit number requirement change. I did make a pass to update all, but this must have slipped through the cracks. Thanks, Thierry
diff --git a/arch/arm/boot/dts/tegra114.dtsi b/arch/arm/boot/dts/tegra114.dtsi index ae855ec60bbd..9a40a3fc37ec 100644 --- a/arch/arm/boot/dts/tegra114.dtsi +++ b/arch/arm/boot/dts/tegra114.dtsi @@ -480,6 +480,13 @@ }; }; + mipi: mipi { + compatible = "nvidia,tegra114-mipi"; + reg = <0x700e3000 0x100>; + clocks = <&tegra_car TEGRA114_CLK_MIPI_CAL>; + #nvidia,mipi-calibrate-cells = <1>; + }; + sdhci@78000000 { compatible = "nvidia,tegra114-sdhci", "nvidia,tegra30-sdhci"; reg = <0x78000000 0x200>;
Add a device node for the MIPI calibration block on Tegra114. There is no need to disable it by default because it only enables the clock while performing calibration and therefore shouldn't be consuming any power when unused. Signed-off-by: Thierry Reding <treding@nvidia.com> --- Changes in v3: - update for revised bindings Changes in v2: - remove include/dt-bindings/gpu/host1x/tegra114-mipi.h arch/arm/boot/dts/tegra114.dtsi | 7 +++++++ 1 file changed, 7 insertions(+)