Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) %YAML 1.2 --- $id: http://devicetree.org/schemas/media/i2c/onnn,ar0521.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: ON Semiconductor AR0521 MIPI CSI-2 sensor maintainers: - Krzysztof HaĆasa <khalasa@piap.pl> description: |- The AR0521 is a raw CMOS image sensor with MIPI CSI-2 and I2C-compatible control interface. properties: compatible: const: onnn,ar0521 reg: maxItems: 1 clocks: maxItems: 1 clock-names: const: extclk vaa-supply: description: Definition of the regulator used as analog (2.7 V) voltage supply. vdd-supply: description: Definition of the regulator used as digital core (1.2 V) voltage supply. vdd_io-supply: description: Definition of the regulator used as digital I/O (1.8 V) voltage supply. reset-gpios: description: reset GPIO, usually active low maxItems: 1 port: $ref: /schemas/graph.yaml#/$defs/port-base unevaluatedProperties: false description: | Video output port. properties: endpoint: $ref: /schemas/media/video-interfaces.yaml# unevaluatedProperties: false properties: bus-type: const: 4 data-lanes: anyOf: - items: - const: 1 - items: - const: 1 - const: 2 - items: - const: 1 - const: 2 - const: 3 - const: 4 required: - compatible - reg - clocks - clock-names - vaa-supply - vdd-supply - vdd_io-supply - port additionalProperties: false examples: - | #include <dt-bindings/gpio/gpio.h> #include <dt-bindings/clock/imx6qdl-clock.h> i2c { #address-cells = <1>; #size-cells = <0>; ar0521: camera-sensor@36 { compatible = "onnn,ar0521"; reg = <0x36>; pinctrl-names = "default"; pinctrl-0 = <&pinctrl_mipi_camera>; clocks = <&clks IMX6QDL_CLK_CKO>; clock-names = "extclk"; reset-gpios = <&gpio1 7 GPIO_ACTIVE_LOW>; vaa-supply = <®_2p7v>; vdd-supply = <®_1p2v>; vdd_io-supply = <®_1p8v>; port { mipi_camera_to_mipi_csi2: endpoint { remote-endpoint = <&mipi_csi2_in>; data-lanes = <1 2 3 4>; }; }; }; }; |