364895e2eb334c2b16f1b39b39bd7a42957f2b97
[openwrt/openwrt.git] / target / linux / bcm27xx / patches-5.15 / 950-0520-dt-bindings-media-i2c-Add-IMX519-CMOS-sensor-binding.patch
1 From dea6a3f3a5c9b1fa6a5dc60eaeaeca487e07769b Mon Sep 17 00:00:00 2001
2 From: Lee Jackson <info@arducam.com>
3 Date: Fri, 27 Aug 2021 14:36:55 +0800
4 Subject: [PATCH] dt-bindings: media: i2c: Add IMX519 CMOS sensor
5 binding
6
7 Add YAML device tree binding for IMX519 CMOS image sensor, and
8 the relevant MAINTAINERS entries.
9
10 Signed-off-by: Lee Jackson <info@arducam.com>
11 ---
12 .../devicetree/bindings/media/i2c/imx519.yaml | 113 ++++++++++++++++++
13 MAINTAINERS | 8 ++
14 2 files changed, 121 insertions(+)
15 create mode 100644 Documentation/devicetree/bindings/media/i2c/imx519.yaml
16
17 --- /dev/null
18 +++ b/Documentation/devicetree/bindings/media/i2c/imx519.yaml
19 @@ -0,0 +1,113 @@
20 +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
21 +%YAML 1.2
22 +---
23 +$id: http://devicetree.org/schemas/media/i2c/imx519.yaml#
24 +$schema: http://devicetree.org/meta-schemas/core.yaml#
25 +
26 +title: Sony 1/2.5-Inch 16Mpixel CMOS Digital Image Sensor
27 +
28 +maintainers:
29 + - Lee Jackson <info@arducam.com>
30 +
31 +description: |-
32 + The Sony IMX519 is a 1/2.5-inch CMOS active pixel digital image sensor
33 + with an active array size of 4656H x 3496V. It is programmable through
34 + I2C interface. The I2C address is fixed to 0x1A as per sensor data sheet.
35 + Image data is sent through MIPI CSI-2, which is configured as either 2 or
36 + 4 data lanes.
37 +
38 +properties:
39 + compatible:
40 + const: sony,imx519
41 +
42 + reg:
43 + description: I2C device address
44 + maxItems: 1
45 +
46 + clocks:
47 + maxItems: 1
48 +
49 + VDIG-supply:
50 + description:
51 + Digital I/O voltage supply, 1.05 volts
52 +
53 + VANA-supply:
54 + description:
55 + Analog voltage supply, 2.8 volts
56 +
57 + VDDL-supply:
58 + description:
59 + Digital core voltage supply, 1.8 volts
60 +
61 + reset-gpios:
62 + description: |-
63 + Reference to the GPIO connected to the xclr pin, if any.
64 + Must be released (set high) after all supplies and INCK are applied.
65 +
66 + # See ../video-interfaces.txt for more details
67 + port:
68 + type: object
69 + properties:
70 + endpoint:
71 + type: object
72 + properties:
73 + data-lanes:
74 + description: |-
75 + The sensor supports either two-lane, or four-lane operation.
76 + For two-lane operation the property must be set to <1 2>.
77 + items:
78 + - const: 1
79 + - const: 2
80 +
81 + clock-noncontinuous:
82 + type: boolean
83 + description: |-
84 + MIPI CSI-2 clock is non-continuous if this property is present,
85 + otherwise it's continuous.
86 +
87 + link-frequencies:
88 + allOf:
89 + - $ref: /schemas/types.yaml#/definitions/uint64-array
90 + description:
91 + Allowed data bus frequencies.
92 +
93 + required:
94 + - link-frequencies
95 +
96 +required:
97 + - compatible
98 + - reg
99 + - clocks
100 + - VANA-supply
101 + - VDIG-supply
102 + - VDDL-supply
103 + - port
104 +
105 +additionalProperties: false
106 +
107 +examples:
108 + - |
109 + i2c0 {
110 + #address-cells = <1>;
111 + #size-cells = <0>;
112 +
113 + imx519: sensor@1a {
114 + compatible = "sony,imx519";
115 + reg = <0x1a>;
116 + clocks = <&imx519_clk>;
117 + VANA-supply = <&imx519_vana>; /* 2.8v */
118 + VDIG-supply = <&imx519_vdig>; /* 1.05v */
119 + VDDL-supply = <&imx519_vddl>; /* 1.8v */
120 +
121 + port {
122 + imx519_0: endpoint {
123 + remote-endpoint = <&csi1_ep>;
124 + data-lanes = <1 2>;
125 + clock-noncontinuous;
126 + link-frequencies = /bits/ 64 <493500000>;
127 + };
128 + };
129 + };
130 + };
131 +
132 +...
133 --- a/MAINTAINERS
134 +++ b/MAINTAINERS
135 @@ -17534,6 +17534,14 @@ F: Documentation/devicetree/bindings/med
136 F: Documentation/devicetree/bindings/media/i2c/imx477.yaml
137 F: drivers/media/i2c/imx477.c
138
139 +SONY IMX519 SENSOR DRIVER
140 +M: Arducam Kernel Maintenance <info@arducam.com>
141 +L: linux-media@vger.kernel.org
142 +S: Maintained
143 +T: git git://linuxtv.org/media_tree.git
144 +F: Documentation/devicetree/bindings/media/i2c/imx519.yaml
145 +F: drivers/media/i2c/imx519.c
146 +
147 SONY MEMORYSTICK SUBSYSTEM
148 M: Maxim Levitsky <maximlevitsky@gmail.com>
149 M: Alex Dubov <oakad@yahoo.com>