pvrusb2-devattr.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. /* This describes a particular hardware type (except for the USB device ID
  32. which must live in a separate structure due to environmental
  33. constraints). See the top of pvrusb2-hdw.c for where this is
  34. instantiated. */
  35. struct pvr2_device_desc {
  36. /* Single line text description of hardware */
  37. const char *description;
  38. /* Single token identifier for hardware */
  39. const char *shortname;
  40. /* List of additional client modules we need to load */
  41. struct pvr2_string_table client_modules;
  42. /* List of FX2 firmware file names we should search; if empty then
  43. FX2 firmware check / load is skipped and we assume the device
  44. was initialized from internal ROM. */
  45. struct pvr2_string_table fx2_firmware;
  46. /* V4L tuner type ID to use with this device (only used if the
  47. driver could not discover the type any other way). */
  48. int default_tuner_type;
  49. /* If set, we don't bother trying to load cx23416 firmware. */
  50. char flag_skip_cx23416_firmware;
  51. /* Device has a hauppauge eeprom which we can interrogate. */
  52. char flag_has_hauppauge_rom;
  53. /* Device does not require a powerup command to be issued. */
  54. char flag_no_powerup;
  55. /* Device has a cx25840 - this enables special additional logic to
  56. handle it. */
  57. char flag_has_cx25840;
  58. /* Device has a wm8775 - this enables special additional logic to
  59. ensure that it is found. */
  60. char flag_has_wm8775;
  61. };
  62. extern const struct pvr2_device_desc pvr2_device_descriptions[];
  63. extern struct usb_device_id pvr2_device_table[];
  64. extern const unsigned int pvr2_device_count;
  65. #endif /* __PVRUSB2_HDW_INTERNAL_H */
  66. /*
  67. Stuff for Emacs to see, in order to encourage consistent editing style:
  68. *** Local Variables: ***
  69. *** mode: c ***
  70. *** fill-column: 75 ***
  71. *** tab-width: 8 ***
  72. *** c-basic-offset: 8 ***
  73. *** End: ***
  74. */