blob: 69a0b3fa4737078a526625d2288f2b9c5369b43b [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 */
Kuninori Morimoto29cc8892011-08-23 03:12:03 -0700506 max = usb_endpoint_maxp(desc) & 0x7ff;
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{
650 struct dummy_ep *ep;
651 struct dummy_request *req;
652
653 if (!_ep)
654 return NULL;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100655 ep = usb_ep_to_dummy_ep(_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800657 req = kzalloc(sizeof(*req), mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (!req)
659 return NULL;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100660 INIT_LIST_HEAD(&req->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return &req->req;
662}
663
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100664static void dummy_free_request(struct usb_ep *_ep, struct usb_request *_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 struct dummy_request *req;
667
Sebastian Andrzej Siewiorf99987b2012-02-09 09:24:59 +0100668 if (!_ep || !_req) {
Sasha Levin72688dc2012-05-11 06:39:37 +0200669 WARN_ON(1);
Sebastian Andrzej Siewior20edfbb2012-01-25 15:18:58 +0100670 return;
Sebastian Andrzej Siewiorf99987b2012-02-09 09:24:59 +0100671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100673 req = usb_request_to_dummy_request(_req);
674 WARN_ON(!list_empty(&req->queue));
675 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100678static void fifo_complete(struct usb_ep *ep, struct usb_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680}
681
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100682static int dummy_queue(struct usb_ep *_ep, struct usb_request *_req,
Al Viro55016f12005-10-21 03:21:58 -0400683 gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 struct dummy_ep *ep;
686 struct dummy_request *req;
687 struct dummy *dum;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300688 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 unsigned long flags;
690
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100691 req = usb_request_to_dummy_request(_req);
692 if (!_req || !list_empty(&req->queue) || !_req->complete)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return -EINVAL;
694
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100695 ep = usb_ep_to_dummy_ep(_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (!_ep || (!ep->desc && _ep->name != ep0name))
697 return -EINVAL;
698
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100699 dum = ep_to_dummy(ep);
Sebastian Andrzej Siewior719e52c2011-06-16 20:36:57 +0200700 dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300701 if (!dum->driver || !is_enabled(dum_hcd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return -ESHUTDOWN;
703
704#if 0
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100705 dev_dbg(udc_dev(dum), "ep %p queue req %p to %s, len %d buf %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 ep, _req, _ep->name, _req->length, _req->buf);
707#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 _req->status = -EINPROGRESS;
709 _req->actual = 0;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100710 spin_lock_irqsave(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 /* implement an emulated single-request FIFO */
713 if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100714 list_empty(&dum->fifo_req.queue) &&
715 list_empty(&ep->queue) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 _req->length <= FIFO_SIZE) {
717 req = &dum->fifo_req;
718 req->req = *_req;
719 req->req.buf = dum->fifo_buf;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100720 memcpy(dum->fifo_buf, _req->buf, _req->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 req->req.context = dum;
722 req->req.complete = fifo_complete;
723
David Brownellc728df72008-07-26 08:06:24 -0700724 list_add_tail(&req->queue, &ep->queue);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100725 spin_unlock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 _req->actual = _req->length;
727 _req->status = 0;
Michal Sojka304f7e52014-09-24 22:43:19 +0200728 usb_gadget_giveback_request(_ep, _req);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100729 spin_lock(&dum->lock);
David Brownellc728df72008-07-26 08:06:24 -0700730 } else
731 list_add_tail(&req->queue, &ep->queue);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100732 spin_unlock_irqrestore(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 /* real hardware would likely enable transfers here, in case
735 * it'd been left NAKing.
736 */
737 return 0;
738}
739
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100740static int dummy_dequeue(struct usb_ep *_ep, struct usb_request *_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
742 struct dummy_ep *ep;
743 struct dummy *dum;
744 int retval = -EINVAL;
745 unsigned long flags;
746 struct dummy_request *req = NULL;
747
748 if (!_ep || !_req)
749 return retval;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100750 ep = usb_ep_to_dummy_ep(_ep);
751 dum = ep_to_dummy(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 if (!dum->driver)
754 return -ESHUTDOWN;
755
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100756 local_irq_save(flags);
757 spin_lock(&dum->lock);
758 list_for_each_entry(req, &ep->queue, queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (&req->req == _req) {
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100760 list_del_init(&req->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 _req->status = -ECONNRESET;
762 retval = 0;
763 break;
764 }
765 }
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100766 spin_unlock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 if (retval == 0) {
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100769 dev_dbg(udc_dev(dum),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 "dequeued req %p from %s, len %d buf %p\n",
771 req, _ep->name, _req->length, _req->buf);
Michal Sojka304f7e52014-09-24 22:43:19 +0200772 usb_gadget_giveback_request(_ep, _req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100774 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return retval;
776}
777
778static int
Alan Stern851a5262008-08-14 15:48:30 -0400779dummy_set_halt_and_wedge(struct usb_ep *_ep, int value, int wedged)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 struct dummy_ep *ep;
782 struct dummy *dum;
783
784 if (!_ep)
785 return -EINVAL;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100786 ep = usb_ep_to_dummy_ep(_ep);
787 dum = ep_to_dummy(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (!dum->driver)
789 return -ESHUTDOWN;
790 if (!value)
Alan Stern851a5262008-08-14 15:48:30 -0400791 ep->halted = ep->wedged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 else if (ep->desc && (ep->desc->bEndpointAddress & USB_DIR_IN) &&
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100793 !list_empty(&ep->queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return -EAGAIN;
Alan Stern851a5262008-08-14 15:48:30 -0400795 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 ep->halted = 1;
Alan Stern851a5262008-08-14 15:48:30 -0400797 if (wedged)
798 ep->wedged = 1;
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /* FIXME clear emulated data toggle too */
801 return 0;
802}
803
Alan Stern851a5262008-08-14 15:48:30 -0400804static int
805dummy_set_halt(struct usb_ep *_ep, int value)
806{
807 return dummy_set_halt_and_wedge(_ep, value, 0);
808}
809
810static int dummy_set_wedge(struct usb_ep *_ep)
811{
812 if (!_ep || _ep->name == ep0name)
813 return -EINVAL;
814 return dummy_set_halt_and_wedge(_ep, 1, 1);
815}
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817static const struct usb_ep_ops dummy_ep_ops = {
818 .enable = dummy_enable,
819 .disable = dummy_disable,
820
821 .alloc_request = dummy_alloc_request,
822 .free_request = dummy_free_request,
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 .queue = dummy_queue,
825 .dequeue = dummy_dequeue,
826
827 .set_halt = dummy_set_halt,
Alan Stern851a5262008-08-14 15:48:30 -0400828 .set_wedge = dummy_set_wedge,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829};
830
831/*-------------------------------------------------------------------------*/
832
833/* there are both host and device side versions of this call ... */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100834static int dummy_g_get_frame(struct usb_gadget *_gadget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 struct timeval tv;
837
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100838 do_gettimeofday(&tv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return tv.tv_usec / 1000;
840}
841
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100842static int dummy_wakeup(struct usb_gadget *_gadget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300844 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300846 dum_hcd = gadget_to_dummy_hcd(_gadget);
847 if (!(dum_hcd->dum->devstatus & ((1 << USB_DEVICE_B_HNP_ENABLE)
Alan Stern5742b0c2005-05-02 11:25:17 -0400848 | (1 << USB_DEVICE_REMOTE_WAKEUP))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return -EINVAL;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300850 if ((dum_hcd->port_status & USB_PORT_STAT_CONNECTION) == 0)
Alan Stern391eca92005-05-10 15:34:16 -0400851 return -ENOLINK;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300852 if ((dum_hcd->port_status & USB_PORT_STAT_SUSPEND) == 0 &&
853 dum_hcd->rh_state != DUMMY_RH_SUSPENDED)
Alan Stern391eca92005-05-10 15:34:16 -0400854 return -EIO;
855
856 /* FIXME: What if the root hub is suspended but the port isn't? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 /* hub notices our request, issues downstream resume, etc */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +0300859 dum_hcd->resuming = 1;
860 dum_hcd->re_timeout = jiffies + msecs_to_jiffies(20);
861 mod_timer(&dummy_hcd_to_hcd(dum_hcd)->rh_timer, dum_hcd->re_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return 0;
863}
864
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100865static int dummy_set_selfpowered(struct usb_gadget *_gadget, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
867 struct dummy *dum;
868
Peter Chen5d9cb6a2015-01-28 16:32:30 +0800869 _gadget->is_selfpowered = (value != 0);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100870 dum = gadget_to_dummy_hcd(_gadget)->dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (value)
872 dum->devstatus |= (1 << USB_DEVICE_SELF_POWERED);
873 else
874 dum->devstatus &= ~(1 << USB_DEVICE_SELF_POWERED);
875 return 0;
876}
877
Sebastian Andrzej Siewiord2621272012-01-09 13:14:59 +0100878static void dummy_udc_update_ep0(struct dummy *dum)
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200879{
Sebastian Andrzej Siewiorc6884192012-01-09 13:14:56 +0100880 if (dum->gadget.speed == USB_SPEED_SUPER)
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200881 dum->ep[0].ep.maxpacket = 9;
Sebastian Andrzej Siewiorc6884192012-01-09 13:14:56 +0100882 else
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200883 dum->ep[0].ep.maxpacket = 64;
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200884}
885
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100886static int dummy_pullup(struct usb_gadget *_gadget, int value)
Alan Sternf1c39fa2005-05-03 16:24:04 -0400887{
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +0200888 struct dummy_hcd *dum_hcd;
Alan Sternf1c39fa2005-05-03 16:24:04 -0400889 struct dummy *dum;
890 unsigned long flags;
891
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200892 dum = gadget_dev_to_dummy(&_gadget->dev);
893
894 if (value && dum->driver) {
895 if (mod_data.is_super_speed)
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100896 dum->gadget.speed = dum->driver->max_speed;
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200897 else if (mod_data.is_high_speed)
898 dum->gadget.speed = min_t(u8, USB_SPEED_HIGH,
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100899 dum->driver->max_speed);
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200900 else
901 dum->gadget.speed = USB_SPEED_FULL;
Sebastian Andrzej Siewiord2621272012-01-09 13:14:59 +0100902 dummy_udc_update_ep0(dum);
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200903
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100904 if (dum->gadget.speed < dum->driver->max_speed)
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200905 dev_dbg(udc_dev(dum), "This device can perform faster"
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100906 " if you connect it to a %s port...\n",
907 usb_speed_string(dum->driver->max_speed));
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200908 }
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +0200909 dum_hcd = gadget_to_dummy_hcd(_gadget);
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +0200910
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100911 spin_lock_irqsave(&dum->lock, flags);
Alan Sternf1c39fa2005-05-03 16:24:04 -0400912 dum->pullup = (value != 0);
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +0200913 set_link_state(dum_hcd);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100914 spin_unlock_irqrestore(&dum->lock, flags);
Sebastian Andrzej Siewiorb5738412011-06-23 14:26:14 +0200915
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +0200916 usb_hcd_poll_rh_status(dummy_hcd_to_hcd(dum_hcd));
Alan Sternf1c39fa2005-05-03 16:24:04 -0400917 return 0;
918}
919
Sebastian Andrzej Siewioraa074732011-06-23 14:26:17 +0200920static int dummy_udc_start(struct usb_gadget *g,
921 struct usb_gadget_driver *driver);
Felipe Balbi22835b82014-10-17 12:05:12 -0500922static int dummy_udc_stop(struct usb_gadget *g);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924static const struct usb_gadget_ops dummy_ops = {
925 .get_frame = dummy_g_get_frame,
926 .wakeup = dummy_wakeup,
927 .set_selfpowered = dummy_set_selfpowered,
Alan Sternf1c39fa2005-05-03 16:24:04 -0400928 .pullup = dummy_pullup,
Sebastian Andrzej Siewioraa074732011-06-23 14:26:17 +0200929 .udc_start = dummy_udc_start,
930 .udc_stop = dummy_udc_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931};
932
933/*-------------------------------------------------------------------------*/
934
935/* "function" sysfs attribute */
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -0700936static ssize_t function_show(struct device *dev, struct device_attribute *attr,
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100937 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100939 struct dummy *dum = gadget_dev_to_dummy(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 if (!dum->driver || !dum->driver->function)
942 return 0;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +0100943 return scnprintf(buf, PAGE_SIZE, "%s\n", dum->driver->function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944}
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -0700945static DEVICE_ATTR_RO(function);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947/*-------------------------------------------------------------------------*/
948
949/*
950 * Driver registration/unregistration.
951 *
952 * This is basically hardware-specific; there's usually only one real USB
953 * device (not host) controller since that's how USB devices are intended
954 * to work. So most implementations of these api calls will rely on the
955 * fact that only one driver will ever bind to the hardware. But curious
956 * hardware can be built with discrete components, so the gadget API doesn't
957 * require that assumption.
958 *
959 * For this emulator, it might be convenient to create a usb slave device
960 * for each driver that registers: just add to a big root hub.
961 */
962
Sebastian Andrzej Siewioraa074732011-06-23 14:26:17 +0200963static int dummy_udc_start(struct usb_gadget *g,
964 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Sebastian Andrzej Siewioraa074732011-06-23 14:26:17 +0200966 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(g);
967 struct dummy *dum = dum_hcd->dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100969 if (driver->max_speed == USB_SPEED_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return -EINVAL;
971
972 /*
973 * SLAVE side init ... the layer above hardware, which
974 * can't enumerate without help from the driver we're binding.
975 */
Alan Stern5742b0c2005-05-02 11:25:17 -0400976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 dum->devstatus = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 dum->driver = driver;
Felipe Balbidd7e6dd2014-10-17 11:37:38 -0500979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return 0;
981}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Felipe Balbi22835b82014-10-17 12:05:12 -0500983static int dummy_udc_stop(struct usb_gadget *g)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
Sebastian Andrzej Siewioraa074732011-06-23 14:26:17 +0200985 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(g);
986 struct dummy *dum = dum_hcd->dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 dum->driver = NULL;
Sebastian Andrzej Siewior25427872011-06-16 20:36:55 +0200989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return 0;
991}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993#undef is_enabled
994
Alan Sternd9b76252005-05-03 16:15:43 -0400995/* The gadget structure is stored inside the hcd structure and will be
996 * released along with it. */
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +0200997static void init_dummy_udc_hw(struct dummy *dum)
998{
999 int i;
1000
1001 INIT_LIST_HEAD(&dum->gadget.ep_list);
1002 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
1003 struct dummy_ep *ep = &dum->ep[i];
1004
Robert Baldyga7a3b8e72015-07-31 16:00:24 +02001005 if (!ep_info[i].name)
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +02001006 break;
Robert Baldyga7a3b8e72015-07-31 16:00:24 +02001007 ep->ep.name = ep_info[i].name;
1008 ep->ep.caps = ep_info[i].caps;
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +02001009 ep->ep.ops = &dummy_ep_ops;
1010 list_add_tail(&ep->ep.ep_list, &dum->gadget.ep_list);
1011 ep->halted = ep->wedged = ep->already_seen =
1012 ep->setup_stage = 0;
Robert Baldygae117e742013-12-13 12:23:38 +01001013 usb_ep_set_maxpacket_limit(&ep->ep, ~0);
Sebastian Andrzej Siewiorc6884192012-01-09 13:14:56 +01001014 ep->ep.max_streams = 16;
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +02001015 ep->last_io = jiffies;
1016 ep->gadget = &dum->gadget;
1017 ep->desc = NULL;
1018 INIT_LIST_HEAD(&ep->queue);
1019 }
1020
1021 dum->gadget.ep0 = &dum->ep[0].ep;
1022 list_del_init(&dum->ep[0].ep.ep_list);
1023 INIT_LIST_HEAD(&dum->fifo_req.queue);
Sebastian Andrzej Siewiorf8744d42011-06-23 14:26:13 +02001024
1025#ifdef CONFIG_USB_OTG
1026 dum->gadget.is_otg = 1;
1027#endif
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +02001028}
1029
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001030static int dummy_udc_probe(struct platform_device *pdev)
Alan Sternd9b76252005-05-03 16:15:43 -04001031{
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01001032 struct dummy *dum;
Alan Sternd9b76252005-05-03 16:15:43 -04001033 int rc;
1034
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01001035 dum = *((void **)dev_get_platdata(&pdev->dev));
Alan Sternd9b76252005-05-03 16:15:43 -04001036 dum->gadget.name = gadget_name;
1037 dum->gadget.ops = &dummy_ops;
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01001038 dum->gadget.max_speed = USB_SPEED_SUPER;
Alan Sternd9b76252005-05-03 16:15:43 -04001039
Alan Stern8364d6b2005-11-14 12:16:30 -05001040 dum->gadget.dev.parent = &pdev->dev;
Sebastian Andrzej Siewior0fb57592011-06-23 14:26:12 +02001041 init_dummy_udc_hw(dum);
1042
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001043 rc = usb_add_gadget_udc(&pdev->dev, &dum->gadget);
1044 if (rc < 0)
1045 goto err_udc;
1046
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001047 rc = device_create_file(&dum->gadget.dev, &dev_attr_function);
Alan Sternefd54a32006-09-25 11:55:56 -04001048 if (rc < 0)
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001049 goto err_dev;
1050 platform_set_drvdata(pdev, dum);
1051 return rc;
1052
1053err_dev:
1054 usb_del_gadget_udc(&dum->gadget);
1055err_udc:
Alan Sternd9b76252005-05-03 16:15:43 -04001056 return rc;
1057}
1058
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001059static int dummy_udc_remove(struct platform_device *pdev)
Alan Sternd9b76252005-05-03 16:15:43 -04001060{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001061 struct dummy *dum = platform_get_drvdata(pdev);
Alan Sternd9b76252005-05-03 16:15:43 -04001062
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001063 device_remove_file(&dum->gadget.dev, &dev_attr_function);
Alan Stern5f5610f2013-07-30 15:18:15 -04001064 usb_del_gadget_udc(&dum->gadget);
Alan Sternd9b76252005-05-03 16:15:43 -04001065 return 0;
1066}
1067
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001068static void dummy_udc_pm(struct dummy *dum, struct dummy_hcd *dum_hcd,
1069 int suspend)
Alan Stern391eca92005-05-10 15:34:16 -04001070{
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001071 spin_lock_irq(&dum->lock);
1072 dum->udc_suspended = suspend;
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +02001073 set_link_state(dum_hcd);
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001074 spin_unlock_irq(&dum->lock);
1075}
Alan Stern391eca92005-05-10 15:34:16 -04001076
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001077static int dummy_udc_suspend(struct platform_device *pdev, pm_message_t state)
1078{
1079 struct dummy *dum = platform_get_drvdata(pdev);
1080 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
1081
1082 dev_dbg(&pdev->dev, "%s\n", __func__);
1083 dummy_udc_pm(dum, dum_hcd, 1);
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +02001084 usb_hcd_poll_rh_status(dummy_hcd_to_hcd(dum_hcd));
Alan Stern391eca92005-05-10 15:34:16 -04001085 return 0;
1086}
1087
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001088static int dummy_udc_resume(struct platform_device *pdev)
Alan Stern391eca92005-05-10 15:34:16 -04001089{
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001090 struct dummy *dum = platform_get_drvdata(pdev);
1091 struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(&dum->gadget);
Alan Stern391eca92005-05-10 15:34:16 -04001092
Sebastian Andrzej Siewiorfc0b7212011-06-17 19:43:13 +02001093 dev_dbg(&pdev->dev, "%s\n", __func__);
1094 dummy_udc_pm(dum, dum_hcd, 0);
Sebastian Andrzej Siewiord8a14a82011-06-17 10:11:41 +02001095 usb_hcd_poll_rh_status(dummy_hcd_to_hcd(dum_hcd));
Alan Stern391eca92005-05-10 15:34:16 -04001096 return 0;
1097}
1098
Russell King3ae5eae2005-11-09 22:32:44 +00001099static struct platform_driver dummy_udc_driver = {
Alan Sternd9b76252005-05-03 16:15:43 -04001100 .probe = dummy_udc_probe,
1101 .remove = dummy_udc_remove,
Alan Stern391eca92005-05-10 15:34:16 -04001102 .suspend = dummy_udc_suspend,
1103 .resume = dummy_udc_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001104 .driver = {
1105 .name = (char *) gadget_name,
Russell King3ae5eae2005-11-09 22:32:44 +00001106 },
Alan Sternd9b76252005-05-03 16:15:43 -04001107};
1108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109/*-------------------------------------------------------------------------*/
1110
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001111static unsigned int dummy_get_ep_idx(const struct usb_endpoint_descriptor *desc)
1112{
1113 unsigned int index;
1114
1115 index = usb_endpoint_num(desc) << 1;
1116 if (usb_endpoint_dir_in(desc))
1117 index |= 1;
1118 return index;
1119}
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121/* MASTER/HOST SIDE DRIVER
1122 *
1123 * this uses the hcd framework to hook up to host side drivers.
1124 * its root hub will only have one device, otherwise it acts like
1125 * a normal host controller.
1126 *
1127 * when urbs are queued, they're just stuck on a list that we
1128 * scan in a timer callback. that callback connects writes from
1129 * the host with reads from the device, and so on, based on the
1130 * usb 2.0 rules.
1131 */
1132
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001133static int dummy_ep_stream_en(struct dummy_hcd *dum_hcd, struct urb *urb)
1134{
1135 const struct usb_endpoint_descriptor *desc = &urb->ep->desc;
1136 u32 index;
1137
1138 if (!usb_endpoint_xfer_bulk(desc))
1139 return 0;
1140
1141 index = dummy_get_ep_idx(desc);
1142 return (1 << index) & dum_hcd->stream_en_ep;
1143}
1144
1145/*
1146 * The max stream number is saved as a nibble so for the 30 possible endpoints
1147 * we only 15 bytes of memory. Therefore we are limited to max 16 streams (0
1148 * means we use only 1 stream). The maximum according to the spec is 16bit so
1149 * if the 16 stream limit is about to go, the array size should be incremented
1150 * to 30 elements of type u16.
1151 */
1152static int get_max_streams_for_pipe(struct dummy_hcd *dum_hcd,
1153 unsigned int pipe)
1154{
1155 int max_streams;
1156
1157 max_streams = dum_hcd->num_stream[usb_pipeendpoint(pipe)];
1158 if (usb_pipeout(pipe))
1159 max_streams >>= 4;
1160 else
1161 max_streams &= 0xf;
1162 max_streams++;
1163 return max_streams;
1164}
1165
1166static void set_max_streams_for_pipe(struct dummy_hcd *dum_hcd,
1167 unsigned int pipe, unsigned int streams)
1168{
1169 int max_streams;
1170
1171 streams--;
1172 max_streams = dum_hcd->num_stream[usb_pipeendpoint(pipe)];
1173 if (usb_pipeout(pipe)) {
1174 streams <<= 4;
1175 max_streams &= 0xf;
1176 } else {
1177 max_streams &= 0xf0;
1178 }
1179 max_streams |= streams;
1180 dum_hcd->num_stream[usb_pipeendpoint(pipe)] = max_streams;
1181}
1182
1183static int dummy_validate_stream(struct dummy_hcd *dum_hcd, struct urb *urb)
1184{
1185 unsigned int max_streams;
1186 int enabled;
1187
1188 enabled = dummy_ep_stream_en(dum_hcd, urb);
1189 if (!urb->stream_id) {
1190 if (enabled)
1191 return -EINVAL;
1192 return 0;
1193 }
1194 if (!enabled)
1195 return -EINVAL;
1196
1197 max_streams = get_max_streams_for_pipe(dum_hcd,
1198 usb_pipeendpoint(urb->pipe));
1199 if (urb->stream_id > max_streams) {
1200 dev_err(dummy_dev(dum_hcd), "Stream id %d is out of range.\n",
1201 urb->stream_id);
1202 BUG();
1203 return -EINVAL;
1204 }
1205 return 0;
1206}
1207
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001208static int dummy_urb_enqueue(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 struct usb_hcd *hcd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 struct urb *urb,
Al Viro55016f12005-10-21 03:21:58 -04001211 gfp_t mem_flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212) {
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001213 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 struct urbp *urbp;
1215 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -04001216 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001218 urbp = kmalloc(sizeof *urbp, mem_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (!urbp)
1220 return -ENOMEM;
1221 urbp->urb = urb;
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001222 urbp->miter_started = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001224 dum_hcd = hcd_to_dummy_hcd(hcd);
1225 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001226
1227 rc = dummy_validate_stream(dum_hcd, urb);
1228 if (rc) {
1229 kfree(urbp);
1230 goto done;
1231 }
1232
Alan Sterne9df41c2007-08-08 11:48:02 -04001233 rc = usb_hcd_link_urb_to_ep(hcd, urb);
1234 if (rc) {
1235 kfree(urbp);
1236 goto done;
1237 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001239 if (!dum_hcd->udev) {
1240 dum_hcd->udev = urb->dev;
1241 usb_get_dev(dum_hcd->udev);
1242 } else if (unlikely(dum_hcd->udev != urb->dev))
1243 dev_err(dummy_dev(dum_hcd), "usb_device address has changed!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001245 list_add_tail(&urbp->urbp_list, &dum_hcd->urbp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 urb->hcpriv = urbp;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001247 if (usb_pipetype(urb->pipe) == PIPE_CONTROL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 urb->error_count = 1; /* mark as a new urb */
1249
1250 /* kick the scheduler, it'll do the rest */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001251 if (!timer_pending(&dum_hcd->timer))
1252 mod_timer(&dum_hcd->timer, jiffies + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Alan Sterne9df41c2007-08-08 11:48:02 -04001254 done:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001255 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001256 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
Alan Sterne9df41c2007-08-08 11:48:02 -04001259static int dummy_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001261 struct dummy_hcd *dum_hcd;
Alan Stern391eca92005-05-10 15:34:16 -04001262 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -04001263 int rc;
Alan Stern391eca92005-05-10 15:34:16 -04001264
1265 /* giveback happens automatically in timer callback,
1266 * so make sure the callback happens */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001267 dum_hcd = hcd_to_dummy_hcd(hcd);
1268 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001269
1270 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001271 if (!rc && dum_hcd->rh_state != DUMMY_RH_RUNNING &&
1272 !list_empty(&dum_hcd->urbp_list))
1273 mod_timer(&dum_hcd->timer, jiffies);
Alan Sterne9df41c2007-08-08 11:48:02 -04001274
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001275 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -04001276 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277}
1278
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001279static int dummy_perform_transfer(struct urb *urb, struct dummy_request *req,
1280 u32 len)
1281{
1282 void *ubuf, *rbuf;
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001283 struct urbp *urbp = urb->hcpriv;
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001284 int to_host;
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001285 struct sg_mapping_iter *miter = &urbp->miter;
1286 u32 trans = 0;
1287 u32 this_sg;
1288 bool next_sg;
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001289
1290 to_host = usb_pipein(urb->pipe);
1291 rbuf = req->req.buf + req->req.actual;
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001292
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001293 if (!urb->num_sgs) {
1294 ubuf = urb->transfer_buffer + urb->actual_length;
1295 if (to_host)
1296 memcpy(ubuf, rbuf, len);
1297 else
1298 memcpy(rbuf, ubuf, len);
1299 return len;
1300 }
1301
1302 if (!urbp->miter_started) {
1303 u32 flags = SG_MITER_ATOMIC;
1304
1305 if (to_host)
1306 flags |= SG_MITER_TO_SG;
1307 else
1308 flags |= SG_MITER_FROM_SG;
1309
1310 sg_miter_start(miter, urb->sg, urb->num_sgs, flags);
1311 urbp->miter_started = 1;
1312 }
1313 next_sg = sg_miter_next(miter);
1314 if (next_sg == false) {
1315 WARN_ON_ONCE(1);
1316 return -EINVAL;
1317 }
1318 do {
1319 ubuf = miter->addr;
1320 this_sg = min_t(u32, len, miter->length);
1321 miter->consumed = this_sg;
1322 trans += this_sg;
1323
1324 if (to_host)
1325 memcpy(ubuf, rbuf, this_sg);
1326 else
1327 memcpy(rbuf, ubuf, this_sg);
1328 len -= this_sg;
1329
1330 if (!len)
1331 break;
1332 next_sg = sg_miter_next(miter);
1333 if (next_sg == false) {
1334 WARN_ON_ONCE(1);
1335 return -EINVAL;
1336 }
1337
1338 rbuf += this_sg;
1339 } while (1);
1340
1341 sg_miter_stop(miter);
1342 return trans;
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001343}
1344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345/* transfer up to a frame's worth; caller must own lock */
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001346static int transfer(struct dummy_hcd *dum_hcd, struct urb *urb,
1347 struct dummy_ep *ep, int limit, int *status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001349 struct dummy *dum = dum_hcd->dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 struct dummy_request *req;
1351
1352top:
1353 /* if there's no request queued, the device is NAKing; return */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001354 list_for_each_entry(req, &ep->queue, queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 unsigned host_len, dev_len, len;
1356 int is_short, to_host;
1357 int rescan = 0;
1358
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001359 if (dummy_ep_stream_en(dum_hcd, urb)) {
1360 if ((urb->stream_id != req->req.stream_id))
1361 continue;
1362 }
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 /* 1..N packets of ep->ep.maxpacket each ... the last one
1365 * may be short (including zero length).
1366 *
1367 * writer can send a zlp explicitly (length 0) or implicitly
1368 * (length mod maxpacket zero, and 'zero' flag); they always
1369 * terminate reads.
1370 */
1371 host_len = urb->transfer_buffer_length - urb->actual_length;
1372 dev_len = req->req.length - req->req.actual;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001373 len = min(host_len, dev_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
1375 /* FIXME update emulated data toggle too */
1376
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001377 to_host = usb_pipein(urb->pipe);
1378 if (unlikely(len == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 is_short = 1;
1380 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 /* not enough bandwidth left? */
1382 if (limit < ep->ep.maxpacket && limit < len)
1383 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001384 len = min_t(unsigned, len, limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 if (len == 0)
1386 break;
1387
1388 /* use an extra pass for the final short packet */
1389 if (len > ep->ep.maxpacket) {
1390 rescan = 1;
1391 len -= (len % ep->ep.maxpacket);
1392 }
1393 is_short = (len % ep->ep.maxpacket) != 0;
1394
Sebastian Andrzej Siewiora04ce202012-01-09 13:14:57 +01001395 len = dummy_perform_transfer(urb, req, len);
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 ep->last_io = jiffies;
Dan Carpenterb1443ac0e2012-03-02 21:51:00 +03001398 if ((int)len < 0) {
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01001399 req->req.status = len;
1400 } else {
1401 limit -= len;
1402 urb->actual_length += len;
1403 req->req.actual += len;
1404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
1406
1407 /* short packets terminate, maybe with overflow/underflow.
1408 * it's only really an error to write too much.
1409 *
1410 * partially filling a buffer optionally blocks queue advances
1411 * (so completion handlers can clean up the queue) but we don't
Alan Sternb0d9efb2007-08-21 15:39:21 -04001412 * need to emulate such data-in-flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 */
1414 if (is_short) {
1415 if (host_len == dev_len) {
1416 req->req.status = 0;
Alan Stern4d2f1102007-08-24 15:40:10 -04001417 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 } else if (to_host) {
1419 req->req.status = 0;
1420 if (dev_len > host_len)
Alan Stern4d2f1102007-08-24 15:40:10 -04001421 *status = -EOVERFLOW;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 else
Alan Stern4d2f1102007-08-24 15:40:10 -04001423 *status = 0;
Igor Kotrasinski5dda5be2015-09-15 16:55:30 +02001424 } else {
Alan Stern4d2f1102007-08-24 15:40:10 -04001425 *status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 if (host_len > dev_len)
1427 req->req.status = -EOVERFLOW;
1428 else
1429 req->req.status = 0;
1430 }
1431
Igor Kotrasinski21c3ee92015-09-15 16:55:29 +02001432 /*
1433 * many requests terminate without a short packet.
1434 * send a zlp if demanded by flags.
1435 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 } else {
Igor Kotrasinski21c3ee92015-09-15 16:55:29 +02001437 if (req->req.length == req->req.actual) {
1438 if (req->req.zero && to_host)
1439 rescan = 1;
1440 else
1441 req->req.status = 0;
1442 }
1443 if (urb->transfer_buffer_length == urb->actual_length) {
1444 if (urb->transfer_flags & URB_ZERO_PACKET &&
1445 !to_host)
1446 rescan = 1;
1447 else
1448 *status = 0;
1449 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451
1452 /* device side completion --> continuable */
1453 if (req->req.status != -EINPROGRESS) {
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001454 list_del_init(&req->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001456 spin_unlock(&dum->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +02001457 usb_gadget_giveback_request(&ep->ep, &req->req);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001458 spin_lock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 /* requests might have been unlinked... */
1461 rescan = 1;
1462 }
1463
1464 /* host side completion --> terminate */
Alan Stern4d2f1102007-08-24 15:40:10 -04001465 if (*status != -EINPROGRESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 break;
1467
1468 /* rescan to continue with any other queued i/o */
1469 if (rescan)
1470 goto top;
1471 }
1472 return limit;
1473}
1474
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001475static int periodic_bytes(struct dummy *dum, struct dummy_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
1477 int limit = ep->ep.maxpacket;
1478
1479 if (dum->gadget.speed == USB_SPEED_HIGH) {
1480 int tmp;
1481
1482 /* high bandwidth mode */
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001483 tmp = usb_endpoint_maxp(ep->desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 tmp = (tmp >> 11) & 0x03;
1485 tmp *= 8 /* applies to entire frame */;
1486 limit += limit * tmp;
1487 }
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001488 if (dum->gadget.speed == USB_SPEED_SUPER) {
Sebastian Andrzej Siewior59f08e62012-01-12 12:53:14 +01001489 switch (usb_endpoint_type(ep->desc)) {
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001490 case USB_ENDPOINT_XFER_ISOC:
1491 /* Sec. 4.4.8.2 USB3.0 Spec */
1492 limit = 3 * 16 * 1024 * 8;
1493 break;
1494 case USB_ENDPOINT_XFER_INT:
1495 /* Sec. 4.4.7.2 USB3.0 Spec */
1496 limit = 3 * 1024 * 8;
1497 break;
1498 case USB_ENDPOINT_XFER_BULK:
1499 default:
1500 break;
1501 }
1502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return limit;
1504}
1505
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001506#define is_active(dum_hcd) ((dum_hcd->port_status & \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | \
1508 USB_PORT_STAT_SUSPEND)) \
1509 == (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE))
1510
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001511static struct dummy_ep *find_endpoint(struct dummy *dum, u8 address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
1513 int i;
1514
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001515 if (!is_active((dum->gadget.speed == USB_SPEED_SUPER ?
1516 dum->ss_hcd : dum->hs_hcd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return NULL;
1518 if ((address & ~USB_DIR_IN) == 0)
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001519 return &dum->ep[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 for (i = 1; i < DUMMY_ENDPOINTS; i++) {
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001521 struct dummy_ep *ep = &dum->ep[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 if (!ep->desc)
1524 continue;
1525 if (ep->desc->bEndpointAddress == address)
1526 return ep;
1527 }
1528 return NULL;
1529}
1530
1531#undef is_active
1532
1533#define Dev_Request (USB_TYPE_STANDARD | USB_RECIP_DEVICE)
1534#define Dev_InRequest (Dev_Request | USB_DIR_IN)
1535#define Intf_Request (USB_TYPE_STANDARD | USB_RECIP_INTERFACE)
1536#define Intf_InRequest (Intf_Request | USB_DIR_IN)
1537#define Ep_Request (USB_TYPE_STANDARD | USB_RECIP_ENDPOINT)
1538#define Ep_InRequest (Ep_Request | USB_DIR_IN)
1539
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001540
1541/**
1542 * handle_control_request() - handles all control transfers
1543 * @dum: pointer to dummy (the_controller)
1544 * @urb: the urb request to handle
1545 * @setup: pointer to the setup data for a USB device control
1546 * request
1547 * @status: pointer to request handling status
1548 *
1549 * Return 0 - if the request was handled
1550 * 1 - if the request wasn't handles
1551 * error code on error
1552 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001553static int handle_control_request(struct dummy_hcd *dum_hcd, struct urb *urb,
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001554 struct usb_ctrlrequest *setup,
1555 int *status)
1556{
1557 struct dummy_ep *ep2;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001558 struct dummy *dum = dum_hcd->dum;
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001559 int ret_val = 1;
1560 unsigned w_index;
1561 unsigned w_value;
1562
1563 w_index = le16_to_cpu(setup->wIndex);
1564 w_value = le16_to_cpu(setup->wValue);
1565 switch (setup->bRequest) {
1566 case USB_REQ_SET_ADDRESS:
1567 if (setup->bRequestType != Dev_Request)
1568 break;
1569 dum->address = w_value;
1570 *status = 0;
1571 dev_dbg(udc_dev(dum), "set_address = %d\n",
1572 w_value);
1573 ret_val = 0;
1574 break;
1575 case USB_REQ_SET_FEATURE:
1576 if (setup->bRequestType == Dev_Request) {
1577 ret_val = 0;
1578 switch (w_value) {
1579 case USB_DEVICE_REMOTE_WAKEUP:
1580 break;
1581 case USB_DEVICE_B_HNP_ENABLE:
1582 dum->gadget.b_hnp_enable = 1;
1583 break;
1584 case USB_DEVICE_A_HNP_SUPPORT:
1585 dum->gadget.a_hnp_support = 1;
1586 break;
1587 case USB_DEVICE_A_ALT_HNP_SUPPORT:
1588 dum->gadget.a_alt_hnp_support = 1;
1589 break;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001590 case USB_DEVICE_U1_ENABLE:
1591 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1592 HCD_USB3)
1593 w_value = USB_DEV_STAT_U1_ENABLED;
1594 else
1595 ret_val = -EOPNOTSUPP;
1596 break;
1597 case USB_DEVICE_U2_ENABLE:
1598 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1599 HCD_USB3)
1600 w_value = USB_DEV_STAT_U2_ENABLED;
1601 else
1602 ret_val = -EOPNOTSUPP;
1603 break;
1604 case USB_DEVICE_LTM_ENABLE:
1605 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1606 HCD_USB3)
1607 w_value = USB_DEV_STAT_LTM_ENABLED;
1608 else
1609 ret_val = -EOPNOTSUPP;
1610 break;
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001611 default:
1612 ret_val = -EOPNOTSUPP;
1613 }
1614 if (ret_val == 0) {
1615 dum->devstatus |= (1 << w_value);
1616 *status = 0;
1617 }
1618 } else if (setup->bRequestType == Ep_Request) {
1619 /* endpoint halt */
1620 ep2 = find_endpoint(dum, w_index);
1621 if (!ep2 || ep2->ep.name == ep0name) {
1622 ret_val = -EOPNOTSUPP;
1623 break;
1624 }
1625 ep2->halted = 1;
1626 ret_val = 0;
1627 *status = 0;
1628 }
1629 break;
1630 case USB_REQ_CLEAR_FEATURE:
1631 if (setup->bRequestType == Dev_Request) {
1632 ret_val = 0;
1633 switch (w_value) {
1634 case USB_DEVICE_REMOTE_WAKEUP:
1635 w_value = USB_DEVICE_REMOTE_WAKEUP;
1636 break;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001637 case USB_DEVICE_U1_ENABLE:
1638 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1639 HCD_USB3)
1640 w_value = USB_DEV_STAT_U1_ENABLED;
1641 else
1642 ret_val = -EOPNOTSUPP;
1643 break;
1644 case USB_DEVICE_U2_ENABLE:
1645 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1646 HCD_USB3)
1647 w_value = USB_DEV_STAT_U2_ENABLED;
1648 else
1649 ret_val = -EOPNOTSUPP;
1650 break;
1651 case USB_DEVICE_LTM_ENABLE:
1652 if (dummy_hcd_to_hcd(dum_hcd)->speed ==
1653 HCD_USB3)
1654 w_value = USB_DEV_STAT_LTM_ENABLED;
1655 else
1656 ret_val = -EOPNOTSUPP;
1657 break;
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001658 default:
1659 ret_val = -EOPNOTSUPP;
1660 break;
1661 }
1662 if (ret_val == 0) {
1663 dum->devstatus &= ~(1 << w_value);
1664 *status = 0;
1665 }
1666 } else if (setup->bRequestType == Ep_Request) {
1667 /* endpoint halt */
1668 ep2 = find_endpoint(dum, w_index);
1669 if (!ep2) {
1670 ret_val = -EOPNOTSUPP;
1671 break;
1672 }
1673 if (!ep2->wedged)
1674 ep2->halted = 0;
1675 ret_val = 0;
1676 *status = 0;
1677 }
1678 break;
1679 case USB_REQ_GET_STATUS:
1680 if (setup->bRequestType == Dev_InRequest
1681 || setup->bRequestType == Intf_InRequest
1682 || setup->bRequestType == Ep_InRequest) {
1683 char *buf;
1684 /*
1685 * device: remote wakeup, selfpowered
1686 * interface: nothing
1687 * endpoint: halt
1688 */
1689 buf = (char *)urb->transfer_buffer;
1690 if (urb->transfer_buffer_length > 0) {
1691 if (setup->bRequestType == Ep_InRequest) {
1692 ep2 = find_endpoint(dum, w_index);
1693 if (!ep2) {
1694 ret_val = -EOPNOTSUPP;
1695 break;
1696 }
1697 buf[0] = ep2->halted;
1698 } else if (setup->bRequestType ==
1699 Dev_InRequest) {
1700 buf[0] = (u8)dum->devstatus;
1701 } else
1702 buf[0] = 0;
1703 }
1704 if (urb->transfer_buffer_length > 1)
1705 buf[1] = 0;
1706 urb->actual_length = min_t(u32, 2,
1707 urb->transfer_buffer_length);
1708 ret_val = 0;
1709 *status = 0;
1710 }
1711 break;
1712 }
1713 return ret_val;
1714}
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716/* drive both sides of the transfers; looks like irq handlers to
1717 * both drivers except the callbacks aren't in_irq().
1718 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001719static void dummy_timer(unsigned long _dum_hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001721 struct dummy_hcd *dum_hcd = (struct dummy_hcd *) _dum_hcd;
1722 struct dummy *dum = dum_hcd->dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 struct urbp *urbp, *tmp;
1724 unsigned long flags;
1725 int limit, total;
1726 int i;
1727
1728 /* simplistic model for one frame's bandwidth */
1729 switch (dum->gadget.speed) {
1730 case USB_SPEED_LOW:
1731 total = 8/*bytes*/ * 12/*packets*/;
1732 break;
1733 case USB_SPEED_FULL:
1734 total = 64/*bytes*/ * 19/*packets*/;
1735 break;
1736 case USB_SPEED_HIGH:
1737 total = 512/*bytes*/ * 13/*packets*/ * 8/*uframes*/;
1738 break;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001739 case USB_SPEED_SUPER:
1740 /* Bus speed is 500000 bytes/ms, so use a little less */
1741 total = 490000;
1742 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 default:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001744 dev_err(dummy_dev(dum_hcd), "bogus device speed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 return;
1746 }
1747
1748 /* FIXME if HZ != 1000 this will probably misbehave ... */
1749
1750 /* look at each urb queued by the host side driver */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001751 spin_lock_irqsave(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001753 if (!dum_hcd->udev) {
1754 dev_err(dummy_dev(dum_hcd),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 "timer fired with no URBs pending?\n");
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001756 spin_unlock_irqrestore(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return;
1758 }
1759
1760 for (i = 0; i < DUMMY_ENDPOINTS; i++) {
Robert Baldyga7a3b8e72015-07-31 16:00:24 +02001761 if (!ep_info[i].name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001763 dum->ep[i].already_seen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
1765
1766restart:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001767 list_for_each_entry_safe(urbp, tmp, &dum_hcd->urbp_list, urbp_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 struct urb *urb;
1769 struct dummy_request *req;
1770 u8 address;
1771 struct dummy_ep *ep = NULL;
1772 int type;
Alan Stern4d2f1102007-08-24 15:40:10 -04001773 int status = -EINPROGRESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 urb = urbp->urb;
Alan Sterneb231052007-08-21 15:40:36 -04001776 if (urb->unlinked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 goto return_urb;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001778 else if (dum_hcd->rh_state != DUMMY_RH_RUNNING)
Alan Stern391eca92005-05-10 15:34:16 -04001779 continue;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001780 type = usb_pipetype(urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 /* used up this frame's non-periodic bandwidth?
1783 * FIXME there's infinite bandwidth for control and
1784 * periodic transfers ... unrealistic.
1785 */
1786 if (total <= 0 && type == PIPE_BULK)
1787 continue;
1788
1789 /* find the gadget's ep for this request (if configured) */
1790 address = usb_pipeendpoint (urb->pipe);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001791 if (usb_pipein(urb->pipe))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 address |= USB_DIR_IN;
1793 ep = find_endpoint(dum, address);
1794 if (!ep) {
1795 /* set_configuration() disagreement */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001796 dev_dbg(dummy_dev(dum_hcd),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 "no ep configured for urb %p\n",
1798 urb);
Alan Stern4d2f1102007-08-24 15:40:10 -04001799 status = -EPROTO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 goto return_urb;
1801 }
1802
1803 if (ep->already_seen)
1804 continue;
1805 ep->already_seen = 1;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001806 if (ep == &dum->ep[0] && urb->error_count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 ep->setup_stage = 1; /* a new urb */
1808 urb->error_count = 0;
1809 }
1810 if (ep->halted && !ep->setup_stage) {
1811 /* NOTE: must not be iso! */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001812 dev_dbg(dummy_dev(dum_hcd), "ep %s halted, urb %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 ep->ep.name, urb);
Alan Stern4d2f1102007-08-24 15:40:10 -04001814 status = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 goto return_urb;
1816 }
1817 /* FIXME make sure both ends agree on maxpacket */
1818
1819 /* handle control requests */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001820 if (ep == &dum->ep[0] && ep->setup_stage) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 struct usb_ctrlrequest setup;
1822 int value = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001824 setup = *(struct usb_ctrlrequest *) urb->setup_packet;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 /* paranoia, in case of stale queued data */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001826 list_for_each_entry(req, &ep->queue, queue) {
1827 list_del_init(&req->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 req->req.status = -EOVERFLOW;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001829 dev_dbg(udc_dev(dum), "stale req = %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 req);
1831
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001832 spin_unlock(&dum->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +02001833 usb_gadget_giveback_request(&ep->ep, &req->req);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001834 spin_lock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 ep->already_seen = 0;
1836 goto restart;
1837 }
1838
1839 /* gadget driver never sees set_address or operations
1840 * on standard feature flags. some hardware doesn't
1841 * even expose them.
1842 */
1843 ep->last_io = jiffies;
1844 ep->setup_stage = 0;
1845 ep->halted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001847 value = handle_control_request(dum_hcd, urb, &setup,
Tatyana Brokhman8be8a9d2010-11-01 17:38:05 +02001848 &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 /* gadget driver handles all other requests. block
1851 * until setup() returns; no reentrancy issues etc.
1852 */
1853 if (value > 0) {
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001854 spin_unlock(&dum->lock);
1855 value = dum->driver->setup(&dum->gadget,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 &setup);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001857 spin_lock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
1859 if (value >= 0) {
1860 /* no delays (max 64KB data stage) */
1861 limit = 64*1024;
1862 goto treat_control_like_bulk;
1863 }
1864 /* error, see below */
1865 }
1866
1867 if (value < 0) {
1868 if (value != -EOPNOTSUPP)
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001869 dev_dbg(udc_dev(dum),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 "setup --> %d\n",
1871 value);
Alan Stern4d2f1102007-08-24 15:40:10 -04001872 status = -EPIPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 urb->actual_length = 0;
1874 }
1875
1876 goto return_urb;
1877 }
1878
1879 /* non-control requests */
1880 limit = total;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001881 switch (usb_pipetype(urb->pipe)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 case PIPE_ISOCHRONOUS:
1883 /* FIXME is it urb->interval since the last xfer?
1884 * use urb->iso_frame_desc[i].
1885 * complete whether or not ep has requests queued.
1886 * report random errors, to debug drivers.
1887 */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001888 limit = max(limit, periodic_bytes(dum, ep));
Alan Stern4d2f1102007-08-24 15:40:10 -04001889 status = -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 break;
1891
1892 case PIPE_INTERRUPT:
1893 /* FIXME is it urb->interval since the last xfer?
1894 * this almost certainly polls too fast.
1895 */
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001896 limit = max(limit, periodic_bytes(dum, ep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 /* FALLTHROUGH */
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 default:
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001900treat_control_like_bulk:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 ep->last_io = jiffies;
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01001902 total = transfer(dum_hcd, urb, ep, limit, &status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 break;
1904 }
1905
1906 /* incomplete transfer? */
Alan Stern4d2f1102007-08-24 15:40:10 -04001907 if (status == -EINPROGRESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 continue;
1909
1910return_urb:
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001911 list_del(&urbp->urbp_list);
1912 kfree(urbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 if (ep)
1914 ep->already_seen = ep->setup_stage = 0;
1915
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001916 usb_hcd_unlink_urb_from_ep(dummy_hcd_to_hcd(dum_hcd), urb);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001917 spin_unlock(&dum->lock);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001918 usb_hcd_giveback_urb(dummy_hcd_to_hcd(dum_hcd), urb, status);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001919 spin_lock(&dum->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 goto restart;
1922 }
1923
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001924 if (list_empty(&dum_hcd->urbp_list)) {
1925 usb_put_dev(dum_hcd->udev);
1926 dum_hcd->udev = NULL;
1927 } else if (dum_hcd->rh_state == DUMMY_RH_RUNNING) {
Alan Stern391eca92005-05-10 15:34:16 -04001928 /* want a 1 msec delay here */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001929 mod_timer(&dum_hcd->timer, jiffies + msecs_to_jiffies(1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
1931
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001932 spin_unlock_irqrestore(&dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
1935/*-------------------------------------------------------------------------*/
1936
1937#define PORT_C_MASK \
Alan Sternc2db8b52005-04-29 16:30:48 -04001938 ((USB_PORT_STAT_C_CONNECTION \
1939 | USB_PORT_STAT_C_ENABLE \
1940 | USB_PORT_STAT_C_SUSPEND \
1941 | USB_PORT_STAT_C_OVERCURRENT \
1942 | USB_PORT_STAT_C_RESET) << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001944static int dummy_hub_status(struct usb_hcd *hcd, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001946 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 unsigned long flags;
Alan Stern391eca92005-05-10 15:34:16 -04001948 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001950 dum_hcd = hcd_to_dummy_hcd(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001952 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
Alan Stern541c7d42010-06-22 16:39:10 -04001953 if (!HCD_HW_ACCESSIBLE(hcd))
Alan Stern391eca92005-05-10 15:34:16 -04001954 goto done;
Alan Sternf1c39fa2005-05-03 16:24:04 -04001955
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001956 if (dum_hcd->resuming && time_after_eq(jiffies, dum_hcd->re_timeout)) {
1957 dum_hcd->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
1958 dum_hcd->port_status &= ~USB_PORT_STAT_SUSPEND;
1959 set_link_state(dum_hcd);
Alan Sternf1c39fa2005-05-03 16:24:04 -04001960 }
1961
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001962 if ((dum_hcd->port_status & PORT_C_MASK) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 *buf = (1 << 1);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001964 dev_dbg(dummy_dev(dum_hcd), "port status 0x%08x has changes\n",
1965 dum_hcd->port_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 retval = 1;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001967 if (dum_hcd->rh_state == DUMMY_RH_SUSPENDED)
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01001968 usb_hcd_resume_root_hub(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
Alan Stern391eca92005-05-10 15:34:16 -04001970done:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03001971 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return retval;
1973}
1974
Sebastian Andrzej Siewior3b9c1c52012-08-19 21:54:59 +02001975/* usb 3.0 root hub device descriptor */
Felipe Balbi814cf212013-03-22 16:50:47 +02001976static struct {
Sebastian Andrzej Siewior3b9c1c52012-08-19 21:54:59 +02001977 struct usb_bos_descriptor bos;
1978 struct usb_ss_cap_descriptor ss_cap;
1979} __packed usb3_bos_desc = {
1980
1981 .bos = {
1982 .bLength = USB_DT_BOS_SIZE,
1983 .bDescriptorType = USB_DT_BOS,
1984 .wTotalLength = cpu_to_le16(sizeof(usb3_bos_desc)),
1985 .bNumDeviceCaps = 1,
1986 },
1987 .ss_cap = {
1988 .bLength = USB_DT_USB_SS_CAP_SIZE,
1989 .bDescriptorType = USB_DT_DEVICE_CAPABILITY,
1990 .bDevCapabilityType = USB_SS_CAP_TYPE,
1991 .wSpeedSupported = cpu_to_le16(USB_5GBPS_OPERATION),
1992 .bFunctionalitySupport = ilog2(USB_5GBPS_OPERATION),
1993 },
1994};
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996static inline void
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03001997ss_hub_descriptor(struct usb_hub_descriptor *desc)
1998{
1999 memset(desc, 0, sizeof *desc);
Sergei Shtylyov2569ffd2015-03-29 01:39:09 +03002000 desc->bDescriptorType = USB_DT_SS_HUB;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002001 desc->bDescLength = 12;
Sergei Shtylyovd906d612015-01-19 01:55:55 +03002002 desc->wHubCharacteristics = cpu_to_le16(
2003 HUB_CHAR_INDV_PORT_LPSM |
2004 HUB_CHAR_COMMON_OCPM);
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002005 desc->bNbrPorts = 1;
2006 desc->u.ss.bHubHdrDecLat = 0x04; /* Worst case: 0.4 micro sec*/
2007 desc->u.ss.DeviceRemovable = 0xffff;
2008}
2009
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002010static inline void hub_descriptor(struct usb_hub_descriptor *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002012 memset(desc, 0, sizeof *desc);
Sergei Shtylyov2569ffd2015-03-29 01:39:09 +03002013 desc->bDescriptorType = USB_DT_HUB;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 desc->bDescLength = 9;
Sergei Shtylyovd906d612015-01-19 01:55:55 +03002015 desc->wHubCharacteristics = cpu_to_le16(
2016 HUB_CHAR_INDV_PORT_LPSM |
2017 HUB_CHAR_COMMON_OCPM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 desc->bNbrPorts = 1;
John Youndbe79bb2001-09-17 00:00:00 -07002019 desc->u.hs.DeviceRemovable[0] = 0xff;
2020 desc->u.hs.DeviceRemovable[1] = 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021}
2022
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002023static int dummy_hub_control(
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 struct usb_hcd *hcd,
2025 u16 typeReq,
2026 u16 wValue,
2027 u16 wIndex,
2028 char *buf,
2029 u16 wLength
2030) {
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002031 struct dummy_hcd *dum_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 int retval = 0;
2033 unsigned long flags;
2034
Alan Stern541c7d42010-06-22 16:39:10 -04002035 if (!HCD_HW_ACCESSIBLE(hcd))
Alan Stern391eca92005-05-10 15:34:16 -04002036 return -ETIMEDOUT;
2037
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002038 dum_hcd = hcd_to_dummy_hcd(hcd);
2039
2040 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 switch (typeReq) {
2042 case ClearHubFeature:
2043 break;
2044 case ClearPortFeature:
2045 switch (wValue) {
2046 case USB_PORT_FEAT_SUSPEND:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002047 if (hcd->speed == HCD_USB3) {
2048 dev_dbg(dummy_dev(dum_hcd),
2049 "USB_PORT_FEAT_SUSPEND req not "
2050 "supported for USB 3.0 roothub\n");
2051 goto error;
2052 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002053 if (dum_hcd->port_status & USB_PORT_STAT_SUSPEND) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 /* 20msec resume signaling */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002055 dum_hcd->resuming = 1;
2056 dum_hcd->re_timeout = jiffies +
Alan Sternf1c39fa2005-05-03 16:24:04 -04002057 msecs_to_jiffies(20);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 }
2059 break;
2060 case USB_PORT_FEAT_POWER:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002061 if (hcd->speed == HCD_USB3) {
2062 if (dum_hcd->port_status & USB_PORT_STAT_POWER)
2063 dev_dbg(dummy_dev(dum_hcd),
2064 "power-off\n");
2065 } else
2066 if (dum_hcd->port_status &
2067 USB_SS_PORT_STAT_POWER)
2068 dev_dbg(dummy_dev(dum_hcd),
2069 "power-off\n");
Alan Sternf1c39fa2005-05-03 16:24:04 -04002070 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 default:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002072 dum_hcd->port_status &= ~(1 << wValue);
2073 set_link_state(dum_hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 }
2075 break;
2076 case GetHubDescriptor:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002077 if (hcd->speed == HCD_USB3 &&
2078 (wLength < USB_DT_SS_HUB_SIZE ||
2079 wValue != (USB_DT_SS_HUB << 8))) {
2080 dev_dbg(dummy_dev(dum_hcd),
2081 "Wrong hub descriptor type for "
2082 "USB 3.0 roothub.\n");
2083 goto error;
2084 }
2085 if (hcd->speed == HCD_USB3)
2086 ss_hub_descriptor((struct usb_hub_descriptor *) buf);
2087 else
2088 hub_descriptor((struct usb_hub_descriptor *) buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 break;
Sebastian Andrzej Siewior3b9c1c52012-08-19 21:54:59 +02002090
2091 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
2092 if (hcd->speed != HCD_USB3)
2093 goto error;
2094
2095 if ((wValue >> 8) != USB_DT_BOS)
2096 goto error;
2097
2098 memcpy(buf, &usb3_bos_desc, sizeof(usb3_bos_desc));
2099 retval = sizeof(usb3_bos_desc);
2100 break;
2101
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 case GetHubStatus:
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002103 *(__le32 *) buf = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 break;
2105 case GetPortStatus:
2106 if (wIndex != 1)
2107 retval = -EPIPE;
2108
2109 /* whoever resets or resumes must GetPortStatus to
2110 * complete it!!
2111 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002112 if (dum_hcd->resuming &&
2113 time_after_eq(jiffies, dum_hcd->re_timeout)) {
2114 dum_hcd->port_status |= (USB_PORT_STAT_C_SUSPEND << 16);
2115 dum_hcd->port_status &= ~USB_PORT_STAT_SUSPEND;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002117 if ((dum_hcd->port_status & USB_PORT_STAT_RESET) != 0 &&
2118 time_after_eq(jiffies, dum_hcd->re_timeout)) {
2119 dum_hcd->port_status |= (USB_PORT_STAT_C_RESET << 16);
2120 dum_hcd->port_status &= ~USB_PORT_STAT_RESET;
2121 if (dum_hcd->dum->pullup) {
2122 dum_hcd->port_status |= USB_PORT_STAT_ENABLE;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002123
2124 if (hcd->speed < HCD_USB3) {
2125 switch (dum_hcd->dum->gadget.speed) {
2126 case USB_SPEED_HIGH:
2127 dum_hcd->port_status |=
2128 USB_PORT_STAT_HIGH_SPEED;
2129 break;
2130 case USB_SPEED_LOW:
2131 dum_hcd->dum->gadget.ep0->
2132 maxpacket = 8;
2133 dum_hcd->port_status |=
2134 USB_PORT_STAT_LOW_SPEED;
2135 break;
2136 default:
2137 dum_hcd->dum->gadget.speed =
2138 USB_SPEED_FULL;
2139 break;
2140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
2142 }
2143 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002144 set_link_state(dum_hcd);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002145 ((__le16 *) buf)[0] = cpu_to_le16(dum_hcd->port_status);
2146 ((__le16 *) buf)[1] = cpu_to_le16(dum_hcd->port_status >> 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 break;
2148 case SetHubFeature:
2149 retval = -EPIPE;
2150 break;
2151 case SetPortFeature:
2152 switch (wValue) {
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002153 case USB_PORT_FEAT_LINK_STATE:
2154 if (hcd->speed != HCD_USB3) {
2155 dev_dbg(dummy_dev(dum_hcd),
2156 "USB_PORT_FEAT_LINK_STATE req not "
2157 "supported for USB 2.0 roothub\n");
2158 goto error;
2159 }
2160 /*
2161 * Since this is dummy we don't have an actual link so
2162 * there is nothing to do for the SET_LINK_STATE cmd
2163 */
2164 break;
2165 case USB_PORT_FEAT_U1_TIMEOUT:
2166 case USB_PORT_FEAT_U2_TIMEOUT:
2167 /* TODO: add suspend/resume support! */
2168 if (hcd->speed != HCD_USB3) {
2169 dev_dbg(dummy_dev(dum_hcd),
2170 "USB_PORT_FEAT_U1/2_TIMEOUT req not "
2171 "supported for USB 2.0 roothub\n");
2172 goto error;
2173 }
2174 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 case USB_PORT_FEAT_SUSPEND:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002176 /* Applicable only for USB2.0 hub */
2177 if (hcd->speed == HCD_USB3) {
2178 dev_dbg(dummy_dev(dum_hcd),
2179 "USB_PORT_FEAT_SUSPEND req not "
2180 "supported for USB 3.0 roothub\n");
2181 goto error;
2182 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002183 if (dum_hcd->active) {
2184 dum_hcd->port_status |= USB_PORT_STAT_SUSPEND;
Alan Sternf1c39fa2005-05-03 16:24:04 -04002185
2186 /* HNP would happen here; for now we
2187 * assume b_bus_req is always true.
2188 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002189 set_link_state(dum_hcd);
Alan Sternf1c39fa2005-05-03 16:24:04 -04002190 if (((1 << USB_DEVICE_B_HNP_ENABLE)
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002191 & dum_hcd->dum->devstatus) != 0)
2192 dev_dbg(dummy_dev(dum_hcd),
Alan Stern5742b0c2005-05-02 11:25:17 -04002193 "no HNP yet!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 }
2195 break;
Alan Sternf1c39fa2005-05-03 16:24:04 -04002196 case USB_PORT_FEAT_POWER:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002197 if (hcd->speed == HCD_USB3)
2198 dum_hcd->port_status |= USB_SS_PORT_STAT_POWER;
2199 else
2200 dum_hcd->port_status |= USB_PORT_STAT_POWER;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002201 set_link_state(dum_hcd);
Alan Sternf1c39fa2005-05-03 16:24:04 -04002202 break;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002203 case USB_PORT_FEAT_BH_PORT_RESET:
2204 /* Applicable only for USB3.0 hub */
2205 if (hcd->speed != HCD_USB3) {
2206 dev_dbg(dummy_dev(dum_hcd),
2207 "USB_PORT_FEAT_BH_PORT_RESET req not "
2208 "supported for USB 2.0 roothub\n");
2209 goto error;
2210 }
2211 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 case USB_PORT_FEAT_RESET:
Alan Sternf1c39fa2005-05-03 16:24:04 -04002213 /* if it's already enabled, disable */
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002214 if (hcd->speed == HCD_USB3) {
2215 dum_hcd->port_status = 0;
2216 dum_hcd->port_status =
2217 (USB_SS_PORT_STAT_POWER |
2218 USB_PORT_STAT_CONNECTION |
2219 USB_PORT_STAT_RESET);
2220 } else
2221 dum_hcd->port_status &= ~(USB_PORT_STAT_ENABLE
Alan Sternf1c39fa2005-05-03 16:24:04 -04002222 | USB_PORT_STAT_LOW_SPEED
2223 | USB_PORT_STAT_HIGH_SPEED);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002224 /*
2225 * We want to reset device status. All but the
2226 * Self powered feature
2227 */
2228 dum_hcd->dum->devstatus &=
2229 (1 << USB_DEVICE_SELF_POWERED);
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002230 /*
2231 * FIXME USB3.0: what is the correct reset signaling
2232 * interval? Is it still 50msec as for HS?
2233 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002234 dum_hcd->re_timeout = jiffies + msecs_to_jiffies(50);
Alan Sternf1c39fa2005-05-03 16:24:04 -04002235 /* FALLS THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 default:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002237 if (hcd->speed == HCD_USB3) {
2238 if ((dum_hcd->port_status &
2239 USB_SS_PORT_STAT_POWER) != 0) {
2240 dum_hcd->port_status |= (1 << wValue);
2241 set_link_state(dum_hcd);
2242 }
2243 } else
2244 if ((dum_hcd->port_status &
2245 USB_PORT_STAT_POWER) != 0) {
2246 dum_hcd->port_status |= (1 << wValue);
2247 set_link_state(dum_hcd);
2248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 }
2250 break;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002251 case GetPortErrorCount:
2252 if (hcd->speed != HCD_USB3) {
2253 dev_dbg(dummy_dev(dum_hcd),
2254 "GetPortErrorCount req not "
2255 "supported for USB 2.0 roothub\n");
2256 goto error;
2257 }
2258 /* We'll always return 0 since this is a dummy hub */
2259 *(__le32 *) buf = cpu_to_le32(0);
2260 break;
2261 case SetHubDepth:
2262 if (hcd->speed != HCD_USB3) {
2263 dev_dbg(dummy_dev(dum_hcd),
2264 "SetHubDepth req not supported for "
2265 "USB 2.0 roothub\n");
2266 goto error;
2267 }
2268 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 default:
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002270 dev_dbg(dummy_dev(dum_hcd),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 "hub control req%04x v%04x i%04x l%d\n",
2272 typeReq, wValue, wIndex, wLength);
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002273error:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 /* "protocol stall" on error */
2275 retval = -EPIPE;
2276 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002277 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
Alan Stern685eb932005-05-03 16:27:26 -04002278
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002279 if ((dum_hcd->port_status & PORT_C_MASK) != 0)
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002280 usb_hcd_poll_rh_status(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 return retval;
2282}
2283
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002284static int dummy_bus_suspend(struct usb_hcd *hcd)
Alan Stern391eca92005-05-10 15:34:16 -04002285{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002286 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
Alan Stern391eca92005-05-10 15:34:16 -04002287
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002288 dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
Alan Stern3cf0a222005-11-29 12:08:15 -05002289
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002290 spin_lock_irq(&dum_hcd->dum->lock);
2291 dum_hcd->rh_state = DUMMY_RH_SUSPENDED;
2292 set_link_state(dum_hcd);
Alan Stern3cf0a222005-11-29 12:08:15 -05002293 hcd->state = HC_STATE_SUSPENDED;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002294 spin_unlock_irq(&dum_hcd->dum->lock);
Alan Stern391eca92005-05-10 15:34:16 -04002295 return 0;
2296}
2297
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002298static int dummy_bus_resume(struct usb_hcd *hcd)
Alan Stern391eca92005-05-10 15:34:16 -04002299{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002300 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
Alan Stern3cf0a222005-11-29 12:08:15 -05002301 int rc = 0;
2302
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002303 dev_dbg(&hcd->self.root_hub->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -04002304
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002305 spin_lock_irq(&dum_hcd->dum->lock);
Alan Stern541c7d42010-06-22 16:39:10 -04002306 if (!HCD_HW_ACCESSIBLE(hcd)) {
Alan Sterncfa59da2007-06-21 16:25:35 -04002307 rc = -ESHUTDOWN;
Alan Stern3cf0a222005-11-29 12:08:15 -05002308 } else {
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002309 dum_hcd->rh_state = DUMMY_RH_RUNNING;
2310 set_link_state(dum_hcd);
2311 if (!list_empty(&dum_hcd->urbp_list))
2312 mod_timer(&dum_hcd->timer, jiffies);
Alan Stern3cf0a222005-11-29 12:08:15 -05002313 hcd->state = HC_STATE_RUNNING;
2314 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002315 spin_unlock_irq(&dum_hcd->dum->lock);
Alan Stern3cf0a222005-11-29 12:08:15 -05002316 return rc;
Alan Stern391eca92005-05-10 15:34:16 -04002317}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319/*-------------------------------------------------------------------------*/
2320
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002321static inline ssize_t show_urb(char *buf, size_t size, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002323 int ep = usb_pipeendpoint(urb->pipe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002325 return snprintf(buf, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 "urb/%p %s ep%d%s%s len %d/%d\n",
2327 urb,
2328 ({ char *s;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002329 switch (urb->dev->speed) {
2330 case USB_SPEED_LOW:
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002331 s = "ls";
2332 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002333 case USB_SPEED_FULL:
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002334 s = "fs";
2335 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002336 case USB_SPEED_HIGH:
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002337 s = "hs";
2338 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002339 case USB_SPEED_SUPER:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002340 s = "ss";
2341 break;
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002342 default:
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002343 s = "?";
2344 break;
Joe Perches2b84f922013-10-08 16:01:37 -07002345 } s; }),
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002346 ep, ep ? (usb_pipein(urb->pipe) ? "in" : "out") : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 ({ char *s; \
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002348 switch (usb_pipetype(urb->pipe)) { \
2349 case PIPE_CONTROL: \
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002350 s = ""; \
2351 break; \
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002352 case PIPE_BULK: \
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002353 s = "-bulk"; \
2354 break; \
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002355 case PIPE_INTERRUPT: \
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002356 s = "-int"; \
2357 break; \
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002358 default: \
Tatyana Brokhman7c884fe2011-06-28 16:33:52 +03002359 s = "-iso"; \
2360 break; \
Joe Perches2b84f922013-10-08 16:01:37 -07002361 } s; }),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 urb->actual_length, urb->transfer_buffer_length);
2363}
2364
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07002365static ssize_t urbs_show(struct device *dev, struct device_attribute *attr,
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002366 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002368 struct usb_hcd *hcd = dev_get_drvdata(dev);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002369 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 struct urbp *urbp;
2371 size_t size = 0;
2372 unsigned long flags;
2373
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002374 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2375 list_for_each_entry(urbp, &dum_hcd->urbp_list, urbp_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 size_t temp;
2377
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002378 temp = show_urb(buf, PAGE_SIZE - size, urbp->urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 buf += temp;
2380 size += temp;
2381 }
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002382 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 return size;
2385}
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07002386static DEVICE_ATTR_RO(urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002388static int dummy_start_ss(struct dummy_hcd *dum_hcd)
2389{
2390 init_timer(&dum_hcd->timer);
2391 dum_hcd->timer.function = dummy_timer;
2392 dum_hcd->timer.data = (unsigned long)dum_hcd;
2393 dum_hcd->rh_state = DUMMY_RH_RUNNING;
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01002394 dum_hcd->stream_en_ep = 0;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002395 INIT_LIST_HEAD(&dum_hcd->urbp_list);
2396 dummy_hcd_to_hcd(dum_hcd)->power_budget = POWER_BUDGET;
2397 dummy_hcd_to_hcd(dum_hcd)->state = HC_STATE_RUNNING;
2398 dummy_hcd_to_hcd(dum_hcd)->uses_new_polling = 1;
2399#ifdef CONFIG_USB_OTG
2400 dummy_hcd_to_hcd(dum_hcd)->self.otg_port = 1;
2401#endif
2402 return 0;
2403
2404 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
2405 return device_create_file(dummy_dev(dum_hcd), &dev_attr_urbs);
2406}
2407
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002408static int dummy_start(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002410 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412 /*
2413 * MASTER side init ... we emulate a root hub that'll only ever
2414 * talk to one device (the slave side). Also appears in sysfs,
2415 * just like more familiar pci-based HCDs.
2416 */
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002417 if (!usb_hcd_is_primary_hcd(hcd))
2418 return dummy_start_ss(dum_hcd);
2419
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002420 spin_lock_init(&dum_hcd->dum->lock);
2421 init_timer(&dum_hcd->timer);
2422 dum_hcd->timer.function = dummy_timer;
2423 dum_hcd->timer.data = (unsigned long)dum_hcd;
2424 dum_hcd->rh_state = DUMMY_RH_RUNNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002426 INIT_LIST_HEAD(&dum_hcd->urbp_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Alan Sterncaf29f62007-12-06 11:10:39 -05002428 hcd->power_budget = POWER_BUDGET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 hcd->state = HC_STATE_RUNNING;
Alan Stern685eb932005-05-03 16:27:26 -04002430 hcd->uses_new_polling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
Alan Stern5742b0c2005-05-02 11:25:17 -04002432#ifdef CONFIG_USB_OTG
2433 hcd->self.otg_port = 1;
2434#endif
2435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 /* FIXME 'urbs' should be a per-device thing, maybe in usbcore */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002437 return device_create_file(dummy_dev(dum_hcd), &dev_attr_urbs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438}
2439
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002440static void dummy_stop(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441{
2442 struct dummy *dum;
2443
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002444 dum = hcd_to_dummy_hcd(hcd)->dum;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002445 device_remove_file(dummy_dev(hcd_to_dummy_hcd(hcd)), &dev_attr_urbs);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002446 dev_info(dummy_dev(hcd_to_dummy_hcd(hcd)), "stopped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447}
2448
2449/*-------------------------------------------------------------------------*/
2450
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002451static int dummy_h_get_frame(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452{
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002453 return dummy_g_get_frame(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454}
2455
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002456static int dummy_setup(struct usb_hcd *hcd)
2457{
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002458 struct dummy *dum;
2459
2460 dum = *((void **)dev_get_platdata(hcd->self.controller));
Sebastian Andrzej Siewior14fce332012-01-09 19:30:50 +01002461 hcd->self.sg_tablesize = ~0;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002462 if (usb_hcd_is_primary_hcd(hcd)) {
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002463 dum->hs_hcd = hcd_to_dummy_hcd(hcd);
2464 dum->hs_hcd->dum = dum;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002465 /*
2466 * Mark the first roothub as being USB 2.0.
2467 * The USB 3.0 roothub will be registered later by
2468 * dummy_hcd_probe()
2469 */
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002470 hcd->speed = HCD_USB2;
2471 hcd->self.root_hub->speed = USB_SPEED_HIGH;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002472 } else {
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002473 dum->ss_hcd = hcd_to_dummy_hcd(hcd);
2474 dum->ss_hcd->dum = dum;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002475 hcd->speed = HCD_USB3;
2476 hcd->self.root_hub->speed = USB_SPEED_SUPER;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002477 }
2478 return 0;
2479}
2480
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002481/* Change a group of bulk endpoints to support multiple stream IDs */
Sebastian Andrzej Siewiord81f3e42012-01-09 13:15:00 +01002482static int dummy_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002483 struct usb_host_endpoint **eps, unsigned int num_eps,
2484 unsigned int num_streams, gfp_t mem_flags)
2485{
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01002486 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
2487 unsigned long flags;
2488 int max_stream;
2489 int ret_streams = num_streams;
2490 unsigned int index;
2491 unsigned int i;
2492
2493 if (!num_eps)
2494 return -EINVAL;
2495
2496 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2497 for (i = 0; i < num_eps; i++) {
2498 index = dummy_get_ep_idx(&eps[i]->desc);
2499 if ((1 << index) & dum_hcd->stream_en_ep) {
2500 ret_streams = -EINVAL;
2501 goto out;
2502 }
2503 max_stream = usb_ss_max_streams(&eps[i]->ss_ep_comp);
2504 if (!max_stream) {
2505 ret_streams = -EINVAL;
2506 goto out;
2507 }
2508 if (max_stream < ret_streams) {
2509 dev_dbg(dummy_dev(dum_hcd), "Ep 0x%x only supports %u "
2510 "stream IDs.\n",
2511 eps[i]->desc.bEndpointAddress,
2512 max_stream);
2513 ret_streams = max_stream;
2514 }
2515 }
2516
2517 for (i = 0; i < num_eps; i++) {
2518 index = dummy_get_ep_idx(&eps[i]->desc);
2519 dum_hcd->stream_en_ep |= 1 << index;
2520 set_max_streams_for_pipe(dum_hcd,
2521 usb_endpoint_num(&eps[i]->desc), ret_streams);
2522 }
2523out:
2524 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
2525 return ret_streams;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002526}
2527
2528/* Reverts a group of bulk endpoints back to not using stream IDs. */
Sebastian Andrzej Siewiord81f3e42012-01-09 13:15:00 +01002529static int dummy_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002530 struct usb_host_endpoint **eps, unsigned int num_eps,
2531 gfp_t mem_flags)
2532{
Sebastian Andrzej Siewiora54c9792012-01-13 21:51:47 +01002533 struct dummy_hcd *dum_hcd = hcd_to_dummy_hcd(hcd);
2534 unsigned long flags;
2535 int ret;
2536 unsigned int index;
2537 unsigned int i;
2538
2539 spin_lock_irqsave(&dum_hcd->dum->lock, flags);
2540 for (i = 0; i < num_eps; i++) {
2541 index = dummy_get_ep_idx(&eps[i]->desc);
2542 if (!((1 << index) & dum_hcd->stream_en_ep)) {
2543 ret = -EINVAL;
2544 goto out;
2545 }
2546 }
2547
2548 for (i = 0; i < num_eps; i++) {
2549 index = dummy_get_ep_idx(&eps[i]->desc);
2550 dum_hcd->stream_en_ep &= ~(1 << index);
2551 set_max_streams_for_pipe(dum_hcd,
2552 usb_endpoint_num(&eps[i]->desc), 0);
2553 }
2554 ret = 0;
2555out:
2556 spin_unlock_irqrestore(&dum_hcd->dum->lock, flags);
2557 return ret;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002558}
2559
2560static struct hc_driver dummy_hcd = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 .description = (char *) driver_name,
2562 .product_desc = "Dummy host controller",
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002563 .hcd_priv_size = sizeof(struct dummy_hcd),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002565 .flags = HCD_USB3 | HCD_SHARED,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002567 .reset = dummy_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 .start = dummy_start,
2569 .stop = dummy_stop,
2570
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002571 .urb_enqueue = dummy_urb_enqueue,
2572 .urb_dequeue = dummy_urb_dequeue,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002574 .get_frame_number = dummy_h_get_frame,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002576 .hub_status_data = dummy_hub_status,
2577 .hub_control = dummy_hub_control,
Alan Stern0c0382e2005-10-13 17:08:02 -04002578 .bus_suspend = dummy_bus_suspend,
2579 .bus_resume = dummy_bus_resume,
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002580
2581 .alloc_streams = dummy_alloc_streams,
2582 .free_streams = dummy_free_streams,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583};
2584
Alan Stern8364d6b2005-11-14 12:16:30 -05002585static int dummy_hcd_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586{
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002587 struct dummy *dum;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002588 struct usb_hcd *hs_hcd;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002589 struct usb_hcd *ss_hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 int retval;
2591
Alan Stern8364d6b2005-11-14 12:16:30 -05002592 dev_info(&pdev->dev, "%s, driver " DRIVER_VERSION "\n", driver_desc);
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002593 dum = *((void **)dev_get_platdata(&pdev->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002595 if (!mod_data.is_super_speed)
2596 dummy_hcd.flags = HCD_USB2;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002597 hs_hcd = usb_create_hcd(&dummy_hcd, &pdev->dev, dev_name(&pdev->dev));
2598 if (!hs_hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 return -ENOMEM;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002600 hs_hcd->has_tt = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002602 retval = usb_add_hcd(hs_hcd, 0, 0);
Sebastian Andrzej Siewior1b68a4c2012-08-19 21:54:58 +02002603 if (retval)
2604 goto put_usb2_hcd;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002605
2606 if (mod_data.is_super_speed) {
2607 ss_hcd = usb_create_shared_hcd(&dummy_hcd, &pdev->dev,
2608 dev_name(&pdev->dev), hs_hcd);
2609 if (!ss_hcd) {
2610 retval = -ENOMEM;
2611 goto dealloc_usb2_hcd;
2612 }
2613
2614 retval = usb_add_hcd(ss_hcd, 0, 0);
2615 if (retval)
2616 goto put_usb3_hcd;
2617 }
2618 return 0;
2619
2620put_usb3_hcd:
2621 usb_put_hcd(ss_hcd);
2622dealloc_usb2_hcd:
Sebastian Andrzej Siewior1b68a4c2012-08-19 21:54:58 +02002623 usb_remove_hcd(hs_hcd);
2624put_usb2_hcd:
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002625 usb_put_hcd(hs_hcd);
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002626 dum->hs_hcd = dum->ss_hcd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 return retval;
2628}
2629
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002630static int dummy_hcd_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002632 struct dummy *dum;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002634 dum = hcd_to_dummy_hcd(platform_get_drvdata(pdev))->dum;
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002635
2636 if (dum->ss_hcd) {
2637 usb_remove_hcd(dummy_hcd_to_hcd(dum->ss_hcd));
2638 usb_put_hcd(dummy_hcd_to_hcd(dum->ss_hcd));
2639 }
2640
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002641 usb_remove_hcd(dummy_hcd_to_hcd(dum->hs_hcd));
2642 usb_put_hcd(dummy_hcd_to_hcd(dum->hs_hcd));
Tatyana Brokhman1cd8fd22011-06-29 16:41:52 +03002643
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002644 dum->hs_hcd = NULL;
2645 dum->ss_hcd = NULL;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002646
Alan Sternd9b76252005-05-03 16:15:43 -04002647 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648}
2649
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002650static int dummy_hcd_suspend(struct platform_device *pdev, pm_message_t state)
Alan Stern391eca92005-05-10 15:34:16 -04002651{
2652 struct usb_hcd *hcd;
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002653 struct dummy_hcd *dum_hcd;
Alan Stern3cf0a222005-11-29 12:08:15 -05002654 int rc = 0;
Alan Stern391eca92005-05-10 15:34:16 -04002655
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002656 dev_dbg(&pdev->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -04002657
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002658 hcd = platform_get_drvdata(pdev);
Tatyana Brokhmancdfcbd22011-06-29 16:41:51 +03002659 dum_hcd = hcd_to_dummy_hcd(hcd);
2660 if (dum_hcd->rh_state == DUMMY_RH_RUNNING) {
Alan Stern3cf0a222005-11-29 12:08:15 -05002661 dev_warn(&pdev->dev, "Root hub isn't suspended!\n");
2662 rc = -EBUSY;
2663 } else
2664 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
2665 return rc;
Alan Stern391eca92005-05-10 15:34:16 -04002666}
2667
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002668static int dummy_hcd_resume(struct platform_device *pdev)
Alan Stern391eca92005-05-10 15:34:16 -04002669{
2670 struct usb_hcd *hcd;
2671
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002672 dev_dbg(&pdev->dev, "%s\n", __func__);
Alan Stern391eca92005-05-10 15:34:16 -04002673
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002674 hcd = platform_get_drvdata(pdev);
Alan Stern3cf0a222005-11-29 12:08:15 -05002675 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002676 usb_hcd_poll_rh_status(hcd);
Alan Stern391eca92005-05-10 15:34:16 -04002677 return 0;
2678}
2679
Russell King3ae5eae2005-11-09 22:32:44 +00002680static struct platform_driver dummy_hcd_driver = {
Alan Sternd9b76252005-05-03 16:15:43 -04002681 .probe = dummy_hcd_probe,
2682 .remove = dummy_hcd_remove,
Alan Stern391eca92005-05-10 15:34:16 -04002683 .suspend = dummy_hcd_suspend,
2684 .resume = dummy_hcd_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00002685 .driver = {
2686 .name = (char *) driver_name,
Russell King3ae5eae2005-11-09 22:32:44 +00002687 },
Alan Sternd9b76252005-05-03 16:15:43 -04002688};
2689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690/*-------------------------------------------------------------------------*/
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002691#define MAX_NUM_UDC 2
Sebastian Andrzej Siewiorb2113132012-10-30 12:53:17 +01002692static struct platform_device *the_udc_pdev[MAX_NUM_UDC];
2693static struct platform_device *the_hcd_pdev[MAX_NUM_UDC];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002695static int __init init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696{
Alan Sterna89a2cd2008-04-07 15:03:25 -04002697 int retval = -ENOMEM;
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002698 int i;
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002699 struct dummy *dum[MAX_NUM_UDC];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002701 if (usb_disabled())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 return -ENODEV;
Alan Sternd9b76252005-05-03 16:15:43 -04002703
Tatyana Brokhman7eca4c52011-06-29 16:41:53 +03002704 if (!mod_data.is_high_speed && mod_data.is_super_speed)
2705 return -EINVAL;
2706
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002707 if (mod_data.num < 1 || mod_data.num > MAX_NUM_UDC) {
Rasmus Villemoesfa84acf2015-02-06 00:42:00 +01002708 pr_err("Number of emulated UDC must be in range of 1...%d\n",
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002709 MAX_NUM_UDC);
2710 return -EINVAL;
2711 }
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002712
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002713 for (i = 0; i < mod_data.num; i++) {
2714 the_hcd_pdev[i] = platform_device_alloc(driver_name, i);
2715 if (!the_hcd_pdev[i]) {
2716 i--;
2717 while (i >= 0)
2718 platform_device_put(the_hcd_pdev[i--]);
2719 return retval;
2720 }
2721 }
2722 for (i = 0; i < mod_data.num; i++) {
2723 the_udc_pdev[i] = platform_device_alloc(gadget_name, i);
2724 if (!the_udc_pdev[i]) {
2725 i--;
2726 while (i >= 0)
2727 platform_device_put(the_udc_pdev[i--]);
2728 goto err_alloc_udc;
2729 }
2730 }
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002731 for (i = 0; i < mod_data.num; i++) {
2732 dum[i] = kzalloc(sizeof(struct dummy), GFP_KERNEL);
Wei Yongjun481d3042013-05-07 19:50:06 +08002733 if (!dum[i]) {
2734 retval = -ENOMEM;
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002735 goto err_add_pdata;
Wei Yongjun481d3042013-05-07 19:50:06 +08002736 }
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002737 retval = platform_device_add_data(the_hcd_pdev[i], &dum[i],
2738 sizeof(void *));
2739 if (retval)
2740 goto err_add_pdata;
2741 retval = platform_device_add_data(the_udc_pdev[i], &dum[i],
2742 sizeof(void *));
2743 if (retval)
2744 goto err_add_pdata;
2745 }
Alan Sternd9b76252005-05-03 16:15:43 -04002746
Alan Sterna89a2cd2008-04-07 15:03:25 -04002747 retval = platform_driver_register(&dummy_hcd_driver);
2748 if (retval < 0)
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002749 goto err_add_pdata;
Alan Sterna89a2cd2008-04-07 15:03:25 -04002750 retval = platform_driver_register(&dummy_udc_driver);
Alan Sternd9b76252005-05-03 16:15:43 -04002751 if (retval < 0)
2752 goto err_register_udc_driver;
2753
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002754 for (i = 0; i < mod_data.num; i++) {
2755 retval = platform_device_add(the_hcd_pdev[i]);
2756 if (retval < 0) {
2757 i--;
2758 while (i >= 0)
2759 platform_device_del(the_hcd_pdev[i--]);
2760 goto err_add_hcd;
2761 }
2762 }
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002763 for (i = 0; i < mod_data.num; i++) {
2764 if (!dum[i]->hs_hcd ||
2765 (!dum[i]->ss_hcd && mod_data.is_super_speed)) {
2766 /*
2767 * The hcd was added successfully but its probe
2768 * function failed for some reason.
2769 */
2770 retval = -EINVAL;
2771 goto err_add_udc;
2772 }
Sebastian Andrzej Siewior865835f2011-04-15 20:37:06 +02002773 }
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002774
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002775 for (i = 0; i < mod_data.num; i++) {
2776 retval = platform_device_add(the_udc_pdev[i]);
2777 if (retval < 0) {
2778 i--;
2779 while (i >= 0)
2780 platform_device_del(the_udc_pdev[i]);
2781 goto err_add_udc;
2782 }
2783 }
2784
2785 for (i = 0; i < mod_data.num; i++) {
2786 if (!platform_get_drvdata(the_udc_pdev[i])) {
2787 /*
2788 * The udc was added successfully but its probe
2789 * function failed for some reason.
2790 */
2791 retval = -EINVAL;
2792 goto err_probe_udc;
2793 }
Sebastian Andrzej Siewior865835f2011-04-15 20:37:06 +02002794 }
Alan Sternd9b76252005-05-03 16:15:43 -04002795 return retval;
2796
Sebastian Andrzej Siewior865835f2011-04-15 20:37:06 +02002797err_probe_udc:
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002798 for (i = 0; i < mod_data.num; i++)
2799 platform_device_del(the_udc_pdev[i]);
Alan Sterna89a2cd2008-04-07 15:03:25 -04002800err_add_udc:
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002801 for (i = 0; i < mod_data.num; i++)
2802 platform_device_del(the_hcd_pdev[i]);
Alan Sterna89a2cd2008-04-07 15:03:25 -04002803err_add_hcd:
2804 platform_driver_unregister(&dummy_udc_driver);
Alan Sternd9b76252005-05-03 16:15:43 -04002805err_register_udc_driver:
Alan Sterna89a2cd2008-04-07 15:03:25 -04002806 platform_driver_unregister(&dummy_hcd_driver);
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002807err_add_pdata:
2808 for (i = 0; i < mod_data.num; i++)
2809 kfree(dum[i]);
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002810 for (i = 0; i < mod_data.num; i++)
2811 platform_device_put(the_udc_pdev[i]);
Alan Sterna89a2cd2008-04-07 15:03:25 -04002812err_alloc_udc:
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002813 for (i = 0; i < mod_data.num; i++)
2814 platform_device_put(the_hcd_pdev[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 return retval;
2816}
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002817module_init(init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002819static void __exit cleanup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002821 int i;
2822
2823 for (i = 0; i < mod_data.num; i++) {
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002824 struct dummy *dum;
2825
2826 dum = *((void **)dev_get_platdata(&the_udc_pdev[i]->dev));
2827
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002828 platform_device_unregister(the_udc_pdev[i]);
2829 platform_device_unregister(the_hcd_pdev[i]);
Sebastian Andrzej Siewiorb100a2f2012-10-29 18:09:56 +01002830 kfree(dum);
Sebastian Andrzej Siewiorc7a1db42012-10-29 18:09:55 +01002831 }
Alan Sterna89a2cd2008-04-07 15:03:25 -04002832 platform_driver_unregister(&dummy_udc_driver);
2833 platform_driver_unregister(&dummy_hcd_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834}
Sebastian Andrzej Siewior18f2cba2012-01-12 12:53:15 +01002835module_exit(cleanup);