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

Commit c9728676 authored by Abir Ghosh's avatar Abir Ghosh Committed by Gerrit - the friendly Code Review server
Browse files

drivers: soc: qti: Add support for fingerprint sensor driver



Add snapshot for qbt_handler from msm-4.14 commit a139cb68a211
(soc: qcom: add support for fingerprint sensor driver).

Change-Id: I9209db5e1deeb7a70e32142b49dfab4eb93d3f02
Signed-off-by: default avatarAbir Ghosh <abirg@codeaurora.org>
parent e7ffa271
Loading
Loading
Loading
Loading
+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
+1 −0
Original line number Diff line number Diff line
@@ -66,6 +66,7 @@ obj-$(CONFIG_QCOM_FSA4480_I2C) += fsa4480-i2c.o
obj-$(CONFIG_QCOM_GLINK) += glink_probe.o
obj-$(CONFIG_QCOM_GLINK_PKT) += glink_pkt.o
obj-$(CONFIG_QCOM_QDSS_BRIDGE) += qdss_bridge.o
obj-$(CONFIG_MSM_QBT_HANDLER) += qbt_handler.o
obj-$(CONFIG_QSEE_IPC_IRQ) += qsee_ipc_irq.o
obj-$(CONFIG_QSEE_IPC_IRQ_BRIDGE) += qsee_ipc_irq_bridge.o
obj-$(CONFIG_QPNP_PBS) += qpnp-pbs.o
+959 −0

File added.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ no-export-headers += kvm_para.h
endif

header-y += nfc/
header-y += qbt_handler.h

ifneq ($(VSERVICES_SUPPORT), "")
include include/linux/Kbuild.vservices
+51 −0

File added.

Preview size limit exceeded, changes collapsed.