net2280.c 91.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
 * Driver for the PLX NET2280 USB device controller.
 * Specs and errata are available from <http://www.plxtech.com>.
 *
5
 * PLX Technology Inc. (formerly NetChip Technology) supported the
L
Linus Torvalds 已提交
6 7 8 9 10 11
 * development of this driver.
 *
 *
 * CODE STATUS HIGHLIGHTS
 *
 * This driver should work well with most "gadget" drivers, including
12
 * the Mass Storage, Serial, and Ethernet/RNDIS gadget drivers
L
Linus Torvalds 已提交
13 14
 * as well as Gadget Zero and Gadgetfs.
 *
15
 * DMA is enabled by default.
L
Linus Torvalds 已提交
16
 *
17 18 19
 * MSI is enabled by default.  The legacy IRQ is used if MSI couldn't
 * be enabled.
 *
L
Linus Torvalds 已提交
20 21 22 23 24 25 26
 * Note that almost all the errata workarounds here are only needed for
 * rev1 chips.  Rev1a silicon (0110) fixes almost all of them.
 */

/*
 * Copyright (C) 2003 David Brownell
 * Copyright (C) 2003-2005 PLX Technology, Inc.
27
 * Copyright (C) 2014 Ricardo Ribalda - Qtechnology/AS
L
Linus Torvalds 已提交
28
 *
29 30
 * Modified Seth Levy 2005 PLX Technology, Inc. to provide compatibility
 *	with 2282 chip
31
 *
32 33 34
 * Modified Ricardo Ribalda Qtechnology AS  to provide compatibility
 *	with usb 338x chip. Based on PLX driver
 *
L
Linus Torvalds 已提交
35 36 37 38 39 40 41 42
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

#include <linux/module.h>
#include <linux/pci.h>
43
#include <linux/dma-mapping.h>
L
Linus Torvalds 已提交
44 45 46 47 48 49 50 51 52 53 54
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/ioport.h>
#include <linux/slab.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/timer.h>
#include <linux/list.h>
#include <linux/interrupt.h>
#include <linux/moduleparam.h>
#include <linux/device.h>
55
#include <linux/usb/ch9.h>
56
#include <linux/usb/gadget.h>
57
#include <linux/prefetch.h>
58
#include <linux/io.h>
L
Linus Torvalds 已提交
59 60 61 62 63

#include <asm/byteorder.h>
#include <asm/irq.h>
#include <asm/unaligned.h>

64 65
#define	DRIVER_DESC		"PLX NET228x/USB338x USB Peripheral Controller"
#define	DRIVER_VERSION		"2005 Sept 27/v3.0"
L
Linus Torvalds 已提交
66 67 68 69 70 71

#define	EP_DONTUSE		13	/* nonzero */

#define USE_RDK_LEDS		/* GPIO pins control three LEDs */


72 73
static const char driver_name[] = "net2280";
static const char driver_desc[] = DRIVER_DESC;
L
Linus Torvalds 已提交
74

75
static const u32 ep_bit[9] = { 0, 17, 2, 19, 4, 1, 18, 3, 20 };
76 77
static const char ep0name[] = "ep0";
static const char *const ep_name[] = {
L
Linus Torvalds 已提交
78 79
	ep0name,
	"ep-a", "ep-b", "ep-c", "ep-d",
80
	"ep-e", "ep-f", "ep-g", "ep-h",
L
Linus Torvalds 已提交
81 82 83 84 85 86
};

/* mode 0 == ep-{a,b,c,d} 1K fifo each
 * mode 1 == ep-{a,b} 2K fifo each, ep-{c,d} unavailable
 * mode 2 == ep-a 2K fifo, ep-{b,c} 1K each, ep-d unavailable
 */
87
static ushort fifo_mode;
L
Linus Torvalds 已提交
88 89

/* "modprobe net2280 fifo_mode=1" etc */
90
module_param(fifo_mode, ushort, 0644);
L
Linus Torvalds 已提交
91 92 93

/* enable_suspend -- When enabled, the driver will respond to
 * USB suspend requests by powering down the NET2280.  Otherwise,
L
Lucas De Marchi 已提交
94
 * USB suspend requests will be ignored.  This is acceptable for
95
 * self-powered devices
L
Linus Torvalds 已提交
96
 */
97
static bool enable_suspend;
L
Linus Torvalds 已提交
98 99

/* "modprobe net2280 enable_suspend=1" etc */
100
module_param(enable_suspend, bool, 0444);
L
Linus Torvalds 已提交
101 102 103

#define	DIR_STRING(bAddress) (((bAddress) & USB_DIR_IN) ? "in" : "out")

104
static char *type_string(u8 bmAttributes)
L
Linus Torvalds 已提交
105 106 107 108 109
{
	switch ((bmAttributes) & USB_ENDPOINT_XFERTYPE_MASK) {
	case USB_ENDPOINT_XFER_BULK:	return "bulk";
	case USB_ENDPOINT_XFER_ISOC:	return "iso";
	case USB_ENDPOINT_XFER_INT:	return "intr";
J
Joe Perches 已提交
110
	}
L
Linus Torvalds 已提交
111 112 113 114 115
	return "control";
}

#include "net2280.h"

116 117
#define valid_bit	cpu_to_le32(BIT(VALID_BIT))
#define dma_done_ie	cpu_to_le32(BIT(DMA_DONE_INTERRUPT_ENABLE))
L
Linus Torvalds 已提交
118 119

/*-------------------------------------------------------------------------*/
120 121 122 123
static inline void enable_pciirqenb(struct net2280_ep *ep)
{
	u32 tmp = readl(&ep->dev->regs->pciirqenb0);

124
	if (ep->dev->quirks & PLX_LEGACY)
125
		tmp |= BIT(ep->num);
126
	else
127
		tmp |= BIT(ep_bit[ep->num]);
128 129 130 131
	writel(tmp, &ep->dev->regs->pciirqenb0);

	return;
}
L
Linus Torvalds 已提交
132 133

static int
134
net2280_enable(struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc)
L
Linus Torvalds 已提交
135 136 137 138 139
{
	struct net2280		*dev;
	struct net2280_ep	*ep;
	u32			max, tmp;
	unsigned long		flags;
140
	static const u32 ep_key[9] = { 1, 0, 1, 0, 1, 1, 0, 1, 0 };
L
Linus Torvalds 已提交
141

142
	ep = container_of(_ep, struct net2280_ep, ep);
143 144
	if (!_ep || !desc || ep->desc || _ep->name == ep0name ||
			desc->bDescriptorType != USB_DT_ENDPOINT)
L
Linus Torvalds 已提交
145 146 147 148 149 150 151 152 153
		return -EINVAL;
	dev = ep->dev;
	if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN)
		return -ESHUTDOWN;

	/* erratum 0119 workaround ties up an endpoint number */
	if ((desc->bEndpointAddress & 0x0f) == EP_DONTUSE)
		return -EDOM;

154
	if (dev->quirks & PLX_SUPERSPEED) {
155 156 157 158 159 160 161
		if ((desc->bEndpointAddress & 0x0f) >= 0x0c)
			return -EDOM;
		ep->is_in = !!usb_endpoint_dir_in(desc);
		if (dev->enhanced_mode && ep->is_in && ep_key[ep->num])
			return -EINVAL;
	}

L
Linus Torvalds 已提交
162
	/* sanity check ep-e/ep-f since their fifos are small */
163
	max = usb_endpoint_maxp(desc) & 0x1fff;
164
	if (ep->num > 4 && max > 64 && (dev->quirks & PLX_LEGACY))
L
Linus Torvalds 已提交
165 166
		return -ERANGE;

167
	spin_lock_irqsave(&dev->lock, flags);
L
Linus Torvalds 已提交
168 169 170 171 172
	_ep->maxpacket = max & 0x7ff;
	ep->desc = desc;

	/* ep_reset() has already been called */
	ep->stopped = 0;
173
	ep->wedged = 0;
L
Linus Torvalds 已提交
174 175 176
	ep->out_overflow = 0;

	/* set speed-dependent max packet; may kick in high bandwidth */
177
	set_max_speed(ep, max);
L
Linus Torvalds 已提交
178 179

	/* set type, direction, address; reset fifo counters */
180
	writel(BIT(FIFO_FLUSH), &ep->regs->ep_stat);
L
Linus Torvalds 已提交
181 182 183
	tmp = (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK);
	if (tmp == USB_ENDPOINT_XFER_INT) {
		/* erratum 0105 workaround prevents hs NYET */
184 185 186
		if (dev->chiprev == 0100 &&
				dev->gadget.speed == USB_SPEED_HIGH &&
				!(desc->bEndpointAddress & USB_DIR_IN))
187
			writel(BIT(CLEAR_NAK_OUT_PACKETS_MODE),
L
Linus Torvalds 已提交
188 189 190
				&ep->regs->ep_rsp);
	} else if (tmp == USB_ENDPOINT_XFER_BULK) {
		/* catch some particularly blatant driver bugs */
191 192 193 194
		if ((dev->gadget.speed == USB_SPEED_SUPER && max != 1024) ||
		    (dev->gadget.speed == USB_SPEED_HIGH && max != 512) ||
		    (dev->gadget.speed == USB_SPEED_FULL && max > 64)) {
			spin_unlock_irqrestore(&dev->lock, flags);
L
Linus Torvalds 已提交
195 196 197
			return -ERANGE;
		}
	}
198
	ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
199
	/* Enable this endpoint */
200
	if (dev->quirks & PLX_LEGACY) {
201 202 203 204
		tmp <<= ENDPOINT_TYPE;
		tmp |= desc->bEndpointAddress;
		/* default full fifo lines */
		tmp |= (4 << ENDPOINT_BYTE_COUNT);
205
		tmp |= BIT(ENDPOINT_ENABLE);
206 207 208 209 210
		ep->is_in = (tmp & USB_DIR_IN) != 0;
	} else {
		/* In Legacy mode, only OUT endpoints are used */
		if (dev->enhanced_mode && ep->is_in) {
			tmp <<= IN_ENDPOINT_TYPE;
211
			tmp |= BIT(IN_ENDPOINT_ENABLE);
212
			/* Not applicable to Legacy */
213
			tmp |= BIT(ENDPOINT_DIRECTION);
214 215
		} else {
			tmp <<= OUT_ENDPOINT_TYPE;
216
			tmp |= BIT(OUT_ENDPOINT_ENABLE);
217 218 219 220 221 222 223 224 225
			tmp |= (ep->is_in << ENDPOINT_DIRECTION);
		}

		tmp |= usb_endpoint_num(desc);
		tmp |= (ep->ep.maxburst << MAX_BURST_SIZE);
	}

	/* Make sure all the registers are written before ep_rsp*/
	wmb();
L
Linus Torvalds 已提交
226 227 228

	/* for OUT transfers, block the rx fifo until a read is posted */
	if (!ep->is_in)
229
		writel(BIT(SET_NAK_OUT_PACKETS), &ep->regs->ep_rsp);
230
	else if (!(dev->quirks & PLX_2280)) {
231 232 233
		/* Added for 2282, Don't use nak packets on an in endpoint,
		 * this was ignored on 2280
		 */
234 235
		writel(BIT(CLEAR_NAK_OUT_PACKETS) |
			BIT(CLEAR_NAK_OUT_PACKETS_MODE), &ep->regs->ep_rsp);
236
	}
L
Linus Torvalds 已提交
237

238
	writel(tmp, &ep->cfg->ep_cfg);
L
Linus Torvalds 已提交
239 240 241

	/* enable irqs */
	if (!ep->dma) {				/* pio, per-packet */
242
		enable_pciirqenb(ep);
L
Linus Torvalds 已提交
243

244 245
		tmp = BIT(DATA_PACKET_RECEIVED_INTERRUPT_ENABLE) |
			BIT(DATA_PACKET_TRANSMITTED_INTERRUPT_ENABLE);
246
		if (dev->quirks & PLX_2280)
247 248
			tmp |= readl(&ep->regs->ep_irqenb);
		writel(tmp, &ep->regs->ep_irqenb);
L
Linus Torvalds 已提交
249
	} else {				/* dma, per-request */
250
		tmp = BIT((8 + ep->num));	/* completion */
251 252
		tmp |= readl(&dev->regs->pciirqenb1);
		writel(tmp, &dev->regs->pciirqenb1);
L
Linus Torvalds 已提交
253 254 255 256 257 258

		/* for short OUT transfers, dma completions can't
		 * advance the queue; do it pio-style, by hand.
		 * NOTE erratum 0112 workaround #2
		 */
		if ((desc->bEndpointAddress & USB_DIR_IN) == 0) {
259
			tmp = BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT_ENABLE);
260
			writel(tmp, &ep->regs->ep_irqenb);
L
Linus Torvalds 已提交
261

262
			enable_pciirqenb(ep);
L
Linus Torvalds 已提交
263 264 265 266
		}
	}

	tmp = desc->bEndpointAddress;
267
	ep_dbg(dev, "enabled %s (ep%d%s-%s) %s max %04x\n",
268 269
		_ep->name, tmp & 0x0f, DIR_STRING(tmp),
		type_string(desc->bmAttributes),
L
Linus Torvalds 已提交
270 271 272
		ep->dma ? "dma" : "pio", max);

	/* pci writes may still be posted */
273
	spin_unlock_irqrestore(&dev->lock, flags);
L
Linus Torvalds 已提交
274 275 276
	return 0;
}

277
static int handshake(u32 __iomem *ptr, u32 mask, u32 done, int usec)
L
Linus Torvalds 已提交
278 279 280 281
{
	u32	result;

	do {
282
		result = readl(ptr);
L
Linus Torvalds 已提交
283 284 285 286 287
		if (result == ~(u32)0)		/* "device unplugged" */
			return -ENODEV;
		result &= mask;
		if (result == done)
			return 0;
288
		udelay(1);
L
Linus Torvalds 已提交
289 290 291 292 293
		usec--;
	} while (usec > 0);
	return -ETIMEDOUT;
}

294
static const struct usb_ep_ops net2280_ep_ops;
L
Linus Torvalds 已提交
295

296 297
static void ep_reset_228x(struct net2280_regs __iomem *regs,
			  struct net2280_ep *ep)
L
Linus Torvalds 已提交
298 299 300 301
{
	u32		tmp;

	ep->desc = NULL;
302
	INIT_LIST_HEAD(&ep->queue);
L
Linus Torvalds 已提交
303

304
	usb_ep_set_maxpacket_limit(&ep->ep, ~0);
L
Linus Torvalds 已提交
305 306 307 308
	ep->ep.ops = &net2280_ep_ops;

	/* disable the dma, irqs, endpoint... */
	if (ep->dma) {
309
		writel(0, &ep->dma->dmactl);
310 311 312 313
		writel(BIT(DMA_SCATTER_GATHER_DONE_INTERRUPT) |
			BIT(DMA_TRANSACTION_DONE_INTERRUPT) |
			BIT(DMA_ABORT),
			&ep->dma->dmastat);
L
Linus Torvalds 已提交
314

315
		tmp = readl(&regs->pciirqenb0);
316
		tmp &= ~BIT(ep->num);
317
		writel(tmp, &regs->pciirqenb0);
L
Linus Torvalds 已提交
318
	} else {
319
		tmp = readl(&regs->pciirqenb1);
320
		tmp &= ~BIT((8 + ep->num));	/* completion */
321
		writel(tmp, &regs->pciirqenb1);
L
Linus Torvalds 已提交
322
	}
323
	writel(0, &ep->regs->ep_irqenb);
L
Linus Torvalds 已提交
324 325 326 327

	/* init to our chosen defaults, notably so that we NAK OUT
	 * packets until the driver queues a read (+note erratum 0112)
	 */
328
	if (!ep->is_in || (ep->dev->quirks & PLX_2280)) {
329 330 331 332
		tmp = BIT(SET_NAK_OUT_PACKETS_MODE) |
		BIT(SET_NAK_OUT_PACKETS) |
		BIT(CLEAR_EP_HIDE_STATUS_PHASE) |
		BIT(CLEAR_INTERRUPT_MODE);
333 334
	} else {
		/* added for 2282 */
335 336 337 338
		tmp = BIT(CLEAR_NAK_OUT_PACKETS_MODE) |
		BIT(CLEAR_NAK_OUT_PACKETS) |
		BIT(CLEAR_EP_HIDE_STATUS_PHASE) |
		BIT(CLEAR_INTERRUPT_MODE);
339
	}
L
Linus Torvalds 已提交
340 341

	if (ep->num != 0) {
342 343
		tmp |= BIT(CLEAR_ENDPOINT_TOGGLE) |
			BIT(CLEAR_ENDPOINT_HALT);
L
Linus Torvalds 已提交
344
	}
345
	writel(tmp, &ep->regs->ep_rsp);
L
Linus Torvalds 已提交
346 347

	/* scrub most status bits, and flush any fifo state */
348
	if (ep->dev->quirks & PLX_2280)
349 350
		tmp = BIT(FIFO_OVERFLOW) |
			BIT(FIFO_UNDERFLOW);
351 352 353
	else
		tmp = 0;

354 355 356 357 358 359 360 361 362 363 364 365
	writel(tmp | BIT(TIMEOUT) |
		BIT(USB_STALL_SENT) |
		BIT(USB_IN_NAK_SENT) |
		BIT(USB_IN_ACK_RCVD) |
		BIT(USB_OUT_PING_NAK_SENT) |
		BIT(USB_OUT_ACK_SENT) |
		BIT(FIFO_FLUSH) |
		BIT(SHORT_PACKET_OUT_DONE_INTERRUPT) |
		BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT) |
		BIT(DATA_PACKET_RECEIVED_INTERRUPT) |
		BIT(DATA_PACKET_TRANSMITTED_INTERRUPT) |
		BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
366 367
		BIT(DATA_IN_TOKEN_INTERRUPT),
		&ep->regs->ep_stat);
L
Linus Torvalds 已提交
368 369 370 371

	/* fifo size is handled separately */
}

372 373 374 375 376 377 378 379 380 381 382 383 384 385
static void ep_reset_338x(struct net2280_regs __iomem *regs,
					struct net2280_ep *ep)
{
	u32 tmp, dmastat;

	ep->desc = NULL;
	INIT_LIST_HEAD(&ep->queue);

	usb_ep_set_maxpacket_limit(&ep->ep, ~0);
	ep->ep.ops = &net2280_ep_ops;

	/* disable the dma, irqs, endpoint... */
	if (ep->dma) {
		writel(0, &ep->dma->dmactl);
386 387 388
		writel(BIT(DMA_ABORT_DONE_INTERRUPT) |
		       BIT(DMA_PAUSE_DONE_INTERRUPT) |
		       BIT(DMA_SCATTER_GATHER_DONE_INTERRUPT) |
389 390 391
		       BIT(DMA_TRANSACTION_DONE_INTERRUPT),
		       /* | BIT(DMA_ABORT), */
		       &ep->dma->dmastat);
392 393 394

		dmastat = readl(&ep->dma->dmastat);
		if (dmastat == 0x5002) {
395
			ep_warn(ep->dev, "The dmastat return = %x!!\n",
396 397 398 399 400
			       dmastat);
			writel(0x5a, &ep->dma->dmastat);
		}

		tmp = readl(&regs->pciirqenb0);
401
		tmp &= ~BIT(ep_bit[ep->num]);
402 403 404 405
		writel(tmp, &regs->pciirqenb0);
	} else {
		if (ep->num < 5) {
			tmp = readl(&regs->pciirqenb1);
406
			tmp &= ~BIT((8 + ep->num));	/* completion */
407 408 409 410 411
			writel(tmp, &regs->pciirqenb1);
		}
	}
	writel(0, &ep->regs->ep_irqenb);

412 413 414 415 416 417 418
	writel(BIT(SHORT_PACKET_OUT_DONE_INTERRUPT) |
	       BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT) |
	       BIT(FIFO_OVERFLOW) |
	       BIT(DATA_PACKET_RECEIVED_INTERRUPT) |
	       BIT(DATA_PACKET_TRANSMITTED_INTERRUPT) |
	       BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
	       BIT(DATA_IN_TOKEN_INTERRUPT), &ep->regs->ep_stat);
419 420
}

421
static void nuke(struct net2280_ep *);
L
Linus Torvalds 已提交
422

423
static int net2280_disable(struct usb_ep *_ep)
L
Linus Torvalds 已提交
424 425 426 427
{
	struct net2280_ep	*ep;
	unsigned long		flags;

428
	ep = container_of(_ep, struct net2280_ep, ep);
L
Linus Torvalds 已提交
429 430 431
	if (!_ep || !ep->desc || _ep->name == ep0name)
		return -EINVAL;

432 433
	spin_lock_irqsave(&ep->dev->lock, flags);
	nuke(ep);
434

435
	if (ep->dev->quirks & PLX_SUPERSPEED)
436 437 438
		ep_reset_338x(ep->dev->regs, ep);
	else
		ep_reset_228x(ep->dev->regs, ep);
L
Linus Torvalds 已提交
439

440
	ep_vdbg(ep->dev, "disabled %s %s\n",
L
Linus Torvalds 已提交
441 442 443
			ep->dma ? "dma" : "pio", _ep->name);

	/* synch memory views with the device */
444
	(void)readl(&ep->cfg->ep_cfg);
L
Linus Torvalds 已提交
445

446
	if (!ep->dma && ep->num >= 1 && ep->num <= 4)
447
		ep->dma = &ep->dev->dma[ep->num - 1];
L
Linus Torvalds 已提交
448

449
	spin_unlock_irqrestore(&ep->dev->lock, flags);
L
Linus Torvalds 已提交
450 451 452 453 454
	return 0;
}

/*-------------------------------------------------------------------------*/

455 456
static struct usb_request
*net2280_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
L
Linus Torvalds 已提交
457 458 459 460 461 462
{
	struct net2280_ep	*ep;
	struct net2280_request	*req;

	if (!_ep)
		return NULL;
463
	ep = container_of(_ep, struct net2280_ep, ep);
L
Linus Torvalds 已提交
464

465
	req = kzalloc(sizeof(*req), gfp_flags);
L
Linus Torvalds 已提交
466 467 468
	if (!req)
		return NULL;

469
	INIT_LIST_HEAD(&req->queue);
L
Linus Torvalds 已提交
470 471 472 473 474

	/* this dma descriptor may be swapped with the previous dummy */
	if (ep->dma) {
		struct net2280_dma	*td;

475
		td = pci_pool_alloc(ep->dev->requests, gfp_flags,
L
Linus Torvalds 已提交
476 477
				&req->td_dma);
		if (!td) {
478
			kfree(req);
L
Linus Torvalds 已提交
479 480 481 482 483 484 485 486 487
			return NULL;
		}
		td->dmacount = 0;	/* not VALID */
		td->dmadesc = td->dmaaddr;
		req->td = td;
	}
	return &req->req;
}

488
static void net2280_free_request(struct usb_ep *_ep, struct usb_request *_req)
L
Linus Torvalds 已提交
489 490 491 492
{
	struct net2280_ep	*ep;
	struct net2280_request	*req;

493
	ep = container_of(_ep, struct net2280_ep, ep);
L
Linus Torvalds 已提交
494 495 496
	if (!_ep || !_req)
		return;

497 498
	req = container_of(_req, struct net2280_request, req);
	WARN_ON(!list_empty(&req->queue));
L
Linus Torvalds 已提交
499
	if (req->td)
500 501
		pci_pool_free(ep->dev->requests, req->td, req->td_dma);
	kfree(req);
L
Linus Torvalds 已提交
502 503 504 505 506 507 508 509 510 511 512
}

/*-------------------------------------------------------------------------*/

/* load a packet into the fifo we use for usb IN transfers.
 * works for all endpoints.
 *
 * NOTE: pio with ep-a..ep-d could stuff multiple packets into the fifo
 * at a time, but this code is simpler because it knows it only writes
 * one packet.  ep-a..ep-d should use dma instead.
 */
513
static void write_fifo(struct net2280_ep *ep, struct usb_request *req)
L
Linus Torvalds 已提交
514 515 516 517 518 519 520 521 522 523
{
	struct net2280_ep_regs	__iomem *regs = ep->regs;
	u8			*buf;
	u32			tmp;
	unsigned		count, total;

	/* INVARIANT:  fifo is currently empty. (testable) */

	if (req) {
		buf = req->buf + req->actual;
524
		prefetch(buf);
L
Linus Torvalds 已提交
525 526 527 528 529 530 531 532 533 534 535
		total = req->length - req->actual;
	} else {
		total = 0;
		buf = NULL;
	}

	/* write just one packet at a time */
	count = ep->ep.maxpacket;
	if (count > total)	/* min() cannot be used on a bitfield */
		count = total;

536
	ep_vdbg(ep->dev, "write %s fifo (IN) %d bytes%s req %p\n",
L
Linus Torvalds 已提交
537 538 539 540 541 542 543 544
			ep->ep.name, count,
			(count != ep->ep.maxpacket) ? " (short)" : "",
			req);
	while (count >= 4) {
		/* NOTE be careful if you try to align these. fifo lines
		 * should normally be full (4 bytes) and successive partial
		 * lines are ok only in certain cases.
		 */
545 546 547
		tmp = get_unaligned((u32 *)buf);
		cpu_to_le32s(&tmp);
		writel(tmp, &regs->ep_data);
L
Linus Torvalds 已提交
548 549 550 551 552 553 554 555 556
		buf += 4;
		count -= 4;
	}

	/* last fifo entry is "short" unless we wrote a full packet.
	 * also explicitly validate last word in (periodic) transfers
	 * when maxpacket is not a multiple of 4 bytes.
	 */
	if (count || total < ep->ep.maxpacket) {
557 558 559 560
		tmp = count ? get_unaligned((u32 *)buf) : count;
		cpu_to_le32s(&tmp);
		set_fifo_bytecount(ep, count & 0x03);
		writel(tmp, &regs->ep_data);
L
Linus Torvalds 已提交
561 562 563 564 565 566 567 568 569 570 571 572
	}

	/* pci writes may still be posted */
}

/* work around erratum 0106: PCI and USB race over the OUT fifo.
 * caller guarantees chiprev 0100, out endpoint is NAKing, and
 * there's no real data in the fifo.
 *
 * NOTE:  also used in cases where that erratum doesn't apply:
 * where the host wrote "too much" data to us.
 */
573
static void out_flush(struct net2280_ep *ep)
L
Linus Torvalds 已提交
574 575 576 577 578
{
	u32	__iomem *statp;
	u32	tmp;

	statp = &ep->regs->ep_stat;
579 580 581 582 583 584 585 586

	tmp = readl(statp);
	if (tmp & BIT(NAK_OUT_PACKETS)) {
		ep_dbg(ep->dev, "%s %s %08x !NAK\n",
			ep->ep.name, __func__, tmp);
		writel(BIT(SET_NAK_OUT_PACKETS), &ep->regs->ep_rsp);
	}

587
	writel(BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
588 589
		BIT(DATA_PACKET_RECEIVED_INTERRUPT),
		statp);
590
	writel(BIT(FIFO_FLUSH), statp);
591 592 593
	/* Make sure that stap is written */
	mb();
	tmp = readl(statp);
594
	if (tmp & BIT(DATA_OUT_PING_TOKEN_INTERRUPT) &&
L
Linus Torvalds 已提交
595
			/* high speed did bulk NYET; fifo isn't filling */
596
			ep->dev->gadget.speed == USB_SPEED_FULL) {
L
Linus Torvalds 已提交
597 598 599
		unsigned	usec;

		usec = 50;		/* 64 byte bulk/interrupt */
600 601
		handshake(statp, BIT(USB_OUT_PING_NAK_SENT),
				BIT(USB_OUT_PING_NAK_SENT), usec);
L
Linus Torvalds 已提交
602 603 604 605 606 607 608 609 610 611 612
		/* NAK done; now CLEAR_NAK_OUT_PACKETS is safe */
	}
}

/* unload packet(s) from the fifo we use for usb OUT transfers.
 * returns true iff the request completed, because of short packet
 * or the request buffer having filled with full packets.
 *
 * for ep-a..ep-d this will read multiple packets out when they
 * have been accepted.
 */
613
static int read_fifo(struct net2280_ep *ep, struct net2280_request *req)
L
Linus Torvalds 已提交
614 615 616 617 618 619 620 621 622
{
	struct net2280_ep_regs	__iomem *regs = ep->regs;
	u8			*buf = req->req.buf + req->req.actual;
	unsigned		count, tmp, is_short;
	unsigned		cleanup = 0, prevent = 0;

	/* erratum 0106 ... packets coming in during fifo reads might
	 * be incompletely rejected.  not all cases have workarounds.
	 */
623 624
	if (ep->dev->chiprev == 0x0100 &&
			ep->dev->gadget.speed == USB_SPEED_FULL) {
625 626
		udelay(1);
		tmp = readl(&ep->regs->ep_stat);
627
		if ((tmp & BIT(NAK_OUT_PACKETS)))
L
Linus Torvalds 已提交
628
			cleanup = 1;
629
		else if ((tmp & BIT(FIFO_FULL))) {
630
			start_out_naking(ep);
L
Linus Torvalds 已提交
631 632 633 634 635 636 637 638
			prevent = 1;
		}
		/* else: hope we don't see the problem */
	}

	/* never overflow the rx buffer. the fifo reads packets until
	 * it sees a short one; we might not be ready for them all.
	 */
639 640 641 642 643 644
	prefetchw(buf);
	count = readl(&regs->ep_avail);
	if (unlikely(count == 0)) {
		udelay(1);
		tmp = readl(&ep->regs->ep_stat);
		count = readl(&regs->ep_avail);
L
Linus Torvalds 已提交
645
		/* handled that data already? */
646
		if (count == 0 && (tmp & BIT(NAK_OUT_PACKETS)) == 0)
L
Linus Torvalds 已提交
647 648 649 650 651 652 653
			return 0;
	}

	tmp = req->req.length - req->req.actual;
	if (count > tmp) {
		/* as with DMA, data overflow gets flushed */
		if ((tmp % ep->ep.maxpacket) != 0) {
654
			ep_err(ep->dev,
L
Linus Torvalds 已提交
655 656 657 658 659 660 661 662 663 664 665 666 667 668
				"%s out fifo %d bytes, expected %d\n",
				ep->ep.name, count, tmp);
			req->req.status = -EOVERFLOW;
			cleanup = 1;
			/* NAK_OUT_PACKETS will be set, so flushing is safe;
			 * the next read will start with the next packet
			 */
		} /* else it's a ZLP, no worries */
		count = tmp;
	}
	req->req.actual += count;

	is_short = (count == 0) || ((count % ep->ep.maxpacket) != 0);

669
	ep_vdbg(ep->dev, "read %s fifo (OUT) %d bytes%s%s%s req %p %d/%d\n",
L
Linus Torvalds 已提交
670 671 672 673 674
			ep->ep.name, count, is_short ? " (short)" : "",
			cleanup ? " flush" : "", prevent ? " nak" : "",
			req, req->req.actual, req->req.length);

	while (count >= 4) {
675 676 677
		tmp = readl(&regs->ep_data);
		cpu_to_le32s(&tmp);
		put_unaligned(tmp, (u32 *)buf);
L
Linus Torvalds 已提交
678 679 680 681
		buf += 4;
		count -= 4;
	}
	if (count) {
682
		tmp = readl(&regs->ep_data);
L
Linus Torvalds 已提交
683 684 685 686 687 688 689
		/* LE conversion is implicit here: */
		do {
			*buf++ = (u8) tmp;
			tmp >>= 8;
		} while (--count);
	}
	if (cleanup)
690
		out_flush(ep);
L
Linus Torvalds 已提交
691
	if (prevent) {
692
		writel(BIT(CLEAR_NAK_OUT_PACKETS), &ep->regs->ep_rsp);
693
		(void) readl(&ep->regs->ep_rsp);
L
Linus Torvalds 已提交
694 695
	}

696 697
	return is_short || ((req->req.actual == req->req.length) &&
			!req->req.zero);
L
Linus Torvalds 已提交
698 699 700
}

/* fill out dma descriptor to match a given request */
701 702
static void fill_dma_desc(struct net2280_ep *ep,
					struct net2280_request *req, int valid)
L
Linus Torvalds 已提交
703 704 705 706 707 708 709 710 711 712
{
	struct net2280_dma	*td = req->td;
	u32			dmacount = req->req.length;

	/* don't let DMA continue after a short OUT packet,
	 * so overruns can't affect the next transfer.
	 * in case of overruns on max-size packets, we can't
	 * stop the fifo from filling but we can flush it.
	 */
	if (ep->is_in)
713
		dmacount |= BIT(DMA_DIRECTION);
714
	if ((!ep->is_in && (dmacount % ep->ep.maxpacket) != 0) ||
715
					!(ep->dev->quirks & PLX_2280))
716
		dmacount |= BIT(END_OF_CHAIN);
L
Linus Torvalds 已提交
717 718 719

	req->valid = valid;
	if (valid)
720
		dmacount |= BIT(VALID_BIT);
721
	dmacount |= BIT(DMA_DONE_INTERRUPT_ENABLE);
L
Linus Torvalds 已提交
722 723 724 725 726

	/* td->dmadesc = previously set by caller */
	td->dmaaddr = cpu_to_le32 (req->req.dma);

	/* 2280 may be polling VALID_BIT through ep->dma->dmadesc */
727
	wmb();
728
	td->dmacount = cpu_to_le32(dmacount);
L
Linus Torvalds 已提交
729 730 731
}

static const u32 dmactl_default =
732 733
		BIT(DMA_SCATTER_GATHER_DONE_INTERRUPT) |
		BIT(DMA_CLEAR_COUNT_ENABLE) |
L
Linus Torvalds 已提交
734
		/* erratum 0116 workaround part 1 (use POLLING) */
735 736 737 738
		(POLL_100_USEC << DESCRIPTOR_POLLING_RATE) |
		BIT(DMA_VALID_BIT_POLLING_ENABLE) |
		BIT(DMA_VALID_BIT_ENABLE) |
		BIT(DMA_SCATTER_GATHER_ENABLE) |
L
Linus Torvalds 已提交
739
		/* erratum 0116 workaround part 2 (no AUTOSTART) */
740
		BIT(DMA_ENABLE);
L
Linus Torvalds 已提交
741

742
static inline void spin_stop_dma(struct net2280_dma_regs __iomem *dma)
L
Linus Torvalds 已提交
743
{
744
	handshake(&dma->dmactl, BIT(DMA_ENABLE), 0, 50);
L
Linus Torvalds 已提交
745 746
}

747
static inline void stop_dma(struct net2280_dma_regs __iomem *dma)
L
Linus Torvalds 已提交
748
{
749
	writel(readl(&dma->dmactl) & ~BIT(DMA_ENABLE), &dma->dmactl);
750
	spin_stop_dma(dma);
L
Linus Torvalds 已提交
751 752
}

753
static void start_queue(struct net2280_ep *ep, u32 dmactl, u32 td_dma)
L
Linus Torvalds 已提交
754 755
{
	struct net2280_dma_regs	__iomem *dma = ep->dma;
756
	unsigned int tmp = BIT(VALID_BIT) | (ep->is_in << DMA_DIRECTION);
L
Linus Torvalds 已提交
757

758
	if (!(ep->dev->quirks & PLX_2280))
759
		tmp |= BIT(END_OF_CHAIN);
760

761 762
	writel(tmp, &dma->dmacount);
	writel(readl(&dma->dmastat), &dma->dmastat);
L
Linus Torvalds 已提交
763

764
	writel(td_dma, &dma->dmadesc);
765
	if (ep->dev->quirks & PLX_SUPERSPEED)
766
		dmactl |= BIT(DMA_REQUEST_OUTSTANDING);
767
	writel(dmactl, &dma->dmactl);
L
Linus Torvalds 已提交
768 769

	/* erratum 0116 workaround part 3:  pci arbiter away from net2280 */
770
	(void) readl(&ep->dev->pci->pcimstctl);
L
Linus Torvalds 已提交
771

772
	writel(BIT(DMA_START), &dma->dmastat);
L
Linus Torvalds 已提交
773 774

	if (!ep->is_in)
775
		stop_out_naking(ep);
L
Linus Torvalds 已提交
776 777
}

778
static void start_dma(struct net2280_ep *ep, struct net2280_request *req)
L
Linus Torvalds 已提交
779 780 781 782 783 784 785
{
	u32			tmp;
	struct net2280_dma_regs	__iomem *dma = ep->dma;

	/* FIXME can't use DMA for ZLPs */

	/* on this path we "know" there's no dma active (yet) */
786
	WARN_ON(readl(&dma->dmactl) & BIT(DMA_ENABLE));
787
	writel(0, &ep->dma->dmactl);
L
Linus Torvalds 已提交
788 789

	/* previous OUT packet might have been short */
790 791
	if (!ep->is_in && (readl(&ep->regs->ep_stat) &
				BIT(NAK_OUT_PACKETS))) {
792
		writel(BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT),
L
Linus Torvalds 已提交
793 794
			&ep->regs->ep_stat);

795
		tmp = readl(&ep->regs->ep_avail);
L
Linus Torvalds 已提交
796
		if (tmp) {
797
			writel(readl(&dma->dmastat), &dma->dmastat);
L
Linus Torvalds 已提交
798 799

			/* transfer all/some fifo data */
800 801
			writel(req->req.dma, &dma->dmaaddr);
			tmp = min(tmp, req->req.length);
L
Linus Torvalds 已提交
802 803

			/* dma irq, faking scatterlist status */
804
			req->td->dmacount = cpu_to_le32(req->req.length - tmp);
805 806
			writel(BIT(DMA_DONE_INTERRUPT_ENABLE) | tmp,
					&dma->dmacount);
L
Linus Torvalds 已提交
807 808 809
			req->td->dmadesc = 0;
			req->valid = 1;

810 811
			writel(BIT(DMA_ENABLE), &dma->dmactl);
			writel(BIT(DMA_START), &dma->dmastat);
L
Linus Torvalds 已提交
812 813 814 815 816 817 818 819 820 821 822
			return;
		}
	}

	tmp = dmactl_default;

	/* force packet boundaries between dma requests, but prevent the
	 * controller from automagically writing a last "short" packet
	 * (zero length) unless the driver explicitly said to do that.
	 */
	if (ep->is_in) {
823 824
		if (likely((req->req.length % ep->ep.maxpacket) ||
							req->req.zero)){
825
			tmp |= BIT(DMA_FIFO_VALIDATE);
L
Linus Torvalds 已提交
826 827 828 829 830 831 832
			ep->in_fifo_validate = 1;
		} else
			ep->in_fifo_validate = 0;
	}

	/* init req->td, pointing to the current dummy */
	req->td->dmadesc = cpu_to_le32 (ep->td_dma);
833
	fill_dma_desc(ep, req, 1);
L
Linus Torvalds 已提交
834

835
	req->td->dmacount |= cpu_to_le32(BIT(END_OF_CHAIN));
L
Linus Torvalds 已提交
836

837
	start_queue(ep, tmp, req->td_dma);
L
Linus Torvalds 已提交
838 839 840
}

static inline void
841
queue_dma(struct net2280_ep *ep, struct net2280_request *req, int valid)
L
Linus Torvalds 已提交
842 843 844 845 846 847 848 849 850 851 852 853 854 855 856
{
	struct net2280_dma	*end;
	dma_addr_t		tmp;

	/* swap new dummy for old, link; fill and maybe activate */
	end = ep->dummy;
	ep->dummy = req->td;
	req->td = end;

	tmp = ep->td_dma;
	ep->td_dma = req->td_dma;
	req->td_dma = tmp;

	end->dmadesc = cpu_to_le32 (ep->td_dma);

857
	fill_dma_desc(ep, req, valid);
L
Linus Torvalds 已提交
858 859 860
}

static void
861
done(struct net2280_ep *ep, struct net2280_request *req, int status)
L
Linus Torvalds 已提交
862 863 864 865
{
	struct net2280		*dev;
	unsigned		stopped = ep->stopped;

866
	list_del_init(&req->queue);
L
Linus Torvalds 已提交
867 868 869 870 871 872 873

	if (req->req.status == -EINPROGRESS)
		req->req.status = status;
	else
		status = req->req.status;

	dev = ep->dev;
874 875
	if (ep->dma)
		usb_gadget_unmap_request(&dev->gadget, &req->req, ep->is_in);
L
Linus Torvalds 已提交
876 877

	if (status && status != -ESHUTDOWN)
878
		ep_vdbg(dev, "complete %s req %p stat %d len %u/%u\n",
L
Linus Torvalds 已提交
879 880 881 882 883
			ep->ep.name, &req->req, status,
			req->req.actual, req->req.length);

	/* don't modify queue heads during completion callback */
	ep->stopped = 1;
884
	spin_unlock(&dev->lock);
885
	usb_gadget_giveback_request(&ep->ep, &req->req);
886
	spin_lock(&dev->lock);
L
Linus Torvalds 已提交
887 888 889 890 891 892
	ep->stopped = stopped;
}

/*-------------------------------------------------------------------------*/

static int
893
net2280_queue(struct usb_ep *_ep, struct usb_request *_req, gfp_t gfp_flags)
L
Linus Torvalds 已提交
894 895 896 897 898 899 900 901 902
{
	struct net2280_request	*req;
	struct net2280_ep	*ep;
	struct net2280		*dev;
	unsigned long		flags;

	/* we always require a cpu-view buffer, so that we can
	 * always use pio (as fallback or whatever).
	 */
903 904 905
	req = container_of(_req, struct net2280_request, req);
	if (!_req || !_req->complete || !_req->buf ||
				!list_empty(&req->queue))
L
Linus Torvalds 已提交
906 907 908
		return -EINVAL;
	if (_req->length > (~0 & DMA_BYTE_COUNT_MASK))
		return -EDOM;
909
	ep = container_of(_ep, struct net2280_ep, ep);
L
Linus Torvalds 已提交
910 911 912 913 914 915 916 917 918 919 920
	if (!_ep || (!ep->desc && ep->num != 0))
		return -EINVAL;
	dev = ep->dev;
	if (!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN)
		return -ESHUTDOWN;

	/* FIXME implement PIO fallback for ZLPs with DMA */
	if (ep->dma && _req->length == 0)
		return -EOPNOTSUPP;

	/* set up dma mapping in case the caller didn't */
921 922 923 924 925 926 927
	if (ep->dma) {
		int ret;

		ret = usb_gadget_map_request(&dev->gadget, _req,
				ep->is_in);
		if (ret)
			return ret;
L
Linus Torvalds 已提交
928 929
	}

930
	ep_vdbg(dev, "%s queue req %p, len %d buf %p\n",
L
Linus Torvalds 已提交
931 932
			_ep->name, _req, _req->length, _req->buf);

933
	spin_lock_irqsave(&dev->lock, flags);
L
Linus Torvalds 已提交
934 935 936 937 938

	_req->status = -EINPROGRESS;
	_req->actual = 0;

	/* kickstart this i/o queue? */
939 940 941 942
	if  (list_empty(&ep->queue) && !ep->stopped &&
		!((dev->quirks & PLX_SUPERSPEED) && ep->dma &&
		  (readl(&ep->regs->ep_rsp) & BIT(CLEAR_ENDPOINT_HALT)))) {

L
Linus Torvalds 已提交
943
		/* use DMA if the endpoint supports it, else pio */
944
		if (ep->dma)
945
			start_dma(ep, req);
L
Linus Torvalds 已提交
946 947 948
		else {
			/* maybe there's no control data, just status ack */
			if (ep->num == 0 && _req->length == 0) {
949 950
				allow_status(ep);
				done(ep, req, 0);
951
				ep_vdbg(dev, "%s status ack\n", ep->ep.name);
L
Linus Torvalds 已提交
952 953 954 955 956
				goto done;
			}

			/* PIO ... stuff the fifo, or unblock it.  */
			if (ep->is_in)
957 958
				write_fifo(ep, _req);
			else if (list_empty(&ep->queue)) {
L
Linus Torvalds 已提交
959 960 961
				u32	s;

				/* OUT FIFO might have packet(s) buffered */
962
				s = readl(&ep->regs->ep_stat);
963
				if ((s & BIT(FIFO_EMPTY)) == 0) {
L
Linus Torvalds 已提交
964 965 966 967 968 969
					/* note:  _req->short_not_ok is
					 * ignored here since PIO _always_
					 * stops queue advance here, and
					 * _req->status doesn't change for
					 * short reads (only _req->actual)
					 */
970 971 972 973
					if (read_fifo(ep, req) &&
							ep->num == 0) {
						done(ep, req, 0);
						allow_status(ep);
L
Linus Torvalds 已提交
974 975
						/* don't queue it */
						req = NULL;
976 977 978 979
					} else if (read_fifo(ep, req) &&
							ep->num != 0) {
						done(ep, req, 0);
						req = NULL;
L
Linus Torvalds 已提交
980
					} else
981
						s = readl(&ep->regs->ep_stat);
L
Linus Torvalds 已提交
982 983 984
				}

				/* don't NAK, let the fifo fill */
985 986
				if (req && (s & BIT(NAK_OUT_PACKETS)))
					writel(BIT(CLEAR_NAK_OUT_PACKETS),
L
Linus Torvalds 已提交
987 988 989 990 991 992 993 994 995 996 997 998 999
							&ep->regs->ep_rsp);
			}
		}

	} else if (ep->dma) {
		int	valid = 1;

		if (ep->is_in) {
			int	expect;

			/* preventing magic zlps is per-engine state, not
			 * per-transfer; irq logic must recover hiccups.
			 */
1000 1001
			expect = likely(req->req.zero ||
				(req->req.length % ep->ep.maxpacket));
L
Linus Torvalds 已提交
1002 1003 1004
			if (expect != ep->in_fifo_validate)
				valid = 0;
		}
1005
		queue_dma(ep, req, valid);
L
Linus Torvalds 已提交
1006 1007 1008

	} /* else the irq handler advances the queue. */

1009
	ep->responded = 1;
L
Linus Torvalds 已提交
1010
	if (req)
1011
		list_add_tail(&req->queue, &ep->queue);
L
Linus Torvalds 已提交
1012
done:
1013
	spin_unlock_irqrestore(&dev->lock, flags);
L
Linus Torvalds 已提交
1014 1015 1016 1017 1018 1019

	/* pci writes may still be posted */
	return 0;
}

static inline void
1020 1021
dma_done(struct net2280_ep *ep,	struct net2280_request *req, u32 dmacount,
		int status)
L
Linus Torvalds 已提交
1022 1023
{
	req->req.actual = req->req.length - (DMA_BYTE_COUNT_MASK & dmacount);
1024
	done(ep, req, status);
L
Linus Torvalds 已提交
1025 1026
}

1027
static void scan_dma_completions(struct net2280_ep *ep)
L
Linus Torvalds 已提交
1028 1029 1030 1031
{
	/* only look at descriptors that were "naturally" retired,
	 * so fifo and list head state won't matter
	 */
1032
	while (!list_empty(&ep->queue)) {
L
Linus Torvalds 已提交
1033 1034 1035
		struct net2280_request	*req;
		u32			tmp;

1036
		req = list_entry(ep->queue.next,
L
Linus Torvalds 已提交
1037 1038 1039
				struct net2280_request, queue);
		if (!req->valid)
			break;
1040 1041
		rmb();
		tmp = le32_to_cpup(&req->td->dmacount);
1042
		if ((tmp & BIT(VALID_BIT)) != 0)
L
Linus Torvalds 已提交
1043 1044 1045 1046 1047 1048
			break;

		/* SHORT_PACKET_TRANSFERRED_INTERRUPT handles "usb-short"
		 * cases where DMA must be aborted; this code handles
		 * all non-abort DMA completions.
		 */
1049
		if (unlikely(req->td->dmadesc == 0)) {
L
Linus Torvalds 已提交
1050
			/* paranoia */
1051
			tmp = readl(&ep->dma->dmacount);
L
Linus Torvalds 已提交
1052 1053 1054
			if (tmp & DMA_BYTE_COUNT_MASK)
				break;
			/* single transfer mode */
1055
			dma_done(ep, req, tmp, 0);
L
Linus Torvalds 已提交
1056
			break;
1057
		} else if (!ep->is_in &&
1058 1059
			   (req->req.length % ep->ep.maxpacket) &&
			   !(ep->dev->quirks & PLX_SUPERSPEED)) {
L
Linus Torvalds 已提交
1060

1061
			tmp = readl(&ep->regs->ep_stat);
L
Linus Torvalds 已提交
1062 1063 1064 1065
			/* AVOID TROUBLE HERE by not issuing short reads from
			 * your gadget driver.  That helps avoids errata 0121,
			 * 0122, and 0124; not all cases trigger the warning.
			 */
1066
			if ((tmp & BIT(NAK_OUT_PACKETS)) == 0) {
1067
				ep_warn(ep->dev, "%s lost packet sync!\n",
L
Linus Torvalds 已提交
1068 1069
						ep->ep.name);
				req->req.status = -EOVERFLOW;
1070 1071 1072 1073 1074
			} else {
				tmp = readl(&ep->regs->ep_avail);
				if (tmp) {
					/* fifo gets flushed later */
					ep->out_overflow = 1;
1075
					ep_dbg(ep->dev,
1076
						"%s dma, discard %d len %d\n",
L
Linus Torvalds 已提交
1077 1078
						ep->ep.name, tmp,
						req->req.length);
1079 1080
					req->req.status = -EOVERFLOW;
				}
L
Linus Torvalds 已提交
1081 1082
			}
		}
1083
		dma_done(ep, req, tmp, 0);
L
Linus Torvalds 已提交
1084 1085 1086
	}
}

1087
static void restart_dma(struct net2280_ep *ep)
L
Linus Torvalds 已提交
1088 1089 1090 1091 1092
{
	struct net2280_request	*req;

	if (ep->stopped)
		return;
1093
	req = list_entry(ep->queue.next, struct net2280_request, queue);
L
Linus Torvalds 已提交
1094

1095
	start_dma(ep, req);
L
Linus Torvalds 已提交
1096 1097
}

1098
static void abort_dma(struct net2280_ep *ep)
L
Linus Torvalds 已提交
1099 1100
{
	/* abort the current transfer */
1101
	if (likely(!list_empty(&ep->queue))) {
L
Linus Torvalds 已提交
1102
		/* FIXME work around errata 0121, 0122, 0124 */
1103
		writel(BIT(DMA_ABORT), &ep->dma->dmastat);
1104
		spin_stop_dma(ep->dma);
L
Linus Torvalds 已提交
1105
	} else
1106 1107
		stop_dma(ep->dma);
	scan_dma_completions(ep);
L
Linus Torvalds 已提交
1108 1109 1110
}

/* dequeue ALL requests */
1111
static void nuke(struct net2280_ep *ep)
L
Linus Torvalds 已提交
1112 1113 1114 1115 1116 1117
{
	struct net2280_request	*req;

	/* called with spinlock held */
	ep->stopped = 1;
	if (ep->dma)
1118 1119 1120
		abort_dma(ep);
	while (!list_empty(&ep->queue)) {
		req = list_entry(ep->queue.next,
L
Linus Torvalds 已提交
1121 1122
				struct net2280_request,
				queue);
1123
		done(ep, req, -ESHUTDOWN);
L
Linus Torvalds 已提交
1124 1125 1126 1127
	}
}

/* dequeue JUST ONE request */
1128
static int net2280_dequeue(struct usb_ep *_ep, struct usb_request *_req)
L
Linus Torvalds 已提交
1129 1130 1131 1132 1133 1134 1135
{
	struct net2280_ep	*ep;
	struct net2280_request	*req;
	unsigned long		flags;
	u32			dmactl;
	int			stopped;

1136
	ep = container_of(_ep, struct net2280_ep, ep);
L
Linus Torvalds 已提交
1137 1138 1139
	if (!_ep || (!ep->desc && ep->num != 0) || !_req)
		return -EINVAL;

1140
	spin_lock_irqsave(&ep->dev->lock, flags);
L
Linus Torvalds 已提交
1141 1142 1143 1144 1145 1146
	stopped = ep->stopped;

	/* quiesce dma while we patch the queue */
	dmactl = 0;
	ep->stopped = 1;
	if (ep->dma) {
1147
		dmactl = readl(&ep->dma->dmactl);
L
Linus Torvalds 已提交
1148
		/* WARNING erratum 0127 may kick in ... */
1149 1150
		stop_dma(ep->dma);
		scan_dma_completions(ep);
L
Linus Torvalds 已提交
1151 1152 1153
	}

	/* make sure it's still queued on this endpoint */
1154
	list_for_each_entry(req, &ep->queue, queue) {
L
Linus Torvalds 已提交
1155 1156 1157 1158
		if (&req->req == _req)
			break;
	}
	if (&req->req != _req) {
1159
		spin_unlock_irqrestore(&ep->dev->lock, flags);
L
Linus Torvalds 已提交
1160 1161 1162 1163 1164 1165
		return -EINVAL;
	}

	/* queue head may be partially complete. */
	if (ep->queue.next == &req->queue) {
		if (ep->dma) {
1166
			ep_dbg(ep->dev, "unlink (%s) dma\n", _ep->name);
L
Linus Torvalds 已提交
1167
			_req->status = -ECONNRESET;
1168 1169 1170
			abort_dma(ep);
			if (likely(ep->queue.next == &req->queue)) {
				/* NOTE: misreports single-transfer mode*/
L
Linus Torvalds 已提交
1171
				req->td->dmacount = 0;	/* invalidate */
1172 1173
				dma_done(ep, req,
					readl(&ep->dma->dmacount),
L
Linus Torvalds 已提交
1174 1175 1176
					-ECONNRESET);
			}
		} else {
1177
			ep_dbg(ep->dev, "unlink (%s) pio\n", _ep->name);
1178
			done(ep, req, -ECONNRESET);
L
Linus Torvalds 已提交
1179 1180 1181 1182 1183
		}
		req = NULL;
	}

	if (req)
1184
		done(ep, req, -ECONNRESET);
L
Linus Torvalds 已提交
1185 1186 1187 1188
	ep->stopped = stopped;

	if (ep->dma) {
		/* turn off dma on inactive queues */
1189 1190
		if (list_empty(&ep->queue))
			stop_dma(ep->dma);
L
Linus Torvalds 已提交
1191 1192 1193
		else if (!ep->stopped) {
			/* resume current request, or start new one */
			if (req)
1194
				writel(dmactl, &ep->dma->dmactl);
L
Linus Torvalds 已提交
1195
			else
1196
				start_dma(ep, list_entry(ep->queue.next,
L
Linus Torvalds 已提交
1197 1198 1199 1200
					struct net2280_request, queue));
		}
	}

1201
	spin_unlock_irqrestore(&ep->dev->lock, flags);
L
Linus Torvalds 已提交
1202 1203 1204 1205 1206
	return 0;
}

/*-------------------------------------------------------------------------*/

1207
static int net2280_fifo_status(struct usb_ep *_ep);
L
Linus Torvalds 已提交
1208 1209

static int
1210
net2280_set_halt_and_wedge(struct usb_ep *_ep, int value, int wedged)
L
Linus Torvalds 已提交
1211 1212 1213 1214 1215
{
	struct net2280_ep	*ep;
	unsigned long		flags;
	int			retval = 0;

1216
	ep = container_of(_ep, struct net2280_ep, ep);
L
Linus Torvalds 已提交
1217 1218 1219 1220 1221 1222 1223 1224
	if (!_ep || (!ep->desc && ep->num != 0))
		return -EINVAL;
	if (!ep->dev->driver || ep->dev->gadget.speed == USB_SPEED_UNKNOWN)
		return -ESHUTDOWN;
	if (ep->desc /* not ep0 */ && (ep->desc->bmAttributes & 0x03)
						== USB_ENDPOINT_XFER_ISOC)
		return -EINVAL;

1225 1226
	spin_lock_irqsave(&ep->dev->lock, flags);
	if (!list_empty(&ep->queue))
L
Linus Torvalds 已提交
1227
		retval = -EAGAIN;
1228
	else if (ep->is_in && value && net2280_fifo_status(_ep) != 0)
L
Linus Torvalds 已提交
1229 1230
		retval = -EAGAIN;
	else {
1231
		ep_vdbg(ep->dev, "%s %s %s\n", _ep->name,
1232 1233
				value ? "set" : "clear",
				wedged ? "wedge" : "halt");
L
Linus Torvalds 已提交
1234 1235 1236 1237 1238
		/* set/clear, then synch memory views with the device */
		if (value) {
			if (ep->num == 0)
				ep->dev->protocol_stall = 1;
			else
1239
				set_halt(ep);
1240 1241 1242
			if (wedged)
				ep->wedged = 1;
		} else {
1243
			clear_halt(ep);
1244
			if (ep->dev->quirks & PLX_SUPERSPEED &&
1245 1246
				!list_empty(&ep->queue) && ep->td_dma)
					restart_dma(ep);
1247 1248
			ep->wedged = 0;
		}
1249
		(void) readl(&ep->regs->ep_rsp);
L
Linus Torvalds 已提交
1250
	}
1251
	spin_unlock_irqrestore(&ep->dev->lock, flags);
L
Linus Torvalds 已提交
1252 1253 1254 1255

	return retval;
}

1256
static int net2280_set_halt(struct usb_ep *_ep, int value)
1257 1258 1259 1260
{
	return net2280_set_halt_and_wedge(_ep, value, 0);
}

1261
static int net2280_set_wedge(struct usb_ep *_ep)
1262 1263 1264 1265 1266 1267
{
	if (!_ep || _ep->name == ep0name)
		return -EINVAL;
	return net2280_set_halt_and_wedge(_ep, 1, 1);
}

1268
static int net2280_fifo_status(struct usb_ep *_ep)
L
Linus Torvalds 已提交
1269 1270 1271 1272
{
	struct net2280_ep	*ep;
	u32			avail;

1273
	ep = container_of(_ep, struct net2280_ep, ep);
L
Linus Torvalds 已提交
1274 1275 1276 1277 1278
	if (!_ep || (!ep->desc && ep->num != 0))
		return -ENODEV;
	if (!ep->dev->driver || ep->dev->gadget.speed == USB_SPEED_UNKNOWN)
		return -ESHUTDOWN;

1279
	avail = readl(&ep->regs->ep_avail) & (BIT(12) - 1);
L
Linus Torvalds 已提交
1280 1281 1282 1283 1284 1285 1286
	if (avail > ep->fifo_size)
		return -EOVERFLOW;
	if (ep->is_in)
		avail = ep->fifo_size - avail;
	return avail;
}

1287
static void net2280_fifo_flush(struct usb_ep *_ep)
L
Linus Torvalds 已提交
1288 1289 1290
{
	struct net2280_ep	*ep;

1291
	ep = container_of(_ep, struct net2280_ep, ep);
L
Linus Torvalds 已提交
1292 1293 1294 1295 1296
	if (!_ep || (!ep->desc && ep->num != 0))
		return;
	if (!ep->dev->driver || ep->dev->gadget.speed == USB_SPEED_UNKNOWN)
		return;

1297
	writel(BIT(FIFO_FLUSH), &ep->regs->ep_stat);
1298
	(void) readl(&ep->regs->ep_rsp);
L
Linus Torvalds 已提交
1299 1300
}

1301
static const struct usb_ep_ops net2280_ep_ops = {
L
Linus Torvalds 已提交
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
	.enable		= net2280_enable,
	.disable	= net2280_disable,

	.alloc_request	= net2280_alloc_request,
	.free_request	= net2280_free_request,

	.queue		= net2280_queue,
	.dequeue	= net2280_dequeue,

	.set_halt	= net2280_set_halt,
1312
	.set_wedge	= net2280_set_wedge,
L
Linus Torvalds 已提交
1313 1314 1315 1316 1317 1318
	.fifo_status	= net2280_fifo_status,
	.fifo_flush	= net2280_fifo_flush,
};

/*-------------------------------------------------------------------------*/

1319
static int net2280_get_frame(struct usb_gadget *_gadget)
L
Linus Torvalds 已提交
1320 1321 1322 1323 1324 1325 1326
{
	struct net2280		*dev;
	unsigned long		flags;
	u16			retval;

	if (!_gadget)
		return -ENODEV;
1327 1328 1329 1330
	dev = container_of(_gadget, struct net2280, gadget);
	spin_lock_irqsave(&dev->lock, flags);
	retval = get_idx_reg(dev->regs, REG_FRAME) & 0x03ff;
	spin_unlock_irqrestore(&dev->lock, flags);
L
Linus Torvalds 已提交
1331 1332 1333
	return retval;
}

1334
static int net2280_wakeup(struct usb_gadget *_gadget)
L
Linus Torvalds 已提交
1335 1336 1337 1338 1339 1340 1341
{
	struct net2280		*dev;
	u32			tmp;
	unsigned long		flags;

	if (!_gadget)
		return 0;
1342
	dev = container_of(_gadget, struct net2280, gadget);
L
Linus Torvalds 已提交
1343

1344 1345
	spin_lock_irqsave(&dev->lock, flags);
	tmp = readl(&dev->usb->usbctl);
1346 1347
	if (tmp & BIT(DEVICE_REMOTE_WAKEUP_ENABLE))
		writel(BIT(GENERATE_RESUME), &dev->usb->usbstat);
1348
	spin_unlock_irqrestore(&dev->lock, flags);
L
Linus Torvalds 已提交
1349 1350 1351 1352 1353

	/* pci writes may still be posted */
	return 0;
}

1354
static int net2280_set_selfpowered(struct usb_gadget *_gadget, int value)
L
Linus Torvalds 已提交
1355 1356 1357 1358 1359 1360 1361
{
	struct net2280		*dev;
	u32			tmp;
	unsigned long		flags;

	if (!_gadget)
		return 0;
1362
	dev = container_of(_gadget, struct net2280, gadget);
L
Linus Torvalds 已提交
1363

1364 1365
	spin_lock_irqsave(&dev->lock, flags);
	tmp = readl(&dev->usb->usbctl);
1366
	if (value) {
1367
		tmp |= BIT(SELF_POWERED_STATUS);
1368
		_gadget->is_selfpowered = 1;
1369
	} else {
1370
		tmp &= ~BIT(SELF_POWERED_STATUS);
1371
		_gadget->is_selfpowered = 0;
1372
	}
1373 1374
	writel(tmp, &dev->usb->usbctl);
	spin_unlock_irqrestore(&dev->lock, flags);
L
Linus Torvalds 已提交
1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386

	return 0;
}

static int net2280_pullup(struct usb_gadget *_gadget, int is_on)
{
	struct net2280  *dev;
	u32             tmp;
	unsigned long   flags;

	if (!_gadget)
		return -ENODEV;
1387
	dev = container_of(_gadget, struct net2280, gadget);
L
Linus Torvalds 已提交
1388

1389 1390
	spin_lock_irqsave(&dev->lock, flags);
	tmp = readl(&dev->usb->usbctl);
L
Linus Torvalds 已提交
1391 1392
	dev->softconnect = (is_on != 0);
	if (is_on)
1393
		tmp |= BIT(USB_DETECT_ENABLE);
L
Linus Torvalds 已提交
1394
	else
1395
		tmp &= ~BIT(USB_DETECT_ENABLE);
1396 1397
	writel(tmp, &dev->usb->usbctl);
	spin_unlock_irqrestore(&dev->lock, flags);
L
Linus Torvalds 已提交
1398 1399 1400 1401

	return 0;
}

1402 1403
static int net2280_start(struct usb_gadget *_gadget,
		struct usb_gadget_driver *driver);
1404
static int net2280_stop(struct usb_gadget *_gadget);
1405

L
Linus Torvalds 已提交
1406 1407 1408 1409 1410
static const struct usb_gadget_ops net2280_ops = {
	.get_frame	= net2280_get_frame,
	.wakeup		= net2280_wakeup,
	.set_selfpowered = net2280_set_selfpowered,
	.pullup		= net2280_pullup,
1411 1412
	.udc_start	= net2280_start,
	.udc_stop	= net2280_stop,
L
Linus Torvalds 已提交
1413 1414 1415 1416
};

/*-------------------------------------------------------------------------*/

1417
#ifdef	CONFIG_USB_GADGET_DEBUG_FILES
L
Linus Torvalds 已提交
1418 1419 1420 1421 1422 1423 1424

/* FIXME move these into procfs, and use seq_file.
 * Sysfs _still_ doesn't behave for arbitrarily sized files,
 * and also doesn't help products using this with 2.4 kernels.
 */

/* "function" sysfs attribute */
1425 1426
static ssize_t function_show(struct device *_dev, struct device_attribute *attr,
			     char *buf)
L
Linus Torvalds 已提交
1427
{
1428
	struct net2280	*dev = dev_get_drvdata(_dev);
L
Linus Torvalds 已提交
1429

1430 1431
	if (!dev->driver || !dev->driver->function ||
			strlen(dev->driver->function) > PAGE_SIZE)
L
Linus Torvalds 已提交
1432
		return 0;
1433
	return scnprintf(buf, PAGE_SIZE, "%s\n", dev->driver->function);
L
Linus Torvalds 已提交
1434
}
1435
static DEVICE_ATTR_RO(function);
L
Linus Torvalds 已提交
1436

1437 1438
static ssize_t registers_show(struct device *_dev,
			      struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
1439 1440 1441 1442 1443 1444 1445
{
	struct net2280		*dev;
	char			*next;
	unsigned		size, t;
	unsigned long		flags;
	int			i;
	u32			t1, t2;
A
Andrew Morton 已提交
1446
	const char		*s;
L
Linus Torvalds 已提交
1447

1448
	dev = dev_get_drvdata(_dev);
L
Linus Torvalds 已提交
1449 1450
	next = buf;
	size = PAGE_SIZE;
1451
	spin_lock_irqsave(&dev->lock, flags);
L
Linus Torvalds 已提交
1452 1453 1454 1455 1456 1457 1458

	if (dev->driver)
		s = dev->driver->driver.name;
	else
		s = "(none)";

	/* Main Control Registers */
1459
	t = scnprintf(next, size, "%s version " DRIVER_VERSION
1460
			", chiprev %04x\n\n"
L
Linus Torvalds 已提交
1461 1462 1463 1464
			"devinit %03x fifoctl %08x gadget '%s'\n"
			"pci irqenb0 %02x irqenb1 %08x "
			"irqstat0 %04x irqstat1 %08x\n",
			driver_name, dev->chiprev,
1465 1466
			readl(&dev->regs->devinit),
			readl(&dev->regs->fifoctl),
L
Linus Torvalds 已提交
1467
			s,
1468 1469 1470 1471
			readl(&dev->regs->pciirqenb0),
			readl(&dev->regs->pciirqenb1),
			readl(&dev->regs->irqstat0),
			readl(&dev->regs->irqstat1));
L
Linus Torvalds 已提交
1472 1473 1474 1475
	size -= t;
	next += t;

	/* USB Control Registers */
1476 1477
	t1 = readl(&dev->usb->usbctl);
	t2 = readl(&dev->usb->usbstat);
1478 1479
	if (t1 & BIT(VBUS_PIN)) {
		if (t2 & BIT(HIGH_SPEED))
L
Linus Torvalds 已提交
1480 1481 1482 1483 1484 1485 1486 1487
			s = "high speed";
		else if (dev->gadget.speed == USB_SPEED_UNKNOWN)
			s = "powered";
		else
			s = "full speed";
		/* full speed bit (6) not working?? */
	} else
			s = "not attached";
1488
	t = scnprintf(next, size,
L
Linus Torvalds 已提交
1489 1490
			"stdrsp %08x usbctl %08x usbstat %08x "
				"addr 0x%02x (%s)\n",
1491 1492
			readl(&dev->usb->stdrsp), t1, t2,
			readl(&dev->usb->ouraddr), s);
L
Linus Torvalds 已提交
1493 1494 1495 1496 1497 1498 1499 1500
	size -= t;
	next += t;

	/* PCI Master Control Registers */

	/* DMA Control Registers */

	/* Configurable EP Control Registers */
1501
	for (i = 0; i < dev->n_ep; i++) {
L
Linus Torvalds 已提交
1502 1503
		struct net2280_ep	*ep;

1504
		ep = &dev->ep[i];
L
Linus Torvalds 已提交
1505 1506 1507
		if (i && !ep->desc)
			continue;

1508
		t1 = readl(&ep->cfg->ep_cfg);
1509 1510
		t2 = readl(&ep->regs->ep_rsp) & 0xff;
		t = scnprintf(next, size,
L
Linus Torvalds 已提交
1511 1512 1513
				"\n%s\tcfg %05x rsp (%02x) %s%s%s%s%s%s%s%s"
					"irqenb %02x\n",
				ep->ep.name, t1, t2,
1514
				(t2 & BIT(CLEAR_NAK_OUT_PACKETS))
L
Linus Torvalds 已提交
1515
					? "NAK " : "",
1516
				(t2 & BIT(CLEAR_EP_HIDE_STATUS_PHASE))
L
Linus Torvalds 已提交
1517
					? "hide " : "",
1518
				(t2 & BIT(CLEAR_EP_FORCE_CRC_ERROR))
L
Linus Torvalds 已提交
1519
					? "CRC " : "",
1520
				(t2 & BIT(CLEAR_INTERRUPT_MODE))
L
Linus Torvalds 已提交
1521
					? "interrupt " : "",
1522
				(t2 & BIT(CLEAR_CONTROL_STATUS_PHASE_HANDSHAKE))
L
Linus Torvalds 已提交
1523
					? "status " : "",
1524
				(t2 & BIT(CLEAR_NAK_OUT_PACKETS_MODE))
L
Linus Torvalds 已提交
1525
					? "NAKmode " : "",
1526
				(t2 & BIT(CLEAR_ENDPOINT_TOGGLE))
L
Linus Torvalds 已提交
1527
					? "DATA1 " : "DATA0 ",
1528
				(t2 & BIT(CLEAR_ENDPOINT_HALT))
L
Linus Torvalds 已提交
1529
					? "HALT " : "",
1530
				readl(&ep->regs->ep_irqenb));
L
Linus Torvalds 已提交
1531 1532 1533
		size -= t;
		next += t;

1534
		t = scnprintf(next, size,
L
Linus Torvalds 已提交
1535 1536
				"\tstat %08x avail %04x "
				"(ep%d%s-%s)%s\n",
1537 1538 1539 1540
				readl(&ep->regs->ep_stat),
				readl(&ep->regs->ep_avail),
				t1 & 0x0f, DIR_STRING(t1),
				type_string(t1 >> 8),
L
Linus Torvalds 已提交
1541 1542 1543 1544 1545 1546 1547
				ep->stopped ? "*" : "");
		size -= t;
		next += t;

		if (!ep->dma)
			continue;

1548
		t = scnprintf(next, size,
L
Linus Torvalds 已提交
1549 1550
				"  dma\tctl %08x stat %08x count %08x\n"
				"\taddr %08x desc %08x\n",
1551 1552 1553 1554 1555
				readl(&ep->dma->dmactl),
				readl(&ep->dma->dmastat),
				readl(&ep->dma->dmacount),
				readl(&ep->dma->dmaaddr),
				readl(&ep->dma->dmadesc));
L
Linus Torvalds 已提交
1556 1557 1558 1559 1560
		size -= t;
		next += t;

	}

1561
	/* Indexed Registers (none yet) */
L
Linus Torvalds 已提交
1562 1563

	/* Statistics */
1564
	t = scnprintf(next, size, "\nirqs:  ");
L
Linus Torvalds 已提交
1565 1566
	size -= t;
	next += t;
1567
	for (i = 0; i < dev->n_ep; i++) {
L
Linus Torvalds 已提交
1568 1569
		struct net2280_ep	*ep;

1570
		ep = &dev->ep[i];
L
Linus Torvalds 已提交
1571 1572
		if (i && !ep->irqs)
			continue;
1573
		t = scnprintf(next, size, " %s/%lu", ep->ep.name, ep->irqs);
L
Linus Torvalds 已提交
1574 1575 1576 1577
		size -= t;
		next += t;

	}
1578
	t = scnprintf(next, size, "\n");
L
Linus Torvalds 已提交
1579 1580 1581
	size -= t;
	next += t;

1582
	spin_unlock_irqrestore(&dev->lock, flags);
L
Linus Torvalds 已提交
1583 1584 1585

	return PAGE_SIZE - size;
}
1586
static DEVICE_ATTR_RO(registers);
L
Linus Torvalds 已提交
1587

1588 1589
static ssize_t queues_show(struct device *_dev, struct device_attribute *attr,
			   char *buf)
L
Linus Torvalds 已提交
1590 1591 1592 1593 1594 1595 1596
{
	struct net2280		*dev;
	char			*next;
	unsigned		size;
	unsigned long		flags;
	int			i;

1597
	dev = dev_get_drvdata(_dev);
L
Linus Torvalds 已提交
1598 1599
	next = buf;
	size = PAGE_SIZE;
1600
	spin_lock_irqsave(&dev->lock, flags);
L
Linus Torvalds 已提交
1601

1602
	for (i = 0; i < dev->n_ep; i++) {
1603
		struct net2280_ep		*ep = &dev->ep[i];
L
Linus Torvalds 已提交
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613
		struct net2280_request		*req;
		int				t;

		if (i != 0) {
			const struct usb_endpoint_descriptor	*d;

			d = ep->desc;
			if (!d)
				continue;
			t = d->bEndpointAddress;
1614
			t = scnprintf(next, size,
L
Linus Torvalds 已提交
1615 1616 1617
				"\n%s (ep%d%s-%s) max %04x %s fifo %d\n",
				ep->ep.name, t & USB_ENDPOINT_NUMBER_MASK,
				(t & USB_DIR_IN) ? "in" : "out",
1618
				type_string(d->bmAttributes),
1619
				usb_endpoint_maxp(d) & 0x1fff,
L
Linus Torvalds 已提交
1620 1621 1622
				ep->dma ? "dma" : "pio", ep->fifo_size
				);
		} else /* ep0 should only have one transfer queued */
1623
			t = scnprintf(next, size, "ep0 max 64 pio %s\n",
L
Linus Torvalds 已提交
1624 1625 1626 1627 1628 1629
					ep->is_in ? "in" : "out");
		if (t <= 0 || t > size)
			goto done;
		size -= t;
		next += t;

1630 1631
		if (list_empty(&ep->queue)) {
			t = scnprintf(next, size, "\t(nothing queued)\n");
L
Linus Torvalds 已提交
1632 1633 1634 1635 1636 1637
			if (t <= 0 || t > size)
				goto done;
			size -= t;
			next += t;
			continue;
		}
1638 1639 1640
		list_for_each_entry(req, &ep->queue, queue) {
			if (ep->dma && req->td_dma == readl(&ep->dma->dmadesc))
				t = scnprintf(next, size,
L
Linus Torvalds 已提交
1641 1642 1643 1644
					"\treq %p len %d/%d "
					"buf %p (dmacount %08x)\n",
					&req->req, req->req.actual,
					req->req.length, req->req.buf,
1645
					readl(&ep->dma->dmacount));
L
Linus Torvalds 已提交
1646
			else
1647
				t = scnprintf(next, size,
L
Linus Torvalds 已提交
1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659
					"\treq %p len %d/%d buf %p\n",
					&req->req, req->req.actual,
					req->req.length, req->req.buf);
			if (t <= 0 || t > size)
				goto done;
			size -= t;
			next += t;

			if (ep->dma) {
				struct net2280_dma	*td;

				td = req->td;
1660
				t = scnprintf(next, size, "\t    td %08x "
L
Linus Torvalds 已提交
1661 1662
					" count %08x buf %08x desc %08x\n",
					(u32) req->td_dma,
1663 1664 1665
					le32_to_cpu(td->dmacount),
					le32_to_cpu(td->dmaaddr),
					le32_to_cpu(td->dmadesc));
L
Linus Torvalds 已提交
1666 1667 1668 1669 1670 1671 1672 1673 1674
				if (t <= 0 || t > size)
					goto done;
				size -= t;
				next += t;
			}
		}
	}

done:
1675
	spin_unlock_irqrestore(&dev->lock, flags);
L
Linus Torvalds 已提交
1676 1677
	return PAGE_SIZE - size;
}
1678
static DEVICE_ATTR_RO(queues);
L
Linus Torvalds 已提交
1679 1680 1681 1682


#else

1683 1684
#define device_create_file(a, b)	(0)
#define device_remove_file(a, b)	do { } while (0)
L
Linus Torvalds 已提交
1685 1686 1687 1688 1689 1690 1691 1692 1693

#endif

/*-------------------------------------------------------------------------*/

/* another driver-specific mode might be a request type doing dma
 * to/from another device fifo instead of to/from memory.
 */

1694
static void set_fifo_mode(struct net2280 *dev, int mode)
L
Linus Torvalds 已提交
1695 1696
{
	/* keeping high bits preserves BAR2 */
1697
	writel((0xffff << PCI_BASE2_RANGE) | mode, &dev->regs->fifoctl);
L
Linus Torvalds 已提交
1698 1699

	/* always ep-{a,b,e,f} ... maybe not ep-c or ep-d */
1700 1701 1702
	INIT_LIST_HEAD(&dev->gadget.ep_list);
	list_add_tail(&dev->ep[1].ep.ep_list, &dev->gadget.ep_list);
	list_add_tail(&dev->ep[2].ep.ep_list, &dev->gadget.ep_list);
L
Linus Torvalds 已提交
1703 1704
	switch (mode) {
	case 0:
1705 1706 1707
		list_add_tail(&dev->ep[3].ep.ep_list, &dev->gadget.ep_list);
		list_add_tail(&dev->ep[4].ep.ep_list, &dev->gadget.ep_list);
		dev->ep[1].fifo_size = dev->ep[2].fifo_size = 1024;
L
Linus Torvalds 已提交
1708 1709
		break;
	case 1:
1710
		dev->ep[1].fifo_size = dev->ep[2].fifo_size = 2048;
L
Linus Torvalds 已提交
1711 1712
		break;
	case 2:
1713 1714 1715
		list_add_tail(&dev->ep[3].ep.ep_list, &dev->gadget.ep_list);
		dev->ep[1].fifo_size = 2048;
		dev->ep[2].fifo_size = 1024;
L
Linus Torvalds 已提交
1716 1717 1718
		break;
	}
	/* fifo sizes for ep0, ep-c, ep-d, ep-e, and ep-f never change */
1719 1720
	list_add_tail(&dev->ep[5].ep.ep_list, &dev->gadget.ep_list);
	list_add_tail(&dev->ep[6].ep.ep_list, &dev->gadget.ep_list);
L
Linus Torvalds 已提交
1721 1722
}

1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
static void defect7374_disable_data_eps(struct net2280 *dev)
{
	/*
	 * For Defect 7374, disable data EPs (and more):
	 *  - This phase undoes the earlier phase of the Defect 7374 workaround,
	 *    returing ep regs back to normal.
	 */
	struct net2280_ep *ep;
	int i;
	unsigned char ep_sel;
	u32 tmp_reg;

	for (i = 1; i < 5; i++) {
		ep = &dev->ep[i];
		writel(0, &ep->cfg->ep_cfg);
	}

	/* CSROUT, CSRIN, PCIOUT, PCIIN, STATIN, RCIN */
	for (i = 0; i < 6; i++)
		writel(0, &dev->dep[i].dep_cfg);

	for (ep_sel = 0; ep_sel <= 21; ep_sel++) {
		/* Select an endpoint for subsequent operations: */
		tmp_reg = readl(&dev->plregs->pl_ep_ctrl);
		writel(((tmp_reg & ~0x1f) | ep_sel), &dev->plregs->pl_ep_ctrl);

		if (ep_sel < 2 || (ep_sel > 9 && ep_sel < 14) ||
					ep_sel == 18 || ep_sel == 20)
			continue;

		/* Change settings on some selected endpoints */
		tmp_reg = readl(&dev->plregs->pl_ep_cfg_4);
1755
		tmp_reg &= ~BIT(NON_CTRL_IN_TOLERATE_BAD_DIR);
1756 1757
		writel(tmp_reg, &dev->plregs->pl_ep_cfg_4);
		tmp_reg = readl(&dev->plregs->pl_ep_ctrl);
1758
		tmp_reg |= BIT(EP_INITIALIZED);
1759 1760 1761 1762 1763 1764 1765
		writel(tmp_reg, &dev->plregs->pl_ep_ctrl);
	}
}

static void defect7374_enable_data_eps_zero(struct net2280 *dev)
{
	u32 tmp = 0, tmp_reg;
1766
	u32 scratch;
1767 1768 1769 1770
	int i;
	unsigned char ep_sel;

	scratch = get_idx_reg(dev->regs, SCRATCH);
1771 1772 1773 1774

	WARN_ON((scratch & (0xf << DEFECT7374_FSM_FIELD))
		== DEFECT7374_FSM_SS_CONTROL_READ);

1775 1776
	scratch &= ~(0xf << DEFECT7374_FSM_FIELD);

1777 1778
	ep_warn(dev, "Operate Defect 7374 workaround soft this time");
	ep_warn(dev, "It will operate on cold-reboot and SS connect");
1779

1780 1781 1782 1783 1784 1785
	/*GPEPs:*/
	tmp = ((0 << ENDPOINT_NUMBER) | BIT(ENDPOINT_DIRECTION) |
			(2 << OUT_ENDPOINT_TYPE) | (2 << IN_ENDPOINT_TYPE) |
			((dev->enhanced_mode) ?
			 BIT(OUT_ENDPOINT_ENABLE) : BIT(ENDPOINT_ENABLE)) |
			BIT(IN_ENDPOINT_ENABLE));
1786

1787 1788
	for (i = 1; i < 5; i++)
		writel(tmp, &dev->ep[i].cfg->ep_cfg);
1789

1790 1791 1792 1793 1794 1795
	/* CSRIN, PCIIN, STATIN, RCIN*/
	tmp = ((0 << ENDPOINT_NUMBER) | BIT(ENDPOINT_ENABLE));
	writel(tmp, &dev->dep[1].dep_cfg);
	writel(tmp, &dev->dep[3].dep_cfg);
	writel(tmp, &dev->dep[4].dep_cfg);
	writel(tmp, &dev->dep[5].dep_cfg);
1796

1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810
	/*Implemented for development and debug.
	 * Can be refined/tuned later.*/
	for (ep_sel = 0; ep_sel <= 21; ep_sel++) {
		/* Select an endpoint for subsequent operations: */
		tmp_reg = readl(&dev->plregs->pl_ep_ctrl);
		writel(((tmp_reg & ~0x1f) | ep_sel),
				&dev->plregs->pl_ep_ctrl);

		if (ep_sel == 1) {
			tmp =
				(readl(&dev->plregs->pl_ep_ctrl) |
				 BIT(CLEAR_ACK_ERROR_CODE) | 0);
			writel(tmp, &dev->plregs->pl_ep_ctrl);
			continue;
1811 1812
		}

1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823
		if (ep_sel == 0 || (ep_sel > 9 && ep_sel < 14) ||
				ep_sel == 18  || ep_sel == 20)
			continue;

		tmp = (readl(&dev->plregs->pl_ep_cfg_4) |
				BIT(NON_CTRL_IN_TOLERATE_BAD_DIR) | 0);
		writel(tmp, &dev->plregs->pl_ep_cfg_4);

		tmp = readl(&dev->plregs->pl_ep_ctrl) &
			~BIT(EP_INITIALIZED);
		writel(tmp, &dev->plregs->pl_ep_ctrl);
1824 1825

	}
1826 1827 1828 1829 1830 1831 1832

	/* Set FSM to focus on the first Control Read:
	 * - Tip: Connection speed is known upon the first
	 * setup request.*/
	scratch |= DEFECT7374_FSM_WAITING_FOR_CONTROL_READ;
	set_idx_reg(dev->regs, SCRATCH, scratch);

1833 1834
}

L
Linus Torvalds 已提交
1835 1836 1837 1838 1839 1840 1841 1842 1843
/* keeping it simple:
 * - one bus driver, initted first;
 * - one function driver, initted second
 *
 * most of the work to support multiple net2280 controllers would
 * be to associate this gadget driver (yes?) with all of them, or
 * perhaps to bind specific drivers to specific devices.
 */

1844
static void usb_reset_228x(struct net2280 *dev)
L
Linus Torvalds 已提交
1845 1846 1847 1848
{
	u32	tmp;

	dev->gadget.speed = USB_SPEED_UNKNOWN;
1849
	(void) readl(&dev->usb->usbctl);
L
Linus Torvalds 已提交
1850

1851
	net2280_led_init(dev);
L
Linus Torvalds 已提交
1852 1853

	/* disable automatic responses, and irqs */
1854 1855 1856
	writel(0, &dev->usb->stdrsp);
	writel(0, &dev->regs->pciirqenb0);
	writel(0, &dev->regs->pciirqenb1);
L
Linus Torvalds 已提交
1857 1858 1859

	/* clear old dma and irq state */
	for (tmp = 0; tmp < 4; tmp++) {
1860
		struct net2280_ep       *ep = &dev->ep[tmp + 1];
L
Linus Torvalds 已提交
1861
		if (ep->dma)
1862
			abort_dma(ep);
L
Linus Torvalds 已提交
1863
	}
1864

1865
	writel(~0, &dev->regs->irqstat0),
1866
	writel(~(u32)BIT(SUSPEND_REQUEST_INTERRUPT), &dev->regs->irqstat1),
L
Linus Torvalds 已提交
1867 1868

	/* reset, and enable pci */
1869 1870 1871 1872 1873
	tmp = readl(&dev->regs->devinit) |
		BIT(PCI_ENABLE) |
		BIT(FIFO_SOFT_RESET) |
		BIT(USB_SOFT_RESET) |
		BIT(M8051_RESET);
1874
	writel(tmp, &dev->regs->devinit);
L
Linus Torvalds 已提交
1875 1876

	/* standard fifo and endpoint allocations */
1877
	set_fifo_mode(dev, (fifo_mode <= 2) ? fifo_mode : 0);
L
Linus Torvalds 已提交
1878 1879
}

1880 1881 1882 1883 1884 1885 1886 1887 1888
static void usb_reset_338x(struct net2280 *dev)
{
	u32 tmp;

	dev->gadget.speed = USB_SPEED_UNKNOWN;
	(void)readl(&dev->usb->usbctl);

	net2280_led_init(dev);

1889
	if (dev->bug7734_patched) {
1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905
		/* disable automatic responses, and irqs */
		writel(0, &dev->usb->stdrsp);
		writel(0, &dev->regs->pciirqenb0);
		writel(0, &dev->regs->pciirqenb1);
	}

	/* clear old dma and irq state */
	for (tmp = 0; tmp < 4; tmp++) {
		struct net2280_ep *ep = &dev->ep[tmp + 1];

		if (ep->dma)
			abort_dma(ep);
	}

	writel(~0, &dev->regs->irqstat0), writel(~0, &dev->regs->irqstat1);

1906
	if (dev->bug7734_patched) {
1907 1908
		/* reset, and enable pci */
		tmp = readl(&dev->regs->devinit) |
1909 1910 1911 1912
		    BIT(PCI_ENABLE) |
		    BIT(FIFO_SOFT_RESET) |
		    BIT(USB_SOFT_RESET) |
		    BIT(M8051_RESET);
1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926

		writel(tmp, &dev->regs->devinit);
	}

	/* always ep-{1,2,3,4} ... maybe not ep-3 or ep-4 */
	INIT_LIST_HEAD(&dev->gadget.ep_list);

	for (tmp = 1; tmp < dev->n_ep; tmp++)
		list_add_tail(&dev->ep[tmp].ep.ep_list, &dev->gadget.ep_list);

}

static void usb_reset(struct net2280 *dev)
{
1927
	if (dev->quirks & PLX_LEGACY)
1928 1929 1930 1931 1932
		return usb_reset_228x(dev);
	return usb_reset_338x(dev);
}

static void usb_reinit_228x(struct net2280 *dev)
L
Linus Torvalds 已提交
1933 1934 1935 1936 1937
{
	u32	tmp;

	/* basic endpoint init */
	for (tmp = 0; tmp < 7; tmp++) {
1938
		struct net2280_ep	*ep = &dev->ep[tmp];
L
Linus Torvalds 已提交
1939

1940
		ep->ep.name = ep_name[tmp];
L
Linus Torvalds 已提交
1941 1942 1943 1944 1945
		ep->dev = dev;
		ep->num = tmp;

		if (tmp > 0 && tmp <= 4) {
			ep->fifo_size = 1024;
1946
			ep->dma = &dev->dma[tmp - 1];
L
Linus Torvalds 已提交
1947 1948
		} else
			ep->fifo_size = 64;
1949
		ep->regs = &dev->epregs[tmp];
1950 1951
		ep->cfg = &dev->epregs[tmp];
		ep_reset_228x(dev->regs, ep);
L
Linus Torvalds 已提交
1952
	}
1953 1954 1955
	usb_ep_set_maxpacket_limit(&dev->ep[0].ep, 64);
	usb_ep_set_maxpacket_limit(&dev->ep[5].ep, 64);
	usb_ep_set_maxpacket_limit(&dev->ep[6].ep, 64);
L
Linus Torvalds 已提交
1956

1957 1958 1959
	dev->gadget.ep0 = &dev->ep[0].ep;
	dev->ep[0].stopped = 0;
	INIT_LIST_HEAD(&dev->gadget.ep0->ep_list);
L
Linus Torvalds 已提交
1960 1961 1962 1963 1964

	/* we want to prevent lowlevel/insecure access from the USB host,
	 * but erratum 0119 means this enable bit is ignored
	 */
	for (tmp = 0; tmp < 5; tmp++)
1965
		writel(EP_DONTUSE, &dev->dep[tmp].dep_cfg);
L
Linus Torvalds 已提交
1966 1967
}

1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983
static void usb_reinit_338x(struct net2280 *dev)
{
	int i;
	u32 tmp, val;
	static const u32 ne[9] = { 0, 1, 2, 3, 4, 1, 2, 3, 4 };
	static const u32 ep_reg_addr[9] = { 0x00, 0xC0, 0x00, 0xC0, 0x00,
						0x00, 0xC0, 0x00, 0xC0 };

	/* basic endpoint init */
	for (i = 0; i < dev->n_ep; i++) {
		struct net2280_ep *ep = &dev->ep[i];

		ep->ep.name = ep_name[i];
		ep->dev = dev;
		ep->num = i;

1984
		if (i > 0 && i <= 4)
1985 1986 1987 1988 1989
			ep->dma = &dev->dma[i - 1];

		if (dev->enhanced_mode) {
			ep->cfg = &dev->epregs[ne[i]];
			ep->regs = (struct net2280_ep_regs __iomem *)
1990
				(((void __iomem *)&dev->epregs[ne[i]]) +
1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008
				ep_reg_addr[i]);
			ep->fiforegs = &dev->fiforegs[i];
		} else {
			ep->cfg = &dev->epregs[i];
			ep->regs = &dev->epregs[i];
			ep->fiforegs = &dev->fiforegs[i];
		}

		ep->fifo_size = (i != 0) ? 2048 : 512;

		ep_reset_338x(dev->regs, ep);
	}
	usb_ep_set_maxpacket_limit(&dev->ep[0].ep, 512);

	dev->gadget.ep0 = &dev->ep[0].ep;
	dev->ep[0].stopped = 0;

	/* Link layer set up */
2009
	if (dev->bug7734_patched) {
2010
		tmp = readl(&dev->usb_ext->usbctl2) &
2011
		    ~(BIT(U1_ENABLE) | BIT(U2_ENABLE) | BIT(LTM_ENABLE));
2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049
		writel(tmp, &dev->usb_ext->usbctl2);
	}

	/* Hardware Defect and Workaround */
	val = readl(&dev->ll_lfps_regs->ll_lfps_5);
	val &= ~(0xf << TIMER_LFPS_6US);
	val |= 0x5 << TIMER_LFPS_6US;
	writel(val, &dev->ll_lfps_regs->ll_lfps_5);

	val = readl(&dev->ll_lfps_regs->ll_lfps_6);
	val &= ~(0xffff << TIMER_LFPS_80US);
	val |= 0x0100 << TIMER_LFPS_80US;
	writel(val, &dev->ll_lfps_regs->ll_lfps_6);

	/*
	 * AA_AB Errata. Issue 4. Workaround for SuperSpeed USB
	 * Hot Reset Exit Handshake may Fail in Specific Case using
	 * Default Register Settings. Workaround for Enumeration test.
	 */
	val = readl(&dev->ll_tsn_regs->ll_tsn_counters_2);
	val &= ~(0x1f << HOT_TX_NORESET_TS2);
	val |= 0x10 << HOT_TX_NORESET_TS2;
	writel(val, &dev->ll_tsn_regs->ll_tsn_counters_2);

	val = readl(&dev->ll_tsn_regs->ll_tsn_counters_3);
	val &= ~(0x1f << HOT_RX_RESET_TS2);
	val |= 0x3 << HOT_RX_RESET_TS2;
	writel(val, &dev->ll_tsn_regs->ll_tsn_counters_3);

	/*
	 * Set Recovery Idle to Recover bit:
	 * - On SS connections, setting Recovery Idle to Recover Fmw improves
	 *   link robustness with various hosts and hubs.
	 * - It is safe to set for all connection speeds; all chip revisions.
	 * - R-M-W to leave other bits undisturbed.
	 * - Reference PLX TT-7372
	*/
	val = readl(&dev->ll_chicken_reg->ll_tsn_chicken_bit);
2050
	val |= BIT(RECOVERY_IDLE_TO_RECOVER_FMW);
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065
	writel(val, &dev->ll_chicken_reg->ll_tsn_chicken_bit);

	INIT_LIST_HEAD(&dev->gadget.ep0->ep_list);

	/* disable dedicated endpoints */
	writel(0x0D, &dev->dep[0].dep_cfg);
	writel(0x0D, &dev->dep[1].dep_cfg);
	writel(0x0E, &dev->dep[2].dep_cfg);
	writel(0x0E, &dev->dep[3].dep_cfg);
	writel(0x0F, &dev->dep[4].dep_cfg);
	writel(0x0C, &dev->dep[5].dep_cfg);
}

static void usb_reinit(struct net2280 *dev)
{
2066
	if (dev->quirks & PLX_LEGACY)
2067 2068 2069 2070 2071
		return usb_reinit_228x(dev);
	return usb_reinit_338x(dev);
}

static void ep0_start_228x(struct net2280 *dev)
L
Linus Torvalds 已提交
2072
{
2073 2074
	writel(BIT(CLEAR_EP_HIDE_STATUS_PHASE) |
		BIT(CLEAR_NAK_OUT_PACKETS) |
2075 2076
		BIT(CLEAR_CONTROL_STATUS_PHASE_HANDSHAKE),
		&dev->epregs[0].ep_rsp);
L
Linus Torvalds 已提交
2077 2078 2079 2080 2081 2082 2083

	/*
	 * hardware optionally handles a bunch of standard requests
	 * that the API hides from drivers anyway.  have it do so.
	 * endpoint status/features are handled in software, to
	 * help pass tests for some dubious behavior.
	 */
2084 2085 2086 2087
	writel(BIT(SET_TEST_MODE) |
		BIT(SET_ADDRESS) |
		BIT(DEVICE_SET_CLEAR_DEVICE_REMOTE_WAKEUP) |
		BIT(GET_DEVICE_STATUS) |
2088 2089
		BIT(GET_INTERFACE_STATUS),
		&dev->usb->stdrsp);
2090 2091 2092 2093 2094 2095
	writel(BIT(USB_ROOT_PORT_WAKEUP_ENABLE) |
		BIT(SELF_POWERED_USB_DEVICE) |
		BIT(REMOTE_WAKEUP_SUPPORT) |
		(dev->softconnect << USB_DETECT_ENABLE) |
		BIT(SELF_POWERED_STATUS),
		&dev->usb->usbctl);
L
Linus Torvalds 已提交
2096 2097

	/* enable irqs so we can see ep0 and general operation  */
2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
	writel(BIT(SETUP_PACKET_INTERRUPT_ENABLE) |
		BIT(ENDPOINT_0_INTERRUPT_ENABLE),
		&dev->regs->pciirqenb0);
	writel(BIT(PCI_INTERRUPT_ENABLE) |
		BIT(PCI_MASTER_ABORT_RECEIVED_INTERRUPT_ENABLE) |
		BIT(PCI_TARGET_ABORT_RECEIVED_INTERRUPT_ENABLE) |
		BIT(PCI_RETRY_ABORT_INTERRUPT_ENABLE) |
		BIT(VBUS_INTERRUPT_ENABLE) |
		BIT(ROOT_PORT_RESET_INTERRUPT_ENABLE) |
		BIT(SUSPEND_REQUEST_CHANGE_INTERRUPT_ENABLE),
		&dev->regs->pciirqenb1);
L
Linus Torvalds 已提交
2109 2110

	/* don't leave any writes posted */
2111
	(void) readl(&dev->usb->usbctl);
L
Linus Torvalds 已提交
2112 2113
}

2114 2115 2116
static void ep0_start_338x(struct net2280 *dev)
{

2117
	if (dev->bug7734_patched)
2118 2119
		writel(BIT(CLEAR_NAK_OUT_PACKETS_MODE) |
		       BIT(SET_EP_HIDE_STATUS_PHASE),
2120 2121 2122 2123 2124 2125 2126 2127
		       &dev->epregs[0].ep_rsp);

	/*
	 * hardware optionally handles a bunch of standard requests
	 * that the API hides from drivers anyway.  have it do so.
	 * endpoint status/features are handled in software, to
	 * help pass tests for some dubious behavior.
	 */
2128 2129 2130 2131 2132 2133
	writel(BIT(SET_ISOCHRONOUS_DELAY) |
	       BIT(SET_SEL) |
	       BIT(SET_TEST_MODE) |
	       BIT(SET_ADDRESS) |
	       BIT(GET_INTERFACE_STATUS) |
	       BIT(GET_DEVICE_STATUS),
2134 2135
		&dev->usb->stdrsp);
	dev->wakeup_enable = 1;
2136
	writel(BIT(USB_ROOT_PORT_WAKEUP_ENABLE) |
2137
	       (dev->softconnect << USB_DETECT_ENABLE) |
2138
	       BIT(DEVICE_REMOTE_WAKEUP_ENABLE),
2139 2140 2141
	       &dev->usb->usbctl);

	/* enable irqs so we can see ep0 and general operation  */
2142
	writel(BIT(SETUP_PACKET_INTERRUPT_ENABLE) |
2143 2144
	       BIT(ENDPOINT_0_INTERRUPT_ENABLE),
	       &dev->regs->pciirqenb0);
2145 2146 2147 2148
	writel(BIT(PCI_INTERRUPT_ENABLE) |
	       BIT(ROOT_PORT_RESET_INTERRUPT_ENABLE) |
	       BIT(SUSPEND_REQUEST_CHANGE_INTERRUPT_ENABLE) |
	       BIT(VBUS_INTERRUPT_ENABLE),
2149 2150 2151 2152 2153 2154 2155 2156
	       &dev->regs->pciirqenb1);

	/* don't leave any writes posted */
	(void)readl(&dev->usb->usbctl);
}

static void ep0_start(struct net2280 *dev)
{
2157
	if (dev->quirks & PLX_LEGACY)
2158 2159 2160 2161
		return ep0_start_228x(dev);
	return ep0_start_338x(dev);
}

L
Linus Torvalds 已提交
2162 2163 2164 2165 2166 2167
/* when a driver is successfully registered, it will receive
 * control requests including set_configuration(), which enables
 * non-control requests.  then usb traffic follows until a
 * disconnect is reported.  then a host may connect again, or
 * the driver might get unbound.
 */
2168 2169
static int net2280_start(struct usb_gadget *_gadget,
		struct usb_gadget_driver *driver)
L
Linus Torvalds 已提交
2170
{
2171
	struct net2280		*dev;
L
Linus Torvalds 已提交
2172 2173 2174 2175 2176 2177 2178
	int			retval;
	unsigned		i;

	/* insist on high speed support from the driver, since
	 * (dev->usb->xcvrdiag & FORCE_FULL_SPEED_MODE)
	 * "must not be used in normal operation"
	 */
2179 2180
	if (!driver || driver->max_speed < USB_SPEED_HIGH ||
			!driver->setup)
L
Linus Torvalds 已提交
2181
		return -EINVAL;
2182

2183
	dev = container_of(_gadget, struct net2280, gadget);
L
Linus Torvalds 已提交
2184

2185
	for (i = 0; i < dev->n_ep; i++)
2186
		dev->ep[i].irqs = 0;
L
Linus Torvalds 已提交
2187 2188 2189 2190 2191 2192

	/* hook up the driver ... */
	dev->softconnect = 1;
	driver->driver.bus = NULL;
	dev->driver = driver;

2193 2194 2195 2196 2197 2198
	retval = device_create_file(&dev->pdev->dev, &dev_attr_function);
	if (retval)
		goto err_unbind;
	retval = device_create_file(&dev->pdev->dev, &dev_attr_queues);
	if (retval)
		goto err_func;
L
Linus Torvalds 已提交
2199

2200
	/* enable host detection and ep0; and we're ready
L
Linus Torvalds 已提交
2201 2202
	 * for set_configuration as well as eventual disconnect.
	 */
2203
	net2280_led_active(dev, 1);
2204

2205
	if ((dev->quirks & PLX_SUPERSPEED) && !dev->bug7734_patched)
2206 2207
		defect7374_enable_data_eps_zero(dev);

2208
	ep0_start(dev);
L
Linus Torvalds 已提交
2209 2210 2211

	/* pci writes may still be posted */
	return 0;
2212 2213

err_func:
2214
	device_remove_file(&dev->pdev->dev, &dev_attr_function);
2215 2216 2217
err_unbind:
	dev->driver = NULL;
	return retval;
L
Linus Torvalds 已提交
2218 2219
}

2220
static void stop_activity(struct net2280 *dev, struct usb_gadget_driver *driver)
L
Linus Torvalds 已提交
2221 2222 2223 2224 2225 2226 2227 2228 2229 2230
{
	int			i;

	/* don't disconnect if it's not connected */
	if (dev->gadget.speed == USB_SPEED_UNKNOWN)
		driver = NULL;

	/* stop hardware; prevent new request submissions;
	 * and kill any outstanding requests.
	 */
2231
	usb_reset(dev);
2232
	for (i = 0; i < dev->n_ep; i++)
2233
		nuke(&dev->ep[i]);
L
Linus Torvalds 已提交
2234

2235 2236 2237 2238 2239 2240 2241
	/* report disconnect; the driver is already quiesced */
	if (driver) {
		spin_unlock(&dev->lock);
		driver->disconnect(&dev->gadget);
		spin_lock(&dev->lock);
	}

2242
	usb_reinit(dev);
L
Linus Torvalds 已提交
2243 2244
}

2245
static int net2280_stop(struct usb_gadget *_gadget)
L
Linus Torvalds 已提交
2246
{
2247
	struct net2280	*dev;
L
Linus Torvalds 已提交
2248 2249
	unsigned long	flags;

2250
	dev = container_of(_gadget, struct net2280, gadget);
L
Linus Torvalds 已提交
2251

2252
	spin_lock_irqsave(&dev->lock, flags);
2253
	stop_activity(dev, NULL);
2254
	spin_unlock_irqrestore(&dev->lock, flags);
L
Linus Torvalds 已提交
2255

2256
	net2280_led_active(dev, 0);
2257

2258 2259
	device_remove_file(&dev->pdev->dev, &dev_attr_function);
	device_remove_file(&dev->pdev->dev, &dev_attr_queues);
L
Linus Torvalds 已提交
2260

2261
	dev->driver = NULL;
2262

L
Linus Torvalds 已提交
2263 2264 2265 2266 2267 2268 2269 2270 2271
	return 0;
}

/*-------------------------------------------------------------------------*/

/* handle ep0, ep-e, ep-f with 64 byte packets: packet per irq.
 * also works for dma-capable endpoints, in pio mode or just
 * to manually advance the queue after short OUT transfers.
 */
2272
static void handle_ep_small(struct net2280_ep *ep)
L
Linus Torvalds 已提交
2273 2274 2275 2276 2277 2278
{
	struct net2280_request	*req;
	u32			t;
	/* 0 error, 1 mid-data, 2 done */
	int			mode = 1;

2279 2280
	if (!list_empty(&ep->queue))
		req = list_entry(ep->queue.next,
L
Linus Torvalds 已提交
2281 2282 2283 2284 2285
			struct net2280_request, queue);
	else
		req = NULL;

	/* ack all, and handle what we care about */
2286
	t = readl(&ep->regs->ep_stat);
L
Linus Torvalds 已提交
2287
	ep->irqs++;
2288

2289
	ep_vdbg(ep->dev, "%s ack ep_stat %08x, req %p\n",
2290
			ep->ep.name, t, req ? &req->req : NULL);
2291

2292
	if (!ep->is_in || (ep->dev->quirks & PLX_2280))
2293
		writel(t & ~BIT(NAK_OUT_PACKETS), &ep->regs->ep_stat);
2294 2295
	else
		/* Added for 2282 */
2296
		writel(t, &ep->regs->ep_stat);
L
Linus Torvalds 已提交
2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307

	/* for ep0, monitor token irqs to catch data stage length errors
	 * and to synchronize on status.
	 *
	 * also, to defer reporting of protocol stalls ... here's where
	 * data or status first appears, handling stalls here should never
	 * cause trouble on the host side..
	 *
	 * control requests could be slightly faster without token synch for
	 * status, but status can jam up that way.
	 */
2308
	if (unlikely(ep->num == 0)) {
L
Linus Torvalds 已提交
2309 2310
		if (ep->is_in) {
			/* status; stop NAKing */
2311
			if (t & BIT(DATA_OUT_PING_TOKEN_INTERRUPT)) {
L
Linus Torvalds 已提交
2312 2313
				if (ep->dev->protocol_stall) {
					ep->stopped = 1;
2314
					set_halt(ep);
L
Linus Torvalds 已提交
2315 2316
				}
				if (!req)
2317
					allow_status(ep);
L
Linus Torvalds 已提交
2318 2319
				mode = 2;
			/* reply to extra IN data tokens with a zlp */
2320
			} else if (t & BIT(DATA_IN_TOKEN_INTERRUPT)) {
L
Linus Torvalds 已提交
2321 2322
				if (ep->dev->protocol_stall) {
					ep->stopped = 1;
2323
					set_halt(ep);
L
Linus Torvalds 已提交
2324
					mode = 2;
2325 2326
				} else if (ep->responded &&
						!req && !ep->stopped)
2327
					write_fifo(ep, NULL);
L
Linus Torvalds 已提交
2328 2329 2330
			}
		} else {
			/* status; stop NAKing */
2331
			if (t & BIT(DATA_IN_TOKEN_INTERRUPT)) {
L
Linus Torvalds 已提交
2332 2333
				if (ep->dev->protocol_stall) {
					ep->stopped = 1;
2334
					set_halt(ep);
L
Linus Torvalds 已提交
2335 2336 2337
				}
				mode = 2;
			/* an extra OUT token is an error */
2338 2339 2340 2341
			} else if (((t & BIT(DATA_OUT_PING_TOKEN_INTERRUPT)) &&
					req &&
					req->req.actual == req->req.length) ||
					(ep->responded && !req)) {
L
Linus Torvalds 已提交
2342
				ep->dev->protocol_stall = 1;
2343
				set_halt(ep);
L
Linus Torvalds 已提交
2344 2345
				ep->stopped = 1;
				if (req)
2346
					done(ep, req, -EOVERFLOW);
L
Linus Torvalds 已提交
2347 2348 2349 2350 2351
				req = NULL;
			}
		}
	}

2352
	if (unlikely(!req))
L
Linus Torvalds 已提交
2353 2354 2355
		return;

	/* manual DMA queue advance after short OUT */
2356
	if (likely(ep->dma)) {
2357
		if (t & BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT)) {
L
Linus Torvalds 已提交
2358 2359 2360 2361 2362 2363 2364 2365
			u32	count;
			int	stopped = ep->stopped;

			/* TRANSFERRED works around OUT_DONE erratum 0112.
			 * we expect (N <= maxpacket) bytes; host wrote M.
			 * iff (M < N) we won't ever see a DMA interrupt.
			 */
			ep->stopped = 1;
2366
			for (count = 0; ; t = readl(&ep->regs->ep_stat)) {
L
Linus Torvalds 已提交
2367 2368 2369 2370

				/* any preceding dma transfers must finish.
				 * dma handles (M >= N), may empty the queue
				 */
2371
				scan_dma_completions(ep);
2372 2373
				if (unlikely(list_empty(&ep->queue) ||
						ep->out_overflow)) {
L
Linus Torvalds 已提交
2374 2375 2376
					req = NULL;
					break;
				}
2377
				req = list_entry(ep->queue.next,
L
Linus Torvalds 已提交
2378 2379 2380 2381 2382
					struct net2280_request, queue);

				/* here either (M < N), a "real" short rx;
				 * or (M == N) and the queue didn't empty
				 */
2383
				if (likely(t & BIT(FIFO_EMPTY))) {
2384
					count = readl(&ep->dma->dmacount);
L
Linus Torvalds 已提交
2385
					count &= DMA_BYTE_COUNT_MASK;
2386
					if (readl(&ep->dma->dmadesc)
L
Linus Torvalds 已提交
2387 2388 2389 2390 2391 2392 2393 2394
							!= req->td_dma)
						req = NULL;
					break;
				}
				udelay(1);
			}

			/* stop DMA, leave ep NAKing */
2395
			writel(BIT(DMA_ABORT), &ep->dma->dmastat);
2396
			spin_stop_dma(ep->dma);
L
Linus Torvalds 已提交
2397

2398
			if (likely(req)) {
L
Linus Torvalds 已提交
2399
				req->td->dmacount = 0;
2400 2401
				t = readl(&ep->regs->ep_avail);
				dma_done(ep, req, count,
2402 2403
					(ep->out_overflow || t)
						? -EOVERFLOW : 0);
L
Linus Torvalds 已提交
2404 2405 2406
			}

			/* also flush to prevent erratum 0106 trouble */
2407 2408 2409 2410
			if (unlikely(ep->out_overflow ||
					(ep->dev->chiprev == 0x0100 &&
					ep->dev->gadget.speed
					== USB_SPEED_FULL))) {
2411
				out_flush(ep);
L
Linus Torvalds 已提交
2412 2413 2414 2415 2416
				ep->out_overflow = 0;
			}

			/* (re)start dma if needed, stop NAKing */
			ep->stopped = stopped;
2417 2418
			if (!list_empty(&ep->queue))
				restart_dma(ep);
L
Linus Torvalds 已提交
2419
		} else
2420
			ep_dbg(ep->dev, "%s dma ep_stat %08x ??\n",
L
Linus Torvalds 已提交
2421 2422 2423 2424
					ep->ep.name, t);
		return;

	/* data packet(s) received (in the fifo, OUT) */
2425
	} else if (t & BIT(DATA_PACKET_RECEIVED_INTERRUPT)) {
2426
		if (read_fifo(ep, req) && ep->num != 0)
L
Linus Torvalds 已提交
2427 2428 2429
			mode = 2;

	/* data packet(s) transmitted (IN) */
2430
	} else if (t & BIT(DATA_PACKET_TRANSMITTED_INTERRUPT)) {
L
Linus Torvalds 已提交
2431 2432 2433 2434 2435 2436 2437 2438
		unsigned	len;

		len = req->req.length - req->req.actual;
		if (len > ep->ep.maxpacket)
			len = ep->ep.maxpacket;
		req->req.actual += len;

		/* if we wrote it all, we're usually done */
2439 2440 2441
		/* send zlps until the status stage */
		if ((req->req.actual == req->req.length) &&
			(!req->req.zero || len != ep->ep.maxpacket) && ep->num)
L
Linus Torvalds 已提交
2442 2443 2444 2445 2446 2447 2448 2449 2450
				mode = 2;

	/* there was nothing to do ...  */
	} else if (mode == 1)
		return;

	/* done */
	if (mode == 2) {
		/* stream endpoints often resubmit/unlink in completion */
2451
		done(ep, req, 0);
L
Linus Torvalds 已提交
2452 2453 2454 2455 2456 2457 2458 2459

		/* maybe advance queue to next request */
		if (ep->num == 0) {
			/* NOTE:  net2280 could let gadget driver start the
			 * status stage later. since not all controllers let
			 * them control that, the api doesn't (yet) allow it.
			 */
			if (!ep->stopped)
2460
				allow_status(ep);
L
Linus Torvalds 已提交
2461 2462
			req = NULL;
		} else {
2463 2464
			if (!list_empty(&ep->queue) && !ep->stopped)
				req = list_entry(ep->queue.next,
L
Linus Torvalds 已提交
2465 2466 2467 2468
					struct net2280_request, queue);
			else
				req = NULL;
			if (req && !ep->is_in)
2469
				stop_out_naking(ep);
L
Linus Torvalds 已提交
2470 2471 2472 2473 2474 2475 2476 2477 2478
		}
	}

	/* is there a buffer for the next packet?
	 * for best streaming performance, make sure there is one.
	 */
	if (req && !ep->stopped) {

		/* load IN fifo with next packet (may be zlp) */
2479
		if (t & BIT(DATA_PACKET_TRANSMITTED_INTERRUPT))
2480
			write_fifo(ep, &req->req);
L
Linus Torvalds 已提交
2481 2482 2483
	}
}

2484
static struct net2280_ep *get_ep_by_addr(struct net2280 *dev, u16 wIndex)
L
Linus Torvalds 已提交
2485 2486 2487 2488
{
	struct net2280_ep	*ep;

	if ((wIndex & USB_ENDPOINT_NUMBER_MASK) == 0)
2489 2490
		return &dev->ep[0];
	list_for_each_entry(ep, &dev->gadget.ep_list, ep.ep_list) {
L
Linus Torvalds 已提交
2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503
		u8	bEndpointAddress;

		if (!ep->desc)
			continue;
		bEndpointAddress = ep->desc->bEndpointAddress;
		if ((wIndex ^ bEndpointAddress) & USB_DIR_IN)
			continue;
		if ((wIndex & 0x0f) == (bEndpointAddress & 0x0f))
			return ep;
	}
	return NULL;
}

2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518
static void defect7374_workaround(struct net2280 *dev, struct usb_ctrlrequest r)
{
	u32 scratch, fsmvalue;
	u32 ack_wait_timeout, state;

	/* Workaround for Defect 7374 (U1/U2 erroneously rejected): */
	scratch = get_idx_reg(dev->regs, SCRATCH);
	fsmvalue = scratch & (0xf << DEFECT7374_FSM_FIELD);
	scratch &= ~(0xf << DEFECT7374_FSM_FIELD);

	if (!((fsmvalue == DEFECT7374_FSM_WAITING_FOR_CONTROL_READ) &&
				(r.bRequestType & USB_DIR_IN)))
		return;

	/* This is the first Control Read for this connection: */
2519
	if (!(readl(&dev->usb->usbstat) & BIT(SUPER_SPEED_MODE))) {
2520 2521 2522 2523 2524 2525 2526
		/*
		 * Connection is NOT SS:
		 * - Connection must be FS or HS.
		 * - This FSM state should allow workaround software to
		 * run after the next USB connection.
		 */
		scratch |= DEFECT7374_FSM_NON_SS_CONTROL_READ;
2527
		dev->bug7734_patched = 1;
2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540
		goto restore_data_eps;
	}

	/* Connection is SS: */
	for (ack_wait_timeout = 0;
			ack_wait_timeout < DEFECT_7374_NUMBEROF_MAX_WAIT_LOOPS;
			ack_wait_timeout++) {

		state =	readl(&dev->plregs->pl_ep_status_1)
			& (0xff << STATE);
		if ((state >= (ACK_GOOD_NORMAL << STATE)) &&
			(state <= (ACK_GOOD_MORE_ACKS_TO_COME << STATE))) {
			scratch |= DEFECT7374_FSM_SS_CONTROL_READ;
2541
			dev->bug7734_patched = 1;
2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555
			break;
		}

		/*
		 * We have not yet received host's Data Phase ACK
		 * - Wait and try again.
		 */
		udelay(DEFECT_7374_PROCESSOR_WAIT_TIME);

		continue;
	}


	if (ack_wait_timeout >= DEFECT_7374_NUMBEROF_MAX_WAIT_LOOPS) {
2556
		ep_err(dev, "FAIL: Defect 7374 workaround waited but failed "
2557
		"to detect SS host's data phase ACK.");
2558
		ep_err(dev, "PL_EP_STATUS_1(23:16):.Expected from 0x11 to 0x16"
2559 2560
		"got 0x%2.2x.\n", state >> STATE);
	} else {
2561
		ep_warn(dev, "INFO: Defect 7374 workaround waited about\n"
2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577
		"%duSec for Control Read Data Phase ACK\n",
			DEFECT_7374_PROCESSOR_WAIT_TIME * ack_wait_timeout);
	}

restore_data_eps:
	/*
	 * Restore data EPs to their pre-workaround settings (disabled,
	 * initialized, and other details).
	 */
	defect7374_disable_data_eps(dev);

	set_idx_reg(dev->regs, SCRATCH, scratch);

	return;
}

2578
static void ep_clear_seqnum(struct net2280_ep *ep)
2579 2580 2581 2582 2583
{
	struct net2280 *dev = ep->dev;
	u32 val;
	static const u32 ep_pl[9] = { 0, 3, 4, 7, 8, 2, 5, 6, 9 };

2584 2585 2586 2587 2588
	val = readl(&dev->plregs->pl_ep_ctrl) & ~0x1f;
	val |= ep_pl[ep->num];
	writel(val, &dev->plregs->pl_ep_ctrl);
	val |= BIT(SEQUENCE_NUMBER_RESET);
	writel(val, &dev->plregs->pl_ep_ctrl);
2589

2590
	return;
2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613
}

static void handle_stat0_irqs_superspeed(struct net2280 *dev,
		struct net2280_ep *ep, struct usb_ctrlrequest r)
{
	int tmp = 0;

#define	w_value		le16_to_cpu(r.wValue)
#define	w_index		le16_to_cpu(r.wIndex)
#define	w_length	le16_to_cpu(r.wLength)

	switch (r.bRequest) {
		struct net2280_ep *e;
		u16 status;

	case USB_REQ_SET_CONFIGURATION:
		dev->addressed_state = !w_value;
		goto usb3_delegate;

	case USB_REQ_GET_STATUS:
		switch (r.bRequestType) {
		case (USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_DEVICE):
			status = dev->wakeup_enable ? 0x02 : 0x00;
2614
			if (dev->gadget.is_selfpowered)
2615
				status |= BIT(0);
2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628
			status |= (dev->u1_enable << 2 | dev->u2_enable << 3 |
							dev->ltm_enable << 4);
			writel(0, &dev->epregs[0].ep_irqenb);
			set_fifo_bytecount(ep, sizeof(status));
			writel((__force u32) status, &dev->epregs[0].ep_data);
			allow_status_338x(ep);
			break;

		case (USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_ENDPOINT):
			e = get_ep_by_addr(dev, w_index);
			if (!e)
				goto do_stall3;
			status = readl(&e->regs->ep_rsp) &
2629
						BIT(CLEAR_ENDPOINT_HALT);
2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648
			writel(0, &dev->epregs[0].ep_irqenb);
			set_fifo_bytecount(ep, sizeof(status));
			writel((__force u32) status, &dev->epregs[0].ep_data);
			allow_status_338x(ep);
			break;

		default:
			goto usb3_delegate;
		}
		break;

	case USB_REQ_CLEAR_FEATURE:
		switch (r.bRequestType) {
		case (USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE):
			if (!dev->addressed_state) {
				switch (w_value) {
				case USB_DEVICE_U1_ENABLE:
					dev->u1_enable = 0;
					writel(readl(&dev->usb_ext->usbctl2) &
2649
						~BIT(U1_ENABLE),
2650 2651 2652 2653 2654 2655 2656
						&dev->usb_ext->usbctl2);
					allow_status_338x(ep);
					goto next_endpoints3;

				case USB_DEVICE_U2_ENABLE:
					dev->u2_enable = 0;
					writel(readl(&dev->usb_ext->usbctl2) &
2657
						~BIT(U2_ENABLE),
2658 2659 2660 2661 2662 2663 2664
						&dev->usb_ext->usbctl2);
					allow_status_338x(ep);
					goto next_endpoints3;

				case USB_DEVICE_LTM_ENABLE:
					dev->ltm_enable = 0;
					writel(readl(&dev->usb_ext->usbctl2) &
2665
						~BIT(LTM_ENABLE),
2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676
						&dev->usb_ext->usbctl2);
					allow_status_338x(ep);
					goto next_endpoints3;

				default:
					break;
				}
			}
			if (w_value == USB_DEVICE_REMOTE_WAKEUP) {
				dev->wakeup_enable = 0;
				writel(readl(&dev->usb->usbctl) &
2677
					~BIT(DEVICE_REMOTE_WAKEUP_ENABLE),
2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689
					&dev->usb->usbctl);
				allow_status_338x(ep);
				break;
			}
			goto usb3_delegate;

		case (USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_ENDPOINT):
			e = get_ep_by_addr(dev,	w_index);
			if (!e)
				goto do_stall3;
			if (w_value != USB_ENDPOINT_HALT)
				goto do_stall3;
2690
			ep_vdbg(dev, "%s clear halt\n", e->ep.name);
2691 2692 2693 2694 2695 2696
			/*
			 * Workaround for SS SeqNum not cleared via
			 * Endpoint Halt (Clear) bit. select endpoint
			 */
			ep_clear_seqnum(e);
			clear_halt(e);
2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714
			if (!list_empty(&e->queue) && e->td_dma)
				restart_dma(e);
			allow_status(ep);
			ep->stopped = 1;
			break;

		default:
			goto usb3_delegate;
		}
		break;
	case USB_REQ_SET_FEATURE:
		switch (r.bRequestType) {
		case (USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE):
			if (!dev->addressed_state) {
				switch (w_value) {
				case USB_DEVICE_U1_ENABLE:
					dev->u1_enable = 1;
					writel(readl(&dev->usb_ext->usbctl2) |
2715
						BIT(U1_ENABLE),
2716 2717 2718 2719 2720 2721 2722
						&dev->usb_ext->usbctl2);
					allow_status_338x(ep);
					goto next_endpoints3;

				case USB_DEVICE_U2_ENABLE:
					dev->u2_enable = 1;
					writel(readl(&dev->usb_ext->usbctl2) |
2723
						BIT(U2_ENABLE),
2724 2725 2726 2727 2728 2729 2730
						&dev->usb_ext->usbctl2);
					allow_status_338x(ep);
					goto next_endpoints3;

				case USB_DEVICE_LTM_ENABLE:
					dev->ltm_enable = 1;
					writel(readl(&dev->usb_ext->usbctl2) |
2731
						BIT(LTM_ENABLE),
2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742
						&dev->usb_ext->usbctl2);
					allow_status_338x(ep);
					goto next_endpoints3;
				default:
					break;
				}
			}

			if (w_value == USB_DEVICE_REMOTE_WAKEUP) {
				dev->wakeup_enable = 1;
				writel(readl(&dev->usb->usbctl) |
2743
					BIT(DEVICE_REMOTE_WAKEUP_ENABLE),
2744 2745 2746 2747 2748 2749 2750 2751 2752 2753
					&dev->usb->usbctl);
				allow_status_338x(ep);
				break;
			}
			goto usb3_delegate;

		case (USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_ENDPOINT):
			e = get_ep_by_addr(dev,	w_index);
			if (!e || (w_value != USB_ENDPOINT_HALT))
				goto do_stall3;
2754 2755 2756 2757 2758
			ep->stopped = 1;
			if (ep->num == 0)
				ep->dev->protocol_stall = 1;
			else {
				if (ep->dma)
2759
					abort_dma(ep);
2760
				set_halt(ep);
2761
			}
2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772
			allow_status_338x(ep);
			break;

		default:
			goto usb3_delegate;
		}

		break;
	default:

usb3_delegate:
2773
		ep_vdbg(dev, "setup %02x.%02x v%04x i%04x l%04x ep_cfg %08x\n",
2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784
				r.bRequestType, r.bRequest,
				w_value, w_index, w_length,
				readl(&ep->cfg->ep_cfg));

		ep->responded = 0;
		spin_unlock(&dev->lock);
		tmp = dev->driver->setup(&dev->gadget, &r);
		spin_lock(&dev->lock);
	}
do_stall3:
	if (tmp < 0) {
2785
		ep_vdbg(dev, "req %02x.%02x protocol STALL; stat %d\n",
2786 2787 2788
				r.bRequestType, r.bRequest, tmp);
		dev->protocol_stall = 1;
		/* TD 9.9 Halt Endpoint test. TD 9.22 Set feature test */
2789
		set_halt(ep);
2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800
	}

next_endpoints3:

#undef	w_value
#undef	w_index
#undef	w_length

	return;
}

2801
static void handle_stat0_irqs(struct net2280 *dev, u32 stat)
L
Linus Torvalds 已提交
2802 2803 2804 2805 2806
{
	struct net2280_ep	*ep;
	u32			num, scratch;

	/* most of these don't need individual acks */
2807
	stat &= ~BIT(INTA_ASSERTED);
L
Linus Torvalds 已提交
2808 2809
	if (!stat)
		return;
2810
	/* ep_dbg(dev, "irqstat0 %04x\n", stat); */
L
Linus Torvalds 已提交
2811 2812

	/* starting a control request? */
2813
	if (unlikely(stat & BIT(SETUP_PACKET_INTERRUPT))) {
L
Linus Torvalds 已提交
2814
		union {
2815
			u32			raw[2];
L
Linus Torvalds 已提交
2816 2817
			struct usb_ctrlrequest	r;
		} u;
2818
		int				tmp;
L
Linus Torvalds 已提交
2819 2820 2821
		struct net2280_request		*req;

		if (dev->gadget.speed == USB_SPEED_UNKNOWN) {
2822
			u32 val = readl(&dev->usb->usbstat);
2823
			if (val & BIT(SUPER_SPEED)) {
2824 2825 2826
				dev->gadget.speed = USB_SPEED_SUPER;
				usb_ep_set_maxpacket_limit(&dev->ep[0].ep,
						EP0_SS_MAX_PACKET_SIZE);
2827
			} else if (val & BIT(HIGH_SPEED)) {
L
Linus Torvalds 已提交
2828
				dev->gadget.speed = USB_SPEED_HIGH;
2829 2830 2831
				usb_ep_set_maxpacket_limit(&dev->ep[0].ep,
						EP0_HS_MAX_PACKET_SIZE);
			} else {
L
Linus Torvalds 已提交
2832
				dev->gadget.speed = USB_SPEED_FULL;
2833 2834 2835
				usb_ep_set_maxpacket_limit(&dev->ep[0].ep,
						EP0_HS_MAX_PACKET_SIZE);
			}
2836
			net2280_led_speed(dev, dev->gadget.speed);
2837
			ep_dbg(dev, "%s\n",
2838
					usb_speed_string(dev->gadget.speed));
L
Linus Torvalds 已提交
2839 2840
		}

2841
		ep = &dev->ep[0];
L
Linus Torvalds 已提交
2842 2843 2844
		ep->irqs++;

		/* make sure any leftover request state is cleared */
2845
		stat &= ~BIT(ENDPOINT_0_INTERRUPT);
2846 2847
		while (!list_empty(&ep->queue)) {
			req = list_entry(ep->queue.next,
L
Linus Torvalds 已提交
2848
					struct net2280_request, queue);
2849
			done(ep, req, (req->req.actual == req->req.length)
L
Linus Torvalds 已提交
2850 2851 2852 2853
						? 0 : -EPROTO);
		}
		ep->stopped = 0;
		dev->protocol_stall = 0;
2854
		if (!(dev->quirks & PLX_SUPERSPEED)) {
2855
			if (ep->dev->quirks & PLX_2280)
2856 2857
				tmp = BIT(FIFO_OVERFLOW) |
				    BIT(FIFO_UNDERFLOW);
2858 2859 2860
			else
				tmp = 0;

2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871
			writel(tmp | BIT(TIMEOUT) |
				   BIT(USB_STALL_SENT) |
				   BIT(USB_IN_NAK_SENT) |
				   BIT(USB_IN_ACK_RCVD) |
				   BIT(USB_OUT_PING_NAK_SENT) |
				   BIT(USB_OUT_ACK_SENT) |
				   BIT(SHORT_PACKET_OUT_DONE_INTERRUPT) |
				   BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT) |
				   BIT(DATA_PACKET_RECEIVED_INTERRUPT) |
				   BIT(DATA_PACKET_TRANSMITTED_INTERRUPT) |
				   BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
2872 2873
				   BIT(DATA_IN_TOKEN_INTERRUPT),
				   &ep->regs->ep_stat);
2874 2875 2876
		}
		u.raw[0] = readl(&dev->usb->setup0123);
		u.raw[1] = readl(&dev->usb->setup4567);
2877

2878 2879
		cpu_to_le32s(&u.raw[0]);
		cpu_to_le32s(&u.raw[1]);
L
Linus Torvalds 已提交
2880

2881
		if ((dev->quirks & PLX_SUPERSPEED) && !dev->bug7734_patched)
2882 2883
			defect7374_workaround(dev, u.r);

2884 2885
		tmp = 0;

2886 2887 2888
#define	w_value		le16_to_cpu(u.r.wValue)
#define	w_index		le16_to_cpu(u.r.wIndex)
#define	w_length	le16_to_cpu(u.r.wLength)
L
Linus Torvalds 已提交
2889 2890

		/* ack the irq */
2891 2892
		writel(BIT(SETUP_PACKET_INTERRUPT), &dev->regs->irqstat0);
		stat ^= BIT(SETUP_PACKET_INTERRUPT);
L
Linus Torvalds 已提交
2893 2894 2895 2896 2897 2898 2899 2900

		/* watch control traffic at the token level, and force
		 * synchronization before letting the status stage happen.
		 * FIXME ignore tokens we'll NAK, until driver responds.
		 * that'll mean a lot less irqs for some drivers.
		 */
		ep->is_in = (u.r.bRequestType & USB_DIR_IN) != 0;
		if (ep->is_in) {
2901 2902 2903
			scratch = BIT(DATA_PACKET_TRANSMITTED_INTERRUPT) |
				BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
				BIT(DATA_IN_TOKEN_INTERRUPT);
2904
			stop_out_naking(ep);
L
Linus Torvalds 已提交
2905
		} else
2906 2907 2908
			scratch = BIT(DATA_PACKET_RECEIVED_INTERRUPT) |
				BIT(DATA_OUT_PING_TOKEN_INTERRUPT) |
				BIT(DATA_IN_TOKEN_INTERRUPT);
2909
		writel(scratch, &dev->epregs[0].ep_irqenb);
L
Linus Torvalds 已提交
2910 2911 2912 2913

		/* we made the hardware handle most lowlevel requests;
		 * everything else goes uplevel to the gadget code.
		 */
2914
		ep->responded = 1;
2915 2916 2917 2918 2919 2920

		if (dev->gadget.speed == USB_SPEED_SUPER) {
			handle_stat0_irqs_superspeed(dev, ep, u.r);
			goto next_endpoints;
		}

L
Linus Torvalds 已提交
2921 2922 2923
		switch (u.r.bRequest) {
		case USB_REQ_GET_STATUS: {
			struct net2280_ep	*e;
2924
			__le32			status;
L
Linus Torvalds 已提交
2925 2926 2927 2928

			/* hw handles device and interface status */
			if (u.r.bRequestType != (USB_DIR_IN|USB_RECIP_ENDPOINT))
				goto delegate;
2929 2930
			e = get_ep_by_addr(dev, w_index);
			if (!e || w_length > 2)
L
Linus Torvalds 已提交
2931 2932
				goto do_stall;

2933
			if (readl(&e->regs->ep_rsp) & BIT(SET_ENDPOINT_HALT))
2934
				status = cpu_to_le32(1);
L
Linus Torvalds 已提交
2935
			else
2936
				status = cpu_to_le32(0);
L
Linus Torvalds 已提交
2937 2938

			/* don't bother with a request object! */
2939 2940 2941 2942
			writel(0, &dev->epregs[0].ep_irqenb);
			set_fifo_bytecount(ep, w_length);
			writel((__force u32)status, &dev->epregs[0].ep_data);
			allow_status(ep);
2943
			ep_vdbg(dev, "%s stat %02x\n", ep->ep.name, status);
L
Linus Torvalds 已提交
2944 2945 2946 2947 2948 2949 2950 2951 2952
			goto next_endpoints;
			}
			break;
		case USB_REQ_CLEAR_FEATURE: {
			struct net2280_ep	*e;

			/* hw handles device features */
			if (u.r.bRequestType != USB_RECIP_ENDPOINT)
				goto delegate;
2953
			if (w_value != USB_ENDPOINT_HALT || w_length != 0)
L
Linus Torvalds 已提交
2954
				goto do_stall;
2955 2956
			e = get_ep_by_addr(dev, w_index);
			if (!e)
L
Linus Torvalds 已提交
2957
				goto do_stall;
2958
			if (e->wedged) {
2959
				ep_vdbg(dev, "%s wedged, halt not cleared\n",
2960 2961
						ep->ep.name);
			} else {
2962
				ep_vdbg(dev, "%s clear halt\n", e->ep.name);
2963
				clear_halt(e);
2964
				if ((ep->dev->quirks & PLX_SUPERSPEED) &&
2965 2966
					!list_empty(&e->queue) && e->td_dma)
						restart_dma(e);
2967
			}
2968
			allow_status(ep);
L
Linus Torvalds 已提交
2969 2970 2971 2972 2973 2974 2975 2976 2977
			goto next_endpoints;
			}
			break;
		case USB_REQ_SET_FEATURE: {
			struct net2280_ep	*e;

			/* hw handles device features */
			if (u.r.bRequestType != USB_RECIP_ENDPOINT)
				goto delegate;
2978
			if (w_value != USB_ENDPOINT_HALT || w_length != 0)
L
Linus Torvalds 已提交
2979
				goto do_stall;
2980 2981
			e = get_ep_by_addr(dev, w_index);
			if (!e)
L
Linus Torvalds 已提交
2982
				goto do_stall;
2983 2984
			if (e->ep.name == ep0name)
				goto do_stall;
2985
			set_halt(e);
2986
			if ((dev->quirks & PLX_SUPERSPEED) && e->dma)
2987
				abort_dma(e);
2988
			allow_status(ep);
2989
			ep_vdbg(dev, "%s set halt\n", ep->ep.name);
L
Linus Torvalds 已提交
2990 2991 2992 2993 2994
			goto next_endpoints;
			}
			break;
		default:
delegate:
2995
			ep_vdbg(dev, "setup %02x.%02x v%04x i%04x l%04x "
L
Linus Torvalds 已提交
2996 2997
				"ep_cfg %08x\n",
				u.r.bRequestType, u.r.bRequest,
2998
				w_value, w_index, w_length,
2999
				readl(&ep->cfg->ep_cfg));
3000
			ep->responded = 0;
3001 3002 3003
			spin_unlock(&dev->lock);
			tmp = dev->driver->setup(&dev->gadget, &u.r);
			spin_lock(&dev->lock);
L
Linus Torvalds 已提交
3004 3005 3006 3007 3008
		}

		/* stall ep0 on error */
		if (tmp < 0) {
do_stall:
3009
			ep_vdbg(dev, "req %02x.%02x protocol STALL; stat %d\n",
L
Linus Torvalds 已提交
3010 3011 3012 3013 3014 3015 3016 3017 3018 3019
					u.r.bRequestType, u.r.bRequest, tmp);
			dev->protocol_stall = 1;
		}

		/* some in/out token irq should follow; maybe stall then.
		 * driver must queue a request (even zlp) or halt ep0
		 * before the host times out.
		 */
	}

3020 3021 3022 3023
#undef	w_value
#undef	w_index
#undef	w_length

L
Linus Torvalds 已提交
3024 3025 3026 3027 3028 3029 3030 3031
next_endpoints:
	/* endpoint data irq ? */
	scratch = stat & 0x7f;
	stat &= ~0x7f;
	for (num = 0; scratch; num++) {
		u32		t;

		/* do this endpoint's FIFO and queue need tending? */
3032
		t = BIT(num);
L
Linus Torvalds 已提交
3033 3034 3035 3036
		if ((scratch & t) == 0)
			continue;
		scratch ^= t;

3037 3038
		ep = &dev->ep[num];
		handle_ep_small(ep);
L
Linus Torvalds 已提交
3039 3040 3041
	}

	if (stat)
3042
		ep_dbg(dev, "unhandled irqstat0 %08x\n", stat);
L
Linus Torvalds 已提交
3043 3044
}

3045 3046 3047 3048
#define DMA_INTERRUPTS (BIT(DMA_D_INTERRUPT) | \
		BIT(DMA_C_INTERRUPT) | \
		BIT(DMA_B_INTERRUPT) | \
		BIT(DMA_A_INTERRUPT))
L
Linus Torvalds 已提交
3049
#define	PCI_ERROR_INTERRUPTS ( \
3050 3051 3052
		BIT(PCI_MASTER_ABORT_RECEIVED_INTERRUPT) | \
		BIT(PCI_TARGET_ABORT_RECEIVED_INTERRUPT) | \
		BIT(PCI_RETRY_ABORT_INTERRUPT))
L
Linus Torvalds 已提交
3053

3054
static void handle_stat1_irqs(struct net2280 *dev, u32 stat)
L
Linus Torvalds 已提交
3055 3056 3057 3058 3059
{
	struct net2280_ep	*ep;
	u32			tmp, num, mask, scratch;

	/* after disconnect there's nothing else to do! */
3060 3061
	tmp = BIT(VBUS_INTERRUPT) | BIT(ROOT_PORT_RESET_INTERRUPT);
	mask = BIT(SUPER_SPEED) | BIT(HIGH_SPEED) | BIT(FULL_SPEED);
L
Linus Torvalds 已提交
3062 3063

	/* VBUS disconnect is indicated by VBUS_PIN and VBUS_INTERRUPT set.
3064
	 * Root Port Reset is indicated by ROOT_PORT_RESET_INTERRUPT set and
3065
	 * both HIGH_SPEED and FULL_SPEED clear (as ROOT_PORT_RESET_INTERRUPT
L
Linus Torvalds 已提交
3066 3067 3068
	 * only indicates a change in the reset state).
	 */
	if (stat & tmp) {
3069 3070 3071 3072 3073 3074 3075
		bool	reset = false;
		bool	disconnect = false;

		/*
		 * Ignore disconnects and resets if the speed hasn't been set.
		 * VBUS can bounce and there's always an initial reset.
		 */
3076
		writel(tmp, &dev->regs->irqstat1);
3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104
		if (dev->gadget.speed != USB_SPEED_UNKNOWN) {
			if ((stat & BIT(VBUS_INTERRUPT)) &&
					(readl(&dev->usb->usbctl) &
						BIT(VBUS_PIN)) == 0) {
				disconnect = true;
				ep_dbg(dev, "disconnect %s\n",
						dev->driver->driver.name);
			} else if ((stat & BIT(ROOT_PORT_RESET_INTERRUPT)) &&
					(readl(&dev->usb->usbstat) & mask)
						== 0) {
				reset = true;
				ep_dbg(dev, "reset %s\n",
						dev->driver->driver.name);
			}

			if (disconnect || reset) {
				stop_activity(dev, dev->driver);
				ep0_start(dev);
				spin_unlock(&dev->lock);
				if (reset)
					usb_gadget_udc_reset
						(&dev->gadget, dev->driver);
				else
					(dev->driver->disconnect)
						(&dev->gadget);
				spin_lock(&dev->lock);
				return;
			}
L
Linus Torvalds 已提交
3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117
		}
		stat &= ~tmp;

		/* vBUS can bounce ... one of many reasons to ignore the
		 * notion of hotplug events on bus connect/disconnect!
		 */
		if (!stat)
			return;
	}

	/* NOTE: chip stays in PCI D0 state for now, but it could
	 * enter D1 to save more power
	 */
3118
	tmp = BIT(SUSPEND_REQUEST_CHANGE_INTERRUPT);
L
Linus Torvalds 已提交
3119
	if (stat & tmp) {
3120
		writel(tmp, &dev->regs->irqstat1);
3121
		if (stat & BIT(SUSPEND_REQUEST_INTERRUPT)) {
L
Linus Torvalds 已提交
3122
			if (dev->driver->suspend)
3123
				dev->driver->suspend(&dev->gadget);
L
Linus Torvalds 已提交
3124
			if (!enable_suspend)
3125
				stat &= ~BIT(SUSPEND_REQUEST_INTERRUPT);
L
Linus Torvalds 已提交
3126 3127
		} else {
			if (dev->driver->resume)
3128
				dev->driver->resume(&dev->gadget);
L
Linus Torvalds 已提交
3129 3130 3131 3132 3133 3134 3135
			/* at high speed, note erratum 0133 */
		}
		stat &= ~tmp;
	}

	/* clear any other status/irqs */
	if (stat)
3136
		writel(stat, &dev->regs->irqstat1);
L
Linus Torvalds 已提交
3137 3138

	/* some status we can just ignore */
3139
	if (dev->quirks & PLX_2280)
3140 3141 3142 3143
		stat &= ~(BIT(CONTROL_STATUS_INTERRUPT) |
			  BIT(SUSPEND_REQUEST_INTERRUPT) |
			  BIT(RESUME_INTERRUPT) |
			  BIT(SOF_INTERRUPT));
3144
	else
3145 3146 3147 3148
		stat &= ~(BIT(CONTROL_STATUS_INTERRUPT) |
			  BIT(RESUME_INTERRUPT) |
			  BIT(SOF_DOWN_INTERRUPT) |
			  BIT(SOF_INTERRUPT));
3149

L
Linus Torvalds 已提交
3150 3151
	if (!stat)
		return;
3152
	/* ep_dbg(dev, "irqstat1 %08x\n", stat);*/
L
Linus Torvalds 已提交
3153 3154 3155 3156 3157 3158 3159 3160

	/* DMA status, for ep-{a,b,c,d} */
	scratch = stat & DMA_INTERRUPTS;
	stat &= ~DMA_INTERRUPTS;
	scratch >>= 9;
	for (num = 0; scratch; num++) {
		struct net2280_dma_regs	__iomem *dma;

3161
		tmp = BIT(num);
L
Linus Torvalds 已提交
3162 3163 3164 3165
		if ((tmp & scratch) == 0)
			continue;
		scratch ^= tmp;

3166
		ep = &dev->ep[num + 1];
L
Linus Torvalds 已提交
3167 3168 3169 3170 3171 3172
		dma = ep->dma;

		if (!dma)
			continue;

		/* clear ep's dma status */
3173 3174
		tmp = readl(&dma->dmastat);
		writel(tmp, &dma->dmastat);
L
Linus Torvalds 已提交
3175

3176
		/* dma sync*/
3177
		if (dev->quirks & PLX_SUPERSPEED) {
3178 3179
			u32 r_dmacount = readl(&dma->dmacount);
			if (!ep->is_in &&  (r_dmacount & 0x00FFFFFF) &&
3180
			    (tmp & BIT(DMA_TRANSACTION_DONE_INTERRUPT)))
3181 3182 3183
				continue;
		}

3184 3185 3186 3187
		if (!(tmp & BIT(DMA_TRANSACTION_DONE_INTERRUPT))) {
			ep_dbg(ep->dev, "%s no xact done? %08x\n",
				ep->ep.name, tmp);
			continue;
L
Linus Torvalds 已提交
3188
		}
3189
		stop_dma(ep->dma);
L
Linus Torvalds 已提交
3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200

		/* OUT transfers terminate when the data from the
		 * host is in our memory.  Process whatever's done.
		 * On this path, we know transfer's last packet wasn't
		 * less than req->length. NAK_OUT_PACKETS may be set,
		 * or the FIFO may already be holding new packets.
		 *
		 * IN transfers can linger in the FIFO for a very
		 * long time ... we ignore that for now, accounting
		 * precisely (like PIO does) needs per-packet irqs
		 */
3201
		scan_dma_completions(ep);
L
Linus Torvalds 已提交
3202 3203

		/* disable dma on inactive queues; else maybe restart */
3204
		if (!list_empty(&ep->queue)) {
3205
			tmp = readl(&dma->dmactl);
3206
			restart_dma(ep);
L
Linus Torvalds 已提交
3207 3208 3209 3210 3211 3212 3213 3214
		}
		ep->irqs++;
	}

	/* NOTE:  there are other PCI errors we might usefully notice.
	 * if they appear very often, here's where to try recovering.
	 */
	if (stat & PCI_ERROR_INTERRUPTS) {
3215
		ep_err(dev, "pci dma error; stat %08x\n", stat);
L
Linus Torvalds 已提交
3216 3217 3218 3219
		stat &= ~PCI_ERROR_INTERRUPTS;
		/* these are fatal errors, but "maybe" they won't
		 * happen again ...
		 */
3220 3221
		stop_activity(dev, dev->driver);
		ep0_start(dev);
L
Linus Torvalds 已提交
3222 3223 3224 3225
		stat = 0;
	}

	if (stat)
3226
		ep_dbg(dev, "unhandled irqstat1 %08x\n", stat);
L
Linus Torvalds 已提交
3227 3228
}

3229
static irqreturn_t net2280_irq(int irq, void *_dev)
L
Linus Torvalds 已提交
3230 3231 3232
{
	struct net2280		*dev = _dev;

3233
	/* shared interrupt, not ours */
3234
	if ((dev->quirks & PLX_LEGACY) &&
3235
		(!(readl(&dev->regs->irqstat0) & BIT(INTA_ASSERTED))))
3236 3237
		return IRQ_NONE;

3238
	spin_lock(&dev->lock);
L
Linus Torvalds 已提交
3239 3240

	/* handle disconnect, dma, and more */
3241
	handle_stat1_irqs(dev, readl(&dev->regs->irqstat1));
L
Linus Torvalds 已提交
3242 3243

	/* control requests and PIO */
3244
	handle_stat0_irqs(dev, readl(&dev->regs->irqstat0));
L
Linus Torvalds 已提交
3245

3246
	if (dev->quirks & PLX_SUPERSPEED) {
3247 3248 3249 3250 3251 3252
		/* re-enable interrupt to trigger any possible new interrupt */
		u32 pciirqenb1 = readl(&dev->regs->pciirqenb1);
		writel(pciirqenb1 & 0x7FFFFFFF, &dev->regs->pciirqenb1);
		writel(pciirqenb1, &dev->regs->pciirqenb1);
	}

3253
	spin_unlock(&dev->lock);
L
Linus Torvalds 已提交
3254 3255 3256 3257 3258 3259

	return IRQ_HANDLED;
}

/*-------------------------------------------------------------------------*/

3260
static void gadget_release(struct device *_dev)
L
Linus Torvalds 已提交
3261
{
3262
	struct net2280	*dev = dev_get_drvdata(_dev);
L
Linus Torvalds 已提交
3263

3264
	kfree(dev);
L
Linus Torvalds 已提交
3265 3266 3267 3268
}

/* tear down the binding between this driver and the pci device */

3269
static void net2280_remove(struct pci_dev *pdev)
L
Linus Torvalds 已提交
3270
{
3271
	struct net2280		*dev = pci_get_drvdata(pdev);
L
Linus Torvalds 已提交
3272

3273 3274
	usb_del_gadget_udc(&dev->gadget);

3275
	BUG_ON(dev->driver);
L
Linus Torvalds 已提交
3276 3277

	/* then clean up the resources we allocated during probe() */
3278
	net2280_led_shutdown(dev);
L
Linus Torvalds 已提交
3279 3280 3281
	if (dev->requests) {
		int		i;
		for (i = 1; i < 5; i++) {
3282
			if (!dev->ep[i].dummy)
L
Linus Torvalds 已提交
3283
				continue;
3284 3285
			pci_pool_free(dev->requests, dev->ep[i].dummy,
					dev->ep[i].td_dma);
L
Linus Torvalds 已提交
3286
		}
3287
		pci_pool_destroy(dev->requests);
L
Linus Torvalds 已提交
3288 3289
	}
	if (dev->got_irq)
3290
		free_irq(pdev->irq, dev);
3291
	if (dev->quirks & PLX_SUPERSPEED)
3292
		pci_disable_msi(pdev);
L
Linus Torvalds 已提交
3293
	if (dev->regs)
3294
		iounmap(dev->regs);
L
Linus Torvalds 已提交
3295
	if (dev->region)
3296 3297
		release_mem_region(pci_resource_start(pdev, 0),
				pci_resource_len(pdev, 0));
L
Linus Torvalds 已提交
3298
	if (dev->enabled)
3299 3300
		pci_disable_device(pdev);
	device_remove_file(&pdev->dev, &dev_attr_registers);
L
Linus Torvalds 已提交
3301

3302
	ep_info(dev, "unbind\n");
L
Linus Torvalds 已提交
3303 3304 3305 3306 3307 3308
}

/* wrap this driver around the specified device, but
 * don't respond over USB until a gadget driver binds to us.
 */

3309
static int net2280_probe(struct pci_dev *pdev, const struct pci_device_id *id)
L
Linus Torvalds 已提交
3310 3311 3312 3313 3314 3315 3316
{
	struct net2280		*dev;
	unsigned long		resource, len;
	void			__iomem *base = NULL;
	int			retval, i;

	/* alloc, and start init */
3317 3318
	dev = kzalloc(sizeof(*dev), GFP_KERNEL);
	if (dev == NULL) {
L
Linus Torvalds 已提交
3319 3320 3321 3322
		retval = -ENOMEM;
		goto done;
	}

3323 3324
	pci_set_drvdata(pdev, dev);
	spin_lock_init(&dev->lock);
3325
	dev->quirks = id->driver_data;
L
Linus Torvalds 已提交
3326 3327
	dev->pdev = pdev;
	dev->gadget.ops = &net2280_ops;
3328
	dev->gadget.max_speed = (dev->quirks & PLX_SUPERSPEED) ?
3329
				USB_SPEED_SUPER : USB_SPEED_HIGH;
L
Linus Torvalds 已提交
3330 3331 3332 3333 3334

	/* the "gadget" abstracts/virtualizes the controller */
	dev->gadget.name = driver_name;

	/* now all the pci goodies ... */
3335 3336
	if (pci_enable_device(pdev) < 0) {
		retval = -ENODEV;
L
Linus Torvalds 已提交
3337 3338 3339 3340 3341 3342 3343 3344
		goto done;
	}
	dev->enabled = 1;

	/* BAR 0 holds all the registers
	 * BAR 1 is 8051 memory; unused here (note erratum 0103)
	 * BAR 2 is fifo memory; unused here
	 */
3345 3346 3347
	resource = pci_resource_start(pdev, 0);
	len = pci_resource_len(pdev, 0);
	if (!request_mem_region(resource, len, driver_name)) {
3348
		ep_dbg(dev, "controller already in use\n");
L
Linus Torvalds 已提交
3349 3350 3351 3352 3353
		retval = -EBUSY;
		goto done;
	}
	dev->region = 1;

3354 3355 3356 3357
	/* FIXME provide firmware download interface to put
	 * 8051 code into the chip, e.g. to turn on PCI PM.
	 */

3358
	base = ioremap_nocache(resource, len);
L
Linus Torvalds 已提交
3359
	if (base == NULL) {
3360
		ep_dbg(dev, "can't map memory\n");
L
Linus Torvalds 已提交
3361 3362 3363 3364 3365 3366 3367 3368 3369 3370
		retval = -EFAULT;
		goto done;
	}
	dev->regs = (struct net2280_regs __iomem *) base;
	dev->usb = (struct net2280_usb_regs __iomem *) (base + 0x0080);
	dev->pci = (struct net2280_pci_regs __iomem *) (base + 0x0100);
	dev->dma = (struct net2280_dma_regs __iomem *) (base + 0x0180);
	dev->dep = (struct net2280_dep_regs __iomem *) (base + 0x0200);
	dev->epregs = (struct net2280_ep_regs __iomem *) (base + 0x0300);

3371
	if (dev->quirks & PLX_SUPERSPEED) {
3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388
		u32 fsmvalue;
		u32 usbstat;
		dev->usb_ext = (struct usb338x_usb_ext_regs __iomem *)
							(base + 0x00b4);
		dev->fiforegs = (struct usb338x_fifo_regs __iomem *)
							(base + 0x0500);
		dev->llregs = (struct usb338x_ll_regs __iomem *)
							(base + 0x0700);
		dev->ll_lfps_regs = (struct usb338x_ll_lfps_regs __iomem *)
							(base + 0x0748);
		dev->ll_tsn_regs = (struct usb338x_ll_tsn_regs __iomem *)
							(base + 0x077c);
		dev->ll_chicken_reg = (struct usb338x_ll_chi_regs __iomem *)
							(base + 0x079c);
		dev->plregs = (struct usb338x_pl_regs __iomem *)
							(base + 0x0800);
		usbstat = readl(&dev->usb->usbstat);
3389
		dev->enhanced_mode = !!(usbstat & BIT(11));
3390 3391 3392 3393 3394
		dev->n_ep = (dev->enhanced_mode) ? 9 : 5;
		/* put into initial config, link up all endpoints */
		fsmvalue = get_idx_reg(dev->regs, SCRATCH) &
					(0xf << DEFECT7374_FSM_FIELD);
		/* See if firmware needs to set up for workaround: */
3395 3396
		if (fsmvalue == DEFECT7374_FSM_SS_CONTROL_READ) {
			dev->bug7734_patched = 1;
3397
			writel(0, &dev->usb->usbctl);
3398 3399 3400
		} else
			dev->bug7734_patched = 0;
	} else {
3401 3402 3403 3404 3405 3406
		dev->enhanced_mode = 0;
		dev->n_ep = 7;
		/* put into initial config, link up all endpoints */
		writel(0, &dev->usb->usbctl);
	}

3407 3408
	usb_reset(dev);
	usb_reinit(dev);
L
Linus Torvalds 已提交
3409 3410 3411

	/* irq setup after old hardware is cleaned up */
	if (!pdev->irq) {
3412
		ep_err(dev, "No IRQ.  Check PCI setup!\n");
L
Linus Torvalds 已提交
3413 3414 3415
		retval = -ENODEV;
		goto done;
	}
D
David S. Miller 已提交
3416

3417
	if (dev->quirks & PLX_SUPERSPEED)
3418
		if (pci_enable_msi(pdev))
3419
			ep_err(dev, "Failed to enable MSI mode\n");
3420

3421 3422
	if (request_irq(pdev->irq, net2280_irq, IRQF_SHARED,
							driver_name, dev)) {
3423
		ep_err(dev, "request interrupt %d failed\n", pdev->irq);
L
Linus Torvalds 已提交
3424 3425 3426 3427 3428 3429 3430
		retval = -EBUSY;
		goto done;
	}
	dev->got_irq = 1;

	/* DMA setup */
	/* NOTE:  we know only the 32 LSBs of dma addresses may be nonzero */
3431 3432
	dev->requests = pci_pool_create("requests", pdev,
		sizeof(struct net2280_dma),
L
Linus Torvalds 已提交
3433 3434 3435
		0 /* no alignment requirements */,
		0 /* or page-crossing issues */);
	if (!dev->requests) {
3436
		ep_dbg(dev, "can't get request pool\n");
L
Linus Torvalds 已提交
3437 3438 3439 3440 3441 3442
		retval = -ENOMEM;
		goto done;
	}
	for (i = 1; i < 5; i++) {
		struct net2280_dma	*td;

3443 3444
		td = pci_pool_alloc(dev->requests, GFP_KERNEL,
				&dev->ep[i].td_dma);
L
Linus Torvalds 已提交
3445
		if (!td) {
3446
			ep_dbg(dev, "can't get dummy %d\n", i);
L
Linus Torvalds 已提交
3447 3448 3449 3450 3451
			retval = -ENOMEM;
			goto done;
		}
		td->dmacount = 0;	/* not VALID */
		td->dmadesc = td->dmaaddr;
3452
		dev->ep[i].dummy = td;
L
Linus Torvalds 已提交
3453 3454 3455
	}

	/* enable lower-overhead pci memory bursts during DMA */
3456
	if (dev->quirks & PLX_LEGACY)
3457 3458 3459 3460 3461 3462 3463 3464
		writel(BIT(DMA_MEMORY_WRITE_AND_INVALIDATE_ENABLE) |
			/*
			 * 256 write retries may not be enough...
			   BIT(PCI_RETRY_ABORT_ENABLE) |
			*/
			BIT(DMA_READ_MULTIPLE_ENABLE) |
			BIT(DMA_READ_LINE_ENABLE),
			&dev->pci->pcimstctl);
L
Linus Torvalds 已提交
3465
	/* erratum 0115 shouldn't appear: Linux inits PCI_LATENCY_TIMER */
3466 3467
	pci_set_master(pdev);
	pci_try_set_mwi(pdev);
L
Linus Torvalds 已提交
3468 3469

	/* ... also flushes any posted pci writes */
3470
	dev->chiprev = get_idx_reg(dev->regs, REG_CHIPREV) & 0xffff;
L
Linus Torvalds 已提交
3471 3472

	/* done */
3473 3474
	ep_info(dev, "%s\n", driver_desc);
	ep_info(dev, "irq %d, pci mem %p, chip rev %04x\n",
D
David S. Miller 已提交
3475
			pdev->irq, base, dev->chiprev);
3476
	ep_info(dev, "version: " DRIVER_VERSION "; %s\n",
3477
		dev->enhanced_mode ? "enhanced mode" : "legacy mode");
3478 3479 3480
	retval = device_create_file(&pdev->dev, &dev_attr_registers);
	if (retval)
		goto done;
L
Linus Torvalds 已提交
3481

3482 3483
	retval = usb_add_gadget_udc_release(&pdev->dev, &dev->gadget,
			gadget_release);
3484 3485
	if (retval)
		goto done;
L
Linus Torvalds 已提交
3486 3487 3488 3489
	return 0;

done:
	if (dev)
3490
		net2280_remove(pdev);
L
Linus Torvalds 已提交
3491 3492 3493
	return retval;
}

3494 3495 3496 3497
/* make sure the board is quiescent; otherwise it will continue
 * generating IRQs across the upcoming reboot.
 */

3498
static void net2280_shutdown(struct pci_dev *pdev)
3499
{
3500
	struct net2280		*dev = pci_get_drvdata(pdev);
3501 3502

	/* disable IRQs */
3503 3504
	writel(0, &dev->regs->pciirqenb0);
	writel(0, &dev->regs->pciirqenb1);
3505 3506

	/* disable the pullup so the host will think we're gone */
3507
	writel(0, &dev->usb->usbctl);
3508

3509 3510
}

L
Linus Torvalds 已提交
3511 3512 3513

/*-------------------------------------------------------------------------*/

3514
static const struct pci_device_id pci_ids[] = { {
3515 3516
	.class =	((PCI_CLASS_SERIAL_USB << 8) | 0xfe),
	.class_mask =	~0,
3517
	.vendor =	PCI_VENDOR_ID_PLX_LEGACY,
L
Linus Torvalds 已提交
3518 3519 3520
	.device =	0x2280,
	.subvendor =	PCI_ANY_ID,
	.subdevice =	PCI_ANY_ID,
3521
	.driver_data =	PLX_LEGACY | PLX_2280,
3522
	}, {
3523 3524
	.class =	((PCI_CLASS_SERIAL_USB << 8) | 0xfe),
	.class_mask =	~0,
3525
	.vendor =	PCI_VENDOR_ID_PLX_LEGACY,
3526 3527 3528
	.device =	0x2282,
	.subvendor =	PCI_ANY_ID,
	.subdevice =	PCI_ANY_ID,
3529
	.driver_data =	PLX_LEGACY,
3530
	},
3531
	{
3532 3533 3534 3535 3536 3537
	.class =	((PCI_CLASS_SERIAL_USB << 8) | 0xfe),
	.class_mask =	~0,
	.vendor =	PCI_VENDOR_ID_PLX,
	.device =	0x3380,
	.subvendor =	PCI_ANY_ID,
	.subdevice =	PCI_ANY_ID,
3538
	.driver_data =	PLX_SUPERSPEED,
3539 3540
	 },
	{
3541 3542 3543 3544 3545 3546
	.class =	((PCI_CLASS_SERIAL_USB << 8) | 0xfe),
	.class_mask =	~0,
	.vendor =	PCI_VENDOR_ID_PLX,
	.device =	0x3382,
	.subvendor =	PCI_ANY_ID,
	.subdevice =	PCI_ANY_ID,
3547
	.driver_data =	PLX_SUPERSPEED,
3548 3549
	 },
{ /* end: all zeroes */ }
L
Linus Torvalds 已提交
3550
};
3551
MODULE_DEVICE_TABLE(pci, pci_ids);
L
Linus Torvalds 已提交
3552 3553 3554 3555 3556 3557 3558 3559

/* pci driver glue; this is a "new style" PCI driver module */
static struct pci_driver net2280_pci_driver = {
	.name =		(char *) driver_name,
	.id_table =	pci_ids,

	.probe =	net2280_probe,
	.remove =	net2280_remove,
3560
	.shutdown =	net2280_shutdown,
L
Linus Torvalds 已提交
3561 3562 3563 3564

	/* FIXME add power management support */
};

3565 3566
module_pci_driver(net2280_pci_driver);

3567 3568 3569
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_AUTHOR("David Brownell");
MODULE_LICENSE("GPL");