Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b14a76df authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Merge c3f63a85 on remote branch

Change-Id: I3d65ce168b9f0310b62a9b03f7ab9140b896b930
parents 1266b394 c3f63a85
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3,7 +3,8 @@ Qualcomm Technologies, Inc. Debug Clock Controller Binding

Required properties :
- compatible: Shall contain "qcom,kona-debugcc", "qcom,lito-debugcc",
		"qcom,bengal-debugcc" or "qcom,lagoon-debugcc".
		"qcom,bengal-debugcc", "qcom,lagoon-debugcc" or
		"qcom,scuba-debugcc".
- qcom,gcc: phandle to the GCC device node.
- qcom,videocc: phandle to the Video CC device node.
- qcom,camcc: phandle to the Camera CC device node.
+1 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@ Required properties :
		"qcom,lito-dispcc"
		"qcom,bengal-dispcc"
		"qcom,lagoon-dispcc"
		"qcom,scuba-dispcc".
- reg : shall contain base register location and length.
- vdd_mm-supply: phandle to the MM_CX rail that needs to be voted on behalf
of the clocks.
+1 −0
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ Required properties :
			"qcom,gcc-lito"
			"qcom,bengal-gcc"
			"qcom,lagoon-gcc"
			"qcom,scuba-gcc".

- reg : shall contain base register location and length
- #clock-cells : shall contain 1
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ Required properties :
		"qcom,lito-gpucc".
		"qcom,bengal-gpucc"
		"qcom,lagoon-gpucc".
		"qcom,scuba-gpucc".
- reg: shall contain base register offset and size.
- reg-names: names of registers listed in the same order as in the reg property.
		Must contain "cc_base".
+32 −0
Original line number Diff line number Diff line
* Novatek nt36xxx touch controller

Please add this description here: The Novatek Touch controller is connected to the
host processor via I2C. The controller generates interrupts when the user touches
the panel. The host controller is expected to read the touch coordinates over I2C and
pass the coordinates to the rest of the system.

Required properties:
 - compatible           : should be "novatek,NVT-ts"
 - reg                  : i2c slave address of the device.
 - vdd-supply           : digital voltage power supply needed to power device.
 - avdd-supply          : analog voltage power supply needed to power device.
 - novatek,reset-gpio 	: reset gpio.
 - novatek,irq-gpio     : irq gpio.

Example:
	&i2c_1 {
		status = "ok";

		/* Novatek device tree node */
		novatek@62 {
			compatible = "novatek,NVT-ts";
			reg = <0x62>;
			status = "ok";

			vdd-supply = <&pm8994_lvs2>;
			avdd-supply = <&pm8994_l22>;

			novatek,reset-gpio = <&msm_gpio 102 0x00>;
			novatek,irq-gpio = <&msm_gpio 65 0x2001>;
		};
	};
 No newline at end of file
Loading