summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJake Park <jakep@nvidia.com>2013-03-28 21:58:25 +0900
committerMrutyunjay Sawant <msawant@nvidia.com>2013-04-08 10:53:42 -0700
commit54cac095ddb87109a5ab2885c34df0a4adc8e71b (patch)
treec258db62f91fb65243953761526fc1fdf9e586a8 /Documentation
parente8a886a521071a39a71fc3f22be7a3662a832e9c (diff)
media: video: tegra: enable DT for ov5693
Bug 1255103 Change-Id: I26acd27ae331343d0c8c8c1d6d5216ff45c07867 Signed-off-by: Jake Park <jakep@nvidia.com> Reviewed-on: http://git-master/r/213972 Reviewed-by: Sudhir Vyas <svyas@nvidia.com> Reviewed-by: Peter Kim <pekim@nvidia.com> Reviewed-by: Alex Courbot <acourbot@nvidia.com> Reviewed-by: Nitin Kumbhar <nkumbhar@nvidia.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/devicetree/bindings/video/nvidia,ov5693.txt32
1 files changed, 32 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/video/nvidia,ov5693.txt b/Documentation/devicetree/bindings/video/nvidia,ov5693.txt
new file mode 100644
index 000000000000..0aeb4b238f20
--- /dev/null
+++ b/Documentation/devicetree/bindings/video/nvidia,ov5693.txt
@@ -0,0 +1,32 @@
+NVIDIA Camera sensor ov5693 driver interface.
+
+Properties:
+- compatible : The driver is compatible with
+ "nvidia,ov5693".
+
+- reg : Should contain I2C slave address of the driver.
+
+- nvidia,num : Indicates the instance of particular camera device, in this
+case it is for camera sensor device. Currently for rear camera sensor "0"
+is used.
+
+- nvidia,dev-name : Camera device driver name.
+
+- nvidia,use-vcm-vdd : For few platforms this driver needs extra power
+regulator "ext_vcm_vdd" to be enabled. This bool property indicates the
+same. It must be programmed only when ov5693 driver needs it for a
+particular platform.
+
+- reset-gpios : ov5693 reset GPIO
+
+Example:
+
+ ov5693@10 {
+ compatible = "nvidia,ov5693";
+ reg = <0x10>;
+ nvidia,num = <0>;
+ nvidia,dev-name = "camera";
+ nvidia,use-vcm-vdd;
+ reset-gpios = <&gpio 219 0>; /* gpio PBB3 */
+ status = "okay";
+ };