197fb5e8dSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
24f9e8680SFerruh Yigit /*
34f9e8680SFerruh Yigit * cyttsp_i2c.c
44f9e8680SFerruh Yigit * Cypress TrueTouch(TM) Standard Product (TTSP) I2C touchscreen driver.
54f9e8680SFerruh Yigit * For use with Cypress Txx4xx parts.
64f9e8680SFerruh Yigit * Supported parts include:
74f9e8680SFerruh Yigit * TMA4XX
84f9e8680SFerruh Yigit * TMA1036
94f9e8680SFerruh Yigit *
104f9e8680SFerruh Yigit * Copyright (C) 2009, 2010, 2011 Cypress Semiconductor, Inc.
114f9e8680SFerruh Yigit * Copyright (C) 2012 Javier Martinez Canillas <javier@dowhile0.org>
124f9e8680SFerruh Yigit * Copyright (C) 2013 Cypress Semiconductor
134f9e8680SFerruh Yigit *
144f9e8680SFerruh Yigit * Contact Cypress Semiconductor at www.cypress.com <ttdrivers@cypress.com>
154f9e8680SFerruh Yigit */
164f9e8680SFerruh Yigit
174f9e8680SFerruh Yigit #include "cyttsp4_core.h"
184f9e8680SFerruh Yigit
194f9e8680SFerruh Yigit #include <linux/i2c.h>
204f9e8680SFerruh Yigit #include <linux/input.h>
214f9e8680SFerruh Yigit
224f9e8680SFerruh Yigit #define CYTTSP4_I2C_DATA_SIZE (3 * 256)
234f9e8680SFerruh Yigit
244f9e8680SFerruh Yigit static const struct cyttsp4_bus_ops cyttsp4_i2c_bus_ops = {
254f9e8680SFerruh Yigit .bustype = BUS_I2C,
264f9e8680SFerruh Yigit .write = cyttsp_i2c_write_block_data,
274f9e8680SFerruh Yigit .read = cyttsp_i2c_read_block_data,
284f9e8680SFerruh Yigit };
294f9e8680SFerruh Yigit
cyttsp4_i2c_probe(struct i2c_client * client)309ec6bc8bSUwe Kleine-König static int cyttsp4_i2c_probe(struct i2c_client *client)
314f9e8680SFerruh Yigit {
324f9e8680SFerruh Yigit struct cyttsp4 *ts;
334f9e8680SFerruh Yigit
344f9e8680SFerruh Yigit if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
354f9e8680SFerruh Yigit dev_err(&client->dev, "I2C functionality not Supported\n");
364f9e8680SFerruh Yigit return -EIO;
374f9e8680SFerruh Yigit }
384f9e8680SFerruh Yigit
394f9e8680SFerruh Yigit ts = cyttsp4_probe(&cyttsp4_i2c_bus_ops, &client->dev, client->irq,
404f9e8680SFerruh Yigit CYTTSP4_I2C_DATA_SIZE);
414f9e8680SFerruh Yigit
42d6f0c3d3SJavier Martinez Canillas return PTR_ERR_OR_ZERO(ts);
434f9e8680SFerruh Yigit }
444f9e8680SFerruh Yigit
cyttsp4_i2c_remove(struct i2c_client * client)45ed5c2f5fSUwe Kleine-König static void cyttsp4_i2c_remove(struct i2c_client *client)
464f9e8680SFerruh Yigit {
474f9e8680SFerruh Yigit struct cyttsp4 *ts = i2c_get_clientdata(client);
484f9e8680SFerruh Yigit
494f9e8680SFerruh Yigit cyttsp4_remove(ts);
504f9e8680SFerruh Yigit }
514f9e8680SFerruh Yigit
524f9e8680SFerruh Yigit static const struct i2c_device_id cyttsp4_i2c_id[] = {
534f9e8680SFerruh Yigit { CYTTSP4_I2C_NAME, 0 },
544f9e8680SFerruh Yigit { }
554f9e8680SFerruh Yigit };
564f9e8680SFerruh Yigit MODULE_DEVICE_TABLE(i2c, cyttsp4_i2c_id);
574f9e8680SFerruh Yigit
584f9e8680SFerruh Yigit static struct i2c_driver cyttsp4_i2c_driver = {
594f9e8680SFerruh Yigit .driver = {
604f9e8680SFerruh Yigit .name = CYTTSP4_I2C_NAME,
61ebbdbef2SJonathan Cameron .pm = pm_ptr(&cyttsp4_pm_ops),
624f9e8680SFerruh Yigit },
63*d8bde56dSUwe Kleine-König .probe = cyttsp4_i2c_probe,
644f9e8680SFerruh Yigit .remove = cyttsp4_i2c_remove,
654f9e8680SFerruh Yigit .id_table = cyttsp4_i2c_id,
664f9e8680SFerruh Yigit };
674f9e8680SFerruh Yigit
684f9e8680SFerruh Yigit module_i2c_driver(cyttsp4_i2c_driver);
694f9e8680SFerruh Yigit
704f9e8680SFerruh Yigit MODULE_LICENSE("GPL");
714f9e8680SFerruh Yigit MODULE_DESCRIPTION("Cypress TrueTouch(R) Standard Product (TTSP) I2C driver");
724f9e8680SFerruh Yigit MODULE_AUTHOR("Cypress");
73