Re: [PATCH 1/3] dt-bindings: media: i2c: Add imx576 sensor
From: Luca Weiss
Date: Wed May 20 2026 - 08:17:39 EST
Hi Himanshu,
On Wed May 20, 2026 at 1:56 PM CEST, Himanshu Bhavani wrote:
> From: Hardevsinh Palaniya <hardevsinh.palaniya@xxxxxxxxxxxxxxxxx>
>
> Add bindings for Sony IMX576 sensor
>
> Signed-off-by: Hardevsinh Palaniya <hardevsinh.palaniya@xxxxxxxxxxxxxxxxx>
This patch is missing your Signed-off-by I believe since you sent the
patch.
> ---
> .../bindings/media/i2c/sony,imx576.yaml | 111 ++++++++++++++++++
> MAINTAINERS | 7 ++
> 2 files changed, 118 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/media/i2c/sony,imx576.yaml
>
> diff --git a/Documentation/devicetree/bindings/media/i2c/sony,imx576.yaml b/Documentation/devicetree/bindings/media/i2c/sony,imx576.yaml
> new file mode 100644
> index 000000000000..b74253004fae
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/media/i2c/sony,imx576.yaml
> @@ -0,0 +1,111 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/media/i2c/sony,imx576.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Sony IMX576 Image Sensor
> +
> +maintainers:
> + - Hardevsinh Palaniya <hardevsinh.palaniya@xxxxxxxxxxxxxxxxx>
> +
> +description:
> + IMX576 sensor is a Sony CMOS active pixel digital image sensor with an active
> + array size of 5760(H) × 4312(V). It is programmable through an I2C interface.
> + Image data is transmitted through MIPI CSI-2. It supports RAW10/RAW8, COMP8
> + output formats.
> +
> +allOf:
> + - $ref: /schemas/media/video-interface-devices.yaml#
> +
> +properties:
> + compatible:
> + const: sony,imx576
> +
> + reg:
> + maxItems: 1
> +
> + clocks:
> + items:
> + - description: INCLK clock
> +
> + avdd-supply:
> + description: Analog Domain Power Supply (2.8v)
> +
> + dovdd-supply:
> + description: I/O Domain Power Supply (1.05v)
> +
> + dvdd-supply:
> + description: Digital Domain Power Supply (1.8v)
Sony calls them vana, vdig and vif.
Regards
Luca
> +
> + reset-gpios:
> + maxItems: 1
> + description: Reset Pin GPIO Control (active low)
> +
> + port:
> + description: MIPI CSI-2 transmitter port
> + $ref: /schemas/graph.yaml#/$defs/port-base
> + additionalProperties: false
> +
> + properties:
> + endpoint:
> + $ref: /schemas/media/video-interfaces.yaml#
> + unevaluatedProperties: false
> +
> + properties:
> + data-lanes:
> + oneOf:
> + - items:
> + - const: 1
> + - const: 2
> + - const: 3
> + - const: 4
> + - items:
> + - const: 1
> + - const: 2
> + required:
> + - data-lanes
> + - link-frequencies
> +
> +required:
> + - compatible
> + - reg
> + - clocks
> + - avdd-supply
> + - dovdd-supply
> + - dvdd-supply
> + - port
> +
> +unevaluatedProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/gpio/gpio.h>
> + #include <dt-bindings/media/video-interfaces.h>
> +
> + i2c {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + camera-sensor@10 {
> + compatible = "sony,imx576";
> + reg = <0x10>;
> + clocks = <&imx576_clk>;
> + reset-gpios = <&tlmm 35 GPIO_ACTIVE_LOW>;
> +
> + avdd-supply = <&vreg_l3p>;
> + dovdd-supply = <&vreg_l6p>;
> + dvdd-supply = <&vreg_32m_cam_dvdd_1p05>;
> +
> + orientation = <0>;
> + rotation = <90>;
> +
> + port {
> + cam_out: endpoint {
> + remote-endpoint = <&csiphy3_ep>;
> + data-lanes = <1 2 3 4>;
> + link-frequencies = /bits/ 64 <600000000>;
> + };
> + };
> + };
> + };
> diff --git a/MAINTAINERS b/MAINTAINERS
> index ff935e197c21..1b15fa355e8b 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -24856,6 +24856,13 @@ T: git git://linuxtv.org/media.git
> F: Documentation/devicetree/bindings/media/i2c/sony,imx415.yaml
> F: drivers/media/i2c/imx415.c
>
> +SONY IMX576 SENSOR DRIVER
> +M: Himanshu Bhavani <himanshu.bhavani@xxxxxxxxxxxxxxxxx>
> +M: Hardevsinh Palaniya <hardevsinh.palaniya@xxxxxxxxxxxxxxxxx>
> +L: linux-media@xxxxxxxxxxxxxxx
> +S: Maintained
> +F: Documentation/devicetree/bindings/media/i2c/sony,imx576.yaml
> +
> SONY MEMORYSTICK SUBSYSTEM
> M: Maxim Levitsky <maximlevitsky@xxxxxxxxx>
> M: Alex Dubov <oakad@xxxxxxxxx>
> --
> 2.34.1