blob: 1816a3e11b78a8625711fa3fb6bb41a359357c48 [file] [log] [blame]
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001/*
2 * Renesas USB driver
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
15 *
16 */
17#include <linux/io.h>
18#include <linux/list.h>
19#include <linux/module.h>
20#include <linux/platform_device.h>
21#include <linux/slab.h>
22#include <linux/usb.h>
23#include <linux/usb/hcd.h>
24#include "common.h"
25
26/*
27 *** HARDWARE LIMITATION ***
28 *
29 * 1) renesas_usbhs has a limited number of controllable devices.
30 * it can control only 9 devices in generally.
31 * see DEVADDn / DCPMAXP / PIPEMAXP.
32 *
33 * 2) renesas_usbhs pipe number is limited.
34 * the pipe will be re-used for each devices.
35 * so, software should control DATA0/1 sequence of each devices.
36 */
37
38
39/*
40 * image of mod_host
41 *
42 * +--------+
43 * | udev 0 | --> it is used when set address
44 * +--------+
45 *
46 * +--------+ pipes are reused for each uep.
47 * | udev 1 |-+- [uep 0 (dcp) ] --+ pipe will be switched when
48 * +--------+ | | target device was changed
49 * +- [uep 1 (bulk)] --|---+ +--------------+
50 * | +--------------> | pipe0 (dcp) |
51 * +- [uep 2 (bulk)] --|---|---+ +--------------+
52 * | | | | pipe1 (isoc) |
53 * +--------+ | | | +--------------+
54 * | udev 2 |-+- [uep 0 (dcp) ] --+ +-- |------> | pipe2 (bulk) |
55 * +--------+ | | | | +--------------+
56 * +- [uep 1 (int) ] --|-+ | +------> | pipe3 (bulk) |
57 * | | | | +--------------+
58 * +--------+ | +-|---|------> | pipe4 (int) |
59 * | udev 3 |-+- [uep 0 (dcp) ] --+ | | +--------------+
60 * +--------+ | | | | .... |
61 * +- [uep 1 (bulk)] ------+ | | .... |
62 * | |
63 * +- [uep 2 (bulk)]-----------+
64 */
65
66
67/*
68 * struct
69 */
70struct usbhsh_pipe_info {
71 unsigned int usr_cnt; /* see usbhsh_endpoint_alloc() */
72};
73
74struct usbhsh_request {
75 struct urb *urb;
76 struct usbhs_pkt pkt;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -070077};
78
79struct usbhsh_device {
80 struct usb_device *usbv;
81 struct list_head ep_list_head; /* list of usbhsh_ep */
82};
83
84struct usbhsh_ep {
85 struct usbhs_pipe *pipe;
86 struct usbhsh_device *udev; /* attached udev */
87 struct list_head ep_list; /* list to usbhsh_device */
88
89 int maxp;
90};
91
92#define USBHSH_DEVICE_MAX 10 /* see DEVADDn / DCPMAXP / PIPEMAXP */
93#define USBHSH_PORT_MAX 7 /* see DEVADDn :: HUBPORT */
94struct usbhsh_hpriv {
95 struct usbhs_mod mod;
96 struct usbhs_pipe *dcp;
97
98 struct usbhsh_device udev[USBHSH_DEVICE_MAX];
99
100 struct usbhsh_pipe_info *pipe_info;
101 int pipe_size;
102
103 u32 port_stat; /* USB_PORT_STAT_xxx */
104
Kuninori Morimoto7fccd482011-10-23 22:55:54 -0700105 struct completion setup_ack_done;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700106};
107
108
109static const char usbhsh_hcd_name[] = "renesas_usbhs host";
110
111/*
112 * macro
113 */
114#define usbhsh_priv_to_hpriv(priv) \
115 container_of(usbhs_mod_get(priv, USBHS_HOST), struct usbhsh_hpriv, mod)
116
117#define __usbhsh_for_each_hpipe(start, pos, h, i) \
118 for (i = start, pos = (h)->hpipe + i; \
119 i < (h)->hpipe_size; \
120 i++, pos = (h)->hpipe + i)
121
122#define usbhsh_for_each_hpipe(pos, hpriv, i) \
123 __usbhsh_for_each_hpipe(1, pos, hpriv, i)
124
125#define usbhsh_for_each_hpipe_with_dcp(pos, hpriv, i) \
126 __usbhsh_for_each_hpipe(0, pos, hpriv, i)
127
128#define __usbhsh_for_each_udev(start, pos, h, i) \
129 for (i = start, pos = (h)->udev + i; \
130 i < USBHSH_DEVICE_MAX; \
131 i++, pos = (h)->udev + i)
132
133#define usbhsh_for_each_udev(pos, hpriv, i) \
134 __usbhsh_for_each_udev(1, pos, hpriv, i)
135
136#define usbhsh_for_each_udev_with_dev0(pos, hpriv, i) \
137 __usbhsh_for_each_udev(0, pos, hpriv, i)
138
139#define usbhsh_hcd_to_hpriv(h) (struct usbhsh_hpriv *)((h)->hcd_priv)
140#define usbhsh_hcd_to_dev(h) ((h)->self.controller)
141
142#define usbhsh_hpriv_to_priv(h) ((h)->mod.priv)
143#define usbhsh_hpriv_to_dcp(h) ((h)->dcp)
144#define usbhsh_hpriv_to_hcd(h) \
145 container_of((void *)h, struct usb_hcd, hcd_priv)
146
147#define usbhsh_ep_to_uep(u) ((u)->hcpriv)
148#define usbhsh_uep_to_pipe(u) ((u)->pipe)
149#define usbhsh_uep_to_udev(u) ((u)->udev)
150#define usbhsh_urb_to_ureq(u) ((u)->hcpriv)
151#define usbhsh_urb_to_usbv(u) ((u)->dev)
152
153#define usbhsh_usbv_to_udev(d) dev_get_drvdata(&(d)->dev)
154
155#define usbhsh_udev_to_usbv(h) ((h)->usbv)
Kuninori Morimotoab142302011-10-31 00:48:00 -0700156#define usbhsh_udev_is_used(h) usbhsh_udev_to_usbv(h)
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700157
158#define usbhsh_pipe_info(p) ((p)->mod_private)
159
Kuninori Morimoto9c673652011-10-31 00:47:34 -0700160#define usbhsh_device_parent(d) (usbhsh_usbv_to_udev((d)->usbv->parent))
161#define usbhsh_device_hubport(d) ((d)->usbv->portnum)
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700162#define usbhsh_device_number(h, d) ((int)((d) - (h)->udev))
163#define usbhsh_device_nth(h, d) ((h)->udev + d)
164#define usbhsh_device0(h) usbhsh_device_nth(h, 0)
165
166#define usbhsh_port_stat_init(h) ((h)->port_stat = 0)
167#define usbhsh_port_stat_set(h, s) ((h)->port_stat |= (s))
168#define usbhsh_port_stat_clear(h, s) ((h)->port_stat &= ~(s))
169#define usbhsh_port_stat_get(h) ((h)->port_stat)
170
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700171#define usbhsh_pkt_to_ureq(p) \
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700172 container_of((void *)p, struct usbhsh_request, pkt)
173
174/*
175 * req alloc/free
176 */
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700177static struct usbhsh_request *usbhsh_ureq_alloc(struct usbhsh_hpriv *hpriv,
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700178 struct urb *urb,
179 gfp_t mem_flags)
180{
181 struct usbhsh_request *ureq;
182 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
183 struct device *dev = usbhs_priv_to_dev(priv);
184
Kuninori Morimotoc5b963f2011-10-31 00:47:44 -0700185 ureq = kzalloc(sizeof(struct usbhsh_request), mem_flags);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700186 if (!ureq) {
187 dev_err(dev, "ureq alloc fail\n");
188 return NULL;
189 }
190
191 usbhs_pkt_init(&ureq->pkt);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700192 ureq->urb = urb;
Kuninori Morimotofc9d5c72011-10-31 00:47:01 -0700193 usbhsh_urb_to_ureq(urb) = ureq;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700194
195 return ureq;
196}
197
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700198static void usbhsh_ureq_free(struct usbhsh_hpriv *hpriv,
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700199 struct usbhsh_request *ureq)
200{
Kuninori Morimotofc9d5c72011-10-31 00:47:01 -0700201 usbhsh_urb_to_ureq(ureq->urb) = NULL;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700202 ureq->urb = NULL;
Kuninori Morimotoc5b963f2011-10-31 00:47:44 -0700203
204 kfree(ureq);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700205}
206
207/*
208 * device control
209 */
Kuninori Morimoto9c673652011-10-31 00:47:34 -0700210static int usbhsh_connected_to_rhdev(struct usb_hcd *hcd,
211 struct usbhsh_device *udev)
212{
213 struct usb_device *usbv = usbhsh_udev_to_usbv(udev);
214
215 return hcd->self.root_hub == usbv->parent;
216}
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700217
218static int usbhsh_device_has_endpoint(struct usbhsh_device *udev)
219{
220 return !list_empty(&udev->ep_list_head);
221}
222
223static struct usbhsh_device *usbhsh_device_alloc(struct usbhsh_hpriv *hpriv,
224 struct urb *urb)
225{
226 struct usbhsh_device *udev = NULL;
227 struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
228 struct device *dev = usbhsh_hcd_to_dev(hcd);
229 struct usb_device *usbv = usbhsh_urb_to_usbv(urb);
230 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
Kuninori Morimotod399f902011-10-31 00:48:35 -0700231 unsigned long flags;
Kuninori Morimoto9c673652011-10-31 00:47:34 -0700232 u16 upphub, hubport;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700233 int i;
234
Kuninori Morimotod399f902011-10-31 00:48:35 -0700235 /******************** spin lock ********************/
236 usbhs_lock(priv, flags);
237
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700238 /*
Kuninori Morimotoab142302011-10-31 00:48:00 -0700239 * find device
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700240 */
241 if (0 == usb_pipedevice(urb->pipe)) {
Kuninori Morimotoab142302011-10-31 00:48:00 -0700242 /*
243 * device0 is special case
244 */
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700245 udev = usbhsh_device0(hpriv);
Kuninori Morimotoab142302011-10-31 00:48:00 -0700246 if (usbhsh_udev_is_used(udev))
247 udev = NULL;
248 } else {
249 struct usbhsh_device *pos;
250
251 /*
252 * find unused device
253 */
254 usbhsh_for_each_udev(pos, hpriv, i) {
255 if (usbhsh_udev_is_used(pos))
256 continue;
257 udev = pos;
258 break;
259 }
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700260 }
261
Kuninori Morimotod399f902011-10-31 00:48:35 -0700262 if (udev) {
263 /*
264 * usbhsh_usbv_to_udev()
265 * usbhsh_udev_to_usbv()
266 * will be enable
267 */
268 dev_set_drvdata(&usbv->dev, udev);
269 udev->usbv = usbv;
270 }
271
272 usbhs_unlock(priv, flags);
273 /******************** spin unlock ******************/
274
Kuninori Morimotoab142302011-10-31 00:48:00 -0700275 if (!udev) {
276 dev_err(dev, "no free usbhsh_device\n");
277 return NULL;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700278 }
279
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700280 if (usbhsh_device_has_endpoint(udev))
281 dev_warn(dev, "udev have old endpoint\n");
282
283 /* uep will be attached */
284 INIT_LIST_HEAD(&udev->ep_list_head);
285
Kuninori Morimoto9c673652011-10-31 00:47:34 -0700286 upphub = 0;
287 hubport = 0;
288 if (!usbhsh_connected_to_rhdev(hcd, udev)) {
289 /* if udev is not connected to rhdev, it means parent is Hub */
290 struct usbhsh_device *parent = usbhsh_device_parent(udev);
291
292 upphub = usbhsh_device_number(hpriv, parent);
293 hubport = usbhsh_device_hubport(udev);
294
295 dev_dbg(dev, "%s connecte to Hub [%d:%d](%p)\n", __func__,
296 upphub, hubport, parent);
297 }
298
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700299 /* set device config */
Kuninori Morimoto3dd49262011-10-31 00:47:13 -0700300 usbhs_set_device_config(priv,
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700301 usbhsh_device_number(hpriv, udev),
Kuninori Morimoto9c673652011-10-31 00:47:34 -0700302 upphub, hubport, usbv->speed);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700303
304 dev_dbg(dev, "%s [%d](%p)\n", __func__,
305 usbhsh_device_number(hpriv, udev), udev);
306
307 return udev;
308}
309
310static void usbhsh_device_free(struct usbhsh_hpriv *hpriv,
311 struct usbhsh_device *udev)
312{
313 struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
Kuninori Morimotod399f902011-10-31 00:48:35 -0700314 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700315 struct device *dev = usbhsh_hcd_to_dev(hcd);
316 struct usb_device *usbv = usbhsh_udev_to_usbv(udev);
Kuninori Morimotod399f902011-10-31 00:48:35 -0700317 unsigned long flags;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700318
319 dev_dbg(dev, "%s [%d](%p)\n", __func__,
320 usbhsh_device_number(hpriv, udev), udev);
321
322 if (usbhsh_device_has_endpoint(udev))
323 dev_warn(dev, "udev still have endpoint\n");
324
Kuninori Morimotod399f902011-10-31 00:48:35 -0700325 /******************** spin lock ********************/
326 usbhs_lock(priv, flags);
327
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700328 /*
329 * usbhsh_usbv_to_udev()
330 * usbhsh_udev_to_usbv()
331 * will be disable
332 */
333 dev_set_drvdata(&usbv->dev, NULL);
334 udev->usbv = NULL;
Kuninori Morimotod399f902011-10-31 00:48:35 -0700335
336 usbhs_unlock(priv, flags);
337 /******************** spin unlock ******************/
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700338}
339
340/*
341 * end-point control
342 */
343struct usbhsh_ep *usbhsh_endpoint_alloc(struct usbhsh_hpriv *hpriv,
344 struct usbhsh_device *udev,
345 struct usb_host_endpoint *ep,
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700346 int dir_in_req,
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700347 gfp_t mem_flags)
348{
349 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
350 struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
351 struct usbhsh_ep *uep;
352 struct usbhsh_pipe_info *info;
353 struct usbhs_pipe *pipe, *best_pipe;
354 struct device *dev = usbhsh_hcd_to_dev(hcd);
355 struct usb_endpoint_descriptor *desc = &ep->desc;
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700356 int type, i, dir_in;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700357 unsigned int min_usr;
Kuninori Morimotod399f902011-10-31 00:48:35 -0700358 unsigned long flags;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700359
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700360 dir_in_req = !!dir_in_req;
361
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700362 uep = kzalloc(sizeof(struct usbhsh_ep), mem_flags);
363 if (!uep) {
364 dev_err(dev, "usbhsh_ep alloc fail\n");
365 return NULL;
366 }
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700367
368 if (usb_endpoint_xfer_control(desc)) {
369 best_pipe = usbhsh_hpriv_to_dcp(hpriv);
370 goto usbhsh_endpoint_alloc_find_pipe;
371 }
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700372
Kuninori Morimotod399f902011-10-31 00:48:35 -0700373 /******************** spin lock ********************/
374 usbhs_lock(priv, flags);
375
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700376 /*
377 * find best pipe for endpoint
378 * see
379 * HARDWARE LIMITATION
380 */
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700381 type = usb_endpoint_type(desc);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700382 min_usr = ~0;
383 best_pipe = NULL;
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700384 usbhs_for_each_pipe(pipe, priv, i) {
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700385 if (!usbhs_pipe_type_is(pipe, type))
386 continue;
387
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700388 dir_in = !!usbhs_pipe_is_dir_in(pipe);
389 if (0 != (dir_in - dir_in_req))
390 continue;
391
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700392 info = usbhsh_pipe_info(pipe);
393
394 if (min_usr > info->usr_cnt) {
395 min_usr = info->usr_cnt;
396 best_pipe = pipe;
397 }
398 }
399
Kuninori Morimotod399f902011-10-31 00:48:35 -0700400 if (best_pipe) {
401 /* update pipe user count */
402 info = usbhsh_pipe_info(best_pipe);
403 info->usr_cnt++;
404
405 /* init this endpoint, and attach it to udev */
406 INIT_LIST_HEAD(&uep->ep_list);
407 list_add_tail(&uep->ep_list, &udev->ep_list_head);
408 }
409
410 usbhs_unlock(priv, flags);
411 /******************** spin unlock ******************/
412
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700413 if (unlikely(!best_pipe)) {
414 dev_err(dev, "couldn't find best pipe\n");
415 kfree(uep);
416 return NULL;
417 }
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700418usbhsh_endpoint_alloc_find_pipe:
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700419 /*
420 * init uep
421 */
422 uep->pipe = best_pipe;
423 uep->maxp = usb_endpoint_maxp(desc);
424 usbhsh_uep_to_udev(uep) = udev;
425 usbhsh_ep_to_uep(ep) = uep;
426
427 /*
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700428 * usbhs_pipe_config_update() should be called after
Kuninori Morimoto3dd49262011-10-31 00:47:13 -0700429 * usbhs_set_device_config()
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700430 * see
431 * DCPMAXP/PIPEMAXP
432 */
Kuninori Morimotod7a00ec2011-10-24 02:25:28 -0700433 usbhs_pipe_sequence_data0(uep->pipe);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700434 usbhs_pipe_config_update(uep->pipe,
435 usbhsh_device_number(hpriv, udev),
436 usb_endpoint_num(desc),
437 uep->maxp);
438
439 dev_dbg(dev, "%s [%d-%s](%p)\n", __func__,
440 usbhsh_device_number(hpriv, udev),
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700441 usbhs_pipe_name(uep->pipe), uep);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700442
443 return uep;
444}
445
446void usbhsh_endpoint_free(struct usbhsh_hpriv *hpriv,
447 struct usb_host_endpoint *ep)
448{
449 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
450 struct device *dev = usbhs_priv_to_dev(priv);
451 struct usbhsh_ep *uep = usbhsh_ep_to_uep(ep);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700452 struct usbhsh_pipe_info *info;
Kuninori Morimotod399f902011-10-31 00:48:35 -0700453 unsigned long flags;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700454
455 if (!uep)
456 return;
457
458 dev_dbg(dev, "%s [%d-%s](%p)\n", __func__,
Kuninori Morimoto55b5a622011-10-17 18:04:37 -0700459 usbhsh_device_number(hpriv, usbhsh_uep_to_udev(uep)),
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700460 usbhs_pipe_name(uep->pipe), uep);
461
Kuninori Morimotod399f902011-10-31 00:48:35 -0700462 /******************** spin lock ********************/
463 usbhs_lock(priv, flags);
464
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700465 info = usbhsh_pipe_info(uep->pipe);
466 info->usr_cnt--;
467
468 /* remove this endpoint from udev */
469 list_del_init(&uep->ep_list);
470
471 usbhsh_uep_to_udev(uep) = NULL;
472 usbhsh_ep_to_uep(ep) = NULL;
473
Kuninori Morimotod399f902011-10-31 00:48:35 -0700474 usbhs_unlock(priv, flags);
475 /******************** spin unlock ******************/
476
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700477 kfree(uep);
478}
479
480/*
481 * queue push/pop
482 */
483static void usbhsh_queue_done(struct usbhs_priv *priv, struct usbhs_pkt *pkt)
484{
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700485 struct usbhsh_request *ureq = usbhsh_pkt_to_ureq(pkt);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700486 struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
487 struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
488 struct urb *urb = ureq->urb;
489 struct device *dev = usbhs_priv_to_dev(priv);
490
491 dev_dbg(dev, "%s\n", __func__);
492
493 if (!urb) {
494 dev_warn(dev, "pkt doesn't have urb\n");
495 return;
496 }
497
498 urb->actual_length = pkt->actual;
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700499 usbhsh_ureq_free(hpriv, ureq);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700500
501 usb_hcd_unlink_urb_from_ep(hcd, urb);
502 usb_hcd_giveback_urb(hcd, urb, 0);
503}
504
505static int usbhsh_queue_push(struct usb_hcd *hcd,
506 struct usbhs_pipe *pipe,
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700507 struct urb *urb,
508 gfp_t mem_flags)
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700509{
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700510 struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700511 struct device *dev = usbhsh_hcd_to_dev(hcd);
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700512 struct usbhsh_request *ureq;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700513 void *buf;
514 int len;
515
516 if (usb_pipeisoc(urb->pipe)) {
517 dev_err(dev, "pipe iso is not supported now\n");
518 return -EIO;
519 }
520
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700521 /* this ureq will be freed on usbhsh_queue_done() */
522 ureq = usbhsh_ureq_alloc(hpriv, urb, mem_flags);
523 if (unlikely(!ureq)) {
524 dev_err(dev, "ureq alloc fail\n");
525 return -ENOMEM;
526 }
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700527
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700528 if (usb_pipein(urb->pipe))
529 pipe->handler = &usbhs_fifo_pio_pop_handler;
530 else
531 pipe->handler = &usbhs_fifo_pio_push_handler;
532
533 buf = (void *)(urb->transfer_buffer + urb->actual_length);
534 len = urb->transfer_buffer_length - urb->actual_length;
535
536 dev_dbg(dev, "%s\n", __func__);
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700537 usbhs_pkt_push(pipe, &ureq->pkt, usbhsh_queue_done,
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700538 buf, len, (urb->transfer_flags & URB_ZERO_PACKET));
539 usbhs_pkt_start(pipe);
540
541 return 0;
542}
543
544/*
545 * DCP setup stage
546 */
547static int usbhsh_is_request_address(struct urb *urb)
548{
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700549 struct usb_ctrlrequest *req;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700550
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700551 req = (struct usb_ctrlrequest *)urb->setup_packet;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700552
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700553 if ((DeviceOutRequest == req->bRequestType << 8) &&
554 (USB_REQ_SET_ADDRESS == req->bRequest))
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700555 return 1;
556 else
557 return 0;
558}
559
560static void usbhsh_setup_stage_packet_push(struct usbhsh_hpriv *hpriv,
561 struct urb *urb,
562 struct usbhs_pipe *pipe)
563{
564 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
565 struct usb_ctrlrequest req;
566 struct device *dev = usbhs_priv_to_dev(priv);
567
568 /*
569 * wait setup packet ACK
570 * see
571 * usbhsh_irq_setup_ack()
572 * usbhsh_irq_setup_err()
573 */
Kuninori Morimoto7fccd482011-10-23 22:55:54 -0700574 init_completion(&hpriv->setup_ack_done);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700575
576 /* copy original request */
577 memcpy(&req, urb->setup_packet, sizeof(struct usb_ctrlrequest));
578
579 /*
580 * renesas_usbhs can not use original usb address.
581 * see HARDWARE LIMITATION.
582 * modify usb address here.
583 */
584 if (usbhsh_is_request_address(urb)) {
585 /* FIXME */
586 req.wValue = 1;
587 dev_dbg(dev, "create new address - %d\n", req.wValue);
588 }
589
590 /* set request */
591 usbhs_usbreq_set_val(priv, &req);
592
593 /*
594 * wait setup packet ACK
595 */
Kuninori Morimoto7fccd482011-10-23 22:55:54 -0700596 wait_for_completion(&hpriv->setup_ack_done);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700597
598 dev_dbg(dev, "%s done\n", __func__);
599}
600
601/*
602 * DCP data stage
603 */
604static void usbhsh_data_stage_packet_done(struct usbhs_priv *priv,
605 struct usbhs_pkt *pkt)
606{
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700607 struct usbhsh_request *ureq = usbhsh_pkt_to_ureq(pkt);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700608 struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700609
610 /* this ureq was connected to urb when usbhsh_urb_enqueue() */
611
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700612 usbhsh_ureq_free(hpriv, ureq);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700613}
614
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700615static int usbhsh_data_stage_packet_push(struct usbhsh_hpriv *hpriv,
616 struct urb *urb,
617 struct usbhs_pipe *pipe,
618 gfp_t mem_flags)
619
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700620{
621 struct usbhsh_request *ureq;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700622
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700623 /* this ureq will be freed on usbhsh_data_stage_packet_done() */
624 ureq = usbhsh_ureq_alloc(hpriv, urb, mem_flags);
625 if (unlikely(!ureq))
626 return -ENOMEM;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700627
628 if (usb_pipein(urb->pipe))
629 pipe->handler = &usbhs_dcp_data_stage_in_handler;
630 else
631 pipe->handler = &usbhs_dcp_data_stage_out_handler;
632
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700633 usbhs_pkt_push(pipe, &ureq->pkt,
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700634 usbhsh_data_stage_packet_done,
635 urb->transfer_buffer,
636 urb->transfer_buffer_length,
637 (urb->transfer_flags & URB_ZERO_PACKET));
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700638
639 return 0;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700640}
641
642/*
643 * DCP status stage
644 */
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700645static int usbhsh_status_stage_packet_push(struct usbhsh_hpriv *hpriv,
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700646 struct urb *urb,
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700647 struct usbhs_pipe *pipe,
648 gfp_t mem_flags)
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700649{
650 struct usbhsh_request *ureq;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700651
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700652 /* This ureq will be freed on usbhsh_queue_done() */
653 ureq = usbhsh_ureq_alloc(hpriv, urb, mem_flags);
654 if (unlikely(!ureq))
655 return -ENOMEM;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700656
657 if (usb_pipein(urb->pipe))
658 pipe->handler = &usbhs_dcp_status_stage_in_handler;
659 else
660 pipe->handler = &usbhs_dcp_status_stage_out_handler;
661
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700662 usbhs_pkt_push(pipe, &ureq->pkt,
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700663 usbhsh_queue_done,
664 NULL,
665 urb->transfer_buffer_length,
666 0);
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700667
668 return 0;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700669}
670
671static int usbhsh_dcp_queue_push(struct usb_hcd *hcd,
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700672 struct usbhs_pipe *pipe,
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700673 struct urb *urb,
674 gfp_t mflags)
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700675{
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700676 struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700677 struct device *dev = usbhsh_hcd_to_dev(hcd);
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700678 int ret;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700679
680 dev_dbg(dev, "%s\n", __func__);
681
682 /*
683 * setup stage
684 *
685 * usbhsh_send_setup_stage_packet() wait SACK/SIGN
686 */
687 usbhsh_setup_stage_packet_push(hpriv, urb, pipe);
688
689 /*
690 * data stage
691 *
692 * It is pushed only when urb has buffer.
693 */
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700694 if (urb->transfer_buffer_length) {
695 ret = usbhsh_data_stage_packet_push(hpriv, urb, pipe, mflags);
696 if (ret < 0) {
697 dev_err(dev, "data stage failed\n");
698 return ret;
699 }
700 }
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700701
702 /*
703 * status stage
704 */
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700705 ret = usbhsh_status_stage_packet_push(hpriv, urb, pipe, mflags);
706 if (ret < 0) {
707 dev_err(dev, "status stage failed\n");
708 return ret;
709 }
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700710
711 /*
712 * start pushed packets
713 */
714 usbhs_pkt_start(pipe);
715
716 return 0;
717}
718
719/*
720 * dma map functions
721 */
722static int usbhsh_dma_map_ctrl(struct usbhs_pkt *pkt, int map)
723{
724 return 0;
725}
726
727/*
728 * for hc_driver
729 */
730static int usbhsh_host_start(struct usb_hcd *hcd)
731{
732 return 0;
733}
734
735static void usbhsh_host_stop(struct usb_hcd *hcd)
736{
737}
738
739static int usbhsh_urb_enqueue(struct usb_hcd *hcd,
740 struct urb *urb,
741 gfp_t mem_flags)
742{
743 struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
744 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
745 struct device *dev = usbhs_priv_to_dev(priv);
746 struct usb_device *usbv = usbhsh_urb_to_usbv(urb);
747 struct usb_host_endpoint *ep = urb->ep;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700748 struct usbhsh_device *udev, *new_udev = NULL;
749 struct usbhs_pipe *pipe;
750 struct usbhsh_ep *uep;
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700751 int is_dir_in = usb_pipein(urb->pipe);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700752
753 int ret;
754
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700755 dev_dbg(dev, "%s (%s)\n", __func__, is_dir_in ? "in" : "out");
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700756
757 ret = usb_hcd_link_urb_to_ep(hcd, urb);
758 if (ret)
759 goto usbhsh_urb_enqueue_error_not_linked;
760
761 /*
762 * get udev
763 */
764 udev = usbhsh_usbv_to_udev(usbv);
765 if (!udev) {
766 new_udev = usbhsh_device_alloc(hpriv, urb);
767 if (!new_udev)
768 goto usbhsh_urb_enqueue_error_not_linked;
769
770 udev = new_udev;
771 }
772
773 /*
774 * get uep
775 */
776 uep = usbhsh_ep_to_uep(ep);
777 if (!uep) {
Kuninori Morimoto73ef6352011-10-24 02:24:49 -0700778 uep = usbhsh_endpoint_alloc(hpriv, udev, ep,
779 is_dir_in, mem_flags);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700780 if (!uep)
781 goto usbhsh_urb_enqueue_error_free_device;
782 }
783 pipe = usbhsh_uep_to_pipe(uep);
784
785 /*
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700786 * push packet
787 */
788 if (usb_pipecontrol(urb->pipe))
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700789 ret = usbhsh_dcp_queue_push(hcd, pipe, urb, mem_flags);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700790 else
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700791 ret = usbhsh_queue_push(hcd, pipe, urb, mem_flags);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700792
Kuninori Morimotoee8a0bf2011-10-31 00:46:50 -0700793 return ret;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700794
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700795usbhsh_urb_enqueue_error_free_device:
796 if (new_udev)
797 usbhsh_device_free(hpriv, new_udev);
798usbhsh_urb_enqueue_error_not_linked:
799
800 dev_dbg(dev, "%s error\n", __func__);
801
802 return ret;
803}
804
805static int usbhsh_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
806{
807 struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
808 struct usbhsh_request *ureq = usbhsh_urb_to_ureq(urb);
809
Kuninori Morimotofc9d5c72011-10-31 00:47:01 -0700810 if (ureq)
Kuninori Morimoto25234b42011-10-23 19:56:53 -0700811 usbhsh_ureq_free(hpriv, ureq);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700812
813 return 0;
814}
815
816static void usbhsh_endpoint_disable(struct usb_hcd *hcd,
817 struct usb_host_endpoint *ep)
818{
819 struct usbhsh_ep *uep = usbhsh_ep_to_uep(ep);
820 struct usbhsh_device *udev;
821 struct usbhsh_hpriv *hpriv;
822
823 /*
824 * this function might be called manytimes by same hcd/ep
Kuninori Morimotofca8ab72011-10-31 00:47:24 -0700825 * in-endpoint == out-endpoint if ep == dcp.
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700826 */
827 if (!uep)
828 return;
829
830 udev = usbhsh_uep_to_udev(uep);
831 hpriv = usbhsh_hcd_to_hpriv(hcd);
832
833 usbhsh_endpoint_free(hpriv, ep);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -0700834
835 /*
836 * if there is no endpoint,
837 * free device
838 */
839 if (!usbhsh_device_has_endpoint(udev))
840 usbhsh_device_free(hpriv, udev);
841}
842
843static int usbhsh_hub_status_data(struct usb_hcd *hcd, char *buf)
844{
845 struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
846 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
847 struct device *dev = usbhs_priv_to_dev(priv);
848 int roothub_id = 1; /* only 1 root hub */
849
850 /*
851 * does port stat was changed ?
852 * check USB_PORT_STAT_C_xxx << 16
853 */
854 if (usbhsh_port_stat_get(hpriv) & 0xFFFF0000)
855 *buf = (1 << roothub_id);
856 else
857 *buf = 0;
858
859 dev_dbg(dev, "%s (%02x)\n", __func__, *buf);
860
861 return !!(*buf);
862}
863
864static int __usbhsh_hub_hub_feature(struct usbhsh_hpriv *hpriv,
865 u16 typeReq, u16 wValue,
866 u16 wIndex, char *buf, u16 wLength)
867{
868 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
869 struct device *dev = usbhs_priv_to_dev(priv);
870
871 switch (wValue) {
872 case C_HUB_OVER_CURRENT:
873 case C_HUB_LOCAL_POWER:
874 dev_dbg(dev, "%s :: C_HUB_xx\n", __func__);
875 return 0;
876 }
877
878 return -EPIPE;
879}
880
881static int __usbhsh_hub_port_feature(struct usbhsh_hpriv *hpriv,
882 u16 typeReq, u16 wValue,
883 u16 wIndex, char *buf, u16 wLength)
884{
885 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
886 struct device *dev = usbhs_priv_to_dev(priv);
887 int enable = (typeReq == SetPortFeature);
888 int speed, i, timeout = 128;
889 int roothub_id = 1; /* only 1 root hub */
890
891 /* common error */
892 if (wIndex > roothub_id || wLength != 0)
893 return -EPIPE;
894
895 /* check wValue */
896 switch (wValue) {
897 case USB_PORT_FEAT_POWER:
898 usbhs_vbus_ctrl(priv, enable);
899 dev_dbg(dev, "%s :: USB_PORT_FEAT_POWER\n", __func__);
900 break;
901
902 case USB_PORT_FEAT_ENABLE:
903 case USB_PORT_FEAT_SUSPEND:
904 case USB_PORT_FEAT_C_ENABLE:
905 case USB_PORT_FEAT_C_SUSPEND:
906 case USB_PORT_FEAT_C_CONNECTION:
907 case USB_PORT_FEAT_C_OVER_CURRENT:
908 case USB_PORT_FEAT_C_RESET:
909 dev_dbg(dev, "%s :: USB_PORT_FEAT_xxx\n", __func__);
910 break;
911
912 case USB_PORT_FEAT_RESET:
913 if (!enable)
914 break;
915
916 usbhsh_port_stat_clear(hpriv,
917 USB_PORT_STAT_HIGH_SPEED |
918 USB_PORT_STAT_LOW_SPEED);
919
920 usbhs_bus_send_reset(priv);
921 msleep(20);
922 usbhs_bus_send_sof_enable(priv);
923
924 for (i = 0; i < timeout ; i++) {
925 switch (usbhs_bus_get_speed(priv)) {
926 case USB_SPEED_LOW:
927 speed = USB_PORT_STAT_LOW_SPEED;
928 goto got_usb_bus_speed;
929 case USB_SPEED_HIGH:
930 speed = USB_PORT_STAT_HIGH_SPEED;
931 goto got_usb_bus_speed;
932 case USB_SPEED_FULL:
933 speed = 0;
934 goto got_usb_bus_speed;
935 }
936
937 msleep(20);
938 }
939 return -EPIPE;
940
941got_usb_bus_speed:
942 usbhsh_port_stat_set(hpriv, speed);
943 usbhsh_port_stat_set(hpriv, USB_PORT_STAT_ENABLE);
944
945 dev_dbg(dev, "%s :: USB_PORT_FEAT_RESET (speed = %d)\n",
946 __func__, speed);
947
948 /* status change is not needed */
949 return 0;
950
951 default:
952 return -EPIPE;
953 }
954
955 /* set/clear status */
956 if (enable)
957 usbhsh_port_stat_set(hpriv, (1 << wValue));
958 else
959 usbhsh_port_stat_clear(hpriv, (1 << wValue));
960
961 return 0;
962}
963
964static int __usbhsh_hub_get_status(struct usbhsh_hpriv *hpriv,
965 u16 typeReq, u16 wValue,
966 u16 wIndex, char *buf, u16 wLength)
967{
968 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
969 struct usb_hub_descriptor *desc = (struct usb_hub_descriptor *)buf;
970 struct device *dev = usbhs_priv_to_dev(priv);
971 int roothub_id = 1; /* only 1 root hub */
972
973 switch (typeReq) {
974 case GetHubStatus:
975 dev_dbg(dev, "%s :: GetHubStatus\n", __func__);
976
977 *buf = 0x00;
978 break;
979
980 case GetPortStatus:
981 if (wIndex != roothub_id)
982 return -EPIPE;
983
984 dev_dbg(dev, "%s :: GetPortStatus\n", __func__);
985 *(__le32 *)buf = cpu_to_le32(usbhsh_port_stat_get(hpriv));
986 break;
987
988 case GetHubDescriptor:
989 desc->bDescriptorType = 0x29;
990 desc->bHubContrCurrent = 0;
991 desc->bNbrPorts = roothub_id;
992 desc->bDescLength = 9;
993 desc->bPwrOn2PwrGood = 0;
994 desc->wHubCharacteristics = cpu_to_le16(0x0011);
995 desc->u.hs.DeviceRemovable[0] = (roothub_id << 1);
996 desc->u.hs.DeviceRemovable[1] = ~0;
997 dev_dbg(dev, "%s :: GetHubDescriptor\n", __func__);
998 break;
999 }
1000
1001 return 0;
1002}
1003
1004static int usbhsh_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
1005 u16 wIndex, char *buf, u16 wLength)
1006{
1007 struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
1008 struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
1009 struct device *dev = usbhs_priv_to_dev(priv);
1010 int ret = -EPIPE;
1011
1012 switch (typeReq) {
1013
1014 /* Hub Feature */
1015 case ClearHubFeature:
1016 case SetHubFeature:
1017 ret = __usbhsh_hub_hub_feature(hpriv, typeReq,
1018 wValue, wIndex, buf, wLength);
1019 break;
1020
1021 /* Port Feature */
1022 case SetPortFeature:
1023 case ClearPortFeature:
1024 ret = __usbhsh_hub_port_feature(hpriv, typeReq,
1025 wValue, wIndex, buf, wLength);
1026 break;
1027
1028 /* Get status */
1029 case GetHubStatus:
1030 case GetPortStatus:
1031 case GetHubDescriptor:
1032 ret = __usbhsh_hub_get_status(hpriv, typeReq,
1033 wValue, wIndex, buf, wLength);
1034 break;
1035 }
1036
1037 dev_dbg(dev, "typeReq = %x, ret = %d, port_stat = %x\n",
1038 typeReq, ret, usbhsh_port_stat_get(hpriv));
1039
1040 return ret;
1041}
1042
1043static struct hc_driver usbhsh_driver = {
1044 .description = usbhsh_hcd_name,
1045 .hcd_priv_size = sizeof(struct usbhsh_hpriv),
1046
1047 /*
1048 * generic hardware linkage
1049 */
1050 .flags = HCD_USB2,
1051
1052 .start = usbhsh_host_start,
1053 .stop = usbhsh_host_stop,
1054
1055 /*
1056 * managing i/o requests and associated device resources
1057 */
1058 .urb_enqueue = usbhsh_urb_enqueue,
1059 .urb_dequeue = usbhsh_urb_dequeue,
1060 .endpoint_disable = usbhsh_endpoint_disable,
1061
1062 /*
1063 * root hub
1064 */
1065 .hub_status_data = usbhsh_hub_status_data,
1066 .hub_control = usbhsh_hub_control,
1067};
1068
1069/*
1070 * interrupt functions
1071 */
1072static int usbhsh_irq_attch(struct usbhs_priv *priv,
1073 struct usbhs_irq_state *irq_state)
1074{
1075 struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
1076 struct device *dev = usbhs_priv_to_dev(priv);
1077
1078 dev_dbg(dev, "device attached\n");
1079
1080 usbhsh_port_stat_set(hpriv, USB_PORT_STAT_CONNECTION);
1081 usbhsh_port_stat_set(hpriv, USB_PORT_STAT_C_CONNECTION << 16);
1082
1083 return 0;
1084}
1085
1086static int usbhsh_irq_dtch(struct usbhs_priv *priv,
1087 struct usbhs_irq_state *irq_state)
1088{
1089 struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
1090 struct device *dev = usbhs_priv_to_dev(priv);
1091
1092 dev_dbg(dev, "device detached\n");
1093
1094 usbhsh_port_stat_clear(hpriv, USB_PORT_STAT_CONNECTION);
1095 usbhsh_port_stat_set(hpriv, USB_PORT_STAT_C_CONNECTION << 16);
1096
1097 return 0;
1098}
1099
1100static int usbhsh_irq_setup_ack(struct usbhs_priv *priv,
1101 struct usbhs_irq_state *irq_state)
1102{
1103 struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
1104 struct device *dev = usbhs_priv_to_dev(priv);
1105
1106 dev_dbg(dev, "setup packet OK\n");
1107
Kuninori Morimoto7fccd482011-10-23 22:55:54 -07001108 complete(&hpriv->setup_ack_done); /* see usbhsh_urb_enqueue() */
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001109
1110 return 0;
1111}
1112
1113static int usbhsh_irq_setup_err(struct usbhs_priv *priv,
1114 struct usbhs_irq_state *irq_state)
1115{
1116 struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
1117 struct device *dev = usbhs_priv_to_dev(priv);
1118
1119 dev_dbg(dev, "setup packet Err\n");
1120
Kuninori Morimoto7fccd482011-10-23 22:55:54 -07001121 complete(&hpriv->setup_ack_done); /* see usbhsh_urb_enqueue() */
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001122
1123 return 0;
1124}
1125
1126/*
1127 * module start/stop
1128 */
1129static void usbhsh_pipe_init_for_host(struct usbhs_priv *priv)
1130{
1131 struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
1132 struct usbhsh_pipe_info *pipe_info = hpriv->pipe_info;
1133 struct usbhs_pipe *pipe;
1134 u32 *pipe_type = usbhs_get_dparam(priv, pipe_type);
1135 int pipe_size = usbhs_get_dparam(priv, pipe_size);
1136 int old_type, dir_in, i;
1137
1138 /* init all pipe */
1139 old_type = USB_ENDPOINT_XFER_CONTROL;
1140 for (i = 0; i < pipe_size; i++) {
1141 pipe_info[i].usr_cnt = 0;
1142
1143 /*
1144 * data "output" will be finished as soon as possible,
1145 * but there is no guaranty at data "input" case.
1146 *
1147 * "input" needs "standby" pipe.
1148 * So, "input" direction pipe > "output" direction pipe
1149 * is good idea.
1150 *
1151 * 1st USB_ENDPOINT_XFER_xxx will be output direction,
1152 * and the other will be input direction here.
1153 *
1154 * ex)
1155 * ...
1156 * USB_ENDPOINT_XFER_ISOC -> dir out
1157 * USB_ENDPOINT_XFER_ISOC -> dir in
1158 * USB_ENDPOINT_XFER_BULK -> dir out
1159 * USB_ENDPOINT_XFER_BULK -> dir in
1160 * USB_ENDPOINT_XFER_BULK -> dir in
1161 * ...
1162 */
1163 dir_in = (pipe_type[i] == old_type);
1164 old_type = pipe_type[i];
1165
1166 if (USB_ENDPOINT_XFER_CONTROL == pipe_type[i]) {
1167 pipe = usbhs_dcp_malloc(priv);
1168 usbhsh_hpriv_to_dcp(hpriv) = pipe;
1169 } else {
1170 pipe = usbhs_pipe_malloc(priv,
1171 pipe_type[i],
1172 dir_in);
1173 }
1174
1175 pipe->mod_private = pipe_info + i;
1176 }
1177}
1178
1179static int usbhsh_start(struct usbhs_priv *priv)
1180{
1181 struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
1182 struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
1183 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
1184 struct device *dev = usbhs_priv_to_dev(priv);
1185 int ret;
1186
1187 /* add hcd */
1188 ret = usb_add_hcd(hcd, 0, 0);
1189 if (ret < 0)
1190 return 0;
1191
1192 /*
1193 * pipe initialize and enable DCP
1194 */
1195 usbhs_pipe_init(priv,
1196 usbhsh_dma_map_ctrl);
1197 usbhs_fifo_init(priv);
1198 usbhsh_pipe_init_for_host(priv);
1199
1200 /*
1201 * system config enble
1202 * - HI speed
1203 * - host
1204 * - usb module
1205 */
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001206 usbhs_sys_host_ctrl(priv, 1);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001207
1208 /*
1209 * enable irq callback
1210 */
1211 mod->irq_attch = usbhsh_irq_attch;
1212 mod->irq_dtch = usbhsh_irq_dtch;
1213 mod->irq_sack = usbhsh_irq_setup_ack;
1214 mod->irq_sign = usbhsh_irq_setup_err;
1215 usbhs_irq_callback_update(priv, mod);
1216
1217 dev_dbg(dev, "start host\n");
1218
1219 return ret;
1220}
1221
1222static int usbhsh_stop(struct usbhs_priv *priv)
1223{
1224 struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
1225 struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
Kuninori Morimoto146ee502011-10-24 02:25:07 -07001226 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001227 struct device *dev = usbhs_priv_to_dev(priv);
1228
Kuninori Morimoto146ee502011-10-24 02:25:07 -07001229 /*
1230 * disable irq callback
1231 */
1232 mod->irq_attch = NULL;
1233 mod->irq_dtch = NULL;
1234 mod->irq_sack = NULL;
1235 mod->irq_sign = NULL;
1236 usbhs_irq_callback_update(priv, mod);
1237
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001238 usb_remove_hcd(hcd);
1239
1240 /* disable sys */
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001241 usbhs_sys_host_ctrl(priv, 0);
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001242
1243 dev_dbg(dev, "quit host\n");
1244
1245 return 0;
1246}
1247
Kuninori Morimotob7a8d172011-10-26 19:33:49 -07001248int usbhs_mod_host_probe(struct usbhs_priv *priv)
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001249{
1250 struct usbhsh_hpriv *hpriv;
1251 struct usb_hcd *hcd;
1252 struct usbhsh_pipe_info *pipe_info;
1253 struct usbhsh_device *udev;
1254 struct device *dev = usbhs_priv_to_dev(priv);
1255 int pipe_size = usbhs_get_dparam(priv, pipe_size);
1256 int i;
1257
1258 /* initialize hcd */
1259 hcd = usb_create_hcd(&usbhsh_driver, dev, usbhsh_hcd_name);
1260 if (!hcd) {
1261 dev_err(dev, "Failed to create hcd\n");
1262 return -ENOMEM;
1263 }
1264
1265 pipe_info = kzalloc(sizeof(*pipe_info) * pipe_size, GFP_KERNEL);
1266 if (!pipe_info) {
1267 dev_err(dev, "Could not allocate pipe_info\n");
1268 goto usbhs_mod_host_probe_err;
1269 }
1270
1271 /*
1272 * CAUTION
1273 *
1274 * There is no guarantee that it is possible to access usb module here.
1275 * Don't accesses to it.
1276 * The accesse will be enable after "usbhsh_start"
1277 */
1278
1279 hpriv = usbhsh_hcd_to_hpriv(hcd);
1280
1281 /*
1282 * register itself
1283 */
1284 usbhs_mod_register(priv, &hpriv->mod, USBHS_HOST);
1285
1286 /* init hpriv */
1287 hpriv->mod.name = "host";
1288 hpriv->mod.start = usbhsh_start;
1289 hpriv->mod.stop = usbhsh_stop;
1290 hpriv->pipe_info = pipe_info;
1291 hpriv->pipe_size = pipe_size;
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001292 usbhsh_port_stat_init(hpriv);
1293
1294 /* init all device */
1295 usbhsh_for_each_udev_with_dev0(udev, hpriv, i) {
1296 udev->usbv = NULL;
1297 INIT_LIST_HEAD(&udev->ep_list_head);
1298 }
1299
1300 dev_info(dev, "host probed\n");
1301
1302 return 0;
1303
1304usbhs_mod_host_probe_err:
1305 usb_put_hcd(hcd);
1306
1307 return -ENOMEM;
1308}
1309
Kuninori Morimotob7a8d172011-10-26 19:33:49 -07001310int usbhs_mod_host_remove(struct usbhs_priv *priv)
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001311{
1312 struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
1313 struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
1314
Kuninori Morimoto034d7c12011-10-10 22:07:40 -07001315 usb_put_hcd(hcd);
1316
1317 return 0;
1318}