cyttsp_i2c.c 2.2 KB

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