diff options
author | Tony Lindgren <tony@atomide.com> | 2020-01-23 18:59:29 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2020-01-23 18:59:29 +0100 |
commit | d7a9d45d5f060aec1e1909e3d57da5635a1bac97 (patch) | |
tree | ca8d09b2cc971f642c232d26bf1578343fa66d55 /arch/arm/boot/dts/dra76-evm.dts | |
parent | ARM: dts: Add omap3-echo (diff) | |
parent | ARM: dts: dra7: Add ti-sysc node for VPE (diff) | |
download | linux-d7a9d45d5f060aec1e1909e3d57da5635a1bac97.tar.xz linux-d7a9d45d5f060aec1e1909e3d57da5635a1bac97.zip |
Merge branch 'omap-for-v5.6/ti-sysc-dt-cam' into omap-for-v5.6/dt
Diffstat (limited to 'arch/arm/boot/dts/dra76-evm.dts')
-rw-r--r-- | arch/arm/boot/dts/dra76-evm.dts | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/dra76-evm.dts b/arch/arm/boot/dts/dra76-evm.dts index 86a3e79909a8..e958cb3d1b31 100644 --- a/arch/arm/boot/dts/dra76-evm.dts +++ b/arch/arm/boot/dts/dra76-evm.dts @@ -124,6 +124,12 @@ regulator-max-microvolt = <1800000>; }; + clk_ov5640_fixed: clock { + compatible = "fixed-clock"; + #clock-cells = <0>; + clock-frequency = <24000000>; + }; + hdmi0: connector { compatible = "hdmi-connector"; label = "hdmi"; @@ -366,6 +372,27 @@ }; }; +&i2c5 { + status = "okay"; + clock-frequency = <400000>; + + ov5640@3c { + compatible = "ovti,ov5640"; + reg = <0x3c>; + + clocks = <&clk_ov5640_fixed>; + clock-names = "xclk"; + + port { + csi2_cam0: endpoint { + remote-endpoint = <&csi2_phy0>; + clock-lanes = <0>; + data-lanes = <1 2>; + }; + }; + }; +}; + &cpu0 { vdd-supply = <&buck10_reg>; }; @@ -513,3 +540,11 @@ max-bitrate = <5000000>; }; }; + +&csi2_0 { + csi2_phy0: endpoint { + remote-endpoint = <&csi2_cam0>; + clock-lanes = <0>; + data-lanes = <1 2>; + }; +}; |