pvrusb2-i2c-chips-v4l2.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. *
  3. * $Id$
  4. *
  5. * Copyright (C) 2005 Mike Isely <isely@pobox.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. */
  21. #include "pvrusb2-i2c-core.h"
  22. #include "pvrusb2-hdw-internal.h"
  23. #include "pvrusb2-debug.h"
  24. #include "pvrusb2-i2c-cmd-v4l2.h"
  25. #include "pvrusb2-audio.h"
  26. #include "pvrusb2-tuner.h"
  27. #include "pvrusb2-video-v4l.h"
  28. #ifdef CONFIG_VIDEO_PVRUSB2_24XXX
  29. #include "pvrusb2-cx2584x-v4l.h"
  30. #include "pvrusb2-wm8775.h"
  31. #endif
  32. #define trace_i2c(...) pvr2_trace(PVR2_TRACE_I2C,__VA_ARGS__)
  33. #define OP_STANDARD 0
  34. #define OP_BCSH 1
  35. #define OP_VOLUME 2
  36. #define OP_FREQ 3
  37. #define OP_AUDIORATE 4
  38. #define OP_SIZE 5
  39. #define OP_LOG 6
  40. static const struct pvr2_i2c_op * const ops[] = {
  41. [OP_STANDARD] = &pvr2_i2c_op_v4l2_standard,
  42. [OP_BCSH] = &pvr2_i2c_op_v4l2_bcsh,
  43. [OP_VOLUME] = &pvr2_i2c_op_v4l2_volume,
  44. [OP_FREQ] = &pvr2_i2c_op_v4l2_frequency,
  45. [OP_SIZE] = &pvr2_i2c_op_v4l2_size,
  46. [OP_LOG] = &pvr2_i2c_op_v4l2_log,
  47. };
  48. void pvr2_i2c_probe(struct pvr2_hdw *hdw,struct pvr2_i2c_client *cp)
  49. {
  50. int id;
  51. id = cp->client->driver->id;
  52. cp->ctl_mask = ((1 << OP_STANDARD) |
  53. (1 << OP_BCSH) |
  54. (1 << OP_VOLUME) |
  55. (1 << OP_FREQ) |
  56. (1 << OP_SIZE) |
  57. (1 << OP_LOG));
  58. if (id == I2C_DRIVERID_MSP3400) {
  59. if (pvr2_i2c_msp3400_setup(hdw,cp)) {
  60. return;
  61. }
  62. }
  63. if (id == I2C_DRIVERID_TUNER) {
  64. if (pvr2_i2c_tuner_setup(hdw,cp)) {
  65. return;
  66. }
  67. }
  68. #ifdef CONFIG_VIDEO_PVRUSB2_24XXX
  69. if (id == I2C_DRIVERID_CX25840) {
  70. if (pvr2_i2c_cx2584x_v4l_setup(hdw,cp)) {
  71. return;
  72. }
  73. }
  74. if (id == I2C_DRIVERID_WM8775) {
  75. if (pvr2_i2c_wm8775_setup(hdw,cp)) {
  76. return;
  77. }
  78. }
  79. #endif
  80. if (id == I2C_DRIVERID_SAA711X) {
  81. if (pvr2_i2c_decoder_v4l_setup(hdw,cp)) {
  82. return;
  83. }
  84. }
  85. }
  86. const struct pvr2_i2c_op *pvr2_i2c_get_op(unsigned int idx)
  87. {
  88. if (idx >= sizeof(ops)/sizeof(ops[0])) return 0;
  89. return ops[idx];
  90. }
  91. /*
  92. Stuff for Emacs to see, in order to encourage consistent editing style:
  93. *** Local Variables: ***
  94. *** mode: c ***
  95. *** fill-column: 75 ***
  96. *** tab-width: 8 ***
  97. *** c-basic-offset: 8 ***
  98. *** End: ***
  99. */