ov1063x.txt
1.03 KB
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
* OmniVision 8/10 bit digital camera
The Omnivision digital camera is a 720p camera which is configurable at 8/10bit
YUYV output and can be configured for various resolutions.
Required Properties:
- compatible : Must be one of the following
- "ovti,ov10633": For OV10633 camera
- "ovti,ov10635": For OV10635 camera
Optional Properties:
- gpios : A list of gpios with active high/low flags for enabling the sensor.
This may contain gpios for power, board muxes, etc. Driver would
set all of them as specified by the active high/low flag
There are no custom optional properties supported for this device.
Although all the endpoint properties documented in
Documentation/devicetree/bindings/media/video-interfaces.txt are supported.
Example:
&i2c2 {
...
...
ovcamera@30 {
compatible = "ovti,ov10635";
reg = <0x30>;
mux-gpios = <&pcf_hdmi 3 GPIO_ACTIVE_LOW>;
port {
onboard_cam: endpoint {
hsync-active = <1>;
vsync-active = <1>;
pclk-sample = <1>;
};
};
};
...
};