pvrusb2-devattr.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. *
  3. * $Id$
  4. *
  5. * Copyright (C) 2007 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. /*
  22. This source file should encompass ALL per-device type information for the
  23. driver. To define a new device, add elements to the pvr2_device_table and
  24. pvr2_device_desc structures.
  25. */
  26. #include "pvrusb2-devattr.h"
  27. #include <linux/usb.h>
  28. /* All this is needed in order to pull in tuner type ids... */
  29. #include <linux/i2c.h>
  30. #include <linux/videodev2.h>
  31. #include <media/tuner.h>
  32. /* Known major hardware variants, keyed from device ID */
  33. #define PVR2_HDW_TYPE_29XXX 0
  34. #define PVR2_HDW_TYPE_24XXX 1
  35. #define PVR2_HDW_TYPE_GOTVIEW_2 2
  36. struct usb_device_id pvr2_device_table[] = {
  37. [PVR2_HDW_TYPE_29XXX] = { USB_DEVICE(0x2040, 0x2900) },
  38. [PVR2_HDW_TYPE_24XXX] = { USB_DEVICE(0x2040, 0x2400) },
  39. [PVR2_HDW_TYPE_GOTVIEW_2] = { USB_DEVICE(0x1164, 0x0622) },
  40. { }
  41. };
  42. /* Names of other client modules to request for 24xxx model hardware */
  43. static const char *pvr2_client_24xxx[] = {
  44. "cx25840",
  45. "tuner",
  46. "wm8775",
  47. };
  48. /* Names of other client modules to request for 29xxx model hardware */
  49. static const char *pvr2_client_29xxx[] = {
  50. "msp3400",
  51. "saa7115",
  52. "tuner",
  53. };
  54. // Names of other client modules to request for Gotview 2 model hardware
  55. static const char *pvr2_client_gotview_2[] = {
  56. "cx25840",
  57. "tuner",
  58. };
  59. /* Firmware file name(s) for 29xxx devices */
  60. static const char *pvr2_fw1_names_29xxx[] = {
  61. "v4l-pvrusb2-29xxx-01.fw",
  62. };
  63. /* Firmware file name(s) for 29xxx devices */
  64. static const char *pvr2_fw1_names_24xxx[] = {
  65. "v4l-pvrusb2-24xxx-01.fw",
  66. };
  67. const struct pvr2_device_desc pvr2_device_descriptions[] = {
  68. [PVR2_HDW_TYPE_29XXX] = {
  69. .description = "WinTV PVR USB2 Model Category 29xxxx",
  70. .shortname = "29xxx",
  71. .client_modules.lst = pvr2_client_29xxx,
  72. .client_modules.cnt = ARRAY_SIZE(pvr2_client_29xxx),
  73. .fx2_firmware.lst = pvr2_fw1_names_29xxx,
  74. .fx2_firmware.cnt = ARRAY_SIZE(pvr2_fw1_names_29xxx),
  75. .flag_has_hauppauge_rom = !0,
  76. .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE,
  77. },
  78. [PVR2_HDW_TYPE_24XXX] = {
  79. .description = "WinTV PVR USB2 Model Category 24xxxx",
  80. .shortname = "24xxx",
  81. .client_modules.lst = pvr2_client_24xxx,
  82. .client_modules.cnt = ARRAY_SIZE(pvr2_client_24xxx),
  83. .fx2_firmware.lst = pvr2_fw1_names_24xxx,
  84. .fx2_firmware.cnt = ARRAY_SIZE(pvr2_fw1_names_24xxx),
  85. .flag_has_cx25840 = !0,
  86. .flag_has_wm8775 = !0,
  87. .flag_has_hauppauge_rom = !0,
  88. .flag_has_hauppauge_custom_ir = !0,
  89. .signal_routing_scheme = PVR2_ROUTING_SCHEME_HAUPPAUGE,
  90. },
  91. [PVR2_HDW_TYPE_GOTVIEW_2] = {
  92. .description = "Gotview USB 2.0 DVD 2",
  93. .shortname = "gv2",
  94. .client_modules.lst = pvr2_client_gotview_2,
  95. .client_modules.cnt = ARRAY_SIZE(pvr2_client_gotview_2),
  96. .default_tuner_type = TUNER_PHILIPS_FM1216ME_MK3,
  97. .signal_routing_scheme = PVR2_ROUTING_SCHEME_GOTVIEW,
  98. },
  99. };
  100. const unsigned int pvr2_device_count = ARRAY_SIZE(pvr2_device_descriptions);
  101. MODULE_DEVICE_TABLE(usb, pvr2_device_table);
  102. /*
  103. Stuff for Emacs to see, in order to encourage consistent editing style:
  104. *** Local Variables: ***
  105. *** mode: c ***
  106. *** fill-column: 75 ***
  107. *** tab-width: 8 ***
  108. *** c-basic-offset: 8 ***
  109. *** End: ***
  110. */