cyttsp4_i2c.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * cyttsp_i2c.c
  3. * Cypress TrueTouch(TM) Standard Product (TTSP) I2C touchscreen driver.
  4. * For use with Cypress Txx4xx parts.
  5. * Supported parts include:
  6. * TMA4XX
  7. * TMA1036
  8. *
  9. * Copyright (C) 2009, 2010, 2011 Cypress Semiconductor, Inc.
  10. * Copyright (C) 2012 Javier Martinez Canillas <javier@dowhile0.org>
  11. * Copyright (C) 2013 Cypress Semiconductor
  12. *
  13. * This program is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU General Public License
  15. * version 2, and only version 2, as published by the
  16. * Free Software Foundation.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * Contact Cypress Semiconductor at www.cypress.com <ttdrivers@cypress.com>
  24. *
  25. */
  26. #include "cyttsp4_core.h"
  27. #include <linux/i2c.h>
  28. #include <linux/input.h>
  29. #define CYTTSP4_I2C_DATA_SIZE (3 * 256)
  30. static const struct cyttsp4_bus_ops cyttsp4_i2c_bus_ops = {
  31. .bustype = BUS_I2C,
  32. .write = cyttsp_i2c_write_block_data,
  33. .read = cyttsp_i2c_read_block_data,
  34. };
  35. static int cyttsp4_i2c_probe(struct i2c_client *client,
  36. const struct i2c_device_id *id)
  37. {
  38. struct cyttsp4 *ts;
  39. if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
  40. dev_err(&client->dev, "I2C functionality not Supported\n");
  41. return -EIO;
  42. }
  43. ts = cyttsp4_probe(&cyttsp4_i2c_bus_ops, &client->dev, client->irq,
  44. CYTTSP4_I2C_DATA_SIZE);
  45. if (IS_ERR(ts))
  46. return PTR_ERR(ts);
  47. return 0;
  48. }
  49. static int cyttsp4_i2c_remove(struct i2c_client *client)
  50. {
  51. struct cyttsp4 *ts = i2c_get_clientdata(client);
  52. cyttsp4_remove(ts);
  53. return 0;
  54. }
  55. static const struct i2c_device_id cyttsp4_i2c_id[] = {
  56. { CYTTSP4_I2C_NAME, 0 },
  57. { }
  58. };
  59. MODULE_DEVICE_TABLE(i2c, cyttsp4_i2c_id);
  60. static struct i2c_driver cyttsp4_i2c_driver = {
  61. .driver = {
  62. .name = CYTTSP4_I2C_NAME,
  63. .owner = THIS_MODULE,
  64. .pm = &cyttsp4_pm_ops,
  65. },
  66. .probe = cyttsp4_i2c_probe,
  67. .remove = cyttsp4_i2c_remove,
  68. .id_table = cyttsp4_i2c_id,
  69. };
  70. module_i2c_driver(cyttsp4_i2c_driver);
  71. MODULE_LICENSE("GPL");
  72. MODULE_DESCRIPTION("Cypress TrueTouch(R) Standard Product (TTSP) I2C driver");
  73. MODULE_AUTHOR("Cypress");
  74. MODULE_ALIAS("i2c:cyttsp4");