diff options
| author | Martin Kepplinger <martin.kepplinger@puri.sm> | 2022-01-21 10:33:25 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-02-16 12:56:23 +0100 |
| commit | 0ed2f9a97a92559c28435d7fb229aac3ac88a224 (patch) | |
| tree | 92db3109dcc427a3b840d83fd0fb949b931d95e1 /arch | |
| parent | af6a1d60a13cbfd4dc56320eb55249cf1e3750a0 (diff) | |
| download | linux-0ed2f9a97a92559c28435d7fb229aac3ac88a224.tar.gz linux-0ed2f9a97a92559c28435d7fb229aac3ac88a224.tar.bz2 linux-0ed2f9a97a92559c28435d7fb229aac3ac88a224.zip | |
arm64: dts: imx8mq: fix mipi_csi bidirectional port numbers
[ Upstream commit 283d45145fbf460dbaf0229cacd7ed60ec52f364 ]
The port numbers for the imx8mq mipi csi controller are wrong and
the mipi driver can't find any media devices as port@1 is connected
to the CSI bridge, not port@0. And port@0 is connected to the
source - the sensor. Fix this.
Fixes: bcadd5f66c2a ("arm64: dts: imx8mq: add mipi csi phy and csi bridge descriptions")
Signed-off-by: Martin Kepplinger <martin.kepplinger@puri.sm>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm64/boot/dts/freescale/imx8mq.dtsi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm64/boot/dts/freescale/imx8mq.dtsi b/arch/arm64/boot/dts/freescale/imx8mq.dtsi index 2bc57d8f29c7..1a7039bc0b37 100644 --- a/arch/arm64/boot/dts/freescale/imx8mq.dtsi +++ b/arch/arm64/boot/dts/freescale/imx8mq.dtsi @@ -1123,8 +1123,8 @@ #address-cells = <1>; #size-cells = <0>; - port@0 { - reg = <0>; + port@1 { + reg = <1>; csi1_mipi_ep: endpoint { remote-endpoint = <&csi1_ep>; @@ -1175,8 +1175,8 @@ #address-cells = <1>; #size-cells = <0>; - port@0 { - reg = <0>; + port@1 { + reg = <1>; csi2_mipi_ep: endpoint { remote-endpoint = <&csi2_ep>; |
