blob: 50b085b7aa330f425cc818abcb15644daf2eeabd [file] [log] [blame]
Kevin Chan472c7dd2012-08-01 14:08:52 -07001* Qualcomm MSM CSID
2
3Required properties:
4- cell-index: csid hardware core index
5- compatible :
6 - "qcom,csid"
7- reg : offset and length of the register set for the device
8 for the csid operating in compatible mode.
9- reg-names : should specify relevant names to each reg property defined.
10- interrupts : should contain the csid interrupt.
11- interrupt-names : should specify relevant names to each interrupts
12 property defined.
Su Liu0850c5b2013-03-22 17:31:17 -070013- qcom,csi-vdd-voltage : should specify voltage level
14 for mipi csi in uV.
15- qcom,mipi-csi-vdd-supply : should contain regulator to be used for
16 this csid core
Kevin Chan472c7dd2012-08-01 14:08:52 -070017
18Example:
19
20 qcom,csid@fda08000 {
21 cell-index = <0>;
22 compatible = "qcom,csid";
23 reg = <0xfda08000 0x200>;
24 reg-names = "csid";
25 interrupts = <0 51 0>;
26 interrupt-names = "csiphy";
Su Liu0850c5b2013-03-22 17:31:17 -070027 qcom,csi-vdd-voltage = <1800000>;
28 qcom,mipi-csi-vdd-supply = <&pm8941_l12>;
Kevin Chan472c7dd2012-08-01 14:08:52 -070029 };