blob: 563128531e659ce8f1b4c165d823eaeacb0e0e13 [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);
168
169 dev_dbg(dev, "pipe %d : queue push (%d)\n",
170 usbhs_pipe_number(pipe),
171 req->length);
172}
173
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700174/*
175 * dma map/unmap
176 */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900177static int usbhsg_dma_map(struct device *dev,
178 struct usbhs_pkt *pkt,
179 enum dma_data_direction dir)
180{
181 struct usbhsg_request *ureq = usbhsg_pkt_to_ureq(pkt);
182 struct usb_request *req = &ureq->req;
183
184 if (pkt->dma != DMA_ADDR_INVALID) {
185 dev_err(dev, "dma is already mapped\n");
186 return -EIO;
187 }
188
189 if (req->dma == DMA_ADDR_INVALID) {
190 pkt->dma = dma_map_single(dev, pkt->buf, pkt->length, dir);
191 } else {
192 dma_sync_single_for_device(dev, req->dma, req->length, dir);
193 pkt->dma = req->dma;
194 }
195
196 if (dma_mapping_error(dev, pkt->dma)) {
197 dev_err(dev, "dma mapping error %x\n", pkt->dma);
198 return -EIO;
199 }
200
201 return 0;
202}
203
204static int usbhsg_dma_unmap(struct device *dev,
205 struct usbhs_pkt *pkt,
206 enum dma_data_direction dir)
207{
208 struct usbhsg_request *ureq = usbhsg_pkt_to_ureq(pkt);
209 struct usb_request *req = &ureq->req;
210
211 if (pkt->dma == DMA_ADDR_INVALID) {
212 dev_err(dev, "dma is not mapped\n");
213 return -EIO;
214 }
215
216 if (req->dma == DMA_ADDR_INVALID)
217 dma_unmap_single(dev, pkt->dma, pkt->length, dir);
218 else
219 dma_sync_single_for_cpu(dev, req->dma, req->length, dir);
220
221 pkt->dma = DMA_ADDR_INVALID;
222
223 return 0;
224}
225
226static int usbhsg_dma_map_ctrl(struct usbhs_pkt *pkt, int map)
227{
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;
233
234 dir = usbhs_pipe_is_dir_in(pipe) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
235
236 if (map)
237 return usbhsg_dma_map(dev, pkt, dir);
238 else
239 return usbhsg_dma_unmap(dev, pkt, dir);
240}
241
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900242/*
243 * USB_TYPE_STANDARD / clear feature functions
244 */
245static int usbhsg_recip_handler_std_control_done(struct usbhs_priv *priv,
246 struct usbhsg_uep *uep,
247 struct usb_ctrlrequest *ctrl)
248{
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);
252
253 usbhs_dcp_control_transfer_done(pipe);
254
255 return 0;
256}
257
258static int usbhsg_recip_handler_std_clear_endpoint(struct usbhs_priv *priv,
259 struct usbhsg_uep *uep,
260 struct usb_ctrlrequest *ctrl)
261{
262 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
263 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
264
265 if (!usbhsg_status_has(gpriv, USBHSG_STATUS_WEDGE)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900266 usbhs_pipe_disable(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900267 usbhs_pipe_clear_sequence(pipe);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900268 usbhs_pipe_enable(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900269 }
270
271 usbhsg_recip_handler_std_control_done(priv, uep, ctrl);
272
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900273 return 0;
274}
275
276struct 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,
281};
282
283/*
284 * USB_TYPE handler
285 */
286static int usbhsg_recip_run_handle(struct usbhs_priv *priv,
287 struct usbhsg_recip_handle *handler,
288 struct usb_ctrlrequest *ctrl)
289{
290 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
291 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
292 struct usbhsg_uep *uep;
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900293 struct usbhs_pipe *pipe;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900294 int recip = ctrl->bRequestType & USB_RECIP_MASK;
295 int nth = le16_to_cpu(ctrl->wIndex) & USB_ENDPOINT_NUMBER_MASK;
296 int ret;
297 int (*func)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
298 struct usb_ctrlrequest *ctrl);
299 char *msg;
300
301 uep = usbhsg_gpriv_to_nth_uep(gpriv, nth);
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900302 pipe = usbhsg_uep_to_pipe(uep);
303 if (!pipe) {
Kuninori Morimoto9a28b7b2011-04-21 14:10:12 +0900304 dev_err(dev, "wrong recip request\n");
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900305 ret = -EINVAL;
306 goto usbhsg_recip_run_handle_end;
Kuninori Morimoto9a28b7b2011-04-21 14:10:12 +0900307 }
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900308
309 switch (recip) {
310 case USB_RECIP_DEVICE:
311 msg = "DEVICE";
312 func = handler->device;
313 break;
314 case USB_RECIP_INTERFACE:
315 msg = "INTERFACE";
316 func = handler->interface;
317 break;
318 case USB_RECIP_ENDPOINT:
319 msg = "ENDPOINT";
320 func = handler->endpoint;
321 break;
322 default:
323 dev_warn(dev, "unsupported RECIP(%d)\n", recip);
324 func = NULL;
325 ret = -EINVAL;
326 }
327
328 if (func) {
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900329 unsigned long flags;
330
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900331 dev_dbg(dev, "%s (pipe %d :%s)\n", handler->name, nth, msg);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900332
333 /******************** spin lock ********************/
334 usbhs_lock(priv, flags);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900335 ret = func(priv, uep, ctrl);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900336 usbhs_unlock(priv, flags);
337 /******************** spin unlock ******************/
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900338 }
339
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900340usbhsg_recip_run_handle_end:
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900341 usbhs_pkt_start(pipe);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900342
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900343 return ret;
344}
345
346/*
347 * irq functions
348 *
349 * it will be called from usbhs_interrupt
350 */
351static int usbhsg_irq_dev_state(struct usbhs_priv *priv,
352 struct usbhs_irq_state *irq_state)
353{
354 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
355 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
356
Kuninori Morimoto75587f52011-10-10 22:01:51 -0700357 gpriv->gadget.speed = usbhs_bus_get_speed(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900358
359 dev_dbg(dev, "state = %x : speed : %d\n",
360 usbhs_status_get_device_state(irq_state),
361 gpriv->gadget.speed);
362
363 return 0;
364}
365
366static int usbhsg_irq_ctrl_stage(struct usbhs_priv *priv,
367 struct usbhs_irq_state *irq_state)
368{
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);
376 int ret = 0;
377
378 dev_dbg(dev, "stage = %d\n", stage);
379
380 /*
381 * see Manual
382 *
383 * "Operation"
384 * - "Interrupt Function"
385 * - "Control Transfer Stage Transition Interrupt"
386 * - Fig. "Control Transfer Stage Transitions"
387 */
388
389 switch (stage) {
390 case READ_DATA_STAGE:
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700391 pipe->handler = &usbhs_fifo_pio_push_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900392 break;
393 case WRITE_DATA_STAGE:
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700394 pipe->handler = &usbhs_fifo_pio_pop_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900395 break;
396 case NODATA_STATUS_STAGE:
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700397 pipe->handler = &usbhs_ctrl_stage_end_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900398 break;
399 default:
400 return ret;
401 }
402
403 /*
404 * get usb request
405 */
406 usbhs_usbreq_get_val(priv, &ctrl);
407
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;
413 break;
414 }
415 }
416
417 /*
418 * setup stage / run recip
419 */
420 if (recip_handler)
421 ret = usbhsg_recip_run_handle(priv, recip_handler, &ctrl);
422 else
423 ret = gpriv->driver->setup(&gpriv->gadget, &ctrl);
424
425 if (ret < 0)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900426 usbhs_pipe_stall(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900427
428 return ret;
429}
430
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900431/*
432 *
433 * usb_dcp_ops
434 *
435 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900436static int usbhsg_pipe_disable(struct usbhsg_uep *uep)
437{
438 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
Kuninori Morimoto8a2c2252011-06-06 14:18:33 +0900439 struct usbhs_pkt *pkt;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900440
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900441 usbhs_pipe_disable(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900442
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900443 while (1) {
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900444 pkt = usbhs_pkt_pop(pipe, NULL);
Kuninori Morimoto8a2c2252011-06-06 14:18:33 +0900445 if (!pkt)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900446 break;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900447 }
448
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900449 return 0;
450}
451
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900452static void usbhsg_uep_init(struct usbhsg_gpriv *gpriv)
453{
454 int i;
455 struct usbhsg_uep *uep;
456
457 usbhsg_for_each_uep_with_dcp(uep, gpriv, i)
458 uep->pipe = NULL;
459}
460
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900461/*
462 *
463 * usb_ep_ops
464 *
465 */
466static int usbhsg_ep_enable(struct usb_ep *ep,
467 const struct usb_endpoint_descriptor *desc)
468{
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;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900473 int ret = -EIO;
474
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900475 /*
476 * if it already have pipe,
477 * nothing to do
478 */
Kuninori Morimoto08e6c612011-06-09 16:48:25 +0900479 if (uep->pipe) {
480 usbhs_pipe_clear(uep->pipe);
481 usbhs_pipe_clear_sequence(uep->pipe);
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900482 return 0;
Kuninori Morimoto08e6c612011-06-09 16:48:25 +0900483 }
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900484
Kuninori Morimotof5aa8892011-10-10 21:59:46 -0700485 pipe = usbhs_pipe_malloc(priv,
486 usb_endpoint_type(desc),
487 usb_endpoint_dir_in(desc));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900488 if (pipe) {
489 uep->pipe = pipe;
490 pipe->mod_private = uep;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900491
Kuninori Morimotof5aa8892011-10-10 21:59:46 -0700492 /* set epnum / maxp */
Kuninori Morimotobc6fbf52011-10-10 22:04:00 -0700493 usbhs_pipe_config_update(pipe, 0,
Kuninori Morimotof5aa8892011-10-10 21:59:46 -0700494 usb_endpoint_num(desc),
495 usb_endpoint_maxp(desc));
496
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700497 /*
498 * usbhs_fifo_dma_push/pop_handler try to
499 * use dmaengine if possible.
500 * It will use pio handler if impossible.
501 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900502 if (usb_endpoint_dir_in(desc))
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700503 pipe->handler = &usbhs_fifo_dma_push_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900504 else
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700505 pipe->handler = &usbhs_fifo_dma_pop_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900506
507 ret = 0;
508 }
Kuninori Morimotocb966322011-04-21 14:10:08 +0900509
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900510 return ret;
511}
512
513static int usbhsg_ep_disable(struct usb_ep *ep)
514{
515 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900516
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900517 return usbhsg_pipe_disable(uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900518}
519
520static struct usb_request *usbhsg_ep_alloc_request(struct usb_ep *ep,
521 gfp_t gfp_flags)
522{
523 struct usbhsg_request *ureq;
524
525 ureq = kzalloc(sizeof *ureq, gfp_flags);
526 if (!ureq)
527 return NULL;
528
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900529 usbhs_pkt_init(usbhsg_ureq_to_pkt(ureq));
530
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900531 ureq->req.dma = DMA_ADDR_INVALID;
532
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900533 return &ureq->req;
534}
535
536static void usbhsg_ep_free_request(struct usb_ep *ep,
537 struct usb_request *req)
538{
539 struct usbhsg_request *ureq = usbhsg_req_to_ureq(req);
540
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900541 WARN_ON(!list_empty(&ureq->pkt.node));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900542 kfree(ureq);
543}
544
545static int usbhsg_ep_queue(struct usb_ep *ep, struct usb_request *req,
546 gfp_t gfp_flags)
547{
548 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
549 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
550 struct usbhsg_request *ureq = usbhsg_req_to_ureq(req);
551 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900552
553 /* param check */
554 if (usbhsg_is_not_connected(gpriv) ||
555 unlikely(!gpriv->driver) ||
556 unlikely(!pipe))
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900557 return -ESHUTDOWN;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900558
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900559 usbhsg_queue_push(uep, ureq);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900560
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900561 return 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900562}
563
564static int usbhsg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
565{
566 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
567 struct usbhsg_request *ureq = usbhsg_req_to_ureq(req);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900568 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900569
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900570 usbhs_pkt_pop(pipe, usbhsg_ureq_to_pkt(ureq));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900571 usbhsg_queue_pop(uep, ureq, -ECONNRESET);
572
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900573 return 0;
574}
575
576static int __usbhsg_ep_set_halt_wedge(struct usb_ep *ep, int halt, int wedge)
577{
578 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
579 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
580 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900581 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900582 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900583 unsigned long flags;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900584
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900585 usbhsg_pipe_disable(uep);
586
587 dev_dbg(dev, "set halt %d (pipe %d)\n",
588 halt, usbhs_pipe_number(pipe));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900589
590 /******************** spin lock ********************/
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900591 usbhs_lock(priv, flags);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900592
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900593 if (halt)
594 usbhs_pipe_stall(pipe);
595 else
596 usbhs_pipe_disable(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900597
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900598 if (halt && wedge)
599 usbhsg_status_set(gpriv, USBHSG_STATUS_WEDGE);
600 else
601 usbhsg_status_clr(gpriv, USBHSG_STATUS_WEDGE);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900602
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900603 usbhs_unlock(priv, flags);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900604 /******************** spin unlock ******************/
605
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900606 return 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900607}
608
609static int usbhsg_ep_set_halt(struct usb_ep *ep, int value)
610{
611 return __usbhsg_ep_set_halt_wedge(ep, value, 0);
612}
613
614static int usbhsg_ep_set_wedge(struct usb_ep *ep)
615{
616 return __usbhsg_ep_set_halt_wedge(ep, 1, 1);
617}
618
619static struct usb_ep_ops usbhsg_ep_ops = {
620 .enable = usbhsg_ep_enable,
621 .disable = usbhsg_ep_disable,
622
623 .alloc_request = usbhsg_ep_alloc_request,
624 .free_request = usbhsg_ep_free_request,
625
626 .queue = usbhsg_ep_queue,
627 .dequeue = usbhsg_ep_dequeue,
628
629 .set_halt = usbhsg_ep_set_halt,
630 .set_wedge = usbhsg_ep_set_wedge,
631};
632
633/*
634 * usb module start/end
635 */
636static int usbhsg_try_start(struct usbhs_priv *priv, u32 status)
637{
638 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
639 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
640 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
641 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900642 unsigned long flags;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900643 int ret = 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900644
645 /******************** spin lock ********************/
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900646 usbhs_lock(priv, flags);
647
648 usbhsg_status_set(gpriv, status);
649 if (!(usbhsg_status_has(gpriv, USBHSG_STATUS_STARTED) &&
650 usbhsg_status_has(gpriv, USBHSG_STATUS_REGISTERD)))
651 ret = -1; /* not ready */
652
653 usbhs_unlock(priv, flags);
654 /******************** spin unlock ********************/
655
656 if (ret < 0)
657 return 0; /* not ready is not error */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900658
659 /*
660 * enable interrupt and systems if ready
661 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900662 dev_dbg(dev, "start gadget\n");
663
664 /*
665 * pipe initialize and enable DCP
666 */
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900667 usbhs_pipe_init(priv,
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900668 usbhsg_dma_map_ctrl);
Kuninori Morimotodad67392011-06-06 14:18:28 +0900669 usbhs_fifo_init(priv);
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900670 usbhsg_uep_init(gpriv);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900671
672 /* dcp init */
673 dcp->pipe = usbhs_dcp_malloc(priv);
674 dcp->pipe->mod_private = dcp;
Kuninori Morimotobc6fbf52011-10-10 22:04:00 -0700675 usbhs_pipe_config_update(dcp->pipe, 0, 0, 64);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900676
677 /*
678 * system config enble
679 * - HI speed
680 * - function
681 * - usb module
682 */
683 usbhs_sys_hispeed_ctrl(priv, 1);
684 usbhs_sys_function_ctrl(priv, 1);
685 usbhs_sys_usb_ctrl(priv, 1);
686
687 /*
688 * enable irq callback
689 */
690 mod->irq_dev_state = usbhsg_irq_dev_state;
691 mod->irq_ctrl_stage = usbhsg_irq_ctrl_stage;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900692 usbhs_irq_callback_update(priv, mod);
693
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900694 return 0;
695}
696
697static int usbhsg_try_stop(struct usbhs_priv *priv, u32 status)
698{
699 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
700 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
701 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
702 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900703 unsigned long flags;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900704 int ret = 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900705
706 /******************** spin lock ********************/
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900707 usbhs_lock(priv, flags);
708
709 usbhsg_status_clr(gpriv, status);
710 if (!usbhsg_status_has(gpriv, USBHSG_STATUS_STARTED) &&
711 !usbhsg_status_has(gpriv, USBHSG_STATUS_REGISTERD))
712 ret = -1; /* already done */
713
714 usbhs_unlock(priv, flags);
715 /******************** spin unlock ********************/
716
717 if (ret < 0)
718 return 0; /* already done is not error */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900719
720 /*
721 * disable interrupt and systems if 1st try
722 */
Kuninori Morimotodad67392011-06-06 14:18:28 +0900723 usbhs_fifo_quit(priv);
724
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900725 /* disable all irq */
726 mod->irq_dev_state = NULL;
727 mod->irq_ctrl_stage = NULL;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900728 usbhs_irq_callback_update(priv, mod);
729
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900730 gpriv->gadget.speed = USB_SPEED_UNKNOWN;
731
732 /* disable sys */
733 usbhs_sys_hispeed_ctrl(priv, 0);
734 usbhs_sys_function_ctrl(priv, 0);
735 usbhs_sys_usb_ctrl(priv, 0);
736
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900737 usbhsg_pipe_disable(dcp);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900738
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900739 dev_dbg(dev, "stop gadget\n");
740
741 return 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900742}
743
744/*
745 *
746 * linux usb function
747 *
748 */
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300749static int usbhsg_gadget_start(struct usb_gadget *gadget,
750 struct usb_gadget_driver *driver)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900751{
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300752 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900753 struct usbhs_priv *priv;
754 struct device *dev;
755 int ret;
756
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300757 if (!driver ||
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900758 !driver->setup ||
759 driver->speed != USB_SPEED_HIGH)
760 return -EINVAL;
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700761
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900762 dev = usbhsg_gpriv_to_dev(gpriv);
763 priv = usbhsg_gpriv_to_priv(gpriv);
764
765 /* first hook up the driver ... */
766 gpriv->driver = driver;
767 gpriv->gadget.dev.driver = &driver->driver;
768
769 ret = device_add(&gpriv->gadget.dev);
770 if (ret) {
771 dev_err(dev, "device_add error %d\n", ret);
772 goto add_fail;
773 }
774
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900775 return usbhsg_try_start(priv, USBHSG_STATUS_REGISTERD);
776
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900777add_fail:
778 gpriv->driver = NULL;
779 gpriv->gadget.dev.driver = NULL;
780
781 return ret;
782}
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900783
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300784static int usbhsg_gadget_stop(struct usb_gadget *gadget,
785 struct usb_gadget_driver *driver)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900786{
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300787 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900788 struct usbhs_priv *priv;
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700789 struct device *dev;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900790
791 if (!driver ||
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700792 !driver->unbind)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900793 return -EINVAL;
794
795 dev = usbhsg_gpriv_to_dev(gpriv);
796 priv = usbhsg_gpriv_to_priv(gpriv);
797
798 usbhsg_try_stop(priv, USBHSG_STATUS_REGISTERD);
799 device_del(&gpriv->gadget.dev);
800 gpriv->driver = NULL;
801
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900802 return 0;
803}
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900804
805/*
806 * usb gadget ops
807 */
808static int usbhsg_get_frame(struct usb_gadget *gadget)
809{
810 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
811 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
812
813 return usbhs_frame_get_num(priv);
814}
815
816static struct usb_gadget_ops usbhsg_gadget_ops = {
817 .get_frame = usbhsg_get_frame,
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300818 .udc_start = usbhsg_gadget_start,
819 .udc_stop = usbhsg_gadget_stop,
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900820};
821
822static int usbhsg_start(struct usbhs_priv *priv)
823{
824 return usbhsg_try_start(priv, USBHSG_STATUS_STARTED);
825}
826
827static int usbhsg_stop(struct usbhs_priv *priv)
828{
829 return usbhsg_try_stop(priv, USBHSG_STATUS_STARTED);
830}
831
832int __devinit usbhs_mod_gadget_probe(struct usbhs_priv *priv)
833{
834 struct usbhsg_gpriv *gpriv;
835 struct usbhsg_uep *uep;
836 struct device *dev = usbhs_priv_to_dev(priv);
837 int pipe_size = usbhs_get_dparam(priv, pipe_size);
838 int i;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300839 int ret;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900840
841 gpriv = kzalloc(sizeof(struct usbhsg_gpriv), GFP_KERNEL);
842 if (!gpriv) {
843 dev_err(dev, "Could not allocate gadget priv\n");
844 return -ENOMEM;
845 }
846
847 uep = kzalloc(sizeof(struct usbhsg_uep) * pipe_size, GFP_KERNEL);
848 if (!uep) {
849 dev_err(dev, "Could not allocate ep\n");
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300850 ret = -ENOMEM;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900851 goto usbhs_mod_gadget_probe_err_gpriv;
852 }
853
854 /*
855 * CAUTION
856 *
857 * There is no guarantee that it is possible to access usb module here.
858 * Don't accesses to it.
859 * The accesse will be enable after "usbhsg_start"
860 */
861
862 /*
863 * register itself
864 */
865 usbhs_mod_register(priv, &gpriv->mod, USBHS_GADGET);
866
867 /* init gpriv */
868 gpriv->mod.name = "gadget";
869 gpriv->mod.start = usbhsg_start;
870 gpriv->mod.stop = usbhsg_stop;
871 gpriv->uep = uep;
872 gpriv->uep_size = pipe_size;
873 usbhsg_status_init(gpriv);
874
875 /*
876 * init gadget
877 */
878 device_initialize(&gpriv->gadget.dev);
879 dev_set_name(&gpriv->gadget.dev, "gadget");
880 gpriv->gadget.dev.parent = dev;
881 gpriv->gadget.name = "renesas_usbhs_udc";
882 gpriv->gadget.ops = &usbhsg_gadget_ops;
883 gpriv->gadget.is_dualspeed = 1;
884
885 INIT_LIST_HEAD(&gpriv->gadget.ep_list);
886
887 /*
888 * init usb_ep
889 */
890 usbhsg_for_each_uep_with_dcp(uep, gpriv, i) {
891 uep->gpriv = gpriv;
892 snprintf(uep->ep_name, EP_NAME_SIZE, "ep%d", i);
893
894 uep->ep.name = uep->ep_name;
895 uep->ep.ops = &usbhsg_ep_ops;
896 INIT_LIST_HEAD(&uep->ep.ep_list);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900897
898 /* init DCP */
899 if (usbhsg_is_dcp(uep)) {
900 gpriv->gadget.ep0 = &uep->ep;
901 uep->ep.maxpacket = 64;
902 }
903 /* init normal pipe */
904 else {
905 uep->ep.maxpacket = 512;
906 list_add_tail(&uep->ep.ep_list, &gpriv->gadget.ep_list);
907 }
908 }
909
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700910 usbhsg_controller_register(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900911
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300912 ret = usb_add_gadget_udc(dev, &gpriv->gadget);
913 if (ret)
914 goto err_add_udc;
915
916
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900917 dev_info(dev, "gadget probed\n");
918
919 return 0;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300920err_add_udc:
921 kfree(gpriv->uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900922
923usbhs_mod_gadget_probe_err_gpriv:
924 kfree(gpriv);
925
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300926 return ret;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900927}
928
929void __devexit usbhs_mod_gadget_remove(struct usbhs_priv *priv)
930{
931 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
932
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +0300933 usb_del_gadget_udc(&gpriv->gadget);
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700934
935 usbhsg_controller_unregister(gpriv);
936
Sebastian Andrzej Siewior3af51ac2011-06-03 19:50:48 +0200937 kfree(gpriv->uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900938 kfree(gpriv);
939}