forked from radxa-pkg/radxa-overlays
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request radxa-pkg#336 from Ken-Vamrs/main
add radxa cm5 io rpi camera v13 and update csi0 camera-module-index
- Loading branch information
Showing
4 changed files
with
173 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
169 changes: 169 additions & 0 deletions
169
arch/arm64/boot/dts/rockchip/overlays/radxa-cm5-io-rpi-camera-v1p3.dts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,169 @@ | ||
/dts-v1/; | ||
/plugin/; | ||
|
||
#include <dt-bindings/gpio/gpio.h> | ||
#include <dt-bindings/pinctrl/rockchip.h> | ||
|
||
/ { | ||
metadata { | ||
title ="Enable Raspberry Pi Camera v1.3 on CSI0"; | ||
compatible = "radxa,cm5-io"; | ||
category = "camera"; | ||
exclusive = "csi2_dphy0"; | ||
description = "Enable Raspberry Pi Camera v1.3 on CSI0."; | ||
}; | ||
}; | ||
|
||
&{/} { | ||
clk_cam_25m: external-camera-clock-25m { | ||
status = "okay"; | ||
compatible = "fixed-clock"; | ||
clock-frequency = <25000000>; | ||
clock-output-names = "clk_cam_25m"; | ||
#clock-cells = <0>; | ||
}; | ||
}; | ||
|
||
&i2c7 { | ||
status = "okay"; | ||
pinctrl-0 = <&i2c7m2_xfer>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
ov5647: ov5647@36 { | ||
status = "okay"; | ||
compatible = "ovti,ov5647"; | ||
reg = <0x36>; | ||
clocks = <&clk_cam_25m>; | ||
pwdn-gpios = <&gpio1 RK_PB2 GPIO_ACTIVE_LOW>; | ||
clock-names = "ext_cam_clk"; | ||
rockchip,camera-module-index = <1>; | ||
rockchip,camera-module-facing = "back"; | ||
rockchip,camera-module-name = "rpi-camera-v1p3"; | ||
rockchip,camera-module-lens-name = "default"; | ||
|
||
port { | ||
ov5647_out0: endpoint { | ||
remote-endpoint = <&mipidphy0_in_ucam1>; | ||
data-lanes = <1 2>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
&csi2_dphy0_hw { | ||
status = "okay"; | ||
}; | ||
|
||
&csi2_dphy0 { | ||
status = "okay"; | ||
|
||
ports { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
port@0 { | ||
reg = <0>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
mipidphy0_in_ucam1: endpoint@2 { | ||
reg = <2>; | ||
remote-endpoint = <&ov5647_out0>; | ||
data-lanes = <1 2>; | ||
}; | ||
}; | ||
|
||
port@1 { | ||
reg = <1>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
csidphy0_out: endpoint@0 { | ||
reg = <0>; | ||
remote-endpoint = <&mipi2_csi2_input>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
&mipi2_csi2 { | ||
status = "okay"; | ||
|
||
ports { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
port@0 { | ||
reg = <0>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
mipi2_csi2_input: endpoint@1 { | ||
reg = <1>; | ||
remote-endpoint = <&csidphy0_out>; | ||
}; | ||
}; | ||
|
||
port@1 { | ||
reg = <1>; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
mipi2_csi2_output: endpoint@0 { | ||
reg = <0>; | ||
remote-endpoint = <&cif_mipi2_in0>; | ||
}; | ||
}; | ||
}; | ||
}; | ||
|
||
&rkcif { | ||
status = "okay"; | ||
}; | ||
|
||
&rkcif_mipi_lvds2 { | ||
status = "okay"; | ||
|
||
port { | ||
cif_mipi2_in0: endpoint { | ||
remote-endpoint = <&mipi2_csi2_output>; | ||
}; | ||
}; | ||
}; | ||
|
||
&rkcif_mipi_lvds2_sditf { | ||
status = "okay"; | ||
|
||
port { | ||
mipi_lvds2_sditf: endpoint { | ||
remote-endpoint = <&isp1_vir0>; | ||
}; | ||
}; | ||
}; | ||
|
||
&rkcif_mmu { | ||
status = "okay"; | ||
}; | ||
|
||
&isp1_mmu { | ||
status = "okay"; | ||
}; | ||
|
||
&rkisp1 { | ||
status = "okay"; | ||
}; | ||
|
||
&rkisp1_vir0 { | ||
status = "okay"; | ||
|
||
port { | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
|
||
isp1_vir0: endpoint@0 { | ||
reg = <0>; | ||
remote-endpoint = <&mipi_lvds2_sditf>; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters