blob: a87caad8d1c7e3ebeb1360b1b0105fec229c4081 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Driver for the PLX NET2280 USB device controller.
4 * Specs and errata are available from <http://www.plxtech.com>.
5 *
David Brownell901b3d72006-09-02 03:13:45 -07006 * PLX Technology Inc. (formerly NetChip Technology) supported the
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * development of this driver.
8 *
9 *
10 * CODE STATUS HIGHLIGHTS
11 *
12 * This driver should work well with most "gadget" drivers, including
Michal Nazarewiczfa069202012-11-06 22:52:36 +010013 * the Mass Storage, Serial, and Ethernet/RNDIS gadget drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * as well as Gadget Zero and Gadgetfs.
15 *
Ricardo Ribalda Delgado90664192014-11-28 14:50:46 +010016 * DMA is enabled by default.
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 *
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +020018 * MSI is enabled by default. The legacy IRQ is used if MSI couldn't
19 * be enabled.
20 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * Note that almost all the errata workarounds here are only needed for
22 * rev1 chips. Rev1a silicon (0110) fixes almost all of them.
23 */
24
25/*
26 * Copyright (C) 2003 David Brownell
27 * Copyright (C) 2003-2005 PLX Technology, Inc.
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +020028 * Copyright (C) 2014 Ricardo Ribalda - Qtechnology/AS
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 *
David Brownell901b3d72006-09-02 03:13:45 -070030 * Modified Seth Levy 2005 PLX Technology, Inc. to provide compatibility
31 * with 2282 chip
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +010032 *
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +020033 * Modified Ricardo Ribalda Qtechnology AS to provide compatibility
34 * with usb 338x chip. Based on PLX driver
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 */
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/module.h>
38#include <linux/pci.h>
David Brownell682d4c82006-01-18 23:55:08 -080039#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/kernel.h>
41#include <linux/delay.h>
42#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/errno.h>
45#include <linux/init.h>
46#include <linux/timer.h>
47#include <linux/list.h>
48#include <linux/interrupt.h>
49#include <linux/moduleparam.h>
50#include <linux/device.h>
David Brownell5f848132006-12-16 15:34:53 -080051#include <linux/usb/ch9.h>
David Brownell9454a572007-10-04 18:05:17 -070052#include <linux/usb/gadget.h>
Bryan Wub38b03b2011-06-02 12:51:29 +080053#include <linux/prefetch.h>
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +020054#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#include <asm/byteorder.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <asm/unaligned.h>
59
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +020060#define DRIVER_DESC "PLX NET228x/USB338x USB Peripheral Controller"
61#define DRIVER_VERSION "2005 Sept 27/v3.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define EP_DONTUSE 13 /* nonzero */
64
65#define USE_RDK_LEDS /* GPIO pins control three LEDs */
66
67
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +020068static const char driver_name[] = "net2280";
69static const char driver_desc[] = DRIVER_DESC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +020071static const u32 ep_bit[9] = { 0, 17, 2, 19, 4, 1, 18, 3, 20 };
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +020072static const char ep0name[] = "ep0";
Robert Baldygac23c3c32015-07-31 16:00:36 +020073
74#define EP_INFO(_name, _caps) \
75 { \
76 .name = _name, \
77 .caps = _caps, \
78 }
79
80static const struct {
81 const char *name;
82 const struct usb_ep_caps caps;
83} ep_info_dft[] = { /* Default endpoint configuration */
84 EP_INFO(ep0name,
85 USB_EP_CAPS(USB_EP_CAPS_TYPE_CONTROL, USB_EP_CAPS_DIR_ALL)),
86 EP_INFO("ep-a",
87 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
88 EP_INFO("ep-b",
89 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
90 EP_INFO("ep-c",
91 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
92 EP_INFO("ep-d",
93 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
94 EP_INFO("ep-e",
95 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
96 EP_INFO("ep-f",
97 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
98 EP_INFO("ep-g",
99 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
100 EP_INFO("ep-h",
101 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_ALL)),
102}, ep_info_adv[] = { /* Endpoints for usb3380 advance mode */
103 EP_INFO(ep0name,
104 USB_EP_CAPS(USB_EP_CAPS_TYPE_CONTROL, USB_EP_CAPS_DIR_ALL)),
105 EP_INFO("ep1in",
106 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_IN)),
107 EP_INFO("ep2out",
108 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
109 EP_INFO("ep3in",
110 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_IN)),
111 EP_INFO("ep4out",
112 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
113 EP_INFO("ep1out",
114 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
115 EP_INFO("ep2in",
116 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_IN)),
117 EP_INFO("ep3out",
118 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_OUT)),
119 EP_INFO("ep4in",
120 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL, USB_EP_CAPS_DIR_IN)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121};
122
Robert Baldygac23c3c32015-07-31 16:00:36 +0200123#undef EP_INFO
Mian Yousaf Kaukaba285f402015-02-02 10:55:23 +0100124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/* mode 0 == ep-{a,b,c,d} 1K fifo each
126 * mode 1 == ep-{a,b} 2K fifo each, ep-{c,d} unavailable
127 * mode 2 == ep-a 2K fifo, ep-{b,c} 1K each, ep-d unavailable
128 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200129static ushort fifo_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131/* "modprobe net2280 fifo_mode=1" etc */
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200132module_param(fifo_mode, ushort, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134/* enable_suspend -- When enabled, the driver will respond to
135 * USB suspend requests by powering down the NET2280. Otherwise,
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300136 * USB suspend requests will be ignored. This is acceptable for
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +0100137 * self-powered devices
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 */
Ricardo Ribalda Delgado00d4db02014-05-20 18:30:06 +0200139static bool enable_suspend;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141/* "modprobe net2280 enable_suspend=1" etc */
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200142module_param(enable_suspend, bool, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#define DIR_STRING(bAddress) (((bAddress) & USB_DIR_IN) ? "in" : "out")
145
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200146static char *type_string(u8 bmAttributes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 switch ((bmAttributes) & USB_ENDPOINT_XFERTYPE_MASK) {
149 case USB_ENDPOINT_XFER_BULK: return "bulk";
150 case USB_ENDPOINT_XFER_ISOC: return "iso";
151 case USB_ENDPOINT_XFER_INT: return "intr";
Joe Perches2b84f922013-10-08 16:01:37 -0700152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return "control";
154}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156#include "net2280.h"
157
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200158#define valid_bit cpu_to_le32(BIT(VALID_BIT))
159#define dma_done_ie cpu_to_le32(BIT(DMA_DONE_INTERRUPT_ENABLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Mian Yousaf Kaukabe6ac4bb2015-05-16 22:33:31 +0200161static void ep_clear_seqnum(struct net2280_ep *ep);
Mian Yousaf Kaukab11bece52015-05-16 22:33:39 +0200162static void stop_activity(struct net2280 *dev,
163 struct usb_gadget_driver *driver);
164static void ep0_start(struct net2280 *dev);
Mian Yousaf Kaukabe6ac4bb2015-05-16 22:33:31 +0200165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*-------------------------------------------------------------------------*/
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200167static inline void enable_pciirqenb(struct net2280_ep *ep)
168{
169 u32 tmp = readl(&ep->dev->regs->pciirqenb0);
170
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +0200171 if (ep->dev->quirks & PLX_LEGACY)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200172 tmp |= BIT(ep->num);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200173 else
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200174 tmp |= BIT(ep_bit[ep->num]);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200175 writel(tmp, &ep->dev->regs->pciirqenb0);
176
177 return;
178}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180static int
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200181net2280_enable(struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 struct net2280 *dev;
184 struct net2280_ep *ep;
Mian Yousaf Kaukabc65c4f02015-05-16 22:33:36 +0200185 u32 max;
186 u32 tmp = 0;
187 u32 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 unsigned long flags;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200189 static const u32 ep_key[9] = { 1, 0, 1, 0, 1, 1, 0, 1, 0 };
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100190 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200192 ep = container_of(_ep, struct net2280_ep, ep);
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200193 if (!_ep || !desc || ep->desc || _ep->name == ep0name ||
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100194 desc->bDescriptorType != USB_DT_ENDPOINT) {
195 pr_err("%s: failed at line=%d\n", __func__, __LINE__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return -EINVAL;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 dev = ep->dev;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100199 if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
200 ret = -ESHUTDOWN;
201 goto print_err;
202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 /* erratum 0119 workaround ties up an endpoint number */
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100205 if ((desc->bEndpointAddress & 0x0f) == EP_DONTUSE) {
206 ret = -EDOM;
207 goto print_err;
208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Tim Harvey5185c9132016-05-23 06:58:41 -0700210 if (dev->quirks & PLX_PCIE) {
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100211 if ((desc->bEndpointAddress & 0x0f) >= 0x0c) {
212 ret = -EDOM;
213 goto print_err;
214 }
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200215 ep->is_in = !!usb_endpoint_dir_in(desc);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100216 if (dev->enhanced_mode && ep->is_in && ep_key[ep->num]) {
217 ret = -EINVAL;
218 goto print_err;
219 }
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200220 }
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /* sanity check ep-e/ep-f since their fifos are small */
Felipe Balbi090bdb52016-09-28 14:17:38 +0300223 max = usb_endpoint_maxp(desc);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100224 if (ep->num > 4 && max > 64 && (dev->quirks & PLX_LEGACY)) {
225 ret = -ERANGE;
226 goto print_err;
227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200229 spin_lock_irqsave(&dev->lock, flags);
Felipe Balbi090bdb52016-09-28 14:17:38 +0300230 _ep->maxpacket = max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 ep->desc = desc;
232
233 /* ep_reset() has already been called */
234 ep->stopped = 0;
Alan Stern80661342008-08-14 15:49:11 -0400235 ep->wedged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 ep->out_overflow = 0;
237
238 /* set speed-dependent max packet; may kick in high bandwidth */
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200239 set_max_speed(ep, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 /* set type, direction, address; reset fifo counters */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200242 writel(BIT(FIFO_FLUSH), &ep->regs->ep_stat);
Mian Yousaf Kaukabc65c4f02015-05-16 22:33:36 +0200243
Tim Harvey5185c9132016-05-23 06:58:41 -0700244 if ((dev->quirks & PLX_PCIE) && dev->enhanced_mode) {
Mian Yousaf Kaukabc65c4f02015-05-16 22:33:36 +0200245 tmp = readl(&ep->cfg->ep_cfg);
246 /* If USB ep number doesn't match hardware ep number */
247 if ((tmp & 0xf) != usb_endpoint_num(desc)) {
248 ret = -EINVAL;
249 spin_unlock_irqrestore(&dev->lock, flags);
250 goto print_err;
251 }
252 if (ep->is_in)
253 tmp &= ~USB3380_EP_CFG_MASK_IN;
254 else
255 tmp &= ~USB3380_EP_CFG_MASK_OUT;
256 }
257 type = (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK);
258 if (type == USB_ENDPOINT_XFER_INT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 /* erratum 0105 workaround prevents hs NYET */
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200260 if (dev->chiprev == 0100 &&
261 dev->gadget.speed == USB_SPEED_HIGH &&
262 !(desc->bEndpointAddress & USB_DIR_IN))
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200263 writel(BIT(CLEAR_NAK_OUT_PACKETS_MODE),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 &ep->regs->ep_rsp);
Mian Yousaf Kaukabc65c4f02015-05-16 22:33:36 +0200265 } else if (type == USB_ENDPOINT_XFER_BULK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /* catch some particularly blatant driver bugs */
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200267 if ((dev->gadget.speed == USB_SPEED_SUPER && max != 1024) ||
268 (dev->gadget.speed == USB_SPEED_HIGH && max != 512) ||
269 (dev->gadget.speed == USB_SPEED_FULL && max > 64)) {
270 spin_unlock_irqrestore(&dev->lock, flags);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100271 ret = -ERANGE;
272 goto print_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274 }
Mian Yousaf Kaukabc65c4f02015-05-16 22:33:36 +0200275 ep->is_iso = (type == USB_ENDPOINT_XFER_ISOC);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200276 /* Enable this endpoint */
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +0200277 if (dev->quirks & PLX_LEGACY) {
Mian Yousaf Kaukabc65c4f02015-05-16 22:33:36 +0200278 tmp |= type << ENDPOINT_TYPE;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200279 tmp |= desc->bEndpointAddress;
280 /* default full fifo lines */
281 tmp |= (4 << ENDPOINT_BYTE_COUNT);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200282 tmp |= BIT(ENDPOINT_ENABLE);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200283 ep->is_in = (tmp & USB_DIR_IN) != 0;
284 } else {
285 /* In Legacy mode, only OUT endpoints are used */
286 if (dev->enhanced_mode && ep->is_in) {
Mian Yousaf Kaukabc65c4f02015-05-16 22:33:36 +0200287 tmp |= type << IN_ENDPOINT_TYPE;
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200288 tmp |= BIT(IN_ENDPOINT_ENABLE);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200289 } else {
Mian Yousaf Kaukabc65c4f02015-05-16 22:33:36 +0200290 tmp |= type << OUT_ENDPOINT_TYPE;
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200291 tmp |= BIT(OUT_ENDPOINT_ENABLE);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200292 tmp |= (ep->is_in << ENDPOINT_DIRECTION);
293 }
294
Mian Yousaf Kaukab463e1042015-05-16 22:33:34 +0200295 tmp |= (4 << ENDPOINT_BYTE_COUNT);
Mian Yousaf Kaukabc65c4f02015-05-16 22:33:36 +0200296 if (!dev->enhanced_mode)
297 tmp |= usb_endpoint_num(desc);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200298 tmp |= (ep->ep.maxburst << MAX_BURST_SIZE);
299 }
300
301 /* Make sure all the registers are written before ep_rsp*/
302 wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 /* for OUT transfers, block the rx fifo until a read is posted */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (!ep->is_in)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200306 writel(BIT(SET_NAK_OUT_PACKETS), &ep->regs->ep_rsp);
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +0200307 else if (!(dev->quirks & PLX_2280)) {
David Brownell901b3d72006-09-02 03:13:45 -0700308 /* Added for 2282, Don't use nak packets on an in endpoint,
309 * this was ignored on 2280
310 */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200311 writel(BIT(CLEAR_NAK_OUT_PACKETS) |
312 BIT(CLEAR_NAK_OUT_PACKETS_MODE), &ep->regs->ep_rsp);
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +0100313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Tim Harvey5185c9132016-05-23 06:58:41 -0700315 if (dev->quirks & PLX_PCIE)
Mian Yousaf Kaukabe6ac4bb2015-05-16 22:33:31 +0200316 ep_clear_seqnum(ep);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200317 writel(tmp, &ep->cfg->ep_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 /* enable irqs */
320 if (!ep->dma) { /* pio, per-packet */
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200321 enable_pciirqenb(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200323 tmp = BIT(DATA_PACKET_RECEIVED_INTERRUPT_ENABLE) |
324 BIT(DATA_PACKET_TRANSMITTED_INTERRUPT_ENABLE);
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +0200325 if (dev->quirks & PLX_2280)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200326 tmp |= readl(&ep->regs->ep_irqenb);
327 writel(tmp, &ep->regs->ep_irqenb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 } else { /* dma, per-request */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200329 tmp = BIT((8 + ep->num)); /* completion */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200330 tmp |= readl(&dev->regs->pciirqenb1);
331 writel(tmp, &dev->regs->pciirqenb1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 /* for short OUT transfers, dma completions can't
334 * advance the queue; do it pio-style, by hand.
335 * NOTE erratum 0112 workaround #2
336 */
337 if ((desc->bEndpointAddress & USB_DIR_IN) == 0) {
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200338 tmp = BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT_ENABLE);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200339 writel(tmp, &ep->regs->ep_irqenb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200341 enable_pciirqenb(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343 }
344
345 tmp = desc->bEndpointAddress;
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +0200346 ep_dbg(dev, "enabled %s (ep%d%s-%s) %s max %04x\n",
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200347 _ep->name, tmp & 0x0f, DIR_STRING(tmp),
348 type_string(desc->bmAttributes),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 ep->dma ? "dma" : "pio", max);
350
351 /* pci writes may still be posted */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200352 spin_unlock_irqrestore(&dev->lock, flags);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100353 return ret;
354
355print_err:
356 dev_err(&ep->dev->pdev->dev, "%s: error=%d\n", __func__, ret);
357 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200360static int handshake(u32 __iomem *ptr, u32 mask, u32 done, int usec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 u32 result;
363
364 do {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200365 result = readl(ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (result == ~(u32)0) /* "device unplugged" */
367 return -ENODEV;
368 result &= mask;
369 if (result == done)
370 return 0;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200371 udelay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 usec--;
373 } while (usec > 0);
374 return -ETIMEDOUT;
375}
376
David Brownell901b3d72006-09-02 03:13:45 -0700377static const struct usb_ep_ops net2280_ep_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200379static void ep_reset_228x(struct net2280_regs __iomem *regs,
380 struct net2280_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 u32 tmp;
383
384 ep->desc = NULL;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200385 INIT_LIST_HEAD(&ep->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Robert Baldygae117e742013-12-13 12:23:38 +0100387 usb_ep_set_maxpacket_limit(&ep->ep, ~0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 ep->ep.ops = &net2280_ep_ops;
389
390 /* disable the dma, irqs, endpoint... */
391 if (ep->dma) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200392 writel(0, &ep->dma->dmactl);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200393 writel(BIT(DMA_SCATTER_GATHER_DONE_INTERRUPT) |
394 BIT(DMA_TRANSACTION_DONE_INTERRUPT) |
395 BIT(DMA_ABORT),
396 &ep->dma->dmastat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200398 tmp = readl(&regs->pciirqenb0);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200399 tmp &= ~BIT(ep->num);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200400 writel(tmp, &regs->pciirqenb0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 } else {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200402 tmp = readl(&regs->pciirqenb1);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200403 tmp &= ~BIT((8 + ep->num)); /* completion */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200404 writel(tmp, &regs->pciirqenb1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200406 writel(0, &ep->regs->ep_irqenb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 /* init to our chosen defaults, notably so that we NAK OUT
409 * packets until the driver queues a read (+note erratum 0112)
410 */
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +0200411 if (!ep->is_in || (ep->dev->quirks & PLX_2280)) {
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200412 tmp = BIT(SET_NAK_OUT_PACKETS_MODE) |
413 BIT(SET_NAK_OUT_PACKETS) |
414 BIT(CLEAR_EP_HIDE_STATUS_PHASE) |
415 BIT(CLEAR_INTERRUPT_MODE);
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +0100416 } else {
417 /* added for 2282 */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200418 tmp = BIT(CLEAR_NAK_OUT_PACKETS_MODE) |
419 BIT(CLEAR_NAK_OUT_PACKETS) |
420 BIT(CLEAR_EP_HIDE_STATUS_PHASE) |
421 BIT(CLEAR_INTERRUPT_MODE);
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +0100422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 if (ep->num != 0) {
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200425 tmp |= BIT(CLEAR_ENDPOINT_TOGGLE) |
426 BIT(CLEAR_ENDPOINT_HALT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200428 writel(tmp, &ep->regs->ep_rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 /* scrub most status bits, and flush any fifo state */
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +0200431 if (ep->dev->quirks & PLX_2280)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200432 tmp = BIT(FIFO_OVERFLOW) |
433 BIT(FIFO_UNDERFLOW);
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +0100434 else
435 tmp = 0;
436
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200437 writel(tmp | BIT(TIMEOUT) |
438 BIT(USB_STALL_SENT) |
439 BIT(USB_IN_NAK_SENT) |
440 BIT(USB_IN_ACK_RCVD) |
441 BIT(USB_OUT_PING_NAK_SENT) |
442 BIT(USB_OUT_ACK_SENT) |
443 BIT(FIFO_FLUSH) |
444 BIT(SHORT_PACKET_OUT_DONE_INTERRUPT) |
445 BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT) |
446 BIT(DATA_PACKET_RECEIVED_INTERRUPT) |
447 BIT(DATA_PACKET_TRANSMITTED_INTERRUPT) |
448 BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200449 BIT(DATA_IN_TOKEN_INTERRUPT),
450 &ep->regs->ep_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 /* fifo size is handled separately */
453}
454
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200455static void ep_reset_338x(struct net2280_regs __iomem *regs,
456 struct net2280_ep *ep)
457{
458 u32 tmp, dmastat;
459
460 ep->desc = NULL;
461 INIT_LIST_HEAD(&ep->queue);
462
463 usb_ep_set_maxpacket_limit(&ep->ep, ~0);
464 ep->ep.ops = &net2280_ep_ops;
465
466 /* disable the dma, irqs, endpoint... */
467 if (ep->dma) {
468 writel(0, &ep->dma->dmactl);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200469 writel(BIT(DMA_ABORT_DONE_INTERRUPT) |
470 BIT(DMA_PAUSE_DONE_INTERRUPT) |
471 BIT(DMA_SCATTER_GATHER_DONE_INTERRUPT) |
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200472 BIT(DMA_TRANSACTION_DONE_INTERRUPT),
473 /* | BIT(DMA_ABORT), */
474 &ep->dma->dmastat);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200475
476 dmastat = readl(&ep->dma->dmastat);
477 if (dmastat == 0x5002) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +0200478 ep_warn(ep->dev, "The dmastat return = %x!!\n",
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200479 dmastat);
480 writel(0x5a, &ep->dma->dmastat);
481 }
482
483 tmp = readl(&regs->pciirqenb0);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200484 tmp &= ~BIT(ep_bit[ep->num]);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200485 writel(tmp, &regs->pciirqenb0);
486 } else {
487 if (ep->num < 5) {
488 tmp = readl(&regs->pciirqenb1);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200489 tmp &= ~BIT((8 + ep->num)); /* completion */
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200490 writel(tmp, &regs->pciirqenb1);
491 }
492 }
493 writel(0, &ep->regs->ep_irqenb);
494
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200495 writel(BIT(SHORT_PACKET_OUT_DONE_INTERRUPT) |
496 BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT) |
497 BIT(FIFO_OVERFLOW) |
498 BIT(DATA_PACKET_RECEIVED_INTERRUPT) |
499 BIT(DATA_PACKET_TRANSMITTED_INTERRUPT) |
500 BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
501 BIT(DATA_IN_TOKEN_INTERRUPT), &ep->regs->ep_stat);
Mian Yousaf Kaukab971fe652015-05-16 22:33:38 +0200502
503 tmp = readl(&ep->cfg->ep_cfg);
504 if (ep->is_in)
505 tmp &= ~USB3380_EP_CFG_MASK_IN;
506 else
507 tmp &= ~USB3380_EP_CFG_MASK_OUT;
508 writel(tmp, &ep->cfg->ep_cfg);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200509}
510
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200511static void nuke(struct net2280_ep *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200513static int net2280_disable(struct usb_ep *_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 struct net2280_ep *ep;
516 unsigned long flags;
517
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200518 ep = container_of(_ep, struct net2280_ep, ep);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100519 if (!_ep || !ep->desc || _ep->name == ep0name) {
520 pr_err("%s: Invalid ep=%p or ep->desc\n", __func__, _ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return -EINVAL;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100522 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200523 spin_lock_irqsave(&ep->dev->lock, flags);
524 nuke(ep);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200525
Tim Harvey5185c9132016-05-23 06:58:41 -0700526 if (ep->dev->quirks & PLX_PCIE)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200527 ep_reset_338x(ep->dev->regs, ep);
528 else
529 ep_reset_228x(ep->dev->regs, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +0200531 ep_vdbg(ep->dev, "disabled %s %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 ep->dma ? "dma" : "pio", _ep->name);
533
534 /* synch memory views with the device */
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +0200535 (void)readl(&ep->cfg->ep_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Ricardo Ribalda Delgadod588ff52014-11-28 14:50:49 +0100537 if (!ep->dma && ep->num >= 1 && ep->num <= 4)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200538 ep->dma = &ep->dev->dma[ep->num - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200540 spin_unlock_irqrestore(&ep->dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return 0;
542}
543
544/*-------------------------------------------------------------------------*/
545
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200546static struct usb_request
547*net2280_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
549 struct net2280_ep *ep;
550 struct net2280_request *req;
551
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100552 if (!_ep) {
553 pr_err("%s: Invalid ep\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return NULL;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100555 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200556 ep = container_of(_ep, struct net2280_ep, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800558 req = kzalloc(sizeof(*req), gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (!req)
560 return NULL;
561
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200562 INIT_LIST_HEAD(&req->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
564 /* this dma descriptor may be swapped with the previous dummy */
565 if (ep->dma) {
566 struct net2280_dma *td;
567
Romain Perierfa9ed6f2017-03-08 17:19:54 +0100568 td = dma_pool_alloc(ep->dev->requests, gfp_flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 &req->td_dma);
570 if (!td) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200571 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return NULL;
573 }
574 td->dmacount = 0; /* not VALID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 td->dmadesc = td->dmaaddr;
576 req->td = td;
577 }
578 return &req->req;
579}
580
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200581static void net2280_free_request(struct usb_ep *_ep, struct usb_request *_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
583 struct net2280_ep *ep;
584 struct net2280_request *req;
585
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200586 ep = container_of(_ep, struct net2280_ep, ep);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100587 if (!_ep || !_req) {
Colin Ian Kinga00c9792016-08-24 07:44:19 +0100588 dev_err(&ep->dev->pdev->dev, "%s: Invalid ep=%p or req=%p\n",
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100589 __func__, _ep, _req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100591 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200593 req = container_of(_req, struct net2280_request, req);
594 WARN_ON(!list_empty(&req->queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (req->td)
Romain Perierfa9ed6f2017-03-08 17:19:54 +0100596 dma_pool_free(ep->dev->requests, req->td, req->td_dma);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200597 kfree(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600/*-------------------------------------------------------------------------*/
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602/* load a packet into the fifo we use for usb IN transfers.
603 * works for all endpoints.
604 *
605 * NOTE: pio with ep-a..ep-d could stuff multiple packets into the fifo
606 * at a time, but this code is simpler because it knows it only writes
607 * one packet. ep-a..ep-d should use dma instead.
608 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200609static void write_fifo(struct net2280_ep *ep, struct usb_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
611 struct net2280_ep_regs __iomem *regs = ep->regs;
612 u8 *buf;
613 u32 tmp;
614 unsigned count, total;
615
616 /* INVARIANT: fifo is currently empty. (testable) */
617
618 if (req) {
619 buf = req->buf + req->actual;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200620 prefetch(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 total = req->length - req->actual;
622 } else {
623 total = 0;
624 buf = NULL;
625 }
626
627 /* write just one packet at a time */
628 count = ep->ep.maxpacket;
629 if (count > total) /* min() cannot be used on a bitfield */
630 count = total;
631
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +0200632 ep_vdbg(ep->dev, "write %s fifo (IN) %d bytes%s req %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 ep->ep.name, count,
634 (count != ep->ep.maxpacket) ? " (short)" : "",
635 req);
636 while (count >= 4) {
637 /* NOTE be careful if you try to align these. fifo lines
638 * should normally be full (4 bytes) and successive partial
639 * lines are ok only in certain cases.
640 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200641 tmp = get_unaligned((u32 *)buf);
642 cpu_to_le32s(&tmp);
643 writel(tmp, &regs->ep_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 buf += 4;
645 count -= 4;
646 }
647
648 /* last fifo entry is "short" unless we wrote a full packet.
649 * also explicitly validate last word in (periodic) transfers
650 * when maxpacket is not a multiple of 4 bytes.
651 */
652 if (count || total < ep->ep.maxpacket) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200653 tmp = count ? get_unaligned((u32 *)buf) : count;
654 cpu_to_le32s(&tmp);
655 set_fifo_bytecount(ep, count & 0x03);
656 writel(tmp, &regs->ep_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658
659 /* pci writes may still be posted */
660}
661
662/* work around erratum 0106: PCI and USB race over the OUT fifo.
663 * caller guarantees chiprev 0100, out endpoint is NAKing, and
664 * there's no real data in the fifo.
665 *
666 * NOTE: also used in cases where that erratum doesn't apply:
667 * where the host wrote "too much" data to us.
668 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200669static void out_flush(struct net2280_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
671 u32 __iomem *statp;
672 u32 tmp;
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 statp = &ep->regs->ep_stat;
Ricardo Ribalda Delgadod82f3db2014-11-28 14:51:01 +0100675
676 tmp = readl(statp);
677 if (tmp & BIT(NAK_OUT_PACKETS)) {
678 ep_dbg(ep->dev, "%s %s %08x !NAK\n",
679 ep->ep.name, __func__, tmp);
680 writel(BIT(SET_NAK_OUT_PACKETS), &ep->regs->ep_rsp);
681 }
682
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200683 writel(BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200684 BIT(DATA_PACKET_RECEIVED_INTERRUPT),
685 statp);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200686 writel(BIT(FIFO_FLUSH), statp);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200687 /* Make sure that stap is written */
688 mb();
689 tmp = readl(statp);
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200690 if (tmp & BIT(DATA_OUT_PING_TOKEN_INTERRUPT) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 /* high speed did bulk NYET; fifo isn't filling */
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200692 ep->dev->gadget.speed == USB_SPEED_FULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 unsigned usec;
694
695 usec = 50; /* 64 byte bulk/interrupt */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200696 handshake(statp, BIT(USB_OUT_PING_NAK_SENT),
697 BIT(USB_OUT_PING_NAK_SENT), usec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /* NAK done; now CLEAR_NAK_OUT_PACKETS is safe */
699 }
700}
701
702/* unload packet(s) from the fifo we use for usb OUT transfers.
703 * returns true iff the request completed, because of short packet
704 * or the request buffer having filled with full packets.
705 *
706 * for ep-a..ep-d this will read multiple packets out when they
707 * have been accepted.
708 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200709static int read_fifo(struct net2280_ep *ep, struct net2280_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
711 struct net2280_ep_regs __iomem *regs = ep->regs;
712 u8 *buf = req->req.buf + req->req.actual;
713 unsigned count, tmp, is_short;
714 unsigned cleanup = 0, prevent = 0;
715
716 /* erratum 0106 ... packets coming in during fifo reads might
717 * be incompletely rejected. not all cases have workarounds.
718 */
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200719 if (ep->dev->chiprev == 0x0100 &&
720 ep->dev->gadget.speed == USB_SPEED_FULL) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200721 udelay(1);
722 tmp = readl(&ep->regs->ep_stat);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200723 if ((tmp & BIT(NAK_OUT_PACKETS)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 cleanup = 1;
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200725 else if ((tmp & BIT(FIFO_FULL))) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200726 start_out_naking(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 prevent = 1;
728 }
729 /* else: hope we don't see the problem */
730 }
731
732 /* never overflow the rx buffer. the fifo reads packets until
733 * it sees a short one; we might not be ready for them all.
734 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200735 prefetchw(buf);
736 count = readl(&regs->ep_avail);
737 if (unlikely(count == 0)) {
738 udelay(1);
739 tmp = readl(&ep->regs->ep_stat);
740 count = readl(&regs->ep_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 /* handled that data already? */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200742 if (count == 0 && (tmp & BIT(NAK_OUT_PACKETS)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return 0;
744 }
745
746 tmp = req->req.length - req->req.actual;
747 if (count > tmp) {
748 /* as with DMA, data overflow gets flushed */
749 if ((tmp % ep->ep.maxpacket) != 0) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +0200750 ep_err(ep->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 "%s out fifo %d bytes, expected %d\n",
752 ep->ep.name, count, tmp);
753 req->req.status = -EOVERFLOW;
754 cleanup = 1;
755 /* NAK_OUT_PACKETS will be set, so flushing is safe;
756 * the next read will start with the next packet
757 */
758 } /* else it's a ZLP, no worries */
759 count = tmp;
760 }
761 req->req.actual += count;
762
763 is_short = (count == 0) || ((count % ep->ep.maxpacket) != 0);
764
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +0200765 ep_vdbg(ep->dev, "read %s fifo (OUT) %d bytes%s%s%s req %p %d/%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 ep->ep.name, count, is_short ? " (short)" : "",
767 cleanup ? " flush" : "", prevent ? " nak" : "",
768 req, req->req.actual, req->req.length);
769
770 while (count >= 4) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200771 tmp = readl(&regs->ep_data);
772 cpu_to_le32s(&tmp);
773 put_unaligned(tmp, (u32 *)buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 buf += 4;
775 count -= 4;
776 }
777 if (count) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200778 tmp = readl(&regs->ep_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /* LE conversion is implicit here: */
780 do {
781 *buf++ = (u8) tmp;
782 tmp >>= 8;
783 } while (--count);
784 }
785 if (cleanup)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200786 out_flush(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (prevent) {
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200788 writel(BIT(CLEAR_NAK_OUT_PACKETS), &ep->regs->ep_rsp);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200789 (void) readl(&ep->regs->ep_rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200792 return is_short || ((req->req.actual == req->req.length) &&
793 !req->req.zero);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
796/* fill out dma descriptor to match a given request */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200797static void fill_dma_desc(struct net2280_ep *ep,
798 struct net2280_request *req, int valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 struct net2280_dma *td = req->td;
801 u32 dmacount = req->req.length;
802
803 /* don't let DMA continue after a short OUT packet,
804 * so overruns can't affect the next transfer.
805 * in case of overruns on max-size packets, we can't
806 * stop the fifo from filling but we can flush it.
807 */
808 if (ep->is_in)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200809 dmacount |= BIT(DMA_DIRECTION);
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200810 if ((!ep->is_in && (dmacount % ep->ep.maxpacket) != 0) ||
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +0200811 !(ep->dev->quirks & PLX_2280))
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200812 dmacount |= BIT(END_OF_CHAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 req->valid = valid;
815 if (valid)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200816 dmacount |= BIT(VALID_BIT);
Ricardo Ribalda Delgado90664192014-11-28 14:50:46 +0100817 dmacount |= BIT(DMA_DONE_INTERRUPT_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 /* td->dmadesc = previously set by caller */
820 td->dmaaddr = cpu_to_le32 (req->req.dma);
821
822 /* 2280 may be polling VALID_BIT through ep->dma->dmadesc */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200823 wmb();
Harvey Harrisonda2bbdc2008-10-29 14:25:51 -0700824 td->dmacount = cpu_to_le32(dmacount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
827static const u32 dmactl_default =
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200828 BIT(DMA_SCATTER_GATHER_DONE_INTERRUPT) |
829 BIT(DMA_CLEAR_COUNT_ENABLE) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 /* erratum 0116 workaround part 1 (use POLLING) */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200831 (POLL_100_USEC << DESCRIPTOR_POLLING_RATE) |
832 BIT(DMA_VALID_BIT_POLLING_ENABLE) |
833 BIT(DMA_VALID_BIT_ENABLE) |
834 BIT(DMA_SCATTER_GATHER_ENABLE) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 /* erratum 0116 workaround part 2 (no AUTOSTART) */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200836 BIT(DMA_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200838static inline void spin_stop_dma(struct net2280_dma_regs __iomem *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200840 handshake(&dma->dmactl, BIT(DMA_ENABLE), 0, 50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200843static inline void stop_dma(struct net2280_dma_regs __iomem *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200845 writel(readl(&dma->dmactl) & ~BIT(DMA_ENABLE), &dma->dmactl);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200846 spin_stop_dma(dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200849static void start_queue(struct net2280_ep *ep, u32 dmactl, u32 td_dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
851 struct net2280_dma_regs __iomem *dma = ep->dma;
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200852 unsigned int tmp = BIT(VALID_BIT) | (ep->is_in << DMA_DIRECTION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +0200854 if (!(ep->dev->quirks & PLX_2280))
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200855 tmp |= BIT(END_OF_CHAIN);
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +0100856
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200857 writel(tmp, &dma->dmacount);
858 writel(readl(&dma->dmastat), &dma->dmastat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200860 writel(td_dma, &dma->dmadesc);
Tim Harvey5185c9132016-05-23 06:58:41 -0700861 if (ep->dev->quirks & PLX_PCIE)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200862 dmactl |= BIT(DMA_REQUEST_OUTSTANDING);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200863 writel(dmactl, &dma->dmactl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 /* erratum 0116 workaround part 3: pci arbiter away from net2280 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200866 (void) readl(&ep->dev->pci->pcimstctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200868 writel(BIT(DMA_START), &dma->dmastat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869}
870
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200871static void start_dma(struct net2280_ep *ep, struct net2280_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872{
873 u32 tmp;
874 struct net2280_dma_regs __iomem *dma = ep->dma;
875
876 /* FIXME can't use DMA for ZLPs */
877
878 /* on this path we "know" there's no dma active (yet) */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200879 WARN_ON(readl(&dma->dmactl) & BIT(DMA_ENABLE));
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200880 writel(0, &ep->dma->dmactl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 /* previous OUT packet might have been short */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200883 if (!ep->is_in && (readl(&ep->regs->ep_stat) &
884 BIT(NAK_OUT_PACKETS))) {
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200885 writel(BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 &ep->regs->ep_stat);
887
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200888 tmp = readl(&ep->regs->ep_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (tmp) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200890 writel(readl(&dma->dmastat), &dma->dmastat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 /* transfer all/some fifo data */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200893 writel(req->req.dma, &dma->dmaaddr);
894 tmp = min(tmp, req->req.length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
896 /* dma irq, faking scatterlist status */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200897 req->td->dmacount = cpu_to_le32(req->req.length - tmp);
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +0200898 writel(BIT(DMA_DONE_INTERRUPT_ENABLE) | tmp,
899 &dma->dmacount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 req->td->dmadesc = 0;
901 req->valid = 1;
902
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200903 writel(BIT(DMA_ENABLE), &dma->dmactl);
904 writel(BIT(DMA_START), &dma->dmastat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return;
906 }
Guido Kiener346eab02019-03-19 19:12:03 +0100907 stop_out_naking(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
909
910 tmp = dmactl_default;
911
912 /* force packet boundaries between dma requests, but prevent the
913 * controller from automagically writing a last "short" packet
914 * (zero length) unless the driver explicitly said to do that.
915 */
916 if (ep->is_in) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200917 if (likely((req->req.length % ep->ep.maxpacket) ||
918 req->req.zero)){
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +0200919 tmp |= BIT(DMA_FIFO_VALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 ep->in_fifo_validate = 1;
921 } else
922 ep->in_fifo_validate = 0;
923 }
924
925 /* init req->td, pointing to the current dummy */
926 req->td->dmadesc = cpu_to_le32 (ep->td_dma);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200927 fill_dma_desc(ep, req, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Ricardo Ribalda Delgado90664192014-11-28 14:50:46 +0100929 req->td->dmacount |= cpu_to_le32(BIT(END_OF_CHAIN));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200931 start_queue(ep, tmp, req->td_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934static inline void
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200935queue_dma(struct net2280_ep *ep, struct net2280_request *req, int valid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
937 struct net2280_dma *end;
938 dma_addr_t tmp;
939
940 /* swap new dummy for old, link; fill and maybe activate */
941 end = ep->dummy;
942 ep->dummy = req->td;
943 req->td = end;
944
945 tmp = ep->td_dma;
946 ep->td_dma = req->td_dma;
947 req->td_dma = tmp;
948
949 end->dmadesc = cpu_to_le32 (ep->td_dma);
950
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200951 fill_dma_desc(ep, req, valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
954static void
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200955done(struct net2280_ep *ep, struct net2280_request *req, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 struct net2280 *dev;
958 unsigned stopped = ep->stopped;
959
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200960 list_del_init(&req->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 if (req->req.status == -EINPROGRESS)
963 req->req.status = status;
964 else
965 status = req->req.status;
966
967 dev = ep->dev;
Felipe Balbiae4d7932011-12-19 12:09:56 +0200968 if (ep->dma)
969 usb_gadget_unmap_request(&dev->gadget, &req->req, ep->is_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 if (status && status != -ESHUTDOWN)
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +0200972 ep_vdbg(dev, "complete %s req %p stat %d len %u/%u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 ep->ep.name, &req->req, status,
974 req->req.actual, req->req.length);
975
976 /* don't modify queue heads during completion callback */
977 ep->stopped = 1;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200978 spin_unlock(&dev->lock);
Michal Sojka304f7e52014-09-24 22:43:19 +0200979 usb_gadget_giveback_request(&ep->ep, &req->req);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200980 spin_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 ep->stopped = stopped;
982}
983
984/*-------------------------------------------------------------------------*/
985
986static int
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +0200987net2280_queue(struct usb_ep *_ep, struct usb_request *_req, gfp_t gfp_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 struct net2280_request *req;
990 struct net2280_ep *ep;
991 struct net2280 *dev;
992 unsigned long flags;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100993 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 /* we always require a cpu-view buffer, so that we can
996 * always use pio (as fallback or whatever).
997 */
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +0100998 ep = container_of(_ep, struct net2280_ep, ep);
999 if (!_ep || (!ep->desc && ep->num != 0)) {
1000 pr_err("%s: Invalid ep=%p or ep->desc\n", __func__, _ep);
1001 return -EINVAL;
1002 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001003 req = container_of(_req, struct net2280_request, req);
1004 if (!_req || !_req->complete || !_req->buf ||
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001005 !list_empty(&req->queue)) {
1006 ret = -EINVAL;
1007 goto print_err;
1008 }
1009 if (_req->length > (~0 & DMA_BYTE_COUNT_MASK)) {
1010 ret = -EDOM;
1011 goto print_err;
1012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 dev = ep->dev;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001014 if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN) {
1015 ret = -ESHUTDOWN;
1016 goto print_err;
1017 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 /* FIXME implement PIO fallback for ZLPs with DMA */
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001020 if (ep->dma && _req->length == 0) {
1021 ret = -EOPNOTSUPP;
1022 goto print_err;
1023 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 /* set up dma mapping in case the caller didn't */
Felipe Balbiae4d7932011-12-19 12:09:56 +02001026 if (ep->dma) {
Felipe Balbiae4d7932011-12-19 12:09:56 +02001027 ret = usb_gadget_map_request(&dev->gadget, _req,
1028 ep->is_in);
1029 if (ret)
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001030 goto print_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02001033 ep_vdbg(dev, "%s queue req %p, len %d buf %p\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 _ep->name, _req, _req->length, _req->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001036 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 _req->status = -EINPROGRESS;
1039 _req->actual = 0;
1040
1041 /* kickstart this i/o queue? */
Ricardo Ribalda Delgado485f44d2014-11-28 14:50:56 +01001042 if (list_empty(&ep->queue) && !ep->stopped &&
Tim Harvey5185c9132016-05-23 06:58:41 -07001043 !((dev->quirks & PLX_PCIE) && ep->dma &&
Ricardo Ribalda Delgado485f44d2014-11-28 14:50:56 +01001044 (readl(&ep->regs->ep_rsp) & BIT(CLEAR_ENDPOINT_HALT)))) {
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 /* use DMA if the endpoint supports it, else pio */
Ricardo Ribalda Delgado485f44d2014-11-28 14:50:56 +01001047 if (ep->dma)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001048 start_dma(ep, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 else {
1050 /* maybe there's no control data, just status ack */
1051 if (ep->num == 0 && _req->length == 0) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001052 allow_status(ep);
1053 done(ep, req, 0);
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02001054 ep_vdbg(dev, "%s status ack\n", ep->ep.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 goto done;
1056 }
1057
1058 /* PIO ... stuff the fifo, or unblock it. */
1059 if (ep->is_in)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001060 write_fifo(ep, _req);
1061 else if (list_empty(&ep->queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 u32 s;
1063
1064 /* OUT FIFO might have packet(s) buffered */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001065 s = readl(&ep->regs->ep_stat);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001066 if ((s & BIT(FIFO_EMPTY)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 /* note: _req->short_not_ok is
1068 * ignored here since PIO _always_
1069 * stops queue advance here, and
1070 * _req->status doesn't change for
1071 * short reads (only _req->actual)
1072 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001073 if (read_fifo(ep, req) &&
1074 ep->num == 0) {
1075 done(ep, req, 0);
1076 allow_status(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 /* don't queue it */
1078 req = NULL;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001079 } else if (read_fifo(ep, req) &&
1080 ep->num != 0) {
1081 done(ep, req, 0);
1082 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 } else
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001084 s = readl(&ep->regs->ep_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086
1087 /* don't NAK, let the fifo fill */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001088 if (req && (s & BIT(NAK_OUT_PACKETS)))
1089 writel(BIT(CLEAR_NAK_OUT_PACKETS),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 &ep->regs->ep_rsp);
1091 }
1092 }
1093
1094 } else if (ep->dma) {
1095 int valid = 1;
1096
1097 if (ep->is_in) {
1098 int expect;
1099
1100 /* preventing magic zlps is per-engine state, not
1101 * per-transfer; irq logic must recover hiccups.
1102 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001103 expect = likely(req->req.zero ||
1104 (req->req.length % ep->ep.maxpacket));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 if (expect != ep->in_fifo_validate)
1106 valid = 0;
1107 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001108 queue_dma(ep, req, valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 } /* else the irq handler advances the queue. */
1111
Alan Stern1f26e282006-11-16 10:16:00 -05001112 ep->responded = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (req)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001114 list_add_tail(&req->queue, &ep->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115done:
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001116 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 /* pci writes may still be posted */
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001119 return ret;
1120
1121print_err:
1122 dev_err(&ep->dev->pdev->dev, "%s: error=%d\n", __func__, ret);
1123 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
1126static inline void
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001127dma_done(struct net2280_ep *ep, struct net2280_request *req, u32 dmacount,
1128 int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
1130 req->req.actual = req->req.length - (DMA_BYTE_COUNT_MASK & dmacount);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001131 done(ep, req, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
Jussi Kivilinna1de2ebf2016-08-12 17:29:34 +03001134static int scan_dma_completions(struct net2280_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Jussi Kivilinna1de2ebf2016-08-12 17:29:34 +03001136 int num_completed = 0;
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 /* only look at descriptors that were "naturally" retired,
1139 * so fifo and list head state won't matter
1140 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001141 while (!list_empty(&ep->queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 struct net2280_request *req;
Raz Manoref5e2fa2017-02-09 09:41:08 +02001143 u32 req_dma_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001145 req = list_entry(ep->queue.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 struct net2280_request, queue);
1147 if (!req->valid)
1148 break;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001149 rmb();
Raz Manoref5e2fa2017-02-09 09:41:08 +02001150 req_dma_count = le32_to_cpup(&req->td->dmacount);
1151 if ((req_dma_count & BIT(VALID_BIT)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 break;
1153
1154 /* SHORT_PACKET_TRANSFERRED_INTERRUPT handles "usb-short"
1155 * cases where DMA must be aborted; this code handles
1156 * all non-abort DMA completions.
1157 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001158 if (unlikely(req->td->dmadesc == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 /* paranoia */
Raz Manoref5e2fa2017-02-09 09:41:08 +02001160 u32 const ep_dmacount = readl(&ep->dma->dmacount);
1161
1162 if (ep_dmacount & DMA_BYTE_COUNT_MASK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 break;
1164 /* single transfer mode */
Raz Manoref5e2fa2017-02-09 09:41:08 +02001165 dma_done(ep, req, req_dma_count, 0);
Jussi Kivilinna1de2ebf2016-08-12 17:29:34 +03001166 num_completed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 break;
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02001168 } else if (!ep->is_in &&
Ricardo Ribalda Delgado43780aa2014-11-28 14:51:00 +01001169 (req->req.length % ep->ep.maxpacket) &&
Tim Harvey5185c9132016-05-23 06:58:41 -07001170 !(ep->dev->quirks & PLX_PCIE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Raz Manoref5e2fa2017-02-09 09:41:08 +02001172 u32 const ep_stat = readl(&ep->regs->ep_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 /* AVOID TROUBLE HERE by not issuing short reads from
1174 * your gadget driver. That helps avoids errata 0121,
1175 * 0122, and 0124; not all cases trigger the warning.
1176 */
Raz Manoref5e2fa2017-02-09 09:41:08 +02001177 if ((ep_stat & BIT(NAK_OUT_PACKETS)) == 0) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02001178 ep_warn(ep->dev, "%s lost packet sync!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 ep->ep.name);
1180 req->req.status = -EOVERFLOW;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001181 } else {
Raz Manoref5e2fa2017-02-09 09:41:08 +02001182 u32 const ep_avail = readl(&ep->regs->ep_avail);
1183 if (ep_avail) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001184 /* fifo gets flushed later */
1185 ep->out_overflow = 1;
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02001186 ep_dbg(ep->dev,
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001187 "%s dma, discard %d len %d\n",
Raz Manoref5e2fa2017-02-09 09:41:08 +02001188 ep->ep.name, ep_avail,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 req->req.length);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001190 req->req.status = -EOVERFLOW;
1191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
1193 }
Raz Manoref5e2fa2017-02-09 09:41:08 +02001194 dma_done(ep, req, req_dma_count, 0);
Jussi Kivilinna1de2ebf2016-08-12 17:29:34 +03001195 num_completed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
Jussi Kivilinna1de2ebf2016-08-12 17:29:34 +03001197
1198 return num_completed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001201static void restart_dma(struct net2280_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
1203 struct net2280_request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 if (ep->stopped)
1206 return;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001207 req = list_entry(ep->queue.next, struct net2280_request, queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Ricardo Ribalda Delgado90664192014-11-28 14:50:46 +01001209 start_dma(ep, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
Ricardo Ribalda Delgadoe721c452014-11-28 14:50:55 +01001212static void abort_dma(struct net2280_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 /* abort the current transfer */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001215 if (likely(!list_empty(&ep->queue))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 /* FIXME work around errata 0121, 0122, 0124 */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001217 writel(BIT(DMA_ABORT), &ep->dma->dmastat);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001218 spin_stop_dma(ep->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 } else
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001220 stop_dma(ep->dma);
1221 scan_dma_completions(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
1224/* dequeue ALL requests */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001225static void nuke(struct net2280_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226{
1227 struct net2280_request *req;
1228
1229 /* called with spinlock held */
1230 ep->stopped = 1;
1231 if (ep->dma)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001232 abort_dma(ep);
1233 while (!list_empty(&ep->queue)) {
1234 req = list_entry(ep->queue.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 struct net2280_request,
1236 queue);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001237 done(ep, req, -ESHUTDOWN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239}
1240
1241/* dequeue JUST ONE request */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001242static int net2280_dequeue(struct usb_ep *_ep, struct usb_request *_req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
1244 struct net2280_ep *ep;
1245 struct net2280_request *req;
1246 unsigned long flags;
1247 u32 dmactl;
1248 int stopped;
1249
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001250 ep = container_of(_ep, struct net2280_ep, ep);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001251 if (!_ep || (!ep->desc && ep->num != 0) || !_req) {
1252 pr_err("%s: Invalid ep=%p or ep->desc or req=%p\n",
1253 __func__, _ep, _req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 return -EINVAL;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001257 spin_lock_irqsave(&ep->dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 stopped = ep->stopped;
1259
1260 /* quiesce dma while we patch the queue */
1261 dmactl = 0;
1262 ep->stopped = 1;
1263 if (ep->dma) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001264 dmactl = readl(&ep->dma->dmactl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 /* WARNING erratum 0127 may kick in ... */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001266 stop_dma(ep->dma);
1267 scan_dma_completions(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269
1270 /* make sure it's still queued on this endpoint */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001271 list_for_each_entry(req, &ep->queue, queue) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (&req->req == _req)
1273 break;
1274 }
1275 if (&req->req != _req) {
Guido Kieneredaebfe2019-03-18 09:18:33 +01001276 ep->stopped = stopped;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001277 spin_unlock_irqrestore(&ep->dev->lock, flags);
Guido Kieneredaebfe2019-03-18 09:18:33 +01001278 ep_dbg(ep->dev, "%s: Request mismatch\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return -EINVAL;
1280 }
1281
1282 /* queue head may be partially complete. */
1283 if (ep->queue.next == &req->queue) {
1284 if (ep->dma) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02001285 ep_dbg(ep->dev, "unlink (%s) dma\n", _ep->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 _req->status = -ECONNRESET;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001287 abort_dma(ep);
1288 if (likely(ep->queue.next == &req->queue)) {
1289 /* NOTE: misreports single-transfer mode*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 req->td->dmacount = 0; /* invalidate */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001291 dma_done(ep, req,
1292 readl(&ep->dma->dmacount),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 -ECONNRESET);
1294 }
1295 } else {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02001296 ep_dbg(ep->dev, "unlink (%s) pio\n", _ep->name);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001297 done(ep, req, -ECONNRESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299 req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
1301
1302 if (req)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001303 done(ep, req, -ECONNRESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 ep->stopped = stopped;
1305
1306 if (ep->dma) {
1307 /* turn off dma on inactive queues */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001308 if (list_empty(&ep->queue))
1309 stop_dma(ep->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 else if (!ep->stopped) {
1311 /* resume current request, or start new one */
1312 if (req)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001313 writel(dmactl, &ep->dma->dmactl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 else
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001315 start_dma(ep, list_entry(ep->queue.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 struct net2280_request, queue));
1317 }
1318 }
1319
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001320 spin_unlock_irqrestore(&ep->dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 return 0;
1322}
1323
1324/*-------------------------------------------------------------------------*/
1325
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001326static int net2280_fifo_status(struct usb_ep *_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
1328static int
Alan Stern80661342008-08-14 15:49:11 -04001329net2280_set_halt_and_wedge(struct usb_ep *_ep, int value, int wedged)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330{
1331 struct net2280_ep *ep;
1332 unsigned long flags;
1333 int retval = 0;
1334
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001335 ep = container_of(_ep, struct net2280_ep, ep);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001336 if (!_ep || (!ep->desc && ep->num != 0)) {
1337 pr_err("%s: Invalid ep=%p or ep->desc\n", __func__, _ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return -EINVAL;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001339 }
1340 if (!ep->dev->driver || ep->dev->gadget.speed == USB_SPEED_UNKNOWN) {
1341 retval = -ESHUTDOWN;
1342 goto print_err;
1343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 if (ep->desc /* not ep0 */ && (ep->desc->bmAttributes & 0x03)
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001345 == USB_ENDPOINT_XFER_ISOC) {
1346 retval = -EINVAL;
1347 goto print_err;
1348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001350 spin_lock_irqsave(&ep->dev->lock, flags);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001351 if (!list_empty(&ep->queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 retval = -EAGAIN;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001353 goto print_unlock;
1354 } else if (ep->is_in && value && net2280_fifo_status(_ep) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 retval = -EAGAIN;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001356 goto print_unlock;
1357 } else {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02001358 ep_vdbg(ep->dev, "%s %s %s\n", _ep->name,
Alan Stern80661342008-08-14 15:49:11 -04001359 value ? "set" : "clear",
1360 wedged ? "wedge" : "halt");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 /* set/clear, then synch memory views with the device */
1362 if (value) {
1363 if (ep->num == 0)
1364 ep->dev->protocol_stall = 1;
1365 else
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001366 set_halt(ep);
Alan Stern80661342008-08-14 15:49:11 -04001367 if (wedged)
1368 ep->wedged = 1;
1369 } else {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001370 clear_halt(ep);
Tim Harvey5185c9132016-05-23 06:58:41 -07001371 if (ep->dev->quirks & PLX_PCIE &&
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001372 !list_empty(&ep->queue) && ep->td_dma)
1373 restart_dma(ep);
Alan Stern80661342008-08-14 15:49:11 -04001374 ep->wedged = 0;
1375 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001376 (void) readl(&ep->regs->ep_rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001378 spin_unlock_irqrestore(&ep->dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 return retval;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001381
1382print_unlock:
1383 spin_unlock_irqrestore(&ep->dev->lock, flags);
1384print_err:
1385 dev_err(&ep->dev->pdev->dev, "%s: error=%d\n", __func__, retval);
1386 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387}
1388
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001389static int net2280_set_halt(struct usb_ep *_ep, int value)
Alan Stern80661342008-08-14 15:49:11 -04001390{
1391 return net2280_set_halt_and_wedge(_ep, value, 0);
1392}
1393
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001394static int net2280_set_wedge(struct usb_ep *_ep)
Alan Stern80661342008-08-14 15:49:11 -04001395{
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001396 if (!_ep || _ep->name == ep0name) {
1397 pr_err("%s: Invalid ep=%p or ep0\n", __func__, _ep);
Alan Stern80661342008-08-14 15:49:11 -04001398 return -EINVAL;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001399 }
Alan Stern80661342008-08-14 15:49:11 -04001400 return net2280_set_halt_and_wedge(_ep, 1, 1);
1401}
1402
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001403static int net2280_fifo_status(struct usb_ep *_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
1405 struct net2280_ep *ep;
1406 u32 avail;
1407
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001408 ep = container_of(_ep, struct net2280_ep, ep);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001409 if (!_ep || (!ep->desc && ep->num != 0)) {
1410 pr_err("%s: Invalid ep=%p or ep->desc\n", __func__, _ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 return -ENODEV;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001412 }
1413 if (!ep->dev->driver || ep->dev->gadget.speed == USB_SPEED_UNKNOWN) {
1414 dev_err(&ep->dev->pdev->dev,
1415 "%s: Invalid driver=%p or speed=%d\n",
1416 __func__, ep->dev->driver, ep->dev->gadget.speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 return -ESHUTDOWN;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001420 avail = readl(&ep->regs->ep_avail) & (BIT(12) - 1);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001421 if (avail > ep->fifo_size) {
1422 dev_err(&ep->dev->pdev->dev, "%s: Fifo overflow\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 return -EOVERFLOW;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 if (ep->is_in)
1426 avail = ep->fifo_size - avail;
1427 return avail;
1428}
1429
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001430static void net2280_fifo_flush(struct usb_ep *_ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
1432 struct net2280_ep *ep;
1433
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001434 ep = container_of(_ep, struct net2280_ep, ep);
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001435 if (!_ep || (!ep->desc && ep->num != 0)) {
1436 pr_err("%s: Invalid ep=%p or ep->desc\n", __func__, _ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 return;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001438 }
1439 if (!ep->dev->driver || ep->dev->gadget.speed == USB_SPEED_UNKNOWN) {
1440 dev_err(&ep->dev->pdev->dev,
1441 "%s: Invalid driver=%p or speed=%d\n",
1442 __func__, ep->dev->driver, ep->dev->gadget.speed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 return;
Mian Yousaf Kaukab9ceafcc2015-02-02 10:55:25 +01001444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001446 writel(BIT(FIFO_FLUSH), &ep->regs->ep_stat);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001447 (void) readl(&ep->regs->ep_rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448}
1449
David Brownell901b3d72006-09-02 03:13:45 -07001450static const struct usb_ep_ops net2280_ep_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 .enable = net2280_enable,
1452 .disable = net2280_disable,
1453
1454 .alloc_request = net2280_alloc_request,
1455 .free_request = net2280_free_request,
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 .queue = net2280_queue,
1458 .dequeue = net2280_dequeue,
1459
1460 .set_halt = net2280_set_halt,
Alan Stern80661342008-08-14 15:49:11 -04001461 .set_wedge = net2280_set_wedge,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 .fifo_status = net2280_fifo_status,
1463 .fifo_flush = net2280_fifo_flush,
1464};
1465
1466/*-------------------------------------------------------------------------*/
1467
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001468static int net2280_get_frame(struct usb_gadget *_gadget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
1470 struct net2280 *dev;
1471 unsigned long flags;
1472 u16 retval;
1473
1474 if (!_gadget)
1475 return -ENODEV;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001476 dev = container_of(_gadget, struct net2280, gadget);
1477 spin_lock_irqsave(&dev->lock, flags);
1478 retval = get_idx_reg(dev->regs, REG_FRAME) & 0x03ff;
1479 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return retval;
1481}
1482
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001483static int net2280_wakeup(struct usb_gadget *_gadget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
1485 struct net2280 *dev;
1486 u32 tmp;
1487 unsigned long flags;
1488
1489 if (!_gadget)
1490 return 0;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001491 dev = container_of(_gadget, struct net2280, gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001493 spin_lock_irqsave(&dev->lock, flags);
1494 tmp = readl(&dev->usb->usbctl);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001495 if (tmp & BIT(DEVICE_REMOTE_WAKEUP_ENABLE))
1496 writel(BIT(GENERATE_RESUME), &dev->usb->usbstat);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001497 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 /* pci writes may still be posted */
1500 return 0;
1501}
1502
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001503static int net2280_set_selfpowered(struct usb_gadget *_gadget, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504{
1505 struct net2280 *dev;
1506 u32 tmp;
1507 unsigned long flags;
1508
1509 if (!_gadget)
1510 return 0;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001511 dev = container_of(_gadget, struct net2280, gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001513 spin_lock_irqsave(&dev->lock, flags);
1514 tmp = readl(&dev->usb->usbctl);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001515 if (value) {
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001516 tmp |= BIT(SELF_POWERED_STATUS);
Peter Chenc8678d92015-01-28 16:32:35 +08001517 _gadget->is_selfpowered = 1;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001518 } else {
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001519 tmp &= ~BIT(SELF_POWERED_STATUS);
Peter Chenc8678d92015-01-28 16:32:35 +08001520 _gadget->is_selfpowered = 0;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001521 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001522 writel(tmp, &dev->usb->usbctl);
1523 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
1525 return 0;
1526}
1527
1528static int net2280_pullup(struct usb_gadget *_gadget, int is_on)
1529{
1530 struct net2280 *dev;
1531 u32 tmp;
1532 unsigned long flags;
1533
1534 if (!_gadget)
1535 return -ENODEV;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001536 dev = container_of(_gadget, struct net2280, gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001538 spin_lock_irqsave(&dev->lock, flags);
1539 tmp = readl(&dev->usb->usbctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 dev->softconnect = (is_on != 0);
Mian Yousaf Kaukab11bece52015-05-16 22:33:39 +02001541 if (is_on) {
1542 ep0_start(dev);
1543 writel(tmp | BIT(USB_DETECT_ENABLE), &dev->usb->usbctl);
1544 } else {
1545 writel(tmp & ~BIT(USB_DETECT_ENABLE), &dev->usb->usbctl);
Alan Sterndec3c232018-08-08 11:20:39 -04001546 stop_activity(dev, NULL);
Mian Yousaf Kaukab11bece52015-05-16 22:33:39 +02001547 }
1548
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001549 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Alan Sterndec3c232018-08-08 11:20:39 -04001551 if (!is_on && dev->driver)
1552 dev->driver->disconnect(&dev->gadget);
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 return 0;
1555}
1556
Robert Baldyga3e8b2312015-08-06 14:11:13 +02001557static struct usb_ep *net2280_match_ep(struct usb_gadget *_gadget,
1558 struct usb_endpoint_descriptor *desc,
1559 struct usb_ss_ep_comp_descriptor *ep_comp)
1560{
1561 char name[8];
1562 struct usb_ep *ep;
1563
1564 if (usb_endpoint_type(desc) == USB_ENDPOINT_XFER_INT) {
1565 /* ep-e, ep-f are PIO with only 64 byte fifos */
1566 ep = gadget_find_ep_by_name(_gadget, "ep-e");
1567 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1568 return ep;
1569 ep = gadget_find_ep_by_name(_gadget, "ep-f");
1570 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1571 return ep;
1572 }
1573
Jussi Kivilinna17f6ed62016-08-12 17:29:35 +03001574 /* USB3380: Only first four endpoints have DMA channels. Allocate
1575 * slower interrupt endpoints from PIO hw endpoints, to allow bulk/isoc
1576 * endpoints use DMA hw endpoints.
1577 */
1578 if (usb_endpoint_type(desc) == USB_ENDPOINT_XFER_INT &&
1579 usb_endpoint_dir_in(desc)) {
1580 ep = gadget_find_ep_by_name(_gadget, "ep2in");
1581 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1582 return ep;
1583 ep = gadget_find_ep_by_name(_gadget, "ep4in");
1584 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1585 return ep;
1586 } else if (usb_endpoint_type(desc) == USB_ENDPOINT_XFER_INT &&
1587 !usb_endpoint_dir_in(desc)) {
1588 ep = gadget_find_ep_by_name(_gadget, "ep1out");
1589 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1590 return ep;
1591 ep = gadget_find_ep_by_name(_gadget, "ep3out");
1592 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1593 return ep;
1594 } else if (usb_endpoint_type(desc) != USB_ENDPOINT_XFER_BULK &&
1595 usb_endpoint_dir_in(desc)) {
1596 ep = gadget_find_ep_by_name(_gadget, "ep1in");
1597 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1598 return ep;
1599 ep = gadget_find_ep_by_name(_gadget, "ep3in");
1600 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1601 return ep;
1602 } else if (usb_endpoint_type(desc) != USB_ENDPOINT_XFER_BULK &&
1603 !usb_endpoint_dir_in(desc)) {
1604 ep = gadget_find_ep_by_name(_gadget, "ep2out");
1605 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1606 return ep;
1607 ep = gadget_find_ep_by_name(_gadget, "ep4out");
1608 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1609 return ep;
1610 }
1611
Robert Baldyga3e8b2312015-08-06 14:11:13 +02001612 /* USB3380: use same address for usb and hardware endpoints */
1613 snprintf(name, sizeof(name), "ep%d%s", usb_endpoint_num(desc),
1614 usb_endpoint_dir_in(desc) ? "in" : "out");
1615 ep = gadget_find_ep_by_name(_gadget, name);
1616 if (ep && usb_gadget_ep_match_desc(_gadget, ep, desc, ep_comp))
1617 return ep;
1618
1619 return NULL;
1620}
1621
Felipe Balbi4cf5e002011-10-10 10:37:17 +03001622static int net2280_start(struct usb_gadget *_gadget,
1623 struct usb_gadget_driver *driver);
Felipe Balbi22835b82014-10-17 12:05:12 -05001624static int net2280_stop(struct usb_gadget *_gadget);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03001625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626static const struct usb_gadget_ops net2280_ops = {
1627 .get_frame = net2280_get_frame,
1628 .wakeup = net2280_wakeup,
1629 .set_selfpowered = net2280_set_selfpowered,
1630 .pullup = net2280_pullup,
Felipe Balbi4cf5e002011-10-10 10:37:17 +03001631 .udc_start = net2280_start,
1632 .udc_stop = net2280_stop,
Robert Baldyga3e8b2312015-08-06 14:11:13 +02001633 .match_ep = net2280_match_ep,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634};
1635
1636/*-------------------------------------------------------------------------*/
1637
Ricardo Ribalda Delgadob99b4062014-07-04 11:27:03 +02001638#ifdef CONFIG_USB_GADGET_DEBUG_FILES
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
1640/* FIXME move these into procfs, and use seq_file.
1641 * Sysfs _still_ doesn't behave for arbitrarily sized files,
1642 * and also doesn't help products using this with 2.4 kernels.
1643 */
1644
1645/* "function" sysfs attribute */
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07001646static ssize_t function_show(struct device *_dev, struct device_attribute *attr,
1647 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001649 struct net2280 *dev = dev_get_drvdata(_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001651 if (!dev->driver || !dev->driver->function ||
1652 strlen(dev->driver->function) > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 return 0;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001654 return scnprintf(buf, PAGE_SIZE, "%s\n", dev->driver->function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07001656static DEVICE_ATTR_RO(function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07001658static ssize_t registers_show(struct device *_dev,
1659 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
1661 struct net2280 *dev;
1662 char *next;
1663 unsigned size, t;
1664 unsigned long flags;
1665 int i;
1666 u32 t1, t2;
Andrew Morton30e69592005-06-26 17:18:46 -07001667 const char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001669 dev = dev_get_drvdata(_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 next = buf;
1671 size = PAGE_SIZE;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001672 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 if (dev->driver)
1675 s = dev->driver->driver.name;
1676 else
1677 s = "(none)";
1678
1679 /* Main Control Registers */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001680 t = scnprintf(next, size, "%s version " DRIVER_VERSION
Ricardo Ribalda Delgadod588ff52014-11-28 14:50:49 +01001681 ", chiprev %04x\n\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 "devinit %03x fifoctl %08x gadget '%s'\n"
1683 "pci irqenb0 %02x irqenb1 %08x "
1684 "irqstat0 %04x irqstat1 %08x\n",
1685 driver_name, dev->chiprev,
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001686 readl(&dev->regs->devinit),
1687 readl(&dev->regs->fifoctl),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 s,
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001689 readl(&dev->regs->pciirqenb0),
1690 readl(&dev->regs->pciirqenb1),
1691 readl(&dev->regs->irqstat0),
1692 readl(&dev->regs->irqstat1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 size -= t;
1694 next += t;
1695
1696 /* USB Control Registers */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001697 t1 = readl(&dev->usb->usbctl);
1698 t2 = readl(&dev->usb->usbstat);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001699 if (t1 & BIT(VBUS_PIN)) {
1700 if (t2 & BIT(HIGH_SPEED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 s = "high speed";
1702 else if (dev->gadget.speed == USB_SPEED_UNKNOWN)
1703 s = "powered";
1704 else
1705 s = "full speed";
1706 /* full speed bit (6) not working?? */
1707 } else
1708 s = "not attached";
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001709 t = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 "stdrsp %08x usbctl %08x usbstat %08x "
1711 "addr 0x%02x (%s)\n",
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001712 readl(&dev->usb->stdrsp), t1, t2,
1713 readl(&dev->usb->ouraddr), s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 size -= t;
1715 next += t;
1716
1717 /* PCI Master Control Registers */
1718
1719 /* DMA Control Registers */
1720
1721 /* Configurable EP Control Registers */
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001722 for (i = 0; i < dev->n_ep; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 struct net2280_ep *ep;
1724
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001725 ep = &dev->ep[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (i && !ep->desc)
1727 continue;
1728
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001729 t1 = readl(&ep->cfg->ep_cfg);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001730 t2 = readl(&ep->regs->ep_rsp) & 0xff;
1731 t = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 "\n%s\tcfg %05x rsp (%02x) %s%s%s%s%s%s%s%s"
1733 "irqenb %02x\n",
1734 ep->ep.name, t1, t2,
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001735 (t2 & BIT(CLEAR_NAK_OUT_PACKETS))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 ? "NAK " : "",
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001737 (t2 & BIT(CLEAR_EP_HIDE_STATUS_PHASE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 ? "hide " : "",
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001739 (t2 & BIT(CLEAR_EP_FORCE_CRC_ERROR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 ? "CRC " : "",
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001741 (t2 & BIT(CLEAR_INTERRUPT_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 ? "interrupt " : "",
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001743 (t2 & BIT(CLEAR_CONTROL_STATUS_PHASE_HANDSHAKE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 ? "status " : "",
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001745 (t2 & BIT(CLEAR_NAK_OUT_PACKETS_MODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 ? "NAKmode " : "",
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001747 (t2 & BIT(CLEAR_ENDPOINT_TOGGLE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 ? "DATA1 " : "DATA0 ",
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001749 (t2 & BIT(CLEAR_ENDPOINT_HALT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 ? "HALT " : "",
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001751 readl(&ep->regs->ep_irqenb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 size -= t;
1753 next += t;
1754
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001755 t = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 "\tstat %08x avail %04x "
1757 "(ep%d%s-%s)%s\n",
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001758 readl(&ep->regs->ep_stat),
1759 readl(&ep->regs->ep_avail),
1760 t1 & 0x0f, DIR_STRING(t1),
1761 type_string(t1 >> 8),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 ep->stopped ? "*" : "");
1763 size -= t;
1764 next += t;
1765
1766 if (!ep->dma)
1767 continue;
1768
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001769 t = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 " dma\tctl %08x stat %08x count %08x\n"
1771 "\taddr %08x desc %08x\n",
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001772 readl(&ep->dma->dmactl),
1773 readl(&ep->dma->dmastat),
1774 readl(&ep->dma->dmacount),
1775 readl(&ep->dma->dmaaddr),
1776 readl(&ep->dma->dmadesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 size -= t;
1778 next += t;
1779
1780 }
1781
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001782 /* Indexed Registers (none yet) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 /* Statistics */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001785 t = scnprintf(next, size, "\nirqs: ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 size -= t;
1787 next += t;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001788 for (i = 0; i < dev->n_ep; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 struct net2280_ep *ep;
1790
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001791 ep = &dev->ep[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 if (i && !ep->irqs)
1793 continue;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001794 t = scnprintf(next, size, " %s/%lu", ep->ep.name, ep->irqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 size -= t;
1796 next += t;
1797
1798 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001799 t = scnprintf(next, size, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 size -= t;
1801 next += t;
1802
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001803 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
1805 return PAGE_SIZE - size;
1806}
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07001807static DEVICE_ATTR_RO(registers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07001809static ssize_t queues_show(struct device *_dev, struct device_attribute *attr,
1810 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
1812 struct net2280 *dev;
1813 char *next;
1814 unsigned size;
1815 unsigned long flags;
1816 int i;
1817
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001818 dev = dev_get_drvdata(_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 next = buf;
1820 size = PAGE_SIZE;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001821 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001823 for (i = 0; i < dev->n_ep; i++) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001824 struct net2280_ep *ep = &dev->ep[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 struct net2280_request *req;
1826 int t;
1827
1828 if (i != 0) {
1829 const struct usb_endpoint_descriptor *d;
1830
1831 d = ep->desc;
1832 if (!d)
1833 continue;
1834 t = d->bEndpointAddress;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001835 t = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 "\n%s (ep%d%s-%s) max %04x %s fifo %d\n",
1837 ep->ep.name, t & USB_ENDPOINT_NUMBER_MASK,
1838 (t & USB_DIR_IN) ? "in" : "out",
Ricardo Ribalda Delgadoa27f37a2014-05-20 18:30:08 +02001839 type_string(d->bmAttributes),
Felipe Balbi090bdb52016-09-28 14:17:38 +03001840 usb_endpoint_maxp(d),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 ep->dma ? "dma" : "pio", ep->fifo_size
1842 );
1843 } else /* ep0 should only have one transfer queued */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001844 t = scnprintf(next, size, "ep0 max 64 pio %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 ep->is_in ? "in" : "out");
1846 if (t <= 0 || t > size)
1847 goto done;
1848 size -= t;
1849 next += t;
1850
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001851 if (list_empty(&ep->queue)) {
1852 t = scnprintf(next, size, "\t(nothing queued)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 if (t <= 0 || t > size)
1854 goto done;
1855 size -= t;
1856 next += t;
1857 continue;
1858 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001859 list_for_each_entry(req, &ep->queue, queue) {
1860 if (ep->dma && req->td_dma == readl(&ep->dma->dmadesc))
1861 t = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 "\treq %p len %d/%d "
1863 "buf %p (dmacount %08x)\n",
1864 &req->req, req->req.actual,
1865 req->req.length, req->req.buf,
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001866 readl(&ep->dma->dmacount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 else
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001868 t = scnprintf(next, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 "\treq %p len %d/%d buf %p\n",
1870 &req->req, req->req.actual,
1871 req->req.length, req->req.buf);
1872 if (t <= 0 || t > size)
1873 goto done;
1874 size -= t;
1875 next += t;
1876
1877 if (ep->dma) {
1878 struct net2280_dma *td;
1879
1880 td = req->td;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001881 t = scnprintf(next, size, "\t td %08x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 " count %08x buf %08x desc %08x\n",
1883 (u32) req->td_dma,
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001884 le32_to_cpu(td->dmacount),
1885 le32_to_cpu(td->dmaaddr),
1886 le32_to_cpu(td->dmadesc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (t <= 0 || t > size)
1888 goto done;
1889 size -= t;
1890 next += t;
1891 }
1892 }
1893 }
1894
1895done:
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001896 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 return PAGE_SIZE - size;
1898}
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07001899static DEVICE_ATTR_RO(queues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901
1902#else
1903
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001904#define device_create_file(a, b) (0)
1905#define device_remove_file(a, b) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
1907#endif
1908
1909/*-------------------------------------------------------------------------*/
1910
1911/* another driver-specific mode might be a request type doing dma
1912 * to/from another device fifo instead of to/from memory.
1913 */
1914
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001915static void set_fifo_mode(struct net2280 *dev, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
1917 /* keeping high bits preserves BAR2 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001918 writel((0xffff << PCI_BASE2_RANGE) | mode, &dev->regs->fifoctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
1920 /* always ep-{a,b,e,f} ... maybe not ep-c or ep-d */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001921 INIT_LIST_HEAD(&dev->gadget.ep_list);
1922 list_add_tail(&dev->ep[1].ep.ep_list, &dev->gadget.ep_list);
1923 list_add_tail(&dev->ep[2].ep.ep_list, &dev->gadget.ep_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 switch (mode) {
1925 case 0:
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001926 list_add_tail(&dev->ep[3].ep.ep_list, &dev->gadget.ep_list);
1927 list_add_tail(&dev->ep[4].ep.ep_list, &dev->gadget.ep_list);
1928 dev->ep[1].fifo_size = dev->ep[2].fifo_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 break;
1930 case 1:
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001931 dev->ep[1].fifo_size = dev->ep[2].fifo_size = 2048;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 break;
1933 case 2:
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001934 list_add_tail(&dev->ep[3].ep.ep_list, &dev->gadget.ep_list);
1935 dev->ep[1].fifo_size = 2048;
1936 dev->ep[2].fifo_size = 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 break;
1938 }
1939 /* fifo sizes for ep0, ep-c, ep-d, ep-e, and ep-f never change */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02001940 list_add_tail(&dev->ep[5].ep.ep_list, &dev->gadget.ep_list);
1941 list_add_tail(&dev->ep[6].ep.ep_list, &dev->gadget.ep_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942}
1943
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001944static void defect7374_disable_data_eps(struct net2280 *dev)
1945{
1946 /*
1947 * For Defect 7374, disable data EPs (and more):
1948 * - This phase undoes the earlier phase of the Defect 7374 workaround,
1949 * returing ep regs back to normal.
1950 */
1951 struct net2280_ep *ep;
1952 int i;
1953 unsigned char ep_sel;
1954 u32 tmp_reg;
1955
1956 for (i = 1; i < 5; i++) {
1957 ep = &dev->ep[i];
Mian Yousaf Kaukab81e9d142015-10-19 16:25:15 +02001958 writel(i, &ep->cfg->ep_cfg);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001959 }
1960
1961 /* CSROUT, CSRIN, PCIOUT, PCIIN, STATIN, RCIN */
1962 for (i = 0; i < 6; i++)
1963 writel(0, &dev->dep[i].dep_cfg);
1964
1965 for (ep_sel = 0; ep_sel <= 21; ep_sel++) {
1966 /* Select an endpoint for subsequent operations: */
1967 tmp_reg = readl(&dev->plregs->pl_ep_ctrl);
1968 writel(((tmp_reg & ~0x1f) | ep_sel), &dev->plregs->pl_ep_ctrl);
1969
1970 if (ep_sel < 2 || (ep_sel > 9 && ep_sel < 14) ||
1971 ep_sel == 18 || ep_sel == 20)
1972 continue;
1973
1974 /* Change settings on some selected endpoints */
1975 tmp_reg = readl(&dev->plregs->pl_ep_cfg_4);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001976 tmp_reg &= ~BIT(NON_CTRL_IN_TOLERATE_BAD_DIR);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001977 writel(tmp_reg, &dev->plregs->pl_ep_cfg_4);
1978 tmp_reg = readl(&dev->plregs->pl_ep_ctrl);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02001979 tmp_reg |= BIT(EP_INITIALIZED);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001980 writel(tmp_reg, &dev->plregs->pl_ep_ctrl);
1981 }
1982}
1983
1984static void defect7374_enable_data_eps_zero(struct net2280 *dev)
1985{
1986 u32 tmp = 0, tmp_reg;
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01001987 u32 scratch;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001988 int i;
1989 unsigned char ep_sel;
1990
1991 scratch = get_idx_reg(dev->regs, SCRATCH);
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01001992
1993 WARN_ON((scratch & (0xf << DEFECT7374_FSM_FIELD))
1994 == DEFECT7374_FSM_SS_CONTROL_READ);
1995
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02001996 scratch &= ~(0xf << DEFECT7374_FSM_FIELD);
1997
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01001998 ep_warn(dev, "Operate Defect 7374 workaround soft this time");
1999 ep_warn(dev, "It will operate on cold-reboot and SS connect");
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002000
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002001 /*GPEPs:*/
2002 tmp = ((0 << ENDPOINT_NUMBER) | BIT(ENDPOINT_DIRECTION) |
2003 (2 << OUT_ENDPOINT_TYPE) | (2 << IN_ENDPOINT_TYPE) |
2004 ((dev->enhanced_mode) ?
Mian Yousaf Kaukab25d40ee2015-05-16 22:33:30 +02002005 BIT(OUT_ENDPOINT_ENABLE) | BIT(IN_ENDPOINT_ENABLE) :
2006 BIT(ENDPOINT_ENABLE)));
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002007
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002008 for (i = 1; i < 5; i++)
2009 writel(tmp, &dev->ep[i].cfg->ep_cfg);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002010
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002011 /* CSRIN, PCIIN, STATIN, RCIN*/
2012 tmp = ((0 << ENDPOINT_NUMBER) | BIT(ENDPOINT_ENABLE));
2013 writel(tmp, &dev->dep[1].dep_cfg);
2014 writel(tmp, &dev->dep[3].dep_cfg);
2015 writel(tmp, &dev->dep[4].dep_cfg);
2016 writel(tmp, &dev->dep[5].dep_cfg);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002017
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002018 /*Implemented for development and debug.
2019 * Can be refined/tuned later.*/
2020 for (ep_sel = 0; ep_sel <= 21; ep_sel++) {
2021 /* Select an endpoint for subsequent operations: */
2022 tmp_reg = readl(&dev->plregs->pl_ep_ctrl);
2023 writel(((tmp_reg & ~0x1f) | ep_sel),
2024 &dev->plregs->pl_ep_ctrl);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002025
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002026 if (ep_sel == 1) {
2027 tmp =
2028 (readl(&dev->plregs->pl_ep_ctrl) |
2029 BIT(CLEAR_ACK_ERROR_CODE) | 0);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002030 writel(tmp, &dev->plregs->pl_ep_ctrl);
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002031 continue;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002032 }
2033
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002034 if (ep_sel == 0 || (ep_sel > 9 && ep_sel < 14) ||
2035 ep_sel == 18 || ep_sel == 20)
2036 continue;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002037
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002038 tmp = (readl(&dev->plregs->pl_ep_cfg_4) |
2039 BIT(NON_CTRL_IN_TOLERATE_BAD_DIR) | 0);
2040 writel(tmp, &dev->plregs->pl_ep_cfg_4);
2041
2042 tmp = readl(&dev->plregs->pl_ep_ctrl) &
2043 ~BIT(EP_INITIALIZED);
2044 writel(tmp, &dev->plregs->pl_ep_ctrl);
2045
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002046 }
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002047
2048 /* Set FSM to focus on the first Control Read:
2049 * - Tip: Connection speed is known upon the first
2050 * setup request.*/
2051 scratch |= DEFECT7374_FSM_WAITING_FOR_CONTROL_READ;
2052 set_idx_reg(dev->regs, SCRATCH, scratch);
2053
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002054}
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056/* keeping it simple:
2057 * - one bus driver, initted first;
2058 * - one function driver, initted second
2059 *
2060 * most of the work to support multiple net2280 controllers would
2061 * be to associate this gadget driver (yes?) with all of them, or
2062 * perhaps to bind specific drivers to specific devices.
2063 */
2064
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002065static void usb_reset_228x(struct net2280 *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
2067 u32 tmp;
2068
2069 dev->gadget.speed = USB_SPEED_UNKNOWN;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002070 (void) readl(&dev->usb->usbctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002072 net2280_led_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074 /* disable automatic responses, and irqs */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002075 writel(0, &dev->usb->stdrsp);
2076 writel(0, &dev->regs->pciirqenb0);
2077 writel(0, &dev->regs->pciirqenb1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
2079 /* clear old dma and irq state */
2080 for (tmp = 0; tmp < 4; tmp++) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002081 struct net2280_ep *ep = &dev->ep[tmp + 1];
Greg Kroah-Hartman357d596e2014-05-28 11:35:41 -07002082 if (ep->dma)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002083 abort_dma(ep);
Greg Kroah-Hartman357d596e2014-05-28 11:35:41 -07002084 }
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002085
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002086 writel(~0, &dev->regs->irqstat0),
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002087 writel(~(u32)BIT(SUSPEND_REQUEST_INTERRUPT), &dev->regs->irqstat1),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
2089 /* reset, and enable pci */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002090 tmp = readl(&dev->regs->devinit) |
2091 BIT(PCI_ENABLE) |
2092 BIT(FIFO_SOFT_RESET) |
2093 BIT(USB_SOFT_RESET) |
2094 BIT(M8051_RESET);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002095 writel(tmp, &dev->regs->devinit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
2097 /* standard fifo and endpoint allocations */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002098 set_fifo_mode(dev, (fifo_mode <= 2) ? fifo_mode : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002101static void usb_reset_338x(struct net2280 *dev)
2102{
2103 u32 tmp;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002104
2105 dev->gadget.speed = USB_SPEED_UNKNOWN;
2106 (void)readl(&dev->usb->usbctl);
2107
2108 net2280_led_init(dev);
2109
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002110 if (dev->bug7734_patched) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002111 /* disable automatic responses, and irqs */
2112 writel(0, &dev->usb->stdrsp);
2113 writel(0, &dev->regs->pciirqenb0);
2114 writel(0, &dev->regs->pciirqenb1);
2115 }
2116
2117 /* clear old dma and irq state */
2118 for (tmp = 0; tmp < 4; tmp++) {
2119 struct net2280_ep *ep = &dev->ep[tmp + 1];
Mian Yousaf Kaukab3fc0a7c2015-05-16 22:33:32 +02002120 struct net2280_dma_regs __iomem *dma;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002121
Mian Yousaf Kaukab3fc0a7c2015-05-16 22:33:32 +02002122 if (ep->dma) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002123 abort_dma(ep);
Mian Yousaf Kaukab3fc0a7c2015-05-16 22:33:32 +02002124 } else {
2125 dma = &dev->dma[tmp];
2126 writel(BIT(DMA_ABORT), &dma->dmastat);
2127 writel(0, &dma->dmactl);
2128 }
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002129 }
2130
2131 writel(~0, &dev->regs->irqstat0), writel(~0, &dev->regs->irqstat1);
2132
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002133 if (dev->bug7734_patched) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002134 /* reset, and enable pci */
2135 tmp = readl(&dev->regs->devinit) |
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002136 BIT(PCI_ENABLE) |
2137 BIT(FIFO_SOFT_RESET) |
2138 BIT(USB_SOFT_RESET) |
2139 BIT(M8051_RESET);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002140
2141 writel(tmp, &dev->regs->devinit);
2142 }
2143
2144 /* always ep-{1,2,3,4} ... maybe not ep-3 or ep-4 */
2145 INIT_LIST_HEAD(&dev->gadget.ep_list);
2146
2147 for (tmp = 1; tmp < dev->n_ep; tmp++)
2148 list_add_tail(&dev->ep[tmp].ep.ep_list, &dev->gadget.ep_list);
2149
2150}
2151
2152static void usb_reset(struct net2280 *dev)
2153{
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02002154 if (dev->quirks & PLX_LEGACY)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002155 return usb_reset_228x(dev);
2156 return usb_reset_338x(dev);
2157}
2158
2159static void usb_reinit_228x(struct net2280 *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
2161 u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
2163 /* basic endpoint init */
2164 for (tmp = 0; tmp < 7; tmp++) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002165 struct net2280_ep *ep = &dev->ep[tmp];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Robert Baldygac23c3c32015-07-31 16:00:36 +02002167 ep->ep.name = ep_info_dft[tmp].name;
2168 ep->ep.caps = ep_info_dft[tmp].caps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 ep->dev = dev;
2170 ep->num = tmp;
2171
2172 if (tmp > 0 && tmp <= 4) {
2173 ep->fifo_size = 1024;
Ricardo Ribalda Delgadod588ff52014-11-28 14:50:49 +01002174 ep->dma = &dev->dma[tmp - 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 } else
2176 ep->fifo_size = 64;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002177 ep->regs = &dev->epregs[tmp];
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002178 ep->cfg = &dev->epregs[tmp];
2179 ep_reset_228x(dev->regs, ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002181 usb_ep_set_maxpacket_limit(&dev->ep[0].ep, 64);
2182 usb_ep_set_maxpacket_limit(&dev->ep[5].ep, 64);
2183 usb_ep_set_maxpacket_limit(&dev->ep[6].ep, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002185 dev->gadget.ep0 = &dev->ep[0].ep;
2186 dev->ep[0].stopped = 0;
2187 INIT_LIST_HEAD(&dev->gadget.ep0->ep_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189 /* we want to prevent lowlevel/insecure access from the USB host,
2190 * but erratum 0119 means this enable bit is ignored
2191 */
2192 for (tmp = 0; tmp < 5; tmp++)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002193 writel(EP_DONTUSE, &dev->dep[tmp].dep_cfg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194}
2195
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002196static void usb_reinit_338x(struct net2280 *dev)
2197{
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002198 int i;
2199 u32 tmp, val;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002200 static const u32 ne[9] = { 0, 1, 2, 3, 4, 1, 2, 3, 4 };
2201 static const u32 ep_reg_addr[9] = { 0x00, 0xC0, 0x00, 0xC0, 0x00,
2202 0x00, 0xC0, 0x00, 0xC0 };
2203
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002204 /* basic endpoint init */
2205 for (i = 0; i < dev->n_ep; i++) {
2206 struct net2280_ep *ep = &dev->ep[i];
2207
Robert Baldygac23c3c32015-07-31 16:00:36 +02002208 ep->ep.name = dev->enhanced_mode ? ep_info_adv[i].name :
2209 ep_info_dft[i].name;
2210 ep->ep.caps = dev->enhanced_mode ? ep_info_adv[i].caps :
2211 ep_info_dft[i].caps;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002212 ep->dev = dev;
2213 ep->num = i;
2214
Ricardo Ribalda Delgadod588ff52014-11-28 14:50:49 +01002215 if (i > 0 && i <= 4)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002216 ep->dma = &dev->dma[i - 1];
2217
2218 if (dev->enhanced_mode) {
2219 ep->cfg = &dev->epregs[ne[i]];
Mian Yousaf Kaukabc65c4f02015-05-16 22:33:36 +02002220 /*
2221 * Set USB endpoint number, hardware allows same number
2222 * in both directions.
2223 */
2224 if (i > 0 && i < 5)
2225 writel(ne[i], &ep->cfg->ep_cfg);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002226 ep->regs = (struct net2280_ep_regs __iomem *)
Felipe Balbic43e97b2014-07-16 12:20:25 -05002227 (((void __iomem *)&dev->epregs[ne[i]]) +
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002228 ep_reg_addr[i]);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002229 } else {
2230 ep->cfg = &dev->epregs[i];
2231 ep->regs = &dev->epregs[i];
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002232 }
2233
2234 ep->fifo_size = (i != 0) ? 2048 : 512;
2235
2236 ep_reset_338x(dev->regs, ep);
2237 }
2238 usb_ep_set_maxpacket_limit(&dev->ep[0].ep, 512);
2239
2240 dev->gadget.ep0 = &dev->ep[0].ep;
2241 dev->ep[0].stopped = 0;
2242
2243 /* Link layer set up */
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002244 if (dev->bug7734_patched) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002245 tmp = readl(&dev->usb_ext->usbctl2) &
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002246 ~(BIT(U1_ENABLE) | BIT(U2_ENABLE) | BIT(LTM_ENABLE));
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002247 writel(tmp, &dev->usb_ext->usbctl2);
2248 }
2249
2250 /* Hardware Defect and Workaround */
2251 val = readl(&dev->ll_lfps_regs->ll_lfps_5);
2252 val &= ~(0xf << TIMER_LFPS_6US);
2253 val |= 0x5 << TIMER_LFPS_6US;
2254 writel(val, &dev->ll_lfps_regs->ll_lfps_5);
2255
2256 val = readl(&dev->ll_lfps_regs->ll_lfps_6);
2257 val &= ~(0xffff << TIMER_LFPS_80US);
2258 val |= 0x0100 << TIMER_LFPS_80US;
2259 writel(val, &dev->ll_lfps_regs->ll_lfps_6);
2260
2261 /*
2262 * AA_AB Errata. Issue 4. Workaround for SuperSpeed USB
2263 * Hot Reset Exit Handshake may Fail in Specific Case using
2264 * Default Register Settings. Workaround for Enumeration test.
2265 */
2266 val = readl(&dev->ll_tsn_regs->ll_tsn_counters_2);
2267 val &= ~(0x1f << HOT_TX_NORESET_TS2);
2268 val |= 0x10 << HOT_TX_NORESET_TS2;
2269 writel(val, &dev->ll_tsn_regs->ll_tsn_counters_2);
2270
2271 val = readl(&dev->ll_tsn_regs->ll_tsn_counters_3);
2272 val &= ~(0x1f << HOT_RX_RESET_TS2);
2273 val |= 0x3 << HOT_RX_RESET_TS2;
2274 writel(val, &dev->ll_tsn_regs->ll_tsn_counters_3);
2275
2276 /*
2277 * Set Recovery Idle to Recover bit:
2278 * - On SS connections, setting Recovery Idle to Recover Fmw improves
2279 * link robustness with various hosts and hubs.
2280 * - It is safe to set for all connection speeds; all chip revisions.
2281 * - R-M-W to leave other bits undisturbed.
2282 * - Reference PLX TT-7372
2283 */
2284 val = readl(&dev->ll_chicken_reg->ll_tsn_chicken_bit);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002285 val |= BIT(RECOVERY_IDLE_TO_RECOVER_FMW);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002286 writel(val, &dev->ll_chicken_reg->ll_tsn_chicken_bit);
2287
2288 INIT_LIST_HEAD(&dev->gadget.ep0->ep_list);
2289
2290 /* disable dedicated endpoints */
2291 writel(0x0D, &dev->dep[0].dep_cfg);
2292 writel(0x0D, &dev->dep[1].dep_cfg);
2293 writel(0x0E, &dev->dep[2].dep_cfg);
2294 writel(0x0E, &dev->dep[3].dep_cfg);
2295 writel(0x0F, &dev->dep[4].dep_cfg);
2296 writel(0x0C, &dev->dep[5].dep_cfg);
2297}
2298
2299static void usb_reinit(struct net2280 *dev)
2300{
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02002301 if (dev->quirks & PLX_LEGACY)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002302 return usb_reinit_228x(dev);
2303 return usb_reinit_338x(dev);
2304}
2305
2306static void ep0_start_228x(struct net2280 *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002308 writel(BIT(CLEAR_EP_HIDE_STATUS_PHASE) |
2309 BIT(CLEAR_NAK_OUT_PACKETS) |
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02002310 BIT(CLEAR_CONTROL_STATUS_PHASE_HANDSHAKE),
2311 &dev->epregs[0].ep_rsp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
2313 /*
2314 * hardware optionally handles a bunch of standard requests
2315 * that the API hides from drivers anyway. have it do so.
2316 * endpoint status/features are handled in software, to
2317 * help pass tests for some dubious behavior.
2318 */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002319 writel(BIT(SET_TEST_MODE) |
2320 BIT(SET_ADDRESS) |
2321 BIT(DEVICE_SET_CLEAR_DEVICE_REMOTE_WAKEUP) |
2322 BIT(GET_DEVICE_STATUS) |
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02002323 BIT(GET_INTERFACE_STATUS),
2324 &dev->usb->stdrsp);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002325 writel(BIT(USB_ROOT_PORT_WAKEUP_ENABLE) |
2326 BIT(SELF_POWERED_USB_DEVICE) |
2327 BIT(REMOTE_WAKEUP_SUPPORT) |
2328 (dev->softconnect << USB_DETECT_ENABLE) |
2329 BIT(SELF_POWERED_STATUS),
2330 &dev->usb->usbctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
2332 /* enable irqs so we can see ep0 and general operation */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002333 writel(BIT(SETUP_PACKET_INTERRUPT_ENABLE) |
2334 BIT(ENDPOINT_0_INTERRUPT_ENABLE),
2335 &dev->regs->pciirqenb0);
2336 writel(BIT(PCI_INTERRUPT_ENABLE) |
2337 BIT(PCI_MASTER_ABORT_RECEIVED_INTERRUPT_ENABLE) |
2338 BIT(PCI_TARGET_ABORT_RECEIVED_INTERRUPT_ENABLE) |
2339 BIT(PCI_RETRY_ABORT_INTERRUPT_ENABLE) |
2340 BIT(VBUS_INTERRUPT_ENABLE) |
2341 BIT(ROOT_PORT_RESET_INTERRUPT_ENABLE) |
2342 BIT(SUSPEND_REQUEST_CHANGE_INTERRUPT_ENABLE),
2343 &dev->regs->pciirqenb1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
2345 /* don't leave any writes posted */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002346 (void) readl(&dev->usb->usbctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347}
2348
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002349static void ep0_start_338x(struct net2280 *dev)
2350{
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002351
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002352 if (dev->bug7734_patched)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002353 writel(BIT(CLEAR_NAK_OUT_PACKETS_MODE) |
2354 BIT(SET_EP_HIDE_STATUS_PHASE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002355 &dev->epregs[0].ep_rsp);
2356
2357 /*
2358 * hardware optionally handles a bunch of standard requests
2359 * that the API hides from drivers anyway. have it do so.
2360 * endpoint status/features are handled in software, to
2361 * help pass tests for some dubious behavior.
2362 */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002363 writel(BIT(SET_ISOCHRONOUS_DELAY) |
2364 BIT(SET_SEL) |
2365 BIT(SET_TEST_MODE) |
2366 BIT(SET_ADDRESS) |
2367 BIT(GET_INTERFACE_STATUS) |
2368 BIT(GET_DEVICE_STATUS),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002369 &dev->usb->stdrsp);
2370 dev->wakeup_enable = 1;
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002371 writel(BIT(USB_ROOT_PORT_WAKEUP_ENABLE) |
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002372 (dev->softconnect << USB_DETECT_ENABLE) |
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002373 BIT(DEVICE_REMOTE_WAKEUP_ENABLE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002374 &dev->usb->usbctl);
2375
2376 /* enable irqs so we can see ep0 and general operation */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002377 writel(BIT(SETUP_PACKET_INTERRUPT_ENABLE) |
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02002378 BIT(ENDPOINT_0_INTERRUPT_ENABLE),
2379 &dev->regs->pciirqenb0);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002380 writel(BIT(PCI_INTERRUPT_ENABLE) |
2381 BIT(ROOT_PORT_RESET_INTERRUPT_ENABLE) |
2382 BIT(SUSPEND_REQUEST_CHANGE_INTERRUPT_ENABLE) |
2383 BIT(VBUS_INTERRUPT_ENABLE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002384 &dev->regs->pciirqenb1);
2385
2386 /* don't leave any writes posted */
2387 (void)readl(&dev->usb->usbctl);
2388}
2389
2390static void ep0_start(struct net2280 *dev)
2391{
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02002392 if (dev->quirks & PLX_LEGACY)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002393 return ep0_start_228x(dev);
2394 return ep0_start_338x(dev);
2395}
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397/* when a driver is successfully registered, it will receive
2398 * control requests including set_configuration(), which enables
2399 * non-control requests. then usb traffic follows until a
2400 * disconnect is reported. then a host may connect again, or
2401 * the driver might get unbound.
2402 */
Felipe Balbi4cf5e002011-10-10 10:37:17 +03002403static int net2280_start(struct usb_gadget *_gadget,
2404 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405{
Felipe Balbi4cf5e002011-10-10 10:37:17 +03002406 struct net2280 *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 int retval;
2408 unsigned i;
2409
2410 /* insist on high speed support from the driver, since
2411 * (dev->usb->xcvrdiag & FORCE_FULL_SPEED_MODE)
2412 * "must not be used in normal operation"
2413 */
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02002414 if (!driver || driver->max_speed < USB_SPEED_HIGH ||
2415 !driver->setup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 return -EINVAL;
Felipe Balbi4cf5e002011-10-10 10:37:17 +03002417
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002418 dev = container_of(_gadget, struct net2280, gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002420 for (i = 0; i < dev->n_ep; i++)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002421 dev->ep[i].irqs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 /* hook up the driver ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 driver->driver.bus = NULL;
2425 dev->driver = driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002427 retval = device_create_file(&dev->pdev->dev, &dev_attr_function);
2428 if (retval)
2429 goto err_unbind;
2430 retval = device_create_file(&dev->pdev->dev, &dev_attr_queues);
2431 if (retval)
2432 goto err_func;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
Ricardo Ribalda Delgado7a74c482014-11-28 14:50:47 +01002434 /* enable host detection and ep0; and we're ready
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 * for set_configuration as well as eventual disconnect.
2436 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002437 net2280_led_active(dev, 1);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002438
Tim Harvey5185c9132016-05-23 06:58:41 -07002439 if ((dev->quirks & PLX_PCIE) && !dev->bug7734_patched)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002440 defect7374_enable_data_eps_zero(dev);
2441
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002442 ep0_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 /* pci writes may still be posted */
2445 return 0;
Jeff Garzikb3899da2006-10-11 21:50:24 -04002446
2447err_func:
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002448 device_remove_file(&dev->pdev->dev, &dev_attr_function);
Jeff Garzikb3899da2006-10-11 21:50:24 -04002449err_unbind:
Jeff Garzikb3899da2006-10-11 21:50:24 -04002450 dev->driver = NULL;
2451 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002454static void stop_activity(struct net2280 *dev, struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455{
2456 int i;
2457
2458 /* don't disconnect if it's not connected */
2459 if (dev->gadget.speed == USB_SPEED_UNKNOWN)
2460 driver = NULL;
2461
2462 /* stop hardware; prevent new request submissions;
2463 * and kill any outstanding requests.
2464 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002465 usb_reset(dev);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002466 for (i = 0; i < dev->n_ep; i++)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002467 nuke(&dev->ep[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Felipe Balbi699412d2013-03-18 10:14:47 +02002469 /* report disconnect; the driver is already quiesced */
Alan Sterndec3c232018-08-08 11:20:39 -04002470 if (driver) {
2471 spin_unlock(&dev->lock);
Felipe Balbi699412d2013-03-18 10:14:47 +02002472 driver->disconnect(&dev->gadget);
Alan Sterndec3c232018-08-08 11:20:39 -04002473 spin_lock(&dev->lock);
2474 }
Felipe Balbi699412d2013-03-18 10:14:47 +02002475
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002476 usb_reinit(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477}
2478
Felipe Balbi22835b82014-10-17 12:05:12 -05002479static int net2280_stop(struct usb_gadget *_gadget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480{
Felipe Balbi4cf5e002011-10-10 10:37:17 +03002481 struct net2280 *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 unsigned long flags;
2483
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002484 dev = container_of(_gadget, struct net2280, gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002486 spin_lock_irqsave(&dev->lock, flags);
Felipe Balbibfd0ed52014-10-17 11:23:33 -05002487 stop_activity(dev, NULL);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002488 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002490 net2280_led_active(dev, 0);
Alan Stern2f076072013-01-30 16:40:14 -05002491
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002492 device_remove_file(&dev->pdev->dev, &dev_attr_function);
2493 device_remove_file(&dev->pdev->dev, &dev_attr_queues);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Felipe Balbibfd0ed52014-10-17 11:23:33 -05002495 dev->driver = NULL;
Ricardo Ribalda Delgado84237bf2014-05-15 14:28:45 +02002496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 return 0;
2498}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500/*-------------------------------------------------------------------------*/
2501
2502/* handle ep0, ep-e, ep-f with 64 byte packets: packet per irq.
2503 * also works for dma-capable endpoints, in pio mode or just
2504 * to manually advance the queue after short OUT transfers.
2505 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002506static void handle_ep_small(struct net2280_ep *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
2508 struct net2280_request *req;
2509 u32 t;
2510 /* 0 error, 1 mid-data, 2 done */
2511 int mode = 1;
2512
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002513 if (!list_empty(&ep->queue))
2514 req = list_entry(ep->queue.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 struct net2280_request, queue);
2516 else
2517 req = NULL;
2518
2519 /* ack all, and handle what we care about */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002520 t = readl(&ep->regs->ep_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 ep->irqs++;
Ricardo Ribalda Delgadocb442ee2014-11-28 14:51:02 +01002522
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02002523 ep_vdbg(ep->dev, "%s ack ep_stat %08x, req %p\n",
Ricardo Ribalda Delgadofc12c682015-01-13 10:54:58 +01002524 ep->ep.name, t, req ? &req->req : NULL);
Ricardo Ribalda Delgadocb442ee2014-11-28 14:51:02 +01002525
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02002526 if (!ep->is_in || (ep->dev->quirks & PLX_2280))
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002527 writel(t & ~BIT(NAK_OUT_PACKETS), &ep->regs->ep_stat);
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +01002528 else
2529 /* Added for 2282 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002530 writel(t, &ep->regs->ep_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532 /* for ep0, monitor token irqs to catch data stage length errors
2533 * and to synchronize on status.
2534 *
2535 * also, to defer reporting of protocol stalls ... here's where
2536 * data or status first appears, handling stalls here should never
2537 * cause trouble on the host side..
2538 *
2539 * control requests could be slightly faster without token synch for
2540 * status, but status can jam up that way.
2541 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002542 if (unlikely(ep->num == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 if (ep->is_in) {
2544 /* status; stop NAKing */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002545 if (t & BIT(DATA_OUT_PING_TOKEN_INTERRUPT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 if (ep->dev->protocol_stall) {
2547 ep->stopped = 1;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002548 set_halt(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 }
2550 if (!req)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002551 allow_status(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 mode = 2;
2553 /* reply to extra IN data tokens with a zlp */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002554 } else if (t & BIT(DATA_IN_TOKEN_INTERRUPT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 if (ep->dev->protocol_stall) {
2556 ep->stopped = 1;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002557 set_halt(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 mode = 2;
Alan Stern1f26e282006-11-16 10:16:00 -05002559 } else if (ep->responded &&
2560 !req && !ep->stopped)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002561 write_fifo(ep, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 }
2563 } else {
2564 /* status; stop NAKing */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002565 if (t & BIT(DATA_IN_TOKEN_INTERRUPT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 if (ep->dev->protocol_stall) {
2567 ep->stopped = 1;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002568 set_halt(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 }
2570 mode = 2;
2571 /* an extra OUT token is an error */
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02002572 } else if (((t & BIT(DATA_OUT_PING_TOKEN_INTERRUPT)) &&
2573 req &&
2574 req->req.actual == req->req.length) ||
2575 (ep->responded && !req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 ep->dev->protocol_stall = 1;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002577 set_halt(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 ep->stopped = 1;
2579 if (req)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002580 done(ep, req, -EOVERFLOW);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 req = NULL;
2582 }
2583 }
2584 }
2585
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002586 if (unlikely(!req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 return;
2588
2589 /* manual DMA queue advance after short OUT */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002590 if (likely(ep->dma)) {
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002591 if (t & BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT)) {
Jussi Kivilinna1de2ebf2016-08-12 17:29:34 +03002592 struct net2280_request *stuck_req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 int stopped = ep->stopped;
Jussi Kivilinna1de2ebf2016-08-12 17:29:34 +03002594 int num_completed;
2595 int stuck = 0;
2596 u32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
2598 /* TRANSFERRED works around OUT_DONE erratum 0112.
2599 * we expect (N <= maxpacket) bytes; host wrote M.
2600 * iff (M < N) we won't ever see a DMA interrupt.
2601 */
2602 ep->stopped = 1;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002603 for (count = 0; ; t = readl(&ep->regs->ep_stat)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
2605 /* any preceding dma transfers must finish.
2606 * dma handles (M >= N), may empty the queue
2607 */
Jussi Kivilinna1de2ebf2016-08-12 17:29:34 +03002608 num_completed = scan_dma_completions(ep);
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02002609 if (unlikely(list_empty(&ep->queue) ||
2610 ep->out_overflow)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 req = NULL;
2612 break;
2613 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002614 req = list_entry(ep->queue.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 struct net2280_request, queue);
2616
2617 /* here either (M < N), a "real" short rx;
2618 * or (M == N) and the queue didn't empty
2619 */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002620 if (likely(t & BIT(FIFO_EMPTY))) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002621 count = readl(&ep->dma->dmacount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 count &= DMA_BYTE_COUNT_MASK;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002623 if (readl(&ep->dma->dmadesc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 != req->td_dma)
2625 req = NULL;
2626 break;
2627 }
Jussi Kivilinna1de2ebf2016-08-12 17:29:34 +03002628
2629 /* Escape loop if no dma transfers completed
2630 * after few retries.
2631 */
2632 if (num_completed == 0) {
2633 if (stuck_req == req &&
2634 readl(&ep->dma->dmadesc) !=
2635 req->td_dma && stuck++ > 5) {
2636 count = readl(
2637 &ep->dma->dmacount);
2638 count &= DMA_BYTE_COUNT_MASK;
2639 req = NULL;
2640 ep_dbg(ep->dev, "%s escape stuck %d, count %u\n",
2641 ep->ep.name, stuck,
2642 count);
2643 break;
2644 } else if (stuck_req != req) {
2645 stuck_req = req;
2646 stuck = 0;
2647 }
2648 } else {
2649 stuck_req = NULL;
2650 stuck = 0;
2651 }
2652
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 udelay(1);
2654 }
2655
2656 /* stop DMA, leave ep NAKing */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002657 writel(BIT(DMA_ABORT), &ep->dma->dmastat);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002658 spin_stop_dma(ep->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002660 if (likely(req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 req->td->dmacount = 0;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002662 t = readl(&ep->regs->ep_avail);
2663 dma_done(ep, req, count,
David Brownell901b3d72006-09-02 03:13:45 -07002664 (ep->out_overflow || t)
2665 ? -EOVERFLOW : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 }
2667
2668 /* also flush to prevent erratum 0106 trouble */
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02002669 if (unlikely(ep->out_overflow ||
2670 (ep->dev->chiprev == 0x0100 &&
2671 ep->dev->gadget.speed
2672 == USB_SPEED_FULL))) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002673 out_flush(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 ep->out_overflow = 0;
2675 }
2676
2677 /* (re)start dma if needed, stop NAKing */
2678 ep->stopped = stopped;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002679 if (!list_empty(&ep->queue))
2680 restart_dma(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 } else
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02002682 ep_dbg(ep->dev, "%s dma ep_stat %08x ??\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 ep->ep.name, t);
2684 return;
2685
2686 /* data packet(s) received (in the fifo, OUT) */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002687 } else if (t & BIT(DATA_PACKET_RECEIVED_INTERRUPT)) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002688 if (read_fifo(ep, req) && ep->num != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 mode = 2;
2690
2691 /* data packet(s) transmitted (IN) */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002692 } else if (t & BIT(DATA_PACKET_TRANSMITTED_INTERRUPT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 unsigned len;
2694
2695 len = req->req.length - req->req.actual;
2696 if (len > ep->ep.maxpacket)
2697 len = ep->ep.maxpacket;
2698 req->req.actual += len;
2699
2700 /* if we wrote it all, we're usually done */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002701 /* send zlps until the status stage */
2702 if ((req->req.actual == req->req.length) &&
2703 (!req->req.zero || len != ep->ep.maxpacket) && ep->num)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 mode = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
2706 /* there was nothing to do ... */
2707 } else if (mode == 1)
2708 return;
2709
2710 /* done */
2711 if (mode == 2) {
2712 /* stream endpoints often resubmit/unlink in completion */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002713 done(ep, req, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715 /* maybe advance queue to next request */
2716 if (ep->num == 0) {
2717 /* NOTE: net2280 could let gadget driver start the
2718 * status stage later. since not all controllers let
2719 * them control that, the api doesn't (yet) allow it.
2720 */
2721 if (!ep->stopped)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002722 allow_status(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 req = NULL;
2724 } else {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002725 if (!list_empty(&ep->queue) && !ep->stopped)
2726 req = list_entry(ep->queue.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 struct net2280_request, queue);
2728 else
2729 req = NULL;
2730 if (req && !ep->is_in)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002731 stop_out_naking(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 }
2733 }
2734
2735 /* is there a buffer for the next packet?
2736 * for best streaming performance, make sure there is one.
2737 */
2738 if (req && !ep->stopped) {
2739
2740 /* load IN fifo with next packet (may be zlp) */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002741 if (t & BIT(DATA_PACKET_TRANSMITTED_INTERRUPT))
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002742 write_fifo(ep, &req->req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 }
2744}
2745
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002746static struct net2280_ep *get_ep_by_addr(struct net2280 *dev, u16 wIndex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747{
2748 struct net2280_ep *ep;
2749
2750 if ((wIndex & USB_ENDPOINT_NUMBER_MASK) == 0)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02002751 return &dev->ep[0];
2752 list_for_each_entry(ep, &dev->gadget.ep_list, ep.ep_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 u8 bEndpointAddress;
2754
2755 if (!ep->desc)
2756 continue;
2757 bEndpointAddress = ep->desc->bEndpointAddress;
2758 if ((wIndex ^ bEndpointAddress) & USB_DIR_IN)
2759 continue;
2760 if ((wIndex & 0x0f) == (bEndpointAddress & 0x0f))
2761 return ep;
2762 }
2763 return NULL;
2764}
2765
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002766static void defect7374_workaround(struct net2280 *dev, struct usb_ctrlrequest r)
2767{
2768 u32 scratch, fsmvalue;
2769 u32 ack_wait_timeout, state;
2770
2771 /* Workaround for Defect 7374 (U1/U2 erroneously rejected): */
2772 scratch = get_idx_reg(dev->regs, SCRATCH);
2773 fsmvalue = scratch & (0xf << DEFECT7374_FSM_FIELD);
2774 scratch &= ~(0xf << DEFECT7374_FSM_FIELD);
2775
2776 if (!((fsmvalue == DEFECT7374_FSM_WAITING_FOR_CONTROL_READ) &&
2777 (r.bRequestType & USB_DIR_IN)))
2778 return;
2779
2780 /* This is the first Control Read for this connection: */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002781 if (!(readl(&dev->usb->usbstat) & BIT(SUPER_SPEED_MODE))) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002782 /*
2783 * Connection is NOT SS:
2784 * - Connection must be FS or HS.
2785 * - This FSM state should allow workaround software to
2786 * run after the next USB connection.
2787 */
2788 scratch |= DEFECT7374_FSM_NON_SS_CONTROL_READ;
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002789 dev->bug7734_patched = 1;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002790 goto restore_data_eps;
2791 }
2792
2793 /* Connection is SS: */
2794 for (ack_wait_timeout = 0;
2795 ack_wait_timeout < DEFECT_7374_NUMBEROF_MAX_WAIT_LOOPS;
2796 ack_wait_timeout++) {
2797
2798 state = readl(&dev->plregs->pl_ep_status_1)
2799 & (0xff << STATE);
2800 if ((state >= (ACK_GOOD_NORMAL << STATE)) &&
2801 (state <= (ACK_GOOD_MORE_ACKS_TO_COME << STATE))) {
2802 scratch |= DEFECT7374_FSM_SS_CONTROL_READ;
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01002803 dev->bug7734_patched = 1;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002804 break;
2805 }
2806
2807 /*
2808 * We have not yet received host's Data Phase ACK
2809 * - Wait and try again.
2810 */
2811 udelay(DEFECT_7374_PROCESSOR_WAIT_TIME);
2812
2813 continue;
2814 }
2815
2816
2817 if (ack_wait_timeout >= DEFECT_7374_NUMBEROF_MAX_WAIT_LOOPS) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02002818 ep_err(dev, "FAIL: Defect 7374 workaround waited but failed "
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002819 "to detect SS host's data phase ACK.");
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02002820 ep_err(dev, "PL_EP_STATUS_1(23:16):.Expected from 0x11 to 0x16"
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002821 "got 0x%2.2x.\n", state >> STATE);
2822 } else {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02002823 ep_warn(dev, "INFO: Defect 7374 workaround waited about\n"
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002824 "%duSec for Control Read Data Phase ACK\n",
2825 DEFECT_7374_PROCESSOR_WAIT_TIME * ack_wait_timeout);
2826 }
2827
2828restore_data_eps:
2829 /*
2830 * Restore data EPs to their pre-workaround settings (disabled,
2831 * initialized, and other details).
2832 */
2833 defect7374_disable_data_eps(dev);
2834
2835 set_idx_reg(dev->regs, SCRATCH, scratch);
2836
2837 return;
2838}
2839
Ricardo Ribalda Delgadoe0cbb042014-11-28 14:50:54 +01002840static void ep_clear_seqnum(struct net2280_ep *ep)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002841{
2842 struct net2280 *dev = ep->dev;
2843 u32 val;
2844 static const u32 ep_pl[9] = { 0, 3, 4, 7, 8, 2, 5, 6, 9 };
2845
Ricardo Ribalda Delgadoe0cbb042014-11-28 14:50:54 +01002846 val = readl(&dev->plregs->pl_ep_ctrl) & ~0x1f;
2847 val |= ep_pl[ep->num];
2848 writel(val, &dev->plregs->pl_ep_ctrl);
2849 val |= BIT(SEQUENCE_NUMBER_RESET);
2850 writel(val, &dev->plregs->pl_ep_ctrl);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002851
Ricardo Ribalda Delgadoe0cbb042014-11-28 14:50:54 +01002852 return;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002853}
2854
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002855static void handle_stat0_irqs_superspeed(struct net2280 *dev,
2856 struct net2280_ep *ep, struct usb_ctrlrequest r)
2857{
2858 int tmp = 0;
2859
2860#define w_value le16_to_cpu(r.wValue)
2861#define w_index le16_to_cpu(r.wIndex)
2862#define w_length le16_to_cpu(r.wLength)
2863
2864 switch (r.bRequest) {
2865 struct net2280_ep *e;
2866 u16 status;
2867
2868 case USB_REQ_SET_CONFIGURATION:
2869 dev->addressed_state = !w_value;
2870 goto usb3_delegate;
2871
2872 case USB_REQ_GET_STATUS:
2873 switch (r.bRequestType) {
2874 case (USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_DEVICE):
2875 status = dev->wakeup_enable ? 0x02 : 0x00;
Peter Chenc8678d92015-01-28 16:32:35 +08002876 if (dev->gadget.is_selfpowered)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002877 status |= BIT(0);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002878 status |= (dev->u1_enable << 2 | dev->u2_enable << 3 |
2879 dev->ltm_enable << 4);
2880 writel(0, &dev->epregs[0].ep_irqenb);
2881 set_fifo_bytecount(ep, sizeof(status));
2882 writel((__force u32) status, &dev->epregs[0].ep_data);
2883 allow_status_338x(ep);
2884 break;
2885
2886 case (USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_ENDPOINT):
2887 e = get_ep_by_addr(dev, w_index);
2888 if (!e)
2889 goto do_stall3;
2890 status = readl(&e->regs->ep_rsp) &
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002891 BIT(CLEAR_ENDPOINT_HALT);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002892 writel(0, &dev->epregs[0].ep_irqenb);
2893 set_fifo_bytecount(ep, sizeof(status));
2894 writel((__force u32) status, &dev->epregs[0].ep_data);
2895 allow_status_338x(ep);
2896 break;
2897
2898 default:
2899 goto usb3_delegate;
2900 }
2901 break;
2902
2903 case USB_REQ_CLEAR_FEATURE:
2904 switch (r.bRequestType) {
2905 case (USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE):
2906 if (!dev->addressed_state) {
2907 switch (w_value) {
2908 case USB_DEVICE_U1_ENABLE:
2909 dev->u1_enable = 0;
2910 writel(readl(&dev->usb_ext->usbctl2) &
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002911 ~BIT(U1_ENABLE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002912 &dev->usb_ext->usbctl2);
2913 allow_status_338x(ep);
2914 goto next_endpoints3;
2915
2916 case USB_DEVICE_U2_ENABLE:
2917 dev->u2_enable = 0;
2918 writel(readl(&dev->usb_ext->usbctl2) &
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002919 ~BIT(U2_ENABLE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002920 &dev->usb_ext->usbctl2);
2921 allow_status_338x(ep);
2922 goto next_endpoints3;
2923
2924 case USB_DEVICE_LTM_ENABLE:
2925 dev->ltm_enable = 0;
2926 writel(readl(&dev->usb_ext->usbctl2) &
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002927 ~BIT(LTM_ENABLE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002928 &dev->usb_ext->usbctl2);
2929 allow_status_338x(ep);
2930 goto next_endpoints3;
2931
2932 default:
2933 break;
2934 }
2935 }
2936 if (w_value == USB_DEVICE_REMOTE_WAKEUP) {
2937 dev->wakeup_enable = 0;
2938 writel(readl(&dev->usb->usbctl) &
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002939 ~BIT(DEVICE_REMOTE_WAKEUP_ENABLE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002940 &dev->usb->usbctl);
2941 allow_status_338x(ep);
2942 break;
2943 }
2944 goto usb3_delegate;
2945
2946 case (USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_ENDPOINT):
2947 e = get_ep_by_addr(dev, w_index);
2948 if (!e)
2949 goto do_stall3;
2950 if (w_value != USB_ENDPOINT_HALT)
2951 goto do_stall3;
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02002952 ep_vdbg(dev, "%s clear halt\n", e->ep.name);
Ricardo Ribalda Delgadoe0cbb042014-11-28 14:50:54 +01002953 /*
2954 * Workaround for SS SeqNum not cleared via
2955 * Endpoint Halt (Clear) bit. select endpoint
2956 */
2957 ep_clear_seqnum(e);
2958 clear_halt(e);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002959 if (!list_empty(&e->queue) && e->td_dma)
2960 restart_dma(e);
2961 allow_status(ep);
2962 ep->stopped = 1;
2963 break;
2964
2965 default:
2966 goto usb3_delegate;
2967 }
2968 break;
2969 case USB_REQ_SET_FEATURE:
2970 switch (r.bRequestType) {
2971 case (USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE):
2972 if (!dev->addressed_state) {
2973 switch (w_value) {
2974 case USB_DEVICE_U1_ENABLE:
2975 dev->u1_enable = 1;
2976 writel(readl(&dev->usb_ext->usbctl2) |
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002977 BIT(U1_ENABLE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002978 &dev->usb_ext->usbctl2);
2979 allow_status_338x(ep);
2980 goto next_endpoints3;
2981
2982 case USB_DEVICE_U2_ENABLE:
2983 dev->u2_enable = 1;
2984 writel(readl(&dev->usb_ext->usbctl2) |
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002985 BIT(U2_ENABLE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002986 &dev->usb_ext->usbctl2);
2987 allow_status_338x(ep);
2988 goto next_endpoints3;
2989
2990 case USB_DEVICE_LTM_ENABLE:
2991 dev->ltm_enable = 1;
2992 writel(readl(&dev->usb_ext->usbctl2) |
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02002993 BIT(LTM_ENABLE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02002994 &dev->usb_ext->usbctl2);
2995 allow_status_338x(ep);
2996 goto next_endpoints3;
2997 default:
2998 break;
2999 }
3000 }
3001
3002 if (w_value == USB_DEVICE_REMOTE_WAKEUP) {
3003 dev->wakeup_enable = 1;
3004 writel(readl(&dev->usb->usbctl) |
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003005 BIT(DEVICE_REMOTE_WAKEUP_ENABLE),
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003006 &dev->usb->usbctl);
3007 allow_status_338x(ep);
3008 break;
3009 }
3010 goto usb3_delegate;
3011
3012 case (USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_ENDPOINT):
3013 e = get_ep_by_addr(dev, w_index);
3014 if (!e || (w_value != USB_ENDPOINT_HALT))
3015 goto do_stall3;
Ricardo Ribalda Delgadocf8b1cd2014-11-28 14:50:52 +01003016 ep->stopped = 1;
3017 if (ep->num == 0)
3018 ep->dev->protocol_stall = 1;
3019 else {
3020 if (ep->dma)
Ricardo Ribalda Delgadoe721c452014-11-28 14:50:55 +01003021 abort_dma(ep);
Ricardo Ribalda Delgadoe0cbb042014-11-28 14:50:54 +01003022 set_halt(ep);
Ricardo Ribalda Delgadocf8b1cd2014-11-28 14:50:52 +01003023 }
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003024 allow_status_338x(ep);
3025 break;
3026
3027 default:
3028 goto usb3_delegate;
3029 }
3030
3031 break;
3032 default:
3033
3034usb3_delegate:
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003035 ep_vdbg(dev, "setup %02x.%02x v%04x i%04x l%04x ep_cfg %08x\n",
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003036 r.bRequestType, r.bRequest,
3037 w_value, w_index, w_length,
3038 readl(&ep->cfg->ep_cfg));
3039
3040 ep->responded = 0;
3041 spin_unlock(&dev->lock);
3042 tmp = dev->driver->setup(&dev->gadget, &r);
3043 spin_lock(&dev->lock);
3044 }
3045do_stall3:
3046 if (tmp < 0) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003047 ep_vdbg(dev, "req %02x.%02x protocol STALL; stat %d\n",
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003048 r.bRequestType, r.bRequest, tmp);
3049 dev->protocol_stall = 1;
3050 /* TD 9.9 Halt Endpoint test. TD 9.22 Set feature test */
Ricardo Ribalda Delgadoe0cbb042014-11-28 14:50:54 +01003051 set_halt(ep);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003052 }
3053
3054next_endpoints3:
3055
3056#undef w_value
3057#undef w_index
3058#undef w_length
3059
3060 return;
3061}
3062
Mian Yousaf Kaukaba09e23f2015-05-16 22:33:35 +02003063static void usb338x_handle_ep_intr(struct net2280 *dev, u32 stat0)
3064{
3065 u32 index;
3066 u32 bit;
3067
3068 for (index = 0; index < ARRAY_SIZE(ep_bit); index++) {
3069 bit = BIT(ep_bit[index]);
3070
3071 if (!stat0)
3072 break;
3073
3074 if (!(stat0 & bit))
3075 continue;
3076
3077 stat0 &= ~bit;
3078
3079 handle_ep_small(&dev->ep[index]);
3080 }
3081}
3082
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003083static void handle_stat0_irqs(struct net2280 *dev, u32 stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
3085 struct net2280_ep *ep;
3086 u32 num, scratch;
3087
3088 /* most of these don't need individual acks */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003089 stat &= ~BIT(INTA_ASSERTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 if (!stat)
3091 return;
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003092 /* ep_dbg(dev, "irqstat0 %04x\n", stat); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093
3094 /* starting a control request? */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003095 if (unlikely(stat & BIT(SETUP_PACKET_INTERRUPT))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 union {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003097 u32 raw[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 struct usb_ctrlrequest r;
3099 } u;
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +01003100 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 struct net2280_request *req;
3102
3103 if (dev->gadget.speed == USB_SPEED_UNKNOWN) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003104 u32 val = readl(&dev->usb->usbstat);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003105 if (val & BIT(SUPER_SPEED)) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003106 dev->gadget.speed = USB_SPEED_SUPER;
3107 usb_ep_set_maxpacket_limit(&dev->ep[0].ep,
3108 EP0_SS_MAX_PACKET_SIZE);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003109 } else if (val & BIT(HIGH_SPEED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 dev->gadget.speed = USB_SPEED_HIGH;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003111 usb_ep_set_maxpacket_limit(&dev->ep[0].ep,
3112 EP0_HS_MAX_PACKET_SIZE);
3113 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 dev->gadget.speed = USB_SPEED_FULL;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003115 usb_ep_set_maxpacket_limit(&dev->ep[0].ep,
3116 EP0_HS_MAX_PACKET_SIZE);
3117 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003118 net2280_led_speed(dev, dev->gadget.speed);
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003119 ep_dbg(dev, "%s\n",
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003120 usb_speed_string(dev->gadget.speed));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 }
3122
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003123 ep = &dev->ep[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 ep->irqs++;
3125
3126 /* make sure any leftover request state is cleared */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003127 stat &= ~BIT(ENDPOINT_0_INTERRUPT);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003128 while (!list_empty(&ep->queue)) {
3129 req = list_entry(ep->queue.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 struct net2280_request, queue);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003131 done(ep, req, (req->req.actual == req->req.length)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 ? 0 : -EPROTO);
3133 }
3134 ep->stopped = 0;
3135 dev->protocol_stall = 0;
Tim Harvey5185c9132016-05-23 06:58:41 -07003136 if (!(dev->quirks & PLX_PCIE)) {
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02003137 if (ep->dev->quirks & PLX_2280)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003138 tmp = BIT(FIFO_OVERFLOW) |
3139 BIT(FIFO_UNDERFLOW);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003140 else
3141 tmp = 0;
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +01003142
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003143 writel(tmp | BIT(TIMEOUT) |
3144 BIT(USB_STALL_SENT) |
3145 BIT(USB_IN_NAK_SENT) |
3146 BIT(USB_IN_ACK_RCVD) |
3147 BIT(USB_OUT_PING_NAK_SENT) |
3148 BIT(USB_OUT_ACK_SENT) |
3149 BIT(SHORT_PACKET_OUT_DONE_INTERRUPT) |
3150 BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT) |
3151 BIT(DATA_PACKET_RECEIVED_INTERRUPT) |
3152 BIT(DATA_PACKET_TRANSMITTED_INTERRUPT) |
3153 BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02003154 BIT(DATA_IN_TOKEN_INTERRUPT),
3155 &ep->regs->ep_stat);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003156 }
3157 u.raw[0] = readl(&dev->usb->setup0123);
3158 u.raw[1] = readl(&dev->usb->setup4567);
David Brownell901b3d72006-09-02 03:13:45 -07003159
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003160 cpu_to_le32s(&u.raw[0]);
3161 cpu_to_le32s(&u.raw[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162
Tim Harvey5185c9132016-05-23 06:58:41 -07003163 if ((dev->quirks & PLX_PCIE) && !dev->bug7734_patched)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003164 defect7374_workaround(dev, u.r);
3165
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +01003166 tmp = 0;
3167
David Brownell01ee7d72007-05-25 20:40:14 -07003168#define w_value le16_to_cpu(u.r.wValue)
3169#define w_index le16_to_cpu(u.r.wIndex)
3170#define w_length le16_to_cpu(u.r.wLength)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171
3172 /* ack the irq */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003173 writel(BIT(SETUP_PACKET_INTERRUPT), &dev->regs->irqstat0);
3174 stat ^= BIT(SETUP_PACKET_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
3176 /* watch control traffic at the token level, and force
3177 * synchronization before letting the status stage happen.
3178 * FIXME ignore tokens we'll NAK, until driver responds.
3179 * that'll mean a lot less irqs for some drivers.
3180 */
3181 ep->is_in = (u.r.bRequestType & USB_DIR_IN) != 0;
3182 if (ep->is_in) {
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003183 scratch = BIT(DATA_PACKET_TRANSMITTED_INTERRUPT) |
3184 BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
3185 BIT(DATA_IN_TOKEN_INTERRUPT);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003186 stop_out_naking(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 } else
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003188 scratch = BIT(DATA_PACKET_RECEIVED_INTERRUPT) |
3189 BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
3190 BIT(DATA_IN_TOKEN_INTERRUPT);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003191 writel(scratch, &dev->epregs[0].ep_irqenb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
3193 /* we made the hardware handle most lowlevel requests;
3194 * everything else goes uplevel to the gadget code.
3195 */
Alan Stern1f26e282006-11-16 10:16:00 -05003196 ep->responded = 1;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003197
3198 if (dev->gadget.speed == USB_SPEED_SUPER) {
3199 handle_stat0_irqs_superspeed(dev, ep, u.r);
3200 goto next_endpoints;
3201 }
3202
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 switch (u.r.bRequest) {
3204 case USB_REQ_GET_STATUS: {
3205 struct net2280_ep *e;
David Brownell320f3452005-05-07 13:05:18 -07003206 __le32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
3208 /* hw handles device and interface status */
3209 if (u.r.bRequestType != (USB_DIR_IN|USB_RECIP_ENDPOINT))
3210 goto delegate;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003211 e = get_ep_by_addr(dev, w_index);
3212 if (!e || w_length > 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 goto do_stall;
3214
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003215 if (readl(&e->regs->ep_rsp) & BIT(SET_ENDPOINT_HALT))
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003216 status = cpu_to_le32(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 else
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003218 status = cpu_to_le32(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
3220 /* don't bother with a request object! */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003221 writel(0, &dev->epregs[0].ep_irqenb);
3222 set_fifo_bytecount(ep, w_length);
3223 writel((__force u32)status, &dev->epregs[0].ep_data);
3224 allow_status(ep);
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003225 ep_vdbg(dev, "%s stat %02x\n", ep->ep.name, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 goto next_endpoints;
3227 }
3228 break;
3229 case USB_REQ_CLEAR_FEATURE: {
3230 struct net2280_ep *e;
3231
3232 /* hw handles device features */
3233 if (u.r.bRequestType != USB_RECIP_ENDPOINT)
3234 goto delegate;
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02003235 if (w_value != USB_ENDPOINT_HALT || w_length != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 goto do_stall;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003237 e = get_ep_by_addr(dev, w_index);
3238 if (!e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 goto do_stall;
Alan Stern80661342008-08-14 15:49:11 -04003240 if (e->wedged) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003241 ep_vdbg(dev, "%s wedged, halt not cleared\n",
Alan Stern80661342008-08-14 15:49:11 -04003242 ep->ep.name);
3243 } else {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003244 ep_vdbg(dev, "%s clear halt\n", e->ep.name);
Alan Stern80661342008-08-14 15:49:11 -04003245 clear_halt(e);
Tim Harvey5185c9132016-05-23 06:58:41 -07003246 if ((ep->dev->quirks & PLX_PCIE) &&
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003247 !list_empty(&e->queue) && e->td_dma)
3248 restart_dma(e);
Alan Stern80661342008-08-14 15:49:11 -04003249 }
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003250 allow_status(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 goto next_endpoints;
3252 }
3253 break;
3254 case USB_REQ_SET_FEATURE: {
3255 struct net2280_ep *e;
3256
3257 /* hw handles device features */
3258 if (u.r.bRequestType != USB_RECIP_ENDPOINT)
3259 goto delegate;
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02003260 if (w_value != USB_ENDPOINT_HALT || w_length != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 goto do_stall;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003262 e = get_ep_by_addr(dev, w_index);
3263 if (!e)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 goto do_stall;
Alan Stern80661342008-08-14 15:49:11 -04003265 if (e->ep.name == ep0name)
3266 goto do_stall;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003267 set_halt(e);
Tim Harvey5185c9132016-05-23 06:58:41 -07003268 if ((dev->quirks & PLX_PCIE) && e->dma)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003269 abort_dma(e);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003270 allow_status(ep);
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003271 ep_vdbg(dev, "%s set halt\n", ep->ep.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 goto next_endpoints;
3273 }
3274 break;
3275 default:
3276delegate:
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003277 ep_vdbg(dev, "setup %02x.%02x v%04x i%04x l%04x "
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 "ep_cfg %08x\n",
3279 u.r.bRequestType, u.r.bRequest,
David Brownell320f3452005-05-07 13:05:18 -07003280 w_value, w_index, w_length,
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003281 readl(&ep->cfg->ep_cfg));
Alan Stern1f26e282006-11-16 10:16:00 -05003282 ep->responded = 0;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003283 spin_unlock(&dev->lock);
3284 tmp = dev->driver->setup(&dev->gadget, &u.r);
3285 spin_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286 }
3287
3288 /* stall ep0 on error */
3289 if (tmp < 0) {
3290do_stall:
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003291 ep_vdbg(dev, "req %02x.%02x protocol STALL; stat %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 u.r.bRequestType, u.r.bRequest, tmp);
3293 dev->protocol_stall = 1;
3294 }
3295
3296 /* some in/out token irq should follow; maybe stall then.
3297 * driver must queue a request (even zlp) or halt ep0
3298 * before the host times out.
3299 */
3300 }
3301
David Brownell320f3452005-05-07 13:05:18 -07003302#undef w_value
3303#undef w_index
3304#undef w_length
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306next_endpoints:
Tim Harvey5185c9132016-05-23 06:58:41 -07003307 if ((dev->quirks & PLX_PCIE) && dev->enhanced_mode) {
Mian Yousaf Kaukaba09e23f2015-05-16 22:33:35 +02003308 u32 mask = (BIT(ENDPOINT_0_INTERRUPT) |
3309 USB3380_IRQSTAT0_EP_INTR_MASK_IN |
3310 USB3380_IRQSTAT0_EP_INTR_MASK_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Mian Yousaf Kaukaba09e23f2015-05-16 22:33:35 +02003312 if (stat & mask) {
3313 usb338x_handle_ep_intr(dev, stat & mask);
3314 stat &= ~mask;
3315 }
3316 } else {
3317 /* endpoint data irq ? */
3318 scratch = stat & 0x7f;
3319 stat &= ~0x7f;
3320 for (num = 0; scratch; num++) {
3321 u32 t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322
Mian Yousaf Kaukaba09e23f2015-05-16 22:33:35 +02003323 /* do this endpoint's FIFO and queue need tending? */
3324 t = BIT(num);
3325 if ((scratch & t) == 0)
3326 continue;
3327 scratch ^= t;
3328
3329 ep = &dev->ep[num];
3330 handle_ep_small(ep);
3331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 }
3333
3334 if (stat)
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003335 ep_dbg(dev, "unhandled irqstat0 %08x\n", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336}
3337
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003338#define DMA_INTERRUPTS (BIT(DMA_D_INTERRUPT) | \
3339 BIT(DMA_C_INTERRUPT) | \
3340 BIT(DMA_B_INTERRUPT) | \
3341 BIT(DMA_A_INTERRUPT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342#define PCI_ERROR_INTERRUPTS ( \
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003343 BIT(PCI_MASTER_ABORT_RECEIVED_INTERRUPT) | \
3344 BIT(PCI_TARGET_ABORT_RECEIVED_INTERRUPT) | \
3345 BIT(PCI_RETRY_ABORT_INTERRUPT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003347static void handle_stat1_irqs(struct net2280 *dev, u32 stat)
Alan Sterndec3c232018-08-08 11:20:39 -04003348__releases(dev->lock)
3349__acquires(dev->lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350{
3351 struct net2280_ep *ep;
3352 u32 tmp, num, mask, scratch;
3353
3354 /* after disconnect there's nothing else to do! */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003355 tmp = BIT(VBUS_INTERRUPT) | BIT(ROOT_PORT_RESET_INTERRUPT);
3356 mask = BIT(SUPER_SPEED) | BIT(HIGH_SPEED) | BIT(FULL_SPEED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357
3358 /* VBUS disconnect is indicated by VBUS_PIN and VBUS_INTERRUPT set.
Vitaliy Ivanovfb914eb2011-06-23 20:01:55 +03003359 * Root Port Reset is indicated by ROOT_PORT_RESET_INTERRUPT set and
David Brownell901b3d72006-09-02 03:13:45 -07003360 * both HIGH_SPEED and FULL_SPEED clear (as ROOT_PORT_RESET_INTERRUPT
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 * only indicates a change in the reset state).
3362 */
3363 if (stat & tmp) {
Alan Sternb611e422014-11-06 14:27:56 +08003364 bool reset = false;
3365 bool disconnect = false;
3366
3367 /*
3368 * Ignore disconnects and resets if the speed hasn't been set.
3369 * VBUS can bounce and there's always an initial reset.
3370 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003371 writel(tmp, &dev->regs->irqstat1);
Alan Sternb611e422014-11-06 14:27:56 +08003372 if (dev->gadget.speed != USB_SPEED_UNKNOWN) {
3373 if ((stat & BIT(VBUS_INTERRUPT)) &&
3374 (readl(&dev->usb->usbctl) &
3375 BIT(VBUS_PIN)) == 0) {
3376 disconnect = true;
3377 ep_dbg(dev, "disconnect %s\n",
3378 dev->driver->driver.name);
3379 } else if ((stat & BIT(ROOT_PORT_RESET_INTERRUPT)) &&
3380 (readl(&dev->usb->usbstat) & mask)
3381 == 0) {
3382 reset = true;
3383 ep_dbg(dev, "reset %s\n",
3384 dev->driver->driver.name);
3385 }
3386
3387 if (disconnect || reset) {
3388 stop_activity(dev, dev->driver);
3389 ep0_start(dev);
Alan Sterndec3c232018-08-08 11:20:39 -04003390 spin_unlock(&dev->lock);
Alan Sternb611e422014-11-06 14:27:56 +08003391 if (reset)
3392 usb_gadget_udc_reset
3393 (&dev->gadget, dev->driver);
3394 else
3395 (dev->driver->disconnect)
3396 (&dev->gadget);
Alan Sterndec3c232018-08-08 11:20:39 -04003397 spin_lock(&dev->lock);
Alan Sternb611e422014-11-06 14:27:56 +08003398 return;
3399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 }
3401 stat &= ~tmp;
3402
3403 /* vBUS can bounce ... one of many reasons to ignore the
3404 * notion of hotplug events on bus connect/disconnect!
3405 */
3406 if (!stat)
3407 return;
3408 }
3409
3410 /* NOTE: chip stays in PCI D0 state for now, but it could
3411 * enter D1 to save more power
3412 */
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003413 tmp = BIT(SUSPEND_REQUEST_CHANGE_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 if (stat & tmp) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003415 writel(tmp, &dev->regs->irqstat1);
Alan Sterndec3c232018-08-08 11:20:39 -04003416 spin_unlock(&dev->lock);
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003417 if (stat & BIT(SUSPEND_REQUEST_INTERRUPT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 if (dev->driver->suspend)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003419 dev->driver->suspend(&dev->gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 if (!enable_suspend)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003421 stat &= ~BIT(SUSPEND_REQUEST_INTERRUPT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 } else {
3423 if (dev->driver->resume)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003424 dev->driver->resume(&dev->gadget);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 /* at high speed, note erratum 0133 */
3426 }
Alan Sterndec3c232018-08-08 11:20:39 -04003427 spin_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 stat &= ~tmp;
3429 }
3430
3431 /* clear any other status/irqs */
3432 if (stat)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003433 writel(stat, &dev->regs->irqstat1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
3435 /* some status we can just ignore */
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02003436 if (dev->quirks & PLX_2280)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003437 stat &= ~(BIT(CONTROL_STATUS_INTERRUPT) |
3438 BIT(SUSPEND_REQUEST_INTERRUPT) |
3439 BIT(RESUME_INTERRUPT) |
3440 BIT(SOF_INTERRUPT));
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +01003441 else
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003442 stat &= ~(BIT(CONTROL_STATUS_INTERRUPT) |
3443 BIT(RESUME_INTERRUPT) |
3444 BIT(SOF_DOWN_INTERRUPT) |
3445 BIT(SOF_INTERRUPT));
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +01003446
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 if (!stat)
3448 return;
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003449 /* ep_dbg(dev, "irqstat1 %08x\n", stat);*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
3451 /* DMA status, for ep-{a,b,c,d} */
3452 scratch = stat & DMA_INTERRUPTS;
3453 stat &= ~DMA_INTERRUPTS;
3454 scratch >>= 9;
3455 for (num = 0; scratch; num++) {
3456 struct net2280_dma_regs __iomem *dma;
3457
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003458 tmp = BIT(num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 if ((tmp & scratch) == 0)
3460 continue;
3461 scratch ^= tmp;
3462
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003463 ep = &dev->ep[num + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 dma = ep->dma;
3465
3466 if (!dma)
3467 continue;
3468
3469 /* clear ep's dma status */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003470 tmp = readl(&dma->dmastat);
3471 writel(tmp, &dma->dmastat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003473 /* dma sync*/
Tim Harvey5185c9132016-05-23 06:58:41 -07003474 if (dev->quirks & PLX_PCIE) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003475 u32 r_dmacount = readl(&dma->dmacount);
3476 if (!ep->is_in && (r_dmacount & 0x00FFFFFF) &&
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003477 (tmp & BIT(DMA_TRANSACTION_DONE_INTERRUPT)))
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003478 continue;
3479 }
3480
Ricardo Ribalda Delgado90664192014-11-28 14:50:46 +01003481 if (!(tmp & BIT(DMA_TRANSACTION_DONE_INTERRUPT))) {
3482 ep_dbg(ep->dev, "%s no xact done? %08x\n",
3483 ep->ep.name, tmp);
3484 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 }
Ricardo Ribalda Delgado90664192014-11-28 14:50:46 +01003486 stop_dma(ep->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487
3488 /* OUT transfers terminate when the data from the
3489 * host is in our memory. Process whatever's done.
3490 * On this path, we know transfer's last packet wasn't
3491 * less than req->length. NAK_OUT_PACKETS may be set,
3492 * or the FIFO may already be holding new packets.
3493 *
3494 * IN transfers can linger in the FIFO for a very
3495 * long time ... we ignore that for now, accounting
3496 * precisely (like PIO does) needs per-packet irqs
3497 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003498 scan_dma_completions(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499
3500 /* disable dma on inactive queues; else maybe restart */
Ricardo Ribalda Delgado90664192014-11-28 14:50:46 +01003501 if (!list_empty(&ep->queue)) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003502 tmp = readl(&dma->dmactl);
Ricardo Ribalda Delgado90664192014-11-28 14:50:46 +01003503 restart_dma(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 }
3505 ep->irqs++;
3506 }
3507
3508 /* NOTE: there are other PCI errors we might usefully notice.
3509 * if they appear very often, here's where to try recovering.
3510 */
3511 if (stat & PCI_ERROR_INTERRUPTS) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003512 ep_err(dev, "pci dma error; stat %08x\n", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 stat &= ~PCI_ERROR_INTERRUPTS;
3514 /* these are fatal errors, but "maybe" they won't
3515 * happen again ...
3516 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003517 stop_activity(dev, dev->driver);
3518 ep0_start(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 stat = 0;
3520 }
3521
3522 if (stat)
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003523 ep_dbg(dev, "unhandled irqstat1 %08x\n", stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524}
3525
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003526static irqreturn_t net2280_irq(int irq, void *_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527{
3528 struct net2280 *dev = _dev;
3529
Alan Stern658ad5e2006-04-14 16:44:11 -04003530 /* shared interrupt, not ours */
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02003531 if ((dev->quirks & PLX_LEGACY) &&
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003532 (!(readl(&dev->regs->irqstat0) & BIT(INTA_ASSERTED))))
Alan Stern658ad5e2006-04-14 16:44:11 -04003533 return IRQ_NONE;
3534
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003535 spin_lock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536
3537 /* handle disconnect, dma, and more */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003538 handle_stat1_irqs(dev, readl(&dev->regs->irqstat1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539
3540 /* control requests and PIO */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003541 handle_stat0_irqs(dev, readl(&dev->regs->irqstat0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Tim Harvey5185c9132016-05-23 06:58:41 -07003543 if (dev->quirks & PLX_PCIE) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003544 /* re-enable interrupt to trigger any possible new interrupt */
3545 u32 pciirqenb1 = readl(&dev->regs->pciirqenb1);
3546 writel(pciirqenb1 & 0x7FFFFFFF, &dev->regs->pciirqenb1);
3547 writel(pciirqenb1, &dev->regs->pciirqenb1);
3548 }
3549
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003550 spin_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551
3552 return IRQ_HANDLED;
3553}
3554
3555/*-------------------------------------------------------------------------*/
3556
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003557static void gadget_release(struct device *_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558{
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003559 struct net2280 *dev = dev_get_drvdata(_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003561 kfree(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562}
3563
3564/* tear down the binding between this driver and the pci device */
3565
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003566static void net2280_remove(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567{
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003568 struct net2280 *dev = pci_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003570 usb_del_gadget_udc(&dev->gadget);
3571
David Brownell6bea4762006-12-05 03:15:33 -08003572 BUG_ON(dev->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
3574 /* then clean up the resources we allocated during probe() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 if (dev->requests) {
3576 int i;
3577 for (i = 1; i < 5; i++) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003578 if (!dev->ep[i].dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 continue;
Romain Perierfa9ed6f2017-03-08 17:19:54 +01003580 dma_pool_free(dev->requests, dev->ep[i].dummy,
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003581 dev->ep[i].td_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 }
Romain Perierfa9ed6f2017-03-08 17:19:54 +01003583 dma_pool_destroy(dev->requests);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 }
3585 if (dev->got_irq)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003586 free_irq(pdev->irq, dev);
Tim Harvey5185c9132016-05-23 06:58:41 -07003587 if (dev->quirks & PLX_PCIE)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003588 pci_disable_msi(pdev);
Gustavo A. R. Silva53e720f2017-05-02 11:37:22 -05003589 if (dev->regs) {
3590 net2280_led_shutdown(dev);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003591 iounmap(dev->regs);
Gustavo A. R. Silva53e720f2017-05-02 11:37:22 -05003592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 if (dev->region)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003594 release_mem_region(pci_resource_start(pdev, 0),
3595 pci_resource_len(pdev, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 if (dev->enabled)
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003597 pci_disable_device(pdev);
3598 device_remove_file(&pdev->dev, &dev_attr_registers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003600 ep_info(dev, "unbind\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601}
3602
3603/* wrap this driver around the specified device, but
3604 * don't respond over USB until a gadget driver binds to us.
3605 */
3606
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003607static int net2280_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608{
3609 struct net2280 *dev;
3610 unsigned long resource, len;
3611 void __iomem *base = NULL;
3612 int retval, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 /* alloc, and start init */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003615 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
3616 if (dev == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 retval = -ENOMEM;
3618 goto done;
3619 }
3620
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003621 pci_set_drvdata(pdev, dev);
3622 spin_lock_init(&dev->lock);
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02003623 dev->quirks = id->driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 dev->pdev = pdev;
3625 dev->gadget.ops = &net2280_ops;
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02003626 dev->gadget.max_speed = (dev->quirks & PLX_SUPERSPEED) ?
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003627 USB_SPEED_SUPER : USB_SPEED_HIGH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
3629 /* the "gadget" abstracts/virtualizes the controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 dev->gadget.name = driver_name;
3631
3632 /* now all the pci goodies ... */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003633 if (pci_enable_device(pdev) < 0) {
3634 retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 goto done;
3636 }
3637 dev->enabled = 1;
3638
3639 /* BAR 0 holds all the registers
3640 * BAR 1 is 8051 memory; unused here (note erratum 0103)
3641 * BAR 2 is fifo memory; unused here
3642 */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003643 resource = pci_resource_start(pdev, 0);
3644 len = pci_resource_len(pdev, 0);
3645 if (!request_mem_region(resource, len, driver_name)) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003646 ep_dbg(dev, "controller already in use\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 retval = -EBUSY;
3648 goto done;
3649 }
3650 dev->region = 1;
3651
David Brownell901b3d72006-09-02 03:13:45 -07003652 /* FIXME provide firmware download interface to put
3653 * 8051 code into the chip, e.g. to turn on PCI PM.
3654 */
3655
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003656 base = ioremap_nocache(resource, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 if (base == NULL) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003658 ep_dbg(dev, "can't map memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 retval = -EFAULT;
3660 goto done;
3661 }
3662 dev->regs = (struct net2280_regs __iomem *) base;
3663 dev->usb = (struct net2280_usb_regs __iomem *) (base + 0x0080);
3664 dev->pci = (struct net2280_pci_regs __iomem *) (base + 0x0100);
3665 dev->dma = (struct net2280_dma_regs __iomem *) (base + 0x0180);
3666 dev->dep = (struct net2280_dep_regs __iomem *) (base + 0x0200);
3667 dev->epregs = (struct net2280_ep_regs __iomem *) (base + 0x0300);
3668
Tim Harvey5185c9132016-05-23 06:58:41 -07003669 if (dev->quirks & PLX_PCIE) {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003670 u32 fsmvalue;
3671 u32 usbstat;
3672 dev->usb_ext = (struct usb338x_usb_ext_regs __iomem *)
3673 (base + 0x00b4);
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003674 dev->llregs = (struct usb338x_ll_regs __iomem *)
3675 (base + 0x0700);
3676 dev->ll_lfps_regs = (struct usb338x_ll_lfps_regs __iomem *)
3677 (base + 0x0748);
3678 dev->ll_tsn_regs = (struct usb338x_ll_tsn_regs __iomem *)
3679 (base + 0x077c);
3680 dev->ll_chicken_reg = (struct usb338x_ll_chi_regs __iomem *)
3681 (base + 0x079c);
3682 dev->plregs = (struct usb338x_pl_regs __iomem *)
3683 (base + 0x0800);
3684 usbstat = readl(&dev->usb->usbstat);
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003685 dev->enhanced_mode = !!(usbstat & BIT(11));
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003686 dev->n_ep = (dev->enhanced_mode) ? 9 : 5;
3687 /* put into initial config, link up all endpoints */
3688 fsmvalue = get_idx_reg(dev->regs, SCRATCH) &
3689 (0xf << DEFECT7374_FSM_FIELD);
3690 /* See if firmware needs to set up for workaround: */
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01003691 if (fsmvalue == DEFECT7374_FSM_SS_CONTROL_READ) {
3692 dev->bug7734_patched = 1;
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003693 writel(0, &dev->usb->usbctl);
Ricardo Ribalda Delgado55175252014-11-28 14:50:57 +01003694 } else
3695 dev->bug7734_patched = 0;
3696 } else {
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003697 dev->enhanced_mode = 0;
3698 dev->n_ep = 7;
3699 /* put into initial config, link up all endpoints */
3700 writel(0, &dev->usb->usbctl);
3701 }
3702
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003703 usb_reset(dev);
3704 usb_reinit(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705
3706 /* irq setup after old hardware is cleaned up */
3707 if (!pdev->irq) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003708 ep_err(dev, "No IRQ. Check PCI setup!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 retval = -ENODEV;
3710 goto done;
3711 }
David S. Millerc6387a42006-06-20 01:21:29 -07003712
Tim Harvey5185c9132016-05-23 06:58:41 -07003713 if (dev->quirks & PLX_PCIE)
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003714 if (pci_enable_msi(pdev))
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003715 ep_err(dev, "Failed to enable MSI mode\n");
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003716
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003717 if (request_irq(pdev->irq, net2280_irq, IRQF_SHARED,
3718 driver_name, dev)) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003719 ep_err(dev, "request interrupt %d failed\n", pdev->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 retval = -EBUSY;
3721 goto done;
3722 }
3723 dev->got_irq = 1;
3724
3725 /* DMA setup */
3726 /* NOTE: we know only the 32 LSBs of dma addresses may be nonzero */
Romain Perierfa9ed6f2017-03-08 17:19:54 +01003727 dev->requests = dma_pool_create("requests", &pdev->dev,
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003728 sizeof(struct net2280_dma),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 0 /* no alignment requirements */,
3730 0 /* or page-crossing issues */);
3731 if (!dev->requests) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003732 ep_dbg(dev, "can't get request pool\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 retval = -ENOMEM;
3734 goto done;
3735 }
3736 for (i = 1; i < 5; i++) {
3737 struct net2280_dma *td;
3738
Romain Perierfa9ed6f2017-03-08 17:19:54 +01003739 td = dma_pool_alloc(dev->requests, GFP_KERNEL,
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003740 &dev->ep[i].td_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 if (!td) {
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003742 ep_dbg(dev, "can't get dummy %d\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 retval = -ENOMEM;
3744 goto done;
3745 }
3746 td->dmacount = 0; /* not VALID */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 td->dmadesc = td->dmaaddr;
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003748 dev->ep[i].dummy = td;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 }
3750
3751 /* enable lower-overhead pci memory bursts during DMA */
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02003752 if (dev->quirks & PLX_LEGACY)
Ricardo Ribalda Delgado3e76fdc2014-05-20 18:30:05 +02003753 writel(BIT(DMA_MEMORY_WRITE_AND_INVALIDATE_ENABLE) |
3754 /*
3755 * 256 write retries may not be enough...
3756 BIT(PCI_RETRY_ABORT_ENABLE) |
3757 */
3758 BIT(DMA_READ_MULTIPLE_ENABLE) |
3759 BIT(DMA_READ_LINE_ENABLE),
3760 &dev->pci->pcimstctl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 /* erratum 0115 shouldn't appear: Linux inits PCI_LATENCY_TIMER */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003762 pci_set_master(pdev);
3763 pci_try_set_mwi(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
3765 /* ... also flushes any posted pci writes */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003766 dev->chiprev = get_idx_reg(dev->regs, REG_CHIPREV) & 0xffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
3768 /* done */
Ricardo Ribalda Delgadoe56e69c2014-05-20 18:30:11 +02003769 ep_info(dev, "%s\n", driver_desc);
3770 ep_info(dev, "irq %d, pci mem %p, chip rev %04x\n",
David S. Millerc6387a42006-06-20 01:21:29 -07003771 pdev->irq, base, dev->chiprev);
Ricardo Ribalda Delgadod588ff52014-11-28 14:50:49 +01003772 ep_info(dev, "version: " DRIVER_VERSION "; %s\n",
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003773 dev->enhanced_mode ? "enhanced mode" : "legacy mode");
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003774 retval = device_create_file(&pdev->dev, &dev_attr_registers);
3775 if (retval)
3776 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777
Felipe Balbi2901df62013-02-26 15:15:27 +02003778 retval = usb_add_gadget_udc_release(&pdev->dev, &dev->gadget,
3779 gadget_release);
Sebastian Andrzej Siewior0f913492011-06-28 16:33:47 +03003780 if (retval)
3781 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 return 0;
3783
3784done:
Evgeny Novikovfec3ffe2020-07-21 23:15:58 +03003785 if (dev) {
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003786 net2280_remove(pdev);
Evgeny Novikovfec3ffe2020-07-21 23:15:58 +03003787 kfree(dev);
3788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 return retval;
3790}
3791
Alan Stern2d61bde2006-05-05 16:23:42 -04003792/* make sure the board is quiescent; otherwise it will continue
3793 * generating IRQs across the upcoming reboot.
3794 */
3795
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003796static void net2280_shutdown(struct pci_dev *pdev)
Alan Stern2d61bde2006-05-05 16:23:42 -04003797{
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003798 struct net2280 *dev = pci_get_drvdata(pdev);
Alan Stern2d61bde2006-05-05 16:23:42 -04003799
3800 /* disable IRQs */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003801 writel(0, &dev->regs->pciirqenb0);
3802 writel(0, &dev->regs->pciirqenb1);
Alan Stern2d61bde2006-05-05 16:23:42 -04003803
3804 /* disable the pullup so the host will think we're gone */
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003805 writel(0, &dev->usb->usbctl);
Alan Stern2f076072013-01-30 16:40:14 -05003806
Alan Stern2d61bde2006-05-05 16:23:42 -04003807}
3808
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
3810/*-------------------------------------------------------------------------*/
3811
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003812static const struct pci_device_id pci_ids[] = { {
Heikki Krogerus7b78f482016-03-15 14:06:00 +02003813 .class = PCI_CLASS_SERIAL_USB_DEVICE,
David Brownell901b3d72006-09-02 03:13:45 -07003814 .class_mask = ~0,
Ricardo Ribalda Delgadoc2db8a82014-05-20 18:30:04 +02003815 .vendor = PCI_VENDOR_ID_PLX_LEGACY,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 .device = 0x2280,
3817 .subvendor = PCI_ANY_ID,
3818 .subdevice = PCI_ANY_ID,
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02003819 .driver_data = PLX_LEGACY | PLX_2280,
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02003820 }, {
Heikki Krogerus7b78f482016-03-15 14:06:00 +02003821 .class = PCI_CLASS_SERIAL_USB_DEVICE,
David Brownell901b3d72006-09-02 03:13:45 -07003822 .class_mask = ~0,
Ricardo Ribalda Delgadoc2db8a82014-05-20 18:30:04 +02003823 .vendor = PCI_VENDOR_ID_PLX_LEGACY,
Guennadi Liakhovetski950ee4c2006-03-19 20:49:14 +01003824 .device = 0x2282,
3825 .subvendor = PCI_ANY_ID,
3826 .subdevice = PCI_ANY_ID,
Ricardo Ribalda Delgado2eeb0012014-05-20 18:30:12 +02003827 .driver_data = PLX_LEGACY,
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02003828 },
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003829 {
Heikki Krogerus7b78f482016-03-15 14:06:00 +02003830 .class = PCI_CLASS_SERIAL_USB_DEVICE,
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02003831 .class_mask = ~0,
3832 .vendor = PCI_VENDOR_ID_PLX,
Tim Harvey5185c9132016-05-23 06:58:41 -07003833 .device = 0x2380,
3834 .subvendor = PCI_ANY_ID,
3835 .subdevice = PCI_ANY_ID,
3836 .driver_data = PLX_PCIE,
3837 },
3838 {
3839 .class = ((PCI_CLASS_SERIAL_USB << 8) | 0xfe),
3840 .class_mask = ~0,
3841 .vendor = PCI_VENDOR_ID_PLX,
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02003842 .device = 0x3380,
3843 .subvendor = PCI_ANY_ID,
3844 .subdevice = PCI_ANY_ID,
Tim Harvey5185c9132016-05-23 06:58:41 -07003845 .driver_data = PLX_PCIE | PLX_SUPERSPEED,
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003846 },
3847 {
Heikki Krogerus7b78f482016-03-15 14:06:00 +02003848 .class = PCI_CLASS_SERIAL_USB_DEVICE,
Ricardo Ribalda Delgadoae8e5302014-05-20 18:30:10 +02003849 .class_mask = ~0,
3850 .vendor = PCI_VENDOR_ID_PLX,
3851 .device = 0x3382,
3852 .subvendor = PCI_ANY_ID,
3853 .subdevice = PCI_ANY_ID,
Tim Harvey5185c9132016-05-23 06:58:41 -07003854 .driver_data = PLX_PCIE | PLX_SUPERSPEED,
Ricardo Ribalda Delgadoadc82f72014-05-20 18:30:03 +02003855 },
3856{ /* end: all zeroes */ }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857};
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003858MODULE_DEVICE_TABLE(pci, pci_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859
3860/* pci driver glue; this is a "new style" PCI driver module */
3861static struct pci_driver net2280_pci_driver = {
3862 .name = (char *) driver_name,
3863 .id_table = pci_ids,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
3865 .probe = net2280_probe,
3866 .remove = net2280_remove,
Alan Stern2d61bde2006-05-05 16:23:42 -04003867 .shutdown = net2280_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
3869 /* FIXME add power management support */
3870};
3871
Ricardo Ribalda Delgado9a028e42014-05-20 18:30:07 +02003872module_pci_driver(net2280_pci_driver);
3873
Ricardo Ribalda Delgadofae3c152014-05-20 18:30:09 +02003874MODULE_DESCRIPTION(DRIVER_DESC);
3875MODULE_AUTHOR("David Brownell");
3876MODULE_LICENSE("GPL");