pvrusb2-devattr.h 5.1 KB

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