pvrusb2-devattr.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. /*
  25. This header defines structures used to describe attributes of a device.
  26. */
  27. struct pvr2_string_table {
  28. const char **lst;
  29. unsigned int cnt;
  30. };
  31. #define PVR2_ROUTING_SCHEME_HAUPPAUGE 0
  32. /* This describes a particular hardware type (except for the USB device ID
  33. which must live in a separate structure due to environmental
  34. constraints). See the top of pvrusb2-hdw.c for where this is
  35. instantiated. */
  36. struct pvr2_device_desc {
  37. /* Single line text description of hardware */
  38. const char *description;
  39. /* Single token identifier for hardware */
  40. const char *shortname;
  41. /* List of additional client modules we need to load */
  42. struct pvr2_string_table client_modules;
  43. /* List of FX2 firmware file names we should search; if empty then
  44. FX2 firmware check / load is skipped and we assume the device
  45. was initialized from internal ROM. */
  46. struct pvr2_string_table fx2_firmware;
  47. /* Signal routing scheme used by device, contains one of
  48. PVR2_ROUTING_SCHEME_XXX. Schemes have to be defined as we
  49. encounter them. This is an arbitrary integer scheme id; its
  50. meaning is contained entirely within the driver and is
  51. interpreted by logic which must send commands to the chip-level
  52. drivers (search for things which touch this field). */
  53. unsigned int signal_routing_scheme;
  54. /* V4L tuner type ID to use with this device (only used if the
  55. driver could not discover the type any other way). */
  56. int default_tuner_type;
  57. /* If set, we don't bother trying to load cx23416 firmware. */
  58. char flag_skip_cx23416_firmware;
  59. /* Device has a hauppauge eeprom which we can interrogate. */
  60. char flag_has_hauppauge_rom;
  61. /* Device does not require a powerup command to be issued. */
  62. char flag_no_powerup;
  63. /* Device has a cx25840 - this enables special additional logic to
  64. handle it. */
  65. char flag_has_cx25840;
  66. /* Device has a wm8775 - this enables special additional logic to
  67. ensure that it is found. */
  68. char flag_has_wm8775;
  69. };
  70. extern const struct pvr2_device_desc pvr2_device_descriptions[];
  71. extern struct usb_device_id pvr2_device_table[];
  72. extern const unsigned int pvr2_device_count;
  73. #endif /* __PVRUSB2_HDW_INTERNAL_H */
  74. /*
  75. Stuff for Emacs to see, in order to encourage consistent editing style:
  76. *** Local Variables: ***
  77. *** mode: c ***
  78. *** fill-column: 75 ***
  79. *** tab-width: 8 ***
  80. *** c-basic-offset: 8 ***
  81. *** End: ***
  82. */