Skip to content

Commit c6f908f

Browse files
Gelbpunktdtor
authored andcommitted
Input: edt-ft5x06 - add support for FocalTech FT8716
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> Link: https://lore.kernel.org/r/20250313202017.19621-3-adrian@mainlining.org Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
1 parent 06226bd commit c6f908f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

drivers/input/touchscreen/edt-ft5x06.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1491,6 +1491,10 @@ static const struct edt_i2c_chip_data edt_ft8201_data = {
14911491
.max_support_points = 10,
14921492
};
14931493

1494+
static const struct edt_i2c_chip_data edt_ft8716_data = {
1495+
.max_support_points = 10,
1496+
};
1497+
14941498
static const struct edt_i2c_chip_data edt_ft8719_data = {
14951499
.max_support_points = 10,
14961500
};
@@ -1503,6 +1507,7 @@ static const struct i2c_device_id edt_ft5x06_ts_id[] = {
15031507
/* Note no edt- prefix for compatibility with the ft6236.c driver */
15041508
{ .name = "ft6236", .driver_data = (long)&edt_ft6236_data },
15051509
{ .name = "ft8201", .driver_data = (long)&edt_ft8201_data },
1510+
{ .name = "ft8716", .driver_data = (long)&edt_ft8716_data },
15061511
{ .name = "ft8719", .driver_data = (long)&edt_ft8719_data },
15071512
{ /* sentinel */ }
15081513
};
@@ -1519,6 +1524,7 @@ static const struct of_device_id edt_ft5x06_of_match[] = {
15191524
/* Note focaltech vendor prefix for compatibility with ft6236.c */
15201525
{ .compatible = "focaltech,ft6236", .data = &edt_ft6236_data },
15211526
{ .compatible = "focaltech,ft8201", .data = &edt_ft8201_data },
1527+
{ .compatible = "focaltech,ft8716", .data = &edt_ft8716_data },
15221528
{ .compatible = "focaltech,ft8719", .data = &edt_ft8719_data },
15231529
{ /* sentinel */ }
15241530
};

0 commit comments

Comments
 (0)