pvrusb2-devattr.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /*
  2. *
  3. *
  4. * Copyright (C) 2005 Mike Isely <isely@pobox.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. *
  19. */
  20. #ifndef __PVRUSB2_DEVATTR_H
  21. #define __PVRUSB2_DEVATTR_H
  22. #include <linux/mod_devicetable.h>
  23. #include <linux/videodev2.h>
  24. #ifdef CONFIG_VIDEO_PVRUSB2_DVB
  25. #include "pvrusb2-dvb.h"
  26. #endif
  27. /*
  28. This header defines structures used to describe attributes of a device.
  29. */
  30. #define PVR2_CLIENT_ID_NULL 0
  31. #define PVR2_CLIENT_ID_MSP3400 1
  32. #define PVR2_CLIENT_ID_CX25840 2
  33. #define PVR2_CLIENT_ID_SAA7115 3
  34. #define PVR2_CLIENT_ID_TUNER 4
  35. #define PVR2_CLIENT_ID_CS53L32A 5
  36. #define PVR2_CLIENT_ID_WM8775 6
  37. #define PVR2_CLIENT_ID_DEMOD 7
  38. struct pvr2_device_client_desc {
  39. /* One ovr PVR2_CLIENT_ID_xxxx */
  40. unsigned char module_id;
  41. /* Null-terminated array of I2C addresses to try in order
  42. initialize the module. It's safe to make this null terminated
  43. since we're never going to encounter an i2c device with an
  44. address of zero. If this is a null pointer or zero-length,
  45. then no I2C addresses have been specified, in which case we'll
  46. try some compiled in defaults for now. */
  47. unsigned char *i2c_address_list;
  48. };
  49. struct pvr2_device_client_table {
  50. const struct pvr2_device_client_desc *lst;
  51. unsigned char cnt;
  52. };
  53. struct pvr2_string_table {
  54. const char **lst;
  55. unsigned int cnt;
  56. };
  57. #define PVR2_ROUTING_SCHEME_HAUPPAUGE 0
  58. #define PVR2_ROUTING_SCHEME_GOTVIEW 1
  59. #define PVR2_ROUTING_SCHEME_ONAIR 2
  60. #define PVR2_DIGITAL_SCHEME_NONE 0
  61. #define PVR2_DIGITAL_SCHEME_HAUPPAUGE 1
  62. #define PVR2_DIGITAL_SCHEME_ONAIR 2
  63. #define PVR2_LED_SCHEME_NONE 0
  64. #define PVR2_LED_SCHEME_HAUPPAUGE 1
  65. #define PVR2_IR_SCHEME_NONE 0
  66. #define PVR2_IR_SCHEME_24XXX 1
  67. #define PVR2_IR_SCHEME_ZILOG 2
  68. /* This describes a particular hardware type (except for the USB device ID
  69. which must live in a separate structure due to environmental
  70. constraints). See the top of pvrusb2-hdw.c for where this is
  71. instantiated. */
  72. struct pvr2_device_desc {
  73. /* Single line text description of hardware */
  74. const char *description;
  75. /* Single token identifier for hardware */
  76. const char *shortname;
  77. /* List of additional client modules we need to load */
  78. struct pvr2_string_table client_modules;
  79. /* List of defined client modules we need to load */
  80. struct pvr2_device_client_table client_table;
  81. /* List of FX2 firmware file names we should search; if empty then
  82. FX2 firmware check / load is skipped and we assume the device
  83. was initialized from internal ROM. */
  84. struct pvr2_string_table fx2_firmware;
  85. #ifdef CONFIG_VIDEO_PVRUSB2_DVB
  86. /* callback functions to handle attachment of digital tuner & demod */
  87. const struct pvr2_dvb_props *dvb_props;
  88. #endif
  89. /* Initial standard bits to use for this device, if not zero.
  90. Anything set here is also implied as an available standard.
  91. Note: This is ignored if overridden on the module load line via
  92. the video_std module option. */
  93. v4l2_std_id default_std_mask;
  94. /* V4L tuner type ID to use with this device (only used if the
  95. driver could not discover the type any other way). */
  96. int default_tuner_type;
  97. /* Signal routing scheme used by device, contains one of
  98. PVR2_ROUTING_SCHEME_XXX. Schemes have to be defined as we
  99. encounter them. This is an arbitrary integer scheme id; its
  100. meaning is contained entirely within the driver and is
  101. interpreted by logic which must send commands to the chip-level
  102. drivers (search for things which touch this field). */
  103. unsigned char signal_routing_scheme;
  104. /* Indicates scheme for controlling device's LED (if any). The
  105. driver will turn on the LED when streaming is underway. This
  106. contains one of PVR2_LED_SCHEME_XXX. */
  107. unsigned char led_scheme;
  108. /* Control scheme to use if there is a digital tuner. This
  109. contains one of PVR2_DIGITAL_SCHEME_XXX. This is an arbitrary
  110. integer scheme id; its meaning is contained entirely within the
  111. driver and is interpreted by logic which must control the
  112. streaming pathway (search for things which touch this field). */
  113. unsigned char digital_control_scheme;
  114. /* If set, we don't bother trying to load cx23416 firmware. */
  115. unsigned int flag_skip_cx23416_firmware:1;
  116. /* If set, the encoder must be healthy in order for digital mode to
  117. work (otherwise we assume that digital streaming will work even
  118. if we fail to locate firmware for the encoder). If the device
  119. doesn't support digital streaming then this flag has no
  120. effect. */
  121. unsigned int flag_digital_requires_cx23416:1;
  122. /* Device has a hauppauge eeprom which we can interrogate. */
  123. unsigned int flag_has_hauppauge_rom:1;
  124. /* Device does not require a powerup command to be issued. */
  125. unsigned int flag_no_powerup:1;
  126. /* Device has a cx25840 - this enables special additional logic to
  127. handle it. */
  128. unsigned int flag_has_cx25840:1;
  129. /* Device has a wm8775 - this enables special additional logic to
  130. ensure that it is found. */
  131. unsigned int flag_has_wm8775:1;
  132. /* Indicate any specialized IR scheme that might need to be
  133. supported by this driver. If not set, then it is assumed that
  134. IR can work without help from the driver (which is frequently
  135. the case). This is otherwise set to one of
  136. PVR2_IR_SCHEME_xxxx. For "xxxx", the value "24XXX" indicates a
  137. Hauppauge 24xxx class device which has an FPGA-hosted IR
  138. receiver that can only be reached via FX2 command codes. In
  139. that case the pvrusb2 driver will emulate the behavior of the
  140. older 29xxx device's IR receiver (a "virtual" I2C chip) in terms
  141. of those command codes. For the value "ZILOG", we're dealing
  142. with an IR chip that must be taken out of reset via another FX2
  143. command code (which is the case for HVR-1950 devices). */
  144. unsigned int ir_scheme:2;
  145. /* These bits define which kinds of sources the device can handle.
  146. Note: Digital tuner presence is inferred by the
  147. digital_control_scheme enumeration. */
  148. unsigned int flag_has_fmradio:1; /* Has FM radio receiver */
  149. unsigned int flag_has_analogtuner:1; /* Has analog tuner */
  150. unsigned int flag_has_composite:1; /* Has composite input */
  151. unsigned int flag_has_svideo:1; /* Has s-video input */
  152. };
  153. extern struct usb_device_id pvr2_device_table[];
  154. #endif /* __PVRUSB2_HDW_INTERNAL_H */
  155. /*
  156. Stuff for Emacs to see, in order to encourage consistent editing style:
  157. *** Local Variables: ***
  158. *** mode: c ***
  159. *** fill-column: 75 ***
  160. *** tab-width: 8 ***
  161. *** c-basic-offset: 8 ***
  162. *** End: ***
  163. */