David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1 | /* |
Alexander Shishkin | eb70e5a | 2012-05-11 17:25:54 +0300 | [diff] [blame] | 2 | * udc.c - ChipIdea UDC driver |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 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 | |
Matthias Kaehlcke | 36825a2 | 2009-04-15 22:28:36 +0200 | [diff] [blame] | 13 | #include <linux/delay.h> |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 14 | #include <linux/device.h> |
| 15 | #include <linux/dmapool.h> |
| 16 | #include <linux/dma-mapping.h> |
Kishon Vijay Abraham I | ded017e | 2012-06-26 17:40:32 +0530 | [diff] [blame] | 17 | #include <linux/err.h> |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 18 | #include <linux/init.h> |
Alexander Shishkin | 62bb84e | 2012-05-08 23:29:01 +0300 | [diff] [blame] | 19 | #include <linux/platform_device.h> |
| 20 | #include <linux/module.h> |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 21 | #include <linux/interrupt.h> |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 22 | #include <linux/io.h> |
| 23 | #include <linux/irq.h> |
| 24 | #include <linux/kernel.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/slab.h> |
Pavankumar Kondeti | c036019 | 2010-12-07 17:54:04 +0530 | [diff] [blame] | 26 | #include <linux/pm_runtime.h> |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 27 | #include <linux/usb/ch9.h> |
| 28 | #include <linux/usb/gadget.h> |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 29 | #include <linux/usb/otg.h> |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 30 | #include <linux/usb/chipidea.h> |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 31 | |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 32 | #include "ci.h" |
| 33 | #include "udc.h" |
| 34 | #include "bits.h" |
| 35 | #include "debug.h" |
Michael Grzeschik | 954aad8 | 2011-10-10 18:38:06 +0200 | [diff] [blame] | 36 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 37 | /* control endpoint description */ |
| 38 | static const struct usb_endpoint_descriptor |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 39 | ctrl_endpt_out_desc = { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 40 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 41 | .bDescriptorType = USB_DT_ENDPOINT, |
| 42 | |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 43 | .bEndpointAddress = USB_DIR_OUT, |
| 44 | .bmAttributes = USB_ENDPOINT_XFER_CONTROL, |
| 45 | .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX), |
| 46 | }; |
| 47 | |
| 48 | static const struct usb_endpoint_descriptor |
| 49 | ctrl_endpt_in_desc = { |
| 50 | .bLength = USB_DT_ENDPOINT_SIZE, |
| 51 | .bDescriptorType = USB_DT_ENDPOINT, |
| 52 | |
| 53 | .bEndpointAddress = USB_DIR_IN, |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 54 | .bmAttributes = USB_ENDPOINT_XFER_CONTROL, |
| 55 | .wMaxPacketSize = cpu_to_le16(CTRL_PAYLOAD_MAX), |
| 56 | }; |
| 57 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 58 | /** |
| 59 | * hw_ep_bit: calculates the bit number |
| 60 | * @num: endpoint number |
| 61 | * @dir: endpoint direction |
| 62 | * |
| 63 | * This function returns bit number |
| 64 | */ |
| 65 | static inline int hw_ep_bit(int num, int dir) |
| 66 | { |
| 67 | return num + (dir ? 16 : 0); |
| 68 | } |
| 69 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 70 | static inline int ep_to_bit(struct ci13xxx *ci, int n) |
Marc Kleine-Budde | dd39c35 | 2011-10-10 18:38:10 +0200 | [diff] [blame] | 71 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 72 | int fill = 16 - ci->hw_ep_max / 2; |
Marc Kleine-Budde | dd39c35 | 2011-10-10 18:38:10 +0200 | [diff] [blame] | 73 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 74 | if (n >= ci->hw_ep_max / 2) |
Marc Kleine-Budde | dd39c35 | 2011-10-10 18:38:10 +0200 | [diff] [blame] | 75 | n += fill; |
| 76 | |
| 77 | return n; |
| 78 | } |
| 79 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 80 | /** |
Michael Grzeschik | c0a48e6 | 2012-09-12 14:58:01 +0300 | [diff] [blame] | 81 | * hw_device_state: enables/disables interrupts (execute without interruption) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 82 | * @dma: 0 => disable, !0 => enable and set dma engine |
| 83 | * |
| 84 | * This function returns an error code |
| 85 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 86 | static int hw_device_state(struct ci13xxx *ci, u32 dma) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 87 | { |
| 88 | if (dma) { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 89 | hw_write(ci, OP_ENDPTLISTADDR, ~0, dma); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 90 | /* interrupt, error, port change, reset, sleep/suspend */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 91 | hw_write(ci, OP_USBINTR, ~0, |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 92 | USBi_UI|USBi_UEI|USBi_PCI|USBi_URI|USBi_SLI); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 93 | } else { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 94 | hw_write(ci, OP_USBINTR, ~0, 0); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 95 | } |
| 96 | return 0; |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * hw_ep_flush: flush endpoint fifo (execute without interruption) |
| 101 | * @num: endpoint number |
| 102 | * @dir: endpoint direction |
| 103 | * |
| 104 | * This function returns an error code |
| 105 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 106 | static int hw_ep_flush(struct ci13xxx *ci, int num, int dir) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 107 | { |
| 108 | int n = hw_ep_bit(num, dir); |
| 109 | |
| 110 | do { |
| 111 | /* flush any pending transfer */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 112 | hw_write(ci, OP_ENDPTFLUSH, BIT(n), BIT(n)); |
| 113 | while (hw_read(ci, OP_ENDPTFLUSH, BIT(n))) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 114 | cpu_relax(); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 115 | } while (hw_read(ci, OP_ENDPTSTAT, BIT(n))); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 116 | |
| 117 | return 0; |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * hw_ep_disable: disables endpoint (execute without interruption) |
| 122 | * @num: endpoint number |
| 123 | * @dir: endpoint direction |
| 124 | * |
| 125 | * This function returns an error code |
| 126 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 127 | static int hw_ep_disable(struct ci13xxx *ci, int num, int dir) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 128 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 129 | hw_ep_flush(ci, num, dir); |
| 130 | hw_write(ci, OP_ENDPTCTRL + num, |
Alexander Shishkin | d3595d1 | 2012-05-08 23:28:58 +0300 | [diff] [blame] | 131 | dir ? ENDPTCTRL_TXE : ENDPTCTRL_RXE, 0); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 132 | return 0; |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * hw_ep_enable: enables endpoint (execute without interruption) |
| 137 | * @num: endpoint number |
| 138 | * @dir: endpoint direction |
| 139 | * @type: endpoint type |
| 140 | * |
| 141 | * This function returns an error code |
| 142 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 143 | static int hw_ep_enable(struct ci13xxx *ci, int num, int dir, int type) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 144 | { |
| 145 | u32 mask, data; |
| 146 | |
| 147 | if (dir) { |
| 148 | mask = ENDPTCTRL_TXT; /* type */ |
| 149 | data = type << ffs_nr(mask); |
| 150 | |
| 151 | mask |= ENDPTCTRL_TXS; /* unstall */ |
| 152 | mask |= ENDPTCTRL_TXR; /* reset data toggle */ |
| 153 | data |= ENDPTCTRL_TXR; |
| 154 | mask |= ENDPTCTRL_TXE; /* enable */ |
| 155 | data |= ENDPTCTRL_TXE; |
| 156 | } else { |
| 157 | mask = ENDPTCTRL_RXT; /* type */ |
| 158 | data = type << ffs_nr(mask); |
| 159 | |
| 160 | mask |= ENDPTCTRL_RXS; /* unstall */ |
| 161 | mask |= ENDPTCTRL_RXR; /* reset data toggle */ |
| 162 | data |= ENDPTCTRL_RXR; |
| 163 | mask |= ENDPTCTRL_RXE; /* enable */ |
| 164 | data |= ENDPTCTRL_RXE; |
| 165 | } |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 166 | hw_write(ci, OP_ENDPTCTRL + num, mask, data); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * hw_ep_get_halt: return endpoint halt status |
| 172 | * @num: endpoint number |
| 173 | * @dir: endpoint direction |
| 174 | * |
| 175 | * This function returns 1 if endpoint halted |
| 176 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 177 | static int hw_ep_get_halt(struct ci13xxx *ci, int num, int dir) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 178 | { |
| 179 | u32 mask = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS; |
| 180 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 181 | return hw_read(ci, OP_ENDPTCTRL + num, mask) ? 1 : 0; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | /** |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 185 | * hw_test_and_clear_setup_status: test & clear setup status (execute without |
| 186 | * interruption) |
Marc Kleine-Budde | dd39c35 | 2011-10-10 18:38:10 +0200 | [diff] [blame] | 187 | * @n: endpoint number |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 188 | * |
| 189 | * This function returns setup status |
| 190 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 191 | static int hw_test_and_clear_setup_status(struct ci13xxx *ci, int n) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 192 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 193 | n = ep_to_bit(ci, n); |
| 194 | return hw_test_and_clear(ci, OP_ENDPTSETUPSTAT, BIT(n)); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | /** |
| 198 | * hw_ep_prime: primes endpoint (execute without interruption) |
| 199 | * @num: endpoint number |
| 200 | * @dir: endpoint direction |
| 201 | * @is_ctrl: true if control endpoint |
| 202 | * |
| 203 | * This function returns an error code |
| 204 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 205 | static int hw_ep_prime(struct ci13xxx *ci, int num, int dir, int is_ctrl) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 206 | { |
| 207 | int n = hw_ep_bit(num, dir); |
| 208 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 209 | if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num))) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 210 | return -EAGAIN; |
| 211 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 212 | hw_write(ci, OP_ENDPTPRIME, BIT(n), BIT(n)); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 213 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 214 | while (hw_read(ci, OP_ENDPTPRIME, BIT(n))) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 215 | cpu_relax(); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 216 | if (is_ctrl && dir == RX && hw_read(ci, OP_ENDPTSETUPSTAT, BIT(num))) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 217 | return -EAGAIN; |
| 218 | |
| 219 | /* status shoult be tested according with manual but it doesn't work */ |
| 220 | return 0; |
| 221 | } |
| 222 | |
| 223 | /** |
| 224 | * hw_ep_set_halt: configures ep halt & resets data toggle after clear (execute |
| 225 | * without interruption) |
| 226 | * @num: endpoint number |
| 227 | * @dir: endpoint direction |
| 228 | * @value: true => stall, false => unstall |
| 229 | * |
| 230 | * This function returns an error code |
| 231 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 232 | static int hw_ep_set_halt(struct ci13xxx *ci, int num, int dir, int value) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 233 | { |
| 234 | if (value != 0 && value != 1) |
| 235 | return -EINVAL; |
| 236 | |
| 237 | do { |
Alexander Shishkin | 262c163 | 2012-05-08 23:28:59 +0300 | [diff] [blame] | 238 | enum ci13xxx_regs reg = OP_ENDPTCTRL + num; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 239 | u32 mask_xs = dir ? ENDPTCTRL_TXS : ENDPTCTRL_RXS; |
| 240 | u32 mask_xr = dir ? ENDPTCTRL_TXR : ENDPTCTRL_RXR; |
| 241 | |
| 242 | /* data toggle - reserved for EP0 but it's in ESS */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 243 | hw_write(ci, reg, mask_xs|mask_xr, |
Alexander Shishkin | 262c163 | 2012-05-08 23:28:59 +0300 | [diff] [blame] | 244 | value ? mask_xs : mask_xr); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 245 | } while (value != hw_ep_get_halt(ci, num, dir)); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 246 | |
| 247 | return 0; |
| 248 | } |
| 249 | |
| 250 | /** |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 251 | * hw_is_port_high_speed: test if port is high speed |
| 252 | * |
| 253 | * This function returns true if high speed port |
| 254 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 255 | static int hw_port_is_high_speed(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 256 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 257 | return ci->hw_bank.lpm ? hw_read(ci, OP_DEVLC, DEVLC_PSPD) : |
| 258 | hw_read(ci, OP_PORTSC, PORTSC_HSP); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | /** |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 262 | * hw_read_intr_enable: returns interrupt enable register |
| 263 | * |
| 264 | * This function returns register data |
| 265 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 266 | static u32 hw_read_intr_enable(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 267 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 268 | return hw_read(ci, OP_USBINTR, ~0); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 269 | } |
| 270 | |
| 271 | /** |
| 272 | * hw_read_intr_status: returns interrupt status register |
| 273 | * |
| 274 | * This function returns register data |
| 275 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 276 | static u32 hw_read_intr_status(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 277 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 278 | return hw_read(ci, OP_USBSTS, ~0); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | /** |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 282 | * hw_test_and_clear_complete: test & clear complete status (execute without |
| 283 | * interruption) |
Marc Kleine-Budde | dd39c35 | 2011-10-10 18:38:10 +0200 | [diff] [blame] | 284 | * @n: endpoint number |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 285 | * |
| 286 | * This function returns complete status |
| 287 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 288 | static int hw_test_and_clear_complete(struct ci13xxx *ci, int n) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 289 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 290 | n = ep_to_bit(ci, n); |
| 291 | return hw_test_and_clear(ci, OP_ENDPTCOMPLETE, BIT(n)); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | /** |
| 295 | * hw_test_and_clear_intr_active: test & clear active interrupts (execute |
| 296 | * without interruption) |
| 297 | * |
| 298 | * This function returns active interrutps |
| 299 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 300 | static u32 hw_test_and_clear_intr_active(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 301 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 302 | u32 reg = hw_read_intr_status(ci) & hw_read_intr_enable(ci); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 303 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 304 | hw_write(ci, OP_USBSTS, ~0, reg); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 305 | return reg; |
| 306 | } |
| 307 | |
Richard Zhao | 8c4fc03 | 2012-09-12 14:58:09 +0300 | [diff] [blame] | 308 | static void hw_enable_vbus_intr(struct ci13xxx *ci) |
| 309 | { |
| 310 | hw_write(ci, OP_OTGSC, OTGSC_AVVIS, OTGSC_AVVIS); |
| 311 | hw_write(ci, OP_OTGSC, OTGSC_AVVIE, OTGSC_AVVIE); |
| 312 | queue_work(ci->wq, &ci->vbus_work); |
| 313 | } |
| 314 | |
| 315 | static void hw_disable_vbus_intr(struct ci13xxx *ci) |
| 316 | { |
| 317 | hw_write(ci, OP_OTGSC, OTGSC_AVVIE, 0); |
| 318 | } |
| 319 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 320 | /** |
| 321 | * hw_test_and_clear_setup_guard: test & clear setup guard (execute without |
| 322 | * interruption) |
| 323 | * |
| 324 | * This function returns guard value |
| 325 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 326 | static int hw_test_and_clear_setup_guard(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 327 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 328 | return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, 0); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | /** |
| 332 | * hw_test_and_set_setup_guard: test & set setup guard (execute without |
| 333 | * interruption) |
| 334 | * |
| 335 | * This function returns guard value |
| 336 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 337 | static int hw_test_and_set_setup_guard(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 338 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 339 | return hw_test_and_write(ci, OP_USBCMD, USBCMD_SUTW, USBCMD_SUTW); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 340 | } |
| 341 | |
| 342 | /** |
| 343 | * hw_usb_set_address: configures USB address (execute without interruption) |
| 344 | * @value: new USB address |
| 345 | * |
Alexander Shishkin | ef15e54 | 2012-05-11 17:25:43 +0300 | [diff] [blame] | 346 | * This function explicitly sets the address, without the "USBADRA" (advance) |
| 347 | * feature, which is not supported by older versions of the controller. |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 348 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 349 | static void hw_usb_set_address(struct ci13xxx *ci, u8 value) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 350 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 351 | hw_write(ci, OP_DEVICEADDR, DEVICEADDR_USBADR, |
Alexander Shishkin | ef15e54 | 2012-05-11 17:25:43 +0300 | [diff] [blame] | 352 | value << ffs_nr(DEVICEADDR_USBADR)); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 353 | } |
| 354 | |
| 355 | /** |
| 356 | * hw_usb_reset: restart device after a bus reset (execute without |
| 357 | * interruption) |
| 358 | * |
| 359 | * This function returns an error code |
| 360 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 361 | static int hw_usb_reset(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 362 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 363 | hw_usb_set_address(ci, 0); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 364 | |
| 365 | /* ESS flushes only at end?!? */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 366 | hw_write(ci, OP_ENDPTFLUSH, ~0, ~0); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 367 | |
| 368 | /* clear setup token semaphores */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 369 | hw_write(ci, OP_ENDPTSETUPSTAT, 0, 0); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 370 | |
| 371 | /* clear complete status */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 372 | hw_write(ci, OP_ENDPTCOMPLETE, 0, 0); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 373 | |
| 374 | /* wait until all bits cleared */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 375 | while (hw_read(ci, OP_ENDPTPRIME, ~0)) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 376 | udelay(10); /* not RTOS friendly */ |
| 377 | |
| 378 | /* reset all endpoints ? */ |
| 379 | |
| 380 | /* reset internal status and wait for further instructions |
| 381 | no need to verify the port reset status (ESS does it) */ |
| 382 | |
| 383 | return 0; |
| 384 | } |
| 385 | |
Richard Zhao | 8c4fc03 | 2012-09-12 14:58:09 +0300 | [diff] [blame] | 386 | static void vbus_work(struct work_struct *work) |
| 387 | { |
| 388 | struct ci13xxx *ci = container_of(work, struct ci13xxx, vbus_work); |
| 389 | |
| 390 | if (hw_read(ci, OP_OTGSC, OTGSC_AVV)) |
| 391 | usb_gadget_vbus_connect(&ci->gadget); |
| 392 | else |
| 393 | usb_gadget_vbus_disconnect(&ci->gadget); |
| 394 | } |
| 395 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 396 | /****************************************************************************** |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 397 | * UTIL block |
| 398 | *****************************************************************************/ |
| 399 | /** |
| 400 | * _usb_addr: calculates endpoint address from direction & number |
| 401 | * @ep: endpoint |
| 402 | */ |
| 403 | static inline u8 _usb_addr(struct ci13xxx_ep *ep) |
| 404 | { |
| 405 | return ((ep->dir == TX) ? USB_ENDPOINT_DIR_MASK : 0) | ep->num; |
| 406 | } |
| 407 | |
| 408 | /** |
| 409 | * _hardware_queue: configures a request at hardware level |
| 410 | * @gadget: gadget |
| 411 | * @mEp: endpoint |
| 412 | * |
| 413 | * This function returns an error code |
| 414 | */ |
| 415 | static int _hardware_enqueue(struct ci13xxx_ep *mEp, struct ci13xxx_req *mReq) |
| 416 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 417 | struct ci13xxx *ci = mEp->ci; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 418 | unsigned i; |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 419 | int ret = 0; |
| 420 | unsigned length = mReq->req.length; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 421 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 422 | /* don't queue twice */ |
| 423 | if (mReq->req.status == -EALREADY) |
| 424 | return -EALREADY; |
| 425 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 426 | mReq->req.status = -EALREADY; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 427 | |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 428 | if (mReq->req.zero && length && (length % mEp->ep.maxpacket == 0)) { |
| 429 | mReq->zptr = dma_pool_alloc(mEp->td_pool, GFP_ATOMIC, |
| 430 | &mReq->zdma); |
Alexander Shishkin | 5e0aa49 | 2012-05-11 17:25:56 +0300 | [diff] [blame] | 431 | if (mReq->zptr == NULL) |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 432 | return -ENOMEM; |
Alexander Shishkin | 5e0aa49 | 2012-05-11 17:25:56 +0300 | [diff] [blame] | 433 | |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 434 | memset(mReq->zptr, 0, sizeof(*mReq->zptr)); |
| 435 | mReq->zptr->next = TD_TERMINATE; |
| 436 | mReq->zptr->token = TD_STATUS_ACTIVE; |
| 437 | if (!mReq->req.no_interrupt) |
| 438 | mReq->zptr->token |= TD_IOC; |
| 439 | } |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 440 | ret = usb_gadget_map_request(&ci->gadget, &mReq->req, mEp->dir); |
Alexander Shishkin | 5e0aa49 | 2012-05-11 17:25:56 +0300 | [diff] [blame] | 441 | if (ret) |
| 442 | return ret; |
| 443 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 444 | /* |
| 445 | * TD configuration |
| 446 | * TODO - handle requests which spawns into several TDs |
| 447 | */ |
| 448 | memset(mReq->ptr, 0, sizeof(*mReq->ptr)); |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 449 | mReq->ptr->token = length << ffs_nr(TD_TOTAL_BYTES); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 450 | mReq->ptr->token &= TD_TOTAL_BYTES; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 451 | mReq->ptr->token |= TD_STATUS_ACTIVE; |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 452 | if (mReq->zptr) { |
| 453 | mReq->ptr->next = mReq->zdma; |
| 454 | } else { |
| 455 | mReq->ptr->next = TD_TERMINATE; |
| 456 | if (!mReq->req.no_interrupt) |
| 457 | mReq->ptr->token |= TD_IOC; |
| 458 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 459 | mReq->ptr->page[0] = mReq->req.dma; |
| 460 | for (i = 1; i < 5; i++) |
| 461 | mReq->ptr->page[i] = |
Artem Leonenko | 0a313c4 | 2010-12-14 23:47:06 -0800 | [diff] [blame] | 462 | (mReq->req.dma + i * CI13XXX_PAGE_SIZE) & ~TD_RESERVED_MASK; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 463 | |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 464 | if (!list_empty(&mEp->qh.queue)) { |
| 465 | struct ci13xxx_req *mReqPrev; |
| 466 | int n = hw_ep_bit(mEp->num, mEp->dir); |
| 467 | int tmp_stat; |
| 468 | |
| 469 | mReqPrev = list_entry(mEp->qh.queue.prev, |
| 470 | struct ci13xxx_req, queue); |
| 471 | if (mReqPrev->zptr) |
| 472 | mReqPrev->zptr->next = mReq->dma & TD_ADDR_MASK; |
| 473 | else |
| 474 | mReqPrev->ptr->next = mReq->dma & TD_ADDR_MASK; |
| 475 | wmb(); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 476 | if (hw_read(ci, OP_ENDPTPRIME, BIT(n))) |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 477 | goto done; |
| 478 | do { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 479 | hw_write(ci, OP_USBCMD, USBCMD_ATDTW, USBCMD_ATDTW); |
| 480 | tmp_stat = hw_read(ci, OP_ENDPTSTAT, BIT(n)); |
| 481 | } while (!hw_read(ci, OP_USBCMD, USBCMD_ATDTW)); |
| 482 | hw_write(ci, OP_USBCMD, USBCMD_ATDTW, 0); |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 483 | if (tmp_stat) |
| 484 | goto done; |
| 485 | } |
| 486 | |
| 487 | /* QH configuration */ |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 488 | mEp->qh.ptr->td.next = mReq->dma; /* TERMINATE = 0 */ |
| 489 | mEp->qh.ptr->td.token &= ~TD_STATUS; /* clear status */ |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 490 | mEp->qh.ptr->cap |= QH_ZLT; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 491 | |
| 492 | wmb(); /* synchronize before ep prime */ |
| 493 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 494 | ret = hw_ep_prime(ci, mEp->num, mEp->dir, |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 495 | mEp->type == USB_ENDPOINT_XFER_CONTROL); |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 496 | done: |
| 497 | return ret; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 498 | } |
| 499 | |
| 500 | /** |
| 501 | * _hardware_dequeue: handles a request at hardware level |
| 502 | * @gadget: gadget |
| 503 | * @mEp: endpoint |
| 504 | * |
| 505 | * This function returns an error code |
| 506 | */ |
| 507 | static int _hardware_dequeue(struct ci13xxx_ep *mEp, struct ci13xxx_req *mReq) |
| 508 | { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 509 | if (mReq->req.status != -EALREADY) |
| 510 | return -EINVAL; |
| 511 | |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 512 | if ((TD_STATUS_ACTIVE & mReq->ptr->token) != 0) |
| 513 | return -EBUSY; |
| 514 | |
| 515 | if (mReq->zptr) { |
| 516 | if ((TD_STATUS_ACTIVE & mReq->zptr->token) != 0) |
| 517 | return -EBUSY; |
| 518 | dma_pool_free(mEp->td_pool, mReq->zptr, mReq->zdma); |
| 519 | mReq->zptr = NULL; |
| 520 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 521 | |
| 522 | mReq->req.status = 0; |
| 523 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 524 | usb_gadget_unmap_request(&mEp->ci->gadget, &mReq->req, mEp->dir); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 525 | |
| 526 | mReq->req.status = mReq->ptr->token & TD_STATUS; |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 527 | if ((TD_STATUS_HALTED & mReq->req.status) != 0) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 528 | mReq->req.status = -1; |
| 529 | else if ((TD_STATUS_DT_ERR & mReq->req.status) != 0) |
| 530 | mReq->req.status = -1; |
| 531 | else if ((TD_STATUS_TR_ERR & mReq->req.status) != 0) |
| 532 | mReq->req.status = -1; |
| 533 | |
| 534 | mReq->req.actual = mReq->ptr->token & TD_TOTAL_BYTES; |
| 535 | mReq->req.actual >>= ffs_nr(TD_TOTAL_BYTES); |
| 536 | mReq->req.actual = mReq->req.length - mReq->req.actual; |
| 537 | mReq->req.actual = mReq->req.status ? 0 : mReq->req.actual; |
| 538 | |
| 539 | return mReq->req.actual; |
| 540 | } |
| 541 | |
| 542 | /** |
| 543 | * _ep_nuke: dequeues all endpoint requests |
| 544 | * @mEp: endpoint |
| 545 | * |
| 546 | * This function returns an error code |
| 547 | * Caller must hold lock |
| 548 | */ |
| 549 | static int _ep_nuke(struct ci13xxx_ep *mEp) |
| 550 | __releases(mEp->lock) |
| 551 | __acquires(mEp->lock) |
| 552 | { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 553 | if (mEp == NULL) |
| 554 | return -EINVAL; |
| 555 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 556 | hw_ep_flush(mEp->ci, mEp->num, mEp->dir); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 557 | |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 558 | while (!list_empty(&mEp->qh.queue)) { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 559 | |
| 560 | /* pop oldest request */ |
| 561 | struct ci13xxx_req *mReq = \ |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 562 | list_entry(mEp->qh.queue.next, |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 563 | struct ci13xxx_req, queue); |
| 564 | list_del_init(&mReq->queue); |
| 565 | mReq->req.status = -ESHUTDOWN; |
| 566 | |
Artem Leonenko | 7c25a82 | 2010-12-14 23:46:55 -0800 | [diff] [blame] | 567 | if (mReq->req.complete != NULL) { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 568 | spin_unlock(mEp->lock); |
| 569 | mReq->req.complete(&mEp->ep, &mReq->req); |
| 570 | spin_lock(mEp->lock); |
| 571 | } |
| 572 | } |
| 573 | return 0; |
| 574 | } |
| 575 | |
| 576 | /** |
| 577 | * _gadget_stop_activity: stops all USB activity, flushes & disables all endpts |
| 578 | * @gadget: gadget |
| 579 | * |
| 580 | * This function returns an error code |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 581 | */ |
| 582 | static int _gadget_stop_activity(struct usb_gadget *gadget) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 583 | { |
| 584 | struct usb_ep *ep; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 585 | struct ci13xxx *ci = container_of(gadget, struct ci13xxx, gadget); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 586 | unsigned long flags; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 587 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 588 | spin_lock_irqsave(&ci->lock, flags); |
| 589 | ci->gadget.speed = USB_SPEED_UNKNOWN; |
| 590 | ci->remote_wakeup = 0; |
| 591 | ci->suspended = 0; |
| 592 | spin_unlock_irqrestore(&ci->lock, flags); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 593 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 594 | /* flush all endpoints */ |
| 595 | gadget_for_each_ep(ep, gadget) { |
| 596 | usb_ep_fifo_flush(ep); |
| 597 | } |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 598 | usb_ep_fifo_flush(&ci->ep0out->ep); |
| 599 | usb_ep_fifo_flush(&ci->ep0in->ep); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 600 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 601 | if (ci->driver) |
| 602 | ci->driver->disconnect(gadget); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 603 | |
| 604 | /* make sure to disable all endpoints */ |
| 605 | gadget_for_each_ep(ep, gadget) { |
| 606 | usb_ep_disable(ep); |
| 607 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 608 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 609 | if (ci->status != NULL) { |
| 610 | usb_ep_free_request(&ci->ep0in->ep, ci->status); |
| 611 | ci->status = NULL; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 612 | } |
| 613 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 614 | return 0; |
| 615 | } |
| 616 | |
| 617 | /****************************************************************************** |
| 618 | * ISR block |
| 619 | *****************************************************************************/ |
| 620 | /** |
| 621 | * isr_reset_handler: USB reset interrupt handler |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 622 | * @ci: UDC device |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 623 | * |
| 624 | * This function resets USB engine after a bus reset occurred |
| 625 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 626 | static void isr_reset_handler(struct ci13xxx *ci) |
| 627 | __releases(ci->lock) |
| 628 | __acquires(ci->lock) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 629 | { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 630 | int retval; |
| 631 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 632 | dbg_event(0xFF, "BUS RST", 0); |
| 633 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 634 | spin_unlock(&ci->lock); |
| 635 | retval = _gadget_stop_activity(&ci->gadget); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 636 | if (retval) |
| 637 | goto done; |
| 638 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 639 | retval = hw_usb_reset(ci); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 640 | if (retval) |
| 641 | goto done; |
| 642 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 643 | ci->status = usb_ep_alloc_request(&ci->ep0in->ep, GFP_ATOMIC); |
| 644 | if (ci->status == NULL) |
Anji jonnala | ac1aa6a | 2011-05-02 11:56:32 +0530 | [diff] [blame] | 645 | retval = -ENOMEM; |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 646 | |
Michael Grzeschik | b932225 | 2012-05-11 17:25:50 +0300 | [diff] [blame] | 647 | done: |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 648 | spin_lock(&ci->lock); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 649 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 650 | if (retval) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 651 | dev_err(ci->dev, "error: %i\n", retval); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 652 | } |
| 653 | |
| 654 | /** |
| 655 | * isr_get_status_complete: get_status request complete function |
| 656 | * @ep: endpoint |
| 657 | * @req: request handled |
| 658 | * |
| 659 | * Caller must release lock |
| 660 | */ |
| 661 | static void isr_get_status_complete(struct usb_ep *ep, struct usb_request *req) |
| 662 | { |
Alexander Shishkin | 0f08909 | 2012-05-08 23:29:02 +0300 | [diff] [blame] | 663 | if (ep == NULL || req == NULL) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 664 | return; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 665 | |
| 666 | kfree(req->buf); |
| 667 | usb_ep_free_request(ep, req); |
| 668 | } |
| 669 | |
| 670 | /** |
| 671 | * isr_get_status_response: get_status request response |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 672 | * @ci: ci struct |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 673 | * @setup: setup request packet |
| 674 | * |
| 675 | * This function returns an error code |
| 676 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 677 | static int isr_get_status_response(struct ci13xxx *ci, |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 678 | struct usb_ctrlrequest *setup) |
| 679 | __releases(mEp->lock) |
| 680 | __acquires(mEp->lock) |
| 681 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 682 | struct ci13xxx_ep *mEp = ci->ep0in; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 683 | struct usb_request *req = NULL; |
| 684 | gfp_t gfp_flags = GFP_ATOMIC; |
| 685 | int dir, num, retval; |
| 686 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 687 | if (mEp == NULL || setup == NULL) |
| 688 | return -EINVAL; |
| 689 | |
| 690 | spin_unlock(mEp->lock); |
| 691 | req = usb_ep_alloc_request(&mEp->ep, gfp_flags); |
| 692 | spin_lock(mEp->lock); |
| 693 | if (req == NULL) |
| 694 | return -ENOMEM; |
| 695 | |
| 696 | req->complete = isr_get_status_complete; |
| 697 | req->length = 2; |
| 698 | req->buf = kzalloc(req->length, gfp_flags); |
| 699 | if (req->buf == NULL) { |
| 700 | retval = -ENOMEM; |
| 701 | goto err_free_req; |
| 702 | } |
| 703 | |
| 704 | if ((setup->bRequestType & USB_RECIP_MASK) == USB_RECIP_DEVICE) { |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 705 | /* Assume that device is bus powered for now. */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 706 | *(u16 *)req->buf = ci->remote_wakeup << 1; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 707 | retval = 0; |
| 708 | } else if ((setup->bRequestType & USB_RECIP_MASK) \ |
| 709 | == USB_RECIP_ENDPOINT) { |
| 710 | dir = (le16_to_cpu(setup->wIndex) & USB_ENDPOINT_DIR_MASK) ? |
| 711 | TX : RX; |
| 712 | num = le16_to_cpu(setup->wIndex) & USB_ENDPOINT_NUMBER_MASK; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 713 | *(u16 *)req->buf = hw_ep_get_halt(ci, num, dir); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 714 | } |
| 715 | /* else do nothing; reserved for future use */ |
| 716 | |
| 717 | spin_unlock(mEp->lock); |
| 718 | retval = usb_ep_queue(&mEp->ep, req, gfp_flags); |
| 719 | spin_lock(mEp->lock); |
| 720 | if (retval) |
| 721 | goto err_free_buf; |
| 722 | |
| 723 | return 0; |
| 724 | |
| 725 | err_free_buf: |
| 726 | kfree(req->buf); |
| 727 | err_free_req: |
| 728 | spin_unlock(mEp->lock); |
| 729 | usb_ep_free_request(&mEp->ep, req); |
| 730 | spin_lock(mEp->lock); |
| 731 | return retval; |
| 732 | } |
| 733 | |
| 734 | /** |
Pavankumar Kondeti | 541cace | 2011-02-18 17:43:18 +0530 | [diff] [blame] | 735 | * isr_setup_status_complete: setup_status request complete function |
| 736 | * @ep: endpoint |
| 737 | * @req: request handled |
| 738 | * |
| 739 | * Caller must release lock. Put the port in test mode if test mode |
| 740 | * feature is selected. |
| 741 | */ |
| 742 | static void |
| 743 | isr_setup_status_complete(struct usb_ep *ep, struct usb_request *req) |
| 744 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 745 | struct ci13xxx *ci = req->context; |
Pavankumar Kondeti | 541cace | 2011-02-18 17:43:18 +0530 | [diff] [blame] | 746 | unsigned long flags; |
| 747 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 748 | if (ci->setaddr) { |
| 749 | hw_usb_set_address(ci, ci->address); |
| 750 | ci->setaddr = false; |
Alexander Shishkin | ef15e54 | 2012-05-11 17:25:43 +0300 | [diff] [blame] | 751 | } |
| 752 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 753 | spin_lock_irqsave(&ci->lock, flags); |
| 754 | if (ci->test_mode) |
| 755 | hw_port_test_set(ci, ci->test_mode); |
| 756 | spin_unlock_irqrestore(&ci->lock, flags); |
Pavankumar Kondeti | 541cace | 2011-02-18 17:43:18 +0530 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | /** |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 760 | * isr_setup_status_phase: queues the status phase of a setup transation |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 761 | * @ci: ci struct |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 762 | * |
| 763 | * This function returns an error code |
| 764 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 765 | static int isr_setup_status_phase(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 766 | __releases(mEp->lock) |
| 767 | __acquires(mEp->lock) |
| 768 | { |
| 769 | int retval; |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 770 | struct ci13xxx_ep *mEp; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 771 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 772 | mEp = (ci->ep0_dir == TX) ? ci->ep0out : ci->ep0in; |
| 773 | ci->status->context = ci; |
| 774 | ci->status->complete = isr_setup_status_complete; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 775 | |
| 776 | spin_unlock(mEp->lock); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 777 | retval = usb_ep_queue(&mEp->ep, ci->status, GFP_ATOMIC); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 778 | spin_lock(mEp->lock); |
| 779 | |
| 780 | return retval; |
| 781 | } |
| 782 | |
| 783 | /** |
| 784 | * isr_tr_complete_low: transaction complete low level handler |
| 785 | * @mEp: endpoint |
| 786 | * |
| 787 | * This function returns an error code |
| 788 | * Caller must hold lock |
| 789 | */ |
| 790 | static int isr_tr_complete_low(struct ci13xxx_ep *mEp) |
| 791 | __releases(mEp->lock) |
| 792 | __acquires(mEp->lock) |
| 793 | { |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 794 | struct ci13xxx_req *mReq, *mReqTemp; |
Pavankumar Kondeti | 76cd9cf | 2011-05-02 11:56:31 +0530 | [diff] [blame] | 795 | struct ci13xxx_ep *mEpTemp = mEp; |
Michael Grzeschik | db89960 | 2012-09-12 14:58:04 +0300 | [diff] [blame] | 796 | int retval = 0; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 797 | |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 798 | list_for_each_entry_safe(mReq, mReqTemp, &mEp->qh.queue, |
| 799 | queue) { |
| 800 | retval = _hardware_dequeue(mEp, mReq); |
| 801 | if (retval < 0) |
| 802 | break; |
| 803 | list_del_init(&mReq->queue); |
| 804 | dbg_done(_usb_addr(mEp), mReq->ptr->token, retval); |
| 805 | if (mReq->req.complete != NULL) { |
| 806 | spin_unlock(mEp->lock); |
Pavankumar Kondeti | 76cd9cf | 2011-05-02 11:56:31 +0530 | [diff] [blame] | 807 | if ((mEp->type == USB_ENDPOINT_XFER_CONTROL) && |
| 808 | mReq->req.length) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 809 | mEpTemp = mEp->ci->ep0in; |
Pavankumar Kondeti | 76cd9cf | 2011-05-02 11:56:31 +0530 | [diff] [blame] | 810 | mReq->req.complete(&mEpTemp->ep, &mReq->req); |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 811 | spin_lock(mEp->lock); |
| 812 | } |
| 813 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 814 | |
Pavankumar Kondeti | ef90748 | 2011-05-02 11:56:27 +0530 | [diff] [blame] | 815 | if (retval == -EBUSY) |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 816 | retval = 0; |
| 817 | if (retval < 0) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 818 | dbg_event(_usb_addr(mEp), "DONE", retval); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 819 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 820 | return retval; |
| 821 | } |
| 822 | |
| 823 | /** |
| 824 | * isr_tr_complete_handler: transaction complete interrupt handler |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 825 | * @ci: UDC descriptor |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 826 | * |
| 827 | * This function handles traffic events |
| 828 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 829 | static void isr_tr_complete_handler(struct ci13xxx *ci) |
| 830 | __releases(ci->lock) |
| 831 | __acquires(ci->lock) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 832 | { |
| 833 | unsigned i; |
Pavankumar Kondeti | 541cace | 2011-02-18 17:43:18 +0530 | [diff] [blame] | 834 | u8 tmode = 0; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 835 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 836 | for (i = 0; i < ci->hw_ep_max; i++) { |
| 837 | struct ci13xxx_ep *mEp = &ci->ci13xxx_ep[i]; |
Pavankumar Kondeti | 4c5212b | 2011-05-02 11:56:30 +0530 | [diff] [blame] | 838 | int type, num, dir, err = -EINVAL; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 839 | struct usb_ctrlrequest req; |
| 840 | |
Ido Shayevitz | 31fb601 | 2012-03-12 20:25:23 +0200 | [diff] [blame] | 841 | if (mEp->ep.desc == NULL) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 842 | continue; /* not configured */ |
| 843 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 844 | if (hw_test_and_clear_complete(ci, i)) { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 845 | err = isr_tr_complete_low(mEp); |
| 846 | if (mEp->type == USB_ENDPOINT_XFER_CONTROL) { |
| 847 | if (err > 0) /* needs status phase */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 848 | err = isr_setup_status_phase(ci); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 849 | if (err < 0) { |
| 850 | dbg_event(_usb_addr(mEp), |
| 851 | "ERROR", err); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 852 | spin_unlock(&ci->lock); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 853 | if (usb_ep_set_halt(&mEp->ep)) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 854 | dev_err(ci->dev, |
Greg Kroah-Hartman | 0917ba8 | 2012-04-27 11:24:39 -0700 | [diff] [blame] | 855 | "error: ep_set_halt\n"); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 856 | spin_lock(&ci->lock); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 857 | } |
| 858 | } |
| 859 | } |
| 860 | |
| 861 | if (mEp->type != USB_ENDPOINT_XFER_CONTROL || |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 862 | !hw_test_and_clear_setup_status(ci, i)) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 863 | continue; |
| 864 | |
| 865 | if (i != 0) { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 866 | dev_warn(ci->dev, "ctrl traffic at endpoint %d\n", i); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 867 | continue; |
| 868 | } |
| 869 | |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 870 | /* |
| 871 | * Flush data and handshake transactions of previous |
| 872 | * setup packet. |
| 873 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 874 | _ep_nuke(ci->ep0out); |
| 875 | _ep_nuke(ci->ep0in); |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 876 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 877 | /* read_setup_packet */ |
| 878 | do { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 879 | hw_test_and_set_setup_guard(ci); |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 880 | memcpy(&req, &mEp->qh.ptr->setup, sizeof(req)); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 881 | } while (!hw_test_and_clear_setup_guard(ci)); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 882 | |
| 883 | type = req.bRequestType; |
| 884 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 885 | ci->ep0_dir = (type & USB_DIR_IN) ? TX : RX; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 886 | |
| 887 | dbg_setup(_usb_addr(mEp), &req); |
| 888 | |
| 889 | switch (req.bRequest) { |
| 890 | case USB_REQ_CLEAR_FEATURE: |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 891 | if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) && |
| 892 | le16_to_cpu(req.wValue) == |
| 893 | USB_ENDPOINT_HALT) { |
| 894 | if (req.wLength != 0) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 895 | break; |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 896 | num = le16_to_cpu(req.wIndex); |
Pavankumar Kondeti | 4c5212b | 2011-05-02 11:56:30 +0530 | [diff] [blame] | 897 | dir = num & USB_ENDPOINT_DIR_MASK; |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 898 | num &= USB_ENDPOINT_NUMBER_MASK; |
Pavankumar Kondeti | 4c5212b | 2011-05-02 11:56:30 +0530 | [diff] [blame] | 899 | if (dir) /* TX */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 900 | num += ci->hw_ep_max/2; |
| 901 | if (!ci->ci13xxx_ep[num].wedge) { |
| 902 | spin_unlock(&ci->lock); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 903 | err = usb_ep_clear_halt( |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 904 | &ci->ci13xxx_ep[num].ep); |
| 905 | spin_lock(&ci->lock); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 906 | if (err) |
| 907 | break; |
| 908 | } |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 909 | err = isr_setup_status_phase(ci); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 910 | } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE) && |
| 911 | le16_to_cpu(req.wValue) == |
| 912 | USB_DEVICE_REMOTE_WAKEUP) { |
| 913 | if (req.wLength != 0) |
| 914 | break; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 915 | ci->remote_wakeup = 0; |
| 916 | err = isr_setup_status_phase(ci); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 917 | } else { |
| 918 | goto delegate; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 919 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 920 | break; |
| 921 | case USB_REQ_GET_STATUS: |
| 922 | if (type != (USB_DIR_IN|USB_RECIP_DEVICE) && |
| 923 | type != (USB_DIR_IN|USB_RECIP_ENDPOINT) && |
| 924 | type != (USB_DIR_IN|USB_RECIP_INTERFACE)) |
| 925 | goto delegate; |
| 926 | if (le16_to_cpu(req.wLength) != 2 || |
| 927 | le16_to_cpu(req.wValue) != 0) |
| 928 | break; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 929 | err = isr_get_status_response(ci, &req); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 930 | break; |
| 931 | case USB_REQ_SET_ADDRESS: |
| 932 | if (type != (USB_DIR_OUT|USB_RECIP_DEVICE)) |
| 933 | goto delegate; |
| 934 | if (le16_to_cpu(req.wLength) != 0 || |
| 935 | le16_to_cpu(req.wIndex) != 0) |
| 936 | break; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 937 | ci->address = (u8)le16_to_cpu(req.wValue); |
| 938 | ci->setaddr = true; |
| 939 | err = isr_setup_status_phase(ci); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 940 | break; |
| 941 | case USB_REQ_SET_FEATURE: |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 942 | if (type == (USB_DIR_OUT|USB_RECIP_ENDPOINT) && |
| 943 | le16_to_cpu(req.wValue) == |
| 944 | USB_ENDPOINT_HALT) { |
| 945 | if (req.wLength != 0) |
| 946 | break; |
| 947 | num = le16_to_cpu(req.wIndex); |
Pavankumar Kondeti | 4c5212b | 2011-05-02 11:56:30 +0530 | [diff] [blame] | 948 | dir = num & USB_ENDPOINT_DIR_MASK; |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 949 | num &= USB_ENDPOINT_NUMBER_MASK; |
Pavankumar Kondeti | 4c5212b | 2011-05-02 11:56:30 +0530 | [diff] [blame] | 950 | if (dir) /* TX */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 951 | num += ci->hw_ep_max/2; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 952 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 953 | spin_unlock(&ci->lock); |
| 954 | err = usb_ep_set_halt(&ci->ci13xxx_ep[num].ep); |
| 955 | spin_lock(&ci->lock); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 956 | if (!err) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 957 | isr_setup_status_phase(ci); |
Pavankumar Kondeti | 541cace | 2011-02-18 17:43:18 +0530 | [diff] [blame] | 958 | } else if (type == (USB_DIR_OUT|USB_RECIP_DEVICE)) { |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 959 | if (req.wLength != 0) |
| 960 | break; |
Pavankumar Kondeti | 541cace | 2011-02-18 17:43:18 +0530 | [diff] [blame] | 961 | switch (le16_to_cpu(req.wValue)) { |
| 962 | case USB_DEVICE_REMOTE_WAKEUP: |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 963 | ci->remote_wakeup = 1; |
| 964 | err = isr_setup_status_phase(ci); |
Pavankumar Kondeti | 541cace | 2011-02-18 17:43:18 +0530 | [diff] [blame] | 965 | break; |
| 966 | case USB_DEVICE_TEST_MODE: |
| 967 | tmode = le16_to_cpu(req.wIndex) >> 8; |
| 968 | switch (tmode) { |
| 969 | case TEST_J: |
| 970 | case TEST_K: |
| 971 | case TEST_SE0_NAK: |
| 972 | case TEST_PACKET: |
| 973 | case TEST_FORCE_EN: |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 974 | ci->test_mode = tmode; |
Pavankumar Kondeti | 541cace | 2011-02-18 17:43:18 +0530 | [diff] [blame] | 975 | err = isr_setup_status_phase( |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 976 | ci); |
Pavankumar Kondeti | 541cace | 2011-02-18 17:43:18 +0530 | [diff] [blame] | 977 | break; |
| 978 | default: |
| 979 | break; |
| 980 | } |
| 981 | default: |
| 982 | goto delegate; |
| 983 | } |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 984 | } else { |
| 985 | goto delegate; |
| 986 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 987 | break; |
| 988 | default: |
| 989 | delegate: |
| 990 | if (req.wLength == 0) /* no data phase */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 991 | ci->ep0_dir = TX; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 992 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 993 | spin_unlock(&ci->lock); |
| 994 | err = ci->driver->setup(&ci->gadget, &req); |
| 995 | spin_lock(&ci->lock); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 996 | break; |
| 997 | } |
| 998 | |
| 999 | if (err < 0) { |
| 1000 | dbg_event(_usb_addr(mEp), "ERROR", err); |
| 1001 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1002 | spin_unlock(&ci->lock); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1003 | if (usb_ep_set_halt(&mEp->ep)) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1004 | dev_err(ci->dev, "error: ep_set_halt\n"); |
| 1005 | spin_lock(&ci->lock); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1006 | } |
| 1007 | } |
| 1008 | } |
| 1009 | |
| 1010 | /****************************************************************************** |
| 1011 | * ENDPT block |
| 1012 | *****************************************************************************/ |
| 1013 | /** |
| 1014 | * ep_enable: configure endpoint, making it usable |
| 1015 | * |
| 1016 | * Check usb_ep_enable() at "usb_gadget.h" for details |
| 1017 | */ |
| 1018 | static int ep_enable(struct usb_ep *ep, |
| 1019 | const struct usb_endpoint_descriptor *desc) |
| 1020 | { |
| 1021 | struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep); |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 1022 | int retval = 0; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1023 | unsigned long flags; |
| 1024 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1025 | if (ep == NULL || desc == NULL) |
| 1026 | return -EINVAL; |
| 1027 | |
| 1028 | spin_lock_irqsave(mEp->lock, flags); |
| 1029 | |
| 1030 | /* only internal SW should enable ctrl endpts */ |
| 1031 | |
Ido Shayevitz | 31fb601 | 2012-03-12 20:25:23 +0200 | [diff] [blame] | 1032 | mEp->ep.desc = desc; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1033 | |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 1034 | if (!list_empty(&mEp->qh.queue)) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1035 | dev_warn(mEp->ci->dev, "enabling a non-empty endpoint!\n"); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1036 | |
Matthias Kaehlcke | 15739bb | 2009-04-15 22:28:41 +0200 | [diff] [blame] | 1037 | mEp->dir = usb_endpoint_dir_in(desc) ? TX : RX; |
| 1038 | mEp->num = usb_endpoint_num(desc); |
| 1039 | mEp->type = usb_endpoint_type(desc); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1040 | |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 1041 | mEp->ep.maxpacket = usb_endpoint_maxp(desc); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1042 | |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 1043 | dbg_event(_usb_addr(mEp), "ENABLE", 0); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1044 | |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 1045 | mEp->qh.ptr->cap = 0; |
David Lopo | f23e649 | 2009-04-16 14:35:24 -0700 | [diff] [blame] | 1046 | |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 1047 | if (mEp->type == USB_ENDPOINT_XFER_CONTROL) |
| 1048 | mEp->qh.ptr->cap |= QH_IOS; |
| 1049 | else if (mEp->type == USB_ENDPOINT_XFER_ISOC) |
| 1050 | mEp->qh.ptr->cap &= ~QH_MULT; |
| 1051 | else |
| 1052 | mEp->qh.ptr->cap &= ~QH_ZLT; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1053 | |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 1054 | mEp->qh.ptr->cap |= |
| 1055 | (mEp->ep.maxpacket << ffs_nr(QH_MAX_PKT)) & QH_MAX_PKT; |
| 1056 | mEp->qh.ptr->td.next |= TD_TERMINATE; /* needed? */ |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1057 | |
Anji jonnala | ac1aa6a | 2011-05-02 11:56:32 +0530 | [diff] [blame] | 1058 | /* |
| 1059 | * Enable endpoints in the HW other than ep0 as ep0 |
| 1060 | * is always enabled |
| 1061 | */ |
| 1062 | if (mEp->num) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1063 | retval |= hw_ep_enable(mEp->ci, mEp->num, mEp->dir, mEp->type); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1064 | |
| 1065 | spin_unlock_irqrestore(mEp->lock, flags); |
| 1066 | return retval; |
| 1067 | } |
| 1068 | |
| 1069 | /** |
| 1070 | * ep_disable: endpoint is no longer usable |
| 1071 | * |
| 1072 | * Check usb_ep_disable() at "usb_gadget.h" for details |
| 1073 | */ |
| 1074 | static int ep_disable(struct usb_ep *ep) |
| 1075 | { |
| 1076 | struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep); |
| 1077 | int direction, retval = 0; |
| 1078 | unsigned long flags; |
| 1079 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1080 | if (ep == NULL) |
| 1081 | return -EINVAL; |
Ido Shayevitz | 31fb601 | 2012-03-12 20:25:23 +0200 | [diff] [blame] | 1082 | else if (mEp->ep.desc == NULL) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1083 | return -EBUSY; |
| 1084 | |
| 1085 | spin_lock_irqsave(mEp->lock, flags); |
| 1086 | |
| 1087 | /* only internal SW should disable ctrl endpts */ |
| 1088 | |
| 1089 | direction = mEp->dir; |
| 1090 | do { |
| 1091 | dbg_event(_usb_addr(mEp), "DISABLE", 0); |
| 1092 | |
| 1093 | retval |= _ep_nuke(mEp); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1094 | retval |= hw_ep_disable(mEp->ci, mEp->num, mEp->dir); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1095 | |
| 1096 | if (mEp->type == USB_ENDPOINT_XFER_CONTROL) |
| 1097 | mEp->dir = (mEp->dir == TX) ? RX : TX; |
| 1098 | |
| 1099 | } while (mEp->dir != direction); |
| 1100 | |
Ido Shayevitz | f9c56cd | 2012-02-08 13:56:48 +0200 | [diff] [blame] | 1101 | mEp->ep.desc = NULL; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1102 | |
| 1103 | spin_unlock_irqrestore(mEp->lock, flags); |
| 1104 | return retval; |
| 1105 | } |
| 1106 | |
| 1107 | /** |
| 1108 | * ep_alloc_request: allocate a request object to use with this endpoint |
| 1109 | * |
| 1110 | * Check usb_ep_alloc_request() at "usb_gadget.h" for details |
| 1111 | */ |
| 1112 | static struct usb_request *ep_alloc_request(struct usb_ep *ep, gfp_t gfp_flags) |
| 1113 | { |
| 1114 | struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep); |
| 1115 | struct ci13xxx_req *mReq = NULL; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1116 | |
Alexander Shishkin | 0f08909 | 2012-05-08 23:29:02 +0300 | [diff] [blame] | 1117 | if (ep == NULL) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1118 | return NULL; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1119 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1120 | mReq = kzalloc(sizeof(struct ci13xxx_req), gfp_flags); |
| 1121 | if (mReq != NULL) { |
| 1122 | INIT_LIST_HEAD(&mReq->queue); |
| 1123 | |
| 1124 | mReq->ptr = dma_pool_alloc(mEp->td_pool, gfp_flags, |
| 1125 | &mReq->dma); |
| 1126 | if (mReq->ptr == NULL) { |
| 1127 | kfree(mReq); |
| 1128 | mReq = NULL; |
| 1129 | } |
| 1130 | } |
| 1131 | |
| 1132 | dbg_event(_usb_addr(mEp), "ALLOC", mReq == NULL); |
| 1133 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1134 | return (mReq == NULL) ? NULL : &mReq->req; |
| 1135 | } |
| 1136 | |
| 1137 | /** |
| 1138 | * ep_free_request: frees a request object |
| 1139 | * |
| 1140 | * Check usb_ep_free_request() at "usb_gadget.h" for details |
| 1141 | */ |
| 1142 | static void ep_free_request(struct usb_ep *ep, struct usb_request *req) |
| 1143 | { |
| 1144 | struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep); |
| 1145 | struct ci13xxx_req *mReq = container_of(req, struct ci13xxx_req, req); |
| 1146 | unsigned long flags; |
| 1147 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1148 | if (ep == NULL || req == NULL) { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1149 | return; |
| 1150 | } else if (!list_empty(&mReq->queue)) { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1151 | dev_err(mEp->ci->dev, "freeing queued request\n"); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1152 | return; |
| 1153 | } |
| 1154 | |
| 1155 | spin_lock_irqsave(mEp->lock, flags); |
| 1156 | |
| 1157 | if (mReq->ptr) |
| 1158 | dma_pool_free(mEp->td_pool, mReq->ptr, mReq->dma); |
| 1159 | kfree(mReq); |
| 1160 | |
| 1161 | dbg_event(_usb_addr(mEp), "FREE", 0); |
| 1162 | |
| 1163 | spin_unlock_irqrestore(mEp->lock, flags); |
| 1164 | } |
| 1165 | |
| 1166 | /** |
| 1167 | * ep_queue: queues (submits) an I/O request to an endpoint |
| 1168 | * |
| 1169 | * Check usb_ep_queue()* at usb_gadget.h" for details |
| 1170 | */ |
| 1171 | static int ep_queue(struct usb_ep *ep, struct usb_request *req, |
| 1172 | gfp_t __maybe_unused gfp_flags) |
| 1173 | { |
| 1174 | struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep); |
| 1175 | struct ci13xxx_req *mReq = container_of(req, struct ci13xxx_req, req); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1176 | struct ci13xxx *ci = mEp->ci; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1177 | int retval = 0; |
| 1178 | unsigned long flags; |
| 1179 | |
Ido Shayevitz | 31fb601 | 2012-03-12 20:25:23 +0200 | [diff] [blame] | 1180 | if (ep == NULL || req == NULL || mEp->ep.desc == NULL) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1181 | return -EINVAL; |
| 1182 | |
| 1183 | spin_lock_irqsave(mEp->lock, flags); |
| 1184 | |
Pavankumar Kondeti | 76cd9cf | 2011-05-02 11:56:31 +0530 | [diff] [blame] | 1185 | if (mEp->type == USB_ENDPOINT_XFER_CONTROL) { |
| 1186 | if (req->length) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1187 | mEp = (ci->ep0_dir == RX) ? |
| 1188 | ci->ep0out : ci->ep0in; |
Pavankumar Kondeti | 76cd9cf | 2011-05-02 11:56:31 +0530 | [diff] [blame] | 1189 | if (!list_empty(&mEp->qh.queue)) { |
| 1190 | _ep_nuke(mEp); |
| 1191 | retval = -EOVERFLOW; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1192 | dev_warn(mEp->ci->dev, "endpoint ctrl %X nuked\n", |
Alexander Shishkin | 0f08909 | 2012-05-08 23:29:02 +0300 | [diff] [blame] | 1193 | _usb_addr(mEp)); |
Pavankumar Kondeti | 76cd9cf | 2011-05-02 11:56:31 +0530 | [diff] [blame] | 1194 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1195 | } |
| 1196 | |
| 1197 | /* first nuke then test link, e.g. previous status has not sent */ |
| 1198 | if (!list_empty(&mReq->queue)) { |
| 1199 | retval = -EBUSY; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1200 | dev_err(mEp->ci->dev, "request already in queue\n"); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1201 | goto done; |
| 1202 | } |
| 1203 | |
Alexander Shishkin | 1155a7b | 2012-05-08 23:28:57 +0300 | [diff] [blame] | 1204 | if (req->length > 4 * CI13XXX_PAGE_SIZE) { |
| 1205 | req->length = 4 * CI13XXX_PAGE_SIZE; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1206 | retval = -EMSGSIZE; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1207 | dev_warn(mEp->ci->dev, "request length truncated\n"); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1208 | } |
| 1209 | |
| 1210 | dbg_queue(_usb_addr(mEp), req, retval); |
| 1211 | |
| 1212 | /* push request */ |
| 1213 | mReq->req.status = -EINPROGRESS; |
| 1214 | mReq->req.actual = 0; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1215 | |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 1216 | retval = _hardware_enqueue(mEp, mReq); |
Artem Leonenko | d9bb9c1 | 2010-12-14 23:45:50 -0800 | [diff] [blame] | 1217 | |
| 1218 | if (retval == -EALREADY) { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1219 | dbg_event(_usb_addr(mEp), "QUEUE", retval); |
| 1220 | retval = 0; |
| 1221 | } |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 1222 | if (!retval) |
| 1223 | list_add_tail(&mReq->queue, &mEp->qh.queue); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1224 | |
| 1225 | done: |
| 1226 | spin_unlock_irqrestore(mEp->lock, flags); |
| 1227 | return retval; |
| 1228 | } |
| 1229 | |
| 1230 | /** |
| 1231 | * ep_dequeue: dequeues (cancels, unlinks) an I/O request from an endpoint |
| 1232 | * |
| 1233 | * Check usb_ep_dequeue() at "usb_gadget.h" for details |
| 1234 | */ |
| 1235 | static int ep_dequeue(struct usb_ep *ep, struct usb_request *req) |
| 1236 | { |
| 1237 | struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep); |
| 1238 | struct ci13xxx_req *mReq = container_of(req, struct ci13xxx_req, req); |
| 1239 | unsigned long flags; |
| 1240 | |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 1241 | if (ep == NULL || req == NULL || mReq->req.status != -EALREADY || |
Ido Shayevitz | 31fb601 | 2012-03-12 20:25:23 +0200 | [diff] [blame] | 1242 | mEp->ep.desc == NULL || list_empty(&mReq->queue) || |
Pavankumar Kondeti | 0e6ca19 | 2011-02-18 17:43:16 +0530 | [diff] [blame] | 1243 | list_empty(&mEp->qh.queue)) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1244 | return -EINVAL; |
| 1245 | |
| 1246 | spin_lock_irqsave(mEp->lock, flags); |
| 1247 | |
| 1248 | dbg_event(_usb_addr(mEp), "DEQUEUE", 0); |
| 1249 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1250 | hw_ep_flush(mEp->ci, mEp->num, mEp->dir); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1251 | |
| 1252 | /* pop request */ |
| 1253 | list_del_init(&mReq->queue); |
Alexander Shishkin | 5e0aa49 | 2012-05-11 17:25:56 +0300 | [diff] [blame] | 1254 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1255 | usb_gadget_unmap_request(&mEp->ci->gadget, req, mEp->dir); |
Alexander Shishkin | 5e0aa49 | 2012-05-11 17:25:56 +0300 | [diff] [blame] | 1256 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1257 | req->status = -ECONNRESET; |
| 1258 | |
Artem Leonenko | 7c25a82 | 2010-12-14 23:46:55 -0800 | [diff] [blame] | 1259 | if (mReq->req.complete != NULL) { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1260 | spin_unlock(mEp->lock); |
| 1261 | mReq->req.complete(&mEp->ep, &mReq->req); |
| 1262 | spin_lock(mEp->lock); |
| 1263 | } |
| 1264 | |
| 1265 | spin_unlock_irqrestore(mEp->lock, flags); |
| 1266 | return 0; |
| 1267 | } |
| 1268 | |
| 1269 | /** |
| 1270 | * ep_set_halt: sets the endpoint halt feature |
| 1271 | * |
| 1272 | * Check usb_ep_set_halt() at "usb_gadget.h" for details |
| 1273 | */ |
| 1274 | static int ep_set_halt(struct usb_ep *ep, int value) |
| 1275 | { |
| 1276 | struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep); |
| 1277 | int direction, retval = 0; |
| 1278 | unsigned long flags; |
| 1279 | |
Ido Shayevitz | 31fb601 | 2012-03-12 20:25:23 +0200 | [diff] [blame] | 1280 | if (ep == NULL || mEp->ep.desc == NULL) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1281 | return -EINVAL; |
| 1282 | |
| 1283 | spin_lock_irqsave(mEp->lock, flags); |
| 1284 | |
| 1285 | #ifndef STALL_IN |
| 1286 | /* g_file_storage MS compliant but g_zero fails chapter 9 compliance */ |
| 1287 | if (value && mEp->type == USB_ENDPOINT_XFER_BULK && mEp->dir == TX && |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 1288 | !list_empty(&mEp->qh.queue)) { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1289 | spin_unlock_irqrestore(mEp->lock, flags); |
| 1290 | return -EAGAIN; |
| 1291 | } |
| 1292 | #endif |
| 1293 | |
| 1294 | direction = mEp->dir; |
| 1295 | do { |
| 1296 | dbg_event(_usb_addr(mEp), "HALT", value); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1297 | retval |= hw_ep_set_halt(mEp->ci, mEp->num, mEp->dir, value); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1298 | |
| 1299 | if (!value) |
| 1300 | mEp->wedge = 0; |
| 1301 | |
| 1302 | if (mEp->type == USB_ENDPOINT_XFER_CONTROL) |
| 1303 | mEp->dir = (mEp->dir == TX) ? RX : TX; |
| 1304 | |
| 1305 | } while (mEp->dir != direction); |
| 1306 | |
| 1307 | spin_unlock_irqrestore(mEp->lock, flags); |
| 1308 | return retval; |
| 1309 | } |
| 1310 | |
| 1311 | /** |
| 1312 | * ep_set_wedge: sets the halt feature and ignores clear requests |
| 1313 | * |
| 1314 | * Check usb_ep_set_wedge() at "usb_gadget.h" for details |
| 1315 | */ |
| 1316 | static int ep_set_wedge(struct usb_ep *ep) |
| 1317 | { |
| 1318 | struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep); |
| 1319 | unsigned long flags; |
| 1320 | |
Ido Shayevitz | 31fb601 | 2012-03-12 20:25:23 +0200 | [diff] [blame] | 1321 | if (ep == NULL || mEp->ep.desc == NULL) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1322 | return -EINVAL; |
| 1323 | |
| 1324 | spin_lock_irqsave(mEp->lock, flags); |
| 1325 | |
| 1326 | dbg_event(_usb_addr(mEp), "WEDGE", 0); |
| 1327 | mEp->wedge = 1; |
| 1328 | |
| 1329 | spin_unlock_irqrestore(mEp->lock, flags); |
| 1330 | |
| 1331 | return usb_ep_set_halt(ep); |
| 1332 | } |
| 1333 | |
| 1334 | /** |
| 1335 | * ep_fifo_flush: flushes contents of a fifo |
| 1336 | * |
| 1337 | * Check usb_ep_fifo_flush() at "usb_gadget.h" for details |
| 1338 | */ |
| 1339 | static void ep_fifo_flush(struct usb_ep *ep) |
| 1340 | { |
| 1341 | struct ci13xxx_ep *mEp = container_of(ep, struct ci13xxx_ep, ep); |
| 1342 | unsigned long flags; |
| 1343 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1344 | if (ep == NULL) { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1345 | dev_err(mEp->ci->dev, "%02X: -EINVAL\n", _usb_addr(mEp)); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1346 | return; |
| 1347 | } |
| 1348 | |
| 1349 | spin_lock_irqsave(mEp->lock, flags); |
| 1350 | |
| 1351 | dbg_event(_usb_addr(mEp), "FFLUSH", 0); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1352 | hw_ep_flush(mEp->ci, mEp->num, mEp->dir); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1353 | |
| 1354 | spin_unlock_irqrestore(mEp->lock, flags); |
| 1355 | } |
| 1356 | |
| 1357 | /** |
| 1358 | * Endpoint-specific part of the API to the USB controller hardware |
| 1359 | * Check "usb_gadget.h" for details |
| 1360 | */ |
| 1361 | static const struct usb_ep_ops usb_ep_ops = { |
| 1362 | .enable = ep_enable, |
| 1363 | .disable = ep_disable, |
| 1364 | .alloc_request = ep_alloc_request, |
| 1365 | .free_request = ep_free_request, |
| 1366 | .queue = ep_queue, |
| 1367 | .dequeue = ep_dequeue, |
| 1368 | .set_halt = ep_set_halt, |
| 1369 | .set_wedge = ep_set_wedge, |
| 1370 | .fifo_flush = ep_fifo_flush, |
| 1371 | }; |
| 1372 | |
| 1373 | /****************************************************************************** |
| 1374 | * GADGET block |
| 1375 | *****************************************************************************/ |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1376 | static int ci13xxx_vbus_session(struct usb_gadget *_gadget, int is_active) |
| 1377 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1378 | struct ci13xxx *ci = container_of(_gadget, struct ci13xxx, gadget); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1379 | unsigned long flags; |
| 1380 | int gadget_ready = 0; |
| 1381 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1382 | if (!(ci->platdata->flags & CI13XXX_PULLUP_ON_VBUS)) |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1383 | return -EOPNOTSUPP; |
| 1384 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1385 | spin_lock_irqsave(&ci->lock, flags); |
| 1386 | ci->vbus_active = is_active; |
| 1387 | if (ci->driver) |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1388 | gadget_ready = 1; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1389 | spin_unlock_irqrestore(&ci->lock, flags); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1390 | |
| 1391 | if (gadget_ready) { |
| 1392 | if (is_active) { |
Pavankumar Kondeti | c036019 | 2010-12-07 17:54:04 +0530 | [diff] [blame] | 1393 | pm_runtime_get_sync(&_gadget->dev); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1394 | hw_device_reset(ci, USBMODE_CM_DC); |
Richard Zhao | 8c4fc03 | 2012-09-12 14:58:09 +0300 | [diff] [blame] | 1395 | hw_enable_vbus_intr(ci); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1396 | hw_device_state(ci, ci->ep0out->qh.dma); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1397 | } else { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1398 | hw_device_state(ci, 0); |
| 1399 | if (ci->platdata->notify_event) |
| 1400 | ci->platdata->notify_event(ci, |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1401 | CI13XXX_CONTROLLER_STOPPED_EVENT); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1402 | _gadget_stop_activity(&ci->gadget); |
Pavankumar Kondeti | c036019 | 2010-12-07 17:54:04 +0530 | [diff] [blame] | 1403 | pm_runtime_put_sync(&_gadget->dev); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1404 | } |
| 1405 | } |
| 1406 | |
| 1407 | return 0; |
| 1408 | } |
| 1409 | |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1410 | static int ci13xxx_wakeup(struct usb_gadget *_gadget) |
| 1411 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1412 | struct ci13xxx *ci = container_of(_gadget, struct ci13xxx, gadget); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1413 | unsigned long flags; |
| 1414 | int ret = 0; |
| 1415 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1416 | spin_lock_irqsave(&ci->lock, flags); |
| 1417 | if (!ci->remote_wakeup) { |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1418 | ret = -EOPNOTSUPP; |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1419 | goto out; |
| 1420 | } |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1421 | if (!hw_read(ci, OP_PORTSC, PORTSC_SUSP)) { |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1422 | ret = -EINVAL; |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1423 | goto out; |
| 1424 | } |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1425 | hw_write(ci, OP_PORTSC, PORTSC_FPR, PORTSC_FPR); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1426 | out: |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1427 | spin_unlock_irqrestore(&ci->lock, flags); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1428 | return ret; |
| 1429 | } |
| 1430 | |
Pavankumar Kondeti | d860852 | 2011-05-04 10:19:47 +0530 | [diff] [blame] | 1431 | static int ci13xxx_vbus_draw(struct usb_gadget *_gadget, unsigned mA) |
| 1432 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1433 | struct ci13xxx *ci = container_of(_gadget, struct ci13xxx, gadget); |
Pavankumar Kondeti | d860852 | 2011-05-04 10:19:47 +0530 | [diff] [blame] | 1434 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1435 | if (ci->transceiver) |
| 1436 | return usb_phy_set_power(ci->transceiver, mA); |
Pavankumar Kondeti | d860852 | 2011-05-04 10:19:47 +0530 | [diff] [blame] | 1437 | return -ENOTSUPP; |
| 1438 | } |
| 1439 | |
Michael Grzeschik | c0a48e6 | 2012-09-12 14:58:01 +0300 | [diff] [blame] | 1440 | /* Change Data+ pullup status |
| 1441 | * this func is used by usb_gadget_connect/disconnet |
| 1442 | */ |
| 1443 | static int ci13xxx_pullup(struct usb_gadget *_gadget, int is_on) |
| 1444 | { |
| 1445 | struct ci13xxx *ci = container_of(_gadget, struct ci13xxx, gadget); |
| 1446 | |
| 1447 | if (is_on) |
| 1448 | hw_write(ci, OP_USBCMD, USBCMD_RS, USBCMD_RS); |
| 1449 | else |
| 1450 | hw_write(ci, OP_USBCMD, USBCMD_RS, 0); |
| 1451 | |
| 1452 | return 0; |
| 1453 | } |
| 1454 | |
Alexander Shishkin | 1f339d8 | 2012-05-08 23:29:04 +0300 | [diff] [blame] | 1455 | static int ci13xxx_start(struct usb_gadget *gadget, |
| 1456 | struct usb_gadget_driver *driver); |
| 1457 | static int ci13xxx_stop(struct usb_gadget *gadget, |
| 1458 | struct usb_gadget_driver *driver); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1459 | /** |
| 1460 | * Device operations part of the API to the USB controller hardware, |
| 1461 | * which don't involve endpoints (or i/o) |
| 1462 | * Check "usb_gadget.h" for details |
| 1463 | */ |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1464 | static const struct usb_gadget_ops usb_gadget_ops = { |
| 1465 | .vbus_session = ci13xxx_vbus_session, |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1466 | .wakeup = ci13xxx_wakeup, |
Michael Grzeschik | c0a48e6 | 2012-09-12 14:58:01 +0300 | [diff] [blame] | 1467 | .pullup = ci13xxx_pullup, |
Pavankumar Kondeti | d860852 | 2011-05-04 10:19:47 +0530 | [diff] [blame] | 1468 | .vbus_draw = ci13xxx_vbus_draw, |
Alexander Shishkin | 1f339d8 | 2012-05-08 23:29:04 +0300 | [diff] [blame] | 1469 | .udc_start = ci13xxx_start, |
| 1470 | .udc_stop = ci13xxx_stop, |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1471 | }; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1472 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1473 | static int init_eps(struct ci13xxx *ci) |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1474 | { |
| 1475 | int retval = 0, i, j; |
| 1476 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1477 | for (i = 0; i < ci->hw_ep_max/2; i++) |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1478 | for (j = RX; j <= TX; j++) { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1479 | int k = i + j * ci->hw_ep_max/2; |
| 1480 | struct ci13xxx_ep *mEp = &ci->ci13xxx_ep[k]; |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1481 | |
| 1482 | scnprintf(mEp->name, sizeof(mEp->name), "ep%i%s", i, |
| 1483 | (j == TX) ? "in" : "out"); |
| 1484 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1485 | mEp->ci = ci; |
| 1486 | mEp->lock = &ci->lock; |
| 1487 | mEp->td_pool = ci->td_pool; |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1488 | |
| 1489 | mEp->ep.name = mEp->name; |
| 1490 | mEp->ep.ops = &usb_ep_ops; |
Michael Grzeschik | 7f67c38 | 2012-09-12 14:58:00 +0300 | [diff] [blame] | 1491 | /* |
| 1492 | * for ep0: maxP defined in desc, for other |
| 1493 | * eps, maxP is set by epautoconfig() called |
| 1494 | * by gadget layer |
| 1495 | */ |
| 1496 | mEp->ep.maxpacket = (unsigned short)~0; |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1497 | |
| 1498 | INIT_LIST_HEAD(&mEp->qh.queue); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1499 | mEp->qh.ptr = dma_pool_alloc(ci->qh_pool, GFP_KERNEL, |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1500 | &mEp->qh.dma); |
| 1501 | if (mEp->qh.ptr == NULL) |
| 1502 | retval = -ENOMEM; |
| 1503 | else |
| 1504 | memset(mEp->qh.ptr, 0, sizeof(*mEp->qh.ptr)); |
| 1505 | |
| 1506 | /* |
| 1507 | * set up shorthands for ep0 out and in endpoints, |
| 1508 | * don't add to gadget's ep_list |
| 1509 | */ |
| 1510 | if (i == 0) { |
| 1511 | if (j == RX) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1512 | ci->ep0out = mEp; |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1513 | else |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1514 | ci->ep0in = mEp; |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1515 | |
Michael Grzeschik | 7f67c38 | 2012-09-12 14:58:00 +0300 | [diff] [blame] | 1516 | mEp->ep.maxpacket = CTRL_PAYLOAD_MAX; |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1517 | continue; |
| 1518 | } |
| 1519 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1520 | list_add_tail(&mEp->ep.ep_list, &ci->gadget.ep_list); |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1521 | } |
| 1522 | |
| 1523 | return retval; |
| 1524 | } |
| 1525 | |
Marc Kleine-Budde | ad6b1b9 | 2012-09-12 14:58:03 +0300 | [diff] [blame] | 1526 | static void destroy_eps(struct ci13xxx *ci) |
| 1527 | { |
| 1528 | int i; |
| 1529 | |
| 1530 | for (i = 0; i < ci->hw_ep_max; i++) { |
| 1531 | struct ci13xxx_ep *mEp = &ci->ci13xxx_ep[i]; |
| 1532 | |
| 1533 | dma_pool_free(ci->qh_pool, mEp->qh.ptr, mEp->qh.dma); |
| 1534 | } |
| 1535 | } |
| 1536 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1537 | /** |
Sebastian Andrzej Siewior | 0f91349 | 2011-06-28 16:33:47 +0300 | [diff] [blame] | 1538 | * ci13xxx_start: register a gadget driver |
Alexander Shishkin | 1f339d8 | 2012-05-08 23:29:04 +0300 | [diff] [blame] | 1539 | * @gadget: our gadget |
Uwe Kleine-König | b0fca50 | 2010-08-12 17:43:53 +0200 | [diff] [blame] | 1540 | * @driver: the driver being registered |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1541 | * |
Uwe Kleine-König | b0fca50 | 2010-08-12 17:43:53 +0200 | [diff] [blame] | 1542 | * Interrupts are enabled here. |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1543 | */ |
Alexander Shishkin | 1f339d8 | 2012-05-08 23:29:04 +0300 | [diff] [blame] | 1544 | static int ci13xxx_start(struct usb_gadget *gadget, |
| 1545 | struct usb_gadget_driver *driver) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1546 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1547 | struct ci13xxx *ci = container_of(gadget, struct ci13xxx, gadget); |
Pavankumar Kondeti | ca9cfea | 2011-01-11 09:19:22 +0530 | [diff] [blame] | 1548 | unsigned long flags; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1549 | int retval = -ENOMEM; |
| 1550 | |
Alexander Shishkin | 1f339d8 | 2012-05-08 23:29:04 +0300 | [diff] [blame] | 1551 | if (driver->disconnect == NULL) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1552 | return -EINVAL; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1553 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1554 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1555 | ci->ep0out->ep.desc = &ctrl_endpt_out_desc; |
| 1556 | retval = usb_ep_enable(&ci->ep0out->ep); |
Anji jonnala | ac1aa6a | 2011-05-02 11:56:32 +0530 | [diff] [blame] | 1557 | if (retval) |
| 1558 | return retval; |
Felipe Balbi | 877c1f5 | 2011-06-29 16:41:57 +0300 | [diff] [blame] | 1559 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1560 | ci->ep0in->ep.desc = &ctrl_endpt_in_desc; |
| 1561 | retval = usb_ep_enable(&ci->ep0in->ep); |
Anji jonnala | ac1aa6a | 2011-05-02 11:56:32 +0530 | [diff] [blame] | 1562 | if (retval) |
| 1563 | return retval; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1564 | spin_lock_irqsave(&ci->lock, flags); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1565 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1566 | ci->driver = driver; |
| 1567 | pm_runtime_get_sync(&ci->gadget.dev); |
| 1568 | if (ci->platdata->flags & CI13XXX_PULLUP_ON_VBUS) { |
| 1569 | if (ci->vbus_active) { |
Richard Zhao | 8c4fc03 | 2012-09-12 14:58:09 +0300 | [diff] [blame] | 1570 | if (ci->platdata->flags & CI13XXX_REGS_SHARED) { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1571 | hw_device_reset(ci, USBMODE_CM_DC); |
Richard Zhao | 8c4fc03 | 2012-09-12 14:58:09 +0300 | [diff] [blame] | 1572 | hw_enable_vbus_intr(ci); |
| 1573 | } |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1574 | } else { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1575 | pm_runtime_put_sync(&ci->gadget.dev); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1576 | goto done; |
| 1577 | } |
| 1578 | } |
| 1579 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1580 | retval = hw_device_state(ci, ci->ep0out->qh.dma); |
Pavankumar Kondeti | c036019 | 2010-12-07 17:54:04 +0530 | [diff] [blame] | 1581 | if (retval) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1582 | pm_runtime_put_sync(&ci->gadget.dev); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1583 | |
| 1584 | done: |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1585 | spin_unlock_irqrestore(&ci->lock, flags); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1586 | return retval; |
| 1587 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1588 | |
| 1589 | /** |
Sebastian Andrzej Siewior | 0f91349 | 2011-06-28 16:33:47 +0300 | [diff] [blame] | 1590 | * ci13xxx_stop: unregister a gadget driver |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1591 | */ |
Alexander Shishkin | 1f339d8 | 2012-05-08 23:29:04 +0300 | [diff] [blame] | 1592 | static int ci13xxx_stop(struct usb_gadget *gadget, |
| 1593 | struct usb_gadget_driver *driver) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1594 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1595 | struct ci13xxx *ci = container_of(gadget, struct ci13xxx, gadget); |
Alexander Shishkin | 1f339d8 | 2012-05-08 23:29:04 +0300 | [diff] [blame] | 1596 | unsigned long flags; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1597 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1598 | spin_lock_irqsave(&ci->lock, flags); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1599 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1600 | if (!(ci->platdata->flags & CI13XXX_PULLUP_ON_VBUS) || |
| 1601 | ci->vbus_active) { |
| 1602 | hw_device_state(ci, 0); |
| 1603 | if (ci->platdata->notify_event) |
| 1604 | ci->platdata->notify_event(ci, |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1605 | CI13XXX_CONTROLLER_STOPPED_EVENT); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1606 | ci->driver = NULL; |
| 1607 | spin_unlock_irqrestore(&ci->lock, flags); |
| 1608 | _gadget_stop_activity(&ci->gadget); |
| 1609 | spin_lock_irqsave(&ci->lock, flags); |
| 1610 | pm_runtime_put(&ci->gadget.dev); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1611 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1612 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1613 | spin_unlock_irqrestore(&ci->lock, flags); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1614 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1615 | return 0; |
| 1616 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1617 | |
| 1618 | /****************************************************************************** |
| 1619 | * BUS block |
| 1620 | *****************************************************************************/ |
| 1621 | /** |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1622 | * udc_irq: ci interrupt handler |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1623 | * |
| 1624 | * This function returns IRQ_HANDLED if the IRQ has been handled |
| 1625 | * It locks access to registers |
| 1626 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1627 | static irqreturn_t udc_irq(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1628 | { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1629 | irqreturn_t retval; |
| 1630 | u32 intr; |
| 1631 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1632 | if (ci == NULL) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1633 | return IRQ_HANDLED; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1634 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1635 | spin_lock(&ci->lock); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1636 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1637 | if (ci->platdata->flags & CI13XXX_REGS_SHARED) { |
| 1638 | if (hw_read(ci, OP_USBMODE, USBMODE_CM) != |
Alexander Shishkin | 758fc98 | 2012-05-11 17:25:53 +0300 | [diff] [blame] | 1639 | USBMODE_CM_DC) { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1640 | spin_unlock(&ci->lock); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1641 | return IRQ_NONE; |
| 1642 | } |
| 1643 | } |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1644 | intr = hw_test_and_clear_intr_active(ci); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1645 | dbg_interrupt(intr); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1646 | |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1647 | if (intr) { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1648 | /* order defines priority - do NOT change it */ |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1649 | if (USBi_URI & intr) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1650 | isr_reset_handler(ci); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1651 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1652 | if (USBi_PCI & intr) { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1653 | ci->gadget.speed = hw_port_is_high_speed(ci) ? |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1654 | USB_SPEED_HIGH : USB_SPEED_FULL; |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1655 | if (ci->suspended && ci->driver->resume) { |
| 1656 | spin_unlock(&ci->lock); |
| 1657 | ci->driver->resume(&ci->gadget); |
| 1658 | spin_lock(&ci->lock); |
| 1659 | ci->suspended = 0; |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1660 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1661 | } |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1662 | |
| 1663 | if (USBi_UI & intr) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1664 | isr_tr_complete_handler(ci); |
Alexander Shishkin | e443b33 | 2012-05-11 17:25:46 +0300 | [diff] [blame] | 1665 | |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1666 | if (USBi_SLI & intr) { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1667 | if (ci->gadget.speed != USB_SPEED_UNKNOWN && |
| 1668 | ci->driver->suspend) { |
| 1669 | ci->suspended = 1; |
| 1670 | spin_unlock(&ci->lock); |
| 1671 | ci->driver->suspend(&ci->gadget); |
| 1672 | spin_lock(&ci->lock); |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1673 | } |
Pavankumar Kondeti | e2b61c1 | 2011-02-18 17:43:17 +0530 | [diff] [blame] | 1674 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1675 | retval = IRQ_HANDLED; |
| 1676 | } else { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1677 | retval = IRQ_NONE; |
| 1678 | } |
Richard Zhao | 8c4fc03 | 2012-09-12 14:58:09 +0300 | [diff] [blame] | 1679 | |
| 1680 | intr = hw_read(ci, OP_OTGSC, ~0); |
| 1681 | hw_write(ci, OP_OTGSC, ~0, intr); |
| 1682 | |
| 1683 | if (intr & (OTGSC_AVVIE & OTGSC_AVVIS)) |
| 1684 | queue_work(ci->wq, &ci->vbus_work); |
| 1685 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1686 | spin_unlock(&ci->lock); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1687 | |
| 1688 | return retval; |
| 1689 | } |
| 1690 | |
| 1691 | /** |
| 1692 | * udc_release: driver release function |
| 1693 | * @dev: device |
| 1694 | * |
| 1695 | * Currently does nothing |
| 1696 | */ |
| 1697 | static void udc_release(struct device *dev) |
| 1698 | { |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1699 | } |
| 1700 | |
| 1701 | /** |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1702 | * udc_start: initialize gadget role |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1703 | * @ci: chipidea controller |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1704 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1705 | static int udc_start(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1706 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1707 | struct device *dev = ci->dev; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1708 | int retval = 0; |
| 1709 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1710 | spin_lock_init(&ci->lock); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1711 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1712 | ci->gadget.ops = &usb_gadget_ops; |
| 1713 | ci->gadget.speed = USB_SPEED_UNKNOWN; |
| 1714 | ci->gadget.max_speed = USB_SPEED_HIGH; |
| 1715 | ci->gadget.is_otg = 0; |
| 1716 | ci->gadget.name = ci->platdata->name; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1717 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1718 | INIT_LIST_HEAD(&ci->gadget.ep_list); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1719 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1720 | dev_set_name(&ci->gadget.dev, "gadget"); |
| 1721 | ci->gadget.dev.dma_mask = dev->dma_mask; |
| 1722 | ci->gadget.dev.coherent_dma_mask = dev->coherent_dma_mask; |
| 1723 | ci->gadget.dev.parent = dev; |
| 1724 | ci->gadget.dev.release = udc_release; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1725 | |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1726 | /* alloc resources */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1727 | ci->qh_pool = dma_pool_create("ci13xxx_qh", dev, |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1728 | sizeof(struct ci13xxx_qh), |
| 1729 | 64, CI13XXX_PAGE_SIZE); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1730 | if (ci->qh_pool == NULL) |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1731 | return -ENOMEM; |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1732 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1733 | ci->td_pool = dma_pool_create("ci13xxx_td", dev, |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1734 | sizeof(struct ci13xxx_td), |
| 1735 | 64, CI13XXX_PAGE_SIZE); |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1736 | if (ci->td_pool == NULL) { |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1737 | retval = -ENOMEM; |
| 1738 | goto free_qh_pool; |
| 1739 | } |
| 1740 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1741 | retval = init_eps(ci); |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1742 | if (retval) |
| 1743 | goto free_pools; |
| 1744 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1745 | ci->gadget.ep0 = &ci->ep0in->ep; |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1746 | |
Richard Zhao | a2c3d69 | 2012-07-07 22:56:46 +0800 | [diff] [blame] | 1747 | if (ci->global_phy) |
| 1748 | ci->transceiver = usb_get_phy(USB_PHY_TYPE_USB2); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1749 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1750 | if (ci->platdata->flags & CI13XXX_REQUIRE_TRANSCEIVER) { |
| 1751 | if (ci->transceiver == NULL) { |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1752 | retval = -ENODEV; |
Marc Kleine-Budde | ad6b1b9 | 2012-09-12 14:58:03 +0300 | [diff] [blame] | 1753 | goto destroy_eps; |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1754 | } |
| 1755 | } |
| 1756 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1757 | if (!(ci->platdata->flags & CI13XXX_REGS_SHARED)) { |
| 1758 | retval = hw_device_reset(ci, USBMODE_CM_DC); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1759 | if (retval) |
| 1760 | goto put_transceiver; |
Richard Zhao | 8c4fc03 | 2012-09-12 14:58:09 +0300 | [diff] [blame] | 1761 | hw_enable_vbus_intr(ci); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1762 | } |
| 1763 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1764 | retval = device_register(&ci->gadget.dev); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1765 | if (retval) { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1766 | put_device(&ci->gadget.dev); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1767 | goto put_transceiver; |
| 1768 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1769 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1770 | retval = dbg_create_files(&ci->gadget.dev); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1771 | if (retval) |
| 1772 | goto unreg_device; |
| 1773 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1774 | if (!IS_ERR_OR_NULL(ci->transceiver)) { |
| 1775 | retval = otg_set_peripheral(ci->transceiver->otg, |
| 1776 | &ci->gadget); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1777 | if (retval) |
| 1778 | goto remove_dbg; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1779 | } |
Sebastian Andrzej Siewior | 0f91349 | 2011-06-28 16:33:47 +0300 | [diff] [blame] | 1780 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1781 | retval = usb_add_gadget_udc(dev, &ci->gadget); |
Sebastian Andrzej Siewior | 0f91349 | 2011-06-28 16:33:47 +0300 | [diff] [blame] | 1782 | if (retval) |
| 1783 | goto remove_trans; |
| 1784 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1785 | pm_runtime_no_callbacks(&ci->gadget.dev); |
| 1786 | pm_runtime_enable(&ci->gadget.dev); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1787 | |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1788 | return retval; |
| 1789 | |
Sebastian Andrzej Siewior | 0f91349 | 2011-06-28 16:33:47 +0300 | [diff] [blame] | 1790 | remove_trans: |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1791 | if (!IS_ERR_OR_NULL(ci->transceiver)) { |
Marc Kleine-Budde | c9d1f94 | 2012-09-12 14:58:02 +0300 | [diff] [blame] | 1792 | otg_set_peripheral(ci->transceiver->otg, NULL); |
Richard Zhao | a2c3d69 | 2012-07-07 22:56:46 +0800 | [diff] [blame] | 1793 | if (ci->global_phy) |
| 1794 | usb_put_phy(ci->transceiver); |
Sebastian Andrzej Siewior | 0f91349 | 2011-06-28 16:33:47 +0300 | [diff] [blame] | 1795 | } |
| 1796 | |
Greg Kroah-Hartman | 0917ba8 | 2012-04-27 11:24:39 -0700 | [diff] [blame] | 1797 | dev_err(dev, "error = %i\n", retval); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1798 | remove_dbg: |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1799 | dbg_remove_files(&ci->gadget.dev); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1800 | unreg_device: |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1801 | device_unregister(&ci->gadget.dev); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1802 | put_transceiver: |
Richard Zhao | a2c3d69 | 2012-07-07 22:56:46 +0800 | [diff] [blame] | 1803 | if (!IS_ERR_OR_NULL(ci->transceiver) && ci->global_phy) |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1804 | usb_put_phy(ci->transceiver); |
Marc Kleine-Budde | ad6b1b9 | 2012-09-12 14:58:03 +0300 | [diff] [blame] | 1805 | destroy_eps: |
| 1806 | destroy_eps(ci); |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1807 | free_pools: |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1808 | dma_pool_destroy(ci->td_pool); |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1809 | free_qh_pool: |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1810 | dma_pool_destroy(ci->qh_pool); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1811 | return retval; |
| 1812 | } |
| 1813 | |
| 1814 | /** |
| 1815 | * udc_remove: parent remove must call this to remove UDC |
| 1816 | * |
| 1817 | * No interrupts active, the IRQ has been released |
| 1818 | */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1819 | static void udc_stop(struct ci13xxx *ci) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1820 | { |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1821 | if (ci == NULL) |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1822 | return; |
Alexander Shishkin | 0f08909 | 2012-05-08 23:29:02 +0300 | [diff] [blame] | 1823 | |
Richard Zhao | 8c4fc03 | 2012-09-12 14:58:09 +0300 | [diff] [blame] | 1824 | hw_disable_vbus_intr(ci); |
| 1825 | cancel_work_sync(&ci->vbus_work); |
| 1826 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1827 | usb_del_gadget_udc(&ci->gadget); |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1828 | |
Marc Kleine-Budde | ad6b1b9 | 2012-09-12 14:58:03 +0300 | [diff] [blame] | 1829 | destroy_eps(ci); |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1830 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1831 | dma_pool_destroy(ci->td_pool); |
| 1832 | dma_pool_destroy(ci->qh_pool); |
Alexander Shishkin | 790c2d5 | 2012-05-08 23:29:03 +0300 | [diff] [blame] | 1833 | |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1834 | if (!IS_ERR_OR_NULL(ci->transceiver)) { |
| 1835 | otg_set_peripheral(ci->transceiver->otg, NULL); |
Richard Zhao | a2c3d69 | 2012-07-07 22:56:46 +0800 | [diff] [blame] | 1836 | if (ci->global_phy) |
| 1837 | usb_put_phy(ci->transceiver); |
Pavankumar Kondeti | f01ef57 | 2010-12-07 17:54:02 +0530 | [diff] [blame] | 1838 | } |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1839 | dbg_remove_files(&ci->gadget.dev); |
| 1840 | device_unregister(&ci->gadget.dev); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1841 | /* my kobject is dynamic, I swear! */ |
Richard Zhao | 26c696c | 2012-07-07 22:56:40 +0800 | [diff] [blame] | 1842 | memset(&ci->gadget, 0, sizeof(ci->gadget)); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1843 | } |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1844 | |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1845 | /** |
| 1846 | * ci_hdrc_gadget_init - initialize device related bits |
| 1847 | * ci: the controller |
| 1848 | * |
| 1849 | * This function enables the gadget role, if the device is "device capable". |
| 1850 | */ |
| 1851 | int ci_hdrc_gadget_init(struct ci13xxx *ci) |
| 1852 | { |
| 1853 | struct ci_role_driver *rdrv; |
| 1854 | |
| 1855 | if (!hw_read(ci, CAP_DCCPARAMS, DCCPARAMS_DC)) |
| 1856 | return -ENXIO; |
| 1857 | |
| 1858 | rdrv = devm_kzalloc(ci->dev, sizeof(struct ci_role_driver), GFP_KERNEL); |
| 1859 | if (!rdrv) |
| 1860 | return -ENOMEM; |
| 1861 | |
| 1862 | rdrv->start = udc_start; |
| 1863 | rdrv->stop = udc_stop; |
| 1864 | rdrv->irq = udc_irq; |
| 1865 | rdrv->name = "gadget"; |
| 1866 | ci->roles[CI_ROLE_GADGET] = rdrv; |
Richard Zhao | 8c4fc03 | 2012-09-12 14:58:09 +0300 | [diff] [blame] | 1867 | INIT_WORK(&ci->vbus_work, vbus_work); |
Alexander Shishkin | 5f36e23 | 2012-05-11 17:25:47 +0300 | [diff] [blame] | 1868 | |
| 1869 | return 0; |
David Lopo | aa69a80 | 2008-11-17 14:14:51 -0800 | [diff] [blame] | 1870 | } |