blob: 987510079b8faea2fca4c85d19ca8a7d9953565c [file] [log] [blame]
Ilya Yanokeb819552012-11-06 13:48:21 +00001#include <common.h>
Heiko Schocher7a342782013-06-04 11:10:01 +02002#include <watchdog.h>
Hans de Goede246e3b82015-03-27 20:54:25 +01003#ifdef CONFIG_ARCH_SUNXI
Hans de Goede2aacc422015-04-27 15:05:10 +02004#include <asm/arch/usb_phy.h>
Hans de Goede246e3b82015-03-27 20:54:25 +01005#endif
Ilya Yanokeb819552012-11-06 13:48:21 +00006#include <asm/errno.h>
7#include <linux/usb/ch9.h>
8#include <linux/usb/gadget.h>
9
Ilya Yanokeb819552012-11-06 13:48:21 +000010#include <usb.h>
11#include "linux-compat.h"
12#include "usb-compat.h"
13#include "musb_core.h"
14#include "musb_host.h"
15#include "musb_gadget.h"
Hans de Goedefc85d392015-06-17 21:33:57 +020016#include "musb_uboot.h"
Ilya Yanokeb819552012-11-06 13:48:21 +000017
18#ifdef CONFIG_MUSB_HOST
Hans de Goede904f2a82015-01-11 20:34:54 +010019struct int_queue {
20 struct usb_host_endpoint hep;
21 struct urb urb;
22};
23
Hans de Goedefc85d392015-06-17 21:33:57 +020024struct musb_host_data musb_host;
Ilya Yanokeb819552012-11-06 13:48:21 +000025
26static void musb_host_complete_urb(struct urb *urb)
27{
28 urb->dev->status &= ~USB_ST_NOT_PROC;
29 urb->dev->act_len = urb->actual_length;
30}
31
Hans de Goedeaccf04c2015-01-11 20:34:53 +010032static void construct_urb(struct urb *urb, struct usb_host_endpoint *hep,
33 struct usb_device *dev, int endpoint_type,
34 unsigned long pipe, void *buffer, int len,
35 struct devrequest *setup, int interval)
Ilya Yanokeb819552012-11-06 13:48:21 +000036{
37 int epnum = usb_pipeendpoint(pipe);
38 int is_in = usb_pipein(pipe);
39
Hans de Goedeaccf04c2015-01-11 20:34:53 +010040 memset(urb, 0, sizeof(struct urb));
41 memset(hep, 0, sizeof(struct usb_host_endpoint));
42 INIT_LIST_HEAD(&hep->urb_list);
43 INIT_LIST_HEAD(&urb->urb_list);
44 urb->ep = hep;
45 urb->complete = musb_host_complete_urb;
46 urb->status = -EINPROGRESS;
47 urb->dev = dev;
48 urb->pipe = pipe;
49 urb->transfer_buffer = buffer;
50 urb->transfer_dma = (unsigned long)buffer;
51 urb->transfer_buffer_length = len;
52 urb->setup_packet = (unsigned char *)setup;
Ilya Yanokeb819552012-11-06 13:48:21 +000053
Hans de Goedeaccf04c2015-01-11 20:34:53 +010054 urb->ep->desc.wMaxPacketSize =
Ilya Yanokeb819552012-11-06 13:48:21 +000055 __cpu_to_le16(is_in ? dev->epmaxpacketin[epnum] :
56 dev->epmaxpacketout[epnum]);
Hans de Goedeaccf04c2015-01-11 20:34:53 +010057 urb->ep->desc.bmAttributes = endpoint_type;
58 urb->ep->desc.bEndpointAddress =
Ilya Yanokeb819552012-11-06 13:48:21 +000059 (is_in ? USB_DIR_IN : USB_DIR_OUT) | epnum;
Hans de Goedeaccf04c2015-01-11 20:34:53 +010060 urb->ep->desc.bInterval = interval;
Ilya Yanokeb819552012-11-06 13:48:21 +000061}
62
Ilya Yanokeb819552012-11-06 13:48:21 +000063static int submit_urb(struct usb_hcd *hcd, struct urb *urb)
64{
65 struct musb *host = hcd->hcd_priv;
66 int ret;
Hans de Goededc9a3912015-01-11 20:34:49 +010067 unsigned long timeout;
Ilya Yanokeb819552012-11-06 13:48:21 +000068
69 ret = musb_urb_enqueue(hcd, urb, 0);
70 if (ret < 0) {
71 printf("Failed to enqueue URB to controller\n");
72 return ret;
73 }
74
Hans de Goededc9a3912015-01-11 20:34:49 +010075 timeout = get_timer(0) + USB_TIMEOUT_MS(urb->pipe);
Ilya Yanokeb819552012-11-06 13:48:21 +000076 do {
77 if (ctrlc())
78 return -EIO;
79 host->isr(0, host);
Hans de Goedee8672e32015-01-11 20:34:50 +010080 } while (urb->status == -EINPROGRESS &&
Hans de Goededc9a3912015-01-11 20:34:49 +010081 get_timer(0) < timeout);
Ilya Yanokeb819552012-11-06 13:48:21 +000082
Hans de Goedeb918a0c2015-01-11 20:34:52 +010083 if (urb->status == -EINPROGRESS)
84 musb_urb_dequeue(hcd, urb, -ETIME);
85
Ilya Yanokeb819552012-11-06 13:48:21 +000086 return urb->status;
87}
88
Hans de Goedefc85d392015-06-17 21:33:57 +020089static int _musb_submit_control_msg(struct musb_host_data *host,
90 struct usb_device *dev, unsigned long pipe,
91 void *buffer, int len, struct devrequest *setup)
Ilya Yanokeb819552012-11-06 13:48:21 +000092{
Hans de Goedefc85d392015-06-17 21:33:57 +020093 construct_urb(&host->urb, &host->hep, dev, USB_ENDPOINT_XFER_CONTROL,
94 pipe, buffer, len, setup, 0);
Ilya Yanokeb819552012-11-06 13:48:21 +000095
96 /* Fix speed for non hub-attached devices */
Hans de Goedee740ca32015-06-17 21:33:55 +020097 if (!usb_dev_get_parent(dev))
Hans de Goedefc85d392015-06-17 21:33:57 +020098 dev->speed = host->host_speed;
Ilya Yanokeb819552012-11-06 13:48:21 +000099
Hans de Goedefc85d392015-06-17 21:33:57 +0200100 return submit_urb(&host->hcd, &host->urb);
Ilya Yanokeb819552012-11-06 13:48:21 +0000101}
102
Hans de Goedefc85d392015-06-17 21:33:57 +0200103static int _musb_submit_bulk_msg(struct musb_host_data *host,
104 struct usb_device *dev, unsigned long pipe, void *buffer, int len)
Ilya Yanokeb819552012-11-06 13:48:21 +0000105{
Hans de Goedefc85d392015-06-17 21:33:57 +0200106 construct_urb(&host->urb, &host->hep, dev, USB_ENDPOINT_XFER_BULK,
107 pipe, buffer, len, NULL, 0);
108 return submit_urb(&host->hcd, &host->urb);
Ilya Yanokeb819552012-11-06 13:48:21 +0000109}
110
Hans de Goedefc85d392015-06-17 21:33:57 +0200111static int _musb_submit_int_msg(struct musb_host_data *host,
112 struct usb_device *dev, unsigned long pipe,
113 void *buffer, int len, int interval)
Ilya Yanokeb819552012-11-06 13:48:21 +0000114{
Hans de Goedefc85d392015-06-17 21:33:57 +0200115 construct_urb(&host->urb, &host->hep, dev, USB_ENDPOINT_XFER_INT, pipe,
Hans de Goedeaccf04c2015-01-11 20:34:53 +0100116 buffer, len, NULL, interval);
Hans de Goedefc85d392015-06-17 21:33:57 +0200117 return submit_urb(&host->hcd, &host->urb);
Ilya Yanokeb819552012-11-06 13:48:21 +0000118}
119
Hans de Goedefc85d392015-06-17 21:33:57 +0200120static struct int_queue *_musb_create_int_queue(struct musb_host_data *host,
121 struct usb_device *dev, unsigned long pipe, int queuesize,
122 int elementsize, void *buffer, int interval)
Hans de Goede904f2a82015-01-11 20:34:54 +0100123{
124 struct int_queue *queue;
125 int ret, index = usb_pipein(pipe) * 16 + usb_pipeendpoint(pipe);
126
127 if (queuesize != 1) {
128 printf("ERROR musb int-queues only support queuesize 1\n");
129 return NULL;
130 }
131
132 if (dev->int_pending & (1 << index)) {
133 printf("ERROR int-urb is already pending on pipe %lx\n", pipe);
134 return NULL;
135 }
136
137 queue = malloc(sizeof(*queue));
138 if (!queue)
139 return NULL;
140
141 construct_urb(&queue->urb, &queue->hep, dev, USB_ENDPOINT_XFER_INT,
142 pipe, buffer, elementsize, NULL, interval);
143
Hans de Goedefc85d392015-06-17 21:33:57 +0200144 ret = musb_urb_enqueue(&host->hcd, &queue->urb, 0);
Hans de Goede904f2a82015-01-11 20:34:54 +0100145 if (ret < 0) {
146 printf("Failed to enqueue URB to controller\n");
147 free(queue);
148 return NULL;
149 }
150
151 dev->int_pending |= 1 << index;
152 return queue;
153}
154
Hans de Goedefc85d392015-06-17 21:33:57 +0200155static int _musb_destroy_int_queue(struct musb_host_data *host,
156 struct usb_device *dev, struct int_queue *queue)
Hans de Goede904f2a82015-01-11 20:34:54 +0100157{
158 int index = usb_pipein(queue->urb.pipe) * 16 +
159 usb_pipeendpoint(queue->urb.pipe);
160
161 if (queue->urb.status == -EINPROGRESS)
Hans de Goedefc85d392015-06-17 21:33:57 +0200162 musb_urb_dequeue(&host->hcd, &queue->urb, -ETIME);
Hans de Goede904f2a82015-01-11 20:34:54 +0100163
164 dev->int_pending &= ~(1 << index);
165 free(queue);
166 return 0;
167}
168
Hans de Goedefc85d392015-06-17 21:33:57 +0200169static void *_musb_poll_int_queue(struct musb_host_data *host,
170 struct usb_device *dev, struct int_queue *queue)
Hans de Goede904f2a82015-01-11 20:34:54 +0100171{
172 if (queue->urb.status != -EINPROGRESS)
173 return NULL; /* URB has already completed in a prev. poll */
174
Hans de Goedefc85d392015-06-17 21:33:57 +0200175 host->host->isr(0, host->host);
Hans de Goede904f2a82015-01-11 20:34:54 +0100176
177 if (queue->urb.status != -EINPROGRESS)
178 return queue->urb.transfer_buffer; /* Done */
179
180 return NULL; /* URB still pending */
181}
182
Hans de Goedefc85d392015-06-17 21:33:57 +0200183static int _musb_reset_root_port(struct musb_host_data *host,
184 struct usb_device *dev)
Hans de Goede90cdc102015-01-11 20:34:51 +0100185{
Hans de Goedefc85d392015-06-17 21:33:57 +0200186 void *mbase = host->host->mregs;
Hans de Goede90cdc102015-01-11 20:34:51 +0100187 u8 power;
188
189 power = musb_readb(mbase, MUSB_POWER);
190 power &= 0xf0;
191 musb_writeb(mbase, MUSB_POWER, MUSB_POWER_RESET | power);
192 mdelay(50);
Hans de Goede246e3b82015-03-27 20:54:25 +0100193#ifdef CONFIG_ARCH_SUNXI
194 /*
195 * sunxi phy has a bug and it will wrongly detect high speed squelch
196 * when clearing reset on low-speed devices, temporary disable
197 * squelch detection to work around this.
198 */
Hans de Goede7b798652015-04-27 14:54:47 +0200199 sunxi_usb_phy_enable_squelch_detect(0, 0);
Hans de Goede246e3b82015-03-27 20:54:25 +0100200#endif
Hans de Goede90cdc102015-01-11 20:34:51 +0100201 power = musb_readb(mbase, MUSB_POWER);
202 musb_writeb(mbase, MUSB_POWER, ~MUSB_POWER_RESET & power);
Hans de Goede246e3b82015-03-27 20:54:25 +0100203#ifdef CONFIG_ARCH_SUNXI
Hans de Goede7b798652015-04-27 14:54:47 +0200204 sunxi_usb_phy_enable_squelch_detect(0, 1);
Hans de Goede246e3b82015-03-27 20:54:25 +0100205#endif
Hans de Goedefc85d392015-06-17 21:33:57 +0200206 host->host->isr(0, host->host);
207 host->host_speed = (musb_readb(mbase, MUSB_POWER) & MUSB_POWER_HSMODE) ?
Hans de Goede90cdc102015-01-11 20:34:51 +0100208 USB_SPEED_HIGH :
209 (musb_readb(mbase, MUSB_DEVCTL) & MUSB_DEVCTL_FSDEV) ?
210 USB_SPEED_FULL : USB_SPEED_LOW;
Hans de Goedefc85d392015-06-17 21:33:57 +0200211 mdelay((host->host_speed == USB_SPEED_LOW) ? 200 : 50);
Simon Glassde312132015-03-25 12:21:59 -0600212
213 return 0;
Hans de Goede90cdc102015-01-11 20:34:51 +0100214}
215
Hans de Goedefc85d392015-06-17 21:33:57 +0200216int musb_lowlevel_init(struct musb_host_data *host)
Ilya Yanokeb819552012-11-06 13:48:21 +0000217{
Ilya Yanokeb819552012-11-06 13:48:21 +0000218 void *mbase;
Hans de Goededc9a3912015-01-11 20:34:49 +0100219 /* USB spec says it may take up to 1 second for a device to connect */
220 unsigned long timeout = get_timer(0) + 1000;
Hans de Goede15837232015-06-17 21:33:54 +0200221 int ret;
Ilya Yanokeb819552012-11-06 13:48:21 +0000222
Hans de Goedefc85d392015-06-17 21:33:57 +0200223 if (!host->host) {
Ilya Yanokeb819552012-11-06 13:48:21 +0000224 printf("MUSB host is not registered\n");
225 return -ENODEV;
226 }
227
Hans de Goedefc85d392015-06-17 21:33:57 +0200228 ret = musb_start(host->host);
Hans de Goede15837232015-06-17 21:33:54 +0200229 if (ret)
230 return ret;
231
Hans de Goedefc85d392015-06-17 21:33:57 +0200232 mbase = host->host->mregs;
Ilya Yanokeb819552012-11-06 13:48:21 +0000233 do {
234 if (musb_readb(mbase, MUSB_DEVCTL) & MUSB_DEVCTL_HM)
235 break;
Hans de Goededc9a3912015-01-11 20:34:49 +0100236 } while (get_timer(0) < timeout);
237 if (get_timer(0) >= timeout)
Ilya Yanokeb819552012-11-06 13:48:21 +0000238 return -ENODEV;
239
Hans de Goedefc85d392015-06-17 21:33:57 +0200240 _musb_reset_root_port(host, NULL);
241 host->host->is_active = 1;
242 host->hcd.hcd_priv = host->host;
Ilya Yanokeb819552012-11-06 13:48:21 +0000243
244 return 0;
245}
246
247int usb_lowlevel_stop(int index)
248{
Hans de Goedefc85d392015-06-17 21:33:57 +0200249 if (!musb_host.host) {
Ilya Yanokeb819552012-11-06 13:48:21 +0000250 printf("MUSB host is not registered\n");
251 return -ENODEV;
252 }
253
Hans de Goedefc85d392015-06-17 21:33:57 +0200254 musb_stop(musb_host.host);
Ilya Yanokeb819552012-11-06 13:48:21 +0000255 return 0;
256}
Hans de Goede13982522015-06-17 21:33:56 +0200257
258int submit_bulk_msg(struct usb_device *dev, unsigned long pipe,
259 void *buffer, int length)
260{
Hans de Goedefc85d392015-06-17 21:33:57 +0200261 return _musb_submit_bulk_msg(&musb_host, dev, pipe, buffer, length);
Hans de Goede13982522015-06-17 21:33:56 +0200262}
263
264int submit_control_msg(struct usb_device *dev, unsigned long pipe,
265 void *buffer, int length, struct devrequest *setup)
266{
Hans de Goedefc85d392015-06-17 21:33:57 +0200267 return _musb_submit_control_msg(&musb_host, dev, pipe, buffer, length, setup);
Hans de Goede13982522015-06-17 21:33:56 +0200268}
269
270int submit_int_msg(struct usb_device *dev, unsigned long pipe,
271 void *buffer, int length, int interval)
272{
Hans de Goedefc85d392015-06-17 21:33:57 +0200273 return _musb_submit_int_msg(&musb_host, dev, pipe, buffer, length, interval);
Hans de Goede13982522015-06-17 21:33:56 +0200274}
275
276struct int_queue *create_int_queue(struct usb_device *dev,
277 unsigned long pipe, int queuesize, int elementsize,
278 void *buffer, int interval)
279{
Hans de Goedefc85d392015-06-17 21:33:57 +0200280 return _musb_create_int_queue(&musb_host, dev, pipe, queuesize, elementsize,
Hans de Goede13982522015-06-17 21:33:56 +0200281 buffer, interval);
282}
283
284void *poll_int_queue(struct usb_device *dev, struct int_queue *queue)
285{
Hans de Goedefc85d392015-06-17 21:33:57 +0200286 return _musb_poll_int_queue(&musb_host, dev, queue);
Hans de Goede13982522015-06-17 21:33:56 +0200287}
288
289int destroy_int_queue(struct usb_device *dev, struct int_queue *queue)
290{
Hans de Goedefc85d392015-06-17 21:33:57 +0200291 return _musb_destroy_int_queue(&musb_host, dev, queue);
Hans de Goede13982522015-06-17 21:33:56 +0200292}
293
294int usb_reset_root_port(struct usb_device *dev)
295{
Hans de Goedefc85d392015-06-17 21:33:57 +0200296 return _musb_reset_root_port(&musb_host, dev);
Hans de Goede13982522015-06-17 21:33:56 +0200297}
298
299int usb_lowlevel_init(int index, enum usb_init_type init, void **controller)
300{
Hans de Goedefc85d392015-06-17 21:33:57 +0200301 return musb_lowlevel_init(&musb_host);
Hans de Goede13982522015-06-17 21:33:56 +0200302}
Ilya Yanokeb819552012-11-06 13:48:21 +0000303#endif /* CONFIG_MUSB_HOST */
304
305#ifdef CONFIG_MUSB_GADGET
306static struct musb *gadget;
307
Kishon Vijay Abraham I2d48aa62015-02-23 18:40:23 +0530308int usb_gadget_handle_interrupts(int index)
Ilya Yanokeb819552012-11-06 13:48:21 +0000309{
Heiko Schocher7a342782013-06-04 11:10:01 +0200310 WATCHDOG_RESET();
Ilya Yanokeb819552012-11-06 13:48:21 +0000311 if (!gadget || !gadget->isr)
312 return -EINVAL;
313
314 return gadget->isr(0, gadget);
315}
316
317int usb_gadget_register_driver(struct usb_gadget_driver *driver)
318{
319 int ret;
320
Bin Liu76b09b82013-03-21 05:27:49 +0000321 if (!driver || driver->speed < USB_SPEED_FULL || !driver->bind ||
Ilya Yanokeb819552012-11-06 13:48:21 +0000322 !driver->setup) {
323 printf("bad parameter.\n");
324 return -EINVAL;
325 }
326
327 if (!gadget) {
328 printf("Controller uninitialized\n");
329 return -ENXIO;
330 }
331
332 ret = musb_gadget_start(&gadget->g, driver);
333 if (ret < 0) {
334 printf("gadget_start failed with %d\n", ret);
335 return ret;
336 }
337
338 ret = driver->bind(&gadget->g);
339 if (ret < 0) {
340 printf("bind failed with %d\n", ret);
341 return ret;
342 }
343
344 return 0;
345}
346
347int usb_gadget_unregister_driver(struct usb_gadget_driver *driver)
348{
Rob Herring078d7302014-04-18 08:54:30 -0500349 if (driver->disconnect)
350 driver->disconnect(&gadget->g);
351 if (driver->unbind)
352 driver->unbind(&gadget->g);
Ilya Yanokeb819552012-11-06 13:48:21 +0000353 return 0;
354}
355#endif /* CONFIG_MUSB_GADGET */
356
357int musb_register(struct musb_hdrc_platform_data *plat, void *bdata,
358 void *ctl_regs)
359{
360 struct musb **musbp;
361
362 switch (plat->mode) {
363#ifdef CONFIG_MUSB_HOST
364 case MUSB_HOST:
Hans de Goedefc85d392015-06-17 21:33:57 +0200365 musbp = &musb_host.host;
Ilya Yanokeb819552012-11-06 13:48:21 +0000366 break;
367#endif
368#ifdef CONFIG_MUSB_GADGET
369 case MUSB_PERIPHERAL:
370 musbp = &gadget;
371 break;
372#endif
373 default:
374 return -EINVAL;
375 }
376
377 *musbp = musb_init_controller(plat, (struct device *)bdata, ctl_regs);
378 if (!musbp) {
379 printf("Failed to init the controller\n");
380 return -EIO;
381 }
382
383 return 0;
384}