mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 0/9] Add CSI2RX capture support on TI J7 platforms
@ 2024-01-29 13:27 Vaishnav Achath
  2024-01-29 13:27 ` [PATCH 1/9] arm64: dts: ti: k3-j721s2-common-proc-board: Enable camera peripherals Vaishnav Achath
                   ` (8 more replies)
  0 siblings, 9 replies; 14+ messages in thread
From: Vaishnav Achath @ 2024-01-29 13:27 UTC (permalink / raw)
  To: nm, vigneshr, kristo, robh+dt, krzysztof.kozlowski+dt, conor+dt
  Cc: kernel, linux-arm-kernel, devicetree, linux-kernel, vaishnav.a,
	u-kumar1, j-choudhary, j-luthra

Hi,

This series adds support for CSI2RX capture support on J7 platforms,
series was tested for CSI2RX capture on OV5640 sensor and RPI camera
v2 IMX219 sensor on J721e Common Processor Board, J721E Starter kit,
J721S2 Common Processor Board, AM68 Starter Kit, J784s4 EVM and AM69
Starter kit.

Test logs:
J721E EVM OV5640 - https://gist.github.com/vaishnavachath/b08521386cfbe1939facf39b8b2d796b
J721S2 EVM OV5640 - https://gist.github.com/vaishnavachath/1b0d60da6b6464cf12334cd5e161a79b
J784s4 EVM OV5640 - https://gist.github.com/vaishnavachath/02b70df94d2d41662eff99f4ce966d67
TDA4VM SK IMX219 - https://gist.github.com/vaishnavachath/64fc6edd6cc060027812bebd6573df07
AM68 SK IMX219 - https://gist.github.com/vaishnavachath/d522254ff5e797bc853e0706fbea932a
AM69 SK IMX219 - https://gist.github.com/vaishnavachath/8dbd960cc89d691886df371c53aac399

Only a single set of overlays for RPI IMX219 is included in the series
for reference and other overlays to test OV5640 can be found here:
https://gist.github.com/vaishnavachath/d0a052106892fe9f3096733931e9ad5f

Patch 7/9 depends on : 
https://lore.kernel.org/all/20240125111449.855876-1-vaishnav.a@ti.com/

Thanks and Regards,
Vaishnav

Vaishnav Achath (9):
  arm64: dts: ti: k3-j721s2-common-proc-board: Enable camera peripherals
  arm64: dts: ti: k3-j784s4-evm: Enable camera peripherals
  arm64: dts: ti: k3-am68-sk-base-board: Enable camera peripherals
  arm64: dts: ti: k3-am69-sk: Enable camera peripherals
  arm64: dts: ti: k3-j721e-sk: Model CSI2RX connector mux
  arm64: dts: ti: k3-j721e-main: Add CSI2RX capture nodes
  arm64: dts: ti: k3-j721s2-main: Add CSI2RX capture nodes
  arm64: dts: ti: k3-j784s4-main: Add CSI2RX capture nodes
  arm64: dts: ti: k3-am69-sk: Add overlay for IMX219

 arch/arm64/boot/dts/ti/Makefile               |   6 +
 .../boot/dts/ti/k3-am68-sk-base-board.dts     |  50 +++++
 .../boot/dts/ti/k3-am69-sk-csi2-imx219.dtso   | 124 ++++++++++++
 arch/arm64/boot/dts/ti/k3-am69-sk.dts         |  51 +++++
 arch/arm64/boot/dts/ti/k3-j721e-main.dtsi     | 122 ++++++++++++
 arch/arm64/boot/dts/ti/k3-j721e-sk.dts        |  19 +-
 .../dts/ti/k3-j721s2-common-proc-board.dts    |  25 +++
 arch/arm64/boot/dts/ti/k3-j721s2-main.dtsi    | 123 +++++++++++-
 arch/arm64/boot/dts/ti/k3-j784s4-evm.dts      |  25 +++
 arch/arm64/boot/dts/ti/k3-j784s4-main.dtsi    | 183 +++++++++++++++++-
 10 files changed, 724 insertions(+), 4 deletions(-)
 create mode 100644 arch/arm64/boot/dts/ti/k3-am69-sk-csi2-imx219.dtso

-- 
2.34.1


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2024-02-08  8:54 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-29 13:27 [PATCH 0/9] Add CSI2RX capture support on TI J7 platforms Vaishnav Achath
2024-01-29 13:27 ` [PATCH 1/9] arm64: dts: ti: k3-j721s2-common-proc-board: Enable camera peripherals Vaishnav Achath
2024-01-29 13:27 ` [PATCH 2/9] arm64: dts: ti: k3-j784s4-evm: " Vaishnav Achath
2024-01-29 13:27 ` [PATCH 3/9] arm64: dts: ti: k3-am68-sk-base-board: " Vaishnav Achath
2024-01-31  8:32   ` Jai Luthra
2024-01-29 13:27 ` [PATCH 4/9] arm64: dts: ti: k3-am69-sk: " Vaishnav Achath
2024-01-29 13:27 ` [PATCH 5/9] arm64: dts: ti: k3-j721e-sk: Model CSI2RX connector mux Vaishnav Achath
2024-01-29 13:27 ` [PATCH 6/9] arm64: dts: ti: k3-j721e-main: Add CSI2RX capture nodes Vaishnav Achath
2024-01-29 13:27 ` [PATCH 7/9] arm64: dts: ti: k3-j721s2-main: " Vaishnav Achath
2024-01-29 13:27 ` [PATCH 8/9] arm64: dts: ti: k3-j784s4-main: " Vaishnav Achath
2024-01-29 13:27 ` [PATCH 9/9] arm64: dts: ti: k3-am69-sk: Add overlay for IMX219 Vaishnav Achath
2024-01-29 18:38   ` Andrew Davis
2024-01-31  8:15   ` Jai Luthra
2024-02-08  8:53     ` Vaishnav Achath

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®