Blame view

drivers/usb/renesas_usbhs/mod_host.c 36.6 KB
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  /*
   * Renesas USB driver
   *
   * Copyright (C) 2011 Renesas Solutions Corp.
   * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
   *
   */
  #include <linux/io.h>
  #include <linux/list.h>
  #include <linux/module.h>
  #include <linux/platform_device.h>
  #include <linux/slab.h>
  #include <linux/usb.h>
  #include <linux/usb/hcd.h>
  #include "common.h"
  
  /*
   *** HARDWARE LIMITATION ***
   *
   * 1) renesas_usbhs has a limited number of controllable devices.
   *    it can control only 9 devices in generally.
   *	see DEVADDn / DCPMAXP / PIPEMAXP.
   *
   * 2) renesas_usbhs pipe number is limited.
   *    the pipe will be re-used for each devices.
   *    so, software should control DATA0/1 sequence of each devices.
   */
  
  
  /*
   *		image of mod_host
   *
   * +--------+
   * | udev 0 | --> it is used when set address
   * +--------+
   *
   * +--------+					pipes are reused for each uep.
   * | udev 1 |-+- [uep 0 (dcp) ] --+		pipe will be switched when
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
48
   * +--------+ |			  |		other device requested
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
49
50
   *	      +- [uep 1 (bulk)]	--|---+		   +--------------+
   *	      |			  +--------------> | pipe0 (dcp)  |
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
51
52
53
54
55
56
57
58
59
60
61
   *	      +- [uep 2 (bulk)]	-@    |		   +--------------+
   *				      |		   | pipe1 (isoc) |
   * +--------+			      |		   +--------------+
   * | udev 2 |-+- [uep 0 (dcp) ]	-@    +----------> | pipe2 (bulk) |
   * +--------+ |					   +--------------+
   *	      +- [uep 1 (int) ]	----+	  +------> | pipe3 (bulk) |
   *				    |	  |	   +--------------+
   * +--------+			    +-----|------> | pipe4 (int)  |
   * | udev 3 |-+- [uep 0 (dcp) ]	-@	  |	   +--------------+
   * +--------+ |				  |	   | ....	  |
   *	      +- [uep 1 (bulk)]	-@	  |	   | ....	  |
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
62
63
   *	      |				  |
   *	      +- [uep 2 (bulk)]-----------+
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
64
65
66
   *
   * @ :	uep requested free pipe, but all have been used.
   *	now it is waiting for free pipe
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
67
68
69
70
71
72
   */
  
  
  /*
   *		struct
   */
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
73
74
75
  struct usbhsh_request {
  	struct urb		*urb;
  	struct usbhs_pkt	pkt;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
76
77
78
79
80
81
82
83
  };
  
  struct usbhsh_device {
  	struct usb_device	*usbv;
  	struct list_head	ep_list_head; /* list of usbhsh_ep */
  };
  
  struct usbhsh_ep {
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
84
  	struct usbhs_pipe	*pipe;   /* attached pipe */
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
85
  	struct usbhsh_device	*udev;   /* attached udev */
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
86
  	struct usb_host_endpoint *ep;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
87
  	struct list_head	ep_list; /* list to usbhsh_device */
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
88
89
90
91
92
93
94
95
96
  };
  
  #define USBHSH_DEVICE_MAX	10 /* see DEVADDn / DCPMAXP / PIPEMAXP */
  #define USBHSH_PORT_MAX		 7 /* see DEVADDn :: HUBPORT */
  struct usbhsh_hpriv {
  	struct usbhs_mod	mod;
  	struct usbhs_pipe	*dcp;
  
  	struct usbhsh_device	udev[USBHSH_DEVICE_MAX];
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
97
  	u32	port_stat;	/* USB_PORT_STAT_xxx */
7fccd480b   Kuninori Morimoto   usb: gadget: rene...
98
  	struct completion	setup_ack_done;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
99
100
101
102
103
104
105
106
107
108
  };
  
  
  static const char usbhsh_hcd_name[] = "renesas_usbhs host";
  
  /*
   *		macro
   */
  #define usbhsh_priv_to_hpriv(priv) \
  	container_of(usbhs_mod_get(priv, USBHS_HOST), struct usbhsh_hpriv, mod)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
  #define __usbhsh_for_each_udev(start, pos, h, i)	\
  	for (i = start, pos = (h)->udev + i;		\
  	     i < USBHSH_DEVICE_MAX;			\
  	     i++, pos = (h)->udev + i)
  
  #define usbhsh_for_each_udev(pos, hpriv, i)	\
  	__usbhsh_for_each_udev(1, pos, hpriv, i)
  
  #define usbhsh_for_each_udev_with_dev0(pos, hpriv, i)	\
  	__usbhsh_for_each_udev(0, pos, hpriv, i)
  
  #define usbhsh_hcd_to_hpriv(h)	(struct usbhsh_hpriv *)((h)->hcd_priv)
  #define usbhsh_hcd_to_dev(h)	((h)->self.controller)
  
  #define usbhsh_hpriv_to_priv(h)	((h)->mod.priv)
  #define usbhsh_hpriv_to_dcp(h)	((h)->dcp)
  #define usbhsh_hpriv_to_hcd(h)	\
  	container_of((void *)h, struct usb_hcd, hcd_priv)
  
  #define usbhsh_ep_to_uep(u)	((u)->hcpriv)
  #define usbhsh_uep_to_pipe(u)	((u)->pipe)
  #define usbhsh_uep_to_udev(u)	((u)->udev)
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
131
  #define usbhsh_uep_to_ep(u)	((u)->ep)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
132
133
134
135
136
137
  #define usbhsh_urb_to_ureq(u)	((u)->hcpriv)
  #define usbhsh_urb_to_usbv(u)	((u)->dev)
  
  #define usbhsh_usbv_to_udev(d)	dev_get_drvdata(&(d)->dev)
  
  #define usbhsh_udev_to_usbv(h)	((h)->usbv)
ab1423085   Kuninori Morimoto   usb: gadget: rene...
138
  #define usbhsh_udev_is_used(h)	usbhsh_udev_to_usbv(h)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
139

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
140
  #define usbhsh_pipe_to_uep(p)	((p)->mod_private)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
141

9c6736523   Kuninori Morimoto   usb: gadget: rene...
142
143
  #define usbhsh_device_parent(d)		(usbhsh_usbv_to_udev((d)->usbv->parent))
  #define usbhsh_device_hubport(d)	((d)->usbv->portnum)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
144
145
146
147
148
149
150
151
  #define usbhsh_device_number(h, d)	((int)((d) - (h)->udev))
  #define usbhsh_device_nth(h, d)		((h)->udev + d)
  #define usbhsh_device0(h)		usbhsh_device_nth(h, 0)
  
  #define usbhsh_port_stat_init(h)	((h)->port_stat = 0)
  #define usbhsh_port_stat_set(h, s)	((h)->port_stat |= (s))
  #define usbhsh_port_stat_clear(h, s)	((h)->port_stat &= ~(s))
  #define usbhsh_port_stat_get(h)		((h)->port_stat)
25234b46b   Kuninori Morimoto   usb: gadget: rene...
152
  #define usbhsh_pkt_to_ureq(p)	\
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
153
154
155
156
157
  	container_of((void *)p, struct usbhsh_request, pkt)
  
  /*
   *		req alloc/free
   */
25234b46b   Kuninori Morimoto   usb: gadget: rene...
158
  static struct usbhsh_request *usbhsh_ureq_alloc(struct usbhsh_hpriv *hpriv,
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
159
160
161
162
163
164
  					       struct urb *urb,
  					       gfp_t mem_flags)
  {
  	struct usbhsh_request *ureq;
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  	struct device *dev = usbhs_priv_to_dev(priv);
c5b963f80   Kuninori Morimoto   usb: gadget: rene...
165
  	ureq = kzalloc(sizeof(struct usbhsh_request), mem_flags);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
166
167
168
169
170
171
172
  	if (!ureq) {
  		dev_err(dev, "ureq alloc fail
  ");
  		return NULL;
  	}
  
  	usbhs_pkt_init(&ureq->pkt);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
173
  	ureq->urb = urb;
fc9d5c79f   Kuninori Morimoto   usb: gadget: rene...
174
  	usbhsh_urb_to_ureq(urb) = ureq;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
175
176
177
  
  	return ureq;
  }
25234b46b   Kuninori Morimoto   usb: gadget: rene...
178
  static void usbhsh_ureq_free(struct usbhsh_hpriv *hpriv,
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
179
180
  			    struct usbhsh_request *ureq)
  {
fc9d5c79f   Kuninori Morimoto   usb: gadget: rene...
181
  	usbhsh_urb_to_ureq(ureq->urb) = NULL;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
182
  	ureq->urb = NULL;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
183

c5b963f80   Kuninori Morimoto   usb: gadget: rene...
184
  	kfree(ureq);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
185
  }
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
186

034d7c13a   Kuninori Morimoto   usb: gadget: rene...
187
  /*
b1930da08   Kuninori Morimoto   usb: renesas_usbh...
188
189
190
191
   *		status
   */
  static int usbhsh_is_running(struct usbhsh_hpriv *hpriv)
  {
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
192
  	/*
b1930da08   Kuninori Morimoto   usb: renesas_usbh...
193
194
195
196
197
  	 * we can decide some device is attached or not
  	 * by checking mod.irq_attch
  	 * see
  	 *	usbhsh_irq_attch()
  	 *	usbhsh_irq_dtch()
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
198
  	 */
b1930da08   Kuninori Morimoto   usb: renesas_usbh...
199
  	return (hpriv->mod.irq_attch == NULL);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
200
201
202
  }
  
  /*
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
203
   *		pipe control
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
204
   */
3edeee389   Kuninori Morimoto   usb: renesas_usbh...
205
206
207
  static void usbhsh_endpoint_sequence_save(struct usbhsh_hpriv *hpriv,
  					  struct urb *urb,
  					  struct usbhs_pkt *pkt)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
208
  {
3edeee389   Kuninori Morimoto   usb: renesas_usbh...
209
210
211
  	int len = urb->actual_length;
  	int maxp = usb_endpoint_maxp(&urb->ep->desc);
  	int t = 0;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
212

3edeee389   Kuninori Morimoto   usb: renesas_usbh...
213
214
215
  	/* DCP is out of sequence control */
  	if (usb_pipecontrol(urb->pipe))
  		return;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
216
217
  
  	/*
3edeee389   Kuninori Morimoto   usb: renesas_usbh...
218
219
220
221
222
  	 * renesas_usbhs pipe has a limitation in a number.
  	 * So, driver should re-use the limited pipe for each device/endpoint.
  	 * DATA0/1 sequence should be saved for it.
  	 * see [image of mod_host]
  	 *     [HARDWARE LIMITATION]
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
223
  	 */
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
224
225
  
  	/*
3edeee389   Kuninori Morimoto   usb: renesas_usbh...
226
227
228
229
230
231
232
  	 * next sequence depends on actual_length
  	 *
  	 * ex) actual_length = 1147, maxp = 512
  	 * data0 : 512
  	 * data1 : 512
  	 * data0 : 123
  	 * data1 is the next sequence
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
233
  	 */
3edeee389   Kuninori Morimoto   usb: renesas_usbh...
234
235
236
237
238
239
240
241
242
243
244
245
  	t = len / maxp;
  	if (len % maxp)
  		t++;
  	if (pkt->zero)
  		t++;
  	t %= 2;
  
  	if (t)
  		usb_dotoggle(urb->dev,
  			     usb_pipeendpoint(urb->pipe),
  			     usb_pipeout(urb->pipe));
  }
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
246
247
  static struct usbhsh_device *usbhsh_device_get(struct usbhsh_hpriv *hpriv,
  					       struct urb *urb);
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
248
249
250
  
  static int usbhsh_pipe_attach(struct usbhsh_hpriv *hpriv,
  			      struct urb *urb)
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
251
252
  {
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
253
  	struct usbhsh_ep *uep = usbhsh_ep_to_uep(urb->ep);
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
254
  	struct usbhsh_device *udev = usbhsh_device_get(hpriv, urb);
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
255
256
  	struct usbhs_pipe *pipe;
  	struct usb_endpoint_descriptor *desc = &urb->ep->desc;
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
257
  	struct device *dev = usbhs_priv_to_dev(priv);
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
258
  	unsigned long flags;
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
259
260
261
262
  	int dir_in_req = !!usb_pipein(urb->pipe);
  	int is_dcp = usb_endpoint_xfer_control(desc);
  	int i, dir_in;
  	int ret = -EBUSY;
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
263
264
265
  
  	/********************  spin lock ********************/
  	usbhs_lock(priv, flags);
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
266
267
268
269
  	if (unlikely(usbhsh_uep_to_pipe(uep))) {
  		dev_err(dev, "uep already has pipe
  ");
  		goto usbhsh_pipe_attach_done;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
270
  	}
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
271
  	usbhs_for_each_pipe_with_dcp(pipe, priv, i) {
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
272

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
273
274
275
  		/* check pipe type */
  		if (!usbhs_pipe_type_is(pipe, usb_endpoint_type(desc)))
  			continue;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
276

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
277
278
  		/* check pipe direction if normal pipe */
  		if (!is_dcp) {
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
279
280
281
  			dir_in = !!usbhs_pipe_is_dir_in(pipe);
  			if (0 != (dir_in - dir_in_req))
  				continue;
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
282
  		}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
283

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
284
285
286
  		/* check pipe is free */
  		if (usbhsh_pipe_to_uep(pipe))
  			continue;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
287

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
288
289
290
291
292
293
294
295
296
297
  		/*
  		 * attach pipe to uep
  		 *
  		 * usbhs_pipe_config_update() should be called after
  		 * usbhs_set_device_config()
  		 * see
  		 *  DCPMAXP/PIPEMAXP
  		 */
  		usbhsh_uep_to_pipe(uep)		= pipe;
  		usbhsh_pipe_to_uep(pipe)	= uep;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
298

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
299
300
301
302
  		usbhs_pipe_config_update(pipe,
  					 usbhsh_device_number(hpriv, udev),
  					 usb_endpoint_num(desc),
  					 usb_endpoint_maxp(desc));
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
303

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
304
305
306
307
308
309
  		dev_dbg(dev, "%s [%d-%d(%s:%s)]
  ", __func__,
  			usbhsh_device_number(hpriv, udev),
  			usb_endpoint_num(desc),
  			usbhs_pipe_name(pipe),
  			dir_in_req ? "in" : "out");
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
310

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
311
312
  		ret = 0;
  		break;
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
313
  	}
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
314
315
316
  usbhsh_pipe_attach_done:
  	usbhs_unlock(priv, flags);
  	/********************  spin unlock ******************/
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
317

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
318
  	return ret;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
319
  }
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
320
321
  static void usbhsh_pipe_detach(struct usbhsh_hpriv *hpriv,
  			       struct usbhsh_ep *uep)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
322
  {
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
323
324
325
326
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  	struct usbhs_pipe *pipe;
  	struct device *dev = usbhs_priv_to_dev(priv);
  	unsigned long flags;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
327

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
328
329
  	/********************  spin lock ********************/
  	usbhs_lock(priv, flags);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
330

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
331
  	pipe = usbhsh_uep_to_pipe(uep);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
332

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
  	if (unlikely(!pipe)) {
  		dev_err(dev, "uep doens't have pipe
  ");
  	} else {
  		struct usb_host_endpoint *ep = usbhsh_uep_to_ep(uep);
  		struct usbhsh_device *udev = usbhsh_uep_to_udev(uep);
  
  		/* detach pipe from uep */
  		usbhsh_uep_to_pipe(uep)		= NULL;
  		usbhsh_pipe_to_uep(pipe)	= NULL;
  
  		dev_dbg(dev, "%s [%d-%d(%s)]
  ", __func__,
  			usbhsh_device_number(hpriv, udev),
  			usb_endpoint_num(&ep->desc),
  			usbhs_pipe_name(pipe));
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
349
350
351
352
  	}
  
  	usbhs_unlock(priv, flags);
  	/********************  spin unlock ******************/
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
353
354
355
  }
  
  /*
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
356
   *		endpoint control
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
357
   */
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
358
359
360
  static int usbhsh_endpoint_attach(struct usbhsh_hpriv *hpriv,
  				  struct urb *urb,
  				  gfp_t mem_flags)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
361
362
  {
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
363
364
  	struct usbhsh_device *udev = usbhsh_device_get(hpriv, urb);
  	struct usb_host_endpoint *ep = urb->ep;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
365
  	struct usbhsh_ep *uep;
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
366
  	struct device *dev = usbhs_priv_to_dev(priv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
367
  	struct usb_endpoint_descriptor *desc = &ep->desc;
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
368
  	unsigned long flags;
73ef635a0   Kuninori Morimoto   usb: gadget: rene...
369

034d7c13a   Kuninori Morimoto   usb: gadget: rene...
370
371
372
373
  	uep = kzalloc(sizeof(struct usbhsh_ep), mem_flags);
  	if (!uep) {
  		dev_err(dev, "usbhsh_ep alloc fail
  ");
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
374
  		return -ENOMEM;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
375
  	}
73ef635a0   Kuninori Morimoto   usb: gadget: rene...
376

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
377
378
  	/********************  spin lock ********************/
  	usbhs_lock(priv, flags);
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
379
  	/*
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
380
  	 * init endpoint
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
381
  	 */
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
382
383
  	INIT_LIST_HEAD(&uep->ep_list);
  	list_add_tail(&uep->ep_list, &udev->ep_list_head);
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
384
385
386
  	usbhsh_uep_to_udev(uep)	= udev;
  	usbhsh_uep_to_ep(uep)	= ep;
  	usbhsh_ep_to_uep(ep)	= uep;
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
387
388
  	usbhs_unlock(priv, flags);
  	/********************  spin unlock ******************/
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
389

e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
390
391
  	dev_dbg(dev, "%s [%d-%d]
  ", __func__,
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
392
  		usbhsh_device_number(hpriv, udev),
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
393
  		usb_endpoint_num(desc));
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
394
395
396
397
398
399
400
401
402
403
  
  	return 0;
  }
  
  static void usbhsh_endpoint_detach(struct usbhsh_hpriv *hpriv,
  				   struct usb_host_endpoint *ep)
  {
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  	struct device *dev = usbhs_priv_to_dev(priv);
  	struct usbhsh_ep *uep = usbhsh_ep_to_uep(ep);
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
404
405
406
407
  	unsigned long flags;
  
  	if (!uep)
  		return;
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
408
409
  	dev_dbg(dev, "%s [%d-%d]
  ", __func__,
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
410
  		usbhsh_device_number(hpriv, usbhsh_uep_to_udev(uep)),
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
411
412
413
414
  		usb_endpoint_num(&ep->desc));
  
  	if (usbhsh_uep_to_pipe(uep))
  		usbhsh_pipe_detach(hpriv, uep);
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
415
416
417
  
  	/********************  spin lock ********************/
  	usbhs_lock(priv, flags);
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
418
419
  	/* remove this endpoint from udev */
  	list_del_init(&uep->ep_list);
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
  	usbhsh_uep_to_udev(uep)	= NULL;
  	usbhsh_uep_to_ep(uep)	= NULL;
  	usbhsh_ep_to_uep(ep)	= NULL;
  
  	usbhs_unlock(priv, flags);
  	/********************  spin unlock ******************/
  
  	kfree(uep);
  }
  
  static void usbhsh_endpoint_detach_all(struct usbhsh_hpriv *hpriv,
  				       struct usbhsh_device *udev)
  {
  	struct usbhsh_ep *uep, *next;
  
  	list_for_each_entry_safe(uep, next, &udev->ep_list_head, ep_list)
  		usbhsh_endpoint_detach(hpriv, usbhsh_uep_to_ep(uep));
  }
  
  /*
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
440
441
   *		device control
   */
9c6736523   Kuninori Morimoto   usb: gadget: rene...
442
443
444
445
446
447
448
  static int usbhsh_connected_to_rhdev(struct usb_hcd *hcd,
  				     struct usbhsh_device *udev)
  {
  	struct usb_device *usbv = usbhsh_udev_to_usbv(udev);
  
  	return hcd->self.root_hub == usbv->parent;
  }
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
449
450
451
452
453
  
  static int usbhsh_device_has_endpoint(struct usbhsh_device *udev)
  {
  	return !list_empty(&udev->ep_list_head);
  }
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
  static struct usbhsh_device *usbhsh_device_get(struct usbhsh_hpriv *hpriv,
  					       struct urb *urb)
  {
  	struct usb_device *usbv = usbhsh_urb_to_usbv(urb);
  	struct usbhsh_device *udev = usbhsh_usbv_to_udev(usbv);
  
  	/* usbhsh_device_attach() is still not called */
  	if (!udev)
  		return NULL;
  
  	/* if it is device0, return it */
  	if (0 == usb_pipedevice(urb->pipe))
  		return usbhsh_device0(hpriv);
  
  	/* return attached device */
  	return udev;
  }
7aac8d153   Kuninori Morimoto   usb: gadget: rene...
471
  static struct usbhsh_device *usbhsh_device_attach(struct usbhsh_hpriv *hpriv,
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
472
473
474
  						 struct urb *urb)
  {
  	struct usbhsh_device *udev = NULL;
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
475
476
  	struct usbhsh_device *udev0 = usbhsh_device0(hpriv);
  	struct usbhsh_device *pos;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
477
478
479
480
  	struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
  	struct device *dev = usbhsh_hcd_to_dev(hcd);
  	struct usb_device *usbv = usbhsh_urb_to_usbv(urb);
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
d399f90d1   Kuninori Morimoto   usb: gadget: rene...
481
  	unsigned long flags;
9c6736523   Kuninori Morimoto   usb: gadget: rene...
482
  	u16 upphub, hubport;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
483
  	int i;
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
484
485
486
487
488
489
490
491
492
493
494
  	/*
  	 * This function should be called only while urb is pointing to device0.
  	 * It will attach unused usbhsh_device to urb (usbv),
  	 * and initialize device0.
  	 * You can use usbhsh_device_get() to get "current" udev,
  	 * and usbhsh_usbv_to_udev() is for "attached" udev.
  	 */
  	if (0 != usb_pipedevice(urb->pipe)) {
  		dev_err(dev, "%s fail: urb isn't pointing device0
  ", __func__);
  		return NULL;
73ef635a0   Kuninori Morimoto   usb: gadget: rene...
495
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
496

d399f90d1   Kuninori Morimoto   usb: gadget: rene...
497
498
  	/********************  spin lock ********************/
  	usbhs_lock(priv, flags);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
499
  	/*
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
500
  	 * find unused device
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
501
  	 */
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
502
503
  	usbhsh_for_each_udev(pos, hpriv, i) {
  		if (usbhsh_udev_is_used(pos))
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
504
  			continue;
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
505
506
  		udev = pos;
  		break;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
507
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
508

d399f90d1   Kuninori Morimoto   usb: gadget: rene...
509
510
511
512
513
514
515
516
517
  	if (udev) {
  		/*
  		 * usbhsh_usbv_to_udev()
  		 * usbhsh_udev_to_usbv()
  		 * will be enable
  		 */
  		dev_set_drvdata(&usbv->dev, udev);
  		udev->usbv = usbv;
  	}
73ef635a0   Kuninori Morimoto   usb: gadget: rene...
518

d399f90d1   Kuninori Morimoto   usb: gadget: rene...
519
520
  	usbhs_unlock(priv, flags);
  	/********************  spin unlock ******************/
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
521

ab1423085   Kuninori Morimoto   usb: gadget: rene...
522
523
524
525
  	if (!udev) {
  		dev_err(dev, "no free usbhsh_device
  ");
  		return NULL;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
526
  	}
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
527
  	if (usbhsh_device_has_endpoint(udev)) {
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
528
529
  		dev_warn(dev, "udev have old endpoint
  ");
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
530
531
  		usbhsh_endpoint_detach_all(hpriv, udev);
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
532

e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
533
  	if (usbhsh_device_has_endpoint(udev0)) {
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
534
535
  		dev_warn(dev, "udev0 have old endpoint
  ");
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
536
  		usbhsh_endpoint_detach_all(hpriv, udev0);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
537
  	}
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
538

034d7c13a   Kuninori Morimoto   usb: gadget: rene...
539
  	/* uep will be attached */
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
540
  	INIT_LIST_HEAD(&udev0->ep_list_head);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
541
  	INIT_LIST_HEAD(&udev->ep_list_head);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
542
  	/*
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
543
  	 * set device0 config
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
544
  	 */
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
545
546
  	usbhs_set_device_config(priv,
  				0, 0, 0, usbv->speed);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
547
548
  
  	/*
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
549
  	 * set new device config
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
550
  	 */
9c6736523   Kuninori Morimoto   usb: gadget: rene...
551
552
553
554
555
  	upphub	= 0;
  	hubport	= 0;
  	if (!usbhsh_connected_to_rhdev(hcd, udev)) {
  		/* if udev is not connected to rhdev, it means parent is Hub */
  		struct usbhsh_device *parent = usbhsh_device_parent(udev);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
556

9c6736523   Kuninori Morimoto   usb: gadget: rene...
557
558
  		upphub	= usbhsh_device_number(hpriv, parent);
  		hubport	= usbhsh_device_hubport(udev);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
559

9c6736523   Kuninori Morimoto   usb: gadget: rene...
560
561
562
563
  		dev_dbg(dev, "%s connecte to Hub [%d:%d](%p)
  ", __func__,
  			upphub, hubport, parent);
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
564

3dd492686   Kuninori Morimoto   usb: gadget: rene...
565
  	usbhs_set_device_config(priv,
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
566
  			       usbhsh_device_number(hpriv, udev),
9c6736523   Kuninori Morimoto   usb: gadget: rene...
567
  			       upphub, hubport, usbv->speed);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
568

034d7c13a   Kuninori Morimoto   usb: gadget: rene...
569
570
571
572
573
  	dev_dbg(dev, "%s [%d](%p)
  ", __func__,
  		usbhsh_device_number(hpriv, udev), udev);
  
  	return udev;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
574
  }
7aac8d153   Kuninori Morimoto   usb: gadget: rene...
575
  static void usbhsh_device_detach(struct usbhsh_hpriv *hpriv,
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
576
  			       struct usbhsh_device *udev)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
577
  {
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
578
  	struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
579
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
580
581
  	struct device *dev = usbhsh_hcd_to_dev(hcd);
  	struct usb_device *usbv = usbhsh_udev_to_usbv(udev);
d399f90d1   Kuninori Morimoto   usb: gadget: rene...
582
  	unsigned long flags;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
583

034d7c13a   Kuninori Morimoto   usb: gadget: rene...
584
585
586
  	dev_dbg(dev, "%s [%d](%p)
  ", __func__,
  		usbhsh_device_number(hpriv, udev), udev);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
587

e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
588
  	if (usbhsh_device_has_endpoint(udev)) {
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
589
590
  		dev_warn(dev, "udev still have endpoint
  ");
e4c57ded4   Kuninori Morimoto   usb: renesas_usbh...
591
592
  		usbhsh_endpoint_detach_all(hpriv, udev);
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
593

c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
594
595
596
597
598
599
600
601
  	/*
  	 * There is nothing to do if it is device0.
  	 * see
  	 *  usbhsh_device_attach()
  	 *  usbhsh_device_get()
  	 */
  	if (0 == usbhsh_device_number(hpriv, udev))
  		return;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
602

d399f90d1   Kuninori Morimoto   usb: gadget: rene...
603
604
  	/********************  spin lock ********************/
  	usbhs_lock(priv, flags);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
605

034d7c13a   Kuninori Morimoto   usb: gadget: rene...
606
607
608
609
610
611
612
  	/*
  	 * usbhsh_usbv_to_udev()
  	 * usbhsh_udev_to_usbv()
  	 * will be disable
  	 */
  	dev_set_drvdata(&usbv->dev, NULL);
  	udev->usbv = NULL;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
613

d399f90d1   Kuninori Morimoto   usb: gadget: rene...
614
615
  	usbhs_unlock(priv, flags);
  	/********************  spin unlock ******************/
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
616
617
618
619
620
621
622
  }
  
  /*
   *		queue push/pop
   */
  static void usbhsh_queue_done(struct usbhs_priv *priv, struct usbhs_pkt *pkt)
  {
25234b46b   Kuninori Morimoto   usb: gadget: rene...
623
  	struct usbhsh_request *ureq = usbhsh_pkt_to_ureq(pkt);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
624
625
626
627
  	struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
  	struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
  	struct urb *urb = ureq->urb;
  	struct device *dev = usbhs_priv_to_dev(priv);
6d0376f84   Kuninori Morimoto   usb: renesas_usbh...
628
  	int status = 0;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
629
630
631
632
633
634
635
636
637
  
  	dev_dbg(dev, "%s
  ", __func__);
  
  	if (!urb) {
  		dev_warn(dev, "pkt doesn't have urb
  ");
  		return;
  	}
6d0376f84   Kuninori Morimoto   usb: renesas_usbh...
638
639
  	if (!usbhsh_is_running(hpriv))
  		status = -ESHUTDOWN;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
640
  	urb->actual_length = pkt->actual;
25234b46b   Kuninori Morimoto   usb: gadget: rene...
641
  	usbhsh_ureq_free(hpriv, ureq);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
642

3edeee389   Kuninori Morimoto   usb: renesas_usbh...
643
  	usbhsh_endpoint_sequence_save(hpriv, urb, pkt);
d9b78f33d   Kuninori Morimoto   usb: renesas_usbh...
644
  	usbhsh_pipe_detach(hpriv, usbhsh_ep_to_uep(urb->ep));
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
645
646
  
  	usb_hcd_unlink_urb_from_ep(hcd, urb);
6d0376f84   Kuninori Morimoto   usb: renesas_usbh...
647
  	usb_hcd_giveback_urb(hcd, urb, status);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
648
649
650
  }
  
  static int usbhsh_queue_push(struct usb_hcd *hcd,
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
651
652
  			     struct urb *urb,
  			     gfp_t mem_flags)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
653
  {
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
654
  	struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
3eddc9e4c   Kuninori Morimoto   usb: gadget: rene...
655
656
  	struct usbhsh_ep *uep = usbhsh_ep_to_uep(urb->ep);
  	struct usbhs_pipe *pipe = usbhsh_uep_to_pipe(uep);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
657
  	struct device *dev = usbhsh_hcd_to_dev(hcd);
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
658
  	struct usbhsh_request *ureq;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
659
  	void *buf;
3edeee389   Kuninori Morimoto   usb: renesas_usbh...
660
  	int len, sequence;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
661
662
663
664
665
666
  
  	if (usb_pipeisoc(urb->pipe)) {
  		dev_err(dev, "pipe iso is not supported now
  ");
  		return -EIO;
  	}
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
667
668
669
670
671
672
673
  	/* this ureq will be freed on usbhsh_queue_done() */
  	ureq = usbhsh_ureq_alloc(hpriv, urb, mem_flags);
  	if (unlikely(!ureq)) {
  		dev_err(dev, "ureq alloc fail
  ");
  		return -ENOMEM;
  	}
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
674

034d7c13a   Kuninori Morimoto   usb: gadget: rene...
675
676
677
678
679
680
681
  	if (usb_pipein(urb->pipe))
  		pipe->handler = &usbhs_fifo_pio_pop_handler;
  	else
  		pipe->handler = &usbhs_fifo_pio_push_handler;
  
  	buf = (void *)(urb->transfer_buffer + urb->actual_length);
  	len = urb->transfer_buffer_length - urb->actual_length;
3edeee389   Kuninori Morimoto   usb: renesas_usbh...
682
683
684
  	sequence = usb_gettoggle(urb->dev,
  				 usb_pipeendpoint(urb->pipe),
  				 usb_pipeout(urb->pipe));
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
685
686
  	dev_dbg(dev, "%s
  ", __func__);
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
687
  	usbhs_pkt_push(pipe, &ureq->pkt, usbhsh_queue_done,
3edeee389   Kuninori Morimoto   usb: renesas_usbh...
688
689
  		       buf, len, (urb->transfer_flags & URB_ZERO_PACKET),
  		       sequence);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
690
691
692
693
  	usbhs_pkt_start(pipe);
  
  	return 0;
  }
2d833faad   Kuninori Morimoto   usb: renesas_usbh...
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
  static void usbhsh_queue_force_pop(struct usbhs_priv *priv,
  				   struct usbhs_pipe *pipe)
  {
  	struct usbhs_pkt *pkt;
  
  	while (1) {
  		pkt = usbhs_pkt_pop(pipe, NULL);
  		if (!pkt)
  			break;
  
  		/*
  		 * if all packet are gone, usbhsh_endpoint_disable()
  		 * will be called.
  		 * then, attached device/endpoint/pipe will be detached
  		 */
  		usbhsh_queue_done(priv, pkt);
  	}
  }
  
  static void usbhsh_queue_force_pop_all(struct usbhs_priv *priv)
  {
  	struct usbhs_pipe *pos;
  	int i;
  
  	usbhs_for_each_pipe_with_dcp(pos, priv, i)
  		usbhsh_queue_force_pop(priv, pos);
  }
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
721
722
723
724
725
  /*
   *		DCP setup stage
   */
  static int usbhsh_is_request_address(struct urb *urb)
  {
25234b46b   Kuninori Morimoto   usb: gadget: rene...
726
  	struct usb_ctrlrequest *req;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
727

25234b46b   Kuninori Morimoto   usb: gadget: rene...
728
  	req = (struct usb_ctrlrequest *)urb->setup_packet;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
729

25234b46b   Kuninori Morimoto   usb: gadget: rene...
730
731
  	if ((DeviceOutRequest    == req->bRequestType << 8) &&
  	    (USB_REQ_SET_ADDRESS == req->bRequest))
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
  		return 1;
  	else
  		return 0;
  }
  
  static void usbhsh_setup_stage_packet_push(struct usbhsh_hpriv *hpriv,
  					   struct urb *urb,
  					   struct usbhs_pipe *pipe)
  {
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  	struct usb_ctrlrequest req;
  	struct device *dev = usbhs_priv_to_dev(priv);
  
  	/*
  	 * wait setup packet ACK
  	 * see
  	 *	usbhsh_irq_setup_ack()
  	 *	usbhsh_irq_setup_err()
  	 */
7fccd480b   Kuninori Morimoto   usb: gadget: rene...
751
  	init_completion(&hpriv->setup_ack_done);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
752
753
754
755
756
757
758
  
  	/* copy original request */
  	memcpy(&req, urb->setup_packet, sizeof(struct usb_ctrlrequest));
  
  	/*
  	 * renesas_usbhs can not use original usb address.
  	 * see HARDWARE LIMITATION.
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
759
760
  	 * modify usb address here to use attached device.
  	 * see usbhsh_device_attach()
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
761
762
  	 */
  	if (usbhsh_is_request_address(urb)) {
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
763
764
765
766
767
  		struct usb_device *usbv = usbhsh_urb_to_usbv(urb);
  		struct usbhsh_device *udev = usbhsh_usbv_to_udev(usbv);
  
  		/* udev is a attached device */
  		req.wValue = usbhsh_device_number(hpriv, udev);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
768
769
770
771
772
773
774
775
776
777
  		dev_dbg(dev, "create new address - %d
  ", req.wValue);
  	}
  
  	/* set request */
  	usbhs_usbreq_set_val(priv, &req);
  
  	/*
  	 * wait setup packet ACK
  	 */
7fccd480b   Kuninori Morimoto   usb: gadget: rene...
778
  	wait_for_completion(&hpriv->setup_ack_done);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
779
780
781
782
783
784
785
786
787
788
789
  
  	dev_dbg(dev, "%s done
  ", __func__);
  }
  
  /*
   *		DCP data stage
   */
  static void usbhsh_data_stage_packet_done(struct usbhs_priv *priv,
  					  struct usbhs_pkt *pkt)
  {
25234b46b   Kuninori Morimoto   usb: gadget: rene...
790
  	struct usbhsh_request *ureq = usbhsh_pkt_to_ureq(pkt);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
791
  	struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
792
793
  
  	/* this ureq was connected to urb when usbhsh_urb_enqueue()  */
25234b46b   Kuninori Morimoto   usb: gadget: rene...
794
  	usbhsh_ureq_free(hpriv, ureq);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
795
  }
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
796
797
798
799
  static int usbhsh_data_stage_packet_push(struct usbhsh_hpriv *hpriv,
  					 struct urb *urb,
  					 struct usbhs_pipe *pipe,
  					 gfp_t mem_flags)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
800
801
  {
  	struct usbhsh_request *ureq;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
802

ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
803
804
805
806
  	/* this ureq will be freed on usbhsh_data_stage_packet_done() */
  	ureq = usbhsh_ureq_alloc(hpriv, urb, mem_flags);
  	if (unlikely(!ureq))
  		return -ENOMEM;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
807
808
809
810
811
  
  	if (usb_pipein(urb->pipe))
  		pipe->handler = &usbhs_dcp_data_stage_in_handler;
  	else
  		pipe->handler = &usbhs_dcp_data_stage_out_handler;
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
812
  	usbhs_pkt_push(pipe, &ureq->pkt,
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
813
814
815
  		       usbhsh_data_stage_packet_done,
  		       urb->transfer_buffer,
  		       urb->transfer_buffer_length,
3edeee389   Kuninori Morimoto   usb: renesas_usbh...
816
817
  		       (urb->transfer_flags & URB_ZERO_PACKET),
  		       -1);
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
818
819
  
  	return 0;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
820
821
822
823
824
  }
  
  /*
   *		DCP status stage
   */
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
825
  static int usbhsh_status_stage_packet_push(struct usbhsh_hpriv *hpriv,
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
826
  					    struct urb *urb,
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
827
828
  					    struct usbhs_pipe *pipe,
  					    gfp_t mem_flags)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
829
830
  {
  	struct usbhsh_request *ureq;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
831

ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
832
833
834
835
  	/* This ureq will be freed on usbhsh_queue_done() */
  	ureq = usbhsh_ureq_alloc(hpriv, urb, mem_flags);
  	if (unlikely(!ureq))
  		return -ENOMEM;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
836
837
838
839
840
  
  	if (usb_pipein(urb->pipe))
  		pipe->handler = &usbhs_dcp_status_stage_in_handler;
  	else
  		pipe->handler = &usbhs_dcp_status_stage_out_handler;
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
841
  	usbhs_pkt_push(pipe, &ureq->pkt,
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
842
843
844
  		       usbhsh_queue_done,
  		       NULL,
  		       urb->transfer_buffer_length,
3edeee389   Kuninori Morimoto   usb: renesas_usbh...
845
  		       0, -1);
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
846
847
  
  	return 0;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
848
849
850
  }
  
  static int usbhsh_dcp_queue_push(struct usb_hcd *hcd,
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
851
852
  				 struct urb *urb,
  				 gfp_t mflags)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
853
  {
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
854
  	struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
3eddc9e4c   Kuninori Morimoto   usb: gadget: rene...
855
856
  	struct usbhsh_ep *uep = usbhsh_ep_to_uep(urb->ep);
  	struct usbhs_pipe *pipe = usbhsh_uep_to_pipe(uep);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
857
  	struct device *dev = usbhsh_hcd_to_dev(hcd);
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
858
  	int ret;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
  
  	dev_dbg(dev, "%s
  ", __func__);
  
  	/*
  	 * setup stage
  	 *
  	 * usbhsh_send_setup_stage_packet() wait SACK/SIGN
  	 */
  	usbhsh_setup_stage_packet_push(hpriv, urb, pipe);
  
  	/*
  	 * data stage
  	 *
  	 * It is pushed only when urb has buffer.
  	 */
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
875
876
877
878
879
880
881
882
  	if (urb->transfer_buffer_length) {
  		ret = usbhsh_data_stage_packet_push(hpriv, urb, pipe, mflags);
  		if (ret < 0) {
  			dev_err(dev, "data stage failed
  ");
  			return ret;
  		}
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
883
884
885
886
  
  	/*
  	 * status stage
  	 */
ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
887
888
889
890
891
892
  	ret = usbhsh_status_stage_packet_push(hpriv, urb, pipe, mflags);
  	if (ret < 0) {
  		dev_err(dev, "status stage failed
  ");
  		return ret;
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
  
  	/*
  	 * start pushed packets
  	 */
  	usbhs_pkt_start(pipe);
  
  	return 0;
  }
  
  /*
   *		dma map functions
   */
  static int usbhsh_dma_map_ctrl(struct usbhs_pkt *pkt, int map)
  {
  	return 0;
  }
  
  /*
   *		for hc_driver
   */
  static int usbhsh_host_start(struct usb_hcd *hcd)
  {
  	return 0;
  }
  
  static void usbhsh_host_stop(struct usb_hcd *hcd)
  {
  }
  
  static int usbhsh_urb_enqueue(struct usb_hcd *hcd,
  			      struct urb *urb,
  			      gfp_t mem_flags)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  	struct device *dev = usbhs_priv_to_dev(priv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
929
  	struct usb_host_endpoint *ep = urb->ep;
7aac8d153   Kuninori Morimoto   usb: gadget: rene...
930
  	struct usbhsh_device *new_udev = NULL;
73ef635a0   Kuninori Morimoto   usb: gadget: rene...
931
  	int is_dir_in = usb_pipein(urb->pipe);
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
932
  	int i;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
933
  	int ret;
73ef635a0   Kuninori Morimoto   usb: gadget: rene...
934
935
  	dev_dbg(dev, "%s (%s)
  ", __func__, is_dir_in ? "in" : "out");
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
936

b1930da08   Kuninori Morimoto   usb: renesas_usbh...
937
938
  	if (!usbhsh_is_running(hpriv)) {
  		ret = -EIO;
15a3838b1   Kuninori Morimoto   usb: renesas_usbh...
939
940
  		dev_err(dev, "host is not running
  ");
b1930da08   Kuninori Morimoto   usb: renesas_usbh...
941
942
  		goto usbhsh_urb_enqueue_error_not_linked;
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
943
  	ret = usb_hcd_link_urb_to_ep(hcd, urb);
15a3838b1   Kuninori Morimoto   usb: renesas_usbh...
944
945
946
  	if (ret) {
  		dev_err(dev, "urb link failed
  ");
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
947
  		goto usbhsh_urb_enqueue_error_not_linked;
15a3838b1   Kuninori Morimoto   usb: renesas_usbh...
948
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
949
950
  
  	/*
7aac8d153   Kuninori Morimoto   usb: gadget: rene...
951
  	 * attach udev if needed
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
952
  	 * see [image of mod_host]
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
953
  	 */
c1e4877a4   Kuninori Morimoto   usb: renesas_usbh...
954
  	if (!usbhsh_device_get(hpriv, urb)) {
7aac8d153   Kuninori Morimoto   usb: gadget: rene...
955
  		new_udev = usbhsh_device_attach(hpriv, urb);
37332ee0d   Kuninori Morimoto   usb: renesas_usbh...
956
957
  		if (!new_udev) {
  			ret = -EIO;
15a3838b1   Kuninori Morimoto   usb: renesas_usbh...
958
959
  			dev_err(dev, "device attach failed
  ");
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
960
  			goto usbhsh_urb_enqueue_error_not_linked;
37332ee0d   Kuninori Morimoto   usb: renesas_usbh...
961
  		}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
962
963
964
  	}
  
  	/*
4825093e9   Kuninori Morimoto   usb: gadget: rene...
965
  	 * attach endpoint if needed
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
966
  	 * see [image of mod_host]
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
967
  	 */
4825093e9   Kuninori Morimoto   usb: gadget: rene...
968
969
  	if (!usbhsh_ep_to_uep(ep)) {
  		ret = usbhsh_endpoint_attach(hpriv, urb, mem_flags);
15a3838b1   Kuninori Morimoto   usb: renesas_usbh...
970
971
972
  		if (ret < 0) {
  			dev_err(dev, "endpoint attach failed
  ");
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
973
  			goto usbhsh_urb_enqueue_error_free_device;
15a3838b1   Kuninori Morimoto   usb: renesas_usbh...
974
  		}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
975
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
976
977
  
  	/*
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
978
979
  	 * attach pipe to endpoint
  	 * see [image of mod_host]
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
980
  	 */
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
981
982
983
984
985
986
987
  	for (i = 0; i < 1024; i++) {
  		ret = usbhsh_pipe_attach(hpriv, urb);
  		if (ret < 0)
  			msleep(100);
  		else
  			break;
  	}
15a3838b1   Kuninori Morimoto   usb: renesas_usbh...
988
989
990
  	if (ret < 0) {
  		dev_err(dev, "pipe attach failed
  ");
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
991
992
  		goto usbhsh_urb_enqueue_error_free_endpoint;
  	}
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
993
994
995
996
997
  
  	/*
  	 * push packet
  	 */
  	if (usb_pipecontrol(urb->pipe))
3eddc9e4c   Kuninori Morimoto   usb: gadget: rene...
998
  		ret = usbhsh_dcp_queue_push(hcd, urb, mem_flags);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
999
  	else
3eddc9e4c   Kuninori Morimoto   usb: gadget: rene...
1000
  		ret = usbhsh_queue_push(hcd, urb, mem_flags);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1001

ee8a0bf5a   Kuninori Morimoto   usb: gadget: rene...
1002
  	return ret;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1003
1004
  
  usbhsh_urb_enqueue_error_free_endpoint:
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
1005
  	usbhsh_endpoint_detach(hpriv, ep);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1006
1007
  usbhsh_urb_enqueue_error_free_device:
  	if (new_udev)
7aac8d153   Kuninori Morimoto   usb: gadget: rene...
1008
  		usbhsh_device_detach(hpriv, new_udev);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
  usbhsh_urb_enqueue_error_not_linked:
  
  	dev_dbg(dev, "%s error
  ", __func__);
  
  	return ret;
  }
  
  static int usbhsh_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
  	struct usbhsh_request *ureq = usbhsh_urb_to_ureq(urb);
  
  	if (ureq) {
547965436   Kuninori Morimoto   usb: renesas_usbh...
1023
1024
1025
1026
1027
  		struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  		struct usbhs_pkt *pkt = &ureq->pkt;
  
  		usbhs_pkt_pop(pkt->pipe, pkt);
  		usbhsh_queue_done(priv, pkt);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
  	}
  
  	return 0;
  }
  
  static void usbhsh_endpoint_disable(struct usb_hcd *hcd,
  				    struct usb_host_endpoint *ep)
  {
  	struct usbhsh_ep *uep = usbhsh_ep_to_uep(ep);
  	struct usbhsh_device *udev;
  	struct usbhsh_hpriv *hpriv;
  
  	/*
  	 * this function might be called manytimes by same hcd/ep
fca8ab7ee   Kuninori Morimoto   usb: gadget: rene...
1042
  	 * in-endpoint == out-endpoint if ep == dcp.
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1043
1044
1045
1046
1047
1048
  	 */
  	if (!uep)
  		return;
  
  	udev	= usbhsh_uep_to_udev(uep);
  	hpriv	= usbhsh_hcd_to_hpriv(hcd);
4825093e9   Kuninori Morimoto   usb: gadget: rene...
1049
  	usbhsh_endpoint_detach(hpriv, ep);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1050
1051
1052
1053
1054
1055
  
  	/*
  	 * if there is no endpoint,
  	 * free device
  	 */
  	if (!usbhsh_device_has_endpoint(udev))
7aac8d153   Kuninori Morimoto   usb: gadget: rene...
1056
  		usbhsh_device_detach(hpriv, udev);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
  }
  
  static int usbhsh_hub_status_data(struct usb_hcd *hcd, char *buf)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  	struct device *dev = usbhs_priv_to_dev(priv);
  	int roothub_id = 1; /* only 1 root hub */
  
  	/*
  	 * does port stat was changed ?
  	 * check USB_PORT_STAT_C_xxx << 16
  	 */
  	if (usbhsh_port_stat_get(hpriv) & 0xFFFF0000)
  		*buf = (1 << roothub_id);
  	else
  		*buf = 0;
  
  	dev_dbg(dev, "%s (%02x)
  ", __func__, *buf);
  
  	return !!(*buf);
  }
  
  static int __usbhsh_hub_hub_feature(struct usbhsh_hpriv *hpriv,
  				    u16 typeReq, u16 wValue,
  				    u16 wIndex, char *buf, u16 wLength)
  {
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  	struct device *dev = usbhs_priv_to_dev(priv);
  
  	switch (wValue) {
  	case C_HUB_OVER_CURRENT:
  	case C_HUB_LOCAL_POWER:
  		dev_dbg(dev, "%s :: C_HUB_xx
  ", __func__);
  		return 0;
  	}
  
  	return -EPIPE;
  }
  
  static int __usbhsh_hub_port_feature(struct usbhsh_hpriv *hpriv,
  				     u16 typeReq, u16 wValue,
  				     u16 wIndex, char *buf, u16 wLength)
  {
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  	struct device *dev = usbhs_priv_to_dev(priv);
  	int enable = (typeReq == SetPortFeature);
  	int speed, i, timeout = 128;
  	int roothub_id = 1; /* only 1 root hub */
  
  	/* common error */
  	if (wIndex > roothub_id || wLength != 0)
  		return -EPIPE;
  
  	/* check wValue */
  	switch (wValue) {
  	case USB_PORT_FEAT_POWER:
  		usbhs_vbus_ctrl(priv, enable);
  		dev_dbg(dev, "%s :: USB_PORT_FEAT_POWER
  ", __func__);
  		break;
  
  	case USB_PORT_FEAT_ENABLE:
  	case USB_PORT_FEAT_SUSPEND:
  	case USB_PORT_FEAT_C_ENABLE:
  	case USB_PORT_FEAT_C_SUSPEND:
  	case USB_PORT_FEAT_C_CONNECTION:
  	case USB_PORT_FEAT_C_OVER_CURRENT:
  	case USB_PORT_FEAT_C_RESET:
  		dev_dbg(dev, "%s :: USB_PORT_FEAT_xxx
  ", __func__);
  		break;
  
  	case USB_PORT_FEAT_RESET:
  		if (!enable)
  			break;
  
  		usbhsh_port_stat_clear(hpriv,
  				       USB_PORT_STAT_HIGH_SPEED |
  				       USB_PORT_STAT_LOW_SPEED);
2d833faad   Kuninori Morimoto   usb: renesas_usbh...
1139
  		usbhsh_queue_force_pop_all(priv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
  		usbhs_bus_send_reset(priv);
  		msleep(20);
  		usbhs_bus_send_sof_enable(priv);
  
  		for (i = 0; i < timeout ; i++) {
  			switch (usbhs_bus_get_speed(priv)) {
  			case USB_SPEED_LOW:
  				speed = USB_PORT_STAT_LOW_SPEED;
  				goto got_usb_bus_speed;
  			case USB_SPEED_HIGH:
  				speed = USB_PORT_STAT_HIGH_SPEED;
  				goto got_usb_bus_speed;
  			case USB_SPEED_FULL:
  				speed = 0;
  				goto got_usb_bus_speed;
  			}
  
  			msleep(20);
  		}
  		return -EPIPE;
  
  got_usb_bus_speed:
  		usbhsh_port_stat_set(hpriv, speed);
  		usbhsh_port_stat_set(hpriv, USB_PORT_STAT_ENABLE);
  
  		dev_dbg(dev, "%s :: USB_PORT_FEAT_RESET (speed = %d)
  ",
  			__func__, speed);
  
  		/* status change is not needed */
  		return 0;
  
  	default:
  		return -EPIPE;
  	}
  
  	/* set/clear status */
  	if (enable)
  		usbhsh_port_stat_set(hpriv, (1 << wValue));
  	else
  		usbhsh_port_stat_clear(hpriv, (1 << wValue));
  
  	return 0;
  }
  
  static int __usbhsh_hub_get_status(struct usbhsh_hpriv *hpriv,
  				   u16 typeReq, u16 wValue,
  				   u16 wIndex, char *buf, u16 wLength)
  {
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  	struct usb_hub_descriptor *desc = (struct usb_hub_descriptor *)buf;
  	struct device *dev = usbhs_priv_to_dev(priv);
  	int roothub_id = 1; /* only 1 root hub */
  
  	switch (typeReq) {
  	case GetHubStatus:
  		dev_dbg(dev, "%s :: GetHubStatus
  ", __func__);
  
  		*buf = 0x00;
  		break;
  
  	case GetPortStatus:
  		if (wIndex != roothub_id)
  			return -EPIPE;
  
  		dev_dbg(dev, "%s :: GetPortStatus
  ", __func__);
  		*(__le32 *)buf = cpu_to_le32(usbhsh_port_stat_get(hpriv));
  		break;
  
  	case GetHubDescriptor:
  		desc->bDescriptorType		= 0x29;
  		desc->bHubContrCurrent		= 0;
  		desc->bNbrPorts			= roothub_id;
  		desc->bDescLength		= 9;
  		desc->bPwrOn2PwrGood		= 0;
  		desc->wHubCharacteristics	= cpu_to_le16(0x0011);
  		desc->u.hs.DeviceRemovable[0]	= (roothub_id << 1);
  		desc->u.hs.DeviceRemovable[1]	= ~0;
  		dev_dbg(dev, "%s :: GetHubDescriptor
  ", __func__);
  		break;
  	}
  
  	return 0;
  }
  
  static int usbhsh_hub_control(struct usb_hcd *hcd, u16 typeReq, u16 wValue,
  			      u16 wIndex, char *buf, u16 wLength)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_hcd_to_hpriv(hcd);
  	struct usbhs_priv *priv = usbhsh_hpriv_to_priv(hpriv);
  	struct device *dev = usbhs_priv_to_dev(priv);
  	int ret = -EPIPE;
  
  	switch (typeReq) {
  
  	/* Hub Feature */
  	case ClearHubFeature:
  	case SetHubFeature:
  		ret = __usbhsh_hub_hub_feature(hpriv, typeReq,
  					       wValue, wIndex, buf, wLength);
  		break;
  
  	/* Port Feature */
  	case SetPortFeature:
  	case ClearPortFeature:
  		ret = __usbhsh_hub_port_feature(hpriv, typeReq,
  						wValue, wIndex, buf, wLength);
  		break;
  
  	/* Get status */
  	case GetHubStatus:
  	case GetPortStatus:
  	case GetHubDescriptor:
  		ret = __usbhsh_hub_get_status(hpriv, typeReq,
  					      wValue, wIndex, buf, wLength);
  		break;
  	}
  
  	dev_dbg(dev, "typeReq = %x, ret = %d, port_stat = %x
  ",
  		typeReq, ret, usbhsh_port_stat_get(hpriv));
  
  	return ret;
  }
  
  static struct hc_driver usbhsh_driver = {
  	.description =		usbhsh_hcd_name,
  	.hcd_priv_size =	sizeof(struct usbhsh_hpriv),
  
  	/*
  	 * generic hardware linkage
  	 */
  	.flags =		HCD_USB2,
  
  	.start =		usbhsh_host_start,
  	.stop =			usbhsh_host_stop,
  
  	/*
  	 * managing i/o requests and associated device resources
  	 */
  	.urb_enqueue =		usbhsh_urb_enqueue,
  	.urb_dequeue =		usbhsh_urb_dequeue,
  	.endpoint_disable =	usbhsh_endpoint_disable,
  
  	/*
  	 * root hub
  	 */
  	.hub_status_data =	usbhsh_hub_status_data,
  	.hub_control =		usbhsh_hub_control,
  };
  
  /*
   *		interrupt functions
   */
  static int usbhsh_irq_attch(struct usbhs_priv *priv,
  			    struct usbhs_irq_state *irq_state)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
  	struct device *dev = usbhs_priv_to_dev(priv);
  
  	dev_dbg(dev, "device attached
  ");
  
  	usbhsh_port_stat_set(hpriv, USB_PORT_STAT_CONNECTION);
  	usbhsh_port_stat_set(hpriv, USB_PORT_STAT_C_CONNECTION << 16);
31e00fd11   Kuninori Morimoto   usb: renesas_usbh...
1308
1309
1310
1311
  	/*
  	 * attch interrupt might happen infinitely on some device
  	 * (on self power USB hub ?)
  	 * disable it here.
b1930da08   Kuninori Morimoto   usb: renesas_usbh...
1312
1313
1314
1315
1316
1317
  	 *
  	 * usbhsh_is_running() becomes effective
  	 * according to this process.
  	 * see
  	 *	usbhsh_is_running()
  	 *	usbhsh_urb_enqueue()
31e00fd11   Kuninori Morimoto   usb: renesas_usbh...
1318
1319
1320
  	 */
  	hpriv->mod.irq_attch = NULL;
  	usbhs_irq_callback_update(priv, &hpriv->mod);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
  	return 0;
  }
  
  static int usbhsh_irq_dtch(struct usbhs_priv *priv,
  			   struct usbhs_irq_state *irq_state)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
  	struct device *dev = usbhs_priv_to_dev(priv);
  
  	dev_dbg(dev, "device detached
  ");
  
  	usbhsh_port_stat_clear(hpriv, USB_PORT_STAT_CONNECTION);
  	usbhsh_port_stat_set(hpriv, USB_PORT_STAT_C_CONNECTION << 16);
31e00fd11   Kuninori Morimoto   usb: renesas_usbh...
1335
1336
  	/*
  	 * enable attch interrupt again
b1930da08   Kuninori Morimoto   usb: renesas_usbh...
1337
1338
1339
1340
1341
1342
  	 *
  	 * usbhsh_is_running() becomes invalid
  	 * according to this process.
  	 * see
  	 *	usbhsh_is_running()
  	 *	usbhsh_urb_enqueue()
31e00fd11   Kuninori Morimoto   usb: renesas_usbh...
1343
1344
1345
  	 */
  	hpriv->mod.irq_attch = usbhsh_irq_attch;
  	usbhs_irq_callback_update(priv, &hpriv->mod);
2d833faad   Kuninori Morimoto   usb: renesas_usbh...
1346
1347
1348
1349
1350
  	/*
  	 * usbhsh_queue_force_pop_all() should be called
  	 * after usbhsh_is_running() becomes invalid.
  	 */
  	usbhsh_queue_force_pop_all(priv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
  	return 0;
  }
  
  static int usbhsh_irq_setup_ack(struct usbhs_priv *priv,
  				struct usbhs_irq_state *irq_state)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
  	struct device *dev = usbhs_priv_to_dev(priv);
  
  	dev_dbg(dev, "setup packet OK
  ");
7fccd480b   Kuninori Morimoto   usb: gadget: rene...
1362
  	complete(&hpriv->setup_ack_done); /* see usbhsh_urb_enqueue() */
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
  
  	return 0;
  }
  
  static int usbhsh_irq_setup_err(struct usbhs_priv *priv,
  				struct usbhs_irq_state *irq_state)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
  	struct device *dev = usbhs_priv_to_dev(priv);
  
  	dev_dbg(dev, "setup packet Err
  ");
7fccd480b   Kuninori Morimoto   usb: gadget: rene...
1375
  	complete(&hpriv->setup_ack_done); /* see usbhsh_urb_enqueue() */
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
  
  	return 0;
  }
  
  /*
   *		module start/stop
   */
  static void usbhsh_pipe_init_for_host(struct usbhs_priv *priv)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1386
1387
1388
1389
1390
1391
1392
1393
  	struct usbhs_pipe *pipe;
  	u32 *pipe_type = usbhs_get_dparam(priv, pipe_type);
  	int pipe_size = usbhs_get_dparam(priv, pipe_size);
  	int old_type, dir_in, i;
  
  	/* init all pipe */
  	old_type = USB_ENDPOINT_XFER_CONTROL;
  	for (i = 0; i < pipe_size; i++) {
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
  
  		/*
  		 * data "output" will be finished as soon as possible,
  		 * but there is no guaranty at data "input" case.
  		 *
  		 * "input" needs "standby" pipe.
  		 * So, "input" direction pipe > "output" direction pipe
  		 * is good idea.
  		 *
  		 * 1st USB_ENDPOINT_XFER_xxx will be output direction,
  		 * and the other will be input direction here.
  		 *
  		 * ex)
  		 * ...
  		 * USB_ENDPOINT_XFER_ISOC -> dir out
  		 * USB_ENDPOINT_XFER_ISOC -> dir in
  		 * USB_ENDPOINT_XFER_BULK -> dir out
  		 * USB_ENDPOINT_XFER_BULK -> dir in
  		 * USB_ENDPOINT_XFER_BULK -> dir in
  		 * ...
  		 */
  		dir_in = (pipe_type[i] == old_type);
  		old_type = pipe_type[i];
  
  		if (USB_ENDPOINT_XFER_CONTROL == pipe_type[i]) {
  			pipe = usbhs_dcp_malloc(priv);
  			usbhsh_hpriv_to_dcp(hpriv) = pipe;
  		} else {
  			pipe = usbhs_pipe_malloc(priv,
  						 pipe_type[i],
  						 dir_in);
  		}
e5679d07a   Kuninori Morimoto   usb: renesas_usbh...
1426
  		pipe->mod_private = NULL;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
  	}
  }
  
  static int usbhsh_start(struct usbhs_priv *priv)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
  	struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
  	struct usbhs_mod *mod = usbhs_mod_get_current(priv);
  	struct device *dev = usbhs_priv_to_dev(priv);
  	int ret;
  
  	/* add hcd */
  	ret = usb_add_hcd(hcd, 0, 0);
  	if (ret < 0)
  		return 0;
  
  	/*
  	 * pipe initialize and enable DCP
  	 */
  	usbhs_pipe_init(priv,
  			usbhsh_dma_map_ctrl);
  	usbhs_fifo_init(priv);
  	usbhsh_pipe_init_for_host(priv);
  
  	/*
  	 * system config enble
  	 * - HI speed
  	 * - host
  	 * - usb module
  	 */
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1457
  	usbhs_sys_host_ctrl(priv, 1);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
  
  	/*
  	 * enable irq callback
  	 */
  	mod->irq_attch		= usbhsh_irq_attch;
  	mod->irq_dtch		= usbhsh_irq_dtch;
  	mod->irq_sack		= usbhsh_irq_setup_ack;
  	mod->irq_sign		= usbhsh_irq_setup_err;
  	usbhs_irq_callback_update(priv, mod);
  
  	dev_dbg(dev, "start host
  ");
  
  	return ret;
  }
  
  static int usbhsh_stop(struct usbhs_priv *priv)
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
  	struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
146ee50ae   Kuninori Morimoto   usb: gadget: rene...
1478
  	struct usbhs_mod *mod = usbhs_mod_get_current(priv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1479
  	struct device *dev = usbhs_priv_to_dev(priv);
146ee50ae   Kuninori Morimoto   usb: gadget: rene...
1480
1481
1482
1483
1484
1485
1486
1487
  	/*
  	 * disable irq callback
  	 */
  	mod->irq_attch	= NULL;
  	mod->irq_dtch	= NULL;
  	mod->irq_sack	= NULL;
  	mod->irq_sign	= NULL;
  	usbhs_irq_callback_update(priv, mod);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1488
1489
1490
  	usb_remove_hcd(hcd);
  
  	/* disable sys */
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1491
  	usbhs_sys_host_ctrl(priv, 0);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1492
1493
1494
1495
1496
1497
  
  	dev_dbg(dev, "quit host
  ");
  
  	return 0;
  }
b7a8d17db   Kuninori Morimoto   usb: gadget: rene...
1498
  int usbhs_mod_host_probe(struct usbhs_priv *priv)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1499
1500
1501
  {
  	struct usbhsh_hpriv *hpriv;
  	struct usb_hcd *hcd;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1502
1503
  	struct usbhsh_device *udev;
  	struct device *dev = usbhs_priv_to_dev(priv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1504
1505
1506
1507
1508
1509
1510
1511
1512
  	int i;
  
  	/* initialize hcd */
  	hcd = usb_create_hcd(&usbhsh_driver, dev, usbhsh_hcd_name);
  	if (!hcd) {
  		dev_err(dev, "Failed to create hcd
  ");
  		return -ENOMEM;
  	}
1115b9e27   Kuninori Morimoto   usb: renesas_usbh...
1513
  	hcd->has_tt = 1; /* for low/full speed */
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1514

034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
  	/*
  	 * CAUTION
  	 *
  	 * There is no guarantee that it is possible to access usb module here.
  	 * Don't accesses to it.
  	 * The accesse will be enable after "usbhsh_start"
  	 */
  
  	hpriv = usbhsh_hcd_to_hpriv(hcd);
  
  	/*
  	 * register itself
  	 */
  	usbhs_mod_register(priv, &hpriv->mod, USBHS_HOST);
  
  	/* init hpriv */
  	hpriv->mod.name		= "host";
  	hpriv->mod.start	= usbhsh_start;
  	hpriv->mod.stop		= usbhsh_stop;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
  	usbhsh_port_stat_init(hpriv);
  
  	/* init all device */
  	usbhsh_for_each_udev_with_dev0(udev, hpriv, i) {
  		udev->usbv	= NULL;
  		INIT_LIST_HEAD(&udev->ep_list_head);
  	}
  
  	dev_info(dev, "host probed
  ");
  
  	return 0;
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1546
  }
b7a8d17db   Kuninori Morimoto   usb: gadget: rene...
1547
  int usbhs_mod_host_remove(struct usbhs_priv *priv)
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1548
1549
1550
  {
  	struct usbhsh_hpriv *hpriv = usbhsh_priv_to_hpriv(priv);
  	struct usb_hcd *hcd = usbhsh_hpriv_to_hcd(hpriv);
034d7c13a   Kuninori Morimoto   usb: gadget: rene...
1551
1552
1553
1554
  	usb_put_hcd(hcd);
  
  	return 0;
  }