blob: 02b14e91ae6c5a586417dec05d558dbe1cace35a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * dummy_hcd.c -- Dummy/Loopback USB host and device emulator driver.
3 *
4 * Maintainer: Alan Stern <stern@rowland.harvard.edu>
5 *
6 * Copyright (C) 2003 David Brownell
7 * Copyright (C) 2003-2005 Alan Stern
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
15
16/*
17 * This exposes a device side "USB gadget" API, driven by requests to a
18 * Linux-USB host controller driver. USB traffic is simulated; there's
19 * no need for USB hardware. Use this with two other drivers:
20 *
21 * - Gadget driver, responding to requests (slave);
22 * - Host-side device driver, as already familiar in Linux.
23 *
24 * Having this all in one kernel can help some stages of development,
25 * bypassing some hardware (and driver) issues. UML could help too.
26 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/kernel.h>
30#include <linux/delay.h>
31#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/errno.h>
34#include <linux/init.h>
35#include <linux/timer.h>
36#include <linux/list.h>
37#include <linux/interrupt.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010038#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/usb.h>
David Brownell9454a572007-10-04 18:05:17 -070040#include <linux/usb/gadget.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020041#include <linux/usb/hcd.h>
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +010042#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <asm/byteorder.h>
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +010045#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/unaligned.h>
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#define DRIVER_DESC "USB Host+Gadget Emulator"
Alan Stern391eca92005-05-10 15:34:16 -040050#define DRIVER_VERSION "02 May 2005"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Alan Sterncaf29f62007-12-06 11:10:39 -050052#define POWER_BUDGET 500 /* in mA; use 8 for low-power port testing */
53
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +010054static const char driver_name[] = "dummy_hcd";
55static const char driver_desc[] = "USB Host+Gadget Emulator";
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +010057static const char gadget_name[] = "dummy_udc";
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +010059MODULE_DESCRIPTION(DRIVER_DESC);
60MODULE_AUTHOR("David Brownell");
61MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +030063struct dummy_hcd_module_parameters {
64 bool is_super_speed;
Tatyana Brokhman7eca4c52011-06-29 16:41:53 +030065 bool is_high_speed;
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +010066 unsigned int num;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +030067};
68
69static struct dummy_hcd_module_parameters mod_data = {
Tatyana Brokhman7eca4c52011-06-29 16:41:53 +030070 .is_super_speed = false,
71 .is_high_speed = true,
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +010072 .num = 1,
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +030073};
74module_param_named(is_super_speed, mod_data.is_super_speed, bool, S_IRUGO);
75MODULE_PARM_DESC(is_super_speed, "true to simulate SuperSpeed connection");
Tatyana Brokhman7eca4c52011-06-29 16:41:53 +030076module_param_named(is_high_speed, mod_data.is_high_speed, bool, S_IRUGO);
77MODULE_PARM_DESC(is_high_speed, "true to simulate HighSpeed connection");
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +010078module_param_named(num, mod_data.num, uint, S_IRUGO);
79MODULE_PARM_DESC(num, "number of emulated controllers");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/*-------------------------------------------------------------------------*/
81
82/* gadget side driver data structres */
83struct dummy_ep {
84 struct list_head queue;
85 unsigned long last_io; /* jiffies timestamp */
86 struct usb_gadget *gadget;
87 const struct usb_endpoint_descriptor *desc;
88 struct usb_ep ep;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +010089 unsigned halted:1;
90 unsigned wedged:1;
91 unsigned already_seen:1;
92 unsigned setup_stage:1;
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +010093 unsigned stream_en:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094};
95
96struct dummy_request {
97 struct list_head queue; /* ep's requests */
98 struct usb_request req;
99};
100
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100101static inline struct dummy_ep *usb_ep_to_dummy_ep(struct usb_ep *_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100103 return container_of(_ep, struct dummy_ep, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106static inline struct dummy_request *usb_request_to_dummy_request
107 (struct usb_request *_req)
108{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100109 return container_of(_req, struct dummy_request, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
112/*-------------------------------------------------------------------------*/
113
114/*
115 * Every device has ep0 for control requests, plus up to 30 more endpoints,
116 * in one of two types:
117 *
118 * - Configurable: direction (in/out), type (bulk, iso, etc), and endpoint
119 * number can be changed. Names like "ep-a" are used for this type.
120 *
121 * - Fixed Function: in other cases. some characteristics may be mutable;
122 * that'd be hardware-specific. Names like "ep12out-bulk" are used.
123 *
124 * Gadget drivers are responsible for not setting up conflicting endpoint
125 * configurations, illegal or unsupported packet lengths, and so on.
126 */
127
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100128static const char ep0name[] = "ep0";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Robert Baldyga7a3b8e72015-07-31 16:00:24 +0200130static const struct {
131 const char *name;
132 const struct usb_ep_caps caps;
133} ep_info[] = {
134#define EP_INFO(_name, _caps) \
135 { \
136 .name = _name, \
137 .caps = _caps, \
138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Robert Baldyga7a3b8e72015-07-31 16:00:24 +0200140 /* everyone has ep0 */
141 EP_INFO(ep0name,
142 USB_EP_CAPS(USB_EP_CAPS_TYPE_CONTROL, USB_EP_CAPS_DIR_ALL)),
Sebastian Andrzej Siewior1d166382012-11-20 13:23:15 +0100143 /* act like a pxa250: fifteen fixed function endpoints */
Robert Baldyga7a3b8e72015-07-31 16:00:24 +0200144 EP_INFO("ep1in-bulk",
145 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_IN)),
146 EP_INFO("ep2out-bulk",
147 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_OUT)),
148 EP_INFO("ep3in-iso",
149 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_IN)),
150 EP_INFO("ep4out-iso",
151 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_OUT)),
152 EP_INFO("ep5in-int",
153 USB_EP_CAPS(USB_EP_CAPS_TYPE_INT, USB_EP_CAPS_DIR_IN)),
154 EP_INFO("ep6in-bulk",
155 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_IN)),
156 EP_INFO("ep7out-bulk",
157 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_OUT)),
158 EP_INFO("ep8in-iso",
159 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_IN)),
160 EP_INFO("ep9out-iso",
161 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_OUT)),
162 EP_INFO("ep10in-int",
163 USB_EP_CAPS(USB_EP_CAPS_TYPE_INT, USB_EP_CAPS_DIR_IN)),
164 EP_INFO("ep11in-bulk",
165 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_IN)),
166 EP_INFO("ep12out-bulk",
167 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_OUT)),
168 EP_INFO("ep13in-iso",
169 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_IN)),
170 EP_INFO("ep14out-iso",
171 USB_EP_CAPS(USB_EP_CAPS_TYPE_ISO, USB_EP_CAPS_DIR_OUT)),
172 EP_INFO("ep15in-int",
173 USB_EP_CAPS(USB_EP_CAPS_TYPE_INT, USB_EP_CAPS_DIR_IN)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 /* or like sa1100: two fixed function endpoints */
Robert Baldyga7a3b8e72015-07-31 16:00:24 +0200175 EP_INFO("ep1out-bulk",
176 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_OUT)),
177 EP_INFO("ep2in-bulk",
178 USB_EP_CAPS(USB_EP_CAPS_TYPE_BULK, USB_EP_CAPS_DIR_IN)),
Sebastian Andrzej Siewior1d166382012-11-20 13:23:15 +0100179 /* and now some generic EPs so we have enough in multi config */
Robert Baldyga7a3b8e72015-07-31 16:00:24 +0200180 EP_INFO("ep3out",
181 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
182 EP_INFO("ep4in",
183 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_IN)),
184 EP_INFO("ep5out",
185 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
186 EP_INFO("ep6out",
187 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
188 EP_INFO("ep7in",
189 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_IN)),
190 EP_INFO("ep8out",
191 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
192 EP_INFO("ep9in",
193 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_IN)),
194 EP_INFO("ep10out",
195 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
196 EP_INFO("ep11out",
197 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
198 EP_INFO("ep12in",
199 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_IN)),
200 EP_INFO("ep13out",
201 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
202 EP_INFO("ep14in",
203 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_IN)),
204 EP_INFO("ep15out",
205 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
206
207#undef EP_INFO
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
Robert Baldyga7a3b8e72015-07-31 16:00:24 +0200209
210#define DUMMY_ENDPOINTS ARRAY_SIZE(ep_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Alan Sternd9b76252005-05-03 16:15:43 -0400212/*-------------------------------------------------------------------------*/
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#define FIFO_SIZE 64
215
216struct urbp {
217 struct urb *urb;
218 struct list_head urbp_list;
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +0100219 struct sg_mapping_iter miter;
220 u32 miter_started;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221};
222
Alan Stern391eca92005-05-10 15:34:16 -0400223
224enum dummy_rh_state {
225 DUMMY_RH_RESET,
226 DUMMY_RH_SUSPENDED,
227 DUMMY_RH_RUNNING
228};
229
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300230struct dummy_hcd {
231 struct dummy *dum;
232 enum dummy_rh_state rh_state;
233 struct timer_list timer;
234 u32 port_status;
235 u32 old_status;
236 unsigned long re_timeout;
237
238 struct usb_device *udev;
239 struct list_head urbp_list;
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +0100240 u32 stream_en_ep;
241 u8 num_stream[30 / 2];
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300242
243 unsigned active:1;
244 unsigned old_active:1;
245 unsigned resuming:1;
246};
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248struct dummy {
249 spinlock_t lock;
250
251 /*
252 * SLAVE/GADGET side support
253 */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100254 struct dummy_ep ep[DUMMY_ENDPOINTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 int address;
256 struct usb_gadget gadget;
257 struct usb_gadget_driver *driver;
258 struct dummy_request fifo_req;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100259 u8 fifo_buf[FIFO_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 u16 devstatus;
Alan Stern391eca92005-05-10 15:34:16 -0400261 unsigned udc_suspended:1;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400262 unsigned pullup:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 /*
265 * MASTER/HOST side support
266 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300267 struct dummy_hcd *hs_hcd;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300268 struct dummy_hcd *ss_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300271static inline struct dummy_hcd *hcd_to_dummy_hcd(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300273 return (struct dummy_hcd *) (hcd->hcd_priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300276static inline struct usb_hcd *dummy_hcd_to_hcd(struct dummy_hcd *dum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 return container_of((void *) dum, struct usb_hcd, hcd_priv);
279}
280
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300281static inline struct device *dummy_dev(struct dummy_hcd *dum)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300283 return dummy_hcd_to_hcd(dum)->self.controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100286static inline struct device *udc_dev(struct dummy *dum)
Alan Sternd9b76252005-05-03 16:15:43 -0400287{
288 return dum->gadget.dev.parent;
289}
290
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100291static inline struct dummy *ep_to_dummy(struct dummy_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100293 return container_of(ep->gadget, struct dummy, gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300296static inline struct dummy_hcd *gadget_to_dummy_hcd(struct usb_gadget *gadget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300298 struct dummy *dum = container_of(gadget, struct dummy, gadget);
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300299 if (dum->gadget.speed == USB_SPEED_SUPER)
300 return dum->ss_hcd;
301 else
302 return dum->hs_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100305static inline struct dummy *gadget_dev_to_dummy(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100307 return container_of(dev, struct dummy, gadget.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310/*-------------------------------------------------------------------------*/
311
Alan Sternf1c39fa2005-05-03 16:24:04 -0400312/* SLAVE/GADGET SIDE UTILITY ROUTINES */
313
314/* called with spinlock held */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100315static void nuke(struct dummy *dum, struct dummy_ep *ep)
Alan Sternf1c39fa2005-05-03 16:24:04 -0400316{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100317 while (!list_empty(&ep->queue)) {
Alan Sternf1c39fa2005-05-03 16:24:04 -0400318 struct dummy_request *req;
319
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100320 req = list_entry(ep->queue.next, struct dummy_request, queue);
321 list_del_init(&req->queue);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400322 req->req.status = -ESHUTDOWN;
323
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100324 spin_unlock(&dum->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +0200325 usb_gadget_giveback_request(&ep->ep, &req->req);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100326 spin_lock(&dum->lock);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400327 }
328}
329
330/* caller must hold lock */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100331static void stop_activity(struct dummy *dum)
Alan Sternf1c39fa2005-05-03 16:24:04 -0400332{
333 struct dummy_ep *ep;
334
335 /* prevent any more requests */
336 dum->address = 0;
337
338 /* The timer is left running so that outstanding URBs can fail */
339
340 /* nuke any pending requests first, so driver i/o is quiesced */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100341 list_for_each_entry(ep, &dum->gadget.ep_list, ep.ep_list)
342 nuke(dum, ep);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400343
344 /* driver now does any non-usb quiescing necessary */
345}
346
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300347/**
348 * set_link_state_by_speed() - Sets the current state of the link according to
349 * the hcd speed
350 * @dum_hcd: pointer to the dummy_hcd structure to update the link state for
351 *
352 * This function updates the port_status according to the link state and the
353 * speed of the hcd.
354 */
355static void set_link_state_by_speed(struct dummy_hcd *dum_hcd)
356{
357 struct dummy *dum = dum_hcd->dum;
358
359 if (dummy_hcd_to_hcd(dum_hcd)->speed == HCD_USB3) {
360 if ((dum_hcd->port_status & USB_SS_PORT_STAT_POWER) == 0) {
361 dum_hcd->port_status = 0;
362 } else if (!dum->pullup || dum->udc_suspended) {
363 /* UDC suspend must cause a disconnect */
364 dum_hcd->port_status &= ~(USB_PORT_STAT_CONNECTION |
365 USB_PORT_STAT_ENABLE);
366 if ((dum_hcd->old_status &
367 USB_PORT_STAT_CONNECTION) != 0)
368 dum_hcd->port_status |=
369 (USB_PORT_STAT_C_CONNECTION << 16);
370 } else {
371 /* device is connected and not suspended */
372 dum_hcd->port_status |= (USB_PORT_STAT_CONNECTION |
373 USB_PORT_STAT_SPEED_5GBPS) ;
374 if ((dum_hcd->old_status &
375 USB_PORT_STAT_CONNECTION) == 0)
376 dum_hcd->port_status |=
377 (USB_PORT_STAT_C_CONNECTION << 16);
378 if ((dum_hcd->port_status &
379 USB_PORT_STAT_ENABLE) == 1 &&
380 (dum_hcd->port_status &
381 USB_SS_PORT_LS_U0) == 1 &&
382 dum_hcd->rh_state != DUMMY_RH_SUSPENDED)
383 dum_hcd->active = 1;
384 }
385 } else {
386 if ((dum_hcd->port_status & USB_PORT_STAT_POWER) == 0) {
387 dum_hcd->port_status = 0;
388 } else if (!dum->pullup || dum->udc_suspended) {
389 /* UDC suspend must cause a disconnect */
390 dum_hcd->port_status &= ~(USB_PORT_STAT_CONNECTION |
391 USB_PORT_STAT_ENABLE |
392 USB_PORT_STAT_LOW_SPEED |
393 USB_PORT_STAT_HIGH_SPEED |
394 USB_PORT_STAT_SUSPEND);
395 if ((dum_hcd->old_status &
396 USB_PORT_STAT_CONNECTION) != 0)
397 dum_hcd->port_status |=
398 (USB_PORT_STAT_C_CONNECTION << 16);
399 } else {
400 dum_hcd->port_status |= USB_PORT_STAT_CONNECTION;
401 if ((dum_hcd->old_status &
402 USB_PORT_STAT_CONNECTION) == 0)
403 dum_hcd->port_status |=
404 (USB_PORT_STAT_C_CONNECTION << 16);
405 if ((dum_hcd->port_status & USB_PORT_STAT_ENABLE) == 0)
406 dum_hcd->port_status &= ~USB_PORT_STAT_SUSPEND;
407 else if ((dum_hcd->port_status &
408 USB_PORT_STAT_SUSPEND) == 0 &&
409 dum_hcd->rh_state != DUMMY_RH_SUSPENDED)
410 dum_hcd->active = 1;
411 }
412 }
413}
414
Alan Sternf1c39fa2005-05-03 16:24:04 -0400415/* caller must hold lock */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300416static void set_link_state(struct dummy_hcd *dum_hcd)
Alan Sternf1c39fa2005-05-03 16:24:04 -0400417{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300418 struct dummy *dum = dum_hcd->dum;
419
420 dum_hcd->active = 0;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300421 if (dum->pullup)
422 if ((dummy_hcd_to_hcd(dum_hcd)->speed == HCD_USB3 &&
423 dum->gadget.speed != USB_SPEED_SUPER) ||
424 (dummy_hcd_to_hcd(dum_hcd)->speed != HCD_USB3 &&
425 dum->gadget.speed == USB_SPEED_SUPER))
426 return;
Alan Stern391eca92005-05-10 15:34:16 -0400427
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300428 set_link_state_by_speed(dum_hcd);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400429
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300430 if ((dum_hcd->port_status & USB_PORT_STAT_ENABLE) == 0 ||
431 dum_hcd->active)
432 dum_hcd->resuming = 0;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400433
Alan Stern84804842014-11-06 14:27:55 +0800434 /* Currently !connected or in reset */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300435 if ((dum_hcd->port_status & USB_PORT_STAT_CONNECTION) == 0 ||
436 (dum_hcd->port_status & USB_PORT_STAT_RESET) != 0) {
Alan Stern84804842014-11-06 14:27:55 +0800437 unsigned disconnect = USB_PORT_STAT_CONNECTION &
438 dum_hcd->old_status & (~dum_hcd->port_status);
439 unsigned reset = USB_PORT_STAT_RESET &
440 (~dum_hcd->old_status) & dum_hcd->port_status;
441
442 /* Report reset and disconnect events to the driver */
443 if (dum->driver && (disconnect || reset)) {
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300444 stop_activity(dum);
445 spin_unlock(&dum->lock);
Alan Stern84804842014-11-06 14:27:55 +0800446 if (reset)
447 usb_gadget_udc_reset(&dum->gadget, dum->driver);
448 else
449 dum->driver->disconnect(&dum->gadget);
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300450 spin_lock(&dum->lock);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400451 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300452 } else if (dum_hcd->active != dum_hcd->old_active) {
453 if (dum_hcd->old_active && dum->driver->suspend) {
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300454 spin_unlock(&dum->lock);
455 dum->driver->suspend(&dum->gadget);
456 spin_lock(&dum->lock);
457 } else if (!dum_hcd->old_active && dum->driver->resume) {
458 spin_unlock(&dum->lock);
459 dum->driver->resume(&dum->gadget);
460 spin_lock(&dum->lock);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400461 }
462 }
463
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300464 dum_hcd->old_status = dum_hcd->port_status;
465 dum_hcd->old_active = dum_hcd->active;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400466}
467
468/*-------------------------------------------------------------------------*/
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470/* SLAVE/GADGET SIDE DRIVER
471 *
472 * This only tracks gadget state. All the work is done when the host
473 * side tries some (emulated) i/o operation. Real device controller
474 * drivers would do real i/o using dma, fifos, irqs, timers, etc.
475 */
476
477#define is_enabled(dum) \
478 (dum->port_status & USB_PORT_STAT_ENABLE)
479
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100480static int dummy_enable(struct usb_ep *_ep,
481 const struct usb_endpoint_descriptor *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 struct dummy *dum;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300484 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct dummy_ep *ep;
486 unsigned max;
487 int retval;
488
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100489 ep = usb_ep_to_dummy_ep(_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 if (!_ep || !desc || ep->desc || _ep->name == ep0name
491 || desc->bDescriptorType != USB_DT_ENDPOINT)
492 return -EINVAL;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100493 dum = ep_to_dummy(ep);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300494 if (!dum->driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return -ESHUTDOWN;
Sebastian Andrzej Siewior719e52c2011-06-16 20:36:57 +0200496
497 dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300498 if (!is_enabled(dum_hcd))
499 return -ESHUTDOWN;
500
501 /*
502 * For HS/FS devices only bits 0..10 of the wMaxPacketSize represent the
503 * maximum packet size.
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300504 * For SS devices the wMaxPacketSize is limited by 1024.
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300505 */
Felipe Balbic2b4d862016-09-28 14:17:38 +0300506 max = usb_endpoint_maxp(desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 /* drivers must not request bad settings, since lower levels
509 * (hardware or its drivers) may not check. some endpoints
510 * can't do iso, many have maxpacket limitations, etc.
511 *
512 * since this "hardware" driver is here to help debugging, we
513 * have some extra sanity checks. (there could be more though,
514 * especially for "ep9out" style fixed function ones.)
515 */
516 retval = -EINVAL;
Sebastian Andrzej Siewior59f08e62012-01-12 12:53:14 +0100517 switch (usb_endpoint_type(desc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 case USB_ENDPOINT_XFER_BULK:
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100519 if (strstr(ep->ep.name, "-iso")
520 || strstr(ep->ep.name, "-int")) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 goto done;
522 }
523 switch (dum->gadget.speed) {
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300524 case USB_SPEED_SUPER:
525 if (max == 1024)
526 break;
527 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 case USB_SPEED_HIGH:
529 if (max == 512)
530 break;
Ingo van Lil9063ff42008-03-28 14:50:26 -0700531 goto done;
532 case USB_SPEED_FULL:
533 if (max == 8 || max == 16 || max == 32 || max == 64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 /* we'll fake any legal size */
535 break;
Ingo van Lil9063ff42008-03-28 14:50:26 -0700536 /* save a return statement */
537 default:
538 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540 break;
541 case USB_ENDPOINT_XFER_INT:
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100542 if (strstr(ep->ep.name, "-iso")) /* bulk is ok */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 goto done;
544 /* real hardware might not handle all packet sizes */
545 switch (dum->gadget.speed) {
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300546 case USB_SPEED_SUPER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 case USB_SPEED_HIGH:
548 if (max <= 1024)
549 break;
550 /* save a return statement */
551 case USB_SPEED_FULL:
552 if (max <= 64)
553 break;
554 /* save a return statement */
555 default:
556 if (max <= 8)
557 break;
558 goto done;
559 }
560 break;
561 case USB_ENDPOINT_XFER_ISOC:
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100562 if (strstr(ep->ep.name, "-bulk")
563 || strstr(ep->ep.name, "-int"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 goto done;
565 /* real hardware might not handle all packet sizes */
566 switch (dum->gadget.speed) {
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +0300567 case USB_SPEED_SUPER:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 case USB_SPEED_HIGH:
569 if (max <= 1024)
570 break;
571 /* save a return statement */
572 case USB_SPEED_FULL:
573 if (max <= 1023)
574 break;
575 /* save a return statement */
576 default:
577 goto done;
578 }
579 break;
580 default:
581 /* few chips support control except on ep0 */
582 goto done;
583 }
584
585 _ep->maxpacket = max;
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +0100586 if (usb_ss_max_streams(_ep->comp_desc)) {
587 if (!usb_endpoint_xfer_bulk(desc)) {
588 dev_err(udc_dev(dum), "Can't enable stream support on "
589 "non-bulk ep %s\n", _ep->name);
590 return -EINVAL;
591 }
592 ep->stream_en = 1;
593 }
Sebastian Andrzej Siewior3cf0ad02012-01-25 11:51:19 +0100594 ep->desc = desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +0100596 dev_dbg(udc_dev(dum), "enabled %s (ep%d%s-%s) maxpacket %d stream %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 _ep->name,
598 desc->bEndpointAddress & 0x0f,
599 (desc->bEndpointAddress & USB_DIR_IN) ? "in" : "out",
600 ({ char *val;
Sebastian Andrzej Siewior59f08e62012-01-12 12:53:14 +0100601 switch (usb_endpoint_type(desc)) {
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +0300602 case USB_ENDPOINT_XFER_BULK:
603 val = "bulk";
604 break;
605 case USB_ENDPOINT_XFER_ISOC:
606 val = "iso";
607 break;
608 case USB_ENDPOINT_XFER_INT:
609 val = "intr";
610 break;
611 default:
612 val = "ctrl";
613 break;
Joe Perches2b84f922013-10-08 16:01:37 -0700614 } val; }),
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +0100615 max, ep->stream_en ? "enabled" : "disabled");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 /* at this point real hardware should be NAKing transfers
618 * to that endpoint, until a buffer is queued to it.
619 */
Alan Stern851a5262008-08-14 15:48:30 -0400620 ep->halted = ep->wedged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 retval = 0;
622done:
623 return retval;
624}
625
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100626static int dummy_disable(struct usb_ep *_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 struct dummy_ep *ep;
629 struct dummy *dum;
630 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100632 ep = usb_ep_to_dummy_ep(_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (!_ep || !ep->desc || _ep->name == ep0name)
634 return -EINVAL;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100635 dum = ep_to_dummy(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100637 spin_lock_irqsave(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 ep->desc = NULL;
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +0100639 ep->stream_en = 0;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100640 nuke(dum, ep);
641 spin_unlock_irqrestore(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100643 dev_dbg(udc_dev(dum), "disabled %s\n", _ep->name);
Julia Lawall849b1332014-05-19 06:31:07 +0200644 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100647static struct usb_request *dummy_alloc_request(struct usb_ep *_ep,
648 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 struct dummy_request *req;
651
652 if (!_ep)
653 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800655 req = kzalloc(sizeof(*req), mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (!req)
657 return NULL;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100658 INIT_LIST_HEAD(&req->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return &req->req;
660}
661
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100662static void dummy_free_request(struct usb_ep *_ep, struct usb_request *_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 struct dummy_request *req;
665
Sebastian Andrzej Siewiorf99987b2012-02-09 09:24:59 +0100666 if (!_ep || !_req) {
Sasha Levin72688dc2012-05-11 06:39:37 +0200667 WARN_ON(1);
Sebastian Andrzej Siewior20edfbb2012-01-25 15:18:58 +0100668 return;
Sebastian Andrzej Siewiorf99987b2012-02-09 09:24:59 +0100669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100671 req = usb_request_to_dummy_request(_req);
672 WARN_ON(!list_empty(&req->queue));
673 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100676static void fifo_complete(struct usb_ep *ep, struct usb_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
678}
679
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100680static int dummy_queue(struct usb_ep *_ep, struct usb_request *_req,
Al Viro55016f12005-10-21 03:21:58 -0400681 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct dummy_ep *ep;
684 struct dummy_request *req;
685 struct dummy *dum;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300686 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 unsigned long flags;
688
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100689 req = usb_request_to_dummy_request(_req);
690 if (!_req || !list_empty(&req->queue) || !_req->complete)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return -EINVAL;
692
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100693 ep = usb_ep_to_dummy_ep(_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (!_ep || (!ep->desc && _ep->name != ep0name))
695 return -EINVAL;
696
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100697 dum = ep_to_dummy(ep);
Sebastian Andrzej Siewior719e52c2011-06-16 20:36:57 +0200698 dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300699 if (!dum->driver || !is_enabled(dum_hcd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return -ESHUTDOWN;
701
702#if 0
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100703 dev_dbg(udc_dev(dum), "ep %p queue req %p to %s, len %d buf %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 ep, _req, _ep->name, _req->length, _req->buf);
705#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 _req->status = -EINPROGRESS;
707 _req->actual = 0;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100708 spin_lock_irqsave(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 /* implement an emulated single-request FIFO */
711 if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100712 list_empty(&dum->fifo_req.queue) &&
713 list_empty(&ep->queue) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 _req->length <= FIFO_SIZE) {
715 req = &dum->fifo_req;
716 req->req = *_req;
717 req->req.buf = dum->fifo_buf;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100718 memcpy(dum->fifo_buf, _req->buf, _req->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 req->req.context = dum;
720 req->req.complete = fifo_complete;
721
David Brownellc728df72008-07-26 08:06:24 -0700722 list_add_tail(&req->queue, &ep->queue);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100723 spin_unlock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 _req->actual = _req->length;
725 _req->status = 0;
Michal Sojka304f7e52014-09-24 22:43:19 +0200726 usb_gadget_giveback_request(_ep, _req);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100727 spin_lock(&dum->lock);
David Brownellc728df72008-07-26 08:06:24 -0700728 } else
729 list_add_tail(&req->queue, &ep->queue);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100730 spin_unlock_irqrestore(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 /* real hardware would likely enable transfers here, in case
733 * it'd been left NAKing.
734 */
735 return 0;
736}
737
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100738static int dummy_dequeue(struct usb_ep *_ep, struct usb_request *_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 struct dummy_ep *ep;
741 struct dummy *dum;
742 int retval = -EINVAL;
743 unsigned long flags;
744 struct dummy_request *req = NULL;
745
746 if (!_ep || !_req)
747 return retval;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100748 ep = usb_ep_to_dummy_ep(_ep);
749 dum = ep_to_dummy(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 if (!dum->driver)
752 return -ESHUTDOWN;
753
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100754 local_irq_save(flags);
755 spin_lock(&dum->lock);
756 list_for_each_entry(req, &ep->queue, queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (&req->req == _req) {
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100758 list_del_init(&req->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 _req->status = -ECONNRESET;
760 retval = 0;
761 break;
762 }
763 }
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100764 spin_unlock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 if (retval == 0) {
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100767 dev_dbg(udc_dev(dum),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 "dequeued req %p from %s, len %d buf %p\n",
769 req, _ep->name, _req->length, _req->buf);
Michal Sojka304f7e52014-09-24 22:43:19 +0200770 usb_gadget_giveback_request(_ep, _req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100772 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return retval;
774}
775
776static int
Alan Stern851a5262008-08-14 15:48:30 -0400777dummy_set_halt_and_wedge(struct usb_ep *_ep, int value, int wedged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
779 struct dummy_ep *ep;
780 struct dummy *dum;
781
782 if (!_ep)
783 return -EINVAL;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100784 ep = usb_ep_to_dummy_ep(_ep);
785 dum = ep_to_dummy(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (!dum->driver)
787 return -ESHUTDOWN;
788 if (!value)
Alan Stern851a5262008-08-14 15:48:30 -0400789 ep->halted = ep->wedged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100791 !list_empty(&ep->queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 return -EAGAIN;
Alan Stern851a5262008-08-14 15:48:30 -0400793 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 ep->halted = 1;
Alan Stern851a5262008-08-14 15:48:30 -0400795 if (wedged)
796 ep->wedged = 1;
797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /* FIXME clear emulated data toggle too */
799 return 0;
800}
801
Alan Stern851a5262008-08-14 15:48:30 -0400802static int
803dummy_set_halt(struct usb_ep *_ep, int value)
804{
805 return dummy_set_halt_and_wedge(_ep, value, 0);
806}
807
808static int dummy_set_wedge(struct usb_ep *_ep)
809{
810 if (!_ep || _ep->name == ep0name)
811 return -EINVAL;
812 return dummy_set_halt_and_wedge(_ep, 1, 1);
813}
814
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815static const struct usb_ep_ops dummy_ep_ops = {
816 .enable = dummy_enable,
817 .disable = dummy_disable,
818
819 .alloc_request = dummy_alloc_request,
820 .free_request = dummy_free_request,
821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 .queue = dummy_queue,
823 .dequeue = dummy_dequeue,
824
825 .set_halt = dummy_set_halt,
Alan Stern851a5262008-08-14 15:48:30 -0400826 .set_wedge = dummy_set_wedge,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827};
828
829/*-------------------------------------------------------------------------*/
830
831/* there are both host and device side versions of this call ... */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100832static int dummy_g_get_frame(struct usb_gadget *_gadget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
WEN Pingbo04c4d8d2015-09-18 10:51:26 +0800834 struct timespec64 ts64;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
WEN Pingbo04c4d8d2015-09-18 10:51:26 +0800836 ktime_get_ts64(&ts64);
837 return ts64.tv_nsec / NSEC_PER_MSEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100840static int dummy_wakeup(struct usb_gadget *_gadget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300842 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300844 dum_hcd = gadget_to_dummy_hcd(_gadget);
845 if (!(dum_hcd->dum->devstatus & ((1 << USB_DEVICE_B_HNP_ENABLE)
Alan Stern5742b0c2005-05-02 11:25:17 -0400846 | (1 << USB_DEVICE_REMOTE_WAKEUP))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return -EINVAL;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300848 if ((dum_hcd->port_status & USB_PORT_STAT_CONNECTION) == 0)
Alan Stern391eca92005-05-10 15:34:16 -0400849 return -ENOLINK;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300850 if ((dum_hcd->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
851 dum_hcd->rh_state != DUMMY_RH_SUSPENDED)
Alan Stern391eca92005-05-10 15:34:16 -0400852 return -EIO;
853
854 /* FIXME: What if the root hub is suspended but the port isn't? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 /* hub notices our request, issues downstream resume, etc */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300857 dum_hcd->resuming = 1;
858 dum_hcd->re_timeout = jiffies + msecs_to_jiffies(20);
859 mod_timer(&dummy_hcd_to_hcd(dum_hcd)->rh_timer, dum_hcd->re_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return 0;
861}
862
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100863static int dummy_set_selfpowered(struct usb_gadget *_gadget, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 struct dummy *dum;
866
Peter Chen5d9cb6a2015-01-28 16:32:30 +0800867 _gadget->is_selfpowered = (value != 0);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100868 dum = gadget_to_dummy_hcd(_gadget)->dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (value)
870 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
871 else
872 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
873 return 0;
874}
875
Sebastian Andrzej Siewiord2621272012-01-09 13:14:59 +0100876static void dummy_udc_update_ep0(struct dummy *dum)
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200877{
Sebastian Andrzej Siewiorc6884192012-01-09 13:14:56 +0100878 if (dum->gadget.speed == USB_SPEED_SUPER)
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200879 dum->ep[0].ep.maxpacket = 9;
Sebastian Andrzej Siewiorc6884192012-01-09 13:14:56 +0100880 else
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200881 dum->ep[0].ep.maxpacket = 64;
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200882}
883
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100884static int dummy_pullup(struct usb_gadget *_gadget, int value)
Alan Sternf1c39fa2005-05-03 16:24:04 -0400885{
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +0200886 struct dummy_hcd *dum_hcd;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400887 struct dummy *dum;
888 unsigned long flags;
889
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200890 dum = gadget_dev_to_dummy(&_gadget->dev);
891
892 if (value && dum->driver) {
893 if (mod_data.is_super_speed)
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100894 dum->gadget.speed = dum->driver->max_speed;
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200895 else if (mod_data.is_high_speed)
896 dum->gadget.speed = min_t(u8, USB_SPEED_HIGH,
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100897 dum->driver->max_speed);
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200898 else
899 dum->gadget.speed = USB_SPEED_FULL;
Sebastian Andrzej Siewiord2621272012-01-09 13:14:59 +0100900 dummy_udc_update_ep0(dum);
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200901
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100902 if (dum->gadget.speed < dum->driver->max_speed)
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200903 dev_dbg(udc_dev(dum), "This device can perform faster"
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100904 " if you connect it to a %s port...\n",
905 usb_speed_string(dum->driver->max_speed));
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200906 }
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +0200907 dum_hcd = gadget_to_dummy_hcd(_gadget);
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +0200908
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100909 spin_lock_irqsave(&dum->lock, flags);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400910 dum->pullup = (value != 0);
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +0200911 set_link_state(dum_hcd);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100912 spin_unlock_irqrestore(&dum->lock, flags);
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200913
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +0200914 usb_hcd_poll_rh_status(dummy_hcd_to_hcd(dum_hcd));
Alan Sternf1c39fa2005-05-03 16:24:04 -0400915 return 0;
916}
917
Sebastian Andrzej Siewioraa074732011-06-23 14:26:17 +0200918static int dummy_udc_start(struct usb_gadget *g,
919 struct usb_gadget_driver *driver);
Felipe Balbi22835b82014-10-17 12:05:12 -0500920static int dummy_udc_stop(struct usb_gadget *g);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922static const struct usb_gadget_ops dummy_ops = {
923 .get_frame = dummy_g_get_frame,
924 .wakeup = dummy_wakeup,
925 .set_selfpowered = dummy_set_selfpowered,
Alan Sternf1c39fa2005-05-03 16:24:04 -0400926 .pullup = dummy_pullup,
Sebastian Andrzej Siewioraa074732011-06-23 14:26:17 +0200927 .udc_start = dummy_udc_start,
928 .udc_stop = dummy_udc_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929};
930
931/*-------------------------------------------------------------------------*/
932
933/* "function" sysfs attribute */
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -0700934static ssize_t function_show(struct device *dev, struct device_attribute *attr,
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100935 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100937 struct dummy *dum = gadget_dev_to_dummy(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 if (!dum->driver || !dum->driver->function)
940 return 0;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100941 return scnprintf(buf, PAGE_SIZE, "%s\n", dum->driver->function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942}
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -0700943static DEVICE_ATTR_RO(function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945/*-------------------------------------------------------------------------*/
946
947/*
948 * Driver registration/unregistration.
949 *
950 * This is basically hardware-specific; there's usually only one real USB
951 * device (not host) controller since that's how USB devices are intended
952 * to work. So most implementations of these api calls will rely on the
953 * fact that only one driver will ever bind to the hardware. But curious
954 * hardware can be built with discrete components, so the gadget API doesn't
955 * require that assumption.
956 *
957 * For this emulator, it might be convenient to create a usb slave device
958 * for each driver that registers: just add to a big root hub.
959 */
960
Sebastian Andrzej Siewioraa074732011-06-23 14:26:17 +0200961static int dummy_udc_start(struct usb_gadget *g,
962 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
Sebastian Andrzej Siewioraa074732011-06-23 14:26:17 +0200964 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(g);
965 struct dummy *dum = dum_hcd->dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100967 if (driver->max_speed == USB_SPEED_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return -EINVAL;
969
970 /*
971 * SLAVE side init ... the layer above hardware, which
972 * can't enumerate without help from the driver we're binding.
973 */
Alan Stern5742b0c2005-05-02 11:25:17 -0400974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 dum->devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 dum->driver = driver;
Felipe Balbidd7e6dd2014-10-17 11:37:38 -0500977
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 return 0;
979}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Felipe Balbi22835b82014-10-17 12:05:12 -0500981static int dummy_udc_stop(struct usb_gadget *g)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Sebastian Andrzej Siewioraa074732011-06-23 14:26:17 +0200983 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(g);
984 struct dummy *dum = dum_hcd->dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 dum->driver = NULL;
Sebastian Andrzej Siewior25427872011-06-16 20:36:55 +0200987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return 0;
989}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991#undef is_enabled
992
Alan Sternd9b76252005-05-03 16:15:43 -0400993/* The gadget structure is stored inside the hcd structure and will be
994 * released along with it. */
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +0200995static void init_dummy_udc_hw(struct dummy *dum)
996{
997 int i;
998
999 INIT_LIST_HEAD(&dum->gadget.ep_list);
1000 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1001 struct dummy_ep *ep = &dum->ep[i];
1002
Robert Baldyga7a3b8e72015-07-31 16:00:24 +02001003 if (!ep_info[i].name)
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +02001004 break;
Robert Baldyga7a3b8e72015-07-31 16:00:24 +02001005 ep->ep.name = ep_info[i].name;
1006 ep->ep.caps = ep_info[i].caps;
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +02001007 ep->ep.ops = &dummy_ep_ops;
1008 list_add_tail(&ep->ep.ep_list, &dum->gadget.ep_list);
1009 ep->halted = ep->wedged = ep->already_seen =
1010 ep->setup_stage = 0;
Robert Baldygae117e742013-12-13 12:23:38 +01001011 usb_ep_set_maxpacket_limit(&ep->ep, ~0);
Sebastian Andrzej Siewiorc6884192012-01-09 13:14:56 +01001012 ep->ep.max_streams = 16;
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +02001013 ep->last_io = jiffies;
1014 ep->gadget = &dum->gadget;
1015 ep->desc = NULL;
1016 INIT_LIST_HEAD(&ep->queue);
1017 }
1018
1019 dum->gadget.ep0 = &dum->ep[0].ep;
1020 list_del_init(&dum->ep[0].ep.ep_list);
1021 INIT_LIST_HEAD(&dum->fifo_req.queue);
Sebastian Andrzej Siewiorf8744d42011-06-23 14:26:13 +02001022
1023#ifdef CONFIG_USB_OTG
1024 dum->gadget.is_otg = 1;
1025#endif
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +02001026}
1027
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001028static int dummy_udc_probe(struct platform_device *pdev)
Alan Sternd9b76252005-05-03 16:15:43 -04001029{
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01001030 struct dummy *dum;
Alan Sternd9b76252005-05-03 16:15:43 -04001031 int rc;
1032
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01001033 dum = *((void **)dev_get_platdata(&pdev->dev));
Alan Sternd9b76252005-05-03 16:15:43 -04001034 dum->gadget.name = gadget_name;
1035 dum->gadget.ops = &dummy_ops;
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01001036 dum->gadget.max_speed = USB_SPEED_SUPER;
Alan Sternd9b76252005-05-03 16:15:43 -04001037
Alan Stern8364d6b2005-11-14 12:16:30 -05001038 dum->gadget.dev.parent = &pdev->dev;
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +02001039 init_dummy_udc_hw(dum);
1040
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001041 rc = usb_add_gadget_udc(&pdev->dev, &dum->gadget);
1042 if (rc < 0)
1043 goto err_udc;
1044
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001045 rc = device_create_file(&dum->gadget.dev, &dev_attr_function);
Alan Sternefd54a32006-09-25 11:55:56 -04001046 if (rc < 0)
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001047 goto err_dev;
1048 platform_set_drvdata(pdev, dum);
1049 return rc;
1050
1051err_dev:
1052 usb_del_gadget_udc(&dum->gadget);
1053err_udc:
Alan Sternd9b76252005-05-03 16:15:43 -04001054 return rc;
1055}
1056
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001057static int dummy_udc_remove(struct platform_device *pdev)
Alan Sternd9b76252005-05-03 16:15:43 -04001058{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001059 struct dummy *dum = platform_get_drvdata(pdev);
Alan Sternd9b76252005-05-03 16:15:43 -04001060
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001061 device_remove_file(&dum->gadget.dev, &dev_attr_function);
Alan Stern5f5610f2013-07-30 15:18:15 -04001062 usb_del_gadget_udc(&dum->gadget);
Alan Sternd9b76252005-05-03 16:15:43 -04001063 return 0;
1064}
1065
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001066static void dummy_udc_pm(struct dummy *dum, struct dummy_hcd *dum_hcd,
1067 int suspend)
Alan Stern391eca92005-05-10 15:34:16 -04001068{
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001069 spin_lock_irq(&dum->lock);
1070 dum->udc_suspended = suspend;
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +02001071 set_link_state(dum_hcd);
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001072 spin_unlock_irq(&dum->lock);
1073}
Alan Stern391eca92005-05-10 15:34:16 -04001074
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001075static int dummy_udc_suspend(struct platform_device *pdev, pm_message_t state)
1076{
1077 struct dummy *dum = platform_get_drvdata(pdev);
1078 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
1079
1080 dev_dbg(&pdev->dev, "%s\n", __func__);
1081 dummy_udc_pm(dum, dum_hcd, 1);
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +02001082 usb_hcd_poll_rh_status(dummy_hcd_to_hcd(dum_hcd));
Alan Stern391eca92005-05-10 15:34:16 -04001083 return 0;
1084}
1085
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001086static int dummy_udc_resume(struct platform_device *pdev)
Alan Stern391eca92005-05-10 15:34:16 -04001087{
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001088 struct dummy *dum = platform_get_drvdata(pdev);
1089 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
Alan Stern391eca92005-05-10 15:34:16 -04001090
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001091 dev_dbg(&pdev->dev, "%s\n", __func__);
1092 dummy_udc_pm(dum, dum_hcd, 0);
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +02001093 usb_hcd_poll_rh_status(dummy_hcd_to_hcd(dum_hcd));
Alan Stern391eca92005-05-10 15:34:16 -04001094 return 0;
1095}
1096
Russell King3ae5eae2005-11-09 22:32:44 +00001097static struct platform_driver dummy_udc_driver = {
Alan Sternd9b76252005-05-03 16:15:43 -04001098 .probe = dummy_udc_probe,
1099 .remove = dummy_udc_remove,
Alan Stern391eca92005-05-10 15:34:16 -04001100 .suspend = dummy_udc_suspend,
1101 .resume = dummy_udc_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001102 .driver = {
1103 .name = (char *) gadget_name,
Russell King3ae5eae2005-11-09 22:32:44 +00001104 },
Alan Sternd9b76252005-05-03 16:15:43 -04001105};
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107/*-------------------------------------------------------------------------*/
1108
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001109static unsigned int dummy_get_ep_idx(const struct usb_endpoint_descriptor *desc)
1110{
1111 unsigned int index;
1112
1113 index = usb_endpoint_num(desc) << 1;
1114 if (usb_endpoint_dir_in(desc))
1115 index |= 1;
1116 return index;
1117}
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119/* MASTER/HOST SIDE DRIVER
1120 *
1121 * this uses the hcd framework to hook up to host side drivers.
1122 * its root hub will only have one device, otherwise it acts like
1123 * a normal host controller.
1124 *
1125 * when urbs are queued, they're just stuck on a list that we
1126 * scan in a timer callback. that callback connects writes from
1127 * the host with reads from the device, and so on, based on the
1128 * usb 2.0 rules.
1129 */
1130
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001131static int dummy_ep_stream_en(struct dummy_hcd *dum_hcd, struct urb *urb)
1132{
1133 const struct usb_endpoint_descriptor *desc = &urb->ep->desc;
1134 u32 index;
1135
1136 if (!usb_endpoint_xfer_bulk(desc))
1137 return 0;
1138
1139 index = dummy_get_ep_idx(desc);
1140 return (1 << index) & dum_hcd->stream_en_ep;
1141}
1142
1143/*
1144 * The max stream number is saved as a nibble so for the 30 possible endpoints
1145 * we only 15 bytes of memory. Therefore we are limited to max 16 streams (0
1146 * means we use only 1 stream). The maximum according to the spec is 16bit so
1147 * if the 16 stream limit is about to go, the array size should be incremented
1148 * to 30 elements of type u16.
1149 */
1150static int get_max_streams_for_pipe(struct dummy_hcd *dum_hcd,
1151 unsigned int pipe)
1152{
1153 int max_streams;
1154
1155 max_streams = dum_hcd->num_stream[usb_pipeendpoint(pipe)];
1156 if (usb_pipeout(pipe))
1157 max_streams >>= 4;
1158 else
1159 max_streams &= 0xf;
1160 max_streams++;
1161 return max_streams;
1162}
1163
1164static void set_max_streams_for_pipe(struct dummy_hcd *dum_hcd,
1165 unsigned int pipe, unsigned int streams)
1166{
1167 int max_streams;
1168
1169 streams--;
1170 max_streams = dum_hcd->num_stream[usb_pipeendpoint(pipe)];
1171 if (usb_pipeout(pipe)) {
1172 streams <<= 4;
1173 max_streams &= 0xf;
1174 } else {
1175 max_streams &= 0xf0;
1176 }
1177 max_streams |= streams;
1178 dum_hcd->num_stream[usb_pipeendpoint(pipe)] = max_streams;
1179}
1180
1181static int dummy_validate_stream(struct dummy_hcd *dum_hcd, struct urb *urb)
1182{
1183 unsigned int max_streams;
1184 int enabled;
1185
1186 enabled = dummy_ep_stream_en(dum_hcd, urb);
1187 if (!urb->stream_id) {
1188 if (enabled)
1189 return -EINVAL;
1190 return 0;
1191 }
1192 if (!enabled)
1193 return -EINVAL;
1194
1195 max_streams = get_max_streams_for_pipe(dum_hcd,
1196 usb_pipeendpoint(urb->pipe));
1197 if (urb->stream_id > max_streams) {
1198 dev_err(dummy_dev(dum_hcd), "Stream id %d is out of range.\n",
1199 urb->stream_id);
1200 BUG();
1201 return -EINVAL;
1202 }
1203 return 0;
1204}
1205
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001206static int dummy_urb_enqueue(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 struct usb_hcd *hcd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -04001209 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210) {
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001211 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 struct urbp *urbp;
1213 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -04001214 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001216 urbp = kmalloc(sizeof *urbp, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (!urbp)
1218 return -ENOMEM;
1219 urbp->urb = urb;
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001220 urbp->miter_started = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001222 dum_hcd = hcd_to_dummy_hcd(hcd);
1223 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001224
1225 rc = dummy_validate_stream(dum_hcd, urb);
1226 if (rc) {
1227 kfree(urbp);
1228 goto done;
1229 }
1230
Alan Sterne9df41c2007-08-08 11:48:02 -04001231 rc = usb_hcd_link_urb_to_ep(hcd, urb);
1232 if (rc) {
1233 kfree(urbp);
1234 goto done;
1235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001237 if (!dum_hcd->udev) {
1238 dum_hcd->udev = urb->dev;
1239 usb_get_dev(dum_hcd->udev);
1240 } else if (unlikely(dum_hcd->udev != urb->dev))
1241 dev_err(dummy_dev(dum_hcd), "usb_device address has changed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001243 list_add_tail(&urbp->urbp_list, &dum_hcd->urbp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 urb->hcpriv = urbp;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001245 if (usb_pipetype(urb->pipe) == PIPE_CONTROL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 urb->error_count = 1; /* mark as a new urb */
1247
1248 /* kick the scheduler, it'll do the rest */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001249 if (!timer_pending(&dum_hcd->timer))
1250 mod_timer(&dum_hcd->timer, jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Alan Sterne9df41c2007-08-08 11:48:02 -04001252 done:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001253 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001254 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
Alan Sterne9df41c2007-08-08 11:48:02 -04001257static int dummy_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001259 struct dummy_hcd *dum_hcd;
Alan Stern391eca92005-05-10 15:34:16 -04001260 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -04001261 int rc;
Alan Stern391eca92005-05-10 15:34:16 -04001262
1263 /* giveback happens automatically in timer callback,
1264 * so make sure the callback happens */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001265 dum_hcd = hcd_to_dummy_hcd(hcd);
1266 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001267
1268 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001269 if (!rc && dum_hcd->rh_state != DUMMY_RH_RUNNING &&
1270 !list_empty(&dum_hcd->urbp_list))
1271 mod_timer(&dum_hcd->timer, jiffies);
Alan Sterne9df41c2007-08-08 11:48:02 -04001272
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001273 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001274 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275}
1276
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001277static int dummy_perform_transfer(struct urb *urb, struct dummy_request *req,
1278 u32 len)
1279{
1280 void *ubuf, *rbuf;
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001281 struct urbp *urbp = urb->hcpriv;
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001282 int to_host;
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001283 struct sg_mapping_iter *miter = &urbp->miter;
1284 u32 trans = 0;
1285 u32 this_sg;
1286 bool next_sg;
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001287
1288 to_host = usb_pipein(urb->pipe);
1289 rbuf = req->req.buf + req->req.actual;
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001290
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001291 if (!urb->num_sgs) {
1292 ubuf = urb->transfer_buffer + urb->actual_length;
1293 if (to_host)
1294 memcpy(ubuf, rbuf, len);
1295 else
1296 memcpy(rbuf, ubuf, len);
1297 return len;
1298 }
1299
1300 if (!urbp->miter_started) {
1301 u32 flags = SG_MITER_ATOMIC;
1302
1303 if (to_host)
1304 flags |= SG_MITER_TO_SG;
1305 else
1306 flags |= SG_MITER_FROM_SG;
1307
1308 sg_miter_start(miter, urb->sg, urb->num_sgs, flags);
1309 urbp->miter_started = 1;
1310 }
1311 next_sg = sg_miter_next(miter);
1312 if (next_sg == false) {
1313 WARN_ON_ONCE(1);
1314 return -EINVAL;
1315 }
1316 do {
1317 ubuf = miter->addr;
1318 this_sg = min_t(u32, len, miter->length);
1319 miter->consumed = this_sg;
1320 trans += this_sg;
1321
1322 if (to_host)
1323 memcpy(ubuf, rbuf, this_sg);
1324 else
1325 memcpy(rbuf, ubuf, this_sg);
1326 len -= this_sg;
1327
1328 if (!len)
1329 break;
1330 next_sg = sg_miter_next(miter);
1331 if (next_sg == false) {
1332 WARN_ON_ONCE(1);
1333 return -EINVAL;
1334 }
1335
1336 rbuf += this_sg;
1337 } while (1);
1338
1339 sg_miter_stop(miter);
1340 return trans;
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001341}
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343/* transfer up to a frame's worth; caller must own lock */
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001344static int transfer(struct dummy_hcd *dum_hcd, struct urb *urb,
1345 struct dummy_ep *ep, int limit, int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001347 struct dummy *dum = dum_hcd->dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 struct dummy_request *req;
Igor Kotrasinski9a9ce1d2015-09-15 16:55:32 +02001349 int sent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
1351top:
1352 /* if there's no request queued, the device is NAKing; return */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001353 list_for_each_entry(req, &ep->queue, queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 unsigned host_len, dev_len, len;
1355 int is_short, to_host;
1356 int rescan = 0;
1357
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001358 if (dummy_ep_stream_en(dum_hcd, urb)) {
1359 if ((urb->stream_id != req->req.stream_id))
1360 continue;
1361 }
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 /* 1..N packets of ep->ep.maxpacket each ... the last one
1364 * may be short (including zero length).
1365 *
1366 * writer can send a zlp explicitly (length 0) or implicitly
1367 * (length mod maxpacket zero, and 'zero' flag); they always
1368 * terminate reads.
1369 */
1370 host_len = urb->transfer_buffer_length - urb->actual_length;
1371 dev_len = req->req.length - req->req.actual;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001372 len = min(host_len, dev_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 /* FIXME update emulated data toggle too */
1375
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001376 to_host = usb_pipein(urb->pipe);
1377 if (unlikely(len == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 is_short = 1;
1379 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 /* not enough bandwidth left? */
1381 if (limit < ep->ep.maxpacket && limit < len)
1382 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001383 len = min_t(unsigned, len, limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (len == 0)
1385 break;
1386
Igor Kotrasinskie42bd6a2015-09-15 16:55:31 +02001387 /* send multiple of maxpacket first, then remainder */
1388 if (len >= ep->ep.maxpacket) {
1389 is_short = 0;
1390 if (len % ep->ep.maxpacket)
1391 rescan = 1;
1392 len -= len % ep->ep.maxpacket;
1393 } else {
1394 is_short = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001397 len = dummy_perform_transfer(urb, req, len);
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 ep->last_io = jiffies;
Dan Carpenterb1443ac0e2012-03-02 21:51:00 +03001400 if ((int)len < 0) {
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001401 req->req.status = len;
1402 } else {
1403 limit -= len;
Igor Kotrasinski9a9ce1d2015-09-15 16:55:32 +02001404 sent += len;
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001405 urb->actual_length += len;
1406 req->req.actual += len;
1407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409
1410 /* short packets terminate, maybe with overflow/underflow.
1411 * it's only really an error to write too much.
1412 *
1413 * partially filling a buffer optionally blocks queue advances
1414 * (so completion handlers can clean up the queue) but we don't
Alan Sternb0d9efb2007-08-21 15:39:21 -04001415 * need to emulate such data-in-flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 */
1417 if (is_short) {
1418 if (host_len == dev_len) {
1419 req->req.status = 0;
Alan Stern4d2f1102007-08-24 15:40:10 -04001420 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 } else if (to_host) {
1422 req->req.status = 0;
1423 if (dev_len > host_len)
Alan Stern4d2f1102007-08-24 15:40:10 -04001424 *status = -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 else
Alan Stern4d2f1102007-08-24 15:40:10 -04001426 *status = 0;
Igor Kotrasinski5dda5be2015-09-15 16:55:30 +02001427 } else {
Alan Stern4d2f1102007-08-24 15:40:10 -04001428 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (host_len > dev_len)
1430 req->req.status = -EOVERFLOW;
1431 else
1432 req->req.status = 0;
1433 }
1434
Igor Kotrasinski21c3ee92015-09-15 16:55:29 +02001435 /*
1436 * many requests terminate without a short packet.
1437 * send a zlp if demanded by flags.
1438 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 } else {
Igor Kotrasinski21c3ee92015-09-15 16:55:29 +02001440 if (req->req.length == req->req.actual) {
1441 if (req->req.zero && to_host)
1442 rescan = 1;
1443 else
1444 req->req.status = 0;
1445 }
1446 if (urb->transfer_buffer_length == urb->actual_length) {
1447 if (urb->transfer_flags & URB_ZERO_PACKET &&
1448 !to_host)
1449 rescan = 1;
1450 else
1451 *status = 0;
1452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454
1455 /* device side completion --> continuable */
1456 if (req->req.status != -EINPROGRESS) {
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001457 list_del_init(&req->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001459 spin_unlock(&dum->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +02001460 usb_gadget_giveback_request(&ep->ep, &req->req);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001461 spin_lock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 /* requests might have been unlinked... */
1464 rescan = 1;
1465 }
1466
1467 /* host side completion --> terminate */
Alan Stern4d2f1102007-08-24 15:40:10 -04001468 if (*status != -EINPROGRESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 break;
1470
1471 /* rescan to continue with any other queued i/o */
1472 if (rescan)
1473 goto top;
1474 }
Igor Kotrasinski9a9ce1d2015-09-15 16:55:32 +02001475 return sent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
1477
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001478static int periodic_bytes(struct dummy *dum, struct dummy_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
1480 int limit = ep->ep.maxpacket;
1481
1482 if (dum->gadget.speed == USB_SPEED_HIGH) {
1483 int tmp;
1484
1485 /* high bandwidth mode */
Felipe Balbiee8ac8552016-09-28 13:30:59 +03001486 tmp = usb_endpoint_maxp_mult(ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 tmp *= 8 /* applies to entire frame */;
1488 limit += limit * tmp;
1489 }
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001490 if (dum->gadget.speed == USB_SPEED_SUPER) {
Sebastian Andrzej Siewior59f08e62012-01-12 12:53:14 +01001491 switch (usb_endpoint_type(ep->desc)) {
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001492 case USB_ENDPOINT_XFER_ISOC:
1493 /* Sec. 4.4.8.2 USB3.0 Spec */
1494 limit = 3 * 16 * 1024 * 8;
1495 break;
1496 case USB_ENDPOINT_XFER_INT:
1497 /* Sec. 4.4.7.2 USB3.0 Spec */
1498 limit = 3 * 1024 * 8;
1499 break;
1500 case USB_ENDPOINT_XFER_BULK:
1501 default:
1502 break;
1503 }
1504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return limit;
1506}
1507
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001508#define is_active(dum_hcd) ((dum_hcd->port_status & \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1510 USB_PORT_STAT_SUSPEND)) \
1511 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1512
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001513static struct dummy_ep *find_endpoint(struct dummy *dum, u8 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
1515 int i;
1516
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001517 if (!is_active((dum->gadget.speed == USB_SPEED_SUPER ?
1518 dum->ss_hcd : dum->hs_hcd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return NULL;
1520 if ((address & ~USB_DIR_IN) == 0)
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001521 return &dum->ep[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 for (i = 1; i < DUMMY_ENDPOINTS; i++) {
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001523 struct dummy_ep *ep = &dum->ep[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
1525 if (!ep->desc)
1526 continue;
1527 if (ep->desc->bEndpointAddress == address)
1528 return ep;
1529 }
1530 return NULL;
1531}
1532
1533#undef is_active
1534
1535#define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1536#define Dev_InRequest (Dev_Request | USB_DIR_IN)
1537#define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1538#define Intf_InRequest (Intf_Request | USB_DIR_IN)
1539#define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1540#define Ep_InRequest (Ep_Request | USB_DIR_IN)
1541
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001542
1543/**
1544 * handle_control_request() - handles all control transfers
1545 * @dum: pointer to dummy (the_controller)
1546 * @urb: the urb request to handle
1547 * @setup: pointer to the setup data for a USB device control
1548 * request
1549 * @status: pointer to request handling status
1550 *
1551 * Return 0 - if the request was handled
1552 * 1 - if the request wasn't handles
1553 * error code on error
1554 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001555static int handle_control_request(struct dummy_hcd *dum_hcd, struct urb *urb,
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001556 struct usb_ctrlrequest *setup,
1557 int *status)
1558{
1559 struct dummy_ep *ep2;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001560 struct dummy *dum = dum_hcd->dum;
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001561 int ret_val = 1;
1562 unsigned w_index;
1563 unsigned w_value;
1564
1565 w_index = le16_to_cpu(setup->wIndex);
1566 w_value = le16_to_cpu(setup->wValue);
1567 switch (setup->bRequest) {
1568 case USB_REQ_SET_ADDRESS:
1569 if (setup->bRequestType != Dev_Request)
1570 break;
1571 dum->address = w_value;
1572 *status = 0;
1573 dev_dbg(udc_dev(dum), "set_address = %d\n",
1574 w_value);
1575 ret_val = 0;
1576 break;
1577 case USB_REQ_SET_FEATURE:
1578 if (setup->bRequestType == Dev_Request) {
1579 ret_val = 0;
1580 switch (w_value) {
1581 case USB_DEVICE_REMOTE_WAKEUP:
1582 break;
1583 case USB_DEVICE_B_HNP_ENABLE:
1584 dum->gadget.b_hnp_enable = 1;
1585 break;
1586 case USB_DEVICE_A_HNP_SUPPORT:
1587 dum->gadget.a_hnp_support = 1;
1588 break;
1589 case USB_DEVICE_A_ALT_HNP_SUPPORT:
1590 dum->gadget.a_alt_hnp_support = 1;
1591 break;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001592 case USB_DEVICE_U1_ENABLE:
1593 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1594 HCD_USB3)
1595 w_value = USB_DEV_STAT_U1_ENABLED;
1596 else
1597 ret_val = -EOPNOTSUPP;
1598 break;
1599 case USB_DEVICE_U2_ENABLE:
1600 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1601 HCD_USB3)
1602 w_value = USB_DEV_STAT_U2_ENABLED;
1603 else
1604 ret_val = -EOPNOTSUPP;
1605 break;
1606 case USB_DEVICE_LTM_ENABLE:
1607 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1608 HCD_USB3)
1609 w_value = USB_DEV_STAT_LTM_ENABLED;
1610 else
1611 ret_val = -EOPNOTSUPP;
1612 break;
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001613 default:
1614 ret_val = -EOPNOTSUPP;
1615 }
1616 if (ret_val == 0) {
1617 dum->devstatus |= (1 << w_value);
1618 *status = 0;
1619 }
1620 } else if (setup->bRequestType == Ep_Request) {
1621 /* endpoint halt */
1622 ep2 = find_endpoint(dum, w_index);
1623 if (!ep2 || ep2->ep.name == ep0name) {
1624 ret_val = -EOPNOTSUPP;
1625 break;
1626 }
1627 ep2->halted = 1;
1628 ret_val = 0;
1629 *status = 0;
1630 }
1631 break;
1632 case USB_REQ_CLEAR_FEATURE:
1633 if (setup->bRequestType == Dev_Request) {
1634 ret_val = 0;
1635 switch (w_value) {
1636 case USB_DEVICE_REMOTE_WAKEUP:
1637 w_value = USB_DEVICE_REMOTE_WAKEUP;
1638 break;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001639 case USB_DEVICE_U1_ENABLE:
1640 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1641 HCD_USB3)
1642 w_value = USB_DEV_STAT_U1_ENABLED;
1643 else
1644 ret_val = -EOPNOTSUPP;
1645 break;
1646 case USB_DEVICE_U2_ENABLE:
1647 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1648 HCD_USB3)
1649 w_value = USB_DEV_STAT_U2_ENABLED;
1650 else
1651 ret_val = -EOPNOTSUPP;
1652 break;
1653 case USB_DEVICE_LTM_ENABLE:
1654 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1655 HCD_USB3)
1656 w_value = USB_DEV_STAT_LTM_ENABLED;
1657 else
1658 ret_val = -EOPNOTSUPP;
1659 break;
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001660 default:
1661 ret_val = -EOPNOTSUPP;
1662 break;
1663 }
1664 if (ret_val == 0) {
1665 dum->devstatus &= ~(1 << w_value);
1666 *status = 0;
1667 }
1668 } else if (setup->bRequestType == Ep_Request) {
1669 /* endpoint halt */
1670 ep2 = find_endpoint(dum, w_index);
1671 if (!ep2) {
1672 ret_val = -EOPNOTSUPP;
1673 break;
1674 }
1675 if (!ep2->wedged)
1676 ep2->halted = 0;
1677 ret_val = 0;
1678 *status = 0;
1679 }
1680 break;
1681 case USB_REQ_GET_STATUS:
1682 if (setup->bRequestType == Dev_InRequest
1683 || setup->bRequestType == Intf_InRequest
1684 || setup->bRequestType == Ep_InRequest) {
1685 char *buf;
1686 /*
1687 * device: remote wakeup, selfpowered
1688 * interface: nothing
1689 * endpoint: halt
1690 */
1691 buf = (char *)urb->transfer_buffer;
1692 if (urb->transfer_buffer_length > 0) {
1693 if (setup->bRequestType == Ep_InRequest) {
1694 ep2 = find_endpoint(dum, w_index);
1695 if (!ep2) {
1696 ret_val = -EOPNOTSUPP;
1697 break;
1698 }
1699 buf[0] = ep2->halted;
1700 } else if (setup->bRequestType ==
1701 Dev_InRequest) {
1702 buf[0] = (u8)dum->devstatus;
1703 } else
1704 buf[0] = 0;
1705 }
1706 if (urb->transfer_buffer_length > 1)
1707 buf[1] = 0;
1708 urb->actual_length = min_t(u32, 2,
1709 urb->transfer_buffer_length);
1710 ret_val = 0;
1711 *status = 0;
1712 }
1713 break;
1714 }
1715 return ret_val;
1716}
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718/* drive both sides of the transfers; looks like irq handlers to
1719 * both drivers except the callbacks aren't in_irq().
1720 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001721static void dummy_timer(unsigned long _dum_hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001723 struct dummy_hcd *dum_hcd = (struct dummy_hcd *) _dum_hcd;
1724 struct dummy *dum = dum_hcd->dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 struct urbp *urbp, *tmp;
1726 unsigned long flags;
1727 int limit, total;
1728 int i;
1729
1730 /* simplistic model for one frame's bandwidth */
1731 switch (dum->gadget.speed) {
1732 case USB_SPEED_LOW:
1733 total = 8/*bytes*/ * 12/*packets*/;
1734 break;
1735 case USB_SPEED_FULL:
1736 total = 64/*bytes*/ * 19/*packets*/;
1737 break;
1738 case USB_SPEED_HIGH:
1739 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1740 break;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001741 case USB_SPEED_SUPER:
1742 /* Bus speed is 500000 bytes/ms, so use a little less */
1743 total = 490000;
1744 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 default:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001746 dev_err(dummy_dev(dum_hcd), "bogus device speed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 return;
1748 }
1749
1750 /* FIXME if HZ != 1000 this will probably misbehave ... */
1751
1752 /* look at each urb queued by the host side driver */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001753 spin_lock_irqsave(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001755 if (!dum_hcd->udev) {
1756 dev_err(dummy_dev(dum_hcd),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 "timer fired with no URBs pending?\n");
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001758 spin_unlock_irqrestore(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 return;
1760 }
1761
1762 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
Robert Baldyga7a3b8e72015-07-31 16:00:24 +02001763 if (!ep_info[i].name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001765 dum->ep[i].already_seen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767
1768restart:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001769 list_for_each_entry_safe(urbp, tmp, &dum_hcd->urbp_list, urbp_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 struct urb *urb;
1771 struct dummy_request *req;
1772 u8 address;
1773 struct dummy_ep *ep = NULL;
1774 int type;
Alan Stern4d2f1102007-08-24 15:40:10 -04001775 int status = -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 urb = urbp->urb;
Alan Sterneb231052007-08-21 15:40:36 -04001778 if (urb->unlinked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 goto return_urb;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001780 else if (dum_hcd->rh_state != DUMMY_RH_RUNNING)
Alan Stern391eca92005-05-10 15:34:16 -04001781 continue;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001782 type = usb_pipetype(urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 /* used up this frame's non-periodic bandwidth?
1785 * FIXME there's infinite bandwidth for control and
1786 * periodic transfers ... unrealistic.
1787 */
1788 if (total <= 0 && type == PIPE_BULK)
1789 continue;
1790
1791 /* find the gadget's ep for this request (if configured) */
1792 address = usb_pipeendpoint (urb->pipe);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001793 if (usb_pipein(urb->pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 address |= USB_DIR_IN;
1795 ep = find_endpoint(dum, address);
1796 if (!ep) {
1797 /* set_configuration() disagreement */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001798 dev_dbg(dummy_dev(dum_hcd),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 "no ep configured for urb %p\n",
1800 urb);
Alan Stern4d2f1102007-08-24 15:40:10 -04001801 status = -EPROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 goto return_urb;
1803 }
1804
1805 if (ep->already_seen)
1806 continue;
1807 ep->already_seen = 1;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001808 if (ep == &dum->ep[0] && urb->error_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 ep->setup_stage = 1; /* a new urb */
1810 urb->error_count = 0;
1811 }
1812 if (ep->halted && !ep->setup_stage) {
1813 /* NOTE: must not be iso! */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001814 dev_dbg(dummy_dev(dum_hcd), "ep %s halted, urb %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 ep->ep.name, urb);
Alan Stern4d2f1102007-08-24 15:40:10 -04001816 status = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 goto return_urb;
1818 }
1819 /* FIXME make sure both ends agree on maxpacket */
1820
1821 /* handle control requests */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001822 if (ep == &dum->ep[0] && ep->setup_stage) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 struct usb_ctrlrequest setup;
1824 int value = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001826 setup = *(struct usb_ctrlrequest *) urb->setup_packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 /* paranoia, in case of stale queued data */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001828 list_for_each_entry(req, &ep->queue, queue) {
1829 list_del_init(&req->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 req->req.status = -EOVERFLOW;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001831 dev_dbg(udc_dev(dum), "stale req = %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 req);
1833
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001834 spin_unlock(&dum->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +02001835 usb_gadget_giveback_request(&ep->ep, &req->req);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001836 spin_lock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 ep->already_seen = 0;
1838 goto restart;
1839 }
1840
1841 /* gadget driver never sees set_address or operations
1842 * on standard feature flags. some hardware doesn't
1843 * even expose them.
1844 */
1845 ep->last_io = jiffies;
1846 ep->setup_stage = 0;
1847 ep->halted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001849 value = handle_control_request(dum_hcd, urb, &setup,
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001850 &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852 /* gadget driver handles all other requests. block
1853 * until setup() returns; no reentrancy issues etc.
1854 */
1855 if (value > 0) {
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001856 spin_unlock(&dum->lock);
1857 value = dum->driver->setup(&dum->gadget,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 &setup);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001859 spin_lock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
1861 if (value >= 0) {
1862 /* no delays (max 64KB data stage) */
1863 limit = 64*1024;
1864 goto treat_control_like_bulk;
1865 }
1866 /* error, see below */
1867 }
1868
1869 if (value < 0) {
1870 if (value != -EOPNOTSUPP)
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001871 dev_dbg(udc_dev(dum),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 "setup --> %d\n",
1873 value);
Alan Stern4d2f1102007-08-24 15:40:10 -04001874 status = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 urb->actual_length = 0;
1876 }
1877
1878 goto return_urb;
1879 }
1880
1881 /* non-control requests */
1882 limit = total;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001883 switch (usb_pipetype(urb->pipe)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 case PIPE_ISOCHRONOUS:
1885 /* FIXME is it urb->interval since the last xfer?
1886 * use urb->iso_frame_desc[i].
1887 * complete whether or not ep has requests queued.
1888 * report random errors, to debug drivers.
1889 */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001890 limit = max(limit, periodic_bytes(dum, ep));
Alan Stern4d2f1102007-08-24 15:40:10 -04001891 status = -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 break;
1893
1894 case PIPE_INTERRUPT:
1895 /* FIXME is it urb->interval since the last xfer?
1896 * this almost certainly polls too fast.
1897 */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001898 limit = max(limit, periodic_bytes(dum, ep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 /* FALLTHROUGH */
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 default:
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001902treat_control_like_bulk:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 ep->last_io = jiffies;
Igor Kotrasinski9a9ce1d2015-09-15 16:55:32 +02001904 total -= transfer(dum_hcd, urb, ep, limit, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 break;
1906 }
1907
1908 /* incomplete transfer? */
Alan Stern4d2f1102007-08-24 15:40:10 -04001909 if (status == -EINPROGRESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 continue;
1911
1912return_urb:
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001913 list_del(&urbp->urbp_list);
1914 kfree(urbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (ep)
1916 ep->already_seen = ep->setup_stage = 0;
1917
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001918 usb_hcd_unlink_urb_from_ep(dummy_hcd_to_hcd(dum_hcd), urb);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001919 spin_unlock(&dum->lock);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001920 usb_hcd_giveback_urb(dummy_hcd_to_hcd(dum_hcd), urb, status);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001921 spin_lock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 goto restart;
1924 }
1925
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001926 if (list_empty(&dum_hcd->urbp_list)) {
1927 usb_put_dev(dum_hcd->udev);
1928 dum_hcd->udev = NULL;
1929 } else if (dum_hcd->rh_state == DUMMY_RH_RUNNING) {
Alan Stern391eca92005-05-10 15:34:16 -04001930 /* want a 1 msec delay here */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001931 mod_timer(&dum_hcd->timer, jiffies + msecs_to_jiffies(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
1933
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001934 spin_unlock_irqrestore(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935}
1936
1937/*-------------------------------------------------------------------------*/
1938
1939#define PORT_C_MASK \
Alan Sternc2db8b52005-04-29 16:30:48 -04001940 ((USB_PORT_STAT_C_CONNECTION \
1941 | USB_PORT_STAT_C_ENABLE \
1942 | USB_PORT_STAT_C_SUSPEND \
1943 | USB_PORT_STAT_C_OVERCURRENT \
1944 | USB_PORT_STAT_C_RESET) << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001946static int dummy_hub_status(struct usb_hcd *hcd, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001948 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 unsigned long flags;
Alan Stern391eca92005-05-10 15:34:16 -04001950 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001952 dum_hcd = hcd_to_dummy_hcd(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001954 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
Alan Stern541c7d42010-06-22 16:39:10 -04001955 if (!HCD_HW_ACCESSIBLE(hcd))
Alan Stern391eca92005-05-10 15:34:16 -04001956 goto done;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001957
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001958 if (dum_hcd->resuming && time_after_eq(jiffies, dum_hcd->re_timeout)) {
1959 dum_hcd->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1960 dum_hcd->port_status &= ~USB_PORT_STAT_SUSPEND;
1961 set_link_state(dum_hcd);
Alan Sternf1c39fa2005-05-03 16:24:04 -04001962 }
1963
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001964 if ((dum_hcd->port_status & PORT_C_MASK) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 *buf = (1 << 1);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001966 dev_dbg(dummy_dev(dum_hcd), "port status 0x%08x has changes\n",
1967 dum_hcd->port_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 retval = 1;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001969 if (dum_hcd->rh_state == DUMMY_RH_SUSPENDED)
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001970 usb_hcd_resume_root_hub(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 }
Alan Stern391eca92005-05-10 15:34:16 -04001972done:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001973 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 return retval;
1975}
1976
Sebastian Andrzej Siewior3b9c1c52012-08-19 21:54:59 +02001977/* usb 3.0 root hub device descriptor */
Felipe Balbi814cf212013-03-22 16:50:47 +02001978static struct {
Sebastian Andrzej Siewior3b9c1c52012-08-19 21:54:59 +02001979 struct usb_bos_descriptor bos;
1980 struct usb_ss_cap_descriptor ss_cap;
1981} __packed usb3_bos_desc = {
1982
1983 .bos = {
1984 .bLength = USB_DT_BOS_SIZE,
1985 .bDescriptorType = USB_DT_BOS,
1986 .wTotalLength = cpu_to_le16(sizeof(usb3_bos_desc)),
1987 .bNumDeviceCaps = 1,
1988 },
1989 .ss_cap = {
1990 .bLength = USB_DT_USB_SS_CAP_SIZE,
1991 .bDescriptorType = USB_DT_DEVICE_CAPABILITY,
1992 .bDevCapabilityType = USB_SS_CAP_TYPE,
1993 .wSpeedSupported = cpu_to_le16(USB_5GBPS_OPERATION),
1994 .bFunctionalitySupport = ilog2(USB_5GBPS_OPERATION),
1995 },
1996};
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998static inline void
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001999ss_hub_descriptor(struct usb_hub_descriptor *desc)
2000{
2001 memset(desc, 0, sizeof *desc);
Sergei Shtylyov2569ffd2015-03-29 01:39:09 +03002002 desc->bDescriptorType = USB_DT_SS_HUB;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002003 desc->bDescLength = 12;
Sergei Shtylyovd906d612015-01-19 01:55:55 +03002004 desc->wHubCharacteristics = cpu_to_le16(
2005 HUB_CHAR_INDV_PORT_LPSM |
2006 HUB_CHAR_COMMON_OCPM);
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002007 desc->bNbrPorts = 1;
2008 desc->u.ss.bHubHdrDecLat = 0x04; /* Worst case: 0.4 micro sec*/
2009 desc->u.ss.DeviceRemovable = 0xffff;
2010}
2011
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002012static inline void hub_descriptor(struct usb_hub_descriptor *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002014 memset(desc, 0, sizeof *desc);
Sergei Shtylyov2569ffd2015-03-29 01:39:09 +03002015 desc->bDescriptorType = USB_DT_HUB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 desc->bDescLength = 9;
Sergei Shtylyovd906d612015-01-19 01:55:55 +03002017 desc->wHubCharacteristics = cpu_to_le16(
2018 HUB_CHAR_INDV_PORT_LPSM |
2019 HUB_CHAR_COMMON_OCPM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 desc->bNbrPorts = 1;
John Youndbe79bb2001-09-17 00:00:00 -07002021 desc->u.hs.DeviceRemovable[0] = 0xff;
2022 desc->u.hs.DeviceRemovable[1] = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023}
2024
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002025static int dummy_hub_control(
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 struct usb_hcd *hcd,
2027 u16 typeReq,
2028 u16 wValue,
2029 u16 wIndex,
2030 char *buf,
2031 u16 wLength
2032) {
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002033 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 int retval = 0;
2035 unsigned long flags;
2036
Alan Stern541c7d42010-06-22 16:39:10 -04002037 if (!HCD_HW_ACCESSIBLE(hcd))
Alan Stern391eca92005-05-10 15:34:16 -04002038 return -ETIMEDOUT;
2039
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002040 dum_hcd = hcd_to_dummy_hcd(hcd);
2041
2042 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 switch (typeReq) {
2044 case ClearHubFeature:
2045 break;
2046 case ClearPortFeature:
2047 switch (wValue) {
2048 case USB_PORT_FEAT_SUSPEND:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002049 if (hcd->speed == HCD_USB3) {
2050 dev_dbg(dummy_dev(dum_hcd),
2051 "USB_PORT_FEAT_SUSPEND req not "
2052 "supported for USB 3.0 roothub\n");
2053 goto error;
2054 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002055 if (dum_hcd->port_status & USB_PORT_STAT_SUSPEND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 /* 20msec resume signaling */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002057 dum_hcd->resuming = 1;
2058 dum_hcd->re_timeout = jiffies +
Alan Sternf1c39fa2005-05-03 16:24:04 -04002059 msecs_to_jiffies(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
2061 break;
2062 case USB_PORT_FEAT_POWER:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002063 if (hcd->speed == HCD_USB3) {
2064 if (dum_hcd->port_status & USB_PORT_STAT_POWER)
2065 dev_dbg(dummy_dev(dum_hcd),
2066 "power-off\n");
2067 } else
2068 if (dum_hcd->port_status &
2069 USB_SS_PORT_STAT_POWER)
2070 dev_dbg(dummy_dev(dum_hcd),
2071 "power-off\n");
Alan Sternf1c39fa2005-05-03 16:24:04 -04002072 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 default:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002074 dum_hcd->port_status &= ~(1 << wValue);
2075 set_link_state(dum_hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 }
2077 break;
2078 case GetHubDescriptor:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002079 if (hcd->speed == HCD_USB3 &&
2080 (wLength < USB_DT_SS_HUB_SIZE ||
2081 wValue != (USB_DT_SS_HUB << 8))) {
2082 dev_dbg(dummy_dev(dum_hcd),
2083 "Wrong hub descriptor type for "
2084 "USB 3.0 roothub.\n");
2085 goto error;
2086 }
2087 if (hcd->speed == HCD_USB3)
2088 ss_hub_descriptor((struct usb_hub_descriptor *) buf);
2089 else
2090 hub_descriptor((struct usb_hub_descriptor *) buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 break;
Sebastian Andrzej Siewior3b9c1c52012-08-19 21:54:59 +02002092
2093 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
2094 if (hcd->speed != HCD_USB3)
2095 goto error;
2096
2097 if ((wValue >> 8) != USB_DT_BOS)
2098 goto error;
2099
2100 memcpy(buf, &usb3_bos_desc, sizeof(usb3_bos_desc));
2101 retval = sizeof(usb3_bos_desc);
2102 break;
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 case GetHubStatus:
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002105 *(__le32 *) buf = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 break;
2107 case GetPortStatus:
2108 if (wIndex != 1)
2109 retval = -EPIPE;
2110
2111 /* whoever resets or resumes must GetPortStatus to
2112 * complete it!!
2113 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002114 if (dum_hcd->resuming &&
2115 time_after_eq(jiffies, dum_hcd->re_timeout)) {
2116 dum_hcd->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
2117 dum_hcd->port_status &= ~USB_PORT_STAT_SUSPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002119 if ((dum_hcd->port_status & USB_PORT_STAT_RESET) != 0 &&
2120 time_after_eq(jiffies, dum_hcd->re_timeout)) {
2121 dum_hcd->port_status |= (USB_PORT_STAT_C_RESET << 16);
2122 dum_hcd->port_status &= ~USB_PORT_STAT_RESET;
2123 if (dum_hcd->dum->pullup) {
2124 dum_hcd->port_status |= USB_PORT_STAT_ENABLE;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002125
2126 if (hcd->speed < HCD_USB3) {
2127 switch (dum_hcd->dum->gadget.speed) {
2128 case USB_SPEED_HIGH:
2129 dum_hcd->port_status |=
2130 USB_PORT_STAT_HIGH_SPEED;
2131 break;
2132 case USB_SPEED_LOW:
2133 dum_hcd->dum->gadget.ep0->
2134 maxpacket = 8;
2135 dum_hcd->port_status |=
2136 USB_PORT_STAT_LOW_SPEED;
2137 break;
2138 default:
2139 dum_hcd->dum->gadget.speed =
2140 USB_SPEED_FULL;
2141 break;
2142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 }
2144 }
2145 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002146 set_link_state(dum_hcd);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002147 ((__le16 *) buf)[0] = cpu_to_le16(dum_hcd->port_status);
2148 ((__le16 *) buf)[1] = cpu_to_le16(dum_hcd->port_status >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 break;
2150 case SetHubFeature:
2151 retval = -EPIPE;
2152 break;
2153 case SetPortFeature:
2154 switch (wValue) {
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002155 case USB_PORT_FEAT_LINK_STATE:
2156 if (hcd->speed != HCD_USB3) {
2157 dev_dbg(dummy_dev(dum_hcd),
2158 "USB_PORT_FEAT_LINK_STATE req not "
2159 "supported for USB 2.0 roothub\n");
2160 goto error;
2161 }
2162 /*
2163 * Since this is dummy we don't have an actual link so
2164 * there is nothing to do for the SET_LINK_STATE cmd
2165 */
2166 break;
2167 case USB_PORT_FEAT_U1_TIMEOUT:
2168 case USB_PORT_FEAT_U2_TIMEOUT:
2169 /* TODO: add suspend/resume support! */
2170 if (hcd->speed != HCD_USB3) {
2171 dev_dbg(dummy_dev(dum_hcd),
2172 "USB_PORT_FEAT_U1/2_TIMEOUT req not "
2173 "supported for USB 2.0 roothub\n");
2174 goto error;
2175 }
2176 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 case USB_PORT_FEAT_SUSPEND:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002178 /* Applicable only for USB2.0 hub */
2179 if (hcd->speed == HCD_USB3) {
2180 dev_dbg(dummy_dev(dum_hcd),
2181 "USB_PORT_FEAT_SUSPEND req not "
2182 "supported for USB 3.0 roothub\n");
2183 goto error;
2184 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002185 if (dum_hcd->active) {
2186 dum_hcd->port_status |= USB_PORT_STAT_SUSPEND;
Alan Sternf1c39fa2005-05-03 16:24:04 -04002187
2188 /* HNP would happen here; for now we
2189 * assume b_bus_req is always true.
2190 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002191 set_link_state(dum_hcd);
Alan Sternf1c39fa2005-05-03 16:24:04 -04002192 if (((1 << USB_DEVICE_B_HNP_ENABLE)
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002193 & dum_hcd->dum->devstatus) != 0)
2194 dev_dbg(dummy_dev(dum_hcd),
Alan Stern5742b0c2005-05-02 11:25:17 -04002195 "no HNP yet!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 }
2197 break;
Alan Sternf1c39fa2005-05-03 16:24:04 -04002198 case USB_PORT_FEAT_POWER:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002199 if (hcd->speed == HCD_USB3)
2200 dum_hcd->port_status |= USB_SS_PORT_STAT_POWER;
2201 else
2202 dum_hcd->port_status |= USB_PORT_STAT_POWER;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002203 set_link_state(dum_hcd);
Alan Sternf1c39fa2005-05-03 16:24:04 -04002204 break;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002205 case USB_PORT_FEAT_BH_PORT_RESET:
2206 /* Applicable only for USB3.0 hub */
2207 if (hcd->speed != HCD_USB3) {
2208 dev_dbg(dummy_dev(dum_hcd),
2209 "USB_PORT_FEAT_BH_PORT_RESET req not "
2210 "supported for USB 2.0 roothub\n");
2211 goto error;
2212 }
2213 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 case USB_PORT_FEAT_RESET:
Alan Sternf1c39fa2005-05-03 16:24:04 -04002215 /* if it's already enabled, disable */
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002216 if (hcd->speed == HCD_USB3) {
2217 dum_hcd->port_status = 0;
2218 dum_hcd->port_status =
2219 (USB_SS_PORT_STAT_POWER |
2220 USB_PORT_STAT_CONNECTION |
2221 USB_PORT_STAT_RESET);
2222 } else
2223 dum_hcd->port_status &= ~(USB_PORT_STAT_ENABLE
Alan Sternf1c39fa2005-05-03 16:24:04 -04002224 | USB_PORT_STAT_LOW_SPEED
2225 | USB_PORT_STAT_HIGH_SPEED);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002226 /*
2227 * We want to reset device status. All but the
2228 * Self powered feature
2229 */
2230 dum_hcd->dum->devstatus &=
2231 (1 << USB_DEVICE_SELF_POWERED);
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002232 /*
2233 * FIXME USB3.0: what is the correct reset signaling
2234 * interval? Is it still 50msec as for HS?
2235 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002236 dum_hcd->re_timeout = jiffies + msecs_to_jiffies(50);
Alan Sternf1c39fa2005-05-03 16:24:04 -04002237 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 default:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002239 if (hcd->speed == HCD_USB3) {
2240 if ((dum_hcd->port_status &
2241 USB_SS_PORT_STAT_POWER) != 0) {
2242 dum_hcd->port_status |= (1 << wValue);
2243 set_link_state(dum_hcd);
2244 }
2245 } else
2246 if ((dum_hcd->port_status &
2247 USB_PORT_STAT_POWER) != 0) {
2248 dum_hcd->port_status |= (1 << wValue);
2249 set_link_state(dum_hcd);
2250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 }
2252 break;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002253 case GetPortErrorCount:
2254 if (hcd->speed != HCD_USB3) {
2255 dev_dbg(dummy_dev(dum_hcd),
2256 "GetPortErrorCount req not "
2257 "supported for USB 2.0 roothub\n");
2258 goto error;
2259 }
2260 /* We'll always return 0 since this is a dummy hub */
2261 *(__le32 *) buf = cpu_to_le32(0);
2262 break;
2263 case SetHubDepth:
2264 if (hcd->speed != HCD_USB3) {
2265 dev_dbg(dummy_dev(dum_hcd),
2266 "SetHubDepth req not supported for "
2267 "USB 2.0 roothub\n");
2268 goto error;
2269 }
2270 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 default:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002272 dev_dbg(dummy_dev(dum_hcd),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 "hub control req%04x v%04x i%04x l%d\n",
2274 typeReq, wValue, wIndex, wLength);
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002275error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 /* "protocol stall" on error */
2277 retval = -EPIPE;
2278 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002279 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
Alan Stern685eb932005-05-03 16:27:26 -04002280
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002281 if ((dum_hcd->port_status & PORT_C_MASK) != 0)
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002282 usb_hcd_poll_rh_status(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return retval;
2284}
2285
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002286static int dummy_bus_suspend(struct usb_hcd *hcd)
Alan Stern391eca92005-05-10 15:34:16 -04002287{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002288 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
Alan Stern391eca92005-05-10 15:34:16 -04002289
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002290 dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
Alan Stern3cf0a222005-11-29 12:08:15 -05002291
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002292 spin_lock_irq(&dum_hcd->dum->lock);
2293 dum_hcd->rh_state = DUMMY_RH_SUSPENDED;
2294 set_link_state(dum_hcd);
Alan Stern3cf0a222005-11-29 12:08:15 -05002295 hcd->state = HC_STATE_SUSPENDED;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002296 spin_unlock_irq(&dum_hcd->dum->lock);
Alan Stern391eca92005-05-10 15:34:16 -04002297 return 0;
2298}
2299
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002300static int dummy_bus_resume(struct usb_hcd *hcd)
Alan Stern391eca92005-05-10 15:34:16 -04002301{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002302 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
Alan Stern3cf0a222005-11-29 12:08:15 -05002303 int rc = 0;
2304
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002305 dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -04002306
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002307 spin_lock_irq(&dum_hcd->dum->lock);
Alan Stern541c7d42010-06-22 16:39:10 -04002308 if (!HCD_HW_ACCESSIBLE(hcd)) {
Alan Sterncfa59da2007-06-21 16:25:35 -04002309 rc = -ESHUTDOWN;
Alan Stern3cf0a222005-11-29 12:08:15 -05002310 } else {
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002311 dum_hcd->rh_state = DUMMY_RH_RUNNING;
2312 set_link_state(dum_hcd);
2313 if (!list_empty(&dum_hcd->urbp_list))
2314 mod_timer(&dum_hcd->timer, jiffies);
Alan Stern3cf0a222005-11-29 12:08:15 -05002315 hcd->state = HC_STATE_RUNNING;
2316 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002317 spin_unlock_irq(&dum_hcd->dum->lock);
Alan Stern3cf0a222005-11-29 12:08:15 -05002318 return rc;
Alan Stern391eca92005-05-10 15:34:16 -04002319}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321/*-------------------------------------------------------------------------*/
2322
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002323static inline ssize_t show_urb(char *buf, size_t size, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002325 int ep = usb_pipeendpoint(urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002327 return snprintf(buf, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 "urb/%p %s ep%d%s%s len %d/%d\n",
2329 urb,
2330 ({ char *s;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002331 switch (urb->dev->speed) {
2332 case USB_SPEED_LOW:
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002333 s = "ls";
2334 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002335 case USB_SPEED_FULL:
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002336 s = "fs";
2337 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002338 case USB_SPEED_HIGH:
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002339 s = "hs";
2340 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002341 case USB_SPEED_SUPER:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002342 s = "ss";
2343 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002344 default:
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002345 s = "?";
2346 break;
Joe Perches2b84f922013-10-08 16:01:37 -07002347 } s; }),
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002348 ep, ep ? (usb_pipein(urb->pipe) ? "in" : "out") : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 ({ char *s; \
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002350 switch (usb_pipetype(urb->pipe)) { \
2351 case PIPE_CONTROL: \
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002352 s = ""; \
2353 break; \
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002354 case PIPE_BULK: \
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002355 s = "-bulk"; \
2356 break; \
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002357 case PIPE_INTERRUPT: \
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002358 s = "-int"; \
2359 break; \
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002360 default: \
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002361 s = "-iso"; \
2362 break; \
Joe Perches2b84f922013-10-08 16:01:37 -07002363 } s; }),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 urb->actual_length, urb->transfer_buffer_length);
2365}
2366
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07002367static ssize_t urbs_show(struct device *dev, struct device_attribute *attr,
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002368 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002370 struct usb_hcd *hcd = dev_get_drvdata(dev);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002371 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 struct urbp *urbp;
2373 size_t size = 0;
2374 unsigned long flags;
2375
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002376 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2377 list_for_each_entry(urbp, &dum_hcd->urbp_list, urbp_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 size_t temp;
2379
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002380 temp = show_urb(buf, PAGE_SIZE - size, urbp->urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 buf += temp;
2382 size += temp;
2383 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002384 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385
2386 return size;
2387}
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07002388static DEVICE_ATTR_RO(urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002390static int dummy_start_ss(struct dummy_hcd *dum_hcd)
2391{
2392 init_timer(&dum_hcd->timer);
2393 dum_hcd->timer.function = dummy_timer;
2394 dum_hcd->timer.data = (unsigned long)dum_hcd;
2395 dum_hcd->rh_state = DUMMY_RH_RUNNING;
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01002396 dum_hcd->stream_en_ep = 0;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002397 INIT_LIST_HEAD(&dum_hcd->urbp_list);
2398 dummy_hcd_to_hcd(dum_hcd)->power_budget = POWER_BUDGET;
2399 dummy_hcd_to_hcd(dum_hcd)->state = HC_STATE_RUNNING;
2400 dummy_hcd_to_hcd(dum_hcd)->uses_new_polling = 1;
2401#ifdef CONFIG_USB_OTG
2402 dummy_hcd_to_hcd(dum_hcd)->self.otg_port = 1;
2403#endif
2404 return 0;
2405
2406 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
2407 return device_create_file(dummy_dev(dum_hcd), &dev_attr_urbs);
2408}
2409
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002410static int dummy_start(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002412 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414 /*
2415 * MASTER side init ... we emulate a root hub that'll only ever
2416 * talk to one device (the slave side). Also appears in sysfs,
2417 * just like more familiar pci-based HCDs.
2418 */
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002419 if (!usb_hcd_is_primary_hcd(hcd))
2420 return dummy_start_ss(dum_hcd);
2421
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002422 spin_lock_init(&dum_hcd->dum->lock);
2423 init_timer(&dum_hcd->timer);
2424 dum_hcd->timer.function = dummy_timer;
2425 dum_hcd->timer.data = (unsigned long)dum_hcd;
2426 dum_hcd->rh_state = DUMMY_RH_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002428 INIT_LIST_HEAD(&dum_hcd->urbp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
Alan Sterncaf29f62007-12-06 11:10:39 -05002430 hcd->power_budget = POWER_BUDGET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 hcd->state = HC_STATE_RUNNING;
Alan Stern685eb932005-05-03 16:27:26 -04002432 hcd->uses_new_polling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Alan Stern5742b0c2005-05-02 11:25:17 -04002434#ifdef CONFIG_USB_OTG
2435 hcd->self.otg_port = 1;
2436#endif
2437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002439 return device_create_file(dummy_dev(dum_hcd), &dev_attr_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440}
2441
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002442static void dummy_stop(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002444 device_remove_file(dummy_dev(hcd_to_dummy_hcd(hcd)), &dev_attr_urbs);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002445 dev_info(dummy_dev(hcd_to_dummy_hcd(hcd)), "stopped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446}
2447
2448/*-------------------------------------------------------------------------*/
2449
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002450static int dummy_h_get_frame(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002452 return dummy_g_get_frame(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453}
2454
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002455static int dummy_setup(struct usb_hcd *hcd)
2456{
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002457 struct dummy *dum;
2458
2459 dum = *((void **)dev_get_platdata(hcd->self.controller));
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01002460 hcd->self.sg_tablesize = ~0;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002461 if (usb_hcd_is_primary_hcd(hcd)) {
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002462 dum->hs_hcd = hcd_to_dummy_hcd(hcd);
2463 dum->hs_hcd->dum = dum;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002464 /*
2465 * Mark the first roothub as being USB 2.0.
2466 * The USB 3.0 roothub will be registered later by
2467 * dummy_hcd_probe()
2468 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002469 hcd->speed = HCD_USB2;
2470 hcd->self.root_hub->speed = USB_SPEED_HIGH;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002471 } else {
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002472 dum->ss_hcd = hcd_to_dummy_hcd(hcd);
2473 dum->ss_hcd->dum = dum;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002474 hcd->speed = HCD_USB3;
2475 hcd->self.root_hub->speed = USB_SPEED_SUPER;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002476 }
2477 return 0;
2478}
2479
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002480/* Change a group of bulk endpoints to support multiple stream IDs */
Sebastian Andrzej Siewiord81f3e42012-01-09 13:15:00 +01002481static int dummy_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002482 struct usb_host_endpoint **eps, unsigned int num_eps,
2483 unsigned int num_streams, gfp_t mem_flags)
2484{
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01002485 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
2486 unsigned long flags;
2487 int max_stream;
2488 int ret_streams = num_streams;
2489 unsigned int index;
2490 unsigned int i;
2491
2492 if (!num_eps)
2493 return -EINVAL;
2494
2495 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2496 for (i = 0; i < num_eps; i++) {
2497 index = dummy_get_ep_idx(&eps[i]->desc);
2498 if ((1 << index) & dum_hcd->stream_en_ep) {
2499 ret_streams = -EINVAL;
2500 goto out;
2501 }
2502 max_stream = usb_ss_max_streams(&eps[i]->ss_ep_comp);
2503 if (!max_stream) {
2504 ret_streams = -EINVAL;
2505 goto out;
2506 }
2507 if (max_stream < ret_streams) {
2508 dev_dbg(dummy_dev(dum_hcd), "Ep 0x%x only supports %u "
2509 "stream IDs.\n",
2510 eps[i]->desc.bEndpointAddress,
2511 max_stream);
2512 ret_streams = max_stream;
2513 }
2514 }
2515
2516 for (i = 0; i < num_eps; i++) {
2517 index = dummy_get_ep_idx(&eps[i]->desc);
2518 dum_hcd->stream_en_ep |= 1 << index;
2519 set_max_streams_for_pipe(dum_hcd,
2520 usb_endpoint_num(&eps[i]->desc), ret_streams);
2521 }
2522out:
2523 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
2524 return ret_streams;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002525}
2526
2527/* Reverts a group of bulk endpoints back to not using stream IDs. */
Sebastian Andrzej Siewiord81f3e42012-01-09 13:15:00 +01002528static int dummy_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002529 struct usb_host_endpoint **eps, unsigned int num_eps,
2530 gfp_t mem_flags)
2531{
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01002532 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
2533 unsigned long flags;
2534 int ret;
2535 unsigned int index;
2536 unsigned int i;
2537
2538 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2539 for (i = 0; i < num_eps; i++) {
2540 index = dummy_get_ep_idx(&eps[i]->desc);
2541 if (!((1 << index) & dum_hcd->stream_en_ep)) {
2542 ret = -EINVAL;
2543 goto out;
2544 }
2545 }
2546
2547 for (i = 0; i < num_eps; i++) {
2548 index = dummy_get_ep_idx(&eps[i]->desc);
2549 dum_hcd->stream_en_ep &= ~(1 << index);
2550 set_max_streams_for_pipe(dum_hcd,
2551 usb_endpoint_num(&eps[i]->desc), 0);
2552 }
2553 ret = 0;
2554out:
2555 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
2556 return ret;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002557}
2558
2559static struct hc_driver dummy_hcd = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 .description = (char *) driver_name,
2561 .product_desc = "Dummy host controller",
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002562 .hcd_priv_size = sizeof(struct dummy_hcd),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002564 .flags = HCD_USB3 | HCD_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002566 .reset = dummy_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 .start = dummy_start,
2568 .stop = dummy_stop,
2569
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002570 .urb_enqueue = dummy_urb_enqueue,
2571 .urb_dequeue = dummy_urb_dequeue,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002573 .get_frame_number = dummy_h_get_frame,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002575 .hub_status_data = dummy_hub_status,
2576 .hub_control = dummy_hub_control,
Alan Stern0c0382e2005-10-13 17:08:02 -04002577 .bus_suspend = dummy_bus_suspend,
2578 .bus_resume = dummy_bus_resume,
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002579
2580 .alloc_streams = dummy_alloc_streams,
2581 .free_streams = dummy_free_streams,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582};
2583
Alan Stern8364d6b2005-11-14 12:16:30 -05002584static int dummy_hcd_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002586 struct dummy *dum;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002587 struct usb_hcd *hs_hcd;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002588 struct usb_hcd *ss_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 int retval;
2590
Alan Stern8364d6b2005-11-14 12:16:30 -05002591 dev_info(&pdev->dev, "%s, driver " DRIVER_VERSION "\n", driver_desc);
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002592 dum = *((void **)dev_get_platdata(&pdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002594 if (!mod_data.is_super_speed)
2595 dummy_hcd.flags = HCD_USB2;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002596 hs_hcd = usb_create_hcd(&dummy_hcd, &pdev->dev, dev_name(&pdev->dev));
2597 if (!hs_hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 return -ENOMEM;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002599 hs_hcd->has_tt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002601 retval = usb_add_hcd(hs_hcd, 0, 0);
Sebastian Andrzej Siewior1b68a4c2012-08-19 21:54:58 +02002602 if (retval)
2603 goto put_usb2_hcd;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002604
2605 if (mod_data.is_super_speed) {
2606 ss_hcd = usb_create_shared_hcd(&dummy_hcd, &pdev->dev,
2607 dev_name(&pdev->dev), hs_hcd);
2608 if (!ss_hcd) {
2609 retval = -ENOMEM;
2610 goto dealloc_usb2_hcd;
2611 }
2612
2613 retval = usb_add_hcd(ss_hcd, 0, 0);
2614 if (retval)
2615 goto put_usb3_hcd;
2616 }
2617 return 0;
2618
2619put_usb3_hcd:
2620 usb_put_hcd(ss_hcd);
2621dealloc_usb2_hcd:
Sebastian Andrzej Siewior1b68a4c2012-08-19 21:54:58 +02002622 usb_remove_hcd(hs_hcd);
2623put_usb2_hcd:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002624 usb_put_hcd(hs_hcd);
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002625 dum->hs_hcd = dum->ss_hcd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 return retval;
2627}
2628
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002629static int dummy_hcd_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002631 struct dummy *dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002633 dum = hcd_to_dummy_hcd(platform_get_drvdata(pdev))->dum;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002634
2635 if (dum->ss_hcd) {
2636 usb_remove_hcd(dummy_hcd_to_hcd(dum->ss_hcd));
2637 usb_put_hcd(dummy_hcd_to_hcd(dum->ss_hcd));
2638 }
2639
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002640 usb_remove_hcd(dummy_hcd_to_hcd(dum->hs_hcd));
2641 usb_put_hcd(dummy_hcd_to_hcd(dum->hs_hcd));
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002642
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002643 dum->hs_hcd = NULL;
2644 dum->ss_hcd = NULL;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002645
Alan Sternd9b76252005-05-03 16:15:43 -04002646 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647}
2648
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002649static int dummy_hcd_suspend(struct platform_device *pdev, pm_message_t state)
Alan Stern391eca92005-05-10 15:34:16 -04002650{
2651 struct usb_hcd *hcd;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002652 struct dummy_hcd *dum_hcd;
Alan Stern3cf0a222005-11-29 12:08:15 -05002653 int rc = 0;
Alan Stern391eca92005-05-10 15:34:16 -04002654
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002655 dev_dbg(&pdev->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -04002656
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002657 hcd = platform_get_drvdata(pdev);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002658 dum_hcd = hcd_to_dummy_hcd(hcd);
2659 if (dum_hcd->rh_state == DUMMY_RH_RUNNING) {
Alan Stern3cf0a222005-11-29 12:08:15 -05002660 dev_warn(&pdev->dev, "Root hub isn't suspended!\n");
2661 rc = -EBUSY;
2662 } else
2663 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
2664 return rc;
Alan Stern391eca92005-05-10 15:34:16 -04002665}
2666
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002667static int dummy_hcd_resume(struct platform_device *pdev)
Alan Stern391eca92005-05-10 15:34:16 -04002668{
2669 struct usb_hcd *hcd;
2670
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002671 dev_dbg(&pdev->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -04002672
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002673 hcd = platform_get_drvdata(pdev);
Alan Stern3cf0a222005-11-29 12:08:15 -05002674 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002675 usb_hcd_poll_rh_status(hcd);
Alan Stern391eca92005-05-10 15:34:16 -04002676 return 0;
2677}
2678
Russell King3ae5eae2005-11-09 22:32:44 +00002679static struct platform_driver dummy_hcd_driver = {
Alan Sternd9b76252005-05-03 16:15:43 -04002680 .probe = dummy_hcd_probe,
2681 .remove = dummy_hcd_remove,
Alan Stern391eca92005-05-10 15:34:16 -04002682 .suspend = dummy_hcd_suspend,
2683 .resume = dummy_hcd_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00002684 .driver = {
2685 .name = (char *) driver_name,
Russell King3ae5eae2005-11-09 22:32:44 +00002686 },
Alan Sternd9b76252005-05-03 16:15:43 -04002687};
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689/*-------------------------------------------------------------------------*/
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002690#define MAX_NUM_UDC 2
Sebastian Andrzej Siewiorb2113132012-10-30 12:53:17 +01002691static struct platform_device *the_udc_pdev[MAX_NUM_UDC];
2692static struct platform_device *the_hcd_pdev[MAX_NUM_UDC];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002694static int __init init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
Alan Sterna89a2cd2008-04-07 15:03:25 -04002696 int retval = -ENOMEM;
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002697 int i;
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002698 struct dummy *dum[MAX_NUM_UDC];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002700 if (usb_disabled())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 return -ENODEV;
Alan Sternd9b76252005-05-03 16:15:43 -04002702
Tatyana Brokhman7eca4c52011-06-29 16:41:53 +03002703 if (!mod_data.is_high_speed && mod_data.is_super_speed)
2704 return -EINVAL;
2705
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002706 if (mod_data.num < 1 || mod_data.num > MAX_NUM_UDC) {
Rasmus Villemoesfa84acf2015-02-06 00:42:00 +01002707 pr_err("Number of emulated UDC must be in range of 1...%d\n",
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002708 MAX_NUM_UDC);
2709 return -EINVAL;
2710 }
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002711
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002712 for (i = 0; i < mod_data.num; i++) {
2713 the_hcd_pdev[i] = platform_device_alloc(driver_name, i);
2714 if (!the_hcd_pdev[i]) {
2715 i--;
2716 while (i >= 0)
2717 platform_device_put(the_hcd_pdev[i--]);
2718 return retval;
2719 }
2720 }
2721 for (i = 0; i < mod_data.num; i++) {
2722 the_udc_pdev[i] = platform_device_alloc(gadget_name, i);
2723 if (!the_udc_pdev[i]) {
2724 i--;
2725 while (i >= 0)
2726 platform_device_put(the_udc_pdev[i--]);
2727 goto err_alloc_udc;
2728 }
2729 }
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002730 for (i = 0; i < mod_data.num; i++) {
2731 dum[i] = kzalloc(sizeof(struct dummy), GFP_KERNEL);
Wei Yongjun481d3042013-05-07 19:50:06 +08002732 if (!dum[i]) {
2733 retval = -ENOMEM;
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002734 goto err_add_pdata;
Wei Yongjun481d3042013-05-07 19:50:06 +08002735 }
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002736 retval = platform_device_add_data(the_hcd_pdev[i], &dum[i],
2737 sizeof(void *));
2738 if (retval)
2739 goto err_add_pdata;
2740 retval = platform_device_add_data(the_udc_pdev[i], &dum[i],
2741 sizeof(void *));
2742 if (retval)
2743 goto err_add_pdata;
2744 }
Alan Sternd9b76252005-05-03 16:15:43 -04002745
Alan Sterna89a2cd2008-04-07 15:03:25 -04002746 retval = platform_driver_register(&dummy_hcd_driver);
2747 if (retval < 0)
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002748 goto err_add_pdata;
Alan Sterna89a2cd2008-04-07 15:03:25 -04002749 retval = platform_driver_register(&dummy_udc_driver);
Alan Sternd9b76252005-05-03 16:15:43 -04002750 if (retval < 0)
2751 goto err_register_udc_driver;
2752
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002753 for (i = 0; i < mod_data.num; i++) {
2754 retval = platform_device_add(the_hcd_pdev[i]);
2755 if (retval < 0) {
2756 i--;
2757 while (i >= 0)
2758 platform_device_del(the_hcd_pdev[i--]);
2759 goto err_add_hcd;
2760 }
2761 }
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002762 for (i = 0; i < mod_data.num; i++) {
2763 if (!dum[i]->hs_hcd ||
2764 (!dum[i]->ss_hcd && mod_data.is_super_speed)) {
2765 /*
2766 * The hcd was added successfully but its probe
2767 * function failed for some reason.
2768 */
2769 retval = -EINVAL;
2770 goto err_add_udc;
2771 }
Sebastian Andrzej Siewior865835f2011-04-15 20:37:06 +02002772 }
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002773
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002774 for (i = 0; i < mod_data.num; i++) {
2775 retval = platform_device_add(the_udc_pdev[i]);
2776 if (retval < 0) {
2777 i--;
2778 while (i >= 0)
2779 platform_device_del(the_udc_pdev[i]);
2780 goto err_add_udc;
2781 }
2782 }
2783
2784 for (i = 0; i < mod_data.num; i++) {
2785 if (!platform_get_drvdata(the_udc_pdev[i])) {
2786 /*
2787 * The udc was added successfully but its probe
2788 * function failed for some reason.
2789 */
2790 retval = -EINVAL;
2791 goto err_probe_udc;
2792 }
Sebastian Andrzej Siewior865835f2011-04-15 20:37:06 +02002793 }
Alan Sternd9b76252005-05-03 16:15:43 -04002794 return retval;
2795
Sebastian Andrzej Siewior865835f2011-04-15 20:37:06 +02002796err_probe_udc:
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002797 for (i = 0; i < mod_data.num; i++)
2798 platform_device_del(the_udc_pdev[i]);
Alan Sterna89a2cd2008-04-07 15:03:25 -04002799err_add_udc:
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002800 for (i = 0; i < mod_data.num; i++)
2801 platform_device_del(the_hcd_pdev[i]);
Alan Sterna89a2cd2008-04-07 15:03:25 -04002802err_add_hcd:
2803 platform_driver_unregister(&dummy_udc_driver);
Alan Sternd9b76252005-05-03 16:15:43 -04002804err_register_udc_driver:
Alan Sterna89a2cd2008-04-07 15:03:25 -04002805 platform_driver_unregister(&dummy_hcd_driver);
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002806err_add_pdata:
2807 for (i = 0; i < mod_data.num; i++)
2808 kfree(dum[i]);
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002809 for (i = 0; i < mod_data.num; i++)
2810 platform_device_put(the_udc_pdev[i]);
Alan Sterna89a2cd2008-04-07 15:03:25 -04002811err_alloc_udc:
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002812 for (i = 0; i < mod_data.num; i++)
2813 platform_device_put(the_hcd_pdev[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 return retval;
2815}
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002816module_init(init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002818static void __exit cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819{
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002820 int i;
2821
2822 for (i = 0; i < mod_data.num; i++) {
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002823 struct dummy *dum;
2824
2825 dum = *((void **)dev_get_platdata(&the_udc_pdev[i]->dev));
2826
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002827 platform_device_unregister(the_udc_pdev[i]);
2828 platform_device_unregister(the_hcd_pdev[i]);
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002829 kfree(dum);
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002830 }
Alan Sterna89a2cd2008-04-07 15:03:25 -04002831 platform_driver_unregister(&dummy_udc_driver);
2832 platform_driver_unregister(&dummy_hcd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833}
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002834module_exit(cleanup);