v4l2-i2c-drv-legacy.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * v4l2-i2c-drv-legacy.h - contains I2C handling code that's identical
  3. * for all V4L2 I2C drivers. Use this header if the
  4. * I2C driver is used by both legacy drivers and
  5. * drivers converted to the bus-based I2C API.
  6. *
  7. * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. */
  23. struct v4l2_i2c_driver_data {
  24. const char * const name;
  25. int driverid;
  26. int (*command)(struct i2c_client *client, unsigned int cmd, void *arg);
  27. int (*probe)(struct i2c_client *client);
  28. int (*remove)(struct i2c_client *client);
  29. int (*suspend)(struct i2c_client *client, pm_message_t state);
  30. int (*resume)(struct i2c_client *client);
  31. int (*legacy_probe)(struct i2c_adapter *adapter);
  32. int legacy_class;
  33. };
  34. static struct v4l2_i2c_driver_data v4l2_i2c_data;
  35. static struct i2c_client_address_data addr_data;
  36. static struct i2c_driver v4l2_i2c_driver_legacy;
  37. static char v4l2_i2c_drv_name_legacy[32];
  38. static int v4l2_i2c_drv_attach_legacy(struct i2c_adapter *adapter, int address, int kind)
  39. {
  40. return v4l2_i2c_attach(adapter, address, &v4l2_i2c_driver_legacy,
  41. v4l2_i2c_drv_name_legacy, v4l2_i2c_data.probe);
  42. }
  43. static int v4l2_i2c_drv_probe_legacy(struct i2c_adapter *adapter)
  44. {
  45. if (v4l2_i2c_data.legacy_probe) {
  46. if (v4l2_i2c_data.legacy_probe(adapter))
  47. return i2c_probe(adapter, &addr_data, v4l2_i2c_drv_attach_legacy);
  48. return 0;
  49. }
  50. if (adapter->class & v4l2_i2c_data.legacy_class)
  51. return i2c_probe(adapter, &addr_data, v4l2_i2c_drv_attach_legacy);
  52. return 0;
  53. }
  54. static int v4l2_i2c_drv_detach_legacy(struct i2c_client *client)
  55. {
  56. int err;
  57. if (v4l2_i2c_data.remove)
  58. v4l2_i2c_data.remove(client);
  59. err = i2c_detach_client(client);
  60. if (err)
  61. return err;
  62. kfree(client);
  63. return 0;
  64. }
  65. static int v4l2_i2c_drv_suspend_helper(struct i2c_client *client, pm_message_t state)
  66. {
  67. return v4l2_i2c_data.suspend ? v4l2_i2c_data.suspend(client, state) : 0;
  68. }
  69. static int v4l2_i2c_drv_resume_helper(struct i2c_client *client)
  70. {
  71. return v4l2_i2c_data.resume ? v4l2_i2c_data.resume(client) : 0;
  72. }
  73. /* ----------------------------------------------------------------------- */
  74. /* i2c implementation */
  75. static struct i2c_driver v4l2_i2c_driver_legacy = {
  76. .driver = {
  77. .owner = THIS_MODULE,
  78. },
  79. .attach_adapter = v4l2_i2c_drv_probe_legacy,
  80. .detach_client = v4l2_i2c_drv_detach_legacy,
  81. .suspend = v4l2_i2c_drv_suspend_helper,
  82. .resume = v4l2_i2c_drv_resume_helper,
  83. };
  84. /* ----------------------------------------------------------------------- */
  85. /* i2c implementation */
  86. static struct i2c_driver v4l2_i2c_driver = {
  87. .suspend = v4l2_i2c_drv_suspend_helper,
  88. .resume = v4l2_i2c_drv_resume_helper,
  89. };
  90. static int __init v4l2_i2c_drv_init(void)
  91. {
  92. int err;
  93. strlcpy(v4l2_i2c_drv_name_legacy, v4l2_i2c_data.name, sizeof(v4l2_i2c_drv_name_legacy));
  94. strlcat(v4l2_i2c_drv_name_legacy, "'", sizeof(v4l2_i2c_drv_name_legacy));
  95. if (v4l2_i2c_data.legacy_class == 0)
  96. v4l2_i2c_data.legacy_class = I2C_CLASS_TV_ANALOG;
  97. v4l2_i2c_driver_legacy.driver.name = v4l2_i2c_drv_name_legacy;
  98. v4l2_i2c_driver_legacy.id = v4l2_i2c_data.driverid;
  99. v4l2_i2c_driver_legacy.command = v4l2_i2c_data.command;
  100. err = i2c_add_driver(&v4l2_i2c_driver_legacy);
  101. if (err)
  102. return err;
  103. v4l2_i2c_driver.driver.name = v4l2_i2c_data.name;
  104. v4l2_i2c_driver.id = v4l2_i2c_data.driverid;
  105. v4l2_i2c_driver.command = v4l2_i2c_data.command;
  106. v4l2_i2c_driver.probe = v4l2_i2c_data.probe;
  107. v4l2_i2c_driver.remove = v4l2_i2c_data.remove;
  108. err = i2c_add_driver(&v4l2_i2c_driver);
  109. if (err)
  110. i2c_del_driver(&v4l2_i2c_driver_legacy);
  111. return err;
  112. }
  113. static void __exit v4l2_i2c_drv_cleanup(void)
  114. {
  115. i2c_del_driver(&v4l2_i2c_driver_legacy);
  116. i2c_del_driver(&v4l2_i2c_driver);
  117. }
  118. module_init(v4l2_i2c_drv_init);
  119. module_exit(v4l2_i2c_drv_cleanup);