1* Sony 1/3.06-Inch 13.13Mp CMOS Digital Image Sensor
2
3The Sony imx214 is a 1/3.06-inch CMOS active pixel digital image sensor with
4an active array size of 4224H x 3200V. It is programmable through an I2C
5interface.
6Image data is sent through MIPI CSI-2, through 2 or 4 lanes at a maximum
7throughput of 1.2Gbps/lane.
8
9
10Required Properties:
11- compatible: Shall be "sony,imx214".
12- reg: I2C bus address of the device. Depending on how the sensor is wired,
13       it shall be <0x10> or <0x1a>;
14- enable-gpios: GPIO descriptor for the enable pin.
15- vdddo-supply: Chip digital IO regulator (1.8V).
16- vdda-supply: Chip analog regulator (2.7V).
17- vddd-supply: Chip digital core regulator (1.12V).
18- clocks: Reference to the xclk clock.
19- clock-frequency: Frequency of the xclk clock.
20
21Optional Properties:
22- flash-leds: See ../video-interfaces.txt
23- lens-focus: See ../video-interfaces.txt
24
25The imx214 device node shall contain one 'port' child node with
26an 'endpoint' subnode. For further reading on port node refer to
27Documentation/devicetree/bindings/media/video-interfaces.txt.
28
29Required Properties on endpoint:
30- data-lanes: check ../video-interfaces.txt
31- link-frequencies: check ../video-interfaces.txt
32- remote-endpoint: check ../video-interfaces.txt
33
34Example:
35
36	camera-sensor@1a {
37		compatible = "sony,imx214";
38		reg = <0x1a>;
39		vdddo-supply = <&pm8994_lvs1>;
40		vddd-supply = <&camera_vddd_1v12>;
41		vdda-supply = <&pm8994_l17>;
42		lens-focus = <&ad5820>;
43		enable-gpios = <&msmgpio 25 GPIO_ACTIVE_HIGH>;
44		clocks = <&mmcc CAMSS_MCLK0_CLK>;
45		clock-frequency = <24000000>;
46		port {
47			imx214_ep: endpoint {
48				data-lanes = <1 2 3 4>;
49				link-frequencies = /bits/ 64 <480000000>;
50				remote-endpoint = <&csiphy0_ep>;
51			};
52		};
53	};
54