cyttsp_i2c.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 Txx3xx parts.
  6. * Supported parts include:
  7. * CY8CTST341
  8. * CY8CTMA340
  9. *
  10. * Copyright (C) 2009, 2010, 2011 Cypress Semiconductor, Inc.
  11. * Copyright (C) 2012 Javier Martinez Canillas <[email protected]>
  12. *
  13. * Contact Cypress Semiconductor at www.cypress.com <[email protected]>
  14. */
  15. #include "cyttsp_core.h"
  16. #include <linux/i2c.h>
  17. #include <linux/input.h>
  18. #define CY_I2C_NAME "cyttsp-i2c"
  19. #define CY_I2C_DATA_SIZE 128
  20. static const struct cyttsp_bus_ops cyttsp_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 cyttsp_i2c_probe(struct i2c_client *client,
  26. const struct i2c_device_id *id)
  27. {
  28. struct cyttsp *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 = cyttsp_probe(&cyttsp_i2c_bus_ops, &client->dev, client->irq,
  34. CY_I2C_DATA_SIZE);
  35. if (IS_ERR(ts))
  36. return PTR_ERR(ts);
  37. i2c_set_clientdata(client, ts);
  38. return 0;
  39. }
  40. static const struct i2c_device_id cyttsp_i2c_id[] = {
  41. { CY_I2C_NAME, 0 },
  42. { }
  43. };
  44. MODULE_DEVICE_TABLE(i2c, cyttsp_i2c_id);
  45. static const struct of_device_id cyttsp_of_i2c_match[] = {
  46. { .compatible = "cypress,cy8ctma340", },
  47. { .compatible = "cypress,cy8ctst341", },
  48. { /* sentinel */ }
  49. };
  50. MODULE_DEVICE_TABLE(of, cyttsp_of_i2c_match);
  51. static struct i2c_driver cyttsp_i2c_driver = {
  52. .driver = {
  53. .name = CY_I2C_NAME,
  54. .pm = &cyttsp_pm_ops,
  55. .of_match_table = cyttsp_of_i2c_match,
  56. },
  57. .probe = cyttsp_i2c_probe,
  58. .id_table = cyttsp_i2c_id,
  59. };
  60. module_i2c_driver(cyttsp_i2c_driver);
  61. MODULE_LICENSE("GPL");
  62. MODULE_DESCRIPTION("Cypress TrueTouch(R) Standard Product (TTSP) I2C driver");
  63. MODULE_AUTHOR("Cypress");