* [PATCH v3 1/2] Add bindings for ams Mira220 cmos image sensor
@ 2025-07-01 15:12 philippe baetens
2025-07-01 16:17 ` Rob Herring (Arm)
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: philippe baetens @ 2025-07-01 15:12 UTC (permalink / raw)
To: mchehab, philippebaetens, robh, conor+dt, krzk+dt
Cc: linux-media, linux-kernel, devicetree
Mira220 is a global shutter NIR-enhanced image sensor made by AMS.
Driver is submitted in the next patch of this series and verified on a raspberry pi.
Signed-off-by: philippe baetens <philippebaetens@gmail.com>
---
Changes in v3:
- Improve commit message
- add mailing list for device tree.
Changes in v2:
- add maintainers and Documentation.yaml
---
.../bindings/media/i2c/ams,mira220.yaml | 125 ++++++++++++++++++
MAINTAINERS | 6 +
2 files changed, 131 insertions(+)
create mode 100644 Documentation/devicetree/bindings/media/i2c/ams,mira220.yaml
diff --git a/Documentation/devicetree/bindings/media/i2c/ams,mira220.yaml b/Documentation/devicetree/bindings/media/i2c/ams,mira220.yaml
new file mode 100644
index 000000000..21a55ff07
--- /dev/null
+++ b/Documentation/devicetree/bindings/media/i2c/ams,mira220.yaml
@@ -0,0 +1,125 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/media/i2c/ams,mira220.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: ams 2.2 MP NIR enhanced global shutter image sensor
+
+maintainers:
+ - Philippe Baetens <philippebaetens@gmail.com>
+
+description: |-
+ 2.2 MP NIR enhanced global shutter image sensor designed for 2D and 3D
+ consumer and industrial machine vision applications.
+ Due to its small size, configurability and high sensitivity both
+ in visual as well as NIR, the Mira220 is well suited for 2D and
+ 3D applications, which include Active Stereo Vision,
+ Structured Light Vision for Robotics and AR/VR.
+
+properties:
+ compatible:
+ const: ams,mira220
+
+ reg:
+ maxItems: 1
+
+ clocks:
+ maxItems: 1
+
+ clock-names:
+ description: Input clock (38.4 MHz)
+ items:
+ - const: inck
+
+ vdig-supply:
+ description:
+ Digital I/O voltage supply, 1.35 volts
+
+ vana1-supply:
+ description:
+ Analog1 voltage supply, 2.8 volts
+
+ vana2-supply:
+ description:
+ Analog2 voltage supply, 1.8 volts
+
+ vddl-supply:
+ description:
+ Digital core voltage supply, 1.8 volts
+
+ reset-gpios:
+ description: Sensor reset (XCLR) GPIO
+ maxItems: 1
+
+ port:
+ $ref: /schemas/graph.yaml#/$defs/port-base
+ description: |
+ Video output port
+
+ properties:
+ endpoint:
+ $ref: /schemas/media/video-interfaces.yaml#
+ unevaluatedProperties: false
+
+ properties:
+ data-lanes:
+ anyOf:
+ - items:
+ - const: 1
+ - const: 2
+ - items:
+ - const: 1
+ - const: 2
+ - const: 3
+ - const: 4
+
+ link-frequencies: true
+
+ required:
+ - data-lanes
+ - link-frequencies
+
+ additionalProperties: false
+
+required:
+ - compatible
+ - reg
+ - clocks
+ - clock-names
+ - vdig-supply
+ - vana-supply
+ - vddl-supply
+ - port
+
+additionalProperties: false
+
+examples:
+ - |
+ #include <dt-bindings/gpio/gpio.h>
+
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ mira220: camera-sensor@1a {
+ compatible = "ams,mira220";
+ reg = <0x54>;
+
+ clocks = <&cam1_clk>;
+ clock-names = "xclk";
+
+ vana-supply = <&cam1_reg>; /* 2.5v */
+ vdig-supply = <&cam_dummy_reg>; /* 1.8v */
+ vddl-supply = <&cam_dummy_reg>; /* 1.35v */
+
+ port {
+ mira220_ep: endpoint {
+ clock-lanes = <0>;
+ data-lanes = <1 2>;
+ link-frequencies = /bits/ 64 <750000000>;
+ };
+ };
+ };
+ };
+...
diff --git a/MAINTAINERS b/MAINTAINERS
index da34c7227..5cb93390f 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1330,6 +1330,12 @@ S: Maintained
F: Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
F: drivers/iio/light/as73211.c
+AMS MIRA220 DRIVER
+M: Philippe Baetens <philippebaetens@gmail.com>
+S: Maintained
+F: Documentation/devicetree/bindings/media/i2c/ams,mira220.yaml
+F: drivers/media/i2c/mira220.c
+
AMT (Automatic Multicast Tunneling)
M: Taehee Yoo <ap420073@gmail.com>
L: netdev@vger.kernel.org
--
2.39.5
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v3 1/2] Add bindings for ams Mira220 cmos image sensor
2025-07-01 15:12 [PATCH v3 1/2] Add bindings for ams Mira220 cmos image sensor philippe baetens
@ 2025-07-01 16:17 ` Rob Herring (Arm)
2025-07-02 7:04 ` Krzysztof Kozlowski
2025-07-02 7:05 ` Krzysztof Kozlowski
2 siblings, 0 replies; 4+ messages in thread
From: Rob Herring (Arm) @ 2025-07-01 16:17 UTC (permalink / raw)
To: philippe baetens
Cc: devicetree, linux-media, linux-kernel, conor+dt, krzk+dt, mchehab
On Tue, 01 Jul 2025 17:12:44 +0200, philippe baetens wrote:
> Mira220 is a global shutter NIR-enhanced image sensor made by AMS.
> Driver is submitted in the next patch of this series and verified on a raspberry pi.
>
> Signed-off-by: philippe baetens <philippebaetens@gmail.com>
> ---
> Changes in v3:
> - Improve commit message
> - add mailing list for device tree.
>
> Changes in v2:
> - add maintainers and Documentation.yaml
>
> ---
> .../bindings/media/i2c/ams,mira220.yaml | 125 ++++++++++++++++++
> MAINTAINERS | 6 +
> 2 files changed, 131 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/media/i2c/ams,mira220.yaml
>
My bot found errors running 'make dt_binding_check' on your patch:
yamllint warnings/errors:
dtschema/dtc warnings/errors:
Documentation/devicetree/bindings/media/i2c/ams,mira220.example.dts:24.39-42.15: Warning (i2c_bus_reg): /example-0/i2c/camera-sensor@1a: I2C bus unit address format error, expected "54"
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/media/i2c/ams,mira220.example.dtb: camera-sensor@1a (ams,mira220): 'vana-supply' does not match any of the regexes: '^pinctrl-[0-9]+$'
from schema $id: http://devicetree.org/schemas/media/i2c/ams,mira220.yaml#
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/media/i2c/ams,mira220.example.dtb: camera-sensor@1a (ams,mira220): clock-names:0: 'inck' was expected
from schema $id: http://devicetree.org/schemas/media/i2c/ams,mira220.yaml#
doc reference errors (make refcheckdocs):
See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/aGP67H5_GxL4z2Nc@raspberrypi
The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.
If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:
pip3 install dtschema --upgrade
Please check and re-submit after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3 1/2] Add bindings for ams Mira220 cmos image sensor
2025-07-01 15:12 [PATCH v3 1/2] Add bindings for ams Mira220 cmos image sensor philippe baetens
2025-07-01 16:17 ` Rob Herring (Arm)
@ 2025-07-02 7:04 ` Krzysztof Kozlowski
2025-07-02 7:05 ` Krzysztof Kozlowski
2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2025-07-02 7:04 UTC (permalink / raw)
To: philippe baetens
Cc: mchehab, robh, conor+dt, krzk+dt, linux-media, linux-kernel,
devicetree
On Tue, Jul 01, 2025 at 05:12:44PM +0200, philippe baetens wrote:
> Mira220 is a global shutter NIR-enhanced image sensor made by AMS.
> Driver is submitted in the next patch of this series and verified on a raspberry pi.
Please wrap commit message according to Linux coding style / submission
process (neither too early nor over the limit):
https://elixir.bootlin.com/linux/v6.4-rc1/source/Documentation/process/submitting-patches.rst#L597
Please use subject prefixes matching the subsystem. You can get them for
example with 'git log --oneline -- DIRECTORY_OR_FILE' on the directory
your patch is touching. For bindings, the preferred subjects are
explained here:
https://www.kernel.org/doc/html/latest/devicetree/bindings/submitting-patches.html#i-for-patch-submitters
A nit, subject: drop second/last, redundant "bindings". The
"dt-bindings" prefix is already stating that these are bindings.
See also:
https://elixir.bootlin.com/linux/v6.7-rc8/source/Documentation/devicetree/bindings/submitting-patches.rst#L18
>
> Signed-off-by: philippe baetens <philippebaetens@gmail.com>
Fix your Git, so your identity uses same style. It is "Philippe
Baetens", no?
> ---
> Changes in v3:
> - Improve commit message
> - add mailing list for device tree.
>
> Changes in v2:
> - add maintainers and Documentation.yaml
>
> ---
> .../bindings/media/i2c/ams,mira220.yaml | 125 ++++++++++++++++++
> MAINTAINERS | 6 +
> 2 files changed, 131 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/media/i2c/ams,mira220.yaml
>
> diff --git a/Documentation/devicetree/bindings/media/i2c/ams,mira220.yaml b/Documentation/devicetree/bindings/media/i2c/ams,mira220.yaml
> new file mode 100644
> index 000000000..21a55ff07
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/media/i2c/ams,mira220.yaml
> @@ -0,0 +1,125 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/media/i2c/ams,mira220.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: ams 2.2 MP NIR enhanced global shutter image sensor
> +
> +maintainers:
> + - Philippe Baetens <philippebaetens@gmail.com>
> +
> +description: |-
> + 2.2 MP NIR enhanced global shutter image sensor designed for 2D and 3D
> + consumer and industrial machine vision applications.
> + Due to its small size, configurability and high sensitivity both
> + in visual as well as NIR, the Mira220 is well suited for 2D and
> + 3D applications, which include Active Stereo Vision,
> + Structured Light Vision for Robotics and AR/VR.
> +
> +properties:
> + compatible:
> + const: ams,mira220
> +
> + reg:
> + maxItems: 1
> +
> + clocks:
> + maxItems: 1
> +
> + clock-names:
> + description: Input clock (38.4 MHz)
> + items:
> + - const: inck
Drop clock-names, redundant.
> +
> + vdig-supply:
> + description:
> + Digital I/O voltage supply, 1.35 volts
> +
> + vana1-supply:
> + description:
> + Analog1 voltage supply, 2.8 volts
> +
> + vana2-supply:
> + description:
> + Analog2 voltage supply, 1.8 volts
> +
> + vddl-supply:
> + description:
> + Digital core voltage supply, 1.8 volts
> +
> + reset-gpios:
> + description: Sensor reset (XCLR) GPIO
> + maxItems: 1
> +
> + port:
> + $ref: /schemas/graph.yaml#/$defs/port-base
> + description: |
Drop |
> + Video output port
> +
> + properties:
> + endpoint:
> + $ref: /schemas/media/video-interfaces.yaml#
> + unevaluatedProperties: false
> +
> + properties:
> + data-lanes:
> + anyOf:
> + - items:
> + - const: 1
> + - const: 2
> + - items:
> + - const: 1
> + - const: 2
> + - const: 3
> + - const: 4
> +
> + link-frequencies: true
Drop, not needed.
> +
> + required:
> + - data-lanes
> + - link-frequencies
> +
> + additionalProperties: false
This goes after $ref
> +
> +required:
> + - compatible
> + - reg
> + - clocks
> + - clock-names
> + - vdig-supply
> + - vana-supply
> + - vddl-supply
> + - port
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/gpio/gpio.h>
> +
> + i2c {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + mira220: camera-sensor@1a {
> + compatible = "ams,mira220";
> + reg = <0x54>;
Does not match unit address.
> +
> + clocks = <&cam1_clk>;
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v3 1/2] Add bindings for ams Mira220 cmos image sensor
2025-07-01 15:12 [PATCH v3 1/2] Add bindings for ams Mira220 cmos image sensor philippe baetens
2025-07-01 16:17 ` Rob Herring (Arm)
2025-07-02 7:04 ` Krzysztof Kozlowski
@ 2025-07-02 7:05 ` Krzysztof Kozlowski
2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2025-07-02 7:05 UTC (permalink / raw)
To: philippe baetens
Cc: mchehab, robh, conor+dt, krzk+dt, linux-media, linux-kernel,
devicetree
On Tue, Jul 01, 2025 at 05:12:44PM +0200, philippe baetens wrote:
> Mira220 is a global shutter NIR-enhanced image sensor made by AMS.
> Driver is submitted in the next patch of this series and verified on a raspberry pi.
>
> Signed-off-by: philippe baetens <philippebaetens@gmail.com>
> ---
And also you totally broke the threading. Send patches in one command -
git send-email - not two or more.
git format-patch -2 -v4 --cover-letter
git send-email ..... v4*
... or just use b4.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-07-02 7:05 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-01 15:12 [PATCH v3 1/2] Add bindings for ams Mira220 cmos image sensor philippe baetens
2025-07-01 16:17 ` Rob Herring (Arm)
2025-07-02 7:04 ` Krzysztof Kozlowski
2025-07-02 7:05 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox