[PATCH v3 1/3] dt-bindings: media: i2c: Add imx576 sensor
Himanshu Bhavani <[email protected]> Thu, 6 Aug 2026 17:32:07 +0530
| Newsgroups | org.kernel.vger.linux-media,org.kernel.vger.linux-arm-msm,org.kernel.vger.linux-devicetree,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
From: Hardevsinh Palaniya <[email protected]> Add bindings for Sony IMX576 sensor Signed-off-by: Hardevsinh Palaniya <[email protected]> Signed-off-by: Himanshu Bhavani <[email protected]> Reviewed-by: Krzysztof Kozlowski <[email protected]> --- .../bindings/media/i2c/sony,imx576.yaml | 114 ++++++++++++++++++ MAINTAINERS | 7 ++ 2 files changed, 121 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..c82efd17eb7f --- /dev/null +++ b/Documentation/devicetree/bindings/media/i2c/sony,imx576.yaml @@ -0,0 +1,114 @@ +# 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 <[email protected]> + +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 + + vana-supply: + description: Analog Supply Voltage (2.8v) + + vdig-supply: + description: Digital Supply Voltage (1.05v) + + vif-supply: + description: Interface Supply Voltage (1.8v) + + 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: + - endpoint + +required: + - compatible + - reg + - clocks + - vana-supply + - vif-supply + - vdig-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>; + + vana-supply = <&vreg_l3p>; + vif-supply = <&vreg_l6p>; + vdig-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 <1017000000>; + }; + }; + }; + }; diff --git a/MAINTAINERS b/MAINTAINERS index e95fc6f2ddc6..faf5753be337 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -25437,6 +25437,13 @@ S: Maintained F: Documentation/devicetree/bindings/media/i2c/sony,imx678.yaml F: drivers/media/i2c/imx678.c +SONY IMX576 SENSOR DRIVER +M: Himanshu Bhavani <[email protected]> +M: Hardevsinh Palaniya <[email protected]> +L: [email protected] +S: Maintained +F: Documentation/devicetree/bindings/media/i2c/sony,imx576.yaml + SONY MEMORYSTICK SUBSYSTEM M: Maxim Levitsky <[email protected]> M: Alex Dubov <[email protected]> -- 2.34.1