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

Commit 177532b0 authored by Vijay Navnath Kamble's avatar Vijay Navnath Kamble
Browse files

input: touchscreen: Remove himax touchscreen support



Himax updated touch driver by fixing all the errors.
Need to remove existing touch driver code and update
with latest comits.

Change-Id: Ia56efc11d3192ddd3449f38b9c62afbe585ef83a
Signed-off-by: default avatarVijay Navnath Kamble <vkambl@codeaurora.org>
parent 007342a2
Loading
Loading
Loading
Loading
+0 −22
Original line number Diff line number Diff line
Himax touch controller

Required properties:

 - compatible			: Should be "himax,hxcommon"
 - reg					: i2c slave address of the device.
 - interrupt-parent		: parent of interrupt.
 - himax,irq-gpio       : irq gpio.
 - himax,reset-gpio		: reset gpio.
 - vdd-supply			: Power supply needed to power up the device.
 - avdd-supply			: Power source required to power up i2c bus.
 - himax,panel-coords 	: panel coordinates for the chip in pixels.
						  It is a four tuple consisting of min x,
						  min y, max x and max y values.
 - himax,display-coords : display coordinates in pixels. It is a four
						  tuple consisting of min x, min y, max x and
						  max y values

Optional properties:
 - himax,3v3-gpio		: gpio acting as 3.3 v supply.
 - report_type			: Multi-touch protocol type. Default 0.
						  0 for protocol A, 1 for protocol B.
+0 −1
Original line number Diff line number Diff line
@@ -123,7 +123,6 @@ halo Halo Microelectronics Co., Ltd.
hannstar	HannStar Display Corporation
haoyu	Haoyu Microelectronic Co. Ltd.
hardkernel	Hardkernel Co., Ltd
himax	Himax Technologies, Inc.
hisilicon	Hisilicon Limited.
hit	Hitachi Ltd.
hitex	Hitex Development Tools
+0 −4
Original line number Diff line number Diff line
@@ -310,10 +310,6 @@ CONFIG_INPUT_JOYSTICK=y
CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_FT5X06=y
CONFIG_TOUCHSCREEN_GEN_VKEYS=y
CONFIG_TOUCHSCREEN_HIMAX_CHIPSET=y
CONFIG_TOUCHSCREEN_HIMAX_I2C=y
CONFIG_TOUCHSCREEN_HIMAX_DEBUG=y
CONFIG_HMX_DB=y
CONFIG_INPUT_MISC=y
CONFIG_INPUT_HBTP_INPUT=y
CONFIG_INPUT_QPNP_POWER_ON=y
+0 −4
Original line number Diff line number Diff line
@@ -315,10 +315,6 @@ CONFIG_INPUT_JOYSTICK=y
CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_FT5X06=y
CONFIG_TOUCHSCREEN_GEN_VKEYS=y
CONFIG_TOUCHSCREEN_HIMAX_CHIPSET=y
CONFIG_TOUCHSCREEN_HIMAX_I2C=y
CONFIG_TOUCHSCREEN_HIMAX_DEBUG=y
CONFIG_HMX_DB=y
CONFIG_INPUT_MISC=y
CONFIG_INPUT_HBTP_INPUT=y
CONFIG_INPUT_QPNP_POWER_ON=y
+0 −12
Original line number Diff line number Diff line
@@ -1291,16 +1291,4 @@ config TOUCHSCREEN_GT9XX_v28

source "drivers/input/touchscreen/gt9xx_v2.8/Kconfig"

config TOUCHSCREEN_HIMAX_CHIPSET
	bool "Himax touchpanel CHIPSET"
	depends on I2C
	help
	  Say Y here if you have a Himax CHIPSET touchscreen.
	  HIMAX controllers are multi touch controllers which can
	  report 10 touches at a time.

	  If unsure, say N.

source "drivers/input/touchscreen/hxchipset/Kconfig"

endif
Loading