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