b44c83d90c0e60ca75801ee3208b07e61fdc46b3
[deliverable/linux.git] / drivers / usb / gadget / ci13xxx_udc.c
1 /*
2 * ci13xxx_udc.c - MIPS USB IP core family device controller
3 *
4 * Copyright (C) 2008 Chipidea - MIPS Technologies, Inc. All rights reserved.
5 *
6 * Author: David Lopo
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13 /*
14 * Description: MIPS USB IP core family device controller
15 * Currently it only supports IP part number CI13412
16 *
17 * This driver is composed of several blocks:
18 * - HW: hardware interface
19 * - DBG: debug facilities (optional)
20 * - UTIL: utilities
21 * - ISR: interrupts handling
22 * - ENDPT: endpoint operations (Gadget API)
23 * - GADGET: gadget operations (Gadget API)
24 * - BUS: bus glue code, bus abstraction layer
25 *
26 * Compile Options
27 * - CONFIG_USB_GADGET_DEBUG_FILES: enable debug facilities
28 * - STALL_IN: non-empty bulk-in pipes cannot be halted
29 * if defined mass storage compliance succeeds but with warnings
30 * => case 4: Hi > Dn
31 * => case 5: Hi > Di
32 * => case 8: Hi <> Do
33 * if undefined usbtest 13 fails
34 * - TRACE: enable function tracing (depends on DEBUG)
35 *
36 * Main Features
37 * - Chapter 9 & Mass Storage Compliance with Gadget File Storage
38 * - Chapter 9 Compliance with Gadget Zero (STALL_IN undefined)
39 * - Normal & LPM support
40 *
41 * USBTEST Report
42 * - OK: 0-12, 13 (STALL_IN defined) & 14
43 * - Not Supported: 15 & 16 (ISO)
44 *
45 * TODO List
46 * - OTG
47 * - Isochronous & Interrupt Traffic
48 * - Handle requests which spawns into several TDs
49 * - GET_STATUS(device) - always reports 0
50 * - Gadget API (majority of optional features)
51 * - Suspend & Remote Wakeup
52 */
53 #include <linux/delay.h>
54 #include <linux/device.h>
55 #include <linux/dmapool.h>
56 #include <linux/dma-mapping.h>
57 #include <linux/init.h>
58 #include <linux/interrupt.h>
59 #include <linux/io.h>
60 #include <linux/irq.h>
61 #include <linux/kernel.h>
62 #include <linux/slab.h>
63 #include <linux/pm_runtime.h>
64 #include <linux/usb/ch9.h>
65 #include <linux/usb/gadget.h>
66 #include <linux/usb/otg.h>
67
68 #include "ci13xxx_udc.h"
69
70
71 /******************************************************************************
72 * DEFINE
73 *****************************************************************************/
74
75 #define DMA_ADDR_INVALID (~(dma_addr_t)0)
76
77 /* ctrl register bank access */
78 static DEFINE_SPINLOCK(udc_lock);
79
80 /* control endpoint description */
81 static const struct usb_endpoint_descriptor
82 ctrl_endpt_out_desc = {
83 .bLength = USB_DT_ENDPOINT_SIZE,
84 .bDescriptorType = USB_DT_ENDPOINT,
85
86 .bEndpointAddress = USB_DIR_OUT,
87 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
88 .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX),
89 };
90
91 static const struct usb_endpoint_descriptor
92 ctrl_endpt_in_desc = {
93 .bLength = USB_DT_ENDPOINT_SIZE,
94 .bDescriptorType = USB_DT_ENDPOINT,
95
96 .bEndpointAddress = USB_DIR_IN,
97 .bmAttributes = USB_ENDPOINT_XFER_CONTROL,
98 .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX),
99 };
100
101 /* UDC descriptor */
102 static struct ci13xxx *_udc;
103
104 /* Interrupt statistics */
105 #define ISR_MASK 0x1F
106 static struct {
107 u32 test;
108 u32 ui;
109 u32 uei;
110 u32 pci;
111 u32 uri;
112 u32 sli;
113 u32 none;
114 struct {
115 u32 cnt;
116 u32 buf[ISR_MASK+1];
117 u32 idx;
118 } hndl;
119 } isr_statistics;
120
121 /**
122 * ffs_nr: find first (least significant) bit set
123 * @x: the word to search
124 *
125 * This function returns bit number (instead of position)
126 */
127 static int ffs_nr(u32 x)
128 {
129 int n = ffs(x);
130
131 return n ? n-1 : 32;
132 }
133
134 /******************************************************************************
135 * HW block
136 *****************************************************************************/
137 /* register bank descriptor */
138 static struct {
139 unsigned lpm; /* is LPM? */
140 void __iomem *abs; /* bus map offset */
141 void __iomem *cap; /* bus map offset + CAP offset + CAP data */
142 size_t size; /* bank size */
143 } hw_bank;
144
145 /* MSM specific */
146 #define ABS_AHBBURST (0x0090UL)
147 #define ABS_AHBMODE (0x0098UL)
148 /* UDC register map */
149 #define ABS_CAPLENGTH (0x100UL)
150 #define ABS_HCCPARAMS (0x108UL)
151 #define ABS_DCCPARAMS (0x124UL)
152 #define ABS_TESTMODE (hw_bank.lpm ? 0x0FCUL : 0x138UL)
153 /* offset to CAPLENTGH (addr + data) */
154 #define CAP_USBCMD (0x000UL)
155 #define CAP_USBSTS (0x004UL)
156 #define CAP_USBINTR (0x008UL)
157 #define CAP_DEVICEADDR (0x014UL)
158 #define CAP_ENDPTLISTADDR (0x018UL)
159 #define CAP_PORTSC (0x044UL)
160 #define CAP_DEVLC (0x084UL)
161 #define CAP_USBMODE (hw_bank.lpm ? 0x0C8UL : 0x068UL)
162 #define CAP_ENDPTSETUPSTAT (hw_bank.lpm ? 0x0D8UL : 0x06CUL)
163 #define CAP_ENDPTPRIME (hw_bank.lpm ? 0x0DCUL : 0x070UL)
164 #define CAP_ENDPTFLUSH (hw_bank.lpm ? 0x0E0UL : 0x074UL)
165 #define CAP_ENDPTSTAT (hw_bank.lpm ? 0x0E4UL : 0x078UL)
166 #define CAP_ENDPTCOMPLETE (hw_bank.lpm ? 0x0E8UL : 0x07CUL)
167 #define CAP_ENDPTCTRL (hw_bank.lpm ? 0x0ECUL : 0x080UL)
168 #define CAP_LAST (hw_bank.lpm ? 0x12CUL : 0x0C0UL)
169
170 /* maximum number of enpoints: valid only after hw_device_reset() */
171 static unsigned hw_ep_max;
172
173 /**
174 * hw_ep_bit: calculates the bit number
175 * @num: endpoint number
176 * @dir: endpoint direction
177 *
178 * This function returns bit number
179 */
180 static inline int hw_ep_bit(int num, int dir)
181 {
182 return num + (dir ? 16 : 0);
183 }
184
185 static int ep_to_bit(int n)
186 {
187 int fill = 16 - hw_ep_max / 2;
188
189 if (n >= hw_ep_max / 2)
190 n += fill;
191
192 return n;
193 }
194
195 /**
196 * hw_aread: reads from register bitfield
197 * @addr: address relative to bus map
198 * @mask: bitfield mask
199 *
200 * This function returns register bitfield data
201 */
202 static u32 hw_aread(u32 addr, u32 mask)
203 {
204 return ioread32(addr + hw_bank.abs) & mask;
205 }
206
207 /**
208 * hw_awrite: writes to register bitfield
209 * @addr: address relative to bus map
210 * @mask: bitfield mask
211 * @data: new data
212 */
213 static void hw_awrite(u32 addr, u32 mask, u32 data)
214 {
215 iowrite32(hw_aread(addr, ~mask) | (data & mask),
216 addr + hw_bank.abs);
217 }
218
219 /**
220 * hw_cread: reads from register bitfield
221 * @addr: address relative to CAP offset plus content
222 * @mask: bitfield mask
223 *
224 * This function returns register bitfield data
225 */
226 static u32 hw_cread(u32 addr, u32 mask)
227 {
228 return ioread32(addr + hw_bank.cap) & mask;
229 }
230
231 /**
232 * hw_cwrite: writes to register bitfield
233 * @addr: address relative to CAP offset plus content
234 * @mask: bitfield mask
235 * @data: new data
236 */
237 static void hw_cwrite(u32 addr, u32 mask, u32 data)
238 {
239 iowrite32(hw_cread(addr, ~mask) | (data & mask),
240 addr + hw_bank.cap);
241 }
242
243 /**
244 * hw_ctest_and_clear: tests & clears register bitfield
245 * @addr: address relative to CAP offset plus content
246 * @mask: bitfield mask
247 *
248 * This function returns register bitfield data
249 */
250 static u32 hw_ctest_and_clear(u32 addr, u32 mask)
251 {
252 u32 reg = hw_cread(addr, mask);
253
254 iowrite32(reg, addr + hw_bank.cap);
255 return reg;
256 }
257
258 /**
259 * hw_ctest_and_write: tests & writes register bitfield
260 * @addr: address relative to CAP offset plus content
261 * @mask: bitfield mask
262 * @data: new data
263 *
264 * This function returns register bitfield data
265 */
266 static u32 hw_ctest_and_write(u32 addr, u32 mask, u32 data)
267 {
268 u32 reg = hw_cread(addr, ~0);
269
270 iowrite32((reg & ~mask) | (data & mask), addr + hw_bank.cap);
271 return (reg & mask) >> ffs_nr(mask);
272 }
273
274 static int hw_device_init(void __iomem *base)
275 {
276 u32 reg;
277
278 /* bank is a module variable */
279 hw_bank.abs = base;
280
281 hw_bank.cap = hw_bank.abs;
282 hw_bank.cap += ABS_CAPLENGTH;
283 hw_bank.cap += ioread8(hw_bank.cap);
284
285 reg = hw_aread(ABS_HCCPARAMS, HCCPARAMS_LEN) >> ffs_nr(HCCPARAMS_LEN);
286 hw_bank.lpm = reg;
287 hw_bank.size = hw_bank.cap - hw_bank.abs;
288 hw_bank.size += CAP_LAST;
289 hw_bank.size /= sizeof(u32);
290
291 reg = hw_aread(ABS_DCCPARAMS, DCCPARAMS_DEN) >> ffs_nr(DCCPARAMS_DEN);
292 hw_ep_max = reg * 2; /* cache hw ENDPT_MAX */
293
294 if (hw_ep_max == 0 || hw_ep_max > ENDPT_MAX)
295 return -ENODEV;
296
297 /* setup lock mode ? */
298
299 /* ENDPTSETUPSTAT is '0' by default */
300
301 /* HCSPARAMS.bf.ppc SHOULD BE zero for device */
302
303 return 0;
304 }
305 /**
306 * hw_device_reset: resets chip (execute without interruption)
307 * @base: register base address
308 *
309 * This function returns an error code
310 */
311 static int hw_device_reset(struct ci13xxx *udc)
312 {
313 /* should flush & stop before reset */
314 hw_cwrite(CAP_ENDPTFLUSH, ~0, ~0);
315 hw_cwrite(CAP_USBCMD, USBCMD_RS, 0);
316
317 hw_cwrite(CAP_USBCMD, USBCMD_RST, USBCMD_RST);
318 while (hw_cread(CAP_USBCMD, USBCMD_RST))
319 udelay(10); /* not RTOS friendly */
320
321
322 if (udc->udc_driver->notify_event)
323 udc->udc_driver->notify_event(udc,
324 CI13XXX_CONTROLLER_RESET_EVENT);
325
326 if (udc->udc_driver->flags & CI13XXX_DISABLE_STREAMING)
327 hw_cwrite(CAP_USBMODE, USBMODE_SDIS, USBMODE_SDIS);
328
329 /* USBMODE should be configured step by step */
330 hw_cwrite(CAP_USBMODE, USBMODE_CM, USBMODE_CM_IDLE);
331 hw_cwrite(CAP_USBMODE, USBMODE_CM, USBMODE_CM_DEVICE);
332 hw_cwrite(CAP_USBMODE, USBMODE_SLOM, USBMODE_SLOM); /* HW >= 2.3 */
333
334 if (hw_cread(CAP_USBMODE, USBMODE_CM) != USBMODE_CM_DEVICE) {
335 pr_err("cannot enter in device mode");
336 pr_err("lpm = %i", hw_bank.lpm);
337 return -ENODEV;
338 }
339
340 return 0;
341 }
342
343 /**
344 * hw_device_state: enables/disables interrupts & starts/stops device (execute
345 * without interruption)
346 * @dma: 0 => disable, !0 => enable and set dma engine
347 *
348 * This function returns an error code
349 */
350 static int hw_device_state(u32 dma)
351 {
352 if (dma) {
353 hw_cwrite(CAP_ENDPTLISTADDR, ~0, dma);
354 /* interrupt, error, port change, reset, sleep/suspend */
355 hw_cwrite(CAP_USBINTR, ~0,
356 USBi_UI|USBi_UEI|USBi_PCI|USBi_URI|USBi_SLI);
357 hw_cwrite(CAP_USBCMD, USBCMD_RS, USBCMD_RS);
358 } else {
359 hw_cwrite(CAP_USBCMD, USBCMD_RS, 0);
360 hw_cwrite(CAP_USBINTR, ~0, 0);
361 }
362 return 0;
363 }
364
365 /**
366 * hw_ep_flush: flush endpoint fifo (execute without interruption)
367 * @num: endpoint number
368 * @dir: endpoint direction
369 *
370 * This function returns an error code
371 */
372 static int hw_ep_flush(int num, int dir)
373 {
374 int n = hw_ep_bit(num, dir);
375
376 do {
377 /* flush any pending transfer */
378 hw_cwrite(CAP_ENDPTFLUSH, BIT(n), BIT(n));
379 while (hw_cread(CAP_ENDPTFLUSH, BIT(n)))
380 cpu_relax();
381 } while (hw_cread(CAP_ENDPTSTAT, BIT(n)));
382
383 return 0;
384 }
385
386 /**
387 * hw_ep_disable: disables endpoint (execute without interruption)
388 * @num: endpoint number
389 * @dir: endpoint direction
390 *
391 * This function returns an error code
392 */
393 static int hw_ep_disable(int num, int dir)
394 {
395 hw_ep_flush(num, dir);
396 hw_cwrite(CAP_ENDPTCTRL + num * sizeof(u32),
397 dir ? ENDPTCTRL_TXE : ENDPTCTRL_RXE, 0);
398 return 0;
399 }
400
401 /**
402 * hw_ep_enable: enables endpoint (execute without interruption)
403 * @num: endpoint number
404 * @dir: endpoint direction
405 * @type: endpoint type
406 *
407 * This function returns an error code
408 */
409 static int hw_ep_enable(int num, int dir, int type)
410 {
411 u32 mask, data;
412
413 if (dir) {
414 mask = ENDPTCTRL_TXT; /* type */
415 data = type << ffs_nr(mask);
416
417 mask |= ENDPTCTRL_TXS; /* unstall */
418 mask |= ENDPTCTRL_TXR; /* reset data toggle */
419 data |= ENDPTCTRL_TXR;
420 mask |= ENDPTCTRL_TXE; /* enable */
421 data |= ENDPTCTRL_TXE;
422 } else {
423 mask = ENDPTCTRL_RXT; /* type */
424 data = type << ffs_nr(mask);
425
426 mask |= ENDPTCTRL_RXS; /* unstall */
427 mask |= ENDPTCTRL_RXR; /* reset data toggle */
428 data |= ENDPTCTRL_RXR;
429 mask |= ENDPTCTRL_RXE; /* enable */
430 data |= ENDPTCTRL_RXE;
431 }
432 hw_cwrite(CAP_ENDPTCTRL + num * sizeof(u32), mask, data);
433 return 0;
434 }
435
436 /**
437 * hw_ep_get_halt: return endpoint halt status
438 * @num: endpoint number
439 * @dir: endpoint direction
440 *
441 * This function returns 1 if endpoint halted
442 */
443 static int hw_ep_get_halt(int num, int dir)
444 {
445 u32 mask = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
446
447 return hw_cread(CAP_ENDPTCTRL + num * sizeof(u32), mask) ? 1 : 0;
448 }
449
450 /**
451 * hw_test_and_clear_setup_status: test & clear setup status (execute without
452 * interruption)
453 * @n: endpoint number
454 *
455 * This function returns setup status
456 */
457 static int hw_test_and_clear_setup_status(int n)
458 {
459 n = ep_to_bit(n);
460 return hw_ctest_and_clear(CAP_ENDPTSETUPSTAT, BIT(n));
461 }
462
463 /**
464 * hw_ep_prime: primes endpoint (execute without interruption)
465 * @num: endpoint number
466 * @dir: endpoint direction
467 * @is_ctrl: true if control endpoint
468 *
469 * This function returns an error code
470 */
471 static int hw_ep_prime(int num, int dir, int is_ctrl)
472 {
473 int n = hw_ep_bit(num, dir);
474
475 if (is_ctrl && dir == RX && hw_cread(CAP_ENDPTSETUPSTAT, BIT(num)))
476 return -EAGAIN;
477
478 hw_cwrite(CAP_ENDPTPRIME, BIT(n), BIT(n));
479
480 while (hw_cread(CAP_ENDPTPRIME, BIT(n)))
481 cpu_relax();
482 if (is_ctrl && dir == RX && hw_cread(CAP_ENDPTSETUPSTAT, BIT(num)))
483 return -EAGAIN;
484
485 /* status shoult be tested according with manual but it doesn't work */
486 return 0;
487 }
488
489 /**
490 * hw_ep_set_halt: configures ep halt & resets data toggle after clear (execute
491 * without interruption)
492 * @num: endpoint number
493 * @dir: endpoint direction
494 * @value: true => stall, false => unstall
495 *
496 * This function returns an error code
497 */
498 static int hw_ep_set_halt(int num, int dir, int value)
499 {
500 if (value != 0 && value != 1)
501 return -EINVAL;
502
503 do {
504 u32 addr = CAP_ENDPTCTRL + num * sizeof(u32);
505 u32 mask_xs = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS;
506 u32 mask_xr = dir ? ENDPTCTRL_TXR : ENDPTCTRL_RXR;
507
508 /* data toggle - reserved for EP0 but it's in ESS */
509 hw_cwrite(addr, mask_xs|mask_xr, value ? mask_xs : mask_xr);
510
511 } while (value != hw_ep_get_halt(num, dir));
512
513 return 0;
514 }
515
516 /**
517 * hw_intr_clear: disables interrupt & clears interrupt status (execute without
518 * interruption)
519 * @n: interrupt bit
520 *
521 * This function returns an error code
522 */
523 static int hw_intr_clear(int n)
524 {
525 if (n >= REG_BITS)
526 return -EINVAL;
527
528 hw_cwrite(CAP_USBINTR, BIT(n), 0);
529 hw_cwrite(CAP_USBSTS, BIT(n), BIT(n));
530 return 0;
531 }
532
533 /**
534 * hw_intr_force: enables interrupt & forces interrupt status (execute without
535 * interruption)
536 * @n: interrupt bit
537 *
538 * This function returns an error code
539 */
540 static int hw_intr_force(int n)
541 {
542 if (n >= REG_BITS)
543 return -EINVAL;
544
545 hw_awrite(ABS_TESTMODE, TESTMODE_FORCE, TESTMODE_FORCE);
546 hw_cwrite(CAP_USBINTR, BIT(n), BIT(n));
547 hw_cwrite(CAP_USBSTS, BIT(n), BIT(n));
548 hw_awrite(ABS_TESTMODE, TESTMODE_FORCE, 0);
549 return 0;
550 }
551
552 /**
553 * hw_is_port_high_speed: test if port is high speed
554 *
555 * This function returns true if high speed port
556 */
557 static int hw_port_is_high_speed(void)
558 {
559 return hw_bank.lpm ? hw_cread(CAP_DEVLC, DEVLC_PSPD) :
560 hw_cread(CAP_PORTSC, PORTSC_HSP);
561 }
562
563 /**
564 * hw_port_test_get: reads port test mode value
565 *
566 * This function returns port test mode value
567 */
568 static u8 hw_port_test_get(void)
569 {
570 return hw_cread(CAP_PORTSC, PORTSC_PTC) >> ffs_nr(PORTSC_PTC);
571 }
572
573 /**
574 * hw_port_test_set: writes port test mode (execute without interruption)
575 * @mode: new value
576 *
577 * This function returns an error code
578 */
579 static int hw_port_test_set(u8 mode)
580 {
581 const u8 TEST_MODE_MAX = 7;
582
583 if (mode > TEST_MODE_MAX)
584 return -EINVAL;
585
586 hw_cwrite(CAP_PORTSC, PORTSC_PTC, mode << ffs_nr(PORTSC_PTC));
587 return 0;
588 }
589
590 /**
591 * hw_read_intr_enable: returns interrupt enable register
592 *
593 * This function returns register data
594 */
595 static u32 hw_read_intr_enable(void)
596 {
597 return hw_cread(CAP_USBINTR, ~0);
598 }
599
600 /**
601 * hw_read_intr_status: returns interrupt status register
602 *
603 * This function returns register data
604 */
605 static u32 hw_read_intr_status(void)
606 {
607 return hw_cread(CAP_USBSTS, ~0);
608 }
609
610 /**
611 * hw_register_read: reads all device registers (execute without interruption)
612 * @buf: destination buffer
613 * @size: buffer size
614 *
615 * This function returns number of registers read
616 */
617 static size_t hw_register_read(u32 *buf, size_t size)
618 {
619 unsigned i;
620
621 if (size > hw_bank.size)
622 size = hw_bank.size;
623
624 for (i = 0; i < size; i++)
625 buf[i] = hw_aread(i * sizeof(u32), ~0);
626
627 return size;
628 }
629
630 /**
631 * hw_register_write: writes to register
632 * @addr: register address
633 * @data: register value
634 *
635 * This function returns an error code
636 */
637 static int hw_register_write(u16 addr, u32 data)
638 {
639 /* align */
640 addr /= sizeof(u32);
641
642 if (addr >= hw_bank.size)
643 return -EINVAL;
644
645 /* align */
646 addr *= sizeof(u32);
647
648 hw_awrite(addr, ~0, data);
649 return 0;
650 }
651
652 /**
653 * hw_test_and_clear_complete: test & clear complete status (execute without
654 * interruption)
655 * @n: endpoint number
656 *
657 * This function returns complete status
658 */
659 static int hw_test_and_clear_complete(int n)
660 {
661 n = ep_to_bit(n);
662 return hw_ctest_and_clear(CAP_ENDPTCOMPLETE, BIT(n));
663 }
664
665 /**
666 * hw_test_and_clear_intr_active: test & clear active interrupts (execute
667 * without interruption)
668 *
669 * This function returns active interrutps
670 */
671 static u32 hw_test_and_clear_intr_active(void)
672 {
673 u32 reg = hw_read_intr_status() & hw_read_intr_enable();
674
675 hw_cwrite(CAP_USBSTS, ~0, reg);
676 return reg;
677 }
678
679 /**
680 * hw_test_and_clear_setup_guard: test & clear setup guard (execute without
681 * interruption)
682 *
683 * This function returns guard value
684 */
685 static int hw_test_and_clear_setup_guard(void)
686 {
687 return hw_ctest_and_write(CAP_USBCMD, USBCMD_SUTW, 0);
688 }
689
690 /**
691 * hw_test_and_set_setup_guard: test & set setup guard (execute without
692 * interruption)
693 *
694 * This function returns guard value
695 */
696 static int hw_test_and_set_setup_guard(void)
697 {
698 return hw_ctest_and_write(CAP_USBCMD, USBCMD_SUTW, USBCMD_SUTW);
699 }
700
701 /**
702 * hw_usb_set_address: configures USB address (execute without interruption)
703 * @value: new USB address
704 *
705 * This function returns an error code
706 */
707 static int hw_usb_set_address(u8 value)
708 {
709 /* advance */
710 hw_cwrite(CAP_DEVICEADDR, DEVICEADDR_USBADR | DEVICEADDR_USBADRA,
711 value << ffs_nr(DEVICEADDR_USBADR) | DEVICEADDR_USBADRA);
712 return 0;
713 }
714
715 /**
716 * hw_usb_reset: restart device after a bus reset (execute without
717 * interruption)
718 *
719 * This function returns an error code
720 */
721 static int hw_usb_reset(void)
722 {
723 hw_usb_set_address(0);
724
725 /* ESS flushes only at end?!? */
726 hw_cwrite(CAP_ENDPTFLUSH, ~0, ~0); /* flush all EPs */
727
728 /* clear setup token semaphores */
729 hw_cwrite(CAP_ENDPTSETUPSTAT, 0, 0); /* writes its content */
730
731 /* clear complete status */
732 hw_cwrite(CAP_ENDPTCOMPLETE, 0, 0); /* writes its content */
733
734 /* wait until all bits cleared */
735 while (hw_cread(CAP_ENDPTPRIME, ~0))
736 udelay(10); /* not RTOS friendly */
737
738 /* reset all endpoints ? */
739
740 /* reset internal status and wait for further instructions
741 no need to verify the port reset status (ESS does it) */
742
743 return 0;
744 }
745
746 /******************************************************************************
747 * DBG block
748 *****************************************************************************/
749 /**
750 * show_device: prints information about device capabilities and status
751 *
752 * Check "device.h" for details
753 */
754 static ssize_t show_device(struct device *dev, struct device_attribute *attr,
755 char *buf)
756 {
757 struct ci13xxx *udc = container_of(dev, struct ci13xxx, gadget.dev);
758 struct usb_gadget *gadget = &udc->gadget;
759 int n = 0;
760
761 dbg_trace("[%s] %p\n", __func__, buf);
762 if (attr == NULL || buf == NULL) {
763 dev_err(dev, "[%s] EINVAL\n", __func__);
764 return 0;
765 }
766
767 n += scnprintf(buf + n, PAGE_SIZE - n, "speed = %d\n",
768 gadget->speed);
769 n += scnprintf(buf + n, PAGE_SIZE - n, "max_speed = %d\n",
770 gadget->max_speed);
771 /* TODO: Scheduled for removal in 3.8. */
772 n += scnprintf(buf + n, PAGE_SIZE - n, "is_dualspeed = %d\n",
773 gadget_is_dualspeed(gadget));
774 n += scnprintf(buf + n, PAGE_SIZE - n, "is_otg = %d\n",
775 gadget->is_otg);
776 n += scnprintf(buf + n, PAGE_SIZE - n, "is_a_peripheral = %d\n",
777 gadget->is_a_peripheral);
778 n += scnprintf(buf + n, PAGE_SIZE - n, "b_hnp_enable = %d\n",
779 gadget->b_hnp_enable);
780 n += scnprintf(buf + n, PAGE_SIZE - n, "a_hnp_support = %d\n",
781 gadget->a_hnp_support);
782 n += scnprintf(buf + n, PAGE_SIZE - n, "a_alt_hnp_support = %d\n",
783 gadget->a_alt_hnp_support);
784 n += scnprintf(buf + n, PAGE_SIZE - n, "name = %s\n",
785 (gadget->name ? gadget->name : ""));
786
787 return n;
788 }
789 static DEVICE_ATTR(device, S_IRUSR, show_device, NULL);
790
791 /**
792 * show_driver: prints information about attached gadget (if any)
793 *
794 * Check "device.h" for details
795 */
796 static ssize_t show_driver(struct device *dev, struct device_attribute *attr,
797 char *buf)
798 {
799 struct ci13xxx *udc = container_of(dev, struct ci13xxx, gadget.dev);
800 struct usb_gadget_driver *driver = udc->driver;
801 int n = 0;
802
803 dbg_trace("[%s] %p\n", __func__, buf);
804 if (attr == NULL || buf == NULL) {
805 dev_err(dev, "[%s] EINVAL\n", __func__);
806 return 0;
807 }
808
809 if (driver == NULL)
810 return scnprintf(buf, PAGE_SIZE,
811 "There is no gadget attached!\n");
812
813 n += scnprintf(buf + n, PAGE_SIZE - n, "function = %s\n",
814 (driver->function ? driver->function : ""));
815 n += scnprintf(buf + n, PAGE_SIZE - n, "max speed = %d\n",
816 driver->max_speed);
817
818 return n;
819 }
820 static DEVICE_ATTR(driver, S_IRUSR, show_driver, NULL);
821
822 /* Maximum event message length */
823 #define DBG_DATA_MSG 64UL
824
825 /* Maximum event messages */
826 #define DBG_DATA_MAX 128UL
827
828 /* Event buffer descriptor */
829 static struct {
830 char (buf[DBG_DATA_MAX])[DBG_DATA_MSG]; /* buffer */
831 unsigned idx; /* index */
832 unsigned tty; /* print to console? */
833 rwlock_t lck; /* lock */
834 } dbg_data = {
835 .idx = 0,
836 .tty = 0,
837 .lck = __RW_LOCK_UNLOCKED(lck)
838 };
839
840 /**
841 * dbg_dec: decrements debug event index
842 * @idx: buffer index
843 */
844 static void dbg_dec(unsigned *idx)
845 {
846 *idx = (*idx - 1) & (DBG_DATA_MAX-1);
847 }
848
849 /**
850 * dbg_inc: increments debug event index
851 * @idx: buffer index
852 */
853 static void dbg_inc(unsigned *idx)
854 {
855 *idx = (*idx + 1) & (DBG_DATA_MAX-1);
856 }
857
858 /**
859 * dbg_print: prints the common part of the event
860 * @addr: endpoint address
861 * @name: event name
862 * @status: status
863 * @extra: extra information
864 */
865 static void dbg_print(u8 addr, const char *name, int status, const char *extra)
866 {
867 struct timeval tval;
868 unsigned int stamp;
869 unsigned long flags;
870
871 write_lock_irqsave(&dbg_data.lck, flags);
872
873 do_gettimeofday(&tval);
874 stamp = tval.tv_sec & 0xFFFF; /* 2^32 = 4294967296. Limit to 4096s */
875 stamp = stamp * 1000000 + tval.tv_usec;
876
877 scnprintf(dbg_data.buf[dbg_data.idx], DBG_DATA_MSG,
878 "%04X\t? %02X %-7.7s %4i ?\t%s\n",
879 stamp, addr, name, status, extra);
880
881 dbg_inc(&dbg_data.idx);
882
883 write_unlock_irqrestore(&dbg_data.lck, flags);
884
885 if (dbg_data.tty != 0)
886 pr_notice("%04X\t? %02X %-7.7s %4i ?\t%s\n",
887 stamp, addr, name, status, extra);
888 }
889
890 /**
891 * dbg_done: prints a DONE event
892 * @addr: endpoint address
893 * @td: transfer descriptor
894 * @status: status
895 */
896 static void dbg_done(u8 addr, const u32 token, int status)
897 {
898 char msg[DBG_DATA_MSG];
899
900 scnprintf(msg, sizeof(msg), "%d %02X",
901 (int)(token & TD_TOTAL_BYTES) >> ffs_nr(TD_TOTAL_BYTES),
902 (int)(token & TD_STATUS) >> ffs_nr(TD_STATUS));
903 dbg_print(addr, "DONE", status, msg);
904 }
905
906 /**
907 * dbg_event: prints a generic event
908 * @addr: endpoint address
909 * @name: event name
910 * @status: status
911 */
912 static void dbg_event(u8 addr, const char *name, int status)
913 {
914 if (name != NULL)
915 dbg_print(addr, name, status, "");
916 }
917
918 /*
919 * dbg_queue: prints a QUEUE event
920 * @addr: endpoint address
921 * @req: USB request
922 * @status: status
923 */
924 static void dbg_queue(u8 addr, const struct usb_request *req, int status)
925 {
926 char msg[DBG_DATA_MSG];
927
928 if (req != NULL) {
929 scnprintf(msg, sizeof(msg),
930 "%d %d", !req->no_interrupt, req->length);
931 dbg_print(addr, "QUEUE", status, msg);
932 }
933 }
934
935 /**
936 * dbg_setup: prints a SETUP event
937 * @addr: endpoint address
938 * @req: setup request
939 */
940 static void dbg_setup(u8 addr, const struct usb_ctrlrequest *req)
941 {
942 char msg[DBG_DATA_MSG];
943
944 if (req != NULL) {
945 scnprintf(msg, sizeof(msg),
946 "%02X %02X %04X %04X %d", req->bRequestType,
947 req->bRequest, le16_to_cpu(req->wValue),
948 le16_to_cpu(req->wIndex), le16_to_cpu(req->wLength));
949 dbg_print(addr, "SETUP", 0, msg);
950 }
951 }
952
953 /**
954 * show_events: displays the event buffer
955 *
956 * Check "device.h" for details
957 */
958 static ssize_t show_events(struct device *dev, struct device_attribute *attr,
959 char *buf)
960 {
961 unsigned long flags;
962 unsigned i, j, n = 0;
963
964 dbg_trace("[%s] %p\n", __func__, buf);
965 if (attr == NULL || buf == NULL) {
966 dev_err(dev, "[%s] EINVAL\n", __func__);
967 return 0;
968 }
969
970 read_lock_irqsave(&dbg_data.lck, flags);
971
972 i = dbg_data.idx;
973 for (dbg_dec(&i); i != dbg_data.idx; dbg_dec(&i)) {
974 n += strlen(dbg_data.buf[i]);
975 if (n >= PAGE_SIZE) {
976 n -= strlen(dbg_data.buf[i]);
977 break;
978 }
979 }
980 for (j = 0, dbg_inc(&i); j < n; dbg_inc(&i))
981 j += scnprintf(buf + j, PAGE_SIZE - j,
982 "%s", dbg_data.buf[i]);
983
984 read_unlock_irqrestore(&dbg_data.lck, flags);
985
986 return n;
987 }
988
989 /**
990 * store_events: configure if events are going to be also printed to console
991 *
992 * Check "device.h" for details
993 */
994 static ssize_t store_events(struct device *dev, struct device_attribute *attr,
995 const char *buf, size_t count)
996 {
997 unsigned tty;
998
999 dbg_trace("[%s] %p, %d\n", __func__, buf, count);
1000 if (attr == NULL || buf == NULL) {
1001 dev_err(dev, "[%s] EINVAL\n", __func__);
1002 goto done;
1003 }
1004
1005 if (sscanf(buf, "%u", &tty) != 1 || tty > 1) {
1006 dev_err(dev, "<1|0>: enable|disable console log\n");
1007 goto done;
1008 }
1009
1010 dbg_data.tty = tty;
1011 dev_info(dev, "tty = %u", dbg_data.tty);
1012
1013 done:
1014 return count;
1015 }
1016 static DEVICE_ATTR(events, S_IRUSR | S_IWUSR, show_events, store_events);
1017
1018 /**
1019 * show_inters: interrupt status, enable status and historic
1020 *
1021 * Check "device.h" for details
1022 */
1023 static ssize_t show_inters(struct device *dev, struct device_attribute *attr,
1024 char *buf)
1025 {
1026 struct ci13xxx *udc = container_of(dev, struct ci13xxx, gadget.dev);
1027 unsigned long flags;
1028 u32 intr;
1029 unsigned i, j, n = 0;
1030
1031 dbg_trace("[%s] %p\n", __func__, buf);
1032 if (attr == NULL || buf == NULL) {
1033 dev_err(dev, "[%s] EINVAL\n", __func__);
1034 return 0;
1035 }
1036
1037 spin_lock_irqsave(udc->lock, flags);
1038
1039 n += scnprintf(buf + n, PAGE_SIZE - n,
1040 "status = %08x\n", hw_read_intr_status());
1041 n += scnprintf(buf + n, PAGE_SIZE - n,
1042 "enable = %08x\n", hw_read_intr_enable());
1043
1044 n += scnprintf(buf + n, PAGE_SIZE - n, "*test = %d\n",
1045 isr_statistics.test);
1046 n += scnprintf(buf + n, PAGE_SIZE - n, "? ui = %d\n",
1047 isr_statistics.ui);
1048 n += scnprintf(buf + n, PAGE_SIZE - n, "? uei = %d\n",
1049 isr_statistics.uei);
1050 n += scnprintf(buf + n, PAGE_SIZE - n, "? pci = %d\n",
1051 isr_statistics.pci);
1052 n += scnprintf(buf + n, PAGE_SIZE - n, "? uri = %d\n",
1053 isr_statistics.uri);
1054 n += scnprintf(buf + n, PAGE_SIZE - n, "? sli = %d\n",
1055 isr_statistics.sli);
1056 n += scnprintf(buf + n, PAGE_SIZE - n, "*none = %d\n",
1057 isr_statistics.none);
1058 n += scnprintf(buf + n, PAGE_SIZE - n, "*hndl = %d\n",
1059 isr_statistics.hndl.cnt);
1060
1061 for (i = isr_statistics.hndl.idx, j = 0; j <= ISR_MASK; j++, i++) {
1062 i &= ISR_MASK;
1063 intr = isr_statistics.hndl.buf[i];
1064
1065 if (USBi_UI & intr)
1066 n += scnprintf(buf + n, PAGE_SIZE - n, "ui ");
1067 intr &= ~USBi_UI;
1068 if (USBi_UEI & intr)
1069 n += scnprintf(buf + n, PAGE_SIZE - n, "uei ");
1070 intr &= ~USBi_UEI;
1071 if (USBi_PCI & intr)
1072 n += scnprintf(buf + n, PAGE_SIZE - n, "pci ");
1073 intr &= ~USBi_PCI;
1074 if (USBi_URI & intr)
1075 n += scnprintf(buf + n, PAGE_SIZE - n, "uri ");
1076 intr &= ~USBi_URI;
1077 if (USBi_SLI & intr)
1078 n += scnprintf(buf + n, PAGE_SIZE - n, "sli ");
1079 intr &= ~USBi_SLI;
1080 if (intr)
1081 n += scnprintf(buf + n, PAGE_SIZE - n, "??? ");
1082 if (isr_statistics.hndl.buf[i])
1083 n += scnprintf(buf + n, PAGE_SIZE - n, "\n");
1084 }
1085
1086 spin_unlock_irqrestore(udc->lock, flags);
1087
1088 return n;
1089 }
1090
1091 /**
1092 * store_inters: enable & force or disable an individual interrutps
1093 * (to be used for test purposes only)
1094 *
1095 * Check "device.h" for details
1096 */
1097 static ssize_t store_inters(struct device *dev, struct device_attribute *attr,
1098 const char *buf, size_t count)
1099 {
1100 struct ci13xxx *udc = container_of(dev, struct ci13xxx, gadget.dev);
1101 unsigned long flags;
1102 unsigned en, bit;
1103
1104 dbg_trace("[%s] %p, %d\n", __func__, buf, count);
1105 if (attr == NULL || buf == NULL) {
1106 dev_err(dev, "[%s] EINVAL\n", __func__);
1107 goto done;
1108 }
1109
1110 if (sscanf(buf, "%u %u", &en, &bit) != 2 || en > 1) {
1111 dev_err(dev, "<1|0> <bit>: enable|disable interrupt");
1112 goto done;
1113 }
1114
1115 spin_lock_irqsave(udc->lock, flags);
1116 if (en) {
1117 if (hw_intr_force(bit))
1118 dev_err(dev, "invalid bit number\n");
1119 else
1120 isr_statistics.test++;
1121 } else {
1122 if (hw_intr_clear(bit))
1123 dev_err(dev, "invalid bit number\n");
1124 }
1125 spin_unlock_irqrestore(udc->lock, flags);
1126
1127 done:
1128 return count;
1129 }
1130 static DEVICE_ATTR(inters, S_IRUSR | S_IWUSR, show_inters, store_inters);
1131
1132 /**
1133 * show_port_test: reads port test mode
1134 *
1135 * Check "device.h" for details
1136 */
1137 static ssize_t show_port_test(struct device *dev,
1138 struct device_attribute *attr, char *buf)
1139 {
1140 struct ci13xxx *udc = container_of(dev, struct ci13xxx, gadget.dev);
1141 unsigned long flags;
1142 unsigned mode;
1143
1144 dbg_trace("[%s] %p\n", __func__, buf);
1145 if (attr == NULL || buf == NULL) {
1146 dev_err(dev, "[%s] EINVAL\n", __func__);
1147 return 0;
1148 }
1149
1150 spin_lock_irqsave(udc->lock, flags);
1151 mode = hw_port_test_get();
1152 spin_unlock_irqrestore(udc->lock, flags);
1153
1154 return scnprintf(buf, PAGE_SIZE, "mode = %u\n", mode);
1155 }
1156
1157 /**
1158 * store_port_test: writes port test mode
1159 *
1160 * Check "device.h" for details
1161 */
1162 static ssize_t store_port_test(struct device *dev,
1163 struct device_attribute *attr,
1164 const char *buf, size_t count)
1165 {
1166 struct ci13xxx *udc = container_of(dev, struct ci13xxx, gadget.dev);
1167 unsigned long flags;
1168 unsigned mode;
1169
1170 dbg_trace("[%s] %p, %d\n", __func__, buf, count);
1171 if (attr == NULL || buf == NULL) {
1172 dev_err(dev, "[%s] EINVAL\n", __func__);
1173 goto done;
1174 }
1175
1176 if (sscanf(buf, "%u", &mode) != 1) {
1177 dev_err(dev, "<mode>: set port test mode");
1178 goto done;
1179 }
1180
1181 spin_lock_irqsave(udc->lock, flags);
1182 if (hw_port_test_set(mode))
1183 dev_err(dev, "invalid mode\n");
1184 spin_unlock_irqrestore(udc->lock, flags);
1185
1186 done:
1187 return count;
1188 }
1189 static DEVICE_ATTR(port_test, S_IRUSR | S_IWUSR,
1190 show_port_test, store_port_test);
1191
1192 /**
1193 * show_qheads: DMA contents of all queue heads
1194 *
1195 * Check "device.h" for details
1196 */
1197 static ssize_t show_qheads(struct device *dev, struct device_attribute *attr,
1198 char *buf)
1199 {
1200 struct ci13xxx *udc = container_of(dev, struct ci13xxx, gadget.dev);
1201 unsigned long flags;
1202 unsigned i, j, n = 0;
1203
1204 dbg_trace("[%s] %p\n", __func__, buf);
1205 if (attr == NULL || buf == NULL) {
1206 dev_err(dev, "[%s] EINVAL\n", __func__);
1207 return 0;
1208 }
1209
1210 spin_lock_irqsave(udc->lock, flags);
1211 for (i = 0; i < hw_ep_max/2; i++) {
1212 struct ci13xxx_ep *mEpRx = &udc->ci13xxx_ep[i];
1213 struct ci13xxx_ep *mEpTx = &udc->ci13xxx_ep[i + hw_ep_max/2];
1214 n += scnprintf(buf + n, PAGE_SIZE - n,
1215 "EP=%02i: RX=%08X TX=%08X\n",
1216 i, (u32)mEpRx->qh.dma, (u32)mEpTx->qh.dma);
1217 for (j = 0; j < (sizeof(struct ci13xxx_qh)/sizeof(u32)); j++) {
1218 n += scnprintf(buf + n, PAGE_SIZE - n,
1219 " %04X: %08X %08X\n", j,
1220 *((u32 *)mEpRx->qh.ptr + j),
1221 *((u32 *)mEpTx->qh.ptr + j));
1222 }
1223 }
1224 spin_unlock_irqrestore(udc->lock, flags);
1225
1226 return n;
1227 }
1228 static DEVICE_ATTR(qheads, S_IRUSR, show_qheads, NULL);
1229
1230 /**
1231 * show_registers: dumps all registers
1232 *
1233 * Check "device.h" for details
1234 */
1235 #define DUMP_ENTRIES 512
1236 static ssize_t show_registers(struct device *dev,
1237 struct device_attribute *attr, char *buf)
1238 {
1239 struct ci13xxx *udc = container_of(dev, struct ci13xxx, gadget.dev);
1240 unsigned long flags;
1241 u32 *dump;
1242 unsigned i, k, n = 0;
1243
1244 dbg_trace("[%s] %p\n", __func__, buf);
1245 if (attr == NULL || buf == NULL) {
1246 dev_err(dev, "[%s] EINVAL\n", __func__);
1247 return 0;
1248 }
1249
1250 dump = kmalloc(sizeof(u32) * DUMP_ENTRIES, GFP_KERNEL);
1251 if (!dump) {
1252 dev_err(dev, "%s: out of memory\n", __func__);
1253 return 0;
1254 }
1255
1256 spin_lock_irqsave(udc->lock, flags);
1257 k = hw_register_read(dump, DUMP_ENTRIES);
1258 spin_unlock_irqrestore(udc->lock, flags);
1259
1260 for (i = 0; i < k; i++) {
1261 n += scnprintf(buf + n, PAGE_SIZE - n,
1262 "reg[0x%04X] = 0x%08X\n",
1263 i * (unsigned)sizeof(u32), dump[i]);
1264 }
1265 kfree(dump);
1266
1267 return n;
1268 }
1269
1270 /**
1271 * store_registers: writes value to register address
1272 *
1273 * Check "device.h" for details
1274 */
1275 static ssize_t store_registers(struct device *dev,
1276 struct device_attribute *attr,
1277 const char *buf, size_t count)
1278 {
1279 struct ci13xxx *udc = container_of(dev, struct ci13xxx, gadget.dev);
1280 unsigned long addr, data, flags;
1281
1282 dbg_trace("[%s] %p, %d\n", __func__, buf, count);
1283 if (attr == NULL || buf == NULL) {
1284 dev_err(dev, "[%s] EINVAL\n", __func__);
1285 goto done;
1286 }
1287
1288 if (sscanf(buf, "%li %li", &addr, &data) != 2) {
1289 dev_err(dev, "<addr> <data>: write data to register address");
1290 goto done;
1291 }
1292
1293 spin_lock_irqsave(udc->lock, flags);
1294 if (hw_register_write(addr, data))
1295 dev_err(dev, "invalid address range\n");
1296 spin_unlock_irqrestore(udc->lock, flags);
1297
1298 done:
1299 return count;
1300 }
1301 static DEVICE_ATTR(registers, S_IRUSR | S_IWUSR,
1302 show_registers, store_registers);
1303
1304 /**
1305 * show_requests: DMA contents of all requests currently queued (all endpts)
1306 *
1307 * Check "device.h" for details
1308 */
1309 static ssize_t show_requests(struct device *dev, struct device_attribute *attr,
1310 char *buf)
1311 {
1312 struct ci13xxx *udc = container_of(dev, struct ci13xxx, gadget.dev);
1313 unsigned long flags;
1314 struct list_head *ptr = NULL;
1315 struct ci13xxx_req *req = NULL;
1316 unsigned i, j, n = 0, qSize = sizeof(struct ci13xxx_td)/sizeof(u32);
1317
1318 dbg_trace("[%s] %p\n", __func__, buf);
1319 if (attr == NULL || buf == NULL) {
1320 dev_err(dev, "[%s] EINVAL\n", __func__);
1321 return 0;
1322 }
1323
1324 spin_lock_irqsave(udc->lock, flags);
1325 for (i = 0; i < hw_ep_max; i++)
1326 list_for_each(ptr, &udc->ci13xxx_ep[i].qh.queue)
1327 {
1328 req = list_entry(ptr, struct ci13xxx_req, queue);
1329
1330 n += scnprintf(buf + n, PAGE_SIZE - n,
1331 "EP=%02i: TD=%08X %s\n",
1332 i % hw_ep_max/2, (u32)req->dma,
1333 ((i < hw_ep_max/2) ? "RX" : "TX"));
1334
1335 for (j = 0; j < qSize; j++)
1336 n += scnprintf(buf + n, PAGE_SIZE - n,
1337 " %04X: %08X\n", j,
1338 *((u32 *)req->ptr + j));
1339 }
1340 spin_unlock_irqrestore(udc->lock, flags);
1341
1342 return n;
1343 }
1344 static DEVICE_ATTR(requests, S_IRUSR, show_requests, NULL);
1345
1346 /**
1347 * dbg_create_files: initializes the attribute interface
1348 * @dev: device
1349 *
1350 * This function returns an error code
1351 */
1352 __maybe_unused static int dbg_create_files(struct device *dev)
1353 {
1354 int retval = 0;
1355
1356 if (dev == NULL)
1357 return -EINVAL;
1358 retval = device_create_file(dev, &dev_attr_device);
1359 if (retval)
1360 goto done;
1361 retval = device_create_file(dev, &dev_attr_driver);
1362 if (retval)
1363 goto rm_device;
1364 retval = device_create_file(dev, &dev_attr_events);
1365 if (retval)
1366 goto rm_driver;
1367 retval = device_create_file(dev, &dev_attr_inters);
1368 if (retval)
1369 goto rm_events;
1370 retval = device_create_file(dev, &dev_attr_port_test);
1371 if (retval)
1372 goto rm_inters;
1373 retval = device_create_file(dev, &dev_attr_qheads);
1374 if (retval)
1375 goto rm_port_test;
1376 retval = device_create_file(dev, &dev_attr_registers);
1377 if (retval)
1378 goto rm_qheads;
1379 retval = device_create_file(dev, &dev_attr_requests);
1380 if (retval)
1381 goto rm_registers;
1382 return 0;
1383
1384 rm_registers:
1385 device_remove_file(dev, &dev_attr_registers);
1386 rm_qheads:
1387 device_remove_file(dev, &dev_attr_qheads);
1388 rm_port_test:
1389 device_remove_file(dev, &dev_attr_port_test);
1390 rm_inters:
1391 device_remove_file(dev, &dev_attr_inters);
1392 rm_events:
1393 device_remove_file(dev, &dev_attr_events);
1394 rm_driver:
1395 device_remove_file(dev, &dev_attr_driver);
1396 rm_device:
1397 device_remove_file(dev, &dev_attr_device);
1398 done:
1399 return retval;
1400 }
1401
1402 /**
1403 * dbg_remove_files: destroys the attribute interface
1404 * @dev: device
1405 *
1406 * This function returns an error code
1407 */
1408 __maybe_unused static int dbg_remove_files(struct device *dev)
1409 {
1410 if (dev == NULL)
1411 return -EINVAL;
1412 device_remove_file(dev, &dev_attr_requests);
1413 device_remove_file(dev, &dev_attr_registers);
1414 device_remove_file(dev, &dev_attr_qheads);
1415 device_remove_file(dev, &dev_attr_port_test);
1416 device_remove_file(dev, &dev_attr_inters);
1417 device_remove_file(dev, &dev_attr_events);
1418 device_remove_file(dev, &dev_attr_driver);
1419 device_remove_file(dev, &dev_attr_device);
1420 return 0;
1421 }
1422
1423 /******************************************************************************
1424 * UTIL block
1425 *****************************************************************************/
1426 /**
1427 * _usb_addr: calculates endpoint address from direction & number
1428 * @ep: endpoint
1429 */
1430 static inline u8 _usb_addr(struct ci13xxx_ep *ep)
1431 {
1432 return ((ep->dir == TX) ? USB_ENDPOINT_DIR_MASK : 0) | ep->num;
1433 }
1434
1435 /**
1436 * _hardware_queue: configures a request at hardware level
1437 * @gadget: gadget
1438 * @mEp: endpoint
1439 *
1440 * This function returns an error code
1441 */
1442 static int _hardware_enqueue(struct ci13xxx_ep *mEp, struct ci13xxx_req *mReq)
1443 {
1444 unsigned i;
1445 int ret = 0;
1446 unsigned length = mReq->req.length;
1447
1448 trace("%p, %p", mEp, mReq);
1449
1450 /* don't queue twice */
1451 if (mReq->req.status == -EALREADY)
1452 return -EALREADY;
1453
1454 mReq->req.status = -EALREADY;
1455 if (length && mReq->req.dma == DMA_ADDR_INVALID) {
1456 mReq->req.dma = \
1457 dma_map_single(mEp->device, mReq->req.buf,
1458 length, mEp->dir ? DMA_TO_DEVICE :
1459 DMA_FROM_DEVICE);
1460 if (mReq->req.dma == 0)
1461 return -ENOMEM;
1462
1463 mReq->map = 1;
1464 }
1465
1466 if (mReq->req.zero && length && (length % mEp->ep.maxpacket == 0)) {
1467 mReq->zptr = dma_pool_alloc(mEp->td_pool, GFP_ATOMIC,
1468 &mReq->zdma);
1469 if (mReq->zptr == NULL) {
1470 if (mReq->map) {
1471 dma_unmap_single(mEp->device, mReq->req.dma,
1472 length, mEp->dir ? DMA_TO_DEVICE :
1473 DMA_FROM_DEVICE);
1474 mReq->req.dma = DMA_ADDR_INVALID;
1475 mReq->map = 0;
1476 }
1477 return -ENOMEM;
1478 }
1479 memset(mReq->zptr, 0, sizeof(*mReq->zptr));
1480 mReq->zptr->next = TD_TERMINATE;
1481 mReq->zptr->token = TD_STATUS_ACTIVE;
1482 if (!mReq->req.no_interrupt)
1483 mReq->zptr->token |= TD_IOC;
1484 }
1485 /*
1486 * TD configuration
1487 * TODO - handle requests which spawns into several TDs
1488 */
1489 memset(mReq->ptr, 0, sizeof(*mReq->ptr));
1490 mReq->ptr->token = length << ffs_nr(TD_TOTAL_BYTES);
1491 mReq->ptr->token &= TD_TOTAL_BYTES;
1492 mReq->ptr->token |= TD_STATUS_ACTIVE;
1493 if (mReq->zptr) {
1494 mReq->ptr->next = mReq->zdma;
1495 } else {
1496 mReq->ptr->next = TD_TERMINATE;
1497 if (!mReq->req.no_interrupt)
1498 mReq->ptr->token |= TD_IOC;
1499 }
1500 mReq->ptr->page[0] = mReq->req.dma;
1501 for (i = 1; i < 5; i++)
1502 mReq->ptr->page[i] =
1503 (mReq->req.dma + i * CI13XXX_PAGE_SIZE) & ~TD_RESERVED_MASK;
1504
1505 if (!list_empty(&mEp->qh.queue)) {
1506 struct ci13xxx_req *mReqPrev;
1507 int n = hw_ep_bit(mEp->num, mEp->dir);
1508 int tmp_stat;
1509
1510 mReqPrev = list_entry(mEp->qh.queue.prev,
1511 struct ci13xxx_req, queue);
1512 if (mReqPrev->zptr)
1513 mReqPrev->zptr->next = mReq->dma & TD_ADDR_MASK;
1514 else
1515 mReqPrev->ptr->next = mReq->dma & TD_ADDR_MASK;
1516 wmb();
1517 if (hw_cread(CAP_ENDPTPRIME, BIT(n)))
1518 goto done;
1519 do {
1520 hw_cwrite(CAP_USBCMD, USBCMD_ATDTW, USBCMD_ATDTW);
1521 tmp_stat = hw_cread(CAP_ENDPTSTAT, BIT(n));
1522 } while (!hw_cread(CAP_USBCMD, USBCMD_ATDTW));
1523 hw_cwrite(CAP_USBCMD, USBCMD_ATDTW, 0);
1524 if (tmp_stat)
1525 goto done;
1526 }
1527
1528 /* QH configuration */
1529 mEp->qh.ptr->td.next = mReq->dma; /* TERMINATE = 0 */
1530 mEp->qh.ptr->td.token &= ~TD_STATUS; /* clear status */
1531 mEp->qh.ptr->cap |= QH_ZLT;
1532
1533 wmb(); /* synchronize before ep prime */
1534
1535 ret = hw_ep_prime(mEp->num, mEp->dir,
1536 mEp->type == USB_ENDPOINT_XFER_CONTROL);
1537 done:
1538 return ret;
1539 }
1540
1541 /**
1542 * _hardware_dequeue: handles a request at hardware level
1543 * @gadget: gadget
1544 * @mEp: endpoint
1545 *
1546 * This function returns an error code
1547 */
1548 static int _hardware_dequeue(struct ci13xxx_ep *mEp, struct ci13xxx_req *mReq)
1549 {
1550 trace("%p, %p", mEp, mReq);
1551
1552 if (mReq->req.status != -EALREADY)
1553 return -EINVAL;
1554
1555 if ((TD_STATUS_ACTIVE & mReq->ptr->token) != 0)
1556 return -EBUSY;
1557
1558 if (mReq->zptr) {
1559 if ((TD_STATUS_ACTIVE & mReq->zptr->token) != 0)
1560 return -EBUSY;
1561 dma_pool_free(mEp->td_pool, mReq->zptr, mReq->zdma);
1562 mReq->zptr = NULL;
1563 }
1564
1565 mReq->req.status = 0;
1566
1567 if (mReq->map) {
1568 dma_unmap_single(mEp->device, mReq->req.dma, mReq->req.length,
1569 mEp->dir ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
1570 mReq->req.dma = DMA_ADDR_INVALID;
1571 mReq->map = 0;
1572 }
1573
1574 mReq->req.status = mReq->ptr->token & TD_STATUS;
1575 if ((TD_STATUS_HALTED & mReq->req.status) != 0)
1576 mReq->req.status = -1;
1577 else if ((TD_STATUS_DT_ERR & mReq->req.status) != 0)
1578 mReq->req.status = -1;
1579 else if ((TD_STATUS_TR_ERR & mReq->req.status) != 0)
1580 mReq->req.status = -1;
1581
1582 mReq->req.actual = mReq->ptr->token & TD_TOTAL_BYTES;
1583 mReq->req.actual >>= ffs_nr(TD_TOTAL_BYTES);
1584 mReq->req.actual = mReq->req.length - mReq->req.actual;
1585 mReq->req.actual = mReq->req.status ? 0 : mReq->req.actual;
1586
1587 return mReq->req.actual;
1588 }
1589
1590 /**
1591 * _ep_nuke: dequeues all endpoint requests
1592 * @mEp: endpoint
1593 *
1594 * This function returns an error code
1595 * Caller must hold lock
1596 */
1597 static int _ep_nuke(struct ci13xxx_ep *mEp)
1598 __releases(mEp->lock)
1599 __acquires(mEp->lock)
1600 {
1601 trace("%p", mEp);
1602
1603 if (mEp == NULL)
1604 return -EINVAL;
1605
1606 hw_ep_flush(mEp->num, mEp->dir);
1607
1608 while (!list_empty(&mEp->qh.queue)) {
1609
1610 /* pop oldest request */
1611 struct ci13xxx_req *mReq = \
1612 list_entry(mEp->qh.queue.next,
1613 struct ci13xxx_req, queue);
1614 list_del_init(&mReq->queue);
1615 mReq->req.status = -ESHUTDOWN;
1616
1617 if (mReq->req.complete != NULL) {
1618 spin_unlock(mEp->lock);
1619 mReq->req.complete(&mEp->ep, &mReq->req);
1620 spin_lock(mEp->lock);
1621 }
1622 }
1623 return 0;
1624 }
1625
1626 /**
1627 * _gadget_stop_activity: stops all USB activity, flushes & disables all endpts
1628 * @gadget: gadget
1629 *
1630 * This function returns an error code
1631 */
1632 static int _gadget_stop_activity(struct usb_gadget *gadget)
1633 {
1634 struct usb_ep *ep;
1635 struct ci13xxx *udc = container_of(gadget, struct ci13xxx, gadget);
1636 unsigned long flags;
1637
1638 trace("%p", gadget);
1639
1640 if (gadget == NULL)
1641 return -EINVAL;
1642
1643 spin_lock_irqsave(udc->lock, flags);
1644 udc->gadget.speed = USB_SPEED_UNKNOWN;
1645 udc->remote_wakeup = 0;
1646 udc->suspended = 0;
1647 spin_unlock_irqrestore(udc->lock, flags);
1648
1649 /* flush all endpoints */
1650 gadget_for_each_ep(ep, gadget) {
1651 usb_ep_fifo_flush(ep);
1652 }
1653 usb_ep_fifo_flush(&udc->ep0out->ep);
1654 usb_ep_fifo_flush(&udc->ep0in->ep);
1655
1656 udc->driver->disconnect(gadget);
1657
1658 /* make sure to disable all endpoints */
1659 gadget_for_each_ep(ep, gadget) {
1660 usb_ep_disable(ep);
1661 }
1662
1663 if (udc->status != NULL) {
1664 usb_ep_free_request(&udc->ep0in->ep, udc->status);
1665 udc->status = NULL;
1666 }
1667
1668 return 0;
1669 }
1670
1671 /******************************************************************************
1672 * ISR block
1673 *****************************************************************************/
1674 /**
1675 * isr_reset_handler: USB reset interrupt handler
1676 * @udc: UDC device
1677 *
1678 * This function resets USB engine after a bus reset occurred
1679 */
1680 static void isr_reset_handler(struct ci13xxx *udc)
1681 __releases(udc->lock)
1682 __acquires(udc->lock)
1683 {
1684 int retval;
1685
1686 trace("%p", udc);
1687
1688 if (udc == NULL) {
1689 pr_err("EINVAL\n");
1690 return;
1691 }
1692
1693 dbg_event(0xFF, "BUS RST", 0);
1694
1695 spin_unlock(udc->lock);
1696 retval = _gadget_stop_activity(&udc->gadget);
1697 if (retval)
1698 goto done;
1699
1700 retval = hw_usb_reset();
1701 if (retval)
1702 goto done;
1703
1704 udc->status = usb_ep_alloc_request(&udc->ep0in->ep, GFP_ATOMIC);
1705 if (udc->status == NULL)
1706 retval = -ENOMEM;
1707
1708 spin_lock(udc->lock);
1709
1710 done:
1711 if (retval)
1712 pr_err("error: %i\n", retval);
1713 }
1714
1715 /**
1716 * isr_get_status_complete: get_status request complete function
1717 * @ep: endpoint
1718 * @req: request handled
1719 *
1720 * Caller must release lock
1721 */
1722 static void isr_get_status_complete(struct usb_ep *ep, struct usb_request *req)
1723 {
1724 trace("%p, %p", ep, req);
1725
1726 if (ep == NULL || req == NULL) {
1727 pr_err("EINVAL\n");
1728 return;
1729 }
1730
1731 kfree(req->buf);
1732 usb_ep_free_request(ep, req);
1733 }
1734
1735 /**
1736 * isr_get_status_response: get_status request response
1737 * @udc: udc struct
1738 * @setup: setup request packet
1739 *
1740 * This function returns an error code
1741 */
1742 static int isr_get_status_response(struct ci13xxx *udc,
1743 struct usb_ctrlrequest *setup)
1744 __releases(mEp->lock)
1745 __acquires(mEp->lock)
1746 {
1747 struct ci13xxx_ep *mEp = udc->ep0in;
1748 struct usb_request *req = NULL;
1749 gfp_t gfp_flags = GFP_ATOMIC;
1750 int dir, num, retval;
1751
1752 trace("%p, %p", mEp, setup);
1753
1754 if (mEp == NULL || setup == NULL)
1755 return -EINVAL;
1756
1757 spin_unlock(mEp->lock);
1758 req = usb_ep_alloc_request(&mEp->ep, gfp_flags);
1759 spin_lock(mEp->lock);
1760 if (req == NULL)
1761 return -ENOMEM;
1762
1763 req->complete = isr_get_status_complete;
1764 req->length = 2;
1765 req->buf = kzalloc(req->length, gfp_flags);
1766 if (req->buf == NULL) {
1767 retval = -ENOMEM;
1768 goto err_free_req;
1769 }
1770
1771 if ((setup->bRequestType & USB_RECIP_MASK) == USB_RECIP_DEVICE) {
1772 /* Assume that device is bus powered for now. */
1773 *((u16 *)req->buf) = _udc->remote_wakeup << 1;
1774 retval = 0;
1775 } else if ((setup->bRequestType & USB_RECIP_MASK) \
1776 == USB_RECIP_ENDPOINT) {
1777 dir = (le16_to_cpu(setup->wIndex) & USB_ENDPOINT_DIR_MASK) ?
1778 TX : RX;
1779 num = le16_to_cpu(setup->wIndex) & USB_ENDPOINT_NUMBER_MASK;
1780 *((u16 *)req->buf) = hw_ep_get_halt(num, dir);
1781 }
1782 /* else do nothing; reserved for future use */
1783
1784 spin_unlock(mEp->lock);
1785 retval = usb_ep_queue(&mEp->ep, req, gfp_flags);
1786 spin_lock(mEp->lock);
1787 if (retval)
1788 goto err_free_buf;
1789
1790 return 0;
1791
1792 err_free_buf:
1793 kfree(req->buf);
1794 err_free_req:
1795 spin_unlock(mEp->lock);
1796 usb_ep_free_request(&mEp->ep, req);
1797 spin_lock(mEp->lock);
1798 return retval;
1799 }
1800
1801 /**
1802 * isr_setup_status_complete: setup_status request complete function
1803 * @ep: endpoint
1804 * @req: request handled
1805 *
1806 * Caller must release lock. Put the port in test mode if test mode
1807 * feature is selected.
1808 */
1809 static void
1810 isr_setup_status_complete(struct usb_ep *ep, struct usb_request *req)
1811 {
1812 struct ci13xxx *udc = req->context;
1813 unsigned long flags;
1814
1815 trace("%p, %p", ep, req);
1816
1817 spin_lock_irqsave(udc->lock, flags);
1818 if (udc->test_mode)
1819 hw_port_test_set(udc->test_mode);
1820 spin_unlock_irqrestore(udc->lock, flags);
1821 }
1822
1823 /**
1824 * isr_setup_status_phase: queues the status phase of a setup transation
1825 * @udc: udc struct
1826 *
1827 * This function returns an error code
1828 */
1829 static int isr_setup_status_phase(struct ci13xxx *udc)
1830 __releases(mEp->lock)
1831 __acquires(mEp->lock)
1832 {
1833 int retval;
1834 struct ci13xxx_ep *mEp;
1835
1836 trace("%p", udc);
1837
1838 mEp = (udc->ep0_dir == TX) ? udc->ep0out : udc->ep0in;
1839 udc->status->context = udc;
1840 udc->status->complete = isr_setup_status_complete;
1841
1842 spin_unlock(mEp->lock);
1843 retval = usb_ep_queue(&mEp->ep, udc->status, GFP_ATOMIC);
1844 spin_lock(mEp->lock);
1845
1846 return retval;
1847 }
1848
1849 /**
1850 * isr_tr_complete_low: transaction complete low level handler
1851 * @mEp: endpoint
1852 *
1853 * This function returns an error code
1854 * Caller must hold lock
1855 */
1856 static int isr_tr_complete_low(struct ci13xxx_ep *mEp)
1857 __releases(mEp->lock)
1858 __acquires(mEp->lock)
1859 {
1860 struct ci13xxx_req *mReq, *mReqTemp;
1861 struct ci13xxx_ep *mEpTemp = mEp;
1862 int uninitialized_var(retval);
1863
1864 trace("%p", mEp);
1865
1866 if (list_empty(&mEp->qh.queue))
1867 return -EINVAL;
1868
1869 list_for_each_entry_safe(mReq, mReqTemp, &mEp->qh.queue,
1870 queue) {
1871 retval = _hardware_dequeue(mEp, mReq);
1872 if (retval < 0)
1873 break;
1874 list_del_init(&mReq->queue);
1875 dbg_done(_usb_addr(mEp), mReq->ptr->token, retval);
1876 if (mReq->req.complete != NULL) {
1877 spin_unlock(mEp->lock);
1878 if ((mEp->type == USB_ENDPOINT_XFER_CONTROL) &&
1879 mReq->req.length)
1880 mEpTemp = _udc->ep0in;
1881 mReq->req.complete(&mEpTemp->ep, &mReq->req);
1882 spin_lock(mEp->lock);
1883 }
1884 }
1885
1886 if (retval == -EBUSY)
1887 retval = 0;
1888 if (retval < 0)
1889 dbg_event(_usb_addr(mEp), "DONE", retval);
1890
1891 return retval;
1892 }
1893
1894 /**
1895 * isr_tr_complete_handler: transaction complete interrupt handler
1896 * @udc: UDC descriptor
1897 *
1898 * This function handles traffic events
1899 */
1900 static void isr_tr_complete_handler(struct ci13xxx *udc)
1901 __releases(udc->lock)
1902 __acquires(udc->lock)
1903 {
1904 unsigned i;
1905 u8 tmode = 0;
1906
1907 trace("%p", udc);
1908
1909 if (udc == NULL) {
1910 pr_err("EINVAL\n");
1911 return;
1912 }
1913
1914 for (i = 0; i < hw_ep_max; i++) {
1915 struct ci13xxx_ep *mEp = &udc->ci13xxx_ep[i];
1916 int type, num, dir, err = -EINVAL;
1917 struct usb_ctrlrequest req;
1918
1919 if (mEp->ep.desc == NULL)
1920 continue; /* not configured */
1921
1922 if (hw_test_and_clear_complete(i)) {
1923 err = isr_tr_complete_low(mEp);
1924 if (mEp->type == USB_ENDPOINT_XFER_CONTROL) {
1925 if (err > 0) /* needs status phase */
1926 err = isr_setup_status_phase(udc);
1927 if (err < 0) {
1928 dbg_event(_usb_addr(mEp),
1929 "ERROR", err);
1930 spin_unlock(udc->lock);
1931 if (usb_ep_set_halt(&mEp->ep))
1932 dev_err(&udc->gadget.dev,
1933 "error: ep_set_halt\n");
1934 spin_lock(udc->lock);
1935 }
1936 }
1937 }
1938
1939 if (mEp->type != USB_ENDPOINT_XFER_CONTROL ||
1940 !hw_test_and_clear_setup_status(i))
1941 continue;
1942
1943 if (i != 0) {
1944 dev_warn(&udc->gadget.dev,
1945 "ctrl traffic received at endpoint\n");
1946 continue;
1947 }
1948
1949 /*
1950 * Flush data and handshake transactions of previous
1951 * setup packet.
1952 */
1953 _ep_nuke(udc->ep0out);
1954 _ep_nuke(udc->ep0in);
1955
1956 /* read_setup_packet */
1957 do {
1958 hw_test_and_set_setup_guard();
1959 memcpy(&req, &mEp->qh.ptr->setup, sizeof(req));
1960 } while (!hw_test_and_clear_setup_guard());
1961
1962 type = req.bRequestType;
1963
1964 udc->ep0_dir = (type & USB_DIR_IN) ? TX : RX;
1965
1966 dbg_setup(_usb_addr(mEp), &req);
1967
1968 switch (req.bRequest) {
1969 case USB_REQ_CLEAR_FEATURE:
1970 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
1971 le16_to_cpu(req.wValue) ==
1972 USB_ENDPOINT_HALT) {
1973 if (req.wLength != 0)
1974 break;
1975 num = le16_to_cpu(req.wIndex);
1976 dir = num & USB_ENDPOINT_DIR_MASK;
1977 num &= USB_ENDPOINT_NUMBER_MASK;
1978 if (dir) /* TX */
1979 num += hw_ep_max/2;
1980 if (!udc->ci13xxx_ep[num].wedge) {
1981 spin_unlock(udc->lock);
1982 err = usb_ep_clear_halt(
1983 &udc->ci13xxx_ep[num].ep);
1984 spin_lock(udc->lock);
1985 if (err)
1986 break;
1987 }
1988 err = isr_setup_status_phase(udc);
1989 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE) &&
1990 le16_to_cpu(req.wValue) ==
1991 USB_DEVICE_REMOTE_WAKEUP) {
1992 if (req.wLength != 0)
1993 break;
1994 udc->remote_wakeup = 0;
1995 err = isr_setup_status_phase(udc);
1996 } else {
1997 goto delegate;
1998 }
1999 break;
2000 case USB_REQ_GET_STATUS:
2001 if (type != (USB_DIR_IN|USB_RECIP_DEVICE) &&
2002 type != (USB_DIR_IN|USB_RECIP_ENDPOINT) &&
2003 type != (USB_DIR_IN|USB_RECIP_INTERFACE))
2004 goto delegate;
2005 if (le16_to_cpu(req.wLength) != 2 ||
2006 le16_to_cpu(req.wValue) != 0)
2007 break;
2008 err = isr_get_status_response(udc, &req);
2009 break;
2010 case USB_REQ_SET_ADDRESS:
2011 if (type != (USB_DIR_OUT|USB_RECIP_DEVICE))
2012 goto delegate;
2013 if (le16_to_cpu(req.wLength) != 0 ||
2014 le16_to_cpu(req.wIndex) != 0)
2015 break;
2016 err = hw_usb_set_address((u8)le16_to_cpu(req.wValue));
2017 if (err)
2018 break;
2019 err = isr_setup_status_phase(udc);
2020 break;
2021 case USB_REQ_SET_FEATURE:
2022 if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) &&
2023 le16_to_cpu(req.wValue) ==
2024 USB_ENDPOINT_HALT) {
2025 if (req.wLength != 0)
2026 break;
2027 num = le16_to_cpu(req.wIndex);
2028 dir = num & USB_ENDPOINT_DIR_MASK;
2029 num &= USB_ENDPOINT_NUMBER_MASK;
2030 if (dir) /* TX */
2031 num += hw_ep_max/2;
2032
2033 spin_unlock(udc->lock);
2034 err = usb_ep_set_halt(&udc->ci13xxx_ep[num].ep);
2035 spin_lock(udc->lock);
2036 if (!err)
2037 isr_setup_status_phase(udc);
2038 } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE)) {
2039 if (req.wLength != 0)
2040 break;
2041 switch (le16_to_cpu(req.wValue)) {
2042 case USB_DEVICE_REMOTE_WAKEUP:
2043 udc->remote_wakeup = 1;
2044 err = isr_setup_status_phase(udc);
2045 break;
2046 case USB_DEVICE_TEST_MODE:
2047 tmode = le16_to_cpu(req.wIndex) >> 8;
2048 switch (tmode) {
2049 case TEST_J:
2050 case TEST_K:
2051 case TEST_SE0_NAK:
2052 case TEST_PACKET:
2053 case TEST_FORCE_EN:
2054 udc->test_mode = tmode;
2055 err = isr_setup_status_phase(
2056 udc);
2057 break;
2058 default:
2059 break;
2060 }
2061 default:
2062 goto delegate;
2063 }
2064 } else {
2065 goto delegate;
2066 }
2067 break;
2068 default:
2069 delegate:
2070 if (req.wLength == 0) /* no data phase */
2071 udc->ep0_dir = TX;
2072
2073 spin_unlock(udc->lock);
2074 err = udc->driver->setup(&udc->gadget, &req);
2075 spin_lock(udc->lock);
2076 break;
2077 }
2078
2079 if (err < 0) {
2080 dbg_event(_usb_addr(mEp), "ERROR", err);
2081
2082 spin_unlock(udc->lock);
2083 if (usb_ep_set_halt(&mEp->ep))
2084 dev_err(&udc->gadget.dev,
2085 "error: ep_set_halt\n");
2086 spin_lock(udc->lock);
2087 }
2088 }
2089 }
2090
2091 /******************************************************************************
2092 * ENDPT block
2093 *****************************************************************************/
2094 /**
2095 * ep_enable: configure endpoint, making it usable
2096 *
2097 * Check usb_ep_enable() at "usb_gadget.h" for details
2098 */
2099 static int ep_enable(struct usb_ep *ep,
2100 const struct usb_endpoint_descriptor *desc)
2101 {
2102 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
2103 int retval = 0;
2104 unsigned long flags;
2105
2106 trace("%p, %p", ep, desc);
2107
2108 if (ep == NULL || desc == NULL)
2109 return -EINVAL;
2110
2111 spin_lock_irqsave(mEp->lock, flags);
2112
2113 /* only internal SW should enable ctrl endpts */
2114
2115 mEp->ep.desc = desc;
2116
2117 if (!list_empty(&mEp->qh.queue))
2118 warn("enabling a non-empty endpoint!");
2119
2120 mEp->dir = usb_endpoint_dir_in(desc) ? TX : RX;
2121 mEp->num = usb_endpoint_num(desc);
2122 mEp->type = usb_endpoint_type(desc);
2123
2124 mEp->ep.maxpacket = usb_endpoint_maxp(desc);
2125
2126 dbg_event(_usb_addr(mEp), "ENABLE", 0);
2127
2128 mEp->qh.ptr->cap = 0;
2129
2130 if (mEp->type == USB_ENDPOINT_XFER_CONTROL)
2131 mEp->qh.ptr->cap |= QH_IOS;
2132 else if (mEp->type == USB_ENDPOINT_XFER_ISOC)
2133 mEp->qh.ptr->cap &= ~QH_MULT;
2134 else
2135 mEp->qh.ptr->cap &= ~QH_ZLT;
2136
2137 mEp->qh.ptr->cap |=
2138 (mEp->ep.maxpacket << ffs_nr(QH_MAX_PKT)) & QH_MAX_PKT;
2139 mEp->qh.ptr->td.next |= TD_TERMINATE; /* needed? */
2140
2141 /*
2142 * Enable endpoints in the HW other than ep0 as ep0
2143 * is always enabled
2144 */
2145 if (mEp->num)
2146 retval |= hw_ep_enable(mEp->num, mEp->dir, mEp->type);
2147
2148 spin_unlock_irqrestore(mEp->lock, flags);
2149 return retval;
2150 }
2151
2152 /**
2153 * ep_disable: endpoint is no longer usable
2154 *
2155 * Check usb_ep_disable() at "usb_gadget.h" for details
2156 */
2157 static int ep_disable(struct usb_ep *ep)
2158 {
2159 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
2160 int direction, retval = 0;
2161 unsigned long flags;
2162
2163 trace("%p", ep);
2164
2165 if (ep == NULL)
2166 return -EINVAL;
2167 else if (mEp->ep.desc == NULL)
2168 return -EBUSY;
2169
2170 spin_lock_irqsave(mEp->lock, flags);
2171
2172 /* only internal SW should disable ctrl endpts */
2173
2174 direction = mEp->dir;
2175 do {
2176 dbg_event(_usb_addr(mEp), "DISABLE", 0);
2177
2178 retval |= _ep_nuke(mEp);
2179 retval |= hw_ep_disable(mEp->num, mEp->dir);
2180
2181 if (mEp->type == USB_ENDPOINT_XFER_CONTROL)
2182 mEp->dir = (mEp->dir == TX) ? RX : TX;
2183
2184 } while (mEp->dir != direction);
2185
2186 mEp->ep.desc = NULL;
2187
2188 spin_unlock_irqrestore(mEp->lock, flags);
2189 return retval;
2190 }
2191
2192 /**
2193 * ep_alloc_request: allocate a request object to use with this endpoint
2194 *
2195 * Check usb_ep_alloc_request() at "usb_gadget.h" for details
2196 */
2197 static struct usb_request *ep_alloc_request(struct usb_ep *ep, gfp_t gfp_flags)
2198 {
2199 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
2200 struct ci13xxx_req *mReq = NULL;
2201
2202 trace("%p, %i", ep, gfp_flags);
2203
2204 if (ep == NULL) {
2205 pr_err("EINVAL\n");
2206 return NULL;
2207 }
2208
2209 mReq = kzalloc(sizeof(struct ci13xxx_req), gfp_flags);
2210 if (mReq != NULL) {
2211 INIT_LIST_HEAD(&mReq->queue);
2212 mReq->req.dma = DMA_ADDR_INVALID;
2213
2214 mReq->ptr = dma_pool_alloc(mEp->td_pool, gfp_flags,
2215 &mReq->dma);
2216 if (mReq->ptr == NULL) {
2217 kfree(mReq);
2218 mReq = NULL;
2219 }
2220 }
2221
2222 dbg_event(_usb_addr(mEp), "ALLOC", mReq == NULL);
2223
2224 return (mReq == NULL) ? NULL : &mReq->req;
2225 }
2226
2227 /**
2228 * ep_free_request: frees a request object
2229 *
2230 * Check usb_ep_free_request() at "usb_gadget.h" for details
2231 */
2232 static void ep_free_request(struct usb_ep *ep, struct usb_request *req)
2233 {
2234 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
2235 struct ci13xxx_req *mReq = container_of(req, struct ci13xxx_req, req);
2236 unsigned long flags;
2237
2238 trace("%p, %p", ep, req);
2239
2240 if (ep == NULL || req == NULL) {
2241 pr_err("EINVAL\n");
2242 return;
2243 } else if (!list_empty(&mReq->queue)) {
2244 pr_err("EBUSY\n");
2245 return;
2246 }
2247
2248 spin_lock_irqsave(mEp->lock, flags);
2249
2250 if (mReq->ptr)
2251 dma_pool_free(mEp->td_pool, mReq->ptr, mReq->dma);
2252 kfree(mReq);
2253
2254 dbg_event(_usb_addr(mEp), "FREE", 0);
2255
2256 spin_unlock_irqrestore(mEp->lock, flags);
2257 }
2258
2259 /**
2260 * ep_queue: queues (submits) an I/O request to an endpoint
2261 *
2262 * Check usb_ep_queue()* at usb_gadget.h" for details
2263 */
2264 static int ep_queue(struct usb_ep *ep, struct usb_request *req,
2265 gfp_t __maybe_unused gfp_flags)
2266 {
2267 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
2268 struct ci13xxx_req *mReq = container_of(req, struct ci13xxx_req, req);
2269 int retval = 0;
2270 unsigned long flags;
2271
2272 trace("%p, %p, %X", ep, req, gfp_flags);
2273
2274 if (ep == NULL || req == NULL || mEp->ep.desc == NULL)
2275 return -EINVAL;
2276
2277 spin_lock_irqsave(mEp->lock, flags);
2278
2279 if (mEp->type == USB_ENDPOINT_XFER_CONTROL) {
2280 if (req->length)
2281 mEp = (_udc->ep0_dir == RX) ?
2282 _udc->ep0out : _udc->ep0in;
2283 if (!list_empty(&mEp->qh.queue)) {
2284 _ep_nuke(mEp);
2285 retval = -EOVERFLOW;
2286 warn("endpoint ctrl %X nuked", _usb_addr(mEp));
2287 }
2288 }
2289
2290 /* first nuke then test link, e.g. previous status has not sent */
2291 if (!list_empty(&mReq->queue)) {
2292 retval = -EBUSY;
2293 pr_err("request already in queue\n");
2294 goto done;
2295 }
2296
2297 if (req->length > (4 * CI13XXX_PAGE_SIZE)) {
2298 req->length = (4 * CI13XXX_PAGE_SIZE);
2299 retval = -EMSGSIZE;
2300 warn("request length truncated");
2301 }
2302
2303 dbg_queue(_usb_addr(mEp), req, retval);
2304
2305 /* push request */
2306 mReq->req.status = -EINPROGRESS;
2307 mReq->req.actual = 0;
2308
2309 retval = _hardware_enqueue(mEp, mReq);
2310
2311 if (retval == -EALREADY) {
2312 dbg_event(_usb_addr(mEp), "QUEUE", retval);
2313 retval = 0;
2314 }
2315 if (!retval)
2316 list_add_tail(&mReq->queue, &mEp->qh.queue);
2317
2318 done:
2319 spin_unlock_irqrestore(mEp->lock, flags);
2320 return retval;
2321 }
2322
2323 /**
2324 * ep_dequeue: dequeues (cancels, unlinks) an I/O request from an endpoint
2325 *
2326 * Check usb_ep_dequeue() at "usb_gadget.h" for details
2327 */
2328 static int ep_dequeue(struct usb_ep *ep, struct usb_request *req)
2329 {
2330 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
2331 struct ci13xxx_req *mReq = container_of(req, struct ci13xxx_req, req);
2332 unsigned long flags;
2333
2334 trace("%p, %p", ep, req);
2335
2336 if (ep == NULL || req == NULL || mReq->req.status != -EALREADY ||
2337 mEp->ep.desc == NULL || list_empty(&mReq->queue) ||
2338 list_empty(&mEp->qh.queue))
2339 return -EINVAL;
2340
2341 spin_lock_irqsave(mEp->lock, flags);
2342
2343 dbg_event(_usb_addr(mEp), "DEQUEUE", 0);
2344
2345 hw_ep_flush(mEp->num, mEp->dir);
2346
2347 /* pop request */
2348 list_del_init(&mReq->queue);
2349 if (mReq->map) {
2350 dma_unmap_single(mEp->device, mReq->req.dma, mReq->req.length,
2351 mEp->dir ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
2352 mReq->req.dma = DMA_ADDR_INVALID;
2353 mReq->map = 0;
2354 }
2355 req->status = -ECONNRESET;
2356
2357 if (mReq->req.complete != NULL) {
2358 spin_unlock(mEp->lock);
2359 mReq->req.complete(&mEp->ep, &mReq->req);
2360 spin_lock(mEp->lock);
2361 }
2362
2363 spin_unlock_irqrestore(mEp->lock, flags);
2364 return 0;
2365 }
2366
2367 /**
2368 * ep_set_halt: sets the endpoint halt feature
2369 *
2370 * Check usb_ep_set_halt() at "usb_gadget.h" for details
2371 */
2372 static int ep_set_halt(struct usb_ep *ep, int value)
2373 {
2374 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
2375 int direction, retval = 0;
2376 unsigned long flags;
2377
2378 trace("%p, %i", ep, value);
2379
2380 if (ep == NULL || mEp->ep.desc == NULL)
2381 return -EINVAL;
2382
2383 spin_lock_irqsave(mEp->lock, flags);
2384
2385 #ifndef STALL_IN
2386 /* g_file_storage MS compliant but g_zero fails chapter 9 compliance */
2387 if (value && mEp->type == USB_ENDPOINT_XFER_BULK && mEp->dir == TX &&
2388 !list_empty(&mEp->qh.queue)) {
2389 spin_unlock_irqrestore(mEp->lock, flags);
2390 return -EAGAIN;
2391 }
2392 #endif
2393
2394 direction = mEp->dir;
2395 do {
2396 dbg_event(_usb_addr(mEp), "HALT", value);
2397 retval |= hw_ep_set_halt(mEp->num, mEp->dir, value);
2398
2399 if (!value)
2400 mEp->wedge = 0;
2401
2402 if (mEp->type == USB_ENDPOINT_XFER_CONTROL)
2403 mEp->dir = (mEp->dir == TX) ? RX : TX;
2404
2405 } while (mEp->dir != direction);
2406
2407 spin_unlock_irqrestore(mEp->lock, flags);
2408 return retval;
2409 }
2410
2411 /**
2412 * ep_set_wedge: sets the halt feature and ignores clear requests
2413 *
2414 * Check usb_ep_set_wedge() at "usb_gadget.h" for details
2415 */
2416 static int ep_set_wedge(struct usb_ep *ep)
2417 {
2418 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
2419 unsigned long flags;
2420
2421 trace("%p", ep);
2422
2423 if (ep == NULL || mEp->ep.desc == NULL)
2424 return -EINVAL;
2425
2426 spin_lock_irqsave(mEp->lock, flags);
2427
2428 dbg_event(_usb_addr(mEp), "WEDGE", 0);
2429 mEp->wedge = 1;
2430
2431 spin_unlock_irqrestore(mEp->lock, flags);
2432
2433 return usb_ep_set_halt(ep);
2434 }
2435
2436 /**
2437 * ep_fifo_flush: flushes contents of a fifo
2438 *
2439 * Check usb_ep_fifo_flush() at "usb_gadget.h" for details
2440 */
2441 static void ep_fifo_flush(struct usb_ep *ep)
2442 {
2443 struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep);
2444 unsigned long flags;
2445
2446 trace("%p", ep);
2447
2448 if (ep == NULL) {
2449 pr_err("%02X: -EINVAL\n", _usb_addr(mEp));
2450 return;
2451 }
2452
2453 spin_lock_irqsave(mEp->lock, flags);
2454
2455 dbg_event(_usb_addr(mEp), "FFLUSH", 0);
2456 hw_ep_flush(mEp->num, mEp->dir);
2457
2458 spin_unlock_irqrestore(mEp->lock, flags);
2459 }
2460
2461 /**
2462 * Endpoint-specific part of the API to the USB controller hardware
2463 * Check "usb_gadget.h" for details
2464 */
2465 static const struct usb_ep_ops usb_ep_ops = {
2466 .enable = ep_enable,
2467 .disable = ep_disable,
2468 .alloc_request = ep_alloc_request,
2469 .free_request = ep_free_request,
2470 .queue = ep_queue,
2471 .dequeue = ep_dequeue,
2472 .set_halt = ep_set_halt,
2473 .set_wedge = ep_set_wedge,
2474 .fifo_flush = ep_fifo_flush,
2475 };
2476
2477 /******************************************************************************
2478 * GADGET block
2479 *****************************************************************************/
2480 static int ci13xxx_vbus_session(struct usb_gadget *_gadget, int is_active)
2481 {
2482 struct ci13xxx *udc = container_of(_gadget, struct ci13xxx, gadget);
2483 unsigned long flags;
2484 int gadget_ready = 0;
2485
2486 if (!(udc->udc_driver->flags & CI13XXX_PULLUP_ON_VBUS))
2487 return -EOPNOTSUPP;
2488
2489 spin_lock_irqsave(udc->lock, flags);
2490 udc->vbus_active = is_active;
2491 if (udc->driver)
2492 gadget_ready = 1;
2493 spin_unlock_irqrestore(udc->lock, flags);
2494
2495 if (gadget_ready) {
2496 if (is_active) {
2497 pm_runtime_get_sync(&_gadget->dev);
2498 hw_device_reset(udc);
2499 hw_device_state(udc->ep0out->qh.dma);
2500 } else {
2501 hw_device_state(0);
2502 if (udc->udc_driver->notify_event)
2503 udc->udc_driver->notify_event(udc,
2504 CI13XXX_CONTROLLER_STOPPED_EVENT);
2505 _gadget_stop_activity(&udc->gadget);
2506 pm_runtime_put_sync(&_gadget->dev);
2507 }
2508 }
2509
2510 return 0;
2511 }
2512
2513 static int ci13xxx_wakeup(struct usb_gadget *_gadget)
2514 {
2515 struct ci13xxx *udc = container_of(_gadget, struct ci13xxx, gadget);
2516 unsigned long flags;
2517 int ret = 0;
2518
2519 trace();
2520
2521 spin_lock_irqsave(udc->lock, flags);
2522 if (!udc->remote_wakeup) {
2523 ret = -EOPNOTSUPP;
2524 trace("remote wakeup feature is not enabled\n");
2525 goto out;
2526 }
2527 if (!hw_cread(CAP_PORTSC, PORTSC_SUSP)) {
2528 ret = -EINVAL;
2529 trace("port is not suspended\n");
2530 goto out;
2531 }
2532 hw_cwrite(CAP_PORTSC, PORTSC_FPR, PORTSC_FPR);
2533 out:
2534 spin_unlock_irqrestore(udc->lock, flags);
2535 return ret;
2536 }
2537
2538 static int ci13xxx_vbus_draw(struct usb_gadget *_gadget, unsigned mA)
2539 {
2540 struct ci13xxx *udc = container_of(_gadget, struct ci13xxx, gadget);
2541
2542 if (udc->transceiver)
2543 return usb_phy_set_power(udc->transceiver, mA);
2544 return -ENOTSUPP;
2545 }
2546
2547 static int ci13xxx_start(struct usb_gadget_driver *driver,
2548 int (*bind)(struct usb_gadget *));
2549 static int ci13xxx_stop(struct usb_gadget_driver *driver);
2550 /**
2551 * Device operations part of the API to the USB controller hardware,
2552 * which don't involve endpoints (or i/o)
2553 * Check "usb_gadget.h" for details
2554 */
2555 static const struct usb_gadget_ops usb_gadget_ops = {
2556 .vbus_session = ci13xxx_vbus_session,
2557 .wakeup = ci13xxx_wakeup,
2558 .vbus_draw = ci13xxx_vbus_draw,
2559 .start = ci13xxx_start,
2560 .stop = ci13xxx_stop,
2561 };
2562
2563 /**
2564 * ci13xxx_start: register a gadget driver
2565 * @driver: the driver being registered
2566 * @bind: the driver's bind callback
2567 *
2568 * Check ci13xxx_start() at <linux/usb/gadget.h> for details.
2569 * Interrupts are enabled here.
2570 */
2571 static int ci13xxx_start(struct usb_gadget_driver *driver,
2572 int (*bind)(struct usb_gadget *))
2573 {
2574 struct ci13xxx *udc = _udc;
2575 unsigned long flags;
2576 int i, j;
2577 int retval = -ENOMEM;
2578
2579 trace("%p", driver);
2580
2581 if (driver == NULL ||
2582 bind == NULL ||
2583 driver->setup == NULL ||
2584 driver->disconnect == NULL)
2585 return -EINVAL;
2586 else if (udc == NULL)
2587 return -ENODEV;
2588 else if (udc->driver != NULL)
2589 return -EBUSY;
2590
2591 /* alloc resources */
2592 udc->qh_pool = dma_pool_create("ci13xxx_qh", &udc->gadget.dev,
2593 sizeof(struct ci13xxx_qh),
2594 64, CI13XXX_PAGE_SIZE);
2595 if (udc->qh_pool == NULL)
2596 return -ENOMEM;
2597
2598 udc->td_pool = dma_pool_create("ci13xxx_td", &udc->gadget.dev,
2599 sizeof(struct ci13xxx_td),
2600 64, CI13XXX_PAGE_SIZE);
2601 if (udc->td_pool == NULL) {
2602 dma_pool_destroy(udc->qh_pool);
2603 udc->qh_pool = NULL;
2604 return -ENOMEM;
2605 }
2606
2607 spin_lock_irqsave(udc->lock, flags);
2608
2609 info("hw_ep_max = %d", hw_ep_max);
2610
2611 udc->gadget.dev.driver = NULL;
2612
2613 retval = 0;
2614 for (i = 0; i < hw_ep_max/2; i++) {
2615 for (j = RX; j <= TX; j++) {
2616 int k = i + j * hw_ep_max/2;
2617 struct ci13xxx_ep *mEp = &udc->ci13xxx_ep[k];
2618
2619 scnprintf(mEp->name, sizeof(mEp->name), "ep%i%s", i,
2620 (j == TX) ? "in" : "out");
2621
2622 mEp->lock = udc->lock;
2623 mEp->device = &udc->gadget.dev;
2624 mEp->td_pool = udc->td_pool;
2625
2626 mEp->ep.name = mEp->name;
2627 mEp->ep.ops = &usb_ep_ops;
2628 mEp->ep.maxpacket = CTRL_PAYLOAD_MAX;
2629
2630 INIT_LIST_HEAD(&mEp->qh.queue);
2631 spin_unlock_irqrestore(udc->lock, flags);
2632 mEp->qh.ptr = dma_pool_alloc(udc->qh_pool, GFP_KERNEL,
2633 &mEp->qh.dma);
2634 spin_lock_irqsave(udc->lock, flags);
2635 if (mEp->qh.ptr == NULL)
2636 retval = -ENOMEM;
2637 else
2638 memset(mEp->qh.ptr, 0, sizeof(*mEp->qh.ptr));
2639
2640 /*
2641 * set up shorthands for ep0 out and in endpoints,
2642 * don't add to gadget's ep_list
2643 */
2644 if (i == 0) {
2645 if (j == RX)
2646 udc->ep0out = mEp;
2647 else
2648 udc->ep0in = mEp;
2649
2650 continue;
2651 }
2652
2653 list_add_tail(&mEp->ep.ep_list, &udc->gadget.ep_list);
2654 }
2655 }
2656 if (retval)
2657 goto done;
2658
2659 spin_unlock_irqrestore(udc->lock, flags);
2660 udc->ep0out->ep.desc = &ctrl_endpt_out_desc;
2661 retval = usb_ep_enable(&udc->ep0out->ep);
2662 if (retval)
2663 return retval;
2664
2665 udc->ep0in->ep.desc = &ctrl_endpt_in_desc;
2666 retval = usb_ep_enable(&udc->ep0in->ep);
2667 if (retval)
2668 return retval;
2669 spin_lock_irqsave(udc->lock, flags);
2670
2671 udc->gadget.ep0 = &udc->ep0in->ep;
2672 /* bind gadget */
2673 driver->driver.bus = NULL;
2674 udc->gadget.dev.driver = &driver->driver;
2675
2676 spin_unlock_irqrestore(udc->lock, flags);
2677 retval = bind(&udc->gadget); /* MAY SLEEP */
2678 spin_lock_irqsave(udc->lock, flags);
2679
2680 if (retval) {
2681 udc->gadget.dev.driver = NULL;
2682 goto done;
2683 }
2684
2685 udc->driver = driver;
2686 pm_runtime_get_sync(&udc->gadget.dev);
2687 if (udc->udc_driver->flags & CI13XXX_PULLUP_ON_VBUS) {
2688 if (udc->vbus_active) {
2689 if (udc->udc_driver->flags & CI13XXX_REGS_SHARED)
2690 hw_device_reset(udc);
2691 } else {
2692 pm_runtime_put_sync(&udc->gadget.dev);
2693 goto done;
2694 }
2695 }
2696
2697 retval = hw_device_state(udc->ep0out->qh.dma);
2698 if (retval)
2699 pm_runtime_put_sync(&udc->gadget.dev);
2700
2701 done:
2702 spin_unlock_irqrestore(udc->lock, flags);
2703 return retval;
2704 }
2705
2706 /**
2707 * ci13xxx_stop: unregister a gadget driver
2708 *
2709 * Check usb_gadget_unregister_driver() at "usb_gadget.h" for details
2710 */
2711 static int ci13xxx_stop(struct usb_gadget_driver *driver)
2712 {
2713 struct ci13xxx *udc = _udc;
2714 unsigned long i, flags;
2715
2716 trace("%p", driver);
2717
2718 if (driver == NULL ||
2719 driver->unbind == NULL ||
2720 driver->setup == NULL ||
2721 driver->disconnect == NULL ||
2722 driver != udc->driver)
2723 return -EINVAL;
2724
2725 spin_lock_irqsave(udc->lock, flags);
2726
2727 if (!(udc->udc_driver->flags & CI13XXX_PULLUP_ON_VBUS) ||
2728 udc->vbus_active) {
2729 hw_device_state(0);
2730 if (udc->udc_driver->notify_event)
2731 udc->udc_driver->notify_event(udc,
2732 CI13XXX_CONTROLLER_STOPPED_EVENT);
2733 spin_unlock_irqrestore(udc->lock, flags);
2734 _gadget_stop_activity(&udc->gadget);
2735 spin_lock_irqsave(udc->lock, flags);
2736 pm_runtime_put(&udc->gadget.dev);
2737 }
2738
2739 /* unbind gadget */
2740 spin_unlock_irqrestore(udc->lock, flags);
2741 driver->unbind(&udc->gadget); /* MAY SLEEP */
2742 spin_lock_irqsave(udc->lock, flags);
2743
2744 udc->gadget.dev.driver = NULL;
2745
2746 /* free resources */
2747 for (i = 0; i < hw_ep_max; i++) {
2748 struct ci13xxx_ep *mEp = &udc->ci13xxx_ep[i];
2749
2750 if (mEp->num)
2751 list_del_init(&mEp->ep.ep_list);
2752
2753 if (mEp->qh.ptr != NULL)
2754 dma_pool_free(udc->qh_pool, mEp->qh.ptr, mEp->qh.dma);
2755 }
2756
2757 udc->gadget.ep0 = NULL;
2758 udc->driver = NULL;
2759
2760 spin_unlock_irqrestore(udc->lock, flags);
2761
2762 if (udc->td_pool != NULL) {
2763 dma_pool_destroy(udc->td_pool);
2764 udc->td_pool = NULL;
2765 }
2766 if (udc->qh_pool != NULL) {
2767 dma_pool_destroy(udc->qh_pool);
2768 udc->qh_pool = NULL;
2769 }
2770
2771 return 0;
2772 }
2773
2774 /******************************************************************************
2775 * BUS block
2776 *****************************************************************************/
2777 /**
2778 * udc_irq: global interrupt handler
2779 *
2780 * This function returns IRQ_HANDLED if the IRQ has been handled
2781 * It locks access to registers
2782 */
2783 static irqreturn_t udc_irq(void)
2784 {
2785 struct ci13xxx *udc = _udc;
2786 irqreturn_t retval;
2787 u32 intr;
2788
2789 trace();
2790
2791 if (udc == NULL) {
2792 pr_err("ENODEV\n");
2793 return IRQ_HANDLED;
2794 }
2795
2796 spin_lock(udc->lock);
2797
2798 if (udc->udc_driver->flags & CI13XXX_REGS_SHARED) {
2799 if (hw_cread(CAP_USBMODE, USBMODE_CM) !=
2800 USBMODE_CM_DEVICE) {
2801 spin_unlock(udc->lock);
2802 return IRQ_NONE;
2803 }
2804 }
2805 intr = hw_test_and_clear_intr_active();
2806 if (intr) {
2807 isr_statistics.hndl.buf[isr_statistics.hndl.idx++] = intr;
2808 isr_statistics.hndl.idx &= ISR_MASK;
2809 isr_statistics.hndl.cnt++;
2810
2811 /* order defines priority - do NOT change it */
2812 if (USBi_URI & intr) {
2813 isr_statistics.uri++;
2814 isr_reset_handler(udc);
2815 }
2816 if (USBi_PCI & intr) {
2817 isr_statistics.pci++;
2818 udc->gadget.speed = hw_port_is_high_speed() ?
2819 USB_SPEED_HIGH : USB_SPEED_FULL;
2820 if (udc->suspended && udc->driver->resume) {
2821 spin_unlock(udc->lock);
2822 udc->driver->resume(&udc->gadget);
2823 spin_lock(udc->lock);
2824 udc->suspended = 0;
2825 }
2826 }
2827 if (USBi_UEI & intr)
2828 isr_statistics.uei++;
2829 if (USBi_UI & intr) {
2830 isr_statistics.ui++;
2831 isr_tr_complete_handler(udc);
2832 }
2833 if (USBi_SLI & intr) {
2834 if (udc->gadget.speed != USB_SPEED_UNKNOWN &&
2835 udc->driver->suspend) {
2836 udc->suspended = 1;
2837 spin_unlock(udc->lock);
2838 udc->driver->suspend(&udc->gadget);
2839 spin_lock(udc->lock);
2840 }
2841 isr_statistics.sli++;
2842 }
2843 retval = IRQ_HANDLED;
2844 } else {
2845 isr_statistics.none++;
2846 retval = IRQ_NONE;
2847 }
2848 spin_unlock(udc->lock);
2849
2850 return retval;
2851 }
2852
2853 /**
2854 * udc_release: driver release function
2855 * @dev: device
2856 *
2857 * Currently does nothing
2858 */
2859 static void udc_release(struct device *dev)
2860 {
2861 trace("%p", dev);
2862
2863 if (dev == NULL)
2864 pr_err("EINVAL\n");
2865 }
2866
2867 /**
2868 * udc_probe: parent probe must call this to initialize UDC
2869 * @dev: parent device
2870 * @regs: registers base address
2871 * @name: driver name
2872 *
2873 * This function returns an error code
2874 * No interrupts active, the IRQ has not been requested yet
2875 * Kernel assumes 32-bit DMA operations by default, no need to dma_set_mask
2876 */
2877 static int udc_probe(struct ci13xxx_udc_driver *driver, struct device *dev,
2878 void __iomem *regs)
2879 {
2880 struct ci13xxx *udc;
2881 int retval = 0;
2882
2883 trace("%p, %p, %p", dev, regs, driver->name);
2884
2885 if (dev == NULL || regs == NULL || driver == NULL ||
2886 driver->name == NULL)
2887 return -EINVAL;
2888
2889 udc = kzalloc(sizeof(struct ci13xxx), GFP_KERNEL);
2890 if (udc == NULL)
2891 return -ENOMEM;
2892
2893 udc->lock = &udc_lock;
2894 udc->regs = regs;
2895 udc->udc_driver = driver;
2896
2897 udc->gadget.ops = &usb_gadget_ops;
2898 udc->gadget.speed = USB_SPEED_UNKNOWN;
2899 udc->gadget.max_speed = USB_SPEED_HIGH;
2900 udc->gadget.is_otg = 0;
2901 udc->gadget.name = driver->name;
2902
2903 INIT_LIST_HEAD(&udc->gadget.ep_list);
2904 udc->gadget.ep0 = NULL;
2905
2906 dev_set_name(&udc->gadget.dev, "gadget");
2907 udc->gadget.dev.dma_mask = dev->dma_mask;
2908 udc->gadget.dev.coherent_dma_mask = dev->coherent_dma_mask;
2909 udc->gadget.dev.parent = dev;
2910 udc->gadget.dev.release = udc_release;
2911
2912 retval = hw_device_init(regs);
2913 if (retval < 0)
2914 goto free_udc;
2915
2916 udc->transceiver = usb_get_transceiver();
2917
2918 if (udc->udc_driver->flags & CI13XXX_REQUIRE_TRANSCEIVER) {
2919 if (udc->transceiver == NULL) {
2920 retval = -ENODEV;
2921 goto free_udc;
2922 }
2923 }
2924
2925 if (!(udc->udc_driver->flags & CI13XXX_REGS_SHARED)) {
2926 retval = hw_device_reset(udc);
2927 if (retval)
2928 goto put_transceiver;
2929 }
2930
2931 retval = device_register(&udc->gadget.dev);
2932 if (retval) {
2933 put_device(&udc->gadget.dev);
2934 goto put_transceiver;
2935 }
2936
2937 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
2938 retval = dbg_create_files(&udc->gadget.dev);
2939 #endif
2940 if (retval)
2941 goto unreg_device;
2942
2943 if (udc->transceiver) {
2944 retval = otg_set_peripheral(udc->transceiver->otg,
2945 &udc->gadget);
2946 if (retval)
2947 goto remove_dbg;
2948 }
2949
2950 retval = usb_add_gadget_udc(dev, &udc->gadget);
2951 if (retval)
2952 goto remove_trans;
2953
2954 pm_runtime_no_callbacks(&udc->gadget.dev);
2955 pm_runtime_enable(&udc->gadget.dev);
2956
2957 _udc = udc;
2958 return retval;
2959
2960 remove_trans:
2961 if (udc->transceiver) {
2962 otg_set_peripheral(udc->transceiver->otg, &udc->gadget);
2963 usb_put_transceiver(udc->transceiver);
2964 }
2965
2966 dev_err(dev, "error = %i\n", retval);
2967 remove_dbg:
2968 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
2969 dbg_remove_files(&udc->gadget.dev);
2970 #endif
2971 unreg_device:
2972 device_unregister(&udc->gadget.dev);
2973 put_transceiver:
2974 if (udc->transceiver)
2975 usb_put_transceiver(udc->transceiver);
2976 free_udc:
2977 kfree(udc);
2978 _udc = NULL;
2979 return retval;
2980 }
2981
2982 /**
2983 * udc_remove: parent remove must call this to remove UDC
2984 *
2985 * No interrupts active, the IRQ has been released
2986 */
2987 static void udc_remove(void)
2988 {
2989 struct ci13xxx *udc = _udc;
2990
2991 if (udc == NULL) {
2992 pr_err("EINVAL\n");
2993 return;
2994 }
2995 usb_del_gadget_udc(&udc->gadget);
2996
2997 if (udc->transceiver) {
2998 otg_set_peripheral(udc->transceiver->otg, &udc->gadget);
2999 usb_put_transceiver(udc->transceiver);
3000 }
3001 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
3002 dbg_remove_files(&udc->gadget.dev);
3003 #endif
3004 device_unregister(&udc->gadget.dev);
3005
3006 kfree(udc);
3007 _udc = NULL;
3008 }
This page took 0.092375 seconds and 4 git commands to generate.