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

Commit 93d032ce authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM: dts: msm: add support for QBT_HANDLER on kona"

parents 24d91d39 99c37fa7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ Required Node Structure
- compatible
  Usage:      required
  Value type: <string>
  Definition: "qcom,qbt_handler".
  Definition: "qcom,qbt-handler".

- qcom,ipc-gpio
  Usage:      required
@@ -27,7 +27,7 @@ Example
=======

qcom,qbt_handler {
                compatible = "qcom,qbt_handler";
                compatible = "qcom,qbt-handler";
                qcom,ipc-gpio = <&tlmm 23 0>;
                pinctrl-names = "default";
                pinctrl-0 = <&key_home_default>;
+7 −0
Original line number Diff line number Diff line
@@ -114,6 +114,13 @@
			linux,can-disable;
		};
	};

	qcom,qbt_handler {
		compatible = "qcom,qbt-handler";
		qcom,ipc-gpio = <&tlmm 23 0>;
		qcom,finger-detect-gpio = <&pm8150_gpios 1 0>;
		status = "disabled";
	};
};

&qupv3_se13_i2c {
+8 −0
Original line number Diff line number Diff line
@@ -103,6 +103,14 @@
			linux,can-disable;
		};
	};

	qcom,qbt_handler {
		compatible = "qcom,qbt-handler";
		qcom,ipc-gpio = <&tlmm 23 0>;
		pinctrl-names = "default";
		pinctrl-0 = <&key_home_default>;
		qcom,finger-detect-gpio = <&pm8150_gpios 1 0>;
	};
};

&qupv3_se13_i2c {
+8 −0
Original line number Diff line number Diff line
@@ -195,6 +195,14 @@
			linux,can-disable;
		};
	};

	qcom,qbt_handler {
		compatible = "qcom,qbt-handler";
		qcom,ipc-gpio = <&tlmm 23 0>;
		pinctrl-names = "default";
		pinctrl-0 = <&key_home_default>;
		qcom,finger-detect-gpio = <&pm8150_gpios 1 0>;
	};
};

&vreg_hap_boost {
+9 −0
Original line number Diff line number Diff line
@@ -68,6 +68,15 @@ config QCOM_RUN_QUEUE_STATS
        This information is exported to usespace via sysfs entries and userspace
        algorithms uses info and decide when to turn on/off the cpu cores.

config MSM_QBT_HANDLER
	bool "Event Handler for QTI Ultrasonic Fingerprint Sensor"
	help
	  This driver acts as a interrupt handler, where the interrupt is generated
	  by the QTI Ultrasonic Fingerprint Sensor. It queues the events for each
	  interrupt in an event queue and notifies the userspace to read the events
	  from the queue. It also creates an input device to send key events such as
	  KEY_POWER, KEY_HOME.

config QCOM_GSBI
        tristate "QCOM General Serial Bus Interface"
        depends on ARCH_QCOM
Loading