blob: 3130089eacff9db5f467f43f6c4419e797f9d677 [file] [log] [blame]
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001/*
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 */
Kuninori Morimotod128a2592011-08-03 21:41:26 -070017#include <linux/dma-mapping.h>
Kuninori Morimoto2f983822011-04-05 11:40:54 +090018#include <linux/io.h>
19#include <linux/module.h>
20#include <linux/platform_device.h>
21#include <linux/usb/ch9.h>
22#include <linux/usb/gadget.h>
23#include "common.h"
24
25/*
26 * struct
27 */
28struct usbhsg_request {
29 struct usb_request req;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090030 struct usbhs_pkt pkt;
Kuninori Morimoto2f983822011-04-05 11:40:54 +090031};
32
33#define EP_NAME_SIZE 8
34struct usbhsg_gpriv;
Kuninori Morimoto2f983822011-04-05 11:40:54 +090035struct usbhsg_uep {
36 struct usb_ep ep;
37 struct usbhs_pipe *pipe;
Kuninori Morimoto2f983822011-04-05 11:40:54 +090038
39 char ep_name[EP_NAME_SIZE];
40
41 struct usbhsg_gpriv *gpriv;
Kuninori Morimoto2f983822011-04-05 11:40:54 +090042};
43
44struct usbhsg_gpriv {
45 struct usb_gadget gadget;
46 struct usbhs_mod mod;
Kuninori Morimoto3b872182011-07-03 17:42:35 -070047 struct list_head link;
Kuninori Morimoto2f983822011-04-05 11:40:54 +090048
49 struct usbhsg_uep *uep;
50 int uep_size;
51
52 struct usb_gadget_driver *driver;
53
54 u32 status;
55#define USBHSG_STATUS_STARTED (1 << 0)
56#define USBHSG_STATUS_REGISTERD (1 << 1)
57#define USBHSG_STATUS_WEDGE (1 << 2)
58};
59
Kuninori Morimoto2f983822011-04-05 11:40:54 +090060struct usbhsg_recip_handle {
61 char *name;
62 int (*device)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
63 struct usb_ctrlrequest *ctrl);
64 int (*interface)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
65 struct usb_ctrlrequest *ctrl);
66 int (*endpoint)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
67 struct usb_ctrlrequest *ctrl);
68};
69
70/*
71 * macro
72 */
73#define usbhsg_priv_to_gpriv(priv) \
74 container_of( \
75 usbhs_mod_get(priv, USBHS_GADGET), \
76 struct usbhsg_gpriv, mod)
77
78#define __usbhsg_for_each_uep(start, pos, g, i) \
Kuninori Morimotoe94c5872011-07-12 22:01:29 -070079 for (i = start, pos = (g)->uep + i; \
Kuninori Morimoto2f983822011-04-05 11:40:54 +090080 i < (g)->uep_size; \
81 i++, pos = (g)->uep + i)
82
83#define usbhsg_for_each_uep(pos, gpriv, i) \
84 __usbhsg_for_each_uep(1, pos, gpriv, i)
85
86#define usbhsg_for_each_uep_with_dcp(pos, gpriv, i) \
87 __usbhsg_for_each_uep(0, pos, gpriv, i)
88
89#define usbhsg_gadget_to_gpriv(g)\
90 container_of(g, struct usbhsg_gpriv, gadget)
91
92#define usbhsg_req_to_ureq(r)\
93 container_of(r, struct usbhsg_request, req)
94
95#define usbhsg_ep_to_uep(e) container_of(e, struct usbhsg_uep, ep)
Kuninori Morimoto2f983822011-04-05 11:40:54 +090096#define usbhsg_gpriv_to_dev(gp) usbhs_priv_to_dev((gp)->mod.priv)
97#define usbhsg_gpriv_to_priv(gp) ((gp)->mod.priv)
98#define usbhsg_gpriv_to_dcp(gp) ((gp)->uep)
99#define usbhsg_gpriv_to_nth_uep(gp, i) ((gp)->uep + i)
100#define usbhsg_uep_to_gpriv(u) ((u)->gpriv)
101#define usbhsg_uep_to_pipe(u) ((u)->pipe)
102#define usbhsg_pipe_to_uep(p) ((p)->mod_private)
103#define usbhsg_is_dcp(u) ((u) == usbhsg_gpriv_to_dcp((u)->gpriv))
104
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900105#define usbhsg_ureq_to_pkt(u) (&(u)->pkt)
106#define usbhsg_pkt_to_ureq(i) \
107 container_of(i, struct usbhsg_request, pkt)
108
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900109#define usbhsg_is_not_connected(gp) ((gp)->gadget.speed == USB_SPEED_UNKNOWN)
110
111/* status */
112#define usbhsg_status_init(gp) do {(gp)->status = 0; } while (0)
113#define usbhsg_status_set(gp, b) (gp->status |= b)
114#define usbhsg_status_clr(gp, b) (gp->status &= ~b)
115#define usbhsg_status_has(gp, b) (gp->status & b)
116
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700117/* controller */
118LIST_HEAD(the_controller_link);
119
120#define usbhsg_for_each_controller(gpriv)\
121 list_for_each_entry(gpriv, &the_controller_link, link)
122#define usbhsg_controller_register(gpriv)\
123 list_add_tail(&(gpriv)->link, &the_controller_link)
124#define usbhsg_controller_unregister(gpriv)\
125 list_del_init(&(gpriv)->link)
126
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900127/*
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700128 * queue push/pop
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900129 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900130static void usbhsg_queue_pop(struct usbhsg_uep *uep,
131 struct usbhsg_request *ureq,
132 int status)
133{
134 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
135 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
136 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900137
138 dev_dbg(dev, "pipe %d : queue pop\n", usbhs_pipe_number(pipe));
139
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900140 ureq->req.status = status;
141 ureq->req.complete(&uep->ep, &ureq->req);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900142}
143
Kuninori Morimoto2cc97192011-10-10 22:03:39 -0700144static void usbhsg_queue_done(struct usbhs_priv *priv, struct usbhs_pkt *pkt)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900145{
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900146 struct usbhs_pipe *pipe = pkt->pipe;
147 struct usbhsg_uep *uep = usbhsg_pipe_to_uep(pipe);
148 struct usbhsg_request *ureq = usbhsg_pkt_to_ureq(pkt);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900149
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900150 ureq->req.actual = pkt->actual;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900151
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900152 usbhsg_queue_pop(uep, ureq, 0);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900153}
154
Kuninori Morimotob3318722011-10-10 22:04:41 -0700155static void usbhsg_queue_push(struct usbhsg_uep *uep,
156 struct usbhsg_request *ureq)
157{
158 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
159 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
160 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
161 struct usbhs_pkt *pkt = usbhsg_ureq_to_pkt(ureq);
162 struct usb_request *req = &ureq->req;
163
164 req->actual = 0;
165 req->status = -EINPROGRESS;
166 usbhs_pkt_push(pipe, pkt, usbhsg_queue_done,
167 req->buf, req->length, req->zero);
Kuninori Morimoto654c35a2011-10-10 22:04:53 -0700168 usbhs_pkt_start(pipe);
Kuninori Morimotob3318722011-10-10 22:04:41 -0700169
170 dev_dbg(dev, "pipe %d : queue push (%d)\n",
171 usbhs_pipe_number(pipe),
172 req->length);
173}
174
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700175/*
176 * dma map/unmap
177 */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900178static int usbhsg_dma_map(struct device *dev,
179 struct usbhs_pkt *pkt,
180 enum dma_data_direction dir)
181{
182 struct usbhsg_request *ureq = usbhsg_pkt_to_ureq(pkt);
183 struct usb_request *req = &ureq->req;
184
185 if (pkt->dma != DMA_ADDR_INVALID) {
186 dev_err(dev, "dma is already mapped\n");
187 return -EIO;
188 }
189
190 if (req->dma == DMA_ADDR_INVALID) {
191 pkt->dma = dma_map_single(dev, pkt->buf, pkt->length, dir);
192 } else {
193 dma_sync_single_for_device(dev, req->dma, req->length, dir);
194 pkt->dma = req->dma;
195 }
196
197 if (dma_mapping_error(dev, pkt->dma)) {
198 dev_err(dev, "dma mapping error %x\n", pkt->dma);
199 return -EIO;
200 }
201
202 return 0;
203}
204
205static int usbhsg_dma_unmap(struct device *dev,
206 struct usbhs_pkt *pkt,
207 enum dma_data_direction dir)
208{
209 struct usbhsg_request *ureq = usbhsg_pkt_to_ureq(pkt);
210 struct usb_request *req = &ureq->req;
211
212 if (pkt->dma == DMA_ADDR_INVALID) {
213 dev_err(dev, "dma is not mapped\n");
214 return -EIO;
215 }
216
217 if (req->dma == DMA_ADDR_INVALID)
218 dma_unmap_single(dev, pkt->dma, pkt->length, dir);
219 else
220 dma_sync_single_for_cpu(dev, req->dma, req->length, dir);
221
222 pkt->dma = DMA_ADDR_INVALID;
223
224 return 0;
225}
226
227static int usbhsg_dma_map_ctrl(struct usbhs_pkt *pkt, int map)
228{
229 struct usbhs_pipe *pipe = pkt->pipe;
230 struct usbhsg_uep *uep = usbhsg_pipe_to_uep(pipe);
231 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
232 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
233 enum dma_data_direction dir;
234
235 dir = usbhs_pipe_is_dir_in(pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
236
237 if (map)
238 return usbhsg_dma_map(dev, pkt, dir);
239 else
240 return usbhsg_dma_unmap(dev, pkt, dir);
241}
242
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900243/*
244 * USB_TYPE_STANDARD / clear feature functions
245 */
246static int usbhsg_recip_handler_std_control_done(struct usbhs_priv *priv,
247 struct usbhsg_uep *uep,
248 struct usb_ctrlrequest *ctrl)
249{
250 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
251 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
252 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(dcp);
253
254 usbhs_dcp_control_transfer_done(pipe);
255
256 return 0;
257}
258
259static int usbhsg_recip_handler_std_clear_endpoint(struct usbhs_priv *priv,
260 struct usbhsg_uep *uep,
261 struct usb_ctrlrequest *ctrl)
262{
263 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
264 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
265
266 if (!usbhsg_status_has(gpriv, USBHSG_STATUS_WEDGE)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900267 usbhs_pipe_disable(pipe);
Kuninori Morimoto6e6db822011-10-10 22:05:30 -0700268 usbhs_pipe_sequence_data0(pipe);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900269 usbhs_pipe_enable(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900270 }
271
272 usbhsg_recip_handler_std_control_done(priv, uep, ctrl);
273
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900274 return 0;
275}
276
277struct usbhsg_recip_handle req_clear_feature = {
278 .name = "clear feature",
279 .device = usbhsg_recip_handler_std_control_done,
280 .interface = usbhsg_recip_handler_std_control_done,
281 .endpoint = usbhsg_recip_handler_std_clear_endpoint,
282};
283
284/*
Kuninori Morimotoced6e092011-11-24 17:27:50 -0800285 * USB_TYPE_STANDARD / set feature functions
286 */
287static int usbhsg_recip_handler_std_set_endpoint(struct usbhs_priv *priv,
288 struct usbhsg_uep *uep,
289 struct usb_ctrlrequest *ctrl)
290{
291 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
292
293 usbhs_pipe_stall(pipe);
294
295 usbhsg_recip_handler_std_control_done(priv, uep, ctrl);
296
297 return 0;
298}
299
300struct usbhsg_recip_handle req_set_feature = {
301 .name = "set feature",
302 .device = usbhsg_recip_handler_std_control_done,
303 .interface = usbhsg_recip_handler_std_control_done,
304 .endpoint = usbhsg_recip_handler_std_set_endpoint,
305};
306
307/*
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900308 * USB_TYPE handler
309 */
310static int usbhsg_recip_run_handle(struct usbhs_priv *priv,
311 struct usbhsg_recip_handle *handler,
312 struct usb_ctrlrequest *ctrl)
313{
314 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
315 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
316 struct usbhsg_uep *uep;
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900317 struct usbhs_pipe *pipe;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900318 int recip = ctrl->bRequestType & USB_RECIP_MASK;
319 int nth = le16_to_cpu(ctrl->wIndex) & USB_ENDPOINT_NUMBER_MASK;
320 int ret;
321 int (*func)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
322 struct usb_ctrlrequest *ctrl);
323 char *msg;
324
325 uep = usbhsg_gpriv_to_nth_uep(gpriv, nth);
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900326 pipe = usbhsg_uep_to_pipe(uep);
327 if (!pipe) {
Kuninori Morimoto9a28b7b2011-04-21 14:10:12 +0900328 dev_err(dev, "wrong recip request\n");
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900329 ret = -EINVAL;
330 goto usbhsg_recip_run_handle_end;
Kuninori Morimoto9a28b7b2011-04-21 14:10:12 +0900331 }
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900332
333 switch (recip) {
334 case USB_RECIP_DEVICE:
335 msg = "DEVICE";
336 func = handler->device;
337 break;
338 case USB_RECIP_INTERFACE:
339 msg = "INTERFACE";
340 func = handler->interface;
341 break;
342 case USB_RECIP_ENDPOINT:
343 msg = "ENDPOINT";
344 func = handler->endpoint;
345 break;
346 default:
347 dev_warn(dev, "unsupported RECIP(%d)\n", recip);
348 func = NULL;
349 ret = -EINVAL;
350 }
351
352 if (func) {
353 dev_dbg(dev, "%s (pipe %d :%s)\n", handler->name, nth, msg);
354 ret = func(priv, uep, ctrl);
355 }
356
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900357usbhsg_recip_run_handle_end:
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900358 usbhs_pkt_start(pipe);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900359
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900360 return ret;
361}
362
363/*
364 * irq functions
365 *
366 * it will be called from usbhs_interrupt
367 */
368static int usbhsg_irq_dev_state(struct usbhs_priv *priv,
369 struct usbhs_irq_state *irq_state)
370{
371 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
372 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
373
Kuninori Morimoto75587f52011-10-10 22:01:51 -0700374 gpriv->gadget.speed = usbhs_bus_get_speed(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900375
376 dev_dbg(dev, "state = %x : speed : %d\n",
377 usbhs_status_get_device_state(irq_state),
378 gpriv->gadget.speed);
379
380 return 0;
381}
382
383static int usbhsg_irq_ctrl_stage(struct usbhs_priv *priv,
384 struct usbhs_irq_state *irq_state)
385{
386 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
387 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
388 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(dcp);
389 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
390 struct usb_ctrlrequest ctrl;
391 struct usbhsg_recip_handle *recip_handler = NULL;
392 int stage = usbhs_status_get_ctrl_stage(irq_state);
393 int ret = 0;
394
395 dev_dbg(dev, "stage = %d\n", stage);
396
397 /*
398 * see Manual
399 *
400 * "Operation"
401 * - "Interrupt Function"
402 * - "Control Transfer Stage Transition Interrupt"
403 * - Fig. "Control Transfer Stage Transitions"
404 */
405
406 switch (stage) {
407 case READ_DATA_STAGE:
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700408 pipe->handler = &usbhs_fifo_pio_push_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900409 break;
410 case WRITE_DATA_STAGE:
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700411 pipe->handler = &usbhs_fifo_pio_pop_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900412 break;
413 case NODATA_STATUS_STAGE:
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700414 pipe->handler = &usbhs_ctrl_stage_end_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900415 break;
416 default:
417 return ret;
418 }
419
420 /*
421 * get usb request
422 */
423 usbhs_usbreq_get_val(priv, &ctrl);
424
425 switch (ctrl.bRequestType & USB_TYPE_MASK) {
426 case USB_TYPE_STANDARD:
427 switch (ctrl.bRequest) {
428 case USB_REQ_CLEAR_FEATURE:
429 recip_handler = &req_clear_feature;
430 break;
Kuninori Morimotoced6e092011-11-24 17:27:50 -0800431 case USB_REQ_SET_FEATURE:
432 recip_handler = &req_set_feature;
433 break;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900434 }
435 }
436
437 /*
438 * setup stage / run recip
439 */
440 if (recip_handler)
441 ret = usbhsg_recip_run_handle(priv, recip_handler, &ctrl);
442 else
443 ret = gpriv->driver->setup(&gpriv->gadget, &ctrl);
444
445 if (ret < 0)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900446 usbhs_pipe_stall(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900447
448 return ret;
449}
450
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900451/*
452 *
453 * usb_dcp_ops
454 *
455 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900456static int usbhsg_pipe_disable(struct usbhsg_uep *uep)
457{
458 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
Kuninori Morimoto8a2c2252011-06-06 14:18:33 +0900459 struct usbhs_pkt *pkt;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900460
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900461 usbhs_pipe_disable(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900462
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900463 while (1) {
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900464 pkt = usbhs_pkt_pop(pipe, NULL);
Kuninori Morimoto8a2c2252011-06-06 14:18:33 +0900465 if (!pkt)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900466 break;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900467 }
468
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900469 return 0;
470}
471
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900472static void usbhsg_uep_init(struct usbhsg_gpriv *gpriv)
473{
474 int i;
475 struct usbhsg_uep *uep;
476
477 usbhsg_for_each_uep_with_dcp(uep, gpriv, i)
478 uep->pipe = NULL;
479}
480
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900481/*
482 *
483 * usb_ep_ops
484 *
485 */
486static int usbhsg_ep_enable(struct usb_ep *ep,
487 const struct usb_endpoint_descriptor *desc)
488{
489 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
490 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
491 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
492 struct usbhs_pipe *pipe;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900493 int ret = -EIO;
494
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900495 /*
496 * if it already have pipe,
497 * nothing to do
498 */
Kuninori Morimoto08e6c612011-06-09 16:48:25 +0900499 if (uep->pipe) {
500 usbhs_pipe_clear(uep->pipe);
Kuninori Morimoto6e6db822011-10-10 22:05:30 -0700501 usbhs_pipe_sequence_data0(uep->pipe);
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900502 return 0;
Kuninori Morimoto08e6c612011-06-09 16:48:25 +0900503 }
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900504
Kuninori Morimotof5aa8892011-10-10 21:59:46 -0700505 pipe = usbhs_pipe_malloc(priv,
506 usb_endpoint_type(desc),
507 usb_endpoint_dir_in(desc));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900508 if (pipe) {
509 uep->pipe = pipe;
510 pipe->mod_private = uep;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900511
Kuninori Morimotof5aa8892011-10-10 21:59:46 -0700512 /* set epnum / maxp */
Kuninori Morimotobc6fbf52011-10-10 22:04:00 -0700513 usbhs_pipe_config_update(pipe, 0,
Kuninori Morimotof5aa8892011-10-10 21:59:46 -0700514 usb_endpoint_num(desc),
515 usb_endpoint_maxp(desc));
516
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700517 /*
518 * usbhs_fifo_dma_push/pop_handler try to
519 * use dmaengine if possible.
520 * It will use pio handler if impossible.
521 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900522 if (usb_endpoint_dir_in(desc))
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700523 pipe->handler = &usbhs_fifo_dma_push_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900524 else
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700525 pipe->handler = &usbhs_fifo_dma_pop_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900526
527 ret = 0;
528 }
Kuninori Morimotocb966322011-04-21 14:10:08 +0900529
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900530 return ret;
531}
532
533static int usbhsg_ep_disable(struct usb_ep *ep)
534{
535 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900536
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900537 return usbhsg_pipe_disable(uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900538}
539
540static struct usb_request *usbhsg_ep_alloc_request(struct usb_ep *ep,
541 gfp_t gfp_flags)
542{
543 struct usbhsg_request *ureq;
544
545 ureq = kzalloc(sizeof *ureq, gfp_flags);
546 if (!ureq)
547 return NULL;
548
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900549 usbhs_pkt_init(usbhsg_ureq_to_pkt(ureq));
550
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900551 ureq->req.dma = DMA_ADDR_INVALID;
552
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900553 return &ureq->req;
554}
555
556static void usbhsg_ep_free_request(struct usb_ep *ep,
557 struct usb_request *req)
558{
559 struct usbhsg_request *ureq = usbhsg_req_to_ureq(req);
560
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900561 WARN_ON(!list_empty(&ureq->pkt.node));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900562 kfree(ureq);
563}
564
565static int usbhsg_ep_queue(struct usb_ep *ep, struct usb_request *req,
566 gfp_t gfp_flags)
567{
568 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
569 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
570 struct usbhsg_request *ureq = usbhsg_req_to_ureq(req);
571 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900572
573 /* param check */
574 if (usbhsg_is_not_connected(gpriv) ||
575 unlikely(!gpriv->driver) ||
576 unlikely(!pipe))
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900577 return -ESHUTDOWN;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900578
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900579 usbhsg_queue_push(uep, ureq);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900580
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900581 return 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900582}
583
584static int usbhsg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
585{
586 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
587 struct usbhsg_request *ureq = usbhsg_req_to_ureq(req);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900588 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900589
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900590 usbhs_pkt_pop(pipe, usbhsg_ureq_to_pkt(ureq));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900591 usbhsg_queue_pop(uep, ureq, -ECONNRESET);
592
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900593 return 0;
594}
595
596static int __usbhsg_ep_set_halt_wedge(struct usb_ep *ep, int halt, int wedge)
597{
598 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
599 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
600 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900601 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900602 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900603 unsigned long flags;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900604
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900605 usbhsg_pipe_disable(uep);
606
607 dev_dbg(dev, "set halt %d (pipe %d)\n",
608 halt, usbhs_pipe_number(pipe));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900609
610 /******************** spin lock ********************/
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900611 usbhs_lock(priv, flags);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900612
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900613 if (halt)
614 usbhs_pipe_stall(pipe);
615 else
616 usbhs_pipe_disable(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900617
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900618 if (halt && wedge)
619 usbhsg_status_set(gpriv, USBHSG_STATUS_WEDGE);
620 else
621 usbhsg_status_clr(gpriv, USBHSG_STATUS_WEDGE);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900622
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900623 usbhs_unlock(priv, flags);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900624 /******************** spin unlock ******************/
625
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900626 return 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900627}
628
629static int usbhsg_ep_set_halt(struct usb_ep *ep, int value)
630{
631 return __usbhsg_ep_set_halt_wedge(ep, value, 0);
632}
633
634static int usbhsg_ep_set_wedge(struct usb_ep *ep)
635{
636 return __usbhsg_ep_set_halt_wedge(ep, 1, 1);
637}
638
639static struct usb_ep_ops usbhsg_ep_ops = {
640 .enable = usbhsg_ep_enable,
641 .disable = usbhsg_ep_disable,
642
643 .alloc_request = usbhsg_ep_alloc_request,
644 .free_request = usbhsg_ep_free_request,
645
646 .queue = usbhsg_ep_queue,
647 .dequeue = usbhsg_ep_dequeue,
648
649 .set_halt = usbhsg_ep_set_halt,
650 .set_wedge = usbhsg_ep_set_wedge,
651};
652
653/*
654 * usb module start/end
655 */
656static int usbhsg_try_start(struct usbhs_priv *priv, u32 status)
657{
658 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
659 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
660 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
661 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900662 unsigned long flags;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900663 int ret = 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900664
665 /******************** spin lock ********************/
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900666 usbhs_lock(priv, flags);
667
668 usbhsg_status_set(gpriv, status);
669 if (!(usbhsg_status_has(gpriv, USBHSG_STATUS_STARTED) &&
670 usbhsg_status_has(gpriv, USBHSG_STATUS_REGISTERD)))
671 ret = -1; /* not ready */
672
673 usbhs_unlock(priv, flags);
674 /******************** spin unlock ********************/
675
676 if (ret < 0)
677 return 0; /* not ready is not error */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900678
679 /*
680 * enable interrupt and systems if ready
681 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900682 dev_dbg(dev, "start gadget\n");
683
684 /*
685 * pipe initialize and enable DCP
686 */
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900687 usbhs_pipe_init(priv,
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900688 usbhsg_dma_map_ctrl);
Kuninori Morimotodad67392011-06-06 14:18:28 +0900689 usbhs_fifo_init(priv);
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900690 usbhsg_uep_init(gpriv);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900691
692 /* dcp init */
693 dcp->pipe = usbhs_dcp_malloc(priv);
694 dcp->pipe->mod_private = dcp;
Kuninori Morimotobc6fbf52011-10-10 22:04:00 -0700695 usbhs_pipe_config_update(dcp->pipe, 0, 0, 64);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900696
697 /*
698 * system config enble
699 * - HI speed
700 * - function
701 * - usb module
702 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900703 usbhs_sys_function_ctrl(priv, 1);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900704
705 /*
706 * enable irq callback
707 */
708 mod->irq_dev_state = usbhsg_irq_dev_state;
709 mod->irq_ctrl_stage = usbhsg_irq_ctrl_stage;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900710 usbhs_irq_callback_update(priv, mod);
711
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900712 return 0;
713}
714
715static int usbhsg_try_stop(struct usbhs_priv *priv, u32 status)
716{
717 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
718 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
719 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
720 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900721 unsigned long flags;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900722 int ret = 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900723
724 /******************** spin lock ********************/
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900725 usbhs_lock(priv, flags);
726
727 usbhsg_status_clr(gpriv, status);
728 if (!usbhsg_status_has(gpriv, USBHSG_STATUS_STARTED) &&
729 !usbhsg_status_has(gpriv, USBHSG_STATUS_REGISTERD))
730 ret = -1; /* already done */
731
732 usbhs_unlock(priv, flags);
733 /******************** spin unlock ********************/
734
735 if (ret < 0)
736 return 0; /* already done is not error */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900737
738 /*
739 * disable interrupt and systems if 1st try
740 */
Kuninori Morimotodad67392011-06-06 14:18:28 +0900741 usbhs_fifo_quit(priv);
742
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900743 /* disable all irq */
744 mod->irq_dev_state = NULL;
745 mod->irq_ctrl_stage = NULL;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900746 usbhs_irq_callback_update(priv, mod);
747
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900748 gpriv->gadget.speed = USB_SPEED_UNKNOWN;
749
750 /* disable sys */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900751 usbhs_sys_function_ctrl(priv, 0);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900752
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900753 usbhsg_pipe_disable(dcp);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900754
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900755 dev_dbg(dev, "stop gadget\n");
756
757 return 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900758}
759
760/*
761 *
762 * linux usb function
763 *
764 */
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300765static int usbhsg_gadget_start(struct usb_gadget *gadget,
766 struct usb_gadget_driver *driver)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900767{
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300768 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
Kuninori Morimotof8eff0a2011-11-17 18:19:06 -0800769 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900770
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300771 if (!driver ||
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900772 !driver->setup ||
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100773 driver->max_speed < USB_SPEED_FULL)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900774 return -EINVAL;
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700775
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900776 /* first hook up the driver ... */
777 gpriv->driver = driver;
778 gpriv->gadget.dev.driver = &driver->driver;
779
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900780 return usbhsg_try_start(priv, USBHSG_STATUS_REGISTERD);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900781}
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900782
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300783static int usbhsg_gadget_stop(struct usb_gadget *gadget,
784 struct usb_gadget_driver *driver)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900785{
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300786 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
Kuninori Morimotof8eff0a2011-11-17 18:19:06 -0800787 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900788
789 if (!driver ||
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700790 !driver->unbind)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900791 return -EINVAL;
792
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900793 usbhsg_try_stop(priv, USBHSG_STATUS_REGISTERD);
Kuninori Morimoto0cdd7d42011-11-17 18:19:56 -0800794 gpriv->gadget.dev.driver = NULL;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900795 gpriv->driver = NULL;
796
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900797 return 0;
798}
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900799
800/*
801 * usb gadget ops
802 */
803static int usbhsg_get_frame(struct usb_gadget *gadget)
804{
805 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
806 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
807
808 return usbhs_frame_get_num(priv);
809}
810
811static struct usb_gadget_ops usbhsg_gadget_ops = {
812 .get_frame = usbhsg_get_frame,
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300813 .udc_start = usbhsg_gadget_start,
814 .udc_stop = usbhsg_gadget_stop,
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900815};
816
817static int usbhsg_start(struct usbhs_priv *priv)
818{
819 return usbhsg_try_start(priv, USBHSG_STATUS_STARTED);
820}
821
822static int usbhsg_stop(struct usbhs_priv *priv)
823{
Kuninori Morimoto8885a892011-11-17 18:19:38 -0800824 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
825
826 /* cable disconnect */
827 if (gpriv->driver &&
828 gpriv->driver->disconnect)
829 gpriv->driver->disconnect(&gpriv->gadget);
830
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900831 return usbhsg_try_stop(priv, USBHSG_STATUS_STARTED);
832}
833
Kuninori Morimotob7a8d172011-10-26 19:33:49 -0700834int usbhs_mod_gadget_probe(struct usbhs_priv *priv)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900835{
836 struct usbhsg_gpriv *gpriv;
837 struct usbhsg_uep *uep;
838 struct device *dev = usbhs_priv_to_dev(priv);
839 int pipe_size = usbhs_get_dparam(priv, pipe_size);
840 int i;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300841 int ret;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900842
843 gpriv = kzalloc(sizeof(struct usbhsg_gpriv), GFP_KERNEL);
844 if (!gpriv) {
845 dev_err(dev, "Could not allocate gadget priv\n");
846 return -ENOMEM;
847 }
848
849 uep = kzalloc(sizeof(struct usbhsg_uep) * pipe_size, GFP_KERNEL);
850 if (!uep) {
851 dev_err(dev, "Could not allocate ep\n");
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300852 ret = -ENOMEM;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900853 goto usbhs_mod_gadget_probe_err_gpriv;
854 }
855
856 /*
857 * CAUTION
858 *
859 * There is no guarantee that it is possible to access usb module here.
860 * Don't accesses to it.
861 * The accesse will be enable after "usbhsg_start"
862 */
863
864 /*
865 * register itself
866 */
867 usbhs_mod_register(priv, &gpriv->mod, USBHS_GADGET);
868
869 /* init gpriv */
870 gpriv->mod.name = "gadget";
871 gpriv->mod.start = usbhsg_start;
872 gpriv->mod.stop = usbhsg_stop;
873 gpriv->uep = uep;
874 gpriv->uep_size = pipe_size;
875 usbhsg_status_init(gpriv);
876
877 /*
878 * init gadget
879 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900880 dev_set_name(&gpriv->gadget.dev, "gadget");
881 gpriv->gadget.dev.parent = dev;
882 gpriv->gadget.name = "renesas_usbhs_udc";
883 gpriv->gadget.ops = &usbhsg_gadget_ops;
Michal Nazarewiczd327ab52011-11-19 18:27:37 +0100884 gpriv->gadget.max_speed = USB_SPEED_HIGH;
Kuninori Morimotof8eff0a2011-11-17 18:19:06 -0800885 ret = device_register(&gpriv->gadget.dev);
886 if (ret < 0)
887 goto err_add_udc;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900888
889 INIT_LIST_HEAD(&gpriv->gadget.ep_list);
890
891 /*
892 * init usb_ep
893 */
894 usbhsg_for_each_uep_with_dcp(uep, gpriv, i) {
895 uep->gpriv = gpriv;
896 snprintf(uep->ep_name, EP_NAME_SIZE, "ep%d", i);
897
898 uep->ep.name = uep->ep_name;
899 uep->ep.ops = &usbhsg_ep_ops;
900 INIT_LIST_HEAD(&uep->ep.ep_list);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900901
902 /* init DCP */
903 if (usbhsg_is_dcp(uep)) {
904 gpriv->gadget.ep0 = &uep->ep;
905 uep->ep.maxpacket = 64;
906 }
907 /* init normal pipe */
908 else {
909 uep->ep.maxpacket = 512;
910 list_add_tail(&uep->ep.ep_list, &gpriv->gadget.ep_list);
911 }
912 }
913
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700914 usbhsg_controller_register(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900915
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300916 ret = usb_add_gadget_udc(dev, &gpriv->gadget);
917 if (ret)
Kuninori Morimotof8eff0a2011-11-17 18:19:06 -0800918 goto err_register;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300919
920
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900921 dev_info(dev, "gadget probed\n");
922
923 return 0;
Kuninori Morimotof8eff0a2011-11-17 18:19:06 -0800924
925err_register:
926 device_unregister(&gpriv->gadget.dev);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300927err_add_udc:
928 kfree(gpriv->uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900929
930usbhs_mod_gadget_probe_err_gpriv:
931 kfree(gpriv);
932
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300933 return ret;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900934}
935
Kuninori Morimotob7a8d172011-10-26 19:33:49 -0700936void usbhs_mod_gadget_remove(struct usbhs_priv *priv)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900937{
938 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
939
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300940 usb_del_gadget_udc(&gpriv->gadget);
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700941
Kuninori Morimotof8eff0a2011-11-17 18:19:06 -0800942 device_unregister(&gpriv->gadget.dev);
943
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700944 usbhsg_controller_unregister(gpriv);
945
Sebastian Andrzej Siewior3af51ac2011-06-03 19:50:48 +0200946 kfree(gpriv->uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900947 kfree(gpriv);
948}