blob: d701ae643acecdf623ad60e9cc84ac1ca310a61d [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 Morimotodfbb7f42011-11-24 17:28:35 -080017#include <linux/delay.h>
Kuninori Morimotod128a2592011-08-03 21:41:26 -070018#include <linux/dma-mapping.h>
Kuninori Morimoto2f983822011-04-05 11:40:54 +090019#include <linux/io.h>
20#include <linux/module.h>
21#include <linux/platform_device.h>
22#include <linux/usb/ch9.h>
23#include <linux/usb/gadget.h>
Phil Edworthyb5a28752015-07-13 16:30:18 +010024#include <linux/usb/otg.h>
Kuninori Morimoto2f983822011-04-05 11:40:54 +090025#include "common.h"
26
27/*
28 * struct
29 */
30struct usbhsg_request {
31 struct usb_request req;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +090032 struct usbhs_pkt pkt;
Kuninori Morimoto2f983822011-04-05 11:40:54 +090033};
34
35#define EP_NAME_SIZE 8
36struct usbhsg_gpriv;
Kuninori Morimoto2f983822011-04-05 11:40:54 +090037struct usbhsg_uep {
38 struct usb_ep ep;
39 struct usbhs_pipe *pipe;
Kuninori Morimoto2f983822011-04-05 11:40:54 +090040
41 char ep_name[EP_NAME_SIZE];
42
43 struct usbhsg_gpriv *gpriv;
Kuninori Morimoto2f983822011-04-05 11:40:54 +090044};
45
46struct usbhsg_gpriv {
47 struct usb_gadget gadget;
48 struct usbhs_mod mod;
49
50 struct usbhsg_uep *uep;
51 int uep_size;
52
53 struct usb_gadget_driver *driver;
Phil Edworthyb5a28752015-07-13 16:30:18 +010054 struct usb_phy *transceiver;
55 bool vbus_active;
Kuninori Morimoto2f983822011-04-05 11:40:54 +090056
57 u32 status;
58#define USBHSG_STATUS_STARTED (1 << 0)
59#define USBHSG_STATUS_REGISTERD (1 << 1)
60#define USBHSG_STATUS_WEDGE (1 << 2)
Shimoda, Yoshihirocac402d2012-03-16 13:10:15 +090061#define USBHSG_STATUS_SELF_POWERED (1 << 3)
Takeshi Kihara04a5def2014-11-04 10:05:43 +090062#define USBHSG_STATUS_SOFT_CONNECT (1 << 4)
Kuninori Morimoto2f983822011-04-05 11:40:54 +090063};
64
Kuninori Morimoto2f983822011-04-05 11:40:54 +090065struct usbhsg_recip_handle {
66 char *name;
67 int (*device)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
68 struct usb_ctrlrequest *ctrl);
69 int (*interface)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
70 struct usb_ctrlrequest *ctrl);
71 int (*endpoint)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
72 struct usb_ctrlrequest *ctrl);
73};
74
75/*
76 * macro
77 */
78#define usbhsg_priv_to_gpriv(priv) \
79 container_of( \
80 usbhs_mod_get(priv, USBHS_GADGET), \
81 struct usbhsg_gpriv, mod)
82
83#define __usbhsg_for_each_uep(start, pos, g, i) \
Kuninori Morimoto925403f2013-07-11 22:32:31 -070084 for ((i) = start; \
85 ((i) < (g)->uep_size) && ((pos) = (g)->uep + (i)); \
86 (i)++)
Kuninori Morimoto2f983822011-04-05 11:40:54 +090087
88#define usbhsg_for_each_uep(pos, gpriv, i) \
89 __usbhsg_for_each_uep(1, pos, gpriv, i)
90
91#define usbhsg_for_each_uep_with_dcp(pos, gpriv, i) \
92 __usbhsg_for_each_uep(0, pos, gpriv, i)
93
94#define usbhsg_gadget_to_gpriv(g)\
95 container_of(g, struct usbhsg_gpriv, gadget)
96
97#define usbhsg_req_to_ureq(r)\
98 container_of(r, struct usbhsg_request, req)
99
100#define usbhsg_ep_to_uep(e) container_of(e, struct usbhsg_uep, ep)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900101#define usbhsg_gpriv_to_dev(gp) usbhs_priv_to_dev((gp)->mod.priv)
102#define usbhsg_gpriv_to_priv(gp) ((gp)->mod.priv)
103#define usbhsg_gpriv_to_dcp(gp) ((gp)->uep)
104#define usbhsg_gpriv_to_nth_uep(gp, i) ((gp)->uep + i)
105#define usbhsg_uep_to_gpriv(u) ((u)->gpriv)
106#define usbhsg_uep_to_pipe(u) ((u)->pipe)
107#define usbhsg_pipe_to_uep(p) ((p)->mod_private)
108#define usbhsg_is_dcp(u) ((u) == usbhsg_gpriv_to_dcp((u)->gpriv))
109
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900110#define usbhsg_ureq_to_pkt(u) (&(u)->pkt)
111#define usbhsg_pkt_to_ureq(i) \
112 container_of(i, struct usbhsg_request, pkt)
113
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900114#define usbhsg_is_not_connected(gp) ((gp)->gadget.speed == USB_SPEED_UNKNOWN)
115
116/* status */
117#define usbhsg_status_init(gp) do {(gp)->status = 0; } while (0)
118#define usbhsg_status_set(gp, b) (gp->status |= b)
119#define usbhsg_status_clr(gp, b) (gp->status &= ~b)
120#define usbhsg_status_has(gp, b) (gp->status & b)
121
122/*
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700123 * queue push/pop
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900124 */
Yoshihiro Shimoda00f30d22015-03-16 16:36:48 +0900125static void __usbhsg_queue_pop(struct usbhsg_uep *uep,
126 struct usbhsg_request *ureq,
127 int status)
128{
129 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
130 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
131 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
132 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
133
Yoshihiro Shimodac9eb2952015-11-18 14:33:35 +0900134 if (pipe)
135 dev_dbg(dev, "pipe %d : queue pop\n", usbhs_pipe_number(pipe));
Yoshihiro Shimoda00f30d22015-03-16 16:36:48 +0900136
137 ureq->req.status = status;
138 spin_unlock(usbhs_priv_to_lock(priv));
139 usb_gadget_giveback_request(&uep->ep, &ureq->req);
140 spin_lock(usbhs_priv_to_lock(priv));
141}
142
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900143static void usbhsg_queue_pop(struct usbhsg_uep *uep,
144 struct usbhsg_request *ureq,
145 int status)
146{
147 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
Yoshihiro Shimoda00f30d22015-03-16 16:36:48 +0900148 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
149 unsigned long flags;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900150
Yoshihiro Shimoda00f30d22015-03-16 16:36:48 +0900151 usbhs_lock(priv, flags);
152 __usbhsg_queue_pop(uep, ureq, status);
153 usbhs_unlock(priv, flags);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900154}
155
Kuninori Morimoto2cc97192011-10-10 22:03:39 -0700156static void usbhsg_queue_done(struct usbhs_priv *priv, struct usbhs_pkt *pkt)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900157{
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900158 struct usbhs_pipe *pipe = pkt->pipe;
159 struct usbhsg_uep *uep = usbhsg_pipe_to_uep(pipe);
160 struct usbhsg_request *ureq = usbhsg_pkt_to_ureq(pkt);
Yoshihiro Shimoda4fccb072016-04-04 20:40:20 +0900161 unsigned long flags;
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900162
Kuninori Morimoto659d4952011-06-06 14:18:23 +0900163 ureq->req.actual = pkt->actual;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900164
Yoshihiro Shimoda4fccb072016-04-04 20:40:20 +0900165 usbhs_lock(priv, flags);
166 if (uep)
167 __usbhsg_queue_pop(uep, ureq, 0);
168 usbhs_unlock(priv, flags);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900169}
170
Kuninori Morimotob3318722011-10-10 22:04:41 -0700171static void usbhsg_queue_push(struct usbhsg_uep *uep,
172 struct usbhsg_request *ureq)
173{
174 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
175 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
176 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
177 struct usbhs_pkt *pkt = usbhsg_ureq_to_pkt(ureq);
178 struct usb_request *req = &ureq->req;
179
180 req->actual = 0;
181 req->status = -EINPROGRESS;
182 usbhs_pkt_push(pipe, pkt, usbhsg_queue_done,
Kuninori Morimoto3edeee32011-12-08 18:28:54 -0800183 req->buf, req->length, req->zero, -1);
Kuninori Morimoto654c35a2011-10-10 22:04:53 -0700184 usbhs_pkt_start(pipe);
Kuninori Morimotob3318722011-10-10 22:04:41 -0700185
186 dev_dbg(dev, "pipe %d : queue push (%d)\n",
187 usbhs_pipe_number(pipe),
188 req->length);
189}
190
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700191/*
192 * dma map/unmap
193 */
Yoshihiro Shimodac3cdcac2016-04-18 16:53:41 +0900194static int usbhsg_dma_map_ctrl(struct device *dma_dev, struct usbhs_pkt *pkt,
195 int map)
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900196{
Felipe Balbiade78f92011-12-19 11:57:16 +0200197 struct usbhsg_request *ureq = usbhsg_pkt_to_ureq(pkt);
198 struct usb_request *req = &ureq->req;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900199 struct usbhs_pipe *pipe = pkt->pipe;
200 struct usbhsg_uep *uep = usbhsg_pipe_to_uep(pipe);
201 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900202 enum dma_data_direction dir;
Felipe Balbiade78f92011-12-19 11:57:16 +0200203 int ret = 0;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900204
Felipe Balbiade78f92011-12-19 11:57:16 +0200205 dir = usbhs_pipe_is_dir_host(pipe);
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900206
Felipe Balbiade78f92011-12-19 11:57:16 +0200207 if (map) {
208 /* it can not use scatter/gather */
209 WARN_ON(req->num_sgs);
210
211 ret = usb_gadget_map_request(&gpriv->gadget, req, dir);
212 if (ret < 0)
213 return ret;
214
215 pkt->dma = req->dma;
216 } else {
217 usb_gadget_unmap_request(&gpriv->gadget, req, dir);
218 }
219
220 return ret;
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900221}
222
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900223/*
224 * USB_TYPE_STANDARD / clear feature functions
225 */
226static int usbhsg_recip_handler_std_control_done(struct usbhs_priv *priv,
227 struct usbhsg_uep *uep,
228 struct usb_ctrlrequest *ctrl)
229{
230 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
231 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
232 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(dcp);
233
234 usbhs_dcp_control_transfer_done(pipe);
235
236 return 0;
237}
238
239static int usbhsg_recip_handler_std_clear_endpoint(struct usbhs_priv *priv,
240 struct usbhsg_uep *uep,
241 struct usb_ctrlrequest *ctrl)
242{
243 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
244 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
245
246 if (!usbhsg_status_has(gpriv, USBHSG_STATUS_WEDGE)) {
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900247 usbhs_pipe_disable(pipe);
Kuninori Morimoto6e6db822011-10-10 22:05:30 -0700248 usbhs_pipe_sequence_data0(pipe);
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900249 usbhs_pipe_enable(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900250 }
251
252 usbhsg_recip_handler_std_control_done(priv, uep, ctrl);
253
Kuninori Morimoto25fa7072011-11-24 17:28:17 -0800254 usbhs_pkt_start(pipe);
255
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900256 return 0;
257}
258
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700259static struct usbhsg_recip_handle req_clear_feature = {
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900260 .name = "clear feature",
261 .device = usbhsg_recip_handler_std_control_done,
262 .interface = usbhsg_recip_handler_std_control_done,
263 .endpoint = usbhsg_recip_handler_std_clear_endpoint,
264};
265
266/*
Kuninori Morimotoced6e092011-11-24 17:27:50 -0800267 * USB_TYPE_STANDARD / set feature functions
268 */
Kuninori Morimotodfbb7f42011-11-24 17:28:35 -0800269static int usbhsg_recip_handler_std_set_device(struct usbhs_priv *priv,
270 struct usbhsg_uep *uep,
271 struct usb_ctrlrequest *ctrl)
272{
273 switch (le16_to_cpu(ctrl->wValue)) {
274 case USB_DEVICE_TEST_MODE:
275 usbhsg_recip_handler_std_control_done(priv, uep, ctrl);
276 udelay(100);
277 usbhs_sys_set_test_mode(priv, le16_to_cpu(ctrl->wIndex >> 8));
278 break;
279 default:
280 usbhsg_recip_handler_std_control_done(priv, uep, ctrl);
281 break;
282 }
283
284 return 0;
285}
286
Kuninori Morimotoced6e092011-11-24 17:27:50 -0800287static 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
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700300static struct usbhsg_recip_handle req_set_feature = {
Kuninori Morimotoced6e092011-11-24 17:27:50 -0800301 .name = "set feature",
Kuninori Morimotodfbb7f42011-11-24 17:28:35 -0800302 .device = usbhsg_recip_handler_std_set_device,
Kuninori Morimotoced6e092011-11-24 17:27:50 -0800303 .interface = usbhsg_recip_handler_std_control_done,
304 .endpoint = usbhsg_recip_handler_std_set_endpoint,
305};
306
307/*
Kuninori Morimoto17f7f762011-11-24 17:28:04 -0800308 * USB_TYPE_STANDARD / get status functions
309 */
310static void __usbhsg_recip_send_complete(struct usb_ep *ep,
311 struct usb_request *req)
312{
313 struct usbhsg_request *ureq = usbhsg_req_to_ureq(req);
314
315 /* free allocated recip-buffer/usb_request */
316 kfree(ureq->pkt.buf);
317 usb_ep_free_request(ep, req);
318}
319
320static void __usbhsg_recip_send_status(struct usbhsg_gpriv *gpriv,
321 unsigned short status)
322{
323 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
324 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(dcp);
325 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
326 struct usb_request *req;
327 unsigned short *buf;
328
329 /* alloc new usb_request for recip */
330 req = usb_ep_alloc_request(&dcp->ep, GFP_ATOMIC);
331 if (!req) {
332 dev_err(dev, "recip request allocation fail\n");
333 return;
334 }
335
336 /* alloc recip data buffer */
337 buf = kmalloc(sizeof(*buf), GFP_ATOMIC);
338 if (!buf) {
339 usb_ep_free_request(&dcp->ep, req);
340 dev_err(dev, "recip data allocation fail\n");
341 return;
342 }
343
344 /* recip data is status */
345 *buf = cpu_to_le16(status);
346
347 /* allocated usb_request/buffer will be freed */
348 req->complete = __usbhsg_recip_send_complete;
349 req->buf = buf;
350 req->length = sizeof(*buf);
351 req->zero = 0;
352
353 /* push packet */
354 pipe->handler = &usbhs_fifo_pio_push_handler;
355 usbhsg_queue_push(dcp, usbhsg_req_to_ureq(req));
356}
357
358static int usbhsg_recip_handler_std_get_device(struct usbhs_priv *priv,
359 struct usbhsg_uep *uep,
360 struct usb_ctrlrequest *ctrl)
361{
362 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
Shimoda, Yoshihirocac402d2012-03-16 13:10:15 +0900363 unsigned short status = 0;
364
365 if (usbhsg_status_has(gpriv, USBHSG_STATUS_SELF_POWERED))
366 status = 1 << USB_DEVICE_SELF_POWERED;
Kuninori Morimoto17f7f762011-11-24 17:28:04 -0800367
368 __usbhsg_recip_send_status(gpriv, status);
369
370 return 0;
371}
372
373static int usbhsg_recip_handler_std_get_interface(struct usbhs_priv *priv,
374 struct usbhsg_uep *uep,
375 struct usb_ctrlrequest *ctrl)
376{
377 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
378 unsigned short status = 0;
379
380 __usbhsg_recip_send_status(gpriv, status);
381
382 return 0;
383}
384
385static int usbhsg_recip_handler_std_get_endpoint(struct usbhs_priv *priv,
386 struct usbhsg_uep *uep,
387 struct usb_ctrlrequest *ctrl)
388{
389 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
390 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
391 unsigned short status = 0;
392
393 if (usbhs_pipe_is_stall(pipe))
394 status = 1 << USB_ENDPOINT_HALT;
395
396 __usbhsg_recip_send_status(gpriv, status);
397
398 return 0;
399}
400
Kuninori Morimoto225da3e2013-03-31 18:34:43 -0700401static struct usbhsg_recip_handle req_get_status = {
Kuninori Morimoto17f7f762011-11-24 17:28:04 -0800402 .name = "get status",
403 .device = usbhsg_recip_handler_std_get_device,
404 .interface = usbhsg_recip_handler_std_get_interface,
405 .endpoint = usbhsg_recip_handler_std_get_endpoint,
406};
407
408/*
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900409 * USB_TYPE handler
410 */
411static int usbhsg_recip_run_handle(struct usbhs_priv *priv,
412 struct usbhsg_recip_handle *handler,
413 struct usb_ctrlrequest *ctrl)
414{
415 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
416 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
417 struct usbhsg_uep *uep;
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900418 struct usbhs_pipe *pipe;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900419 int recip = ctrl->bRequestType & USB_RECIP_MASK;
420 int nth = le16_to_cpu(ctrl->wIndex) & USB_ENDPOINT_NUMBER_MASK;
Jesper Juhl7983bc72012-01-16 22:42:10 +0100421 int ret = 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900422 int (*func)(struct usbhs_priv *priv, struct usbhsg_uep *uep,
423 struct usb_ctrlrequest *ctrl);
424 char *msg;
425
426 uep = usbhsg_gpriv_to_nth_uep(gpriv, nth);
Kuninori Morimoto0432eed2011-06-06 14:18:54 +0900427 pipe = usbhsg_uep_to_pipe(uep);
428 if (!pipe) {
Kuninori Morimoto9a28b7b2011-04-21 14:10:12 +0900429 dev_err(dev, "wrong recip request\n");
Kuninori Morimoto25fa7072011-11-24 17:28:17 -0800430 return -EINVAL;
Kuninori Morimoto9a28b7b2011-04-21 14:10:12 +0900431 }
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900432
433 switch (recip) {
434 case USB_RECIP_DEVICE:
435 msg = "DEVICE";
436 func = handler->device;
437 break;
438 case USB_RECIP_INTERFACE:
439 msg = "INTERFACE";
440 func = handler->interface;
441 break;
442 case USB_RECIP_ENDPOINT:
443 msg = "ENDPOINT";
444 func = handler->endpoint;
445 break;
446 default:
447 dev_warn(dev, "unsupported RECIP(%d)\n", recip);
448 func = NULL;
449 ret = -EINVAL;
450 }
451
452 if (func) {
453 dev_dbg(dev, "%s (pipe %d :%s)\n", handler->name, nth, msg);
454 ret = func(priv, uep, ctrl);
455 }
456
457 return ret;
458}
459
460/*
461 * irq functions
462 *
463 * it will be called from usbhs_interrupt
464 */
465static int usbhsg_irq_dev_state(struct usbhs_priv *priv,
466 struct usbhs_irq_state *irq_state)
467{
468 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
469 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
470
Kuninori Morimoto75587f52011-10-10 22:01:51 -0700471 gpriv->gadget.speed = usbhs_bus_get_speed(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900472
473 dev_dbg(dev, "state = %x : speed : %d\n",
474 usbhs_status_get_device_state(irq_state),
475 gpriv->gadget.speed);
476
477 return 0;
478}
479
480static int usbhsg_irq_ctrl_stage(struct usbhs_priv *priv,
481 struct usbhs_irq_state *irq_state)
482{
483 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
484 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
485 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(dcp);
486 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
487 struct usb_ctrlrequest ctrl;
488 struct usbhsg_recip_handle *recip_handler = NULL;
489 int stage = usbhs_status_get_ctrl_stage(irq_state);
490 int ret = 0;
491
492 dev_dbg(dev, "stage = %d\n", stage);
493
494 /*
495 * see Manual
496 *
497 * "Operation"
498 * - "Interrupt Function"
499 * - "Control Transfer Stage Transition Interrupt"
500 * - Fig. "Control Transfer Stage Transitions"
501 */
502
503 switch (stage) {
504 case READ_DATA_STAGE:
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700505 pipe->handler = &usbhs_fifo_pio_push_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900506 break;
507 case WRITE_DATA_STAGE:
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700508 pipe->handler = &usbhs_fifo_pio_pop_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900509 break;
510 case NODATA_STATUS_STAGE:
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700511 pipe->handler = &usbhs_ctrl_stage_end_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900512 break;
Yoshihiro Shimoda4ef35b12014-11-04 10:05:44 +0900513 case READ_STATUS_STAGE:
514 case WRITE_STATUS_STAGE:
515 usbhs_dcp_control_transfer_done(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900516 default:
517 return ret;
518 }
519
520 /*
521 * get usb request
522 */
523 usbhs_usbreq_get_val(priv, &ctrl);
524
525 switch (ctrl.bRequestType & USB_TYPE_MASK) {
526 case USB_TYPE_STANDARD:
527 switch (ctrl.bRequest) {
528 case USB_REQ_CLEAR_FEATURE:
529 recip_handler = &req_clear_feature;
530 break;
Kuninori Morimotoced6e092011-11-24 17:27:50 -0800531 case USB_REQ_SET_FEATURE:
532 recip_handler = &req_set_feature;
533 break;
Kuninori Morimoto17f7f762011-11-24 17:28:04 -0800534 case USB_REQ_GET_STATUS:
535 recip_handler = &req_get_status;
536 break;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900537 }
538 }
539
540 /*
541 * setup stage / run recip
542 */
543 if (recip_handler)
544 ret = usbhsg_recip_run_handle(priv, recip_handler, &ctrl);
545 else
546 ret = gpriv->driver->setup(&gpriv->gadget, &ctrl);
547
548 if (ret < 0)
Kuninori Morimotoe8d548d2011-06-06 14:18:03 +0900549 usbhs_pipe_stall(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900550
551 return ret;
552}
553
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900554/*
555 *
556 * usb_dcp_ops
557 *
558 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900559static int usbhsg_pipe_disable(struct usbhsg_uep *uep)
560{
561 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
Kuninori Morimoto8a2c2252011-06-06 14:18:33 +0900562 struct usbhs_pkt *pkt;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900563
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900564 while (1) {
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900565 pkt = usbhs_pkt_pop(pipe, NULL);
Kuninori Morimoto8a2c2252011-06-06 14:18:33 +0900566 if (!pkt)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900567 break;
Kuninori Morimoto91b158f2011-11-24 17:28:26 -0800568
Yoshihiro Shimoda11ebf3a2016-03-03 18:35:51 +0900569 usbhsg_queue_pop(uep, usbhsg_pkt_to_ureq(pkt), -ESHUTDOWN);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900570 }
571
Kuninori Morimoto91b158f2011-11-24 17:28:26 -0800572 usbhs_pipe_disable(pipe);
573
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900574 return 0;
575}
576
577/*
578 *
579 * usb_ep_ops
580 *
581 */
582static int usbhsg_ep_enable(struct usb_ep *ep,
583 const struct usb_endpoint_descriptor *desc)
584{
585 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
586 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
587 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
588 struct usbhs_pipe *pipe;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900589 int ret = -EIO;
590
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900591 /*
592 * if it already have pipe,
593 * nothing to do
594 */
Kuninori Morimoto08e6c612011-06-09 16:48:25 +0900595 if (uep->pipe) {
596 usbhs_pipe_clear(uep->pipe);
Kuninori Morimoto6e6db822011-10-10 22:05:30 -0700597 usbhs_pipe_sequence_data0(uep->pipe);
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900598 return 0;
Kuninori Morimoto08e6c612011-06-09 16:48:25 +0900599 }
Kuninori Morimoto409ba9e2011-04-26 09:21:35 +0900600
Kuninori Morimotof5aa8892011-10-10 21:59:46 -0700601 pipe = usbhs_pipe_malloc(priv,
602 usb_endpoint_type(desc),
603 usb_endpoint_dir_in(desc));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900604 if (pipe) {
605 uep->pipe = pipe;
606 pipe->mod_private = uep;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900607
Kuninori Morimotof5aa8892011-10-10 21:59:46 -0700608 /* set epnum / maxp */
Kuninori Morimotobc6fbf52011-10-10 22:04:00 -0700609 usbhs_pipe_config_update(pipe, 0,
Kuninori Morimotof5aa8892011-10-10 21:59:46 -0700610 usb_endpoint_num(desc),
611 usb_endpoint_maxp(desc));
612
Kuninori Morimoto233f5192011-07-07 00:23:24 -0700613 /*
614 * usbhs_fifo_dma_push/pop_handler try to
615 * use dmaengine if possible.
616 * It will use pio handler if impossible.
617 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900618 if (usb_endpoint_dir_in(desc))
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700619 pipe->handler = &usbhs_fifo_dma_push_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900620 else
Kuninori Morimoto0c6ef982011-10-10 22:00:59 -0700621 pipe->handler = &usbhs_fifo_dma_pop_handler;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900622
623 ret = 0;
624 }
Kuninori Morimotocb966322011-04-21 14:10:08 +0900625
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900626 return ret;
627}
628
629static int usbhsg_ep_disable(struct usb_ep *ep)
630{
631 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
Yoshihiro Shimodadfb87b82014-07-09 20:30:13 +0900632 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900633
Kazuya Mizuguchi11432052014-11-04 10:05:42 +0900634 if (!pipe)
635 return -EINVAL;
636
Kuninori Morimotod9fa2982012-12-10 22:44:07 -0800637 usbhsg_pipe_disable(uep);
Yoshihiro Shimodadfb87b82014-07-09 20:30:13 +0900638 usbhs_pipe_free(pipe);
Kuninori Morimotod9fa2982012-12-10 22:44:07 -0800639
640 uep->pipe->mod_private = NULL;
641 uep->pipe = NULL;
642
643 return 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900644}
645
646static struct usb_request *usbhsg_ep_alloc_request(struct usb_ep *ep,
647 gfp_t gfp_flags)
648{
649 struct usbhsg_request *ureq;
650
651 ureq = kzalloc(sizeof *ureq, gfp_flags);
652 if (!ureq)
653 return NULL;
654
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900655 usbhs_pkt_init(usbhsg_ureq_to_pkt(ureq));
656
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900657 return &ureq->req;
658}
659
660static void usbhsg_ep_free_request(struct usb_ep *ep,
661 struct usb_request *req)
662{
663 struct usbhsg_request *ureq = usbhsg_req_to_ureq(req);
664
Kuninori Morimoto6acb95d2011-06-06 14:18:16 +0900665 WARN_ON(!list_empty(&ureq->pkt.node));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900666 kfree(ureq);
667}
668
669static int usbhsg_ep_queue(struct usb_ep *ep, struct usb_request *req,
670 gfp_t gfp_flags)
671{
672 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
673 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
674 struct usbhsg_request *ureq = usbhsg_req_to_ureq(req);
675 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900676
677 /* param check */
678 if (usbhsg_is_not_connected(gpriv) ||
679 unlikely(!gpriv->driver) ||
680 unlikely(!pipe))
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900681 return -ESHUTDOWN;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900682
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900683 usbhsg_queue_push(uep, ureq);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900684
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900685 return 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900686}
687
688static int usbhsg_ep_dequeue(struct usb_ep *ep, struct usb_request *req)
689{
690 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
691 struct usbhsg_request *ureq = usbhsg_req_to_ureq(req);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900692 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900693
Yoshihiro Shimodac9eb2952015-11-18 14:33:35 +0900694 if (pipe)
695 usbhs_pkt_pop(pipe, usbhsg_ureq_to_pkt(ureq));
696
697 /*
698 * To dequeue a request, this driver should call the usbhsg_queue_pop()
699 * even if the pipe is NULL.
700 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900701 usbhsg_queue_pop(uep, ureq, -ECONNRESET);
702
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900703 return 0;
704}
705
706static int __usbhsg_ep_set_halt_wedge(struct usb_ep *ep, int halt, int wedge)
707{
708 struct usbhsg_uep *uep = usbhsg_ep_to_uep(ep);
709 struct usbhs_pipe *pipe = usbhsg_uep_to_pipe(uep);
710 struct usbhsg_gpriv *gpriv = usbhsg_uep_to_gpriv(uep);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900711 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900712 struct device *dev = usbhsg_gpriv_to_dev(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900713 unsigned long flags;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900714
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900715 usbhsg_pipe_disable(uep);
716
717 dev_dbg(dev, "set halt %d (pipe %d)\n",
718 halt, usbhs_pipe_number(pipe));
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900719
720 /******************** spin lock ********************/
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900721 usbhs_lock(priv, flags);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900722
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900723 if (halt)
724 usbhs_pipe_stall(pipe);
725 else
726 usbhs_pipe_disable(pipe);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900727
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900728 if (halt && wedge)
729 usbhsg_status_set(gpriv, USBHSG_STATUS_WEDGE);
730 else
731 usbhsg_status_clr(gpriv, USBHSG_STATUS_WEDGE);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900732
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900733 usbhs_unlock(priv, flags);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900734 /******************** spin unlock ******************/
735
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900736 return 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900737}
738
739static int usbhsg_ep_set_halt(struct usb_ep *ep, int value)
740{
741 return __usbhsg_ep_set_halt_wedge(ep, value, 0);
742}
743
744static int usbhsg_ep_set_wedge(struct usb_ep *ep)
745{
746 return __usbhsg_ep_set_halt_wedge(ep, 1, 1);
747}
748
749static struct usb_ep_ops usbhsg_ep_ops = {
750 .enable = usbhsg_ep_enable,
751 .disable = usbhsg_ep_disable,
752
753 .alloc_request = usbhsg_ep_alloc_request,
754 .free_request = usbhsg_ep_free_request,
755
756 .queue = usbhsg_ep_queue,
757 .dequeue = usbhsg_ep_dequeue,
758
759 .set_halt = usbhsg_ep_set_halt,
760 .set_wedge = usbhsg_ep_set_wedge,
761};
762
763/*
Takeshi Kihara04a5def2014-11-04 10:05:43 +0900764 * pullup control
765 */
766static int usbhsg_can_pullup(struct usbhs_priv *priv)
767{
768 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
769
770 return gpriv->driver &&
771 usbhsg_status_has(gpriv, USBHSG_STATUS_SOFT_CONNECT);
772}
773
774static void usbhsg_update_pullup(struct usbhs_priv *priv)
775{
776 if (usbhsg_can_pullup(priv))
777 usbhs_sys_function_pullup(priv, 1);
778 else
779 usbhs_sys_function_pullup(priv, 0);
780}
781
782/*
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900783 * usb module start/end
784 */
785static int usbhsg_try_start(struct usbhs_priv *priv, u32 status)
786{
787 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
788 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
789 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
790 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900791 unsigned long flags;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900792 int ret = 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900793
794 /******************** spin lock ********************/
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900795 usbhs_lock(priv, flags);
796
797 usbhsg_status_set(gpriv, status);
798 if (!(usbhsg_status_has(gpriv, USBHSG_STATUS_STARTED) &&
799 usbhsg_status_has(gpriv, USBHSG_STATUS_REGISTERD)))
800 ret = -1; /* not ready */
801
802 usbhs_unlock(priv, flags);
803 /******************** spin unlock ********************/
804
805 if (ret < 0)
806 return 0; /* not ready is not error */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900807
808 /*
809 * enable interrupt and systems if ready
810 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900811 dev_dbg(dev, "start gadget\n");
812
813 /*
814 * pipe initialize and enable DCP
815 */
Yoshihiro Shimodacdeb7942014-11-04 10:05:45 +0900816 usbhs_fifo_init(priv);
Kuninori Morimoto4bd04812011-06-06 14:18:07 +0900817 usbhs_pipe_init(priv,
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900818 usbhsg_dma_map_ctrl);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900819
Kuninori Morimotod9fa2982012-12-10 22:44:07 -0800820 /* dcp init instead of usbhsg_ep_enable() */
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900821 dcp->pipe = usbhs_dcp_malloc(priv);
822 dcp->pipe->mod_private = dcp;
Kuninori Morimotobc6fbf52011-10-10 22:04:00 -0700823 usbhs_pipe_config_update(dcp->pipe, 0, 0, 64);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900824
825 /*
826 * system config enble
827 * - HI speed
828 * - function
829 * - usb module
830 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900831 usbhs_sys_function_ctrl(priv, 1);
Takeshi Kihara04a5def2014-11-04 10:05:43 +0900832 usbhsg_update_pullup(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900833
834 /*
835 * enable irq callback
836 */
837 mod->irq_dev_state = usbhsg_irq_dev_state;
838 mod->irq_ctrl_stage = usbhsg_irq_ctrl_stage;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900839 usbhs_irq_callback_update(priv, mod);
840
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900841 return 0;
842}
843
844static int usbhsg_try_stop(struct usbhs_priv *priv, u32 status)
845{
846 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
847 struct usbhs_mod *mod = usbhs_mod_get_current(priv);
848 struct usbhsg_uep *dcp = usbhsg_gpriv_to_dcp(gpriv);
849 struct device *dev = usbhs_priv_to_dev(priv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900850 unsigned long flags;
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900851 int ret = 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900852
853 /******************** spin lock ********************/
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900854 usbhs_lock(priv, flags);
855
856 usbhsg_status_clr(gpriv, status);
857 if (!usbhsg_status_has(gpriv, USBHSG_STATUS_STARTED) &&
858 !usbhsg_status_has(gpriv, USBHSG_STATUS_REGISTERD))
859 ret = -1; /* already done */
860
861 usbhs_unlock(priv, flags);
862 /******************** spin unlock ********************/
863
864 if (ret < 0)
865 return 0; /* already done is not error */
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900866
867 /*
868 * disable interrupt and systems if 1st try
869 */
Kuninori Morimotodad67392011-06-06 14:18:28 +0900870 usbhs_fifo_quit(priv);
871
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900872 /* disable all irq */
873 mod->irq_dev_state = NULL;
874 mod->irq_ctrl_stage = NULL;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900875 usbhs_irq_callback_update(priv, mod);
876
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900877 gpriv->gadget.speed = USB_SPEED_UNKNOWN;
878
879 /* disable sys */
Kuninori Morimotodfbb7f42011-11-24 17:28:35 -0800880 usbhs_sys_set_test_mode(priv, 0);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900881 usbhs_sys_function_ctrl(priv, 0);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900882
Kuninori Morimotod9fa2982012-12-10 22:44:07 -0800883 usbhsg_ep_disable(&dcp->ep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900884
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900885 dev_dbg(dev, "stop gadget\n");
886
887 return 0;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900888}
889
890/*
Phil Edworthyb5a28752015-07-13 16:30:18 +0100891 * VBUS provided by the PHY
892 */
893static int usbhsm_phy_get_vbus(struct platform_device *pdev)
894{
895 struct usbhs_priv *priv = usbhs_pdev_to_priv(pdev);
896 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
897
898 return gpriv->vbus_active;
899}
900
901static void usbhs_mod_phy_mode(struct usbhs_priv *priv)
902{
903 struct usbhs_mod_info *info = &priv->mod_info;
904
905 info->irq_vbus = NULL;
906 priv->pfunc.get_vbus = usbhsm_phy_get_vbus;
907
908 usbhs_irq_callback_update(priv, NULL);
909}
910
911/*
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900912 *
913 * linux usb function
914 *
915 */
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300916static int usbhsg_gadget_start(struct usb_gadget *gadget,
917 struct usb_gadget_driver *driver)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900918{
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300919 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
Kuninori Morimotof8eff0a2011-11-17 18:19:06 -0800920 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
Phil Edworthyb5a28752015-07-13 16:30:18 +0100921 struct device *dev = usbhs_priv_to_dev(priv);
922 int ret;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900923
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300924 if (!driver ||
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900925 !driver->setup ||
Michal Nazarewicz7177aed2011-11-19 18:27:38 +0100926 driver->max_speed < USB_SPEED_FULL)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900927 return -EINVAL;
Kuninori Morimoto3b872182011-07-03 17:42:35 -0700928
Phil Edworthyb5a28752015-07-13 16:30:18 +0100929 /* connect to bus through transceiver */
930 if (!IS_ERR_OR_NULL(gpriv->transceiver)) {
931 ret = otg_set_peripheral(gpriv->transceiver->otg,
932 &gpriv->gadget);
933 if (ret) {
934 dev_err(dev, "%s: can't bind to transceiver\n",
935 gpriv->gadget.name);
936 return ret;
937 }
938
939 /* get vbus using phy versions */
940 usbhs_mod_phy_mode(priv);
941 }
942
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900943 /* first hook up the driver ... */
944 gpriv->driver = driver;
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900945
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900946 return usbhsg_try_start(priv, USBHSG_STATUS_REGISTERD);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900947}
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900948
Felipe Balbi22835b82014-10-17 12:05:12 -0500949static int usbhsg_gadget_stop(struct usb_gadget *gadget)
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900950{
Felipe Balbiaf1d7052011-10-10 17:11:20 +0300951 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
Kuninori Morimotof8eff0a2011-11-17 18:19:06 -0800952 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900953
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900954 usbhsg_try_stop(priv, USBHSG_STATUS_REGISTERD);
Phil Edworthyb5a28752015-07-13 16:30:18 +0100955
956 if (!IS_ERR_OR_NULL(gpriv->transceiver))
957 otg_set_peripheral(gpriv->transceiver->otg, NULL);
958
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900959 gpriv->driver = NULL;
960
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900961 return 0;
962}
Kuninori Morimoto2f983822011-04-05 11:40:54 +0900963
964/*
965 * usb gadget ops
966 */
967static int usbhsg_get_frame(struct usb_gadget *gadget)
968{
969 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
970 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
971
972 return usbhs_frame_get_num(priv);
973}
974
kuninori.morimoto.gx@renesas.com4cd2f592012-10-15 23:24:19 -0700975static int usbhsg_pullup(struct usb_gadget *gadget, int is_on)
976{
977 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
978 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
Takeshi Kihara04a5def2014-11-04 10:05:43 +0900979 unsigned long flags;
kuninori.morimoto.gx@renesas.com4cd2f592012-10-15 23:24:19 -0700980
Takeshi Kihara04a5def2014-11-04 10:05:43 +0900981 usbhs_lock(priv, flags);
982 if (is_on)
983 usbhsg_status_set(gpriv, USBHSG_STATUS_SOFT_CONNECT);
984 else
985 usbhsg_status_clr(gpriv, USBHSG_STATUS_SOFT_CONNECT);
986 usbhsg_update_pullup(priv);
987 usbhs_unlock(priv, flags);
kuninori.morimoto.gx@renesas.com4cd2f592012-10-15 23:24:19 -0700988
989 return 0;
990}
991
Shimoda, Yoshihirocac402d2012-03-16 13:10:15 +0900992static int usbhsg_set_selfpowered(struct usb_gadget *gadget, int is_self)
993{
994 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
995
996 if (is_self)
997 usbhsg_status_set(gpriv, USBHSG_STATUS_SELF_POWERED);
998 else
999 usbhsg_status_clr(gpriv, USBHSG_STATUS_SELF_POWERED);
1000
Peter Chena17fd412015-01-28 16:32:28 +08001001 gadget->is_selfpowered = (is_self != 0);
1002
Shimoda, Yoshihirocac402d2012-03-16 13:10:15 +09001003 return 0;
1004}
1005
Phil Edworthyb5a28752015-07-13 16:30:18 +01001006static int usbhsg_vbus_session(struct usb_gadget *gadget, int is_active)
1007{
1008 struct usbhsg_gpriv *gpriv = usbhsg_gadget_to_gpriv(gadget);
1009 struct usbhs_priv *priv = usbhsg_gpriv_to_priv(gpriv);
1010 struct platform_device *pdev = usbhs_priv_to_pdev(priv);
1011
1012 gpriv->vbus_active = !!is_active;
1013
1014 renesas_usbhs_call_notify_hotplug(pdev);
1015
1016 return 0;
1017}
1018
Felipe Balbieeef4582013-01-24 17:58:16 +02001019static const struct usb_gadget_ops usbhsg_gadget_ops = {
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001020 .get_frame = usbhsg_get_frame,
Shimoda, Yoshihirocac402d2012-03-16 13:10:15 +09001021 .set_selfpowered = usbhsg_set_selfpowered,
Felipe Balbiaf1d7052011-10-10 17:11:20 +03001022 .udc_start = usbhsg_gadget_start,
1023 .udc_stop = usbhsg_gadget_stop,
kuninori.morimoto.gx@renesas.com4cd2f592012-10-15 23:24:19 -07001024 .pullup = usbhsg_pullup,
Phil Edworthyb5a28752015-07-13 16:30:18 +01001025 .vbus_session = usbhsg_vbus_session,
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001026};
1027
1028static int usbhsg_start(struct usbhs_priv *priv)
1029{
1030 return usbhsg_try_start(priv, USBHSG_STATUS_STARTED);
1031}
1032
1033static int usbhsg_stop(struct usbhs_priv *priv)
1034{
Kuninori Morimoto8885a892011-11-17 18:19:38 -08001035 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
1036
1037 /* cable disconnect */
1038 if (gpriv->driver &&
1039 gpriv->driver->disconnect)
1040 gpriv->driver->disconnect(&gpriv->gadget);
1041
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001042 return usbhsg_try_stop(priv, USBHSG_STATUS_STARTED);
1043}
1044
Kuninori Morimotob7a8d172011-10-26 19:33:49 -07001045int usbhs_mod_gadget_probe(struct usbhs_priv *priv)
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001046{
1047 struct usbhsg_gpriv *gpriv;
1048 struct usbhsg_uep *uep;
1049 struct device *dev = usbhs_priv_to_dev(priv);
Yoshihiro Shimoda64c5f482015-11-18 14:34:10 +09001050 struct renesas_usbhs_driver_pipe_config *pipe_configs =
1051 usbhs_get_dparam(priv, pipe_configs);
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001052 int pipe_size = usbhs_get_dparam(priv, pipe_size);
1053 int i;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001054 int ret;
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001055
1056 gpriv = kzalloc(sizeof(struct usbhsg_gpriv), GFP_KERNEL);
1057 if (!gpriv) {
1058 dev_err(dev, "Could not allocate gadget priv\n");
1059 return -ENOMEM;
1060 }
1061
1062 uep = kzalloc(sizeof(struct usbhsg_uep) * pipe_size, GFP_KERNEL);
1063 if (!uep) {
1064 dev_err(dev, "Could not allocate ep\n");
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001065 ret = -ENOMEM;
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001066 goto usbhs_mod_gadget_probe_err_gpriv;
1067 }
1068
Phil Edworthyb5a28752015-07-13 16:30:18 +01001069 gpriv->transceiver = usb_get_phy(USB_PHY_TYPE_UNDEFINED);
1070 dev_info(dev, "%stransceiver found\n",
1071 gpriv->transceiver ? "" : "no ");
1072
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001073 /*
1074 * CAUTION
1075 *
1076 * There is no guarantee that it is possible to access usb module here.
1077 * Don't accesses to it.
1078 * The accesse will be enable after "usbhsg_start"
1079 */
1080
1081 /*
1082 * register itself
1083 */
1084 usbhs_mod_register(priv, &gpriv->mod, USBHS_GADGET);
1085
1086 /* init gpriv */
1087 gpriv->mod.name = "gadget";
1088 gpriv->mod.start = usbhsg_start;
1089 gpriv->mod.stop = usbhsg_stop;
1090 gpriv->uep = uep;
1091 gpriv->uep_size = pipe_size;
1092 usbhsg_status_init(gpriv);
1093
1094 /*
1095 * init gadget
1096 */
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001097 gpriv->gadget.dev.parent = dev;
1098 gpriv->gadget.name = "renesas_usbhs_udc";
1099 gpriv->gadget.ops = &usbhsg_gadget_ops;
Michal Nazarewiczd327ab52011-11-19 18:27:37 +01001100 gpriv->gadget.max_speed = USB_SPEED_HIGH;
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001101
1102 INIT_LIST_HEAD(&gpriv->gadget.ep_list);
1103
1104 /*
1105 * init usb_ep
1106 */
1107 usbhsg_for_each_uep_with_dcp(uep, gpriv, i) {
1108 uep->gpriv = gpriv;
Kuninori Morimoto58482942012-12-10 22:43:45 -08001109 uep->pipe = NULL;
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001110 snprintf(uep->ep_name, EP_NAME_SIZE, "ep%d", i);
1111
1112 uep->ep.name = uep->ep_name;
1113 uep->ep.ops = &usbhsg_ep_ops;
1114 INIT_LIST_HEAD(&uep->ep.ep_list);
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001115
1116 /* init DCP */
1117 if (usbhsg_is_dcp(uep)) {
1118 gpriv->gadget.ep0 = &uep->ep;
Robert Baldygae117e742013-12-13 12:23:38 +01001119 usb_ep_set_maxpacket_limit(&uep->ep, 64);
Robert Baldyga916f7ac2015-07-31 16:00:47 +02001120 uep->ep.caps.type_control = true;
Yoshihiro Shimoda64c5f482015-11-18 14:34:10 +09001121 } else {
1122 /* init normal pipe */
1123 if (pipe_configs[i].type == USB_ENDPOINT_XFER_ISOC)
1124 uep->ep.caps.type_iso = true;
1125 if (pipe_configs[i].type == USB_ENDPOINT_XFER_BULK)
1126 uep->ep.caps.type_bulk = true;
1127 if (pipe_configs[i].type == USB_ENDPOINT_XFER_INT)
1128 uep->ep.caps.type_int = true;
1129 usb_ep_set_maxpacket_limit(&uep->ep,
1130 pipe_configs[i].bufsize);
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001131 list_add_tail(&uep->ep.ep_list, &gpriv->gadget.ep_list);
1132 }
Robert Baldyga916f7ac2015-07-31 16:00:47 +02001133 uep->ep.caps.dir_in = true;
1134 uep->ep.caps.dir_out = true;
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001135 }
1136
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001137 ret = usb_add_gadget_udc(dev, &gpriv->gadget);
1138 if (ret)
Felipe Balbi0972ef72013-01-24 17:08:01 +02001139 goto err_add_udc;
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001140
1141
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001142 dev_info(dev, "gadget probed\n");
1143
1144 return 0;
Kuninori Morimotof8eff0a2011-11-17 18:19:06 -08001145
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001146err_add_udc:
1147 kfree(gpriv->uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001148
1149usbhs_mod_gadget_probe_err_gpriv:
1150 kfree(gpriv);
1151
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001152 return ret;
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001153}
1154
Kuninori Morimotob7a8d172011-10-26 19:33:49 -07001155void usbhs_mod_gadget_remove(struct usbhs_priv *priv)
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001156{
1157 struct usbhsg_gpriv *gpriv = usbhsg_priv_to_gpriv(priv);
1158
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001159 usb_del_gadget_udc(&gpriv->gadget);
Kuninori Morimoto3b872182011-07-03 17:42:35 -07001160
Sebastian Andrzej Siewior3af51ac2011-06-03 19:50:48 +02001161 kfree(gpriv->uep);
Kuninori Morimoto2f983822011-04-05 11:40:54 +09001162 kfree(gpriv);
1163}