4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
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.
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
18 #include <linux/module.h>
19 #include <linux/platform_device.h>
20 #include <linux/usb/ch9.h>
21 #include <linux/usb/gadget.h>
27 struct usbhsg_request
{
28 struct usb_request req
;
32 #define EP_NAME_SIZE 8
36 struct usbhs_pipe
*pipe
;
38 char ep_name
[EP_NAME_SIZE
];
40 struct usbhsg_gpriv
*gpriv
;
41 struct usbhs_pkt_handle
*handler
;
45 struct usb_gadget gadget
;
47 struct list_head link
;
49 struct usbhsg_uep
*uep
;
52 struct usb_gadget_driver
*driver
;
55 #define USBHSG_STATUS_STARTED (1 << 0)
56 #define USBHSG_STATUS_REGISTERD (1 << 1)
57 #define USBHSG_STATUS_WEDGE (1 << 2)
60 struct usbhsg_recip_handle
{
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
);
73 #define usbhsg_priv_to_gpriv(priv) \
75 usbhs_mod_get(priv, USBHS_GADGET), \
76 struct usbhsg_gpriv, mod)
78 #define __usbhsg_for_each_uep(start, pos, g, i) \
79 for (i = start, pos = (g)->uep; \
81 i++, pos = (g)->uep + i)
83 #define usbhsg_for_each_uep(pos, gpriv, i) \
84 __usbhsg_for_each_uep(1, pos, gpriv, i)
86 #define usbhsg_for_each_uep_with_dcp(pos, gpriv, i) \
87 __usbhsg_for_each_uep(0, pos, gpriv, i)
89 #define usbhsg_gadget_to_gpriv(g)\
90 container_of(g, struct usbhsg_gpriv, gadget)
92 #define usbhsg_req_to_ureq(r)\
93 container_of(r, struct usbhsg_request, req)
95 #define usbhsg_ep_to_uep(e) container_of(e, struct usbhsg_uep, ep)
96 #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))
105 #define usbhsg_ureq_to_pkt(u) (&(u)->pkt)
106 #define usbhsg_pkt_to_ureq(i) \
107 container_of(i, struct usbhsg_request, pkt)
109 #define usbhsg_is_not_connected(gp) ((gp)->gadget.speed == USB_SPEED_UNKNOWN)
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)
118 LIST_HEAD(the_controller_link
);
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)
130 static void usbhsg_queue_push(struct usbhsg_uep
*uep
,
131 struct usbhsg_request
*ureq
)
133 struct usbhsg_gpriv
*gpriv
= usbhsg_uep_to_gpriv(uep
);
134 struct device
*dev
= usbhsg_gpriv_to_dev(gpriv
);
135 struct usbhs_pipe
*pipe
= usbhsg_uep_to_pipe(uep
);
136 struct usbhs_pkt
*pkt
= usbhsg_ureq_to_pkt(ureq
);
137 struct usb_request
*req
= &ureq
->req
;
140 req
->status
= -EINPROGRESS
;
141 usbhs_pkt_push(pipe
, pkt
, uep
->handler
,
142 req
->buf
, req
->length
, req
->zero
);
144 dev_dbg(dev
, "pipe %d : queue push (%d)\n",
145 usbhs_pipe_number(pipe
),
149 static void usbhsg_queue_pop(struct usbhsg_uep
*uep
,
150 struct usbhsg_request
*ureq
,
153 struct usbhsg_gpriv
*gpriv
= usbhsg_uep_to_gpriv(uep
);
154 struct usbhs_pipe
*pipe
= usbhsg_uep_to_pipe(uep
);
155 struct device
*dev
= usbhsg_gpriv_to_dev(gpriv
);
157 dev_dbg(dev
, "pipe %d : queue pop\n", usbhs_pipe_number(pipe
));
159 ureq
->req
.status
= status
;
160 ureq
->req
.complete(&uep
->ep
, &ureq
->req
);
163 static void usbhsg_queue_done(struct usbhs_pkt
*pkt
)
165 struct usbhs_pipe
*pipe
= pkt
->pipe
;
166 struct usbhsg_uep
*uep
= usbhsg_pipe_to_uep(pipe
);
167 struct usbhsg_request
*ureq
= usbhsg_pkt_to_ureq(pkt
);
169 ureq
->req
.actual
= pkt
->actual
;
171 usbhsg_queue_pop(uep
, ureq
, 0);
177 static int usbhsg_dma_map(struct device
*dev
,
178 struct usbhs_pkt
*pkt
,
179 enum dma_data_direction dir
)
181 struct usbhsg_request
*ureq
= usbhsg_pkt_to_ureq(pkt
);
182 struct usb_request
*req
= &ureq
->req
;
184 if (pkt
->dma
!= DMA_ADDR_INVALID
) {
185 dev_err(dev
, "dma is already mapped\n");
189 if (req
->dma
== DMA_ADDR_INVALID
) {
190 pkt
->dma
= dma_map_single(dev
, pkt
->buf
, pkt
->length
, dir
);
192 dma_sync_single_for_device(dev
, req
->dma
, req
->length
, dir
);
196 if (dma_mapping_error(dev
, pkt
->dma
)) {
197 dev_err(dev
, "dma mapping error %x\n", pkt
->dma
);
204 static int usbhsg_dma_unmap(struct device
*dev
,
205 struct usbhs_pkt
*pkt
,
206 enum dma_data_direction dir
)
208 struct usbhsg_request
*ureq
= usbhsg_pkt_to_ureq(pkt
);
209 struct usb_request
*req
= &ureq
->req
;
211 if (pkt
->dma
== DMA_ADDR_INVALID
) {
212 dev_err(dev
, "dma is not mapped\n");
216 if (req
->dma
== DMA_ADDR_INVALID
)
217 dma_unmap_single(dev
, pkt
->dma
, pkt
->length
, dir
);
219 dma_sync_single_for_cpu(dev
, req
->dma
, req
->length
, dir
);
221 pkt
->dma
= DMA_ADDR_INVALID
;
226 static int usbhsg_dma_map_ctrl(struct usbhs_pkt
*pkt
, int map
)
228 struct usbhs_pipe
*pipe
= pkt
->pipe
;
229 struct usbhsg_uep
*uep
= usbhsg_pipe_to_uep(pipe
);
230 struct usbhsg_gpriv
*gpriv
= usbhsg_uep_to_gpriv(uep
);
231 struct device
*dev
= usbhsg_gpriv_to_dev(gpriv
);
232 enum dma_data_direction dir
;
234 dir
= usbhs_pipe_is_dir_in(pipe
) ? DMA_FROM_DEVICE
: DMA_TO_DEVICE
;
237 return usbhsg_dma_map(dev
, pkt
, dir
);
239 return usbhsg_dma_unmap(dev
, pkt
, dir
);
243 * USB_TYPE_STANDARD / clear feature functions
245 static int usbhsg_recip_handler_std_control_done(struct usbhs_priv
*priv
,
246 struct usbhsg_uep
*uep
,
247 struct usb_ctrlrequest
*ctrl
)
249 struct usbhsg_gpriv
*gpriv
= usbhsg_priv_to_gpriv(priv
);
250 struct usbhsg_uep
*dcp
= usbhsg_gpriv_to_dcp(gpriv
);
251 struct usbhs_pipe
*pipe
= usbhsg_uep_to_pipe(dcp
);
253 usbhs_dcp_control_transfer_done(pipe
);
258 static int usbhsg_recip_handler_std_clear_endpoint(struct usbhs_priv
*priv
,
259 struct usbhsg_uep
*uep
,
260 struct usb_ctrlrequest
*ctrl
)
262 struct usbhsg_gpriv
*gpriv
= usbhsg_uep_to_gpriv(uep
);
263 struct usbhs_pipe
*pipe
= usbhsg_uep_to_pipe(uep
);
265 if (!usbhsg_status_has(gpriv
, USBHSG_STATUS_WEDGE
)) {
266 usbhs_pipe_disable(pipe
);
267 usbhs_pipe_clear_sequence(pipe
);
268 usbhs_pipe_enable(pipe
);
271 usbhsg_recip_handler_std_control_done(priv
, uep
, ctrl
);
276 struct usbhsg_recip_handle req_clear_feature
= {
277 .name
= "clear feature",
278 .device
= usbhsg_recip_handler_std_control_done
,
279 .interface
= usbhsg_recip_handler_std_control_done
,
280 .endpoint
= usbhsg_recip_handler_std_clear_endpoint
,
286 static int usbhsg_recip_run_handle(struct usbhs_priv
*priv
,
287 struct usbhsg_recip_handle
*handler
,
288 struct usb_ctrlrequest
*ctrl
)
290 struct usbhsg_gpriv
*gpriv
= usbhsg_priv_to_gpriv(priv
);
291 struct device
*dev
= usbhsg_gpriv_to_dev(gpriv
);
292 struct usbhsg_uep
*uep
;
293 struct usbhs_pipe
*pipe
;
294 int recip
= ctrl
->bRequestType
& USB_RECIP_MASK
;
295 int nth
= le16_to_cpu(ctrl
->wIndex
) & USB_ENDPOINT_NUMBER_MASK
;
297 int (*func
)(struct usbhs_priv
*priv
, struct usbhsg_uep
*uep
,
298 struct usb_ctrlrequest
*ctrl
);
301 uep
= usbhsg_gpriv_to_nth_uep(gpriv
, nth
);
302 pipe
= usbhsg_uep_to_pipe(uep
);
304 dev_err(dev
, "wrong recip request\n");
306 goto usbhsg_recip_run_handle_end
;
310 case USB_RECIP_DEVICE
:
312 func
= handler
->device
;
314 case USB_RECIP_INTERFACE
:
316 func
= handler
->interface
;
318 case USB_RECIP_ENDPOINT
:
320 func
= handler
->endpoint
;
323 dev_warn(dev
, "unsupported RECIP(%d)\n", recip
);
331 dev_dbg(dev
, "%s (pipe %d :%s)\n", handler
->name
, nth
, msg
);
333 /******************** spin lock ********************/
334 usbhs_lock(priv
, flags
);
335 ret
= func(priv
, uep
, ctrl
);
336 usbhs_unlock(priv
, flags
);
337 /******************** spin unlock ******************/
340 usbhsg_recip_run_handle_end
:
341 usbhs_pkt_start(pipe
);
349 * it will be called from usbhs_interrupt
351 static int usbhsg_irq_dev_state(struct usbhs_priv
*priv
,
352 struct usbhs_irq_state
*irq_state
)
354 struct usbhsg_gpriv
*gpriv
= usbhsg_priv_to_gpriv(priv
);
355 struct device
*dev
= usbhsg_gpriv_to_dev(gpriv
);
357 gpriv
->gadget
.speed
= usbhs_status_get_usb_speed(irq_state
);
359 dev_dbg(dev
, "state = %x : speed : %d\n",
360 usbhs_status_get_device_state(irq_state
),
361 gpriv
->gadget
.speed
);
366 static int usbhsg_irq_ctrl_stage(struct usbhs_priv
*priv
,
367 struct usbhs_irq_state
*irq_state
)
369 struct usbhsg_gpriv
*gpriv
= usbhsg_priv_to_gpriv(priv
);
370 struct usbhsg_uep
*dcp
= usbhsg_gpriv_to_dcp(gpriv
);
371 struct usbhs_pipe
*pipe
= usbhsg_uep_to_pipe(dcp
);
372 struct device
*dev
= usbhsg_gpriv_to_dev(gpriv
);
373 struct usb_ctrlrequest ctrl
;
374 struct usbhsg_recip_handle
*recip_handler
= NULL
;
375 int stage
= usbhs_status_get_ctrl_stage(irq_state
);
378 dev_dbg(dev
, "stage = %d\n", stage
);
384 * - "Interrupt Function"
385 * - "Control Transfer Stage Transition Interrupt"
386 * - Fig. "Control Transfer Stage Transitions"
390 case READ_DATA_STAGE
:
391 dcp
->handler
= &usbhs_fifo_pio_push_handler
;
393 case WRITE_DATA_STAGE
:
394 dcp
->handler
= &usbhs_fifo_pio_pop_handler
;
396 case NODATA_STATUS_STAGE
:
397 dcp
->handler
= &usbhs_ctrl_stage_end_handler
;
406 usbhs_usbreq_get_val(priv
, &ctrl
);
408 switch (ctrl
.bRequestType
& USB_TYPE_MASK
) {
409 case USB_TYPE_STANDARD
:
410 switch (ctrl
.bRequest
) {
411 case USB_REQ_CLEAR_FEATURE
:
412 recip_handler
= &req_clear_feature
;
418 * setup stage / run recip
421 ret
= usbhsg_recip_run_handle(priv
, recip_handler
, &ctrl
);
423 ret
= gpriv
->driver
->setup(&gpriv
->gadget
, &ctrl
);
426 usbhs_pipe_stall(pipe
);
436 static int usbhsg_pipe_disable(struct usbhsg_uep
*uep
)
438 struct usbhs_pipe
*pipe
= usbhsg_uep_to_pipe(uep
);
439 struct usbhs_pkt
*pkt
;
441 usbhs_pipe_disable(pipe
);
444 pkt
= usbhs_pkt_pop(pipe
, NULL
);
452 static void usbhsg_uep_init(struct usbhsg_gpriv
*gpriv
)
455 struct usbhsg_uep
*uep
;
457 usbhsg_for_each_uep_with_dcp(uep
, gpriv
, i
)
466 static int usbhsg_ep_enable(struct usb_ep
*ep
,
467 const struct usb_endpoint_descriptor
*desc
)
469 struct usbhsg_uep
*uep
= usbhsg_ep_to_uep(ep
);
470 struct usbhsg_gpriv
*gpriv
= usbhsg_uep_to_gpriv(uep
);
471 struct usbhs_priv
*priv
= usbhsg_gpriv_to_priv(gpriv
);
472 struct usbhs_pipe
*pipe
;
476 * if it already have pipe,
480 usbhs_pipe_clear(uep
->pipe
);
481 usbhs_pipe_clear_sequence(uep
->pipe
);
485 pipe
= usbhs_pipe_malloc(priv
, desc
);
488 pipe
->mod_private
= uep
;
491 * usbhs_fifo_dma_push/pop_handler try to
492 * use dmaengine if possible.
493 * It will use pio handler if impossible.
495 if (usb_endpoint_dir_in(desc
))
496 uep
->handler
= &usbhs_fifo_dma_push_handler
;
498 uep
->handler
= &usbhs_fifo_dma_pop_handler
;
506 static int usbhsg_ep_disable(struct usb_ep
*ep
)
508 struct usbhsg_uep
*uep
= usbhsg_ep_to_uep(ep
);
510 return usbhsg_pipe_disable(uep
);
513 static struct usb_request
*usbhsg_ep_alloc_request(struct usb_ep
*ep
,
516 struct usbhsg_request
*ureq
;
518 ureq
= kzalloc(sizeof *ureq
, gfp_flags
);
522 usbhs_pkt_init(usbhsg_ureq_to_pkt(ureq
));
524 ureq
->req
.dma
= DMA_ADDR_INVALID
;
529 static void usbhsg_ep_free_request(struct usb_ep
*ep
,
530 struct usb_request
*req
)
532 struct usbhsg_request
*ureq
= usbhsg_req_to_ureq(req
);
534 WARN_ON(!list_empty(&ureq
->pkt
.node
));
538 static int usbhsg_ep_queue(struct usb_ep
*ep
, struct usb_request
*req
,
541 struct usbhsg_uep
*uep
= usbhsg_ep_to_uep(ep
);
542 struct usbhsg_gpriv
*gpriv
= usbhsg_uep_to_gpriv(uep
);
543 struct usbhsg_request
*ureq
= usbhsg_req_to_ureq(req
);
544 struct usbhs_pipe
*pipe
= usbhsg_uep_to_pipe(uep
);
547 if (usbhsg_is_not_connected(gpriv
) ||
548 unlikely(!gpriv
->driver
) ||
552 usbhsg_queue_push(uep
, ureq
);
557 static int usbhsg_ep_dequeue(struct usb_ep
*ep
, struct usb_request
*req
)
559 struct usbhsg_uep
*uep
= usbhsg_ep_to_uep(ep
);
560 struct usbhsg_request
*ureq
= usbhsg_req_to_ureq(req
);
561 struct usbhs_pipe
*pipe
= usbhsg_uep_to_pipe(uep
);
563 usbhs_pkt_pop(pipe
, usbhsg_ureq_to_pkt(ureq
));
564 usbhsg_queue_pop(uep
, ureq
, -ECONNRESET
);
569 static int __usbhsg_ep_set_halt_wedge(struct usb_ep
*ep
, int halt
, int wedge
)
571 struct usbhsg_uep
*uep
= usbhsg_ep_to_uep(ep
);
572 struct usbhs_pipe
*pipe
= usbhsg_uep_to_pipe(uep
);
573 struct usbhsg_gpriv
*gpriv
= usbhsg_uep_to_gpriv(uep
);
574 struct usbhs_priv
*priv
= usbhsg_gpriv_to_priv(gpriv
);
575 struct device
*dev
= usbhsg_gpriv_to_dev(gpriv
);
578 usbhsg_pipe_disable(uep
);
580 dev_dbg(dev
, "set halt %d (pipe %d)\n",
581 halt
, usbhs_pipe_number(pipe
));
583 /******************** spin lock ********************/
584 usbhs_lock(priv
, flags
);
587 usbhs_pipe_stall(pipe
);
589 usbhs_pipe_disable(pipe
);
592 usbhsg_status_set(gpriv
, USBHSG_STATUS_WEDGE
);
594 usbhsg_status_clr(gpriv
, USBHSG_STATUS_WEDGE
);
596 usbhs_unlock(priv
, flags
);
597 /******************** spin unlock ******************/
602 static int usbhsg_ep_set_halt(struct usb_ep
*ep
, int value
)
604 return __usbhsg_ep_set_halt_wedge(ep
, value
, 0);
607 static int usbhsg_ep_set_wedge(struct usb_ep
*ep
)
609 return __usbhsg_ep_set_halt_wedge(ep
, 1, 1);
612 static struct usb_ep_ops usbhsg_ep_ops
= {
613 .enable
= usbhsg_ep_enable
,
614 .disable
= usbhsg_ep_disable
,
616 .alloc_request
= usbhsg_ep_alloc_request
,
617 .free_request
= usbhsg_ep_free_request
,
619 .queue
= usbhsg_ep_queue
,
620 .dequeue
= usbhsg_ep_dequeue
,
622 .set_halt
= usbhsg_ep_set_halt
,
623 .set_wedge
= usbhsg_ep_set_wedge
,
627 * usb module start/end
629 static int usbhsg_try_start(struct usbhs_priv
*priv
, u32 status
)
631 struct usbhsg_gpriv
*gpriv
= usbhsg_priv_to_gpriv(priv
);
632 struct usbhsg_uep
*dcp
= usbhsg_gpriv_to_dcp(gpriv
);
633 struct usbhs_mod
*mod
= usbhs_mod_get_current(priv
);
634 struct device
*dev
= usbhs_priv_to_dev(priv
);
638 /******************** spin lock ********************/
639 usbhs_lock(priv
, flags
);
641 usbhsg_status_set(gpriv
, status
);
642 if (!(usbhsg_status_has(gpriv
, USBHSG_STATUS_STARTED
) &&
643 usbhsg_status_has(gpriv
, USBHSG_STATUS_REGISTERD
)))
644 ret
= -1; /* not ready */
646 usbhs_unlock(priv
, flags
);
647 /******************** spin unlock ********************/
650 return 0; /* not ready is not error */
653 * enable interrupt and systems if ready
655 dev_dbg(dev
, "start gadget\n");
658 * pipe initialize and enable DCP
660 usbhs_pipe_init(priv
,
662 usbhsg_dma_map_ctrl
);
663 usbhs_fifo_init(priv
);
664 usbhsg_uep_init(gpriv
);
667 dcp
->pipe
= usbhs_dcp_malloc(priv
);
668 dcp
->pipe
->mod_private
= dcp
;
671 * system config enble
676 usbhs_sys_hispeed_ctrl(priv
, 1);
677 usbhs_sys_function_ctrl(priv
, 1);
678 usbhs_sys_usb_ctrl(priv
, 1);
681 * enable irq callback
683 mod
->irq_dev_state
= usbhsg_irq_dev_state
;
684 mod
->irq_ctrl_stage
= usbhsg_irq_ctrl_stage
;
685 usbhs_irq_callback_update(priv
, mod
);
690 static int usbhsg_try_stop(struct usbhs_priv
*priv
, u32 status
)
692 struct usbhsg_gpriv
*gpriv
= usbhsg_priv_to_gpriv(priv
);
693 struct usbhs_mod
*mod
= usbhs_mod_get_current(priv
);
694 struct usbhsg_uep
*dcp
= usbhsg_gpriv_to_dcp(gpriv
);
695 struct device
*dev
= usbhs_priv_to_dev(priv
);
699 /******************** spin lock ********************/
700 usbhs_lock(priv
, flags
);
702 usbhsg_status_clr(gpriv
, status
);
703 if (!usbhsg_status_has(gpriv
, USBHSG_STATUS_STARTED
) &&
704 !usbhsg_status_has(gpriv
, USBHSG_STATUS_REGISTERD
))
705 ret
= -1; /* already done */
707 usbhs_unlock(priv
, flags
);
708 /******************** spin unlock ********************/
711 return 0; /* already done is not error */
714 * disable interrupt and systems if 1st try
716 usbhs_fifo_quit(priv
);
718 /* disable all irq */
719 mod
->irq_dev_state
= NULL
;
720 mod
->irq_ctrl_stage
= NULL
;
721 usbhs_irq_callback_update(priv
, mod
);
723 gpriv
->gadget
.speed
= USB_SPEED_UNKNOWN
;
726 usbhs_sys_hispeed_ctrl(priv
, 0);
727 usbhs_sys_function_ctrl(priv
, 0);
728 usbhs_sys_usb_ctrl(priv
, 0);
730 usbhsg_pipe_disable(dcp
);
733 gpriv
->driver
->disconnect
)
734 gpriv
->driver
->disconnect(&gpriv
->gadget
);
736 dev_dbg(dev
, "stop gadget\n");
746 static int usbhsg_gadget_start(struct usb_gadget_driver
*driver
,
747 int (*bind
)(struct usb_gadget
*))
749 struct usbhsg_gpriv
*gpriv
;
750 struct usbhs_priv
*priv
;
757 driver
->speed
!= USB_SPEED_HIGH
)
761 * find unused controller
763 usbhsg_for_each_controller(gpriv
) {
765 goto find_unused_controller
;
769 find_unused_controller
:
771 dev
= usbhsg_gpriv_to_dev(gpriv
);
772 priv
= usbhsg_gpriv_to_priv(gpriv
);
774 /* first hook up the driver ... */
775 gpriv
->driver
= driver
;
776 gpriv
->gadget
.dev
.driver
= &driver
->driver
;
778 ret
= device_add(&gpriv
->gadget
.dev
);
780 dev_err(dev
, "device_add error %d\n", ret
);
784 ret
= bind(&gpriv
->gadget
);
786 dev_err(dev
, "bind to driver %s error %d\n",
787 driver
->driver
.name
, ret
);
791 dev_dbg(dev
, "bind %s\n", driver
->driver
.name
);
793 return usbhsg_try_start(priv
, USBHSG_STATUS_REGISTERD
);
796 device_del(&gpriv
->gadget
.dev
);
798 gpriv
->driver
= NULL
;
799 gpriv
->gadget
.dev
.driver
= NULL
;
804 static int usbhsg_gadget_stop(struct usb_gadget_driver
*driver
)
806 struct usbhsg_gpriv
*gpriv
;
807 struct usbhs_priv
*priv
;
817 usbhsg_for_each_controller(gpriv
) {
818 if (gpriv
->driver
== driver
)
819 goto find_matching_controller
;
823 find_matching_controller
:
825 dev
= usbhsg_gpriv_to_dev(gpriv
);
826 priv
= usbhsg_gpriv_to_priv(gpriv
);
828 usbhsg_try_stop(priv
, USBHSG_STATUS_REGISTERD
);
829 device_del(&gpriv
->gadget
.dev
);
830 gpriv
->driver
= NULL
;
832 if (driver
->disconnect
)
833 driver
->disconnect(&gpriv
->gadget
);
835 driver
->unbind(&gpriv
->gadget
);
836 dev_dbg(dev
, "unbind %s\n", driver
->driver
.name
);
844 static int usbhsg_get_frame(struct usb_gadget
*gadget
)
846 struct usbhsg_gpriv
*gpriv
= usbhsg_gadget_to_gpriv(gadget
);
847 struct usbhs_priv
*priv
= usbhsg_gpriv_to_priv(gpriv
);
849 return usbhs_frame_get_num(priv
);
852 static struct usb_gadget_ops usbhsg_gadget_ops
= {
853 .get_frame
= usbhsg_get_frame
,
854 .start
= usbhsg_gadget_start
,
855 .stop
= usbhsg_gadget_stop
,
858 static int usbhsg_start(struct usbhs_priv
*priv
)
860 return usbhsg_try_start(priv
, USBHSG_STATUS_STARTED
);
863 static int usbhsg_stop(struct usbhs_priv
*priv
)
865 return usbhsg_try_stop(priv
, USBHSG_STATUS_STARTED
);
868 int __devinit
usbhs_mod_gadget_probe(struct usbhs_priv
*priv
)
870 struct usbhsg_gpriv
*gpriv
;
871 struct usbhsg_uep
*uep
;
872 struct device
*dev
= usbhs_priv_to_dev(priv
);
873 int pipe_size
= usbhs_get_dparam(priv
, pipe_size
);
877 gpriv
= kzalloc(sizeof(struct usbhsg_gpriv
), GFP_KERNEL
);
879 dev_err(dev
, "Could not allocate gadget priv\n");
883 uep
= kzalloc(sizeof(struct usbhsg_uep
) * pipe_size
, GFP_KERNEL
);
885 dev_err(dev
, "Could not allocate ep\n");
887 goto usbhs_mod_gadget_probe_err_gpriv
;
893 * There is no guarantee that it is possible to access usb module here.
894 * Don't accesses to it.
895 * The accesse will be enable after "usbhsg_start"
901 usbhs_mod_register(priv
, &gpriv
->mod
, USBHS_GADGET
);
904 gpriv
->mod
.name
= "gadget";
905 gpriv
->mod
.start
= usbhsg_start
;
906 gpriv
->mod
.stop
= usbhsg_stop
;
908 gpriv
->uep_size
= pipe_size
;
909 usbhsg_status_init(gpriv
);
914 device_initialize(&gpriv
->gadget
.dev
);
915 dev_set_name(&gpriv
->gadget
.dev
, "gadget");
916 gpriv
->gadget
.dev
.parent
= dev
;
917 gpriv
->gadget
.name
= "renesas_usbhs_udc";
918 gpriv
->gadget
.ops
= &usbhsg_gadget_ops
;
919 gpriv
->gadget
.is_dualspeed
= 1;
921 INIT_LIST_HEAD(&gpriv
->gadget
.ep_list
);
926 usbhsg_for_each_uep_with_dcp(uep
, gpriv
, i
) {
928 snprintf(uep
->ep_name
, EP_NAME_SIZE
, "ep%d", i
);
930 uep
->ep
.name
= uep
->ep_name
;
931 uep
->ep
.ops
= &usbhsg_ep_ops
;
932 INIT_LIST_HEAD(&uep
->ep
.ep_list
);
935 if (usbhsg_is_dcp(uep
)) {
936 gpriv
->gadget
.ep0
= &uep
->ep
;
937 uep
->ep
.maxpacket
= 64;
939 /* init normal pipe */
941 uep
->ep
.maxpacket
= 512;
942 list_add_tail(&uep
->ep
.ep_list
, &gpriv
->gadget
.ep_list
);
946 usbhsg_controller_register(gpriv
);
948 ret
= usb_add_gadget_udc(dev
, &gpriv
->gadget
);
953 dev_info(dev
, "gadget probed\n");
959 usbhs_mod_gadget_probe_err_gpriv
:
965 void __devexit
usbhs_mod_gadget_remove(struct usbhs_priv
*priv
)
967 struct usbhsg_gpriv
*gpriv
= usbhsg_priv_to_gpriv(priv
);
969 usb_del_gadget_udc(&gpriv
->gadget
);
971 usbhsg_controller_unregister(gpriv
);