mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
Append missing vendor and align with other sony definitions. Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> Signed-off-by: David Heidelberg <david@ixit.cz> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
37 lines
917 B
Plaintext
37 lines
917 B
Plaintext
* Omnivision OV9650/OV9652 CMOS sensor
|
|
|
|
Required Properties:
|
|
- compatible: shall be one of
|
|
"ovti,ov9650"
|
|
"ovti,ov9652"
|
|
- clocks: reference to the xvclk input clock.
|
|
|
|
Optional Properties:
|
|
- reset-gpios: reference to the GPIO connected to the resetb pin, if any.
|
|
Active is high.
|
|
- powerdown-gpios: reference to the GPIO connected to the pwdn pin, if any.
|
|
Active is high.
|
|
|
|
The device node shall contain one 'port' child node with one child 'endpoint'
|
|
subnode for its digital output video port, in accordance with the video
|
|
interface bindings defined in Documentation/devicetree/bindings/media/
|
|
video-interfaces.txt.
|
|
|
|
Example:
|
|
|
|
&i2c0 {
|
|
ov9650: camera@30 {
|
|
compatible = "ovti,ov9650";
|
|
reg = <0x30>;
|
|
reset-gpios = <&axi_gpio_0 0 GPIO_ACTIVE_HIGH>;
|
|
powerdown-gpios = <&axi_gpio_0 1 GPIO_ACTIVE_HIGH>;
|
|
clocks = <&xclk>;
|
|
|
|
port {
|
|
ov9650_0: endpoint {
|
|
remote-endpoint = <&vcap1_in0>;
|
|
};
|
|
};
|
|
};
|
|
};
|