[PATCH v2] dt-bindings: input: touchscreen: edt-ft5x06: Add FocalTech FT3519

Bhushan Shah posted 1 patch 3 weeks, 2 days ago
There is a newer version of this series
.../bindings/input/touchscreen/edt-ft5x06.yaml     | 30 ++++++++++++----------
1 file changed, 17 insertions(+), 13 deletions(-)
[PATCH v2] dt-bindings: input: touchscreen: edt-ft5x06: Add FocalTech FT3519
Posted by Bhushan Shah 3 weeks, 2 days ago
Document FocalTech FT3519 support by adding the compatible. It's 10
point touchscreen, which is compatible with FT3518

Signed-off-by: Bhushan Shah <bhushan.shah@machinesoul.in>
---
Document FocalTech FT3519 support by adding the compatible. It's 10
point touchscreen, which is compatible with FT3518.
---
Changes in v2:
- Remove the driver change and add only compatible in dt-bindings.
- Link to v1: https://lore.kernel.org/r/20260313-edt-ft3519-v1-0-fe5ffc632fd2@machinesoul.in
---
 .../bindings/input/touchscreen/edt-ft5x06.yaml     | 30 ++++++++++++----------
 1 file changed, 17 insertions(+), 13 deletions(-)

diff --git a/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml b/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml
index 6f90522de8c0..cc071acc1c72 100644
--- a/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml
+++ b/Documentation/devicetree/bindings/input/touchscreen/edt-ft5x06.yaml
@@ -33,19 +33,23 @@ allOf:
 
 properties:
   compatible:
-    enum:
-      - edt,edt-ft5206
-      - edt,edt-ft5306
-      - edt,edt-ft5406
-      - edt,edt-ft5506
-      - evervision,ev-ft5726
-      - focaltech,ft3518
-      - focaltech,ft5426
-      - focaltech,ft5452
-      - focaltech,ft6236
-      - focaltech,ft8201
-      - focaltech,ft8716
-      - focaltech,ft8719
+    oneOf:
+      - enum:
+        - edt,edt-ft5206
+        - edt,edt-ft5306
+        - edt,edt-ft5406
+        - edt,edt-ft5506
+        - evervision,ev-ft5726
+        - focaltech,ft3518
+        - focaltech,ft5426
+        - focaltech,ft5452
+        - focaltech,ft6236
+        - focaltech,ft8201
+        - focaltech,ft8716
+        - focaltech,ft8719
+      - items:
+        - const: focaltech,ft3519
+        - const: focaltech,ft3518
 
   reg:
     maxItems: 1

---
base-commit: 0257f64bdac7fdca30fa3cae0df8b9ecbec7733a
change-id: 20260313-edt-ft3519-b3e2a33e88ee

Best regards,
-- 
Bhushan Shah <bhushan.shah@machinesoul.in>
Re: [PATCH v2] dt-bindings: input: touchscreen: edt-ft5x06: Add FocalTech FT3519
Posted by Krzysztof Kozlowski 3 weeks, 2 days ago
On 14/03/2026 14:50, Bhushan Shah wrote:
> Document FocalTech FT3519 support by adding the compatible. It's 10
> point touchscreen, which is compatible with FT3518
> 
> Signed-off-by: Bhushan Shah <bhushan.shah@machinesoul.in>
> ---
> Document FocalTech FT3519 support by adding the compatible. It's 10
> point touchscreen, which is compatible with FT3518.
> ---
> Changes in v2:
> - Remove the driver change and add only compatible in dt-bindings.
> - Link to v1: https://lore.kernel.org/r/20260313-edt-ft3519-v1-0-fe5ffc632fd2@machinesoul.in
> ---

It does not look like you tested the bindings, at least after quick
look. Please run `make dt_binding_check` (see
Documentation/devicetree/bindings/writing-schema.rst for instructions).
Maybe you need to update your dtschema and yamllint. Don't rely on
distro packages for dtschema and be sure you are using the latest
released dtschema.

Best regards,
Krzysztof