blob: d0bbbd76ba8e9ac0043f609dccb942910b89b788 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Lan Tianyu6e30d7c2013-01-11 20:10:38 +08002/*
3 * usb hub driver head file
4 *
5 * Copyright (C) 1999 Linus Torvalds
6 * Copyright (C) 1999 Johannes Erdfelt
7 * Copyright (C) 1999 Gregory P. Smith
8 * Copyright (C) 2001 Brad Hards (bhards@bigpond.net.au)
9 * Copyright (C) 2012 Intel Corp (tianyu.lan@intel.com)
10 *
11 * move struct usb_hub to this file.
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080012 */
13
14#include <linux/usb.h>
15#include <linux/usb/ch11.h>
16#include <linux/usb/hcd.h>
17#include "usb.h"
18
19struct usb_hub {
20 struct device *intfdev; /* the "interface" device */
21 struct usb_device *hdev;
22 struct kref kref;
23 struct urb *urb; /* for interrupt polling pipe */
24
25 /* buffer for urb ... with extra space in case of babble */
Alan Sternbdb6bc02013-01-24 15:04:13 -050026 u8 (*buffer)[8];
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080027 union {
28 struct usb_hub_status hub;
29 struct usb_port_status port;
30 } *status; /* buffer for status reports */
31 struct mutex status_mutex; /* for the status buffer */
32
33 int error; /* last reported error */
34 int nerrors; /* track consecutive errors */
35
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080036 unsigned long event_bits[1]; /* status change bitmask */
37 unsigned long change_bits[1]; /* ports with logical connect
38 status change */
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080039 unsigned long removed_bits[1]; /* ports with a "removed"
40 device present */
41 unsigned long wakeup_bits[1]; /* ports that have signaled
42 remote wakeup */
Dan Williamsd5c38342014-05-20 18:08:52 -070043 unsigned long power_bits[1]; /* ports that are powered */
44 unsigned long child_usage_bits[1]; /* ports powered on for
45 children */
Dan Williams3cd12f92014-05-29 12:58:46 -070046 unsigned long warm_reset_bits[1]; /* ports requesting warm
47 reset recovery */
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080048#if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
49#error event_bits[] is too short!
50#endif
51
52 struct usb_hub_descriptor *descriptor; /* class descriptor */
53 struct usb_tt tt; /* Transaction Translator */
54
55 unsigned mA_per_port; /* current for each child */
Alan Sterne583d9d2013-07-11 14:58:04 -040056#ifdef CONFIG_PM
57 unsigned wakeup_enabled_descendants;
58#endif
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080059
60 unsigned limited_power:1;
61 unsigned quiescing:1;
62 unsigned disconnected:1;
Alan Stern600856c2014-05-20 18:08:07 -070063 unsigned in_reset:1;
Hardik Gajjar8cfda0c2020-02-06 12:49:23 +010064 unsigned quirk_disable_autosuspend:1;
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080065
66 unsigned quirk_check_port_auto_suspend:1;
67
68 unsigned has_indicators:1;
69 u8 indicator[USB_MAXCHILDREN];
70 struct delayed_work leds;
71 struct delayed_work init_work;
Petr Mladek32a69582014-09-19 17:32:21 +020072 struct work_struct events;
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080073 struct usb_port **ports;
74};
75
76/**
77 * struct usb port - kernel's representation of a usb port
Rahul Bedarkar025d4432014-01-04 11:24:41 +053078 * @child: usb device attached to the port
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080079 * @dev: generic device interface
80 * @port_owner: port's owner
Dan Williamsd8521af2014-05-20 18:08:28 -070081 * @peer: related usb2 and usb3 ports (share the same connector)
Dan Williamse3d10502014-06-17 16:16:32 -070082 * @req: default pm qos request for hubs without port power control
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080083 * @connect_type: port's connect type
Dan Williams3bfd6592014-05-20 18:08:40 -070084 * @location: opaque representation of platform connector location
Dan Williams5c79a1e2014-05-20 18:09:26 -070085 * @status_lock: synchronize port_event() vs usb_port_{suspend|resume}
Lan Tianyu971fcd42013-01-23 04:26:29 +080086 * @portnum: port index num based one
Dan Williams7ad3c472014-05-20 18:08:57 -070087 * @is_superspeed cache super-speed status
Lu Baolu513072d2015-11-14 16:26:33 +080088 * @usb3_lpm_u1_permit: whether USB3 U1 LPM is permitted.
89 * @usb3_lpm_u2_permit: whether USB3 U2 LPM is permitted.
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080090 */
91struct usb_port {
92 struct usb_device *child;
93 struct device dev;
Valentina Manea9b6f0c42014-03-10 10:36:40 +020094 struct usb_dev_state *port_owner;
Dan Williamsd8521af2014-05-20 18:08:28 -070095 struct usb_port *peer;
Dan Williamse3d10502014-06-17 16:16:32 -070096 struct dev_pm_qos_request *req;
Lan Tianyu6e30d7c2013-01-11 20:10:38 +080097 enum usb_port_connect_type connect_type;
Dan Williams3bfd6592014-05-20 18:08:40 -070098 usb_port_location_t location;
Dan Williams5c79a1e2014-05-20 18:09:26 -070099 struct mutex status_lock;
Richard Leitner1cbd53c2018-03-20 11:17:13 +0100100 u32 over_current_count;
Lan Tianyu971fcd42013-01-23 04:26:29 +0800101 u8 portnum;
Nicolas Boichat25244222018-05-28 14:32:18 +0800102 u32 quirks;
Dan Williams7ad3c472014-05-20 18:08:57 -0700103 unsigned int is_superspeed:1;
Lu Baolu513072d2015-11-14 16:26:33 +0800104 unsigned int usb3_lpm_u1_permit:1;
105 unsigned int usb3_lpm_u2_permit:1;
Lan Tianyu6e30d7c2013-01-11 20:10:38 +0800106};
107
108#define to_usb_port(_dev) \
109 container_of(_dev, struct usb_port, dev)
110
111extern int usb_hub_create_port_device(struct usb_hub *hub,
112 int port1);
113extern void usb_hub_remove_port_device(struct usb_hub *hub,
114 int port1);
Mathias Nyman41341262013-06-18 17:28:48 +0300115extern int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
Lan Tianyu971fcd42013-01-23 04:26:29 +0800116 int port1, bool set);
Lan Tianyuad493e52013-01-23 04:26:30 +0800117extern struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev);
118extern int hub_port_debounce(struct usb_hub *hub, int port1,
119 bool must_be_connected);
120extern int usb_clear_port_feature(struct usb_device *hdev,
121 int port1, int feature);
122
Dan Williams9262c192014-05-20 18:08:12 -0700123static inline bool hub_is_port_power_switchable(struct usb_hub *hub)
124{
125 __le16 hcs;
126
127 if (!hub)
128 return false;
129 hcs = hub->descriptor->wHubCharacteristics;
130 return (le16_to_cpu(hcs) & HUB_CHAR_LPSM) < HUB_CHAR_NO_LPSM;
131}
132
Dan Williams7ad3c472014-05-20 18:08:57 -0700133static inline int hub_is_superspeed(struct usb_device *hdev)
134{
135 return hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS;
136}
137
Mathias Nyman0cdd49a2015-12-10 09:59:29 +0200138static inline int hub_is_superspeedplus(struct usb_device *hdev)
139{
140 return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS &&
141 le16_to_cpu(hdev->descriptor.bcdUSB) >= 0x0310 &&
142 hdev->bos->ssp_cap);
143}
144
Dan Williams7ad3c472014-05-20 18:08:57 -0700145static inline unsigned hub_power_on_good_delay(struct usb_hub *hub)
146{
147 unsigned delay = hub->descriptor->bPwrOn2PwrGood * 2;
148
149 /* Wait at least 100 msec for power to become stable */
150 return max(delay, 100U);
151}
152
Lan Tianyuad493e52013-01-23 04:26:30 +0800153static inline int hub_port_debounce_be_connected(struct usb_hub *hub,
154 int port1)
155{
156 return hub_port_debounce(hub, port1, true);
157}
158
159static inline int hub_port_debounce_be_stable(struct usb_hub *hub,
160 int port1)
161{
162 return hub_port_debounce(hub, port1, false);
163}