hub.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * usb hub driver head file
  3. *
  4. * Copyright (C) 1999 Linus Torvalds
  5. * Copyright (C) 1999 Johannes Erdfelt
  6. * Copyright (C) 1999 Gregory P. Smith
  7. * Copyright (C) 2001 Brad Hards (bhards@bigpond.net.au)
  8. * Copyright (C) 2012 Intel Corp (tianyu.lan@intel.com)
  9. *
  10. * move struct usb_hub to this file.
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License version 2 as
  14. * published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful, but
  17. * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  18. * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  19. * for more details.
  20. */
  21. #include <linux/usb.h>
  22. #include <linux/usb/ch11.h>
  23. #include <linux/usb/hcd.h>
  24. #include "usb.h"
  25. struct usb_hub {
  26. struct device *intfdev; /* the "interface" device */
  27. struct usb_device *hdev;
  28. struct kref kref;
  29. struct urb *urb; /* for interrupt polling pipe */
  30. /* buffer for urb ... with extra space in case of babble */
  31. char (*buffer)[8];
  32. union {
  33. struct usb_hub_status hub;
  34. struct usb_port_status port;
  35. } *status; /* buffer for status reports */
  36. struct mutex status_mutex; /* for the status buffer */
  37. int error; /* last reported error */
  38. int nerrors; /* track consecutive errors */
  39. struct list_head event_list; /* hubs w/data or errs ready */
  40. unsigned long event_bits[1]; /* status change bitmask */
  41. unsigned long change_bits[1]; /* ports with logical connect
  42. status change */
  43. unsigned long busy_bits[1]; /* ports being reset or
  44. resumed */
  45. unsigned long removed_bits[1]; /* ports with a "removed"
  46. device present */
  47. unsigned long wakeup_bits[1]; /* ports that have signaled
  48. remote wakeup */
  49. #if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
  50. #error event_bits[] is too short!
  51. #endif
  52. struct usb_hub_descriptor *descriptor; /* class descriptor */
  53. struct usb_tt tt; /* Transaction Translator */
  54. unsigned mA_per_port; /* current for each child */
  55. unsigned limited_power:1;
  56. unsigned quiescing:1;
  57. unsigned disconnected:1;
  58. unsigned quirk_check_port_auto_suspend:1;
  59. unsigned has_indicators:1;
  60. u8 indicator[USB_MAXCHILDREN];
  61. struct delayed_work leds;
  62. struct delayed_work init_work;
  63. struct usb_port **ports;
  64. };
  65. /**
  66. * struct usb port - kernel's representation of a usb port
  67. * @child: usb device attatched to the port
  68. * @dev: generic device interface
  69. * @port_owner: port's owner
  70. * @connect_type: port's connect type
  71. */
  72. struct usb_port {
  73. struct usb_device *child;
  74. struct device dev;
  75. struct dev_state *port_owner;
  76. enum usb_port_connect_type connect_type;
  77. };
  78. #define to_usb_port(_dev) \
  79. container_of(_dev, struct usb_port, dev)
  80. extern int usb_hub_create_port_device(struct usb_hub *hub,
  81. int port1);
  82. extern void usb_hub_remove_port_device(struct usb_hub *hub,
  83. int port1);