linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Tim Harvey <tharvey@gateworks.com>
To: devicetree@vger.kernel.org, Rob Herring <robh+dt@kernel.org>,
	Shawn Guo <shawnguo@kernel.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	Fabio Estevam <festevam@gmail.com>,
	NXP Linux Team <linux-imx@nxp.com>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Adam Ford <aford173@gmail.com>,
	Tim Harvey <tharvey@gateworks.com>
Subject: [RFC] arm64: dts: imx8mm: add imx8mm-venice-gw73xx-0x-imx219 overlay
Date: Fri, 12 Nov 2021 10:33:11 -0800	[thread overview]
Message-ID: <20211112183311.9556-1-tharvey@gateworks.com> (raw)

Add support for the RaspberryPi Camera v2 module attached to an
imx8mm-venice-gw73xx-0x.

This camera is an IMX219 8MP module:
 - https://datasheets.raspberrypi.com/camera/camera-v2-schematics.pdf
 - has its own on-board 24MHz osc so no clock required from baseboard
 - pin 11 enables 1.8V and 2.8V LDO which is connected to
   GW73xx MIPI_GPIO4 (IMX8MM GPIO1_IO1). The imx219 driver does not
   support powerdown-gpios therefore we use gpio1 via reset-gpios

Support is added via a device-tree overlay.

The IMX219 supports RAW8/RAW10 image formats.

Example usage:
 media-ctl --links "'imx219 2-0010':0->'imx7-mipi-csis.0':0[1]"
 media-ctl -v -V "'imx219 2-0010':0 [fmt:SRGGB8/640x480 field:none]"
 media-ctl -v -V "'csi':0 [fmt:SRGGB8/640x480 field:none]"
 gst-launch-1.0 -v v4l2src num-buffers=1 ! \
       video/x-bayer,format=rggb,width=640,height=480,framerate=30/1 ! \
       bayer2rgb ! jpegenc ! filesink location=test.jpg
 gst-launch-1.0 -v v4l2src num-buffers=300 ! \
       video/x-bayer,format=rggb,width=640,height=480,framerate=30/1 ! \
       bayer2rgb ! jpegenc ! avimux ! filesink location=test.avi

This patch depends on 'arm64: dts: imx8mm: Add CSI nodes' at:
https://lore.kernel.org/all/20211106155427.753197-2-aford173@gmail.com/

This is an RFC as I am not aware of other dt fragments/overlays being
added to the kernel yet. I do get a few warnings but I believe they are
because this is a fragment:

$ make DTC_FLAGS="-@" dtbs W=1
  DTC
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dtb
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dts:33.3-16:
Warning (reg_format): /fragment@2/__overlay__/sensor@10:reg: property
has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dts:52.10-57.5:
Warning (unit_address_vs_reg): /fragment@3/__overlay__/ports/port@0:
node has a unit name, but no reg or ranges property
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dtb:
Warning (pci_device_reg): Failed prerequisite 'reg_format'
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dtb:
Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dtb:
Warning (simple_bus_reg): Failed prerequisite 'reg_format'
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dtb:
Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dtb:
Warning (spi_bus_reg): Failed prerequisite 'reg_format'
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dts:29.20-46.4:
Warning (avoid_default_addr_size): /fragment@2/__overlay__/sensor@10:
Relying on default #address-cells value
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dts:29.20-46.4:
Warning (avoid_default_addr_size): /fragment@2/__overlay__/sensor@10:
Relying on default #size-cells value
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dtb:
Warning (avoid_unnecessary_addr_size): Failed prerequisite
'avoid_default_addr_size'
arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dtb:
Warning (unique_unit_address): Failed prerequisite
'avoid_default_addr_size'

The intended use of a dt fragement like this is to apply it in boot
firmware before booting the kernel such as:

u-boot=> load mmc 0:1 $fdt_addr_r imx8mm-venice-gw73xx-0x.dtb
u-boot=> fdt addr $fdt_addr_r
u-boot=> fdt resize
u-boot=> load mmc 0:1 $loadaddr imx8mm-venice-gw73xx-0x-imx219.dtb
u-boot=> fdt appply $loadaddr
u-boot=> load mmc 0:1 $kernel_addr_r Image
u-boot=> booti $kernel_addr_r - $fdt_addr_r

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
---
 arch/arm64/boot/dts/freescale/Makefile        |  1 +
 .../imx8mm-venice-gw73xx-0x-imx219.dts        | 67 +++++++++++++++++++
 2 files changed, 68 insertions(+)
 create mode 100644 arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dts

diff --git a/arch/arm64/boot/dts/freescale/Makefile b/arch/arm64/boot/dts/freescale/Makefile
index db9e36ebe932..cc00ac78dbc6 100644
--- a/arch/arm64/boot/dts/freescale/Makefile
+++ b/arch/arm64/boot/dts/freescale/Makefile
@@ -42,6 +42,7 @@ dtb-$(CONFIG_ARCH_MXC) += imx8mm-var-som-symphony.dtb
 dtb-$(CONFIG_ARCH_MXC) += imx8mm-venice-gw71xx-0x.dtb
 dtb-$(CONFIG_ARCH_MXC) += imx8mm-venice-gw72xx-0x.dtb
 dtb-$(CONFIG_ARCH_MXC) += imx8mm-venice-gw73xx-0x.dtb
+dtb-$(CONFIG_ARCH_MXC) += imx8mm-venice-gw73xx-0x-imx219.dtb
 dtb-$(CONFIG_ARCH_MXC) += imx8mm-venice-gw7901.dtb
 dtb-$(CONFIG_ARCH_MXC) += imx8mm-venice-gw7902.dtb
 dtb-$(CONFIG_ARCH_MXC) += imx8mn-beacon-kit.dtb
diff --git a/arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dts b/arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dts
new file mode 100644
index 000000000000..6f692ba24a31
--- /dev/null
+++ b/arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x-imx219.dts
@@ -0,0 +1,67 @@
+// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
+/*
+ * Copyright 2021 Gateworks Corporation
+ */
+
+#include <dt-bindings/gpio/gpio.h>
+
+#include "imx8mm-pinfunc.h"
+
+/dts-v1/;
+/plugin/;
+
+&{/} {
+	compatible = "gw,imx8mm-gw73xx-0x", "fsl,imx8mm";
+
+	cam24m: cam24m {
+		compatible = "fixed-clock";
+		#clock-cells = <0>;
+		clock-frequency = <24000000>;
+		clock-output-names = "cam24m";
+	};
+};
+
+&csi {
+	status = "okay";
+};
+
+&i2c3 {
+	imx219: sensor@10 {
+		compatible = "sony,imx219";
+		pinctrl-names = "default";
+		pinctrl-0 = <&pinctrl_imx219>;
+		reg = <0x10>;
+		clocks = <&cam24m>;
+		reset-gpios = <&gpio1 1 GPIO_ACTIVE_HIGH>;
+
+		port {
+			/* MIPI CSI-2 bus endpoint */
+			imx219_to_mipi_csi2: endpoint {
+				remote-endpoint = <&imx8mm_mipi_csi_in>;
+				clock-lanes = <0>;
+				data-lanes = <1 2>;
+				link-frequencies = /bits/ 64 <456000000>;
+			};
+		};
+	};
+};
+
+&mipi_csi {
+	status = "okay";
+	ports {
+		port@0 {
+			imx8mm_mipi_csi_in: endpoint {
+				remote-endpoint = <&imx219_to_mipi_csi2>;
+				data-lanes = <1 2>;
+			};
+		};
+	};
+};
+
+&iomuxc {
+	pinctrl_imx219: imx219grp {
+		fsl,pins = <
+			MX8MM_IOMUXC_GPIO1_IO01_GPIO1_IO1	0x41
+		>;
+	};
+};
-- 
2.17.1


             reply	other threads:[~2021-11-12 18:33 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-12 18:33 Tim Harvey [this message]
2021-11-15  9:46 ` [RFC] arm64: dts: imx8mm: add imx8mm-venice-gw73xx-0x-imx219 overlay Laurent Pinchart
2021-11-15 18:06   ` Tim Harvey

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211112183311.9556-1-tharvey@gateworks.com \
    --to=tharvey@gateworks.com \
    --cc=aford173@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@gmail.com \
    --cc=kernel@pengutronix.de \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).