1 // SPDX-License-Identifier: GPL-2.0-only
4 * Cypress TrueTouch(TM) Standard Product (TTSP) I2C touchscreen driver.
5 * For use with Cypress Txx3xx parts.
6 * Supported parts include:
10 * Copyright (C) 2009, 2010, 2011 Cypress Semiconductor, Inc.
16 #include "cyttsp_core.h"
18 #include <linux/i2c.h>
19 #include <linux/input.h>
21 #define CY_I2C_NAME "cyttsp-i2c"
23 #define CY_I2C_DATA_SIZE 128
25 static int cyttsp_i2c_read_block_data(struct device *dev, u8 *xfer_buf,
26 u16 addr, u8 length, void *values)
28 struct i2c_client *client = to_i2c_client(dev);
29 u8 client_addr = client->addr | ((addr >> 8) & 0x1);
30 u8 addr_lo = addr & 0xFF;
31 struct i2c_msg msgs[] = {
47 retval = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
51 return retval != ARRAY_SIZE(msgs) ? -EIO : 0;
54 static int cyttsp_i2c_write_block_data(struct device *dev, u8 *xfer_buf,
55 u16 addr, u8 length, const void *values)
57 struct i2c_client *client = to_i2c_client(dev);
58 u8 client_addr = client->addr | ((addr >> 8) & 0x1);
59 u8 addr_lo = addr & 0xFF;
60 struct i2c_msg msgs[] = {
70 xfer_buf[0] = addr_lo;
71 memcpy(&xfer_buf[1], values, length);
73 retval = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
77 return retval != ARRAY_SIZE(msgs) ? -EIO : 0;
80 static const struct cyttsp_bus_ops cyttsp_i2c_bus_ops = {
82 .write = cyttsp_i2c_write_block_data,
83 .read = cyttsp_i2c_read_block_data,
86 static int cyttsp_i2c_probe(struct i2c_client *client)
90 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
91 dev_err(&client->dev, "I2C functionality not Supported\n");
95 ts = cyttsp_probe(&cyttsp_i2c_bus_ops, &client->dev, client->irq,
101 i2c_set_clientdata(client, ts);
105 static const struct i2c_device_id cyttsp_i2c_id[] = {
109 MODULE_DEVICE_TABLE(i2c, cyttsp_i2c_id);
111 static const struct of_device_id cyttsp_of_i2c_match[] = {
112 { .compatible = "cypress,cy8ctma340", },
113 { .compatible = "cypress,cy8ctst341", },
116 MODULE_DEVICE_TABLE(of, cyttsp_of_i2c_match);
118 static struct i2c_driver cyttsp_i2c_driver = {
121 .pm = pm_sleep_ptr(&cyttsp_pm_ops),
122 .of_match_table = cyttsp_of_i2c_match,
124 .probe = cyttsp_i2c_probe,
125 .id_table = cyttsp_i2c_id,
128 module_i2c_driver(cyttsp_i2c_driver);
130 MODULE_LICENSE("GPL");
131 MODULE_DESCRIPTION("Cypress TrueTouch(R) Standard Product (TTSP) I2C driver");
132 MODULE_AUTHOR("Cypress");