devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Add FT8716 support
@ 2025-03-13 20:20 Jens Reidel
  2025-03-13 20:20 ` [PATCH 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Document " Jens Reidel
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jens Reidel @ 2025-03-13 20:20 UTC (permalink / raw)
  To: Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Joel Selvaraj, Oliver Graute, Felix Kaechele, Andreas Kemnade,
	Fabio Estevam, Al Viro, Yu Jiaoliang
  Cc: linux-input, devicetree, linux-kernel, phone-devel, linux,
	~postmarketos/upstreaming, Jens Reidel

This series adds support for the FocalTech FT8716 touchscreen to the
edt-ft5x06 driver. It was tested on the BQ Aquaris X (bq-bardock) and BQ
Aquaris X Pro (bq-bardockpro).

Jens Reidel (2):
  dt-bindings: input: touchscreen: edt-ft5x06: Document FT8716 support
  Input: edt-ft5x06 - add support for FocalTech FT8716

 .../devicetree/bindings/input/touchscreen/edt-ft5x06.yaml   | 1 +
 drivers/input/touchscreen/edt-ft5x06.c                      | 6 ++++++
 2 files changed, 7 insertions(+)

-- 
2.48.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Document FT8716 support
  2025-03-13 20:20 [PATCH 0/2] Add FT8716 support Jens Reidel
@ 2025-03-13 20:20 ` Jens Reidel
  2025-03-14  8:54   ` Krzysztof Kozlowski
  2025-03-13 20:20 ` [PATCH 2/2] Input: edt-ft5x06 - add support for FocalTech FT8716 Jens Reidel
  2025-07-01 18:45 ` [PATCH 0/2] Add FT8716 support Dmitry Torokhov
  2 siblings, 1 reply; 5+ messages in thread
From: Jens Reidel @ 2025-03-13 20:20 UTC (permalink / raw)
  To: Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Joel Selvaraj, Oliver Graute, Felix Kaechele, Andreas Kemnade,
	Fabio Estevam, Al Viro, Yu Jiaoliang
  Cc: linux-input, devicetree, linux-kernel, phone-devel, linux,
	~postmarketos/upstreaming, Jens Reidel

Document FocalTech FT8716 support by adding the compatible.

Signed-off-by: Jens Reidel <adrian@mainlining.org>
---
 .../devicetree/bindings/input/touchscreen/edt-ft5x06.yaml        | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml b/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml
index 70a922e213f2..ed23acd0c9a2 100644
--- a/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml
+++ b/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml
@@ -43,6 +43,7 @@ properties:
       - focaltech,ft5452
       - focaltech,ft6236
       - focaltech,ft8201
+      - focaltech,ft8716
       - focaltech,ft8719
 
   reg:
-- 
2.48.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] Input: edt-ft5x06 - add support for FocalTech FT8716
  2025-03-13 20:20 [PATCH 0/2] Add FT8716 support Jens Reidel
  2025-03-13 20:20 ` [PATCH 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Document " Jens Reidel
@ 2025-03-13 20:20 ` Jens Reidel
  2025-07-01 18:45 ` [PATCH 0/2] Add FT8716 support Dmitry Torokhov
  2 siblings, 0 replies; 5+ messages in thread
From: Jens Reidel @ 2025-03-13 20:20 UTC (permalink / raw)
  To: Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Joel Selvaraj, Oliver Graute, Felix Kaechele, Andreas Kemnade,
	Fabio Estevam, Al Viro, Yu Jiaoliang
  Cc: linux-input, devicetree, linux-kernel, phone-devel, linux,
	~postmarketos/upstreaming, Jens Reidel

This driver is compatible with the FocalTech FT8716 touchscreen, which
supports up to 10 concurrent touch points. Add a compatible for it.

Signed-off-by: Jens Reidel <adrian@mainlining.org>
---
 drivers/input/touchscreen/edt-ft5x06.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c
index 0d7bf18e2508..c72ae6535114 100644
--- a/drivers/input/touchscreen/edt-ft5x06.c
+++ b/drivers/input/touchscreen/edt-ft5x06.c
@@ -1495,6 +1495,10 @@ static const struct edt_i2c_chip_data edt_ft8201_data = {
 	.max_support_points = 10,
 };
 
+static const struct edt_i2c_chip_data edt_ft8716_data = {
+	.max_support_points = 10,
+};
+
 static const struct edt_i2c_chip_data edt_ft8719_data = {
 	.max_support_points = 10,
 };
@@ -1507,6 +1511,7 @@ static const struct i2c_device_id edt_ft5x06_ts_id[] = {
 	/* Note no edt- prefix for compatibility with the ft6236.c driver */
 	{ .name = "ft6236", .driver_data = (long)&edt_ft6236_data },
 	{ .name = "ft8201", .driver_data = (long)&edt_ft8201_data },
+	{ .name = "ft8716", .driver_data = (long)&edt_ft8716_data },
 	{ .name = "ft8719", .driver_data = (long)&edt_ft8719_data },
 	{ /* sentinel */ }
 };
@@ -1523,6 +1528,7 @@ static const struct of_device_id edt_ft5x06_of_match[] = {
 	/* Note focaltech vendor prefix for compatibility with ft6236.c */
 	{ .compatible = "focaltech,ft6236", .data = &edt_ft6236_data },
 	{ .compatible = "focaltech,ft8201", .data = &edt_ft8201_data },
+	{ .compatible = "focaltech,ft8716", .data = &edt_ft8716_data },
 	{ .compatible = "focaltech,ft8719", .data = &edt_ft8719_data },
 	{ /* sentinel */ }
 };
-- 
2.48.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Document FT8716 support
  2025-03-13 20:20 ` [PATCH 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Document " Jens Reidel
@ 2025-03-14  8:54   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2025-03-14  8:54 UTC (permalink / raw)
  To: Jens Reidel
  Cc: Dmitry Torokhov, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
	Joel Selvaraj, Oliver Graute, Felix Kaechele, Andreas Kemnade,
	Fabio Estevam, Al Viro, Yu Jiaoliang, linux-input, devicetree,
	linux-kernel, phone-devel, linux, ~postmarketos/upstreaming

On Thu, Mar 13, 2025 at 09:20:16PM +0100, Jens Reidel wrote:
> Document FocalTech FT8716 support by adding the compatible.
> 
> Signed-off-by: Jens Reidel <adrian@mainlining.org>
> ---
>  .../devicetree/bindings/input/touchscreen/edt-ft5x06.yaml        | 1 +
>  1 file changed, 1 insertion(+)

Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] Add FT8716 support
  2025-03-13 20:20 [PATCH 0/2] Add FT8716 support Jens Reidel
  2025-03-13 20:20 ` [PATCH 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Document " Jens Reidel
  2025-03-13 20:20 ` [PATCH 2/2] Input: edt-ft5x06 - add support for FocalTech FT8716 Jens Reidel
@ 2025-07-01 18:45 ` Dmitry Torokhov
  2 siblings, 0 replies; 5+ messages in thread
From: Dmitry Torokhov @ 2025-07-01 18:45 UTC (permalink / raw)
  To: Jens Reidel
  Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Joel Selvaraj,
	Oliver Graute, Felix Kaechele, Andreas Kemnade, Fabio Estevam,
	Al Viro, Yu Jiaoliang, linux-input, devicetree, linux-kernel,
	phone-devel, linux, ~postmarketos/upstreaming

On Thu, Mar 13, 2025 at 09:20:15PM +0100, Jens Reidel wrote:
> This series adds support for the FocalTech FT8716 touchscreen to the
> edt-ft5x06 driver. It was tested on the BQ Aquaris X (bq-bardock) and BQ
> Aquaris X Pro (bq-bardockpro).
> 
> Jens Reidel (2):
>   dt-bindings: input: touchscreen: edt-ft5x06: Document FT8716 support
>   Input: edt-ft5x06 - add support for FocalTech FT8716
> 
>  .../devicetree/bindings/input/touchscreen/edt-ft5x06.yaml   | 1 +
>  drivers/input/touchscreen/edt-ft5x06.c                      | 6 ++++++
>  2 files changed, 7 insertions(+)

Applied the lot, thank you.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2025-07-01 18:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-13 20:20 [PATCH 0/2] Add FT8716 support Jens Reidel
2025-03-13 20:20 ` [PATCH 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Document " Jens Reidel
2025-03-14  8:54   ` Krzysztof Kozlowski
2025-03-13 20:20 ` [PATCH 2/2] Input: edt-ft5x06 - add support for FocalTech FT8716 Jens Reidel
2025-07-01 18:45 ` [PATCH 0/2] Add FT8716 support Dmitry Torokhov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).