cyttsp4_i2c.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * cyttsp_i2c.c
  4. * Cypress TrueTouch(TM) Standard Product (TTSP) I2C touchscreen driver.
  5. * For use with Cypress Txx4xx parts.
  6. * Supported parts include:
  7. * TMA4XX
  8. * TMA1036
  9. *
  10. * Copyright (C) 2009, 2010, 2011 Cypress Semiconductor, Inc.
  11. * Copyright (C) 2012 Javier Martinez Canillas <[email protected]>
  12. * Copyright (C) 2013 Cypress Semiconductor
  13. *
  14. * Contact Cypress Semiconductor at www.cypress.com <[email protected]>
  15. */
  16. #include "cyttsp4_core.h"
  17. #include <linux/i2c.h>
  18. #include <linux/input.h>
  19. #define CYTTSP4_I2C_DATA_SIZE (3 * 256)
  20. static const struct cyttsp4_bus_ops cyttsp4_i2c_bus_ops = {
  21. .bustype = BUS_I2C,
  22. .write = cyttsp_i2c_write_block_data,
  23. .read = cyttsp_i2c_read_block_data,
  24. };
  25. static int cyttsp4_i2c_probe(struct i2c_client *client,
  26. const struct i2c_device_id *id)
  27. {
  28. struct cyttsp4 *ts;
  29. if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
  30. dev_err(&client->dev, "I2C functionality not Supported\n");
  31. return -EIO;
  32. }
  33. ts = cyttsp4_probe(&cyttsp4_i2c_bus_ops, &client->dev, client->irq,
  34. CYTTSP4_I2C_DATA_SIZE);
  35. return PTR_ERR_OR_ZERO(ts);
  36. }
  37. static void cyttsp4_i2c_remove(struct i2c_client *client)
  38. {
  39. struct cyttsp4 *ts = i2c_get_clientdata(client);
  40. cyttsp4_remove(ts);
  41. }
  42. static const struct i2c_device_id cyttsp4_i2c_id[] = {
  43. { CYTTSP4_I2C_NAME, 0 },
  44. { }
  45. };
  46. MODULE_DEVICE_TABLE(i2c, cyttsp4_i2c_id);
  47. static struct i2c_driver cyttsp4_i2c_driver = {
  48. .driver = {
  49. .name = CYTTSP4_I2C_NAME,
  50. .pm = &cyttsp4_pm_ops,
  51. },
  52. .probe = cyttsp4_i2c_probe,
  53. .remove = cyttsp4_i2c_remove,
  54. .id_table = cyttsp4_i2c_id,
  55. };
  56. module_i2c_driver(cyttsp4_i2c_driver);
  57. MODULE_LICENSE("GPL");
  58. MODULE_DESCRIPTION("Cypress TrueTouch(R) Standard Product (TTSP) I2C driver");
  59. MODULE_AUTHOR("Cypress");