pvrusb2-devattr.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. #ifndef __PVRUSB2_DEVATTR_H
  22. #define __PVRUSB2_DEVATTR_H
  23. #include <linux/mod_devicetable.h>
  24. #include <linux/videodev2.h>
  25. /*
  26. This header defines structures used to describe attributes of a device.
  27. */
  28. struct pvr2_string_table {
  29. const char **lst;
  30. unsigned int cnt;
  31. };
  32. #define PVR2_ROUTING_SCHEME_HAUPPAUGE 0
  33. #define PVR2_ROUTING_SCHEME_GOTVIEW 1
  34. #define PVR2_DIGITAL_SCHEME_NONE 0
  35. #define PVR2_DIGITAL_SCHEME_HAUPPAUGE 1
  36. #define PVR2_DIGITAL_SCHEME_ONAIR 2
  37. /* This describes a particular hardware type (except for the USB device ID
  38. which must live in a separate structure due to environmental
  39. constraints). See the top of pvrusb2-hdw.c for where this is
  40. instantiated. */
  41. struct pvr2_device_desc {
  42. /* Single line text description of hardware */
  43. const char *description;
  44. /* Single token identifier for hardware */
  45. const char *shortname;
  46. /* List of additional client modules we need to load */
  47. struct pvr2_string_table client_modules;
  48. /* List of FX2 firmware file names we should search; if empty then
  49. FX2 firmware check / load is skipped and we assume the device
  50. was initialized from internal ROM. */
  51. struct pvr2_string_table fx2_firmware;
  52. /* Signal routing scheme used by device, contains one of
  53. PVR2_ROUTING_SCHEME_XXX. Schemes have to be defined as we
  54. encounter them. This is an arbitrary integer scheme id; its
  55. meaning is contained entirely within the driver and is
  56. interpreted by logic which must send commands to the chip-level
  57. drivers (search for things which touch this field). */
  58. unsigned int signal_routing_scheme;
  59. /* Control scheme to use if there is a digital tuner. This
  60. contains one of PVR2_DIGITAL_SCHEME_XXX. This is an arbitrary
  61. integer scheme id; its meaning is contained entirely within the
  62. driver and is interpreted by logic which must control the
  63. streaming pathway (search for things which touch this field). */
  64. unsigned int digital_control_scheme;
  65. /* V4L tuner type ID to use with this device (only used if the
  66. driver could not discover the type any other way). */
  67. int default_tuner_type;
  68. /* Initial standard bits to use for this device, if not zero.
  69. Anything set here is also implied as an available standard.
  70. Note: This is ignored if overridden on the module load line via
  71. the video_std module option. */
  72. v4l2_std_id default_std_mask;
  73. /* If set, we don't bother trying to load cx23416 firmware. */
  74. char flag_skip_cx23416_firmware;
  75. /* Device has a hauppauge eeprom which we can interrogate. */
  76. char flag_has_hauppauge_rom;
  77. /* Device does not require a powerup command to be issued. */
  78. char flag_no_powerup;
  79. /* Device has a cx25840 - this enables special additional logic to
  80. handle it. */
  81. char flag_has_cx25840;
  82. /* Device has a wm8775 - this enables special additional logic to
  83. ensure that it is found. */
  84. char flag_has_wm8775;
  85. /* Device has IR hardware that can be faked into looking like a
  86. normal Hauppauge i2c IR receiver. This is currently very
  87. specific to the 24xxx device, where Hauppauge had replaced their
  88. 'standard' I2C IR receiver with a bunch of FPGA logic controlled
  89. directly via the FX2. Turning this on tells the pvrusb2 driver
  90. to virtualize the presence of the non-existant IR receiver chip and
  91. implement the virtual receiver in terms of appropriate FX2
  92. commands. */
  93. char flag_has_hauppauge_custom_ir;
  94. /* These bits define which kinds of sources the device can handle.
  95. Note: Digital tuner presence is inferred by the
  96. digital_control_scheme enumeration. */
  97. char flag_has_fmradio; /* Has FM radio receiver */
  98. char flag_has_analogtuner; /* Has analog tuner */
  99. char flag_has_composite; /* Has composite input */
  100. char flag_has_svideo; /* Has s-video input */
  101. };
  102. extern struct usb_device_id pvr2_device_table[];
  103. #endif /* __PVRUSB2_HDW_INTERNAL_H */
  104. /*
  105. Stuff for Emacs to see, in order to encourage consistent editing style:
  106. *** Local Variables: ***
  107. *** mode: c ***
  108. *** fill-column: 75 ***
  109. *** tab-width: 8 ***
  110. *** c-basic-offset: 8 ***
  111. *** End: ***
  112. */