1* Sony 1/2.5-Inch 8.51Mp CMOS Digital Image Sensor
2
3The Sony imx274 is a 1/2.5-inch CMOS active pixel digital image sensor with
4an active array size of 3864H x 2202V. It is programmable through I2C
5interface. The I2C address is fixed to 0x1a as per sensor data sheet.
6Image data is sent through MIPI CSI-2, which is configured as 4 lanes
7at 1440 Mbps.
8
9
10Required Properties:
11- compatible: value should be "sony,imx274" for imx274 sensor
12- reg: I2C bus address of the device
13
14Optional Properties:
15- reset-gpios: Sensor reset GPIO
16
17The imx274 device node should contain one 'port' child node with
18an 'endpoint' subnode. For further reading on port node refer to
19Documentation/devicetree/bindings/media/video-interfaces.txt.
20
21Example:
22	sensor@1a {
23		compatible = "sony,imx274";
24		reg = <0x1a>;
25		#address-cells = <1>;
26		#size-cells = <0>;
27		reset-gpios = <&gpio_sensor 0 0>;
28		port {
29			sensor_out: endpoint {
30				remote-endpoint = <&csiss_in>;
31			};
32		};
33	};
34