* [PATCH v3 0/2] Input: add ft5426
@ 2024-05-01 20:47 Andreas Kemnade
2024-05-01 20:47 ` [PATCH v3 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Add ft5426 Andreas Kemnade
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Andreas Kemnade @ 2024-05-01 20:47 UTC (permalink / raw)
To: dmitry.torokhov, robh, krzk+dt, conor+dt, o.rempel, andreas,
u.kleine-koenig, hdegoede, oliver.graute, ye.xingchen,
p.puschmann, linux-input, devicetree, linux-kernel,
andy.shevchenko, felix
Changes in v3:
- reorder compatible also in driver
Changes in v2:
- reorder compatible
Andreas Kemnade (2):
dt-bindings: input: touchscreen: edt-ft5x06: Add ft5426
Input: edt-ft5x06 - add ft5426
.../devicetree/bindings/input/touchscreen/edt-ft5x06.yaml | 1 +
drivers/input/touchscreen/edt-ft5x06.c | 1 +
2 files changed, 2 insertions(+)
--
2.39.2
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v3 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Add ft5426
2024-05-01 20:47 [PATCH v3 0/2] Input: add ft5426 Andreas Kemnade
@ 2024-05-01 20:47 ` Andreas Kemnade
2024-05-02 8:41 ` Oliver Graute
2024-05-01 20:47 ` [PATCH v3 2/2] Input: edt-ft5x06 - add ft5426 Andreas Kemnade
` (2 subsequent siblings)
3 siblings, 1 reply; 7+ messages in thread
From: Andreas Kemnade @ 2024-05-01 20:47 UTC (permalink / raw)
To: dmitry.torokhov, robh, krzk+dt, conor+dt, o.rempel, andreas,
u.kleine-koenig, hdegoede, oliver.graute, ye.xingchen,
p.puschmann, linux-input, devicetree, linux-kernel,
andy.shevchenko, felix
Cc: Krzysztof Kozlowski
Add compatible for ft5426.
Searches for documentation reveal neither edt nor evervision
as some related company, only FocalTech.
Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.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 f2808cb4d99df..71fd3c66c966e 100644
--- a/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml
+++ b/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml
@@ -39,6 +39,7 @@ properties:
- edt,edt-ft5406
- edt,edt-ft5506
- evervision,ev-ft5726
+ - focaltech,ft5426
- focaltech,ft6236
reg:
--
2.39.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH v3 2/2] Input: edt-ft5x06 - add ft5426
2024-05-01 20:47 [PATCH v3 0/2] Input: add ft5426 Andreas Kemnade
2024-05-01 20:47 ` [PATCH v3 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Add ft5426 Andreas Kemnade
@ 2024-05-01 20:47 ` Andreas Kemnade
2024-05-02 8:42 ` Oliver Graute
2024-06-22 6:51 ` [PATCH v3 0/2] Input: " Andreas Kemnade
2024-06-22 8:30 ` Dmitry Torokhov
3 siblings, 1 reply; 7+ messages in thread
From: Andreas Kemnade @ 2024-05-01 20:47 UTC (permalink / raw)
To: dmitry.torokhov, robh, krzk+dt, conor+dt, o.rempel, andreas,
u.kleine-koenig, hdegoede, oliver.graute, ye.xingchen,
p.puschmann, linux-input, devicetree, linux-kernel,
andy.shevchenko, felix
As ft5426 seems to be compatible with this driver, add it.
Debug output during identification: Model "generic ft5x06 (79)", Rev. "
Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
---
drivers/input/touchscreen/edt-ft5x06.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c
index 2a1db11344766..028ec66faa193 100644
--- a/drivers/input/touchscreen/edt-ft5x06.c
+++ b/drivers/input/touchscreen/edt-ft5x06.c
@@ -1486,6 +1486,7 @@ static const struct of_device_id edt_ft5x06_of_match[] = {
{ .compatible = "edt,edt-ft5406", .data = &edt_ft5x06_data },
{ .compatible = "edt,edt-ft5506", .data = &edt_ft5506_data },
{ .compatible = "evervision,ev-ft5726", .data = &edt_ft5506_data },
+ { .compatible = "focaltech,ft5426", .data = &edt_ft5506_data },
/* Note focaltech vendor prefix for compatibility with ft6236.c */
{ .compatible = "focaltech,ft6236", .data = &edt_ft6236_data },
{ /* sentinel */ }
--
2.39.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v3 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Add ft5426
2024-05-01 20:47 ` [PATCH v3 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Add ft5426 Andreas Kemnade
@ 2024-05-02 8:41 ` Oliver Graute
0 siblings, 0 replies; 7+ messages in thread
From: Oliver Graute @ 2024-05-02 8:41 UTC (permalink / raw)
To: Andreas Kemnade
Cc: dmitry.torokhov, robh, krzk+dt, conor+dt, o.rempel,
u.kleine-koenig, hdegoede, ye.xingchen, p.puschmann, linux-input,
devicetree, linux-kernel, andy.shevchenko, felix,
Krzysztof Kozlowski
On 01/05/24, Andreas Kemnade wrote:
> Add compatible for ft5426.
> Searches for documentation reveal neither edt nor evervision
> as some related company, only FocalTech.
>
> Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.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 f2808cb4d99df..71fd3c66c966e 100644
> --- a/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml
> +++ b/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml
> @@ -39,6 +39,7 @@ properties:
> - edt,edt-ft5406
> - edt,edt-ft5506
> - evervision,ev-ft5726
> + - focaltech,ft5426
> - focaltech,ft6236
>
> reg:
> --
> 2.39.2
>
Reviewed-by: Oliver Graute <oliver.graute@kococonnector.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 2/2] Input: edt-ft5x06 - add ft5426
2024-05-01 20:47 ` [PATCH v3 2/2] Input: edt-ft5x06 - add ft5426 Andreas Kemnade
@ 2024-05-02 8:42 ` Oliver Graute
0 siblings, 0 replies; 7+ messages in thread
From: Oliver Graute @ 2024-05-02 8:42 UTC (permalink / raw)
To: Andreas Kemnade
Cc: dmitry.torokhov, robh, krzk+dt, conor+dt, o.rempel,
u.kleine-koenig, hdegoede, ye.xingchen, p.puschmann, linux-input,
devicetree, linux-kernel, andy.shevchenko, felix
On 01/05/24, Andreas Kemnade wrote:
> As ft5426 seems to be compatible with this driver, add it.
> Debug output during identification: Model "generic ft5x06 (79)", Rev. "
>
> Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
> ---
> drivers/input/touchscreen/edt-ft5x06.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/input/touchscreen/edt-ft5x06.c b/drivers/input/touchscreen/edt-ft5x06.c
> index 2a1db11344766..028ec66faa193 100644
> --- a/drivers/input/touchscreen/edt-ft5x06.c
> +++ b/drivers/input/touchscreen/edt-ft5x06.c
> @@ -1486,6 +1486,7 @@ static const struct of_device_id edt_ft5x06_of_match[] = {
> { .compatible = "edt,edt-ft5406", .data = &edt_ft5x06_data },
> { .compatible = "edt,edt-ft5506", .data = &edt_ft5506_data },
> { .compatible = "evervision,ev-ft5726", .data = &edt_ft5506_data },
> + { .compatible = "focaltech,ft5426", .data = &edt_ft5506_data },
> /* Note focaltech vendor prefix for compatibility with ft6236.c */
> { .compatible = "focaltech,ft6236", .data = &edt_ft6236_data },
> { /* sentinel */ }
> --
> 2.39.2
Reviewed-by: Oliver Graute <oliver.graute@kococonnector.com>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 0/2] Input: add ft5426
2024-05-01 20:47 [PATCH v3 0/2] Input: add ft5426 Andreas Kemnade
2024-05-01 20:47 ` [PATCH v3 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Add ft5426 Andreas Kemnade
2024-05-01 20:47 ` [PATCH v3 2/2] Input: edt-ft5x06 - add ft5426 Andreas Kemnade
@ 2024-06-22 6:51 ` Andreas Kemnade
2024-06-22 8:30 ` Dmitry Torokhov
3 siblings, 0 replies; 7+ messages in thread
From: Andreas Kemnade @ 2024-06-22 6:51 UTC (permalink / raw)
To: dmitry.torokhov, robh, krzk+dt, conor+dt, o.rempel, andreas,
u.kleine-koenig, hdegoede, oliver.graute, ye.xingchen,
p.puschmann, linux-input, devicetree, linux-kernel,
andy.shevchenko, felix
ping
On Wed, 1 May 2024 22:47:56 +0200
Andreas Kemnade <andreas@kemnade.info> wrote:
> Changes in v3:
> - reorder compatible also in driver
>
> Changes in v2:
> - reorder compatible
>
> Andreas Kemnade (2):
> dt-bindings: input: touchscreen: edt-ft5x06: Add ft5426
> Input: edt-ft5x06 - add ft5426
>
> .../devicetree/bindings/input/touchscreen/edt-ft5x06.yaml | 1 +
> drivers/input/touchscreen/edt-ft5x06.c | 1 +
> 2 files changed, 2 insertions(+)
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3 0/2] Input: add ft5426
2024-05-01 20:47 [PATCH v3 0/2] Input: add ft5426 Andreas Kemnade
` (2 preceding siblings ...)
2024-06-22 6:51 ` [PATCH v3 0/2] Input: " Andreas Kemnade
@ 2024-06-22 8:30 ` Dmitry Torokhov
3 siblings, 0 replies; 7+ messages in thread
From: Dmitry Torokhov @ 2024-06-22 8:30 UTC (permalink / raw)
To: Andreas Kemnade
Cc: robh, krzk+dt, conor+dt, o.rempel, u.kleine-koenig, hdegoede,
oliver.graute, ye.xingchen, p.puschmann, linux-input, devicetree,
linux-kernel, andy.shevchenko, felix
On Wed, May 01, 2024 at 10:47:56PM +0200, Andreas Kemnade wrote:
> Changes in v3:
> - reorder compatible also in driver
>
> Changes in v2:
> - reorder compatible
>
> Andreas Kemnade (2):
> dt-bindings: input: touchscreen: edt-ft5x06: Add ft5426
> Input: edt-ft5x06 - add ft5426
Applied the series, thank you.
--
Dmitry
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-06-22 8:30 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-01 20:47 [PATCH v3 0/2] Input: add ft5426 Andreas Kemnade
2024-05-01 20:47 ` [PATCH v3 1/2] dt-bindings: input: touchscreen: edt-ft5x06: Add ft5426 Andreas Kemnade
2024-05-02 8:41 ` Oliver Graute
2024-05-01 20:47 ` [PATCH v3 2/2] Input: edt-ft5x06 - add ft5426 Andreas Kemnade
2024-05-02 8:42 ` Oliver Graute
2024-06-22 6:51 ` [PATCH v3 0/2] Input: " Andreas Kemnade
2024-06-22 8:30 ` 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).