2 * Driver for the PLX NET2280 USB device controller.
3 * Specs and errata are available from <http://www.plxtech.com>.
5 * PLX Technology Inc. (formerly NetChip Technology) supported the
6 * development of this driver.
9 * CODE STATUS HIGHLIGHTS
11 * This driver should work well with most "gadget" drivers, including
12 * the Mass Storage, Serial, and Ethernet/RNDIS gadget drivers
13 * as well as Gadget Zero and Gadgetfs.
15 * DMA is enabled by default.
17 * MSI is enabled by default. The legacy IRQ is used if MSI couldn't
20 * Note that almost all the errata workarounds here are only needed for
21 * rev1 chips. Rev1a silicon (0110) fixes almost all of them.
25 * Copyright (C) 2003 David Brownell
26 * Copyright (C) 2003-2005 PLX Technology, Inc.
27 * Copyright (C) 2014 Ricardo Ribalda - Qtechnology/AS
29 * Modified Seth Levy 2005 PLX Technology, Inc. to provide compatibility
32 * Modified Ricardo Ribalda Qtechnology AS to provide compatibility
33 * with usb 338x chip. Based on PLX driver
35 * This program is free software; you can redistribute it and/or modify
36 * it under the terms of the GNU General Public License as published by
37 * the Free Software Foundation; either version 2 of the License, or
38 * (at your option) any later version.
41 #include <linux/module.h>
42 #include <linux/pci.h>
43 #include <linux/dma-mapping.h>
44 #include <linux/kernel.h>
45 #include <linux/delay.h>
46 #include <linux/ioport.h>
47 #include <linux/slab.h>
48 #include <linux/errno.h>
49 #include <linux/init.h>
50 #include <linux/timer.h>
51 #include <linux/list.h>
52 #include <linux/interrupt.h>
53 #include <linux/moduleparam.h>
54 #include <linux/device.h>
55 #include <linux/usb/ch9.h>
56 #include <linux/usb/gadget.h>
57 #include <linux/prefetch.h>
60 #include <asm/byteorder.h>
62 #include <asm/unaligned.h>
64 #define DRIVER_DESC "PLX NET228x/USB338x USB Peripheral Controller"
65 #define DRIVER_VERSION "2005 Sept 27/v3.0"
67 #define EP_DONTUSE 13 /* nonzero */
69 #define USE_RDK_LEDS /* GPIO pins control three LEDs */
72 static const char driver_name
[] = "net2280";
73 static const char driver_desc
[] = DRIVER_DESC
;
75 static const u32 ep_bit
[9] = { 0, 17, 2, 19, 4, 1, 18, 3, 20 };
76 static const char ep0name
[] = "ep0";
78 #define EP_INFO(_name, _caps) \
86 const struct usb_ep_caps caps
;
87 } ep_info_dft
[] = { /* Default endpoint configuration */
89 USB_EP_CAPS(USB_EP_CAPS_TYPE_CONTROL
, USB_EP_CAPS_DIR_ALL
)),
91 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_ALL
)),
93 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_ALL
)),
95 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_ALL
)),
97 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_ALL
)),
99 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_ALL
)),
101 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_ALL
)),
103 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_ALL
)),
105 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_ALL
)),
106 }, ep_info_adv
[] = { /* Endpoints for usb3380 advance mode */
108 USB_EP_CAPS(USB_EP_CAPS_TYPE_CONTROL
, USB_EP_CAPS_DIR_ALL
)),
110 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_IN
)),
112 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_OUT
)),
114 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_IN
)),
116 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_OUT
)),
118 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_OUT
)),
120 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_IN
)),
122 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_OUT
)),
124 USB_EP_CAPS(USB_EP_CAPS_TYPE_ALL
, USB_EP_CAPS_DIR_IN
)),
129 /* mode 0 == ep-{a,b,c,d} 1K fifo each
130 * mode 1 == ep-{a,b} 2K fifo each, ep-{c,d} unavailable
131 * mode 2 == ep-a 2K fifo, ep-{b,c} 1K each, ep-d unavailable
133 static ushort fifo_mode
;
135 /* "modprobe net2280 fifo_mode=1" etc */
136 module_param(fifo_mode
, ushort
, 0644);
138 /* enable_suspend -- When enabled, the driver will respond to
139 * USB suspend requests by powering down the NET2280. Otherwise,
140 * USB suspend requests will be ignored. This is acceptable for
141 * self-powered devices
143 static bool enable_suspend
;
145 /* "modprobe net2280 enable_suspend=1" etc */
146 module_param(enable_suspend
, bool, 0444);
148 #define DIR_STRING(bAddress) (((bAddress) & USB_DIR_IN) ? "in" : "out")
150 static char *type_string(u8 bmAttributes
)
152 switch ((bmAttributes
) & USB_ENDPOINT_XFERTYPE_MASK
) {
153 case USB_ENDPOINT_XFER_BULK
: return "bulk";
154 case USB_ENDPOINT_XFER_ISOC
: return "iso";
155 case USB_ENDPOINT_XFER_INT
: return "intr";
162 #define valid_bit cpu_to_le32(BIT(VALID_BIT))
163 #define dma_done_ie cpu_to_le32(BIT(DMA_DONE_INTERRUPT_ENABLE))
165 static void ep_clear_seqnum(struct net2280_ep
*ep
);
166 static void stop_activity(struct net2280
*dev
,
167 struct usb_gadget_driver
*driver
);
168 static void ep0_start(struct net2280
*dev
);
170 /*-------------------------------------------------------------------------*/
171 static inline void enable_pciirqenb(struct net2280_ep
*ep
)
173 u32 tmp
= readl(&ep
->dev
->regs
->pciirqenb0
);
175 if (ep
->dev
->quirks
& PLX_LEGACY
)
178 tmp
|= BIT(ep_bit
[ep
->num
]);
179 writel(tmp
, &ep
->dev
->regs
->pciirqenb0
);
185 net2280_enable(struct usb_ep
*_ep
, const struct usb_endpoint_descriptor
*desc
)
188 struct net2280_ep
*ep
;
193 static const u32 ep_key
[9] = { 1, 0, 1, 0, 1, 1, 0, 1, 0 };
196 ep
= container_of(_ep
, struct net2280_ep
, ep
);
197 if (!_ep
|| !desc
|| ep
->desc
|| _ep
->name
== ep0name
||
198 desc
->bDescriptorType
!= USB_DT_ENDPOINT
) {
199 pr_err("%s: failed at line=%d\n", __func__
, __LINE__
);
203 if (!dev
->driver
|| dev
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
208 /* erratum 0119 workaround ties up an endpoint number */
209 if ((desc
->bEndpointAddress
& 0x0f) == EP_DONTUSE
) {
214 if (dev
->quirks
& PLX_PCIE
) {
215 if ((desc
->bEndpointAddress
& 0x0f) >= 0x0c) {
219 ep
->is_in
= !!usb_endpoint_dir_in(desc
);
220 if (dev
->enhanced_mode
&& ep
->is_in
&& ep_key
[ep
->num
]) {
226 /* sanity check ep-e/ep-f since their fifos are small */
227 max
= usb_endpoint_maxp(desc
) & 0x1fff;
228 if (ep
->num
> 4 && max
> 64 && (dev
->quirks
& PLX_LEGACY
)) {
233 spin_lock_irqsave(&dev
->lock
, flags
);
234 _ep
->maxpacket
= max
& 0x7ff;
237 /* ep_reset() has already been called */
240 ep
->out_overflow
= 0;
242 /* set speed-dependent max packet; may kick in high bandwidth */
243 set_max_speed(ep
, max
);
245 /* set type, direction, address; reset fifo counters */
246 writel(BIT(FIFO_FLUSH
), &ep
->regs
->ep_stat
);
248 if ((dev
->quirks
& PLX_PCIE
) && dev
->enhanced_mode
) {
249 tmp
= readl(&ep
->cfg
->ep_cfg
);
250 /* If USB ep number doesn't match hardware ep number */
251 if ((tmp
& 0xf) != usb_endpoint_num(desc
)) {
253 spin_unlock_irqrestore(&dev
->lock
, flags
);
257 tmp
&= ~USB3380_EP_CFG_MASK_IN
;
259 tmp
&= ~USB3380_EP_CFG_MASK_OUT
;
261 type
= (desc
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
);
262 if (type
== USB_ENDPOINT_XFER_INT
) {
263 /* erratum 0105 workaround prevents hs NYET */
264 if (dev
->chiprev
== 0100 &&
265 dev
->gadget
.speed
== USB_SPEED_HIGH
&&
266 !(desc
->bEndpointAddress
& USB_DIR_IN
))
267 writel(BIT(CLEAR_NAK_OUT_PACKETS_MODE
),
269 } else if (type
== USB_ENDPOINT_XFER_BULK
) {
270 /* catch some particularly blatant driver bugs */
271 if ((dev
->gadget
.speed
== USB_SPEED_SUPER
&& max
!= 1024) ||
272 (dev
->gadget
.speed
== USB_SPEED_HIGH
&& max
!= 512) ||
273 (dev
->gadget
.speed
== USB_SPEED_FULL
&& max
> 64)) {
274 spin_unlock_irqrestore(&dev
->lock
, flags
);
279 ep
->is_iso
= (type
== USB_ENDPOINT_XFER_ISOC
);
280 /* Enable this endpoint */
281 if (dev
->quirks
& PLX_LEGACY
) {
282 tmp
|= type
<< ENDPOINT_TYPE
;
283 tmp
|= desc
->bEndpointAddress
;
284 /* default full fifo lines */
285 tmp
|= (4 << ENDPOINT_BYTE_COUNT
);
286 tmp
|= BIT(ENDPOINT_ENABLE
);
287 ep
->is_in
= (tmp
& USB_DIR_IN
) != 0;
289 /* In Legacy mode, only OUT endpoints are used */
290 if (dev
->enhanced_mode
&& ep
->is_in
) {
291 tmp
|= type
<< IN_ENDPOINT_TYPE
;
292 tmp
|= BIT(IN_ENDPOINT_ENABLE
);
294 tmp
|= type
<< OUT_ENDPOINT_TYPE
;
295 tmp
|= BIT(OUT_ENDPOINT_ENABLE
);
296 tmp
|= (ep
->is_in
<< ENDPOINT_DIRECTION
);
299 tmp
|= (4 << ENDPOINT_BYTE_COUNT
);
300 if (!dev
->enhanced_mode
)
301 tmp
|= usb_endpoint_num(desc
);
302 tmp
|= (ep
->ep
.maxburst
<< MAX_BURST_SIZE
);
305 /* Make sure all the registers are written before ep_rsp*/
308 /* for OUT transfers, block the rx fifo until a read is posted */
310 writel(BIT(SET_NAK_OUT_PACKETS
), &ep
->regs
->ep_rsp
);
311 else if (!(dev
->quirks
& PLX_2280
)) {
312 /* Added for 2282, Don't use nak packets on an in endpoint,
313 * this was ignored on 2280
315 writel(BIT(CLEAR_NAK_OUT_PACKETS
) |
316 BIT(CLEAR_NAK_OUT_PACKETS_MODE
), &ep
->regs
->ep_rsp
);
319 if (dev
->quirks
& PLX_PCIE
)
321 writel(tmp
, &ep
->cfg
->ep_cfg
);
324 if (!ep
->dma
) { /* pio, per-packet */
325 enable_pciirqenb(ep
);
327 tmp
= BIT(DATA_PACKET_RECEIVED_INTERRUPT_ENABLE
) |
328 BIT(DATA_PACKET_TRANSMITTED_INTERRUPT_ENABLE
);
329 if (dev
->quirks
& PLX_2280
)
330 tmp
|= readl(&ep
->regs
->ep_irqenb
);
331 writel(tmp
, &ep
->regs
->ep_irqenb
);
332 } else { /* dma, per-request */
333 tmp
= BIT((8 + ep
->num
)); /* completion */
334 tmp
|= readl(&dev
->regs
->pciirqenb1
);
335 writel(tmp
, &dev
->regs
->pciirqenb1
);
337 /* for short OUT transfers, dma completions can't
338 * advance the queue; do it pio-style, by hand.
339 * NOTE erratum 0112 workaround #2
341 if ((desc
->bEndpointAddress
& USB_DIR_IN
) == 0) {
342 tmp
= BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT_ENABLE
);
343 writel(tmp
, &ep
->regs
->ep_irqenb
);
345 enable_pciirqenb(ep
);
349 tmp
= desc
->bEndpointAddress
;
350 ep_dbg(dev
, "enabled %s (ep%d%s-%s) %s max %04x\n",
351 _ep
->name
, tmp
& 0x0f, DIR_STRING(tmp
),
352 type_string(desc
->bmAttributes
),
353 ep
->dma
? "dma" : "pio", max
);
355 /* pci writes may still be posted */
356 spin_unlock_irqrestore(&dev
->lock
, flags
);
360 dev_err(&ep
->dev
->pdev
->dev
, "%s: error=%d\n", __func__
, ret
);
364 static int handshake(u32 __iomem
*ptr
, u32 mask
, u32 done
, int usec
)
370 if (result
== ~(u32
)0) /* "device unplugged" */
381 static const struct usb_ep_ops net2280_ep_ops
;
383 static void ep_reset_228x(struct net2280_regs __iomem
*regs
,
384 struct net2280_ep
*ep
)
389 INIT_LIST_HEAD(&ep
->queue
);
391 usb_ep_set_maxpacket_limit(&ep
->ep
, ~0);
392 ep
->ep
.ops
= &net2280_ep_ops
;
394 /* disable the dma, irqs, endpoint... */
396 writel(0, &ep
->dma
->dmactl
);
397 writel(BIT(DMA_SCATTER_GATHER_DONE_INTERRUPT
) |
398 BIT(DMA_TRANSACTION_DONE_INTERRUPT
) |
402 tmp
= readl(®s
->pciirqenb0
);
403 tmp
&= ~BIT(ep
->num
);
404 writel(tmp
, ®s
->pciirqenb0
);
406 tmp
= readl(®s
->pciirqenb1
);
407 tmp
&= ~BIT((8 + ep
->num
)); /* completion */
408 writel(tmp
, ®s
->pciirqenb1
);
410 writel(0, &ep
->regs
->ep_irqenb
);
412 /* init to our chosen defaults, notably so that we NAK OUT
413 * packets until the driver queues a read (+note erratum 0112)
415 if (!ep
->is_in
|| (ep
->dev
->quirks
& PLX_2280
)) {
416 tmp
= BIT(SET_NAK_OUT_PACKETS_MODE
) |
417 BIT(SET_NAK_OUT_PACKETS
) |
418 BIT(CLEAR_EP_HIDE_STATUS_PHASE
) |
419 BIT(CLEAR_INTERRUPT_MODE
);
422 tmp
= BIT(CLEAR_NAK_OUT_PACKETS_MODE
) |
423 BIT(CLEAR_NAK_OUT_PACKETS
) |
424 BIT(CLEAR_EP_HIDE_STATUS_PHASE
) |
425 BIT(CLEAR_INTERRUPT_MODE
);
429 tmp
|= BIT(CLEAR_ENDPOINT_TOGGLE
) |
430 BIT(CLEAR_ENDPOINT_HALT
);
432 writel(tmp
, &ep
->regs
->ep_rsp
);
434 /* scrub most status bits, and flush any fifo state */
435 if (ep
->dev
->quirks
& PLX_2280
)
436 tmp
= BIT(FIFO_OVERFLOW
) |
441 writel(tmp
| BIT(TIMEOUT
) |
442 BIT(USB_STALL_SENT
) |
443 BIT(USB_IN_NAK_SENT
) |
444 BIT(USB_IN_ACK_RCVD
) |
445 BIT(USB_OUT_PING_NAK_SENT
) |
446 BIT(USB_OUT_ACK_SENT
) |
448 BIT(SHORT_PACKET_OUT_DONE_INTERRUPT
) |
449 BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT
) |
450 BIT(DATA_PACKET_RECEIVED_INTERRUPT
) |
451 BIT(DATA_PACKET_TRANSMITTED_INTERRUPT
) |
452 BIT(DATA_OUT_PING_TOKEN_INTERRUPT
) |
453 BIT(DATA_IN_TOKEN_INTERRUPT
),
456 /* fifo size is handled separately */
459 static void ep_reset_338x(struct net2280_regs __iomem
*regs
,
460 struct net2280_ep
*ep
)
465 INIT_LIST_HEAD(&ep
->queue
);
467 usb_ep_set_maxpacket_limit(&ep
->ep
, ~0);
468 ep
->ep
.ops
= &net2280_ep_ops
;
470 /* disable the dma, irqs, endpoint... */
472 writel(0, &ep
->dma
->dmactl
);
473 writel(BIT(DMA_ABORT_DONE_INTERRUPT
) |
474 BIT(DMA_PAUSE_DONE_INTERRUPT
) |
475 BIT(DMA_SCATTER_GATHER_DONE_INTERRUPT
) |
476 BIT(DMA_TRANSACTION_DONE_INTERRUPT
),
477 /* | BIT(DMA_ABORT), */
480 dmastat
= readl(&ep
->dma
->dmastat
);
481 if (dmastat
== 0x5002) {
482 ep_warn(ep
->dev
, "The dmastat return = %x!!\n",
484 writel(0x5a, &ep
->dma
->dmastat
);
487 tmp
= readl(®s
->pciirqenb0
);
488 tmp
&= ~BIT(ep_bit
[ep
->num
]);
489 writel(tmp
, ®s
->pciirqenb0
);
492 tmp
= readl(®s
->pciirqenb1
);
493 tmp
&= ~BIT((8 + ep
->num
)); /* completion */
494 writel(tmp
, ®s
->pciirqenb1
);
497 writel(0, &ep
->regs
->ep_irqenb
);
499 writel(BIT(SHORT_PACKET_OUT_DONE_INTERRUPT
) |
500 BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT
) |
502 BIT(DATA_PACKET_RECEIVED_INTERRUPT
) |
503 BIT(DATA_PACKET_TRANSMITTED_INTERRUPT
) |
504 BIT(DATA_OUT_PING_TOKEN_INTERRUPT
) |
505 BIT(DATA_IN_TOKEN_INTERRUPT
), &ep
->regs
->ep_stat
);
507 tmp
= readl(&ep
->cfg
->ep_cfg
);
509 tmp
&= ~USB3380_EP_CFG_MASK_IN
;
511 tmp
&= ~USB3380_EP_CFG_MASK_OUT
;
512 writel(tmp
, &ep
->cfg
->ep_cfg
);
515 static void nuke(struct net2280_ep
*);
517 static int net2280_disable(struct usb_ep
*_ep
)
519 struct net2280_ep
*ep
;
522 ep
= container_of(_ep
, struct net2280_ep
, ep
);
523 if (!_ep
|| !ep
->desc
|| _ep
->name
== ep0name
) {
524 pr_err("%s: Invalid ep=%p or ep->desc\n", __func__
, _ep
);
527 spin_lock_irqsave(&ep
->dev
->lock
, flags
);
530 if (ep
->dev
->quirks
& PLX_PCIE
)
531 ep_reset_338x(ep
->dev
->regs
, ep
);
533 ep_reset_228x(ep
->dev
->regs
, ep
);
535 ep_vdbg(ep
->dev
, "disabled %s %s\n",
536 ep
->dma
? "dma" : "pio", _ep
->name
);
538 /* synch memory views with the device */
539 (void)readl(&ep
->cfg
->ep_cfg
);
541 if (!ep
->dma
&& ep
->num
>= 1 && ep
->num
<= 4)
542 ep
->dma
= &ep
->dev
->dma
[ep
->num
- 1];
544 spin_unlock_irqrestore(&ep
->dev
->lock
, flags
);
548 /*-------------------------------------------------------------------------*/
550 static struct usb_request
551 *net2280_alloc_request(struct usb_ep
*_ep
, gfp_t gfp_flags
)
553 struct net2280_ep
*ep
;
554 struct net2280_request
*req
;
557 pr_err("%s: Invalid ep\n", __func__
);
560 ep
= container_of(_ep
, struct net2280_ep
, ep
);
562 req
= kzalloc(sizeof(*req
), gfp_flags
);
566 INIT_LIST_HEAD(&req
->queue
);
568 /* this dma descriptor may be swapped with the previous dummy */
570 struct net2280_dma
*td
;
572 td
= pci_pool_alloc(ep
->dev
->requests
, gfp_flags
,
578 td
->dmacount
= 0; /* not VALID */
579 td
->dmadesc
= td
->dmaaddr
;
585 static void net2280_free_request(struct usb_ep
*_ep
, struct usb_request
*_req
)
587 struct net2280_ep
*ep
;
588 struct net2280_request
*req
;
590 ep
= container_of(_ep
, struct net2280_ep
, ep
);
592 dev_err(&ep
->dev
->pdev
->dev
, "%s: Invalid ep=%p or req=%p\n",
593 __func__
, _ep
, _req
);
597 req
= container_of(_req
, struct net2280_request
, req
);
598 WARN_ON(!list_empty(&req
->queue
));
600 pci_pool_free(ep
->dev
->requests
, req
->td
, req
->td_dma
);
604 /*-------------------------------------------------------------------------*/
606 /* load a packet into the fifo we use for usb IN transfers.
607 * works for all endpoints.
609 * NOTE: pio with ep-a..ep-d could stuff multiple packets into the fifo
610 * at a time, but this code is simpler because it knows it only writes
611 * one packet. ep-a..ep-d should use dma instead.
613 static void write_fifo(struct net2280_ep
*ep
, struct usb_request
*req
)
615 struct net2280_ep_regs __iomem
*regs
= ep
->regs
;
618 unsigned count
, total
;
620 /* INVARIANT: fifo is currently empty. (testable) */
623 buf
= req
->buf
+ req
->actual
;
625 total
= req
->length
- req
->actual
;
631 /* write just one packet at a time */
632 count
= ep
->ep
.maxpacket
;
633 if (count
> total
) /* min() cannot be used on a bitfield */
636 ep_vdbg(ep
->dev
, "write %s fifo (IN) %d bytes%s req %p\n",
638 (count
!= ep
->ep
.maxpacket
) ? " (short)" : "",
641 /* NOTE be careful if you try to align these. fifo lines
642 * should normally be full (4 bytes) and successive partial
643 * lines are ok only in certain cases.
645 tmp
= get_unaligned((u32
*)buf
);
647 writel(tmp
, ®s
->ep_data
);
652 /* last fifo entry is "short" unless we wrote a full packet.
653 * also explicitly validate last word in (periodic) transfers
654 * when maxpacket is not a multiple of 4 bytes.
656 if (count
|| total
< ep
->ep
.maxpacket
) {
657 tmp
= count
? get_unaligned((u32
*)buf
) : count
;
659 set_fifo_bytecount(ep
, count
& 0x03);
660 writel(tmp
, ®s
->ep_data
);
663 /* pci writes may still be posted */
666 /* work around erratum 0106: PCI and USB race over the OUT fifo.
667 * caller guarantees chiprev 0100, out endpoint is NAKing, and
668 * there's no real data in the fifo.
670 * NOTE: also used in cases where that erratum doesn't apply:
671 * where the host wrote "too much" data to us.
673 static void out_flush(struct net2280_ep
*ep
)
678 statp
= &ep
->regs
->ep_stat
;
681 if (tmp
& BIT(NAK_OUT_PACKETS
)) {
682 ep_dbg(ep
->dev
, "%s %s %08x !NAK\n",
683 ep
->ep
.name
, __func__
, tmp
);
684 writel(BIT(SET_NAK_OUT_PACKETS
), &ep
->regs
->ep_rsp
);
687 writel(BIT(DATA_OUT_PING_TOKEN_INTERRUPT
) |
688 BIT(DATA_PACKET_RECEIVED_INTERRUPT
),
690 writel(BIT(FIFO_FLUSH
), statp
);
691 /* Make sure that stap is written */
694 if (tmp
& BIT(DATA_OUT_PING_TOKEN_INTERRUPT
) &&
695 /* high speed did bulk NYET; fifo isn't filling */
696 ep
->dev
->gadget
.speed
== USB_SPEED_FULL
) {
699 usec
= 50; /* 64 byte bulk/interrupt */
700 handshake(statp
, BIT(USB_OUT_PING_NAK_SENT
),
701 BIT(USB_OUT_PING_NAK_SENT
), usec
);
702 /* NAK done; now CLEAR_NAK_OUT_PACKETS is safe */
706 /* unload packet(s) from the fifo we use for usb OUT transfers.
707 * returns true iff the request completed, because of short packet
708 * or the request buffer having filled with full packets.
710 * for ep-a..ep-d this will read multiple packets out when they
711 * have been accepted.
713 static int read_fifo(struct net2280_ep
*ep
, struct net2280_request
*req
)
715 struct net2280_ep_regs __iomem
*regs
= ep
->regs
;
716 u8
*buf
= req
->req
.buf
+ req
->req
.actual
;
717 unsigned count
, tmp
, is_short
;
718 unsigned cleanup
= 0, prevent
= 0;
720 /* erratum 0106 ... packets coming in during fifo reads might
721 * be incompletely rejected. not all cases have workarounds.
723 if (ep
->dev
->chiprev
== 0x0100 &&
724 ep
->dev
->gadget
.speed
== USB_SPEED_FULL
) {
726 tmp
= readl(&ep
->regs
->ep_stat
);
727 if ((tmp
& BIT(NAK_OUT_PACKETS
)))
729 else if ((tmp
& BIT(FIFO_FULL
))) {
730 start_out_naking(ep
);
733 /* else: hope we don't see the problem */
736 /* never overflow the rx buffer. the fifo reads packets until
737 * it sees a short one; we might not be ready for them all.
740 count
= readl(®s
->ep_avail
);
741 if (unlikely(count
== 0)) {
743 tmp
= readl(&ep
->regs
->ep_stat
);
744 count
= readl(®s
->ep_avail
);
745 /* handled that data already? */
746 if (count
== 0 && (tmp
& BIT(NAK_OUT_PACKETS
)) == 0)
750 tmp
= req
->req
.length
- req
->req
.actual
;
752 /* as with DMA, data overflow gets flushed */
753 if ((tmp
% ep
->ep
.maxpacket
) != 0) {
755 "%s out fifo %d bytes, expected %d\n",
756 ep
->ep
.name
, count
, tmp
);
757 req
->req
.status
= -EOVERFLOW
;
759 /* NAK_OUT_PACKETS will be set, so flushing is safe;
760 * the next read will start with the next packet
762 } /* else it's a ZLP, no worries */
765 req
->req
.actual
+= count
;
767 is_short
= (count
== 0) || ((count
% ep
->ep
.maxpacket
) != 0);
769 ep_vdbg(ep
->dev
, "read %s fifo (OUT) %d bytes%s%s%s req %p %d/%d\n",
770 ep
->ep
.name
, count
, is_short
? " (short)" : "",
771 cleanup
? " flush" : "", prevent
? " nak" : "",
772 req
, req
->req
.actual
, req
->req
.length
);
775 tmp
= readl(®s
->ep_data
);
777 put_unaligned(tmp
, (u32
*)buf
);
782 tmp
= readl(®s
->ep_data
);
783 /* LE conversion is implicit here: */
792 writel(BIT(CLEAR_NAK_OUT_PACKETS
), &ep
->regs
->ep_rsp
);
793 (void) readl(&ep
->regs
->ep_rsp
);
796 return is_short
|| ((req
->req
.actual
== req
->req
.length
) &&
800 /* fill out dma descriptor to match a given request */
801 static void fill_dma_desc(struct net2280_ep
*ep
,
802 struct net2280_request
*req
, int valid
)
804 struct net2280_dma
*td
= req
->td
;
805 u32 dmacount
= req
->req
.length
;
807 /* don't let DMA continue after a short OUT packet,
808 * so overruns can't affect the next transfer.
809 * in case of overruns on max-size packets, we can't
810 * stop the fifo from filling but we can flush it.
813 dmacount
|= BIT(DMA_DIRECTION
);
814 if ((!ep
->is_in
&& (dmacount
% ep
->ep
.maxpacket
) != 0) ||
815 !(ep
->dev
->quirks
& PLX_2280
))
816 dmacount
|= BIT(END_OF_CHAIN
);
820 dmacount
|= BIT(VALID_BIT
);
821 dmacount
|= BIT(DMA_DONE_INTERRUPT_ENABLE
);
823 /* td->dmadesc = previously set by caller */
824 td
->dmaaddr
= cpu_to_le32 (req
->req
.dma
);
826 /* 2280 may be polling VALID_BIT through ep->dma->dmadesc */
828 td
->dmacount
= cpu_to_le32(dmacount
);
831 static const u32 dmactl_default
=
832 BIT(DMA_SCATTER_GATHER_DONE_INTERRUPT
) |
833 BIT(DMA_CLEAR_COUNT_ENABLE
) |
834 /* erratum 0116 workaround part 1 (use POLLING) */
835 (POLL_100_USEC
<< DESCRIPTOR_POLLING_RATE
) |
836 BIT(DMA_VALID_BIT_POLLING_ENABLE
) |
837 BIT(DMA_VALID_BIT_ENABLE
) |
838 BIT(DMA_SCATTER_GATHER_ENABLE
) |
839 /* erratum 0116 workaround part 2 (no AUTOSTART) */
842 static inline void spin_stop_dma(struct net2280_dma_regs __iomem
*dma
)
844 handshake(&dma
->dmactl
, BIT(DMA_ENABLE
), 0, 50);
847 static inline void stop_dma(struct net2280_dma_regs __iomem
*dma
)
849 writel(readl(&dma
->dmactl
) & ~BIT(DMA_ENABLE
), &dma
->dmactl
);
853 static void start_queue(struct net2280_ep
*ep
, u32 dmactl
, u32 td_dma
)
855 struct net2280_dma_regs __iomem
*dma
= ep
->dma
;
856 unsigned int tmp
= BIT(VALID_BIT
) | (ep
->is_in
<< DMA_DIRECTION
);
858 if (!(ep
->dev
->quirks
& PLX_2280
))
859 tmp
|= BIT(END_OF_CHAIN
);
861 writel(tmp
, &dma
->dmacount
);
862 writel(readl(&dma
->dmastat
), &dma
->dmastat
);
864 writel(td_dma
, &dma
->dmadesc
);
865 if (ep
->dev
->quirks
& PLX_PCIE
)
866 dmactl
|= BIT(DMA_REQUEST_OUTSTANDING
);
867 writel(dmactl
, &dma
->dmactl
);
869 /* erratum 0116 workaround part 3: pci arbiter away from net2280 */
870 (void) readl(&ep
->dev
->pci
->pcimstctl
);
872 writel(BIT(DMA_START
), &dma
->dmastat
);
878 static void start_dma(struct net2280_ep
*ep
, struct net2280_request
*req
)
881 struct net2280_dma_regs __iomem
*dma
= ep
->dma
;
883 /* FIXME can't use DMA for ZLPs */
885 /* on this path we "know" there's no dma active (yet) */
886 WARN_ON(readl(&dma
->dmactl
) & BIT(DMA_ENABLE
));
887 writel(0, &ep
->dma
->dmactl
);
889 /* previous OUT packet might have been short */
890 if (!ep
->is_in
&& (readl(&ep
->regs
->ep_stat
) &
891 BIT(NAK_OUT_PACKETS
))) {
892 writel(BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT
),
895 tmp
= readl(&ep
->regs
->ep_avail
);
897 writel(readl(&dma
->dmastat
), &dma
->dmastat
);
899 /* transfer all/some fifo data */
900 writel(req
->req
.dma
, &dma
->dmaaddr
);
901 tmp
= min(tmp
, req
->req
.length
);
903 /* dma irq, faking scatterlist status */
904 req
->td
->dmacount
= cpu_to_le32(req
->req
.length
- tmp
);
905 writel(BIT(DMA_DONE_INTERRUPT_ENABLE
) | tmp
,
907 req
->td
->dmadesc
= 0;
910 writel(BIT(DMA_ENABLE
), &dma
->dmactl
);
911 writel(BIT(DMA_START
), &dma
->dmastat
);
916 tmp
= dmactl_default
;
918 /* force packet boundaries between dma requests, but prevent the
919 * controller from automagically writing a last "short" packet
920 * (zero length) unless the driver explicitly said to do that.
923 if (likely((req
->req
.length
% ep
->ep
.maxpacket
) ||
925 tmp
|= BIT(DMA_FIFO_VALIDATE
);
926 ep
->in_fifo_validate
= 1;
928 ep
->in_fifo_validate
= 0;
931 /* init req->td, pointing to the current dummy */
932 req
->td
->dmadesc
= cpu_to_le32 (ep
->td_dma
);
933 fill_dma_desc(ep
, req
, 1);
935 req
->td
->dmacount
|= cpu_to_le32(BIT(END_OF_CHAIN
));
937 start_queue(ep
, tmp
, req
->td_dma
);
941 queue_dma(struct net2280_ep
*ep
, struct net2280_request
*req
, int valid
)
943 struct net2280_dma
*end
;
946 /* swap new dummy for old, link; fill and maybe activate */
952 ep
->td_dma
= req
->td_dma
;
955 end
->dmadesc
= cpu_to_le32 (ep
->td_dma
);
957 fill_dma_desc(ep
, req
, valid
);
961 done(struct net2280_ep
*ep
, struct net2280_request
*req
, int status
)
964 unsigned stopped
= ep
->stopped
;
966 list_del_init(&req
->queue
);
968 if (req
->req
.status
== -EINPROGRESS
)
969 req
->req
.status
= status
;
971 status
= req
->req
.status
;
975 usb_gadget_unmap_request(&dev
->gadget
, &req
->req
, ep
->is_in
);
977 if (status
&& status
!= -ESHUTDOWN
)
978 ep_vdbg(dev
, "complete %s req %p stat %d len %u/%u\n",
979 ep
->ep
.name
, &req
->req
, status
,
980 req
->req
.actual
, req
->req
.length
);
982 /* don't modify queue heads during completion callback */
984 spin_unlock(&dev
->lock
);
985 usb_gadget_giveback_request(&ep
->ep
, &req
->req
);
986 spin_lock(&dev
->lock
);
987 ep
->stopped
= stopped
;
990 /*-------------------------------------------------------------------------*/
993 net2280_queue(struct usb_ep
*_ep
, struct usb_request
*_req
, gfp_t gfp_flags
)
995 struct net2280_request
*req
;
996 struct net2280_ep
*ep
;
1001 /* we always require a cpu-view buffer, so that we can
1002 * always use pio (as fallback or whatever).
1004 ep
= container_of(_ep
, struct net2280_ep
, ep
);
1005 if (!_ep
|| (!ep
->desc
&& ep
->num
!= 0)) {
1006 pr_err("%s: Invalid ep=%p or ep->desc\n", __func__
, _ep
);
1009 req
= container_of(_req
, struct net2280_request
, req
);
1010 if (!_req
|| !_req
->complete
|| !_req
->buf
||
1011 !list_empty(&req
->queue
)) {
1015 if (_req
->length
> (~0 & DMA_BYTE_COUNT_MASK
)) {
1020 if (!dev
->driver
|| dev
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
1025 /* FIXME implement PIO fallback for ZLPs with DMA */
1026 if (ep
->dma
&& _req
->length
== 0) {
1031 /* set up dma mapping in case the caller didn't */
1033 ret
= usb_gadget_map_request(&dev
->gadget
, _req
,
1039 ep_vdbg(dev
, "%s queue req %p, len %d buf %p\n",
1040 _ep
->name
, _req
, _req
->length
, _req
->buf
);
1042 spin_lock_irqsave(&dev
->lock
, flags
);
1044 _req
->status
= -EINPROGRESS
;
1047 /* kickstart this i/o queue? */
1048 if (list_empty(&ep
->queue
) && !ep
->stopped
&&
1049 !((dev
->quirks
& PLX_PCIE
) && ep
->dma
&&
1050 (readl(&ep
->regs
->ep_rsp
) & BIT(CLEAR_ENDPOINT_HALT
)))) {
1052 /* use DMA if the endpoint supports it, else pio */
1056 /* maybe there's no control data, just status ack */
1057 if (ep
->num
== 0 && _req
->length
== 0) {
1060 ep_vdbg(dev
, "%s status ack\n", ep
->ep
.name
);
1064 /* PIO ... stuff the fifo, or unblock it. */
1066 write_fifo(ep
, _req
);
1067 else if (list_empty(&ep
->queue
)) {
1070 /* OUT FIFO might have packet(s) buffered */
1071 s
= readl(&ep
->regs
->ep_stat
);
1072 if ((s
& BIT(FIFO_EMPTY
)) == 0) {
1073 /* note: _req->short_not_ok is
1074 * ignored here since PIO _always_
1075 * stops queue advance here, and
1076 * _req->status doesn't change for
1077 * short reads (only _req->actual)
1079 if (read_fifo(ep
, req
) &&
1083 /* don't queue it */
1085 } else if (read_fifo(ep
, req
) &&
1090 s
= readl(&ep
->regs
->ep_stat
);
1093 /* don't NAK, let the fifo fill */
1094 if (req
&& (s
& BIT(NAK_OUT_PACKETS
)))
1095 writel(BIT(CLEAR_NAK_OUT_PACKETS
),
1100 } else if (ep
->dma
) {
1106 /* preventing magic zlps is per-engine state, not
1107 * per-transfer; irq logic must recover hiccups.
1109 expect
= likely(req
->req
.zero
||
1110 (req
->req
.length
% ep
->ep
.maxpacket
));
1111 if (expect
!= ep
->in_fifo_validate
)
1114 queue_dma(ep
, req
, valid
);
1116 } /* else the irq handler advances the queue. */
1120 list_add_tail(&req
->queue
, &ep
->queue
);
1122 spin_unlock_irqrestore(&dev
->lock
, flags
);
1124 /* pci writes may still be posted */
1128 dev_err(&ep
->dev
->pdev
->dev
, "%s: error=%d\n", __func__
, ret
);
1133 dma_done(struct net2280_ep
*ep
, struct net2280_request
*req
, u32 dmacount
,
1136 req
->req
.actual
= req
->req
.length
- (DMA_BYTE_COUNT_MASK
& dmacount
);
1137 done(ep
, req
, status
);
1140 static int scan_dma_completions(struct net2280_ep
*ep
)
1142 int num_completed
= 0;
1144 /* only look at descriptors that were "naturally" retired,
1145 * so fifo and list head state won't matter
1147 while (!list_empty(&ep
->queue
)) {
1148 struct net2280_request
*req
;
1151 req
= list_entry(ep
->queue
.next
,
1152 struct net2280_request
, queue
);
1156 tmp
= le32_to_cpup(&req
->td
->dmacount
);
1157 if ((tmp
& BIT(VALID_BIT
)) != 0)
1160 /* SHORT_PACKET_TRANSFERRED_INTERRUPT handles "usb-short"
1161 * cases where DMA must be aborted; this code handles
1162 * all non-abort DMA completions.
1164 if (unlikely(req
->td
->dmadesc
== 0)) {
1166 tmp
= readl(&ep
->dma
->dmacount
);
1167 if (tmp
& DMA_BYTE_COUNT_MASK
)
1169 /* single transfer mode */
1170 dma_done(ep
, req
, tmp
, 0);
1173 } else if (!ep
->is_in
&&
1174 (req
->req
.length
% ep
->ep
.maxpacket
) &&
1175 !(ep
->dev
->quirks
& PLX_PCIE
)) {
1177 tmp
= readl(&ep
->regs
->ep_stat
);
1178 /* AVOID TROUBLE HERE by not issuing short reads from
1179 * your gadget driver. That helps avoids errata 0121,
1180 * 0122, and 0124; not all cases trigger the warning.
1182 if ((tmp
& BIT(NAK_OUT_PACKETS
)) == 0) {
1183 ep_warn(ep
->dev
, "%s lost packet sync!\n",
1185 req
->req
.status
= -EOVERFLOW
;
1187 tmp
= readl(&ep
->regs
->ep_avail
);
1189 /* fifo gets flushed later */
1190 ep
->out_overflow
= 1;
1192 "%s dma, discard %d len %d\n",
1195 req
->req
.status
= -EOVERFLOW
;
1199 dma_done(ep
, req
, tmp
, 0);
1203 return num_completed
;
1206 static void restart_dma(struct net2280_ep
*ep
)
1208 struct net2280_request
*req
;
1212 req
= list_entry(ep
->queue
.next
, struct net2280_request
, queue
);
1217 static void abort_dma(struct net2280_ep
*ep
)
1219 /* abort the current transfer */
1220 if (likely(!list_empty(&ep
->queue
))) {
1221 /* FIXME work around errata 0121, 0122, 0124 */
1222 writel(BIT(DMA_ABORT
), &ep
->dma
->dmastat
);
1223 spin_stop_dma(ep
->dma
);
1226 scan_dma_completions(ep
);
1229 /* dequeue ALL requests */
1230 static void nuke(struct net2280_ep
*ep
)
1232 struct net2280_request
*req
;
1234 /* called with spinlock held */
1238 while (!list_empty(&ep
->queue
)) {
1239 req
= list_entry(ep
->queue
.next
,
1240 struct net2280_request
,
1242 done(ep
, req
, -ESHUTDOWN
);
1246 /* dequeue JUST ONE request */
1247 static int net2280_dequeue(struct usb_ep
*_ep
, struct usb_request
*_req
)
1249 struct net2280_ep
*ep
;
1250 struct net2280_request
*req
;
1251 unsigned long flags
;
1255 ep
= container_of(_ep
, struct net2280_ep
, ep
);
1256 if (!_ep
|| (!ep
->desc
&& ep
->num
!= 0) || !_req
) {
1257 pr_err("%s: Invalid ep=%p or ep->desc or req=%p\n",
1258 __func__
, _ep
, _req
);
1262 spin_lock_irqsave(&ep
->dev
->lock
, flags
);
1263 stopped
= ep
->stopped
;
1265 /* quiesce dma while we patch the queue */
1269 dmactl
= readl(&ep
->dma
->dmactl
);
1270 /* WARNING erratum 0127 may kick in ... */
1272 scan_dma_completions(ep
);
1275 /* make sure it's still queued on this endpoint */
1276 list_for_each_entry(req
, &ep
->queue
, queue
) {
1277 if (&req
->req
== _req
)
1280 if (&req
->req
!= _req
) {
1281 spin_unlock_irqrestore(&ep
->dev
->lock
, flags
);
1282 dev_err(&ep
->dev
->pdev
->dev
, "%s: Request mismatch\n",
1287 /* queue head may be partially complete. */
1288 if (ep
->queue
.next
== &req
->queue
) {
1290 ep_dbg(ep
->dev
, "unlink (%s) dma\n", _ep
->name
);
1291 _req
->status
= -ECONNRESET
;
1293 if (likely(ep
->queue
.next
== &req
->queue
)) {
1294 /* NOTE: misreports single-transfer mode*/
1295 req
->td
->dmacount
= 0; /* invalidate */
1297 readl(&ep
->dma
->dmacount
),
1301 ep_dbg(ep
->dev
, "unlink (%s) pio\n", _ep
->name
);
1302 done(ep
, req
, -ECONNRESET
);
1308 done(ep
, req
, -ECONNRESET
);
1309 ep
->stopped
= stopped
;
1312 /* turn off dma on inactive queues */
1313 if (list_empty(&ep
->queue
))
1315 else if (!ep
->stopped
) {
1316 /* resume current request, or start new one */
1318 writel(dmactl
, &ep
->dma
->dmactl
);
1320 start_dma(ep
, list_entry(ep
->queue
.next
,
1321 struct net2280_request
, queue
));
1325 spin_unlock_irqrestore(&ep
->dev
->lock
, flags
);
1329 /*-------------------------------------------------------------------------*/
1331 static int net2280_fifo_status(struct usb_ep
*_ep
);
1334 net2280_set_halt_and_wedge(struct usb_ep
*_ep
, int value
, int wedged
)
1336 struct net2280_ep
*ep
;
1337 unsigned long flags
;
1340 ep
= container_of(_ep
, struct net2280_ep
, ep
);
1341 if (!_ep
|| (!ep
->desc
&& ep
->num
!= 0)) {
1342 pr_err("%s: Invalid ep=%p or ep->desc\n", __func__
, _ep
);
1345 if (!ep
->dev
->driver
|| ep
->dev
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
1346 retval
= -ESHUTDOWN
;
1349 if (ep
->desc
/* not ep0 */ && (ep
->desc
->bmAttributes
& 0x03)
1350 == USB_ENDPOINT_XFER_ISOC
) {
1355 spin_lock_irqsave(&ep
->dev
->lock
, flags
);
1356 if (!list_empty(&ep
->queue
)) {
1359 } else if (ep
->is_in
&& value
&& net2280_fifo_status(_ep
) != 0) {
1363 ep_vdbg(ep
->dev
, "%s %s %s\n", _ep
->name
,
1364 value
? "set" : "clear",
1365 wedged
? "wedge" : "halt");
1366 /* set/clear, then synch memory views with the device */
1369 ep
->dev
->protocol_stall
= 1;
1376 if (ep
->dev
->quirks
& PLX_PCIE
&&
1377 !list_empty(&ep
->queue
) && ep
->td_dma
)
1381 (void) readl(&ep
->regs
->ep_rsp
);
1383 spin_unlock_irqrestore(&ep
->dev
->lock
, flags
);
1388 spin_unlock_irqrestore(&ep
->dev
->lock
, flags
);
1390 dev_err(&ep
->dev
->pdev
->dev
, "%s: error=%d\n", __func__
, retval
);
1394 static int net2280_set_halt(struct usb_ep
*_ep
, int value
)
1396 return net2280_set_halt_and_wedge(_ep
, value
, 0);
1399 static int net2280_set_wedge(struct usb_ep
*_ep
)
1401 if (!_ep
|| _ep
->name
== ep0name
) {
1402 pr_err("%s: Invalid ep=%p or ep0\n", __func__
, _ep
);
1405 return net2280_set_halt_and_wedge(_ep
, 1, 1);
1408 static int net2280_fifo_status(struct usb_ep
*_ep
)
1410 struct net2280_ep
*ep
;
1413 ep
= container_of(_ep
, struct net2280_ep
, ep
);
1414 if (!_ep
|| (!ep
->desc
&& ep
->num
!= 0)) {
1415 pr_err("%s: Invalid ep=%p or ep->desc\n", __func__
, _ep
);
1418 if (!ep
->dev
->driver
|| ep
->dev
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
1419 dev_err(&ep
->dev
->pdev
->dev
,
1420 "%s: Invalid driver=%p or speed=%d\n",
1421 __func__
, ep
->dev
->driver
, ep
->dev
->gadget
.speed
);
1425 avail
= readl(&ep
->regs
->ep_avail
) & (BIT(12) - 1);
1426 if (avail
> ep
->fifo_size
) {
1427 dev_err(&ep
->dev
->pdev
->dev
, "%s: Fifo overflow\n", __func__
);
1431 avail
= ep
->fifo_size
- avail
;
1435 static void net2280_fifo_flush(struct usb_ep
*_ep
)
1437 struct net2280_ep
*ep
;
1439 ep
= container_of(_ep
, struct net2280_ep
, ep
);
1440 if (!_ep
|| (!ep
->desc
&& ep
->num
!= 0)) {
1441 pr_err("%s: Invalid ep=%p or ep->desc\n", __func__
, _ep
);
1444 if (!ep
->dev
->driver
|| ep
->dev
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
1445 dev_err(&ep
->dev
->pdev
->dev
,
1446 "%s: Invalid driver=%p or speed=%d\n",
1447 __func__
, ep
->dev
->driver
, ep
->dev
->gadget
.speed
);
1451 writel(BIT(FIFO_FLUSH
), &ep
->regs
->ep_stat
);
1452 (void) readl(&ep
->regs
->ep_rsp
);
1455 static const struct usb_ep_ops net2280_ep_ops
= {
1456 .enable
= net2280_enable
,
1457 .disable
= net2280_disable
,
1459 .alloc_request
= net2280_alloc_request
,
1460 .free_request
= net2280_free_request
,
1462 .queue
= net2280_queue
,
1463 .dequeue
= net2280_dequeue
,
1465 .set_halt
= net2280_set_halt
,
1466 .set_wedge
= net2280_set_wedge
,
1467 .fifo_status
= net2280_fifo_status
,
1468 .fifo_flush
= net2280_fifo_flush
,
1471 /*-------------------------------------------------------------------------*/
1473 static int net2280_get_frame(struct usb_gadget
*_gadget
)
1475 struct net2280
*dev
;
1476 unsigned long flags
;
1481 dev
= container_of(_gadget
, struct net2280
, gadget
);
1482 spin_lock_irqsave(&dev
->lock
, flags
);
1483 retval
= get_idx_reg(dev
->regs
, REG_FRAME
) & 0x03ff;
1484 spin_unlock_irqrestore(&dev
->lock
, flags
);
1488 static int net2280_wakeup(struct usb_gadget
*_gadget
)
1490 struct net2280
*dev
;
1492 unsigned long flags
;
1496 dev
= container_of(_gadget
, struct net2280
, gadget
);
1498 spin_lock_irqsave(&dev
->lock
, flags
);
1499 tmp
= readl(&dev
->usb
->usbctl
);
1500 if (tmp
& BIT(DEVICE_REMOTE_WAKEUP_ENABLE
))
1501 writel(BIT(GENERATE_RESUME
), &dev
->usb
->usbstat
);
1502 spin_unlock_irqrestore(&dev
->lock
, flags
);
1504 /* pci writes may still be posted */
1508 static int net2280_set_selfpowered(struct usb_gadget
*_gadget
, int value
)
1510 struct net2280
*dev
;
1512 unsigned long flags
;
1516 dev
= container_of(_gadget
, struct net2280
, gadget
);
1518 spin_lock_irqsave(&dev
->lock
, flags
);
1519 tmp
= readl(&dev
->usb
->usbctl
);
1521 tmp
|= BIT(SELF_POWERED_STATUS
);
1522 _gadget
->is_selfpowered
= 1;
1524 tmp
&= ~BIT(SELF_POWERED_STATUS
);
1525 _gadget
->is_selfpowered
= 0;
1527 writel(tmp
, &dev
->usb
->usbctl
);
1528 spin_unlock_irqrestore(&dev
->lock
, flags
);
1533 static int net2280_pullup(struct usb_gadget
*_gadget
, int is_on
)
1535 struct net2280
*dev
;
1537 unsigned long flags
;
1541 dev
= container_of(_gadget
, struct net2280
, gadget
);
1543 spin_lock_irqsave(&dev
->lock
, flags
);
1544 tmp
= readl(&dev
->usb
->usbctl
);
1545 dev
->softconnect
= (is_on
!= 0);
1548 writel(tmp
| BIT(USB_DETECT_ENABLE
), &dev
->usb
->usbctl
);
1550 writel(tmp
& ~BIT(USB_DETECT_ENABLE
), &dev
->usb
->usbctl
);
1551 stop_activity(dev
, dev
->driver
);
1554 spin_unlock_irqrestore(&dev
->lock
, flags
);
1559 static struct usb_ep
*net2280_match_ep(struct usb_gadget
*_gadget
,
1560 struct usb_endpoint_descriptor
*desc
,
1561 struct usb_ss_ep_comp_descriptor
*ep_comp
)
1566 if (usb_endpoint_type(desc
) == USB_ENDPOINT_XFER_INT
) {
1567 /* ep-e, ep-f are PIO with only 64 byte fifos */
1568 ep
= gadget_find_ep_by_name(_gadget
, "ep-e");
1569 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1571 ep
= gadget_find_ep_by_name(_gadget
, "ep-f");
1572 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1576 /* USB3380: Only first four endpoints have DMA channels. Allocate
1577 * slower interrupt endpoints from PIO hw endpoints, to allow bulk/isoc
1578 * endpoints use DMA hw endpoints.
1580 if (usb_endpoint_type(desc
) == USB_ENDPOINT_XFER_INT
&&
1581 usb_endpoint_dir_in(desc
)) {
1582 ep
= gadget_find_ep_by_name(_gadget
, "ep2in");
1583 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1585 ep
= gadget_find_ep_by_name(_gadget
, "ep4in");
1586 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1588 } else if (usb_endpoint_type(desc
) == USB_ENDPOINT_XFER_INT
&&
1589 !usb_endpoint_dir_in(desc
)) {
1590 ep
= gadget_find_ep_by_name(_gadget
, "ep1out");
1591 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1593 ep
= gadget_find_ep_by_name(_gadget
, "ep3out");
1594 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1596 } else if (usb_endpoint_type(desc
) != USB_ENDPOINT_XFER_BULK
&&
1597 usb_endpoint_dir_in(desc
)) {
1598 ep
= gadget_find_ep_by_name(_gadget
, "ep1in");
1599 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1601 ep
= gadget_find_ep_by_name(_gadget
, "ep3in");
1602 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1604 } else if (usb_endpoint_type(desc
) != USB_ENDPOINT_XFER_BULK
&&
1605 !usb_endpoint_dir_in(desc
)) {
1606 ep
= gadget_find_ep_by_name(_gadget
, "ep2out");
1607 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1609 ep
= gadget_find_ep_by_name(_gadget
, "ep4out");
1610 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1614 /* USB3380: use same address for usb and hardware endpoints */
1615 snprintf(name
, sizeof(name
), "ep%d%s", usb_endpoint_num(desc
),
1616 usb_endpoint_dir_in(desc
) ? "in" : "out");
1617 ep
= gadget_find_ep_by_name(_gadget
, name
);
1618 if (ep
&& usb_gadget_ep_match_desc(_gadget
, ep
, desc
, ep_comp
))
1624 static int net2280_start(struct usb_gadget
*_gadget
,
1625 struct usb_gadget_driver
*driver
);
1626 static int net2280_stop(struct usb_gadget
*_gadget
);
1628 static const struct usb_gadget_ops net2280_ops
= {
1629 .get_frame
= net2280_get_frame
,
1630 .wakeup
= net2280_wakeup
,
1631 .set_selfpowered
= net2280_set_selfpowered
,
1632 .pullup
= net2280_pullup
,
1633 .udc_start
= net2280_start
,
1634 .udc_stop
= net2280_stop
,
1635 .match_ep
= net2280_match_ep
,
1638 /*-------------------------------------------------------------------------*/
1640 #ifdef CONFIG_USB_GADGET_DEBUG_FILES
1642 /* FIXME move these into procfs, and use seq_file.
1643 * Sysfs _still_ doesn't behave for arbitrarily sized files,
1644 * and also doesn't help products using this with 2.4 kernels.
1647 /* "function" sysfs attribute */
1648 static ssize_t
function_show(struct device
*_dev
, struct device_attribute
*attr
,
1651 struct net2280
*dev
= dev_get_drvdata(_dev
);
1653 if (!dev
->driver
|| !dev
->driver
->function
||
1654 strlen(dev
->driver
->function
) > PAGE_SIZE
)
1656 return scnprintf(buf
, PAGE_SIZE
, "%s\n", dev
->driver
->function
);
1658 static DEVICE_ATTR_RO(function
);
1660 static ssize_t
registers_show(struct device
*_dev
,
1661 struct device_attribute
*attr
, char *buf
)
1663 struct net2280
*dev
;
1666 unsigned long flags
;
1671 dev
= dev_get_drvdata(_dev
);
1674 spin_lock_irqsave(&dev
->lock
, flags
);
1677 s
= dev
->driver
->driver
.name
;
1681 /* Main Control Registers */
1682 t
= scnprintf(next
, size
, "%s version " DRIVER_VERSION
1683 ", chiprev %04x\n\n"
1684 "devinit %03x fifoctl %08x gadget '%s'\n"
1685 "pci irqenb0 %02x irqenb1 %08x "
1686 "irqstat0 %04x irqstat1 %08x\n",
1687 driver_name
, dev
->chiprev
,
1688 readl(&dev
->regs
->devinit
),
1689 readl(&dev
->regs
->fifoctl
),
1691 readl(&dev
->regs
->pciirqenb0
),
1692 readl(&dev
->regs
->pciirqenb1
),
1693 readl(&dev
->regs
->irqstat0
),
1694 readl(&dev
->regs
->irqstat1
));
1698 /* USB Control Registers */
1699 t1
= readl(&dev
->usb
->usbctl
);
1700 t2
= readl(&dev
->usb
->usbstat
);
1701 if (t1
& BIT(VBUS_PIN
)) {
1702 if (t2
& BIT(HIGH_SPEED
))
1704 else if (dev
->gadget
.speed
== USB_SPEED_UNKNOWN
)
1708 /* full speed bit (6) not working?? */
1711 t
= scnprintf(next
, size
,
1712 "stdrsp %08x usbctl %08x usbstat %08x "
1713 "addr 0x%02x (%s)\n",
1714 readl(&dev
->usb
->stdrsp
), t1
, t2
,
1715 readl(&dev
->usb
->ouraddr
), s
);
1719 /* PCI Master Control Registers */
1721 /* DMA Control Registers */
1723 /* Configurable EP Control Registers */
1724 for (i
= 0; i
< dev
->n_ep
; i
++) {
1725 struct net2280_ep
*ep
;
1731 t1
= readl(&ep
->cfg
->ep_cfg
);
1732 t2
= readl(&ep
->regs
->ep_rsp
) & 0xff;
1733 t
= scnprintf(next
, size
,
1734 "\n%s\tcfg %05x rsp (%02x) %s%s%s%s%s%s%s%s"
1736 ep
->ep
.name
, t1
, t2
,
1737 (t2
& BIT(CLEAR_NAK_OUT_PACKETS
))
1739 (t2
& BIT(CLEAR_EP_HIDE_STATUS_PHASE
))
1741 (t2
& BIT(CLEAR_EP_FORCE_CRC_ERROR
))
1743 (t2
& BIT(CLEAR_INTERRUPT_MODE
))
1744 ? "interrupt " : "",
1745 (t2
& BIT(CLEAR_CONTROL_STATUS_PHASE_HANDSHAKE
))
1747 (t2
& BIT(CLEAR_NAK_OUT_PACKETS_MODE
))
1749 (t2
& BIT(CLEAR_ENDPOINT_TOGGLE
))
1750 ? "DATA1 " : "DATA0 ",
1751 (t2
& BIT(CLEAR_ENDPOINT_HALT
))
1753 readl(&ep
->regs
->ep_irqenb
));
1757 t
= scnprintf(next
, size
,
1758 "\tstat %08x avail %04x "
1760 readl(&ep
->regs
->ep_stat
),
1761 readl(&ep
->regs
->ep_avail
),
1762 t1
& 0x0f, DIR_STRING(t1
),
1763 type_string(t1
>> 8),
1764 ep
->stopped
? "*" : "");
1771 t
= scnprintf(next
, size
,
1772 " dma\tctl %08x stat %08x count %08x\n"
1773 "\taddr %08x desc %08x\n",
1774 readl(&ep
->dma
->dmactl
),
1775 readl(&ep
->dma
->dmastat
),
1776 readl(&ep
->dma
->dmacount
),
1777 readl(&ep
->dma
->dmaaddr
),
1778 readl(&ep
->dma
->dmadesc
));
1784 /* Indexed Registers (none yet) */
1787 t
= scnprintf(next
, size
, "\nirqs: ");
1790 for (i
= 0; i
< dev
->n_ep
; i
++) {
1791 struct net2280_ep
*ep
;
1796 t
= scnprintf(next
, size
, " %s/%lu", ep
->ep
.name
, ep
->irqs
);
1801 t
= scnprintf(next
, size
, "\n");
1805 spin_unlock_irqrestore(&dev
->lock
, flags
);
1807 return PAGE_SIZE
- size
;
1809 static DEVICE_ATTR_RO(registers
);
1811 static ssize_t
queues_show(struct device
*_dev
, struct device_attribute
*attr
,
1814 struct net2280
*dev
;
1817 unsigned long flags
;
1820 dev
= dev_get_drvdata(_dev
);
1823 spin_lock_irqsave(&dev
->lock
, flags
);
1825 for (i
= 0; i
< dev
->n_ep
; i
++) {
1826 struct net2280_ep
*ep
= &dev
->ep
[i
];
1827 struct net2280_request
*req
;
1831 const struct usb_endpoint_descriptor
*d
;
1836 t
= d
->bEndpointAddress
;
1837 t
= scnprintf(next
, size
,
1838 "\n%s (ep%d%s-%s) max %04x %s fifo %d\n",
1839 ep
->ep
.name
, t
& USB_ENDPOINT_NUMBER_MASK
,
1840 (t
& USB_DIR_IN
) ? "in" : "out",
1841 type_string(d
->bmAttributes
),
1842 usb_endpoint_maxp(d
) & 0x1fff,
1843 ep
->dma
? "dma" : "pio", ep
->fifo_size
1845 } else /* ep0 should only have one transfer queued */
1846 t
= scnprintf(next
, size
, "ep0 max 64 pio %s\n",
1847 ep
->is_in
? "in" : "out");
1848 if (t
<= 0 || t
> size
)
1853 if (list_empty(&ep
->queue
)) {
1854 t
= scnprintf(next
, size
, "\t(nothing queued)\n");
1855 if (t
<= 0 || t
> size
)
1861 list_for_each_entry(req
, &ep
->queue
, queue
) {
1862 if (ep
->dma
&& req
->td_dma
== readl(&ep
->dma
->dmadesc
))
1863 t
= scnprintf(next
, size
,
1864 "\treq %p len %d/%d "
1865 "buf %p (dmacount %08x)\n",
1866 &req
->req
, req
->req
.actual
,
1867 req
->req
.length
, req
->req
.buf
,
1868 readl(&ep
->dma
->dmacount
));
1870 t
= scnprintf(next
, size
,
1871 "\treq %p len %d/%d buf %p\n",
1872 &req
->req
, req
->req
.actual
,
1873 req
->req
.length
, req
->req
.buf
);
1874 if (t
<= 0 || t
> size
)
1880 struct net2280_dma
*td
;
1883 t
= scnprintf(next
, size
, "\t td %08x "
1884 " count %08x buf %08x desc %08x\n",
1886 le32_to_cpu(td
->dmacount
),
1887 le32_to_cpu(td
->dmaaddr
),
1888 le32_to_cpu(td
->dmadesc
));
1889 if (t
<= 0 || t
> size
)
1898 spin_unlock_irqrestore(&dev
->lock
, flags
);
1899 return PAGE_SIZE
- size
;
1901 static DEVICE_ATTR_RO(queues
);
1906 #define device_create_file(a, b) (0)
1907 #define device_remove_file(a, b) do { } while (0)
1911 /*-------------------------------------------------------------------------*/
1913 /* another driver-specific mode might be a request type doing dma
1914 * to/from another device fifo instead of to/from memory.
1917 static void set_fifo_mode(struct net2280
*dev
, int mode
)
1919 /* keeping high bits preserves BAR2 */
1920 writel((0xffff << PCI_BASE2_RANGE
) | mode
, &dev
->regs
->fifoctl
);
1922 /* always ep-{a,b,e,f} ... maybe not ep-c or ep-d */
1923 INIT_LIST_HEAD(&dev
->gadget
.ep_list
);
1924 list_add_tail(&dev
->ep
[1].ep
.ep_list
, &dev
->gadget
.ep_list
);
1925 list_add_tail(&dev
->ep
[2].ep
.ep_list
, &dev
->gadget
.ep_list
);
1928 list_add_tail(&dev
->ep
[3].ep
.ep_list
, &dev
->gadget
.ep_list
);
1929 list_add_tail(&dev
->ep
[4].ep
.ep_list
, &dev
->gadget
.ep_list
);
1930 dev
->ep
[1].fifo_size
= dev
->ep
[2].fifo_size
= 1024;
1933 dev
->ep
[1].fifo_size
= dev
->ep
[2].fifo_size
= 2048;
1936 list_add_tail(&dev
->ep
[3].ep
.ep_list
, &dev
->gadget
.ep_list
);
1937 dev
->ep
[1].fifo_size
= 2048;
1938 dev
->ep
[2].fifo_size
= 1024;
1941 /* fifo sizes for ep0, ep-c, ep-d, ep-e, and ep-f never change */
1942 list_add_tail(&dev
->ep
[5].ep
.ep_list
, &dev
->gadget
.ep_list
);
1943 list_add_tail(&dev
->ep
[6].ep
.ep_list
, &dev
->gadget
.ep_list
);
1946 static void defect7374_disable_data_eps(struct net2280
*dev
)
1949 * For Defect 7374, disable data EPs (and more):
1950 * - This phase undoes the earlier phase of the Defect 7374 workaround,
1951 * returing ep regs back to normal.
1953 struct net2280_ep
*ep
;
1955 unsigned char ep_sel
;
1958 for (i
= 1; i
< 5; i
++) {
1960 writel(i
, &ep
->cfg
->ep_cfg
);
1963 /* CSROUT, CSRIN, PCIOUT, PCIIN, STATIN, RCIN */
1964 for (i
= 0; i
< 6; i
++)
1965 writel(0, &dev
->dep
[i
].dep_cfg
);
1967 for (ep_sel
= 0; ep_sel
<= 21; ep_sel
++) {
1968 /* Select an endpoint for subsequent operations: */
1969 tmp_reg
= readl(&dev
->plregs
->pl_ep_ctrl
);
1970 writel(((tmp_reg
& ~0x1f) | ep_sel
), &dev
->plregs
->pl_ep_ctrl
);
1972 if (ep_sel
< 2 || (ep_sel
> 9 && ep_sel
< 14) ||
1973 ep_sel
== 18 || ep_sel
== 20)
1976 /* Change settings on some selected endpoints */
1977 tmp_reg
= readl(&dev
->plregs
->pl_ep_cfg_4
);
1978 tmp_reg
&= ~BIT(NON_CTRL_IN_TOLERATE_BAD_DIR
);
1979 writel(tmp_reg
, &dev
->plregs
->pl_ep_cfg_4
);
1980 tmp_reg
= readl(&dev
->plregs
->pl_ep_ctrl
);
1981 tmp_reg
|= BIT(EP_INITIALIZED
);
1982 writel(tmp_reg
, &dev
->plregs
->pl_ep_ctrl
);
1986 static void defect7374_enable_data_eps_zero(struct net2280
*dev
)
1988 u32 tmp
= 0, tmp_reg
;
1991 unsigned char ep_sel
;
1993 scratch
= get_idx_reg(dev
->regs
, SCRATCH
);
1995 WARN_ON((scratch
& (0xf << DEFECT7374_FSM_FIELD
))
1996 == DEFECT7374_FSM_SS_CONTROL_READ
);
1998 scratch
&= ~(0xf << DEFECT7374_FSM_FIELD
);
2000 ep_warn(dev
, "Operate Defect 7374 workaround soft this time");
2001 ep_warn(dev
, "It will operate on cold-reboot and SS connect");
2004 tmp
= ((0 << ENDPOINT_NUMBER
) | BIT(ENDPOINT_DIRECTION
) |
2005 (2 << OUT_ENDPOINT_TYPE
) | (2 << IN_ENDPOINT_TYPE
) |
2006 ((dev
->enhanced_mode
) ?
2007 BIT(OUT_ENDPOINT_ENABLE
) | BIT(IN_ENDPOINT_ENABLE
) :
2008 BIT(ENDPOINT_ENABLE
)));
2010 for (i
= 1; i
< 5; i
++)
2011 writel(tmp
, &dev
->ep
[i
].cfg
->ep_cfg
);
2013 /* CSRIN, PCIIN, STATIN, RCIN*/
2014 tmp
= ((0 << ENDPOINT_NUMBER
) | BIT(ENDPOINT_ENABLE
));
2015 writel(tmp
, &dev
->dep
[1].dep_cfg
);
2016 writel(tmp
, &dev
->dep
[3].dep_cfg
);
2017 writel(tmp
, &dev
->dep
[4].dep_cfg
);
2018 writel(tmp
, &dev
->dep
[5].dep_cfg
);
2020 /*Implemented for development and debug.
2021 * Can be refined/tuned later.*/
2022 for (ep_sel
= 0; ep_sel
<= 21; ep_sel
++) {
2023 /* Select an endpoint for subsequent operations: */
2024 tmp_reg
= readl(&dev
->plregs
->pl_ep_ctrl
);
2025 writel(((tmp_reg
& ~0x1f) | ep_sel
),
2026 &dev
->plregs
->pl_ep_ctrl
);
2030 (readl(&dev
->plregs
->pl_ep_ctrl
) |
2031 BIT(CLEAR_ACK_ERROR_CODE
) | 0);
2032 writel(tmp
, &dev
->plregs
->pl_ep_ctrl
);
2036 if (ep_sel
== 0 || (ep_sel
> 9 && ep_sel
< 14) ||
2037 ep_sel
== 18 || ep_sel
== 20)
2040 tmp
= (readl(&dev
->plregs
->pl_ep_cfg_4
) |
2041 BIT(NON_CTRL_IN_TOLERATE_BAD_DIR
) | 0);
2042 writel(tmp
, &dev
->plregs
->pl_ep_cfg_4
);
2044 tmp
= readl(&dev
->plregs
->pl_ep_ctrl
) &
2045 ~BIT(EP_INITIALIZED
);
2046 writel(tmp
, &dev
->plregs
->pl_ep_ctrl
);
2050 /* Set FSM to focus on the first Control Read:
2051 * - Tip: Connection speed is known upon the first
2053 scratch
|= DEFECT7374_FSM_WAITING_FOR_CONTROL_READ
;
2054 set_idx_reg(dev
->regs
, SCRATCH
, scratch
);
2058 /* keeping it simple:
2059 * - one bus driver, initted first;
2060 * - one function driver, initted second
2062 * most of the work to support multiple net2280 controllers would
2063 * be to associate this gadget driver (yes?) with all of them, or
2064 * perhaps to bind specific drivers to specific devices.
2067 static void usb_reset_228x(struct net2280
*dev
)
2071 dev
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2072 (void) readl(&dev
->usb
->usbctl
);
2074 net2280_led_init(dev
);
2076 /* disable automatic responses, and irqs */
2077 writel(0, &dev
->usb
->stdrsp
);
2078 writel(0, &dev
->regs
->pciirqenb0
);
2079 writel(0, &dev
->regs
->pciirqenb1
);
2081 /* clear old dma and irq state */
2082 for (tmp
= 0; tmp
< 4; tmp
++) {
2083 struct net2280_ep
*ep
= &dev
->ep
[tmp
+ 1];
2088 writel(~0, &dev
->regs
->irqstat0
),
2089 writel(~(u32
)BIT(SUSPEND_REQUEST_INTERRUPT
), &dev
->regs
->irqstat1
),
2091 /* reset, and enable pci */
2092 tmp
= readl(&dev
->regs
->devinit
) |
2094 BIT(FIFO_SOFT_RESET
) |
2095 BIT(USB_SOFT_RESET
) |
2097 writel(tmp
, &dev
->regs
->devinit
);
2099 /* standard fifo and endpoint allocations */
2100 set_fifo_mode(dev
, (fifo_mode
<= 2) ? fifo_mode
: 0);
2103 static void usb_reset_338x(struct net2280
*dev
)
2107 dev
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2108 (void)readl(&dev
->usb
->usbctl
);
2110 net2280_led_init(dev
);
2112 if (dev
->bug7734_patched
) {
2113 /* disable automatic responses, and irqs */
2114 writel(0, &dev
->usb
->stdrsp
);
2115 writel(0, &dev
->regs
->pciirqenb0
);
2116 writel(0, &dev
->regs
->pciirqenb1
);
2119 /* clear old dma and irq state */
2120 for (tmp
= 0; tmp
< 4; tmp
++) {
2121 struct net2280_ep
*ep
= &dev
->ep
[tmp
+ 1];
2122 struct net2280_dma_regs __iomem
*dma
;
2127 dma
= &dev
->dma
[tmp
];
2128 writel(BIT(DMA_ABORT
), &dma
->dmastat
);
2129 writel(0, &dma
->dmactl
);
2133 writel(~0, &dev
->regs
->irqstat0
), writel(~0, &dev
->regs
->irqstat1
);
2135 if (dev
->bug7734_patched
) {
2136 /* reset, and enable pci */
2137 tmp
= readl(&dev
->regs
->devinit
) |
2139 BIT(FIFO_SOFT_RESET
) |
2140 BIT(USB_SOFT_RESET
) |
2143 writel(tmp
, &dev
->regs
->devinit
);
2146 /* always ep-{1,2,3,4} ... maybe not ep-3 or ep-4 */
2147 INIT_LIST_HEAD(&dev
->gadget
.ep_list
);
2149 for (tmp
= 1; tmp
< dev
->n_ep
; tmp
++)
2150 list_add_tail(&dev
->ep
[tmp
].ep
.ep_list
, &dev
->gadget
.ep_list
);
2154 static void usb_reset(struct net2280
*dev
)
2156 if (dev
->quirks
& PLX_LEGACY
)
2157 return usb_reset_228x(dev
);
2158 return usb_reset_338x(dev
);
2161 static void usb_reinit_228x(struct net2280
*dev
)
2165 /* basic endpoint init */
2166 for (tmp
= 0; tmp
< 7; tmp
++) {
2167 struct net2280_ep
*ep
= &dev
->ep
[tmp
];
2169 ep
->ep
.name
= ep_info_dft
[tmp
].name
;
2170 ep
->ep
.caps
= ep_info_dft
[tmp
].caps
;
2174 if (tmp
> 0 && tmp
<= 4) {
2175 ep
->fifo_size
= 1024;
2176 ep
->dma
= &dev
->dma
[tmp
- 1];
2179 ep
->regs
= &dev
->epregs
[tmp
];
2180 ep
->cfg
= &dev
->epregs
[tmp
];
2181 ep_reset_228x(dev
->regs
, ep
);
2183 usb_ep_set_maxpacket_limit(&dev
->ep
[0].ep
, 64);
2184 usb_ep_set_maxpacket_limit(&dev
->ep
[5].ep
, 64);
2185 usb_ep_set_maxpacket_limit(&dev
->ep
[6].ep
, 64);
2187 dev
->gadget
.ep0
= &dev
->ep
[0].ep
;
2188 dev
->ep
[0].stopped
= 0;
2189 INIT_LIST_HEAD(&dev
->gadget
.ep0
->ep_list
);
2191 /* we want to prevent lowlevel/insecure access from the USB host,
2192 * but erratum 0119 means this enable bit is ignored
2194 for (tmp
= 0; tmp
< 5; tmp
++)
2195 writel(EP_DONTUSE
, &dev
->dep
[tmp
].dep_cfg
);
2198 static void usb_reinit_338x(struct net2280
*dev
)
2202 static const u32 ne
[9] = { 0, 1, 2, 3, 4, 1, 2, 3, 4 };
2203 static const u32 ep_reg_addr
[9] = { 0x00, 0xC0, 0x00, 0xC0, 0x00,
2204 0x00, 0xC0, 0x00, 0xC0 };
2206 /* basic endpoint init */
2207 for (i
= 0; i
< dev
->n_ep
; i
++) {
2208 struct net2280_ep
*ep
= &dev
->ep
[i
];
2210 ep
->ep
.name
= dev
->enhanced_mode
? ep_info_adv
[i
].name
:
2211 ep_info_dft
[i
].name
;
2212 ep
->ep
.caps
= dev
->enhanced_mode
? ep_info_adv
[i
].caps
:
2213 ep_info_dft
[i
].caps
;
2217 if (i
> 0 && i
<= 4)
2218 ep
->dma
= &dev
->dma
[i
- 1];
2220 if (dev
->enhanced_mode
) {
2221 ep
->cfg
= &dev
->epregs
[ne
[i
]];
2223 * Set USB endpoint number, hardware allows same number
2224 * in both directions.
2227 writel(ne
[i
], &ep
->cfg
->ep_cfg
);
2228 ep
->regs
= (struct net2280_ep_regs __iomem
*)
2229 (((void __iomem
*)&dev
->epregs
[ne
[i
]]) +
2232 ep
->cfg
= &dev
->epregs
[i
];
2233 ep
->regs
= &dev
->epregs
[i
];
2236 ep
->fifo_size
= (i
!= 0) ? 2048 : 512;
2238 ep_reset_338x(dev
->regs
, ep
);
2240 usb_ep_set_maxpacket_limit(&dev
->ep
[0].ep
, 512);
2242 dev
->gadget
.ep0
= &dev
->ep
[0].ep
;
2243 dev
->ep
[0].stopped
= 0;
2245 /* Link layer set up */
2246 if (dev
->bug7734_patched
) {
2247 tmp
= readl(&dev
->usb_ext
->usbctl2
) &
2248 ~(BIT(U1_ENABLE
) | BIT(U2_ENABLE
) | BIT(LTM_ENABLE
));
2249 writel(tmp
, &dev
->usb_ext
->usbctl2
);
2252 /* Hardware Defect and Workaround */
2253 val
= readl(&dev
->ll_lfps_regs
->ll_lfps_5
);
2254 val
&= ~(0xf << TIMER_LFPS_6US
);
2255 val
|= 0x5 << TIMER_LFPS_6US
;
2256 writel(val
, &dev
->ll_lfps_regs
->ll_lfps_5
);
2258 val
= readl(&dev
->ll_lfps_regs
->ll_lfps_6
);
2259 val
&= ~(0xffff << TIMER_LFPS_80US
);
2260 val
|= 0x0100 << TIMER_LFPS_80US
;
2261 writel(val
, &dev
->ll_lfps_regs
->ll_lfps_6
);
2264 * AA_AB Errata. Issue 4. Workaround for SuperSpeed USB
2265 * Hot Reset Exit Handshake may Fail in Specific Case using
2266 * Default Register Settings. Workaround for Enumeration test.
2268 val
= readl(&dev
->ll_tsn_regs
->ll_tsn_counters_2
);
2269 val
&= ~(0x1f << HOT_TX_NORESET_TS2
);
2270 val
|= 0x10 << HOT_TX_NORESET_TS2
;
2271 writel(val
, &dev
->ll_tsn_regs
->ll_tsn_counters_2
);
2273 val
= readl(&dev
->ll_tsn_regs
->ll_tsn_counters_3
);
2274 val
&= ~(0x1f << HOT_RX_RESET_TS2
);
2275 val
|= 0x3 << HOT_RX_RESET_TS2
;
2276 writel(val
, &dev
->ll_tsn_regs
->ll_tsn_counters_3
);
2279 * Set Recovery Idle to Recover bit:
2280 * - On SS connections, setting Recovery Idle to Recover Fmw improves
2281 * link robustness with various hosts and hubs.
2282 * - It is safe to set for all connection speeds; all chip revisions.
2283 * - R-M-W to leave other bits undisturbed.
2284 * - Reference PLX TT-7372
2286 val
= readl(&dev
->ll_chicken_reg
->ll_tsn_chicken_bit
);
2287 val
|= BIT(RECOVERY_IDLE_TO_RECOVER_FMW
);
2288 writel(val
, &dev
->ll_chicken_reg
->ll_tsn_chicken_bit
);
2290 INIT_LIST_HEAD(&dev
->gadget
.ep0
->ep_list
);
2292 /* disable dedicated endpoints */
2293 writel(0x0D, &dev
->dep
[0].dep_cfg
);
2294 writel(0x0D, &dev
->dep
[1].dep_cfg
);
2295 writel(0x0E, &dev
->dep
[2].dep_cfg
);
2296 writel(0x0E, &dev
->dep
[3].dep_cfg
);
2297 writel(0x0F, &dev
->dep
[4].dep_cfg
);
2298 writel(0x0C, &dev
->dep
[5].dep_cfg
);
2301 static void usb_reinit(struct net2280
*dev
)
2303 if (dev
->quirks
& PLX_LEGACY
)
2304 return usb_reinit_228x(dev
);
2305 return usb_reinit_338x(dev
);
2308 static void ep0_start_228x(struct net2280
*dev
)
2310 writel(BIT(CLEAR_EP_HIDE_STATUS_PHASE
) |
2311 BIT(CLEAR_NAK_OUT_PACKETS
) |
2312 BIT(CLEAR_CONTROL_STATUS_PHASE_HANDSHAKE
),
2313 &dev
->epregs
[0].ep_rsp
);
2316 * hardware optionally handles a bunch of standard requests
2317 * that the API hides from drivers anyway. have it do so.
2318 * endpoint status/features are handled in software, to
2319 * help pass tests for some dubious behavior.
2321 writel(BIT(SET_TEST_MODE
) |
2323 BIT(DEVICE_SET_CLEAR_DEVICE_REMOTE_WAKEUP
) |
2324 BIT(GET_DEVICE_STATUS
) |
2325 BIT(GET_INTERFACE_STATUS
),
2327 writel(BIT(USB_ROOT_PORT_WAKEUP_ENABLE
) |
2328 BIT(SELF_POWERED_USB_DEVICE
) |
2329 BIT(REMOTE_WAKEUP_SUPPORT
) |
2330 (dev
->softconnect
<< USB_DETECT_ENABLE
) |
2331 BIT(SELF_POWERED_STATUS
),
2334 /* enable irqs so we can see ep0 and general operation */
2335 writel(BIT(SETUP_PACKET_INTERRUPT_ENABLE
) |
2336 BIT(ENDPOINT_0_INTERRUPT_ENABLE
),
2337 &dev
->regs
->pciirqenb0
);
2338 writel(BIT(PCI_INTERRUPT_ENABLE
) |
2339 BIT(PCI_MASTER_ABORT_RECEIVED_INTERRUPT_ENABLE
) |
2340 BIT(PCI_TARGET_ABORT_RECEIVED_INTERRUPT_ENABLE
) |
2341 BIT(PCI_RETRY_ABORT_INTERRUPT_ENABLE
) |
2342 BIT(VBUS_INTERRUPT_ENABLE
) |
2343 BIT(ROOT_PORT_RESET_INTERRUPT_ENABLE
) |
2344 BIT(SUSPEND_REQUEST_CHANGE_INTERRUPT_ENABLE
),
2345 &dev
->regs
->pciirqenb1
);
2347 /* don't leave any writes posted */
2348 (void) readl(&dev
->usb
->usbctl
);
2351 static void ep0_start_338x(struct net2280
*dev
)
2354 if (dev
->bug7734_patched
)
2355 writel(BIT(CLEAR_NAK_OUT_PACKETS_MODE
) |
2356 BIT(SET_EP_HIDE_STATUS_PHASE
),
2357 &dev
->epregs
[0].ep_rsp
);
2360 * hardware optionally handles a bunch of standard requests
2361 * that the API hides from drivers anyway. have it do so.
2362 * endpoint status/features are handled in software, to
2363 * help pass tests for some dubious behavior.
2365 writel(BIT(SET_ISOCHRONOUS_DELAY
) |
2367 BIT(SET_TEST_MODE
) |
2369 BIT(GET_INTERFACE_STATUS
) |
2370 BIT(GET_DEVICE_STATUS
),
2372 dev
->wakeup_enable
= 1;
2373 writel(BIT(USB_ROOT_PORT_WAKEUP_ENABLE
) |
2374 (dev
->softconnect
<< USB_DETECT_ENABLE
) |
2375 BIT(DEVICE_REMOTE_WAKEUP_ENABLE
),
2378 /* enable irqs so we can see ep0 and general operation */
2379 writel(BIT(SETUP_PACKET_INTERRUPT_ENABLE
) |
2380 BIT(ENDPOINT_0_INTERRUPT_ENABLE
),
2381 &dev
->regs
->pciirqenb0
);
2382 writel(BIT(PCI_INTERRUPT_ENABLE
) |
2383 BIT(ROOT_PORT_RESET_INTERRUPT_ENABLE
) |
2384 BIT(SUSPEND_REQUEST_CHANGE_INTERRUPT_ENABLE
) |
2385 BIT(VBUS_INTERRUPT_ENABLE
),
2386 &dev
->regs
->pciirqenb1
);
2388 /* don't leave any writes posted */
2389 (void)readl(&dev
->usb
->usbctl
);
2392 static void ep0_start(struct net2280
*dev
)
2394 if (dev
->quirks
& PLX_LEGACY
)
2395 return ep0_start_228x(dev
);
2396 return ep0_start_338x(dev
);
2399 /* when a driver is successfully registered, it will receive
2400 * control requests including set_configuration(), which enables
2401 * non-control requests. then usb traffic follows until a
2402 * disconnect is reported. then a host may connect again, or
2403 * the driver might get unbound.
2405 static int net2280_start(struct usb_gadget
*_gadget
,
2406 struct usb_gadget_driver
*driver
)
2408 struct net2280
*dev
;
2412 /* insist on high speed support from the driver, since
2413 * (dev->usb->xcvrdiag & FORCE_FULL_SPEED_MODE)
2414 * "must not be used in normal operation"
2416 if (!driver
|| driver
->max_speed
< USB_SPEED_HIGH
||
2420 dev
= container_of(_gadget
, struct net2280
, gadget
);
2422 for (i
= 0; i
< dev
->n_ep
; i
++)
2423 dev
->ep
[i
].irqs
= 0;
2425 /* hook up the driver ... */
2426 driver
->driver
.bus
= NULL
;
2427 dev
->driver
= driver
;
2429 retval
= device_create_file(&dev
->pdev
->dev
, &dev_attr_function
);
2432 retval
= device_create_file(&dev
->pdev
->dev
, &dev_attr_queues
);
2436 /* enable host detection and ep0; and we're ready
2437 * for set_configuration as well as eventual disconnect.
2439 net2280_led_active(dev
, 1);
2441 if ((dev
->quirks
& PLX_PCIE
) && !dev
->bug7734_patched
)
2442 defect7374_enable_data_eps_zero(dev
);
2446 /* pci writes may still be posted */
2450 device_remove_file(&dev
->pdev
->dev
, &dev_attr_function
);
2456 static void stop_activity(struct net2280
*dev
, struct usb_gadget_driver
*driver
)
2460 /* don't disconnect if it's not connected */
2461 if (dev
->gadget
.speed
== USB_SPEED_UNKNOWN
)
2464 /* stop hardware; prevent new request submissions;
2465 * and kill any outstanding requests.
2468 for (i
= 0; i
< dev
->n_ep
; i
++)
2471 /* report disconnect; the driver is already quiesced */
2473 driver
->disconnect(&dev
->gadget
);
2478 static int net2280_stop(struct usb_gadget
*_gadget
)
2480 struct net2280
*dev
;
2481 unsigned long flags
;
2483 dev
= container_of(_gadget
, struct net2280
, gadget
);
2485 spin_lock_irqsave(&dev
->lock
, flags
);
2486 stop_activity(dev
, NULL
);
2487 spin_unlock_irqrestore(&dev
->lock
, flags
);
2489 net2280_led_active(dev
, 0);
2491 device_remove_file(&dev
->pdev
->dev
, &dev_attr_function
);
2492 device_remove_file(&dev
->pdev
->dev
, &dev_attr_queues
);
2499 /*-------------------------------------------------------------------------*/
2501 /* handle ep0, ep-e, ep-f with 64 byte packets: packet per irq.
2502 * also works for dma-capable endpoints, in pio mode or just
2503 * to manually advance the queue after short OUT transfers.
2505 static void handle_ep_small(struct net2280_ep
*ep
)
2507 struct net2280_request
*req
;
2509 /* 0 error, 1 mid-data, 2 done */
2512 if (!list_empty(&ep
->queue
))
2513 req
= list_entry(ep
->queue
.next
,
2514 struct net2280_request
, queue
);
2518 /* ack all, and handle what we care about */
2519 t
= readl(&ep
->regs
->ep_stat
);
2522 ep_vdbg(ep
->dev
, "%s ack ep_stat %08x, req %p\n",
2523 ep
->ep
.name
, t
, req
? &req
->req
: NULL
);
2525 if (!ep
->is_in
|| (ep
->dev
->quirks
& PLX_2280
))
2526 writel(t
& ~BIT(NAK_OUT_PACKETS
), &ep
->regs
->ep_stat
);
2528 /* Added for 2282 */
2529 writel(t
, &ep
->regs
->ep_stat
);
2531 /* for ep0, monitor token irqs to catch data stage length errors
2532 * and to synchronize on status.
2534 * also, to defer reporting of protocol stalls ... here's where
2535 * data or status first appears, handling stalls here should never
2536 * cause trouble on the host side..
2538 * control requests could be slightly faster without token synch for
2539 * status, but status can jam up that way.
2541 if (unlikely(ep
->num
== 0)) {
2543 /* status; stop NAKing */
2544 if (t
& BIT(DATA_OUT_PING_TOKEN_INTERRUPT
)) {
2545 if (ep
->dev
->protocol_stall
) {
2552 /* reply to extra IN data tokens with a zlp */
2553 } else if (t
& BIT(DATA_IN_TOKEN_INTERRUPT
)) {
2554 if (ep
->dev
->protocol_stall
) {
2558 } else if (ep
->responded
&&
2559 !req
&& !ep
->stopped
)
2560 write_fifo(ep
, NULL
);
2563 /* status; stop NAKing */
2564 if (t
& BIT(DATA_IN_TOKEN_INTERRUPT
)) {
2565 if (ep
->dev
->protocol_stall
) {
2570 /* an extra OUT token is an error */
2571 } else if (((t
& BIT(DATA_OUT_PING_TOKEN_INTERRUPT
)) &&
2573 req
->req
.actual
== req
->req
.length
) ||
2574 (ep
->responded
&& !req
)) {
2575 ep
->dev
->protocol_stall
= 1;
2579 done(ep
, req
, -EOVERFLOW
);
2588 /* manual DMA queue advance after short OUT */
2589 if (likely(ep
->dma
)) {
2590 if (t
& BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT
)) {
2591 struct net2280_request
*stuck_req
= NULL
;
2592 int stopped
= ep
->stopped
;
2597 /* TRANSFERRED works around OUT_DONE erratum 0112.
2598 * we expect (N <= maxpacket) bytes; host wrote M.
2599 * iff (M < N) we won't ever see a DMA interrupt.
2602 for (count
= 0; ; t
= readl(&ep
->regs
->ep_stat
)) {
2604 /* any preceding dma transfers must finish.
2605 * dma handles (M >= N), may empty the queue
2607 num_completed
= scan_dma_completions(ep
);
2608 if (unlikely(list_empty(&ep
->queue
) ||
2609 ep
->out_overflow
)) {
2613 req
= list_entry(ep
->queue
.next
,
2614 struct net2280_request
, queue
);
2616 /* here either (M < N), a "real" short rx;
2617 * or (M == N) and the queue didn't empty
2619 if (likely(t
& BIT(FIFO_EMPTY
))) {
2620 count
= readl(&ep
->dma
->dmacount
);
2621 count
&= DMA_BYTE_COUNT_MASK
;
2622 if (readl(&ep
->dma
->dmadesc
)
2628 /* Escape loop if no dma transfers completed
2629 * after few retries.
2631 if (num_completed
== 0) {
2632 if (stuck_req
== req
&&
2633 readl(&ep
->dma
->dmadesc
) !=
2634 req
->td_dma
&& stuck
++ > 5) {
2636 &ep
->dma
->dmacount
);
2637 count
&= DMA_BYTE_COUNT_MASK
;
2639 ep_dbg(ep
->dev
, "%s escape stuck %d, count %u\n",
2643 } else if (stuck_req
!= req
) {
2655 /* stop DMA, leave ep NAKing */
2656 writel(BIT(DMA_ABORT
), &ep
->dma
->dmastat
);
2657 spin_stop_dma(ep
->dma
);
2660 req
->td
->dmacount
= 0;
2661 t
= readl(&ep
->regs
->ep_avail
);
2662 dma_done(ep
, req
, count
,
2663 (ep
->out_overflow
|| t
)
2667 /* also flush to prevent erratum 0106 trouble */
2668 if (unlikely(ep
->out_overflow
||
2669 (ep
->dev
->chiprev
== 0x0100 &&
2670 ep
->dev
->gadget
.speed
2671 == USB_SPEED_FULL
))) {
2673 ep
->out_overflow
= 0;
2676 /* (re)start dma if needed, stop NAKing */
2677 ep
->stopped
= stopped
;
2678 if (!list_empty(&ep
->queue
))
2681 ep_dbg(ep
->dev
, "%s dma ep_stat %08x ??\n",
2685 /* data packet(s) received (in the fifo, OUT) */
2686 } else if (t
& BIT(DATA_PACKET_RECEIVED_INTERRUPT
)) {
2687 if (read_fifo(ep
, req
) && ep
->num
!= 0)
2690 /* data packet(s) transmitted (IN) */
2691 } else if (t
& BIT(DATA_PACKET_TRANSMITTED_INTERRUPT
)) {
2694 len
= req
->req
.length
- req
->req
.actual
;
2695 if (len
> ep
->ep
.maxpacket
)
2696 len
= ep
->ep
.maxpacket
;
2697 req
->req
.actual
+= len
;
2699 /* if we wrote it all, we're usually done */
2700 /* send zlps until the status stage */
2701 if ((req
->req
.actual
== req
->req
.length
) &&
2702 (!req
->req
.zero
|| len
!= ep
->ep
.maxpacket
) && ep
->num
)
2705 /* there was nothing to do ... */
2706 } else if (mode
== 1)
2711 /* stream endpoints often resubmit/unlink in completion */
2714 /* maybe advance queue to next request */
2716 /* NOTE: net2280 could let gadget driver start the
2717 * status stage later. since not all controllers let
2718 * them control that, the api doesn't (yet) allow it.
2724 if (!list_empty(&ep
->queue
) && !ep
->stopped
)
2725 req
= list_entry(ep
->queue
.next
,
2726 struct net2280_request
, queue
);
2729 if (req
&& !ep
->is_in
)
2730 stop_out_naking(ep
);
2734 /* is there a buffer for the next packet?
2735 * for best streaming performance, make sure there is one.
2737 if (req
&& !ep
->stopped
) {
2739 /* load IN fifo with next packet (may be zlp) */
2740 if (t
& BIT(DATA_PACKET_TRANSMITTED_INTERRUPT
))
2741 write_fifo(ep
, &req
->req
);
2745 static struct net2280_ep
*get_ep_by_addr(struct net2280
*dev
, u16 wIndex
)
2747 struct net2280_ep
*ep
;
2749 if ((wIndex
& USB_ENDPOINT_NUMBER_MASK
) == 0)
2751 list_for_each_entry(ep
, &dev
->gadget
.ep_list
, ep
.ep_list
) {
2752 u8 bEndpointAddress
;
2756 bEndpointAddress
= ep
->desc
->bEndpointAddress
;
2757 if ((wIndex
^ bEndpointAddress
) & USB_DIR_IN
)
2759 if ((wIndex
& 0x0f) == (bEndpointAddress
& 0x0f))
2765 static void defect7374_workaround(struct net2280
*dev
, struct usb_ctrlrequest r
)
2767 u32 scratch
, fsmvalue
;
2768 u32 ack_wait_timeout
, state
;
2770 /* Workaround for Defect 7374 (U1/U2 erroneously rejected): */
2771 scratch
= get_idx_reg(dev
->regs
, SCRATCH
);
2772 fsmvalue
= scratch
& (0xf << DEFECT7374_FSM_FIELD
);
2773 scratch
&= ~(0xf << DEFECT7374_FSM_FIELD
);
2775 if (!((fsmvalue
== DEFECT7374_FSM_WAITING_FOR_CONTROL_READ
) &&
2776 (r
.bRequestType
& USB_DIR_IN
)))
2779 /* This is the first Control Read for this connection: */
2780 if (!(readl(&dev
->usb
->usbstat
) & BIT(SUPER_SPEED_MODE
))) {
2782 * Connection is NOT SS:
2783 * - Connection must be FS or HS.
2784 * - This FSM state should allow workaround software to
2785 * run after the next USB connection.
2787 scratch
|= DEFECT7374_FSM_NON_SS_CONTROL_READ
;
2788 dev
->bug7734_patched
= 1;
2789 goto restore_data_eps
;
2792 /* Connection is SS: */
2793 for (ack_wait_timeout
= 0;
2794 ack_wait_timeout
< DEFECT_7374_NUMBEROF_MAX_WAIT_LOOPS
;
2795 ack_wait_timeout
++) {
2797 state
= readl(&dev
->plregs
->pl_ep_status_1
)
2799 if ((state
>= (ACK_GOOD_NORMAL
<< STATE
)) &&
2800 (state
<= (ACK_GOOD_MORE_ACKS_TO_COME
<< STATE
))) {
2801 scratch
|= DEFECT7374_FSM_SS_CONTROL_READ
;
2802 dev
->bug7734_patched
= 1;
2807 * We have not yet received host's Data Phase ACK
2808 * - Wait and try again.
2810 udelay(DEFECT_7374_PROCESSOR_WAIT_TIME
);
2816 if (ack_wait_timeout
>= DEFECT_7374_NUMBEROF_MAX_WAIT_LOOPS
) {
2817 ep_err(dev
, "FAIL: Defect 7374 workaround waited but failed "
2818 "to detect SS host's data phase ACK.");
2819 ep_err(dev
, "PL_EP_STATUS_1(23:16):.Expected from 0x11 to 0x16"
2820 "got 0x%2.2x.\n", state
>> STATE
);
2822 ep_warn(dev
, "INFO: Defect 7374 workaround waited about\n"
2823 "%duSec for Control Read Data Phase ACK\n",
2824 DEFECT_7374_PROCESSOR_WAIT_TIME
* ack_wait_timeout
);
2829 * Restore data EPs to their pre-workaround settings (disabled,
2830 * initialized, and other details).
2832 defect7374_disable_data_eps(dev
);
2834 set_idx_reg(dev
->regs
, SCRATCH
, scratch
);
2839 static void ep_clear_seqnum(struct net2280_ep
*ep
)
2841 struct net2280
*dev
= ep
->dev
;
2843 static const u32 ep_pl
[9] = { 0, 3, 4, 7, 8, 2, 5, 6, 9 };
2845 val
= readl(&dev
->plregs
->pl_ep_ctrl
) & ~0x1f;
2846 val
|= ep_pl
[ep
->num
];
2847 writel(val
, &dev
->plregs
->pl_ep_ctrl
);
2848 val
|= BIT(SEQUENCE_NUMBER_RESET
);
2849 writel(val
, &dev
->plregs
->pl_ep_ctrl
);
2854 static void handle_stat0_irqs_superspeed(struct net2280
*dev
,
2855 struct net2280_ep
*ep
, struct usb_ctrlrequest r
)
2859 #define w_value le16_to_cpu(r.wValue)
2860 #define w_index le16_to_cpu(r.wIndex)
2861 #define w_length le16_to_cpu(r.wLength)
2863 switch (r
.bRequest
) {
2864 struct net2280_ep
*e
;
2867 case USB_REQ_SET_CONFIGURATION
:
2868 dev
->addressed_state
= !w_value
;
2871 case USB_REQ_GET_STATUS
:
2872 switch (r
.bRequestType
) {
2873 case (USB_DIR_IN
| USB_TYPE_STANDARD
| USB_RECIP_DEVICE
):
2874 status
= dev
->wakeup_enable
? 0x02 : 0x00;
2875 if (dev
->gadget
.is_selfpowered
)
2877 status
|= (dev
->u1_enable
<< 2 | dev
->u2_enable
<< 3 |
2878 dev
->ltm_enable
<< 4);
2879 writel(0, &dev
->epregs
[0].ep_irqenb
);
2880 set_fifo_bytecount(ep
, sizeof(status
));
2881 writel((__force u32
) status
, &dev
->epregs
[0].ep_data
);
2882 allow_status_338x(ep
);
2885 case (USB_DIR_IN
| USB_TYPE_STANDARD
| USB_RECIP_ENDPOINT
):
2886 e
= get_ep_by_addr(dev
, w_index
);
2889 status
= readl(&e
->regs
->ep_rsp
) &
2890 BIT(CLEAR_ENDPOINT_HALT
);
2891 writel(0, &dev
->epregs
[0].ep_irqenb
);
2892 set_fifo_bytecount(ep
, sizeof(status
));
2893 writel((__force u32
) status
, &dev
->epregs
[0].ep_data
);
2894 allow_status_338x(ep
);
2902 case USB_REQ_CLEAR_FEATURE
:
2903 switch (r
.bRequestType
) {
2904 case (USB_DIR_OUT
| USB_TYPE_STANDARD
| USB_RECIP_DEVICE
):
2905 if (!dev
->addressed_state
) {
2907 case USB_DEVICE_U1_ENABLE
:
2909 writel(readl(&dev
->usb_ext
->usbctl2
) &
2911 &dev
->usb_ext
->usbctl2
);
2912 allow_status_338x(ep
);
2913 goto next_endpoints3
;
2915 case USB_DEVICE_U2_ENABLE
:
2917 writel(readl(&dev
->usb_ext
->usbctl2
) &
2919 &dev
->usb_ext
->usbctl2
);
2920 allow_status_338x(ep
);
2921 goto next_endpoints3
;
2923 case USB_DEVICE_LTM_ENABLE
:
2924 dev
->ltm_enable
= 0;
2925 writel(readl(&dev
->usb_ext
->usbctl2
) &
2927 &dev
->usb_ext
->usbctl2
);
2928 allow_status_338x(ep
);
2929 goto next_endpoints3
;
2935 if (w_value
== USB_DEVICE_REMOTE_WAKEUP
) {
2936 dev
->wakeup_enable
= 0;
2937 writel(readl(&dev
->usb
->usbctl
) &
2938 ~BIT(DEVICE_REMOTE_WAKEUP_ENABLE
),
2940 allow_status_338x(ep
);
2945 case (USB_DIR_OUT
| USB_TYPE_STANDARD
| USB_RECIP_ENDPOINT
):
2946 e
= get_ep_by_addr(dev
, w_index
);
2949 if (w_value
!= USB_ENDPOINT_HALT
)
2951 ep_vdbg(dev
, "%s clear halt\n", e
->ep
.name
);
2953 * Workaround for SS SeqNum not cleared via
2954 * Endpoint Halt (Clear) bit. select endpoint
2958 if (!list_empty(&e
->queue
) && e
->td_dma
)
2968 case USB_REQ_SET_FEATURE
:
2969 switch (r
.bRequestType
) {
2970 case (USB_DIR_OUT
| USB_TYPE_STANDARD
| USB_RECIP_DEVICE
):
2971 if (!dev
->addressed_state
) {
2973 case USB_DEVICE_U1_ENABLE
:
2975 writel(readl(&dev
->usb_ext
->usbctl2
) |
2977 &dev
->usb_ext
->usbctl2
);
2978 allow_status_338x(ep
);
2979 goto next_endpoints3
;
2981 case USB_DEVICE_U2_ENABLE
:
2983 writel(readl(&dev
->usb_ext
->usbctl2
) |
2985 &dev
->usb_ext
->usbctl2
);
2986 allow_status_338x(ep
);
2987 goto next_endpoints3
;
2989 case USB_DEVICE_LTM_ENABLE
:
2990 dev
->ltm_enable
= 1;
2991 writel(readl(&dev
->usb_ext
->usbctl2
) |
2993 &dev
->usb_ext
->usbctl2
);
2994 allow_status_338x(ep
);
2995 goto next_endpoints3
;
3001 if (w_value
== USB_DEVICE_REMOTE_WAKEUP
) {
3002 dev
->wakeup_enable
= 1;
3003 writel(readl(&dev
->usb
->usbctl
) |
3004 BIT(DEVICE_REMOTE_WAKEUP_ENABLE
),
3006 allow_status_338x(ep
);
3011 case (USB_DIR_OUT
| USB_TYPE_STANDARD
| USB_RECIP_ENDPOINT
):
3012 e
= get_ep_by_addr(dev
, w_index
);
3013 if (!e
|| (w_value
!= USB_ENDPOINT_HALT
))
3017 ep
->dev
->protocol_stall
= 1;
3023 allow_status_338x(ep
);
3034 ep_vdbg(dev
, "setup %02x.%02x v%04x i%04x l%04x ep_cfg %08x\n",
3035 r
.bRequestType
, r
.bRequest
,
3036 w_value
, w_index
, w_length
,
3037 readl(&ep
->cfg
->ep_cfg
));
3040 spin_unlock(&dev
->lock
);
3041 tmp
= dev
->driver
->setup(&dev
->gadget
, &r
);
3042 spin_lock(&dev
->lock
);
3046 ep_vdbg(dev
, "req %02x.%02x protocol STALL; stat %d\n",
3047 r
.bRequestType
, r
.bRequest
, tmp
);
3048 dev
->protocol_stall
= 1;
3049 /* TD 9.9 Halt Endpoint test. TD 9.22 Set feature test */
3062 static void usb338x_handle_ep_intr(struct net2280
*dev
, u32 stat0
)
3067 for (index
= 0; index
< ARRAY_SIZE(ep_bit
); index
++) {
3068 bit
= BIT(ep_bit
[index
]);
3078 handle_ep_small(&dev
->ep
[index
]);
3082 static void handle_stat0_irqs(struct net2280
*dev
, u32 stat
)
3084 struct net2280_ep
*ep
;
3087 /* most of these don't need individual acks */
3088 stat
&= ~BIT(INTA_ASSERTED
);
3091 /* ep_dbg(dev, "irqstat0 %04x\n", stat); */
3093 /* starting a control request? */
3094 if (unlikely(stat
& BIT(SETUP_PACKET_INTERRUPT
))) {
3097 struct usb_ctrlrequest r
;
3100 struct net2280_request
*req
;
3102 if (dev
->gadget
.speed
== USB_SPEED_UNKNOWN
) {
3103 u32 val
= readl(&dev
->usb
->usbstat
);
3104 if (val
& BIT(SUPER_SPEED
)) {
3105 dev
->gadget
.speed
= USB_SPEED_SUPER
;
3106 usb_ep_set_maxpacket_limit(&dev
->ep
[0].ep
,
3107 EP0_SS_MAX_PACKET_SIZE
);
3108 } else if (val
& BIT(HIGH_SPEED
)) {
3109 dev
->gadget
.speed
= USB_SPEED_HIGH
;
3110 usb_ep_set_maxpacket_limit(&dev
->ep
[0].ep
,
3111 EP0_HS_MAX_PACKET_SIZE
);
3113 dev
->gadget
.speed
= USB_SPEED_FULL
;
3114 usb_ep_set_maxpacket_limit(&dev
->ep
[0].ep
,
3115 EP0_HS_MAX_PACKET_SIZE
);
3117 net2280_led_speed(dev
, dev
->gadget
.speed
);
3119 usb_speed_string(dev
->gadget
.speed
));
3125 /* make sure any leftover request state is cleared */
3126 stat
&= ~BIT(ENDPOINT_0_INTERRUPT
);
3127 while (!list_empty(&ep
->queue
)) {
3128 req
= list_entry(ep
->queue
.next
,
3129 struct net2280_request
, queue
);
3130 done(ep
, req
, (req
->req
.actual
== req
->req
.length
)
3134 dev
->protocol_stall
= 0;
3135 if (!(dev
->quirks
& PLX_PCIE
)) {
3136 if (ep
->dev
->quirks
& PLX_2280
)
3137 tmp
= BIT(FIFO_OVERFLOW
) |
3138 BIT(FIFO_UNDERFLOW
);
3142 writel(tmp
| BIT(TIMEOUT
) |
3143 BIT(USB_STALL_SENT
) |
3144 BIT(USB_IN_NAK_SENT
) |
3145 BIT(USB_IN_ACK_RCVD
) |
3146 BIT(USB_OUT_PING_NAK_SENT
) |
3147 BIT(USB_OUT_ACK_SENT
) |
3148 BIT(SHORT_PACKET_OUT_DONE_INTERRUPT
) |
3149 BIT(SHORT_PACKET_TRANSFERRED_INTERRUPT
) |
3150 BIT(DATA_PACKET_RECEIVED_INTERRUPT
) |
3151 BIT(DATA_PACKET_TRANSMITTED_INTERRUPT
) |
3152 BIT(DATA_OUT_PING_TOKEN_INTERRUPT
) |
3153 BIT(DATA_IN_TOKEN_INTERRUPT
),
3154 &ep
->regs
->ep_stat
);
3156 u
.raw
[0] = readl(&dev
->usb
->setup0123
);
3157 u
.raw
[1] = readl(&dev
->usb
->setup4567
);
3159 cpu_to_le32s(&u
.raw
[0]);
3160 cpu_to_le32s(&u
.raw
[1]);
3162 if ((dev
->quirks
& PLX_PCIE
) && !dev
->bug7734_patched
)
3163 defect7374_workaround(dev
, u
.r
);
3167 #define w_value le16_to_cpu(u.r.wValue)
3168 #define w_index le16_to_cpu(u.r.wIndex)
3169 #define w_length le16_to_cpu(u.r.wLength)
3172 writel(BIT(SETUP_PACKET_INTERRUPT
), &dev
->regs
->irqstat0
);
3173 stat
^= BIT(SETUP_PACKET_INTERRUPT
);
3175 /* watch control traffic at the token level, and force
3176 * synchronization before letting the status stage happen.
3177 * FIXME ignore tokens we'll NAK, until driver responds.
3178 * that'll mean a lot less irqs for some drivers.
3180 ep
->is_in
= (u
.r
.bRequestType
& USB_DIR_IN
) != 0;
3182 scratch
= BIT(DATA_PACKET_TRANSMITTED_INTERRUPT
) |
3183 BIT(DATA_OUT_PING_TOKEN_INTERRUPT
) |
3184 BIT(DATA_IN_TOKEN_INTERRUPT
);
3185 stop_out_naking(ep
);
3187 scratch
= BIT(DATA_PACKET_RECEIVED_INTERRUPT
) |
3188 BIT(DATA_OUT_PING_TOKEN_INTERRUPT
) |
3189 BIT(DATA_IN_TOKEN_INTERRUPT
);
3190 writel(scratch
, &dev
->epregs
[0].ep_irqenb
);
3192 /* we made the hardware handle most lowlevel requests;
3193 * everything else goes uplevel to the gadget code.
3197 if (dev
->gadget
.speed
== USB_SPEED_SUPER
) {
3198 handle_stat0_irqs_superspeed(dev
, ep
, u
.r
);
3199 goto next_endpoints
;
3202 switch (u
.r
.bRequest
) {
3203 case USB_REQ_GET_STATUS
: {
3204 struct net2280_ep
*e
;
3207 /* hw handles device and interface status */
3208 if (u
.r
.bRequestType
!= (USB_DIR_IN
|USB_RECIP_ENDPOINT
))
3210 e
= get_ep_by_addr(dev
, w_index
);
3211 if (!e
|| w_length
> 2)
3214 if (readl(&e
->regs
->ep_rsp
) & BIT(SET_ENDPOINT_HALT
))
3215 status
= cpu_to_le32(1);
3217 status
= cpu_to_le32(0);
3219 /* don't bother with a request object! */
3220 writel(0, &dev
->epregs
[0].ep_irqenb
);
3221 set_fifo_bytecount(ep
, w_length
);
3222 writel((__force u32
)status
, &dev
->epregs
[0].ep_data
);
3224 ep_vdbg(dev
, "%s stat %02x\n", ep
->ep
.name
, status
);
3225 goto next_endpoints
;
3228 case USB_REQ_CLEAR_FEATURE
: {
3229 struct net2280_ep
*e
;
3231 /* hw handles device features */
3232 if (u
.r
.bRequestType
!= USB_RECIP_ENDPOINT
)
3234 if (w_value
!= USB_ENDPOINT_HALT
|| w_length
!= 0)
3236 e
= get_ep_by_addr(dev
, w_index
);
3240 ep_vdbg(dev
, "%s wedged, halt not cleared\n",
3243 ep_vdbg(dev
, "%s clear halt\n", e
->ep
.name
);
3245 if ((ep
->dev
->quirks
& PLX_PCIE
) &&
3246 !list_empty(&e
->queue
) && e
->td_dma
)
3250 goto next_endpoints
;
3253 case USB_REQ_SET_FEATURE
: {
3254 struct net2280_ep
*e
;
3256 /* hw handles device features */
3257 if (u
.r
.bRequestType
!= USB_RECIP_ENDPOINT
)
3259 if (w_value
!= USB_ENDPOINT_HALT
|| w_length
!= 0)
3261 e
= get_ep_by_addr(dev
, w_index
);
3264 if (e
->ep
.name
== ep0name
)
3267 if ((dev
->quirks
& PLX_PCIE
) && e
->dma
)
3270 ep_vdbg(dev
, "%s set halt\n", ep
->ep
.name
);
3271 goto next_endpoints
;
3276 ep_vdbg(dev
, "setup %02x.%02x v%04x i%04x l%04x "
3278 u
.r
.bRequestType
, u
.r
.bRequest
,
3279 w_value
, w_index
, w_length
,
3280 readl(&ep
->cfg
->ep_cfg
));
3282 spin_unlock(&dev
->lock
);
3283 tmp
= dev
->driver
->setup(&dev
->gadget
, &u
.r
);
3284 spin_lock(&dev
->lock
);
3287 /* stall ep0 on error */
3290 ep_vdbg(dev
, "req %02x.%02x protocol STALL; stat %d\n",
3291 u
.r
.bRequestType
, u
.r
.bRequest
, tmp
);
3292 dev
->protocol_stall
= 1;
3295 /* some in/out token irq should follow; maybe stall then.
3296 * driver must queue a request (even zlp) or halt ep0
3297 * before the host times out.
3306 if ((dev
->quirks
& PLX_PCIE
) && dev
->enhanced_mode
) {
3307 u32 mask
= (BIT(ENDPOINT_0_INTERRUPT
) |
3308 USB3380_IRQSTAT0_EP_INTR_MASK_IN
|
3309 USB3380_IRQSTAT0_EP_INTR_MASK_OUT
);
3312 usb338x_handle_ep_intr(dev
, stat
& mask
);
3316 /* endpoint data irq ? */
3317 scratch
= stat
& 0x7f;
3319 for (num
= 0; scratch
; num
++) {
3322 /* do this endpoint's FIFO and queue need tending? */
3324 if ((scratch
& t
) == 0)
3329 handle_ep_small(ep
);
3334 ep_dbg(dev
, "unhandled irqstat0 %08x\n", stat
);
3337 #define DMA_INTERRUPTS (BIT(DMA_D_INTERRUPT) | \
3338 BIT(DMA_C_INTERRUPT) | \
3339 BIT(DMA_B_INTERRUPT) | \
3340 BIT(DMA_A_INTERRUPT))
3341 #define PCI_ERROR_INTERRUPTS ( \
3342 BIT(PCI_MASTER_ABORT_RECEIVED_INTERRUPT) | \
3343 BIT(PCI_TARGET_ABORT_RECEIVED_INTERRUPT) | \
3344 BIT(PCI_RETRY_ABORT_INTERRUPT))
3346 static void handle_stat1_irqs(struct net2280
*dev
, u32 stat
)
3348 struct net2280_ep
*ep
;
3349 u32 tmp
, num
, mask
, scratch
;
3351 /* after disconnect there's nothing else to do! */
3352 tmp
= BIT(VBUS_INTERRUPT
) | BIT(ROOT_PORT_RESET_INTERRUPT
);
3353 mask
= BIT(SUPER_SPEED
) | BIT(HIGH_SPEED
) | BIT(FULL_SPEED
);
3355 /* VBUS disconnect is indicated by VBUS_PIN and VBUS_INTERRUPT set.
3356 * Root Port Reset is indicated by ROOT_PORT_RESET_INTERRUPT set and
3357 * both HIGH_SPEED and FULL_SPEED clear (as ROOT_PORT_RESET_INTERRUPT
3358 * only indicates a change in the reset state).
3362 bool disconnect
= false;
3365 * Ignore disconnects and resets if the speed hasn't been set.
3366 * VBUS can bounce and there's always an initial reset.
3368 writel(tmp
, &dev
->regs
->irqstat1
);
3369 if (dev
->gadget
.speed
!= USB_SPEED_UNKNOWN
) {
3370 if ((stat
& BIT(VBUS_INTERRUPT
)) &&
3371 (readl(&dev
->usb
->usbctl
) &
3372 BIT(VBUS_PIN
)) == 0) {
3374 ep_dbg(dev
, "disconnect %s\n",
3375 dev
->driver
->driver
.name
);
3376 } else if ((stat
& BIT(ROOT_PORT_RESET_INTERRUPT
)) &&
3377 (readl(&dev
->usb
->usbstat
) & mask
)
3380 ep_dbg(dev
, "reset %s\n",
3381 dev
->driver
->driver
.name
);
3384 if (disconnect
|| reset
) {
3385 stop_activity(dev
, dev
->driver
);
3388 usb_gadget_udc_reset
3389 (&dev
->gadget
, dev
->driver
);
3391 (dev
->driver
->disconnect
)
3398 /* vBUS can bounce ... one of many reasons to ignore the
3399 * notion of hotplug events on bus connect/disconnect!
3405 /* NOTE: chip stays in PCI D0 state for now, but it could
3406 * enter D1 to save more power
3408 tmp
= BIT(SUSPEND_REQUEST_CHANGE_INTERRUPT
);
3410 writel(tmp
, &dev
->regs
->irqstat1
);
3411 if (stat
& BIT(SUSPEND_REQUEST_INTERRUPT
)) {
3412 if (dev
->driver
->suspend
)
3413 dev
->driver
->suspend(&dev
->gadget
);
3414 if (!enable_suspend
)
3415 stat
&= ~BIT(SUSPEND_REQUEST_INTERRUPT
);
3417 if (dev
->driver
->resume
)
3418 dev
->driver
->resume(&dev
->gadget
);
3419 /* at high speed, note erratum 0133 */
3424 /* clear any other status/irqs */
3426 writel(stat
, &dev
->regs
->irqstat1
);
3428 /* some status we can just ignore */
3429 if (dev
->quirks
& PLX_2280
)
3430 stat
&= ~(BIT(CONTROL_STATUS_INTERRUPT
) |
3431 BIT(SUSPEND_REQUEST_INTERRUPT
) |
3432 BIT(RESUME_INTERRUPT
) |
3433 BIT(SOF_INTERRUPT
));
3435 stat
&= ~(BIT(CONTROL_STATUS_INTERRUPT
) |
3436 BIT(RESUME_INTERRUPT
) |
3437 BIT(SOF_DOWN_INTERRUPT
) |
3438 BIT(SOF_INTERRUPT
));
3442 /* ep_dbg(dev, "irqstat1 %08x\n", stat);*/
3444 /* DMA status, for ep-{a,b,c,d} */
3445 scratch
= stat
& DMA_INTERRUPTS
;
3446 stat
&= ~DMA_INTERRUPTS
;
3448 for (num
= 0; scratch
; num
++) {
3449 struct net2280_dma_regs __iomem
*dma
;
3452 if ((tmp
& scratch
) == 0)
3456 ep
= &dev
->ep
[num
+ 1];
3462 /* clear ep's dma status */
3463 tmp
= readl(&dma
->dmastat
);
3464 writel(tmp
, &dma
->dmastat
);
3467 if (dev
->quirks
& PLX_PCIE
) {
3468 u32 r_dmacount
= readl(&dma
->dmacount
);
3469 if (!ep
->is_in
&& (r_dmacount
& 0x00FFFFFF) &&
3470 (tmp
& BIT(DMA_TRANSACTION_DONE_INTERRUPT
)))
3474 if (!(tmp
& BIT(DMA_TRANSACTION_DONE_INTERRUPT
))) {
3475 ep_dbg(ep
->dev
, "%s no xact done? %08x\n",
3481 /* OUT transfers terminate when the data from the
3482 * host is in our memory. Process whatever's done.
3483 * On this path, we know transfer's last packet wasn't
3484 * less than req->length. NAK_OUT_PACKETS may be set,
3485 * or the FIFO may already be holding new packets.
3487 * IN transfers can linger in the FIFO for a very
3488 * long time ... we ignore that for now, accounting
3489 * precisely (like PIO does) needs per-packet irqs
3491 scan_dma_completions(ep
);
3493 /* disable dma on inactive queues; else maybe restart */
3494 if (!list_empty(&ep
->queue
)) {
3495 tmp
= readl(&dma
->dmactl
);
3501 /* NOTE: there are other PCI errors we might usefully notice.
3502 * if they appear very often, here's where to try recovering.
3504 if (stat
& PCI_ERROR_INTERRUPTS
) {
3505 ep_err(dev
, "pci dma error; stat %08x\n", stat
);
3506 stat
&= ~PCI_ERROR_INTERRUPTS
;
3507 /* these are fatal errors, but "maybe" they won't
3510 stop_activity(dev
, dev
->driver
);
3516 ep_dbg(dev
, "unhandled irqstat1 %08x\n", stat
);
3519 static irqreturn_t
net2280_irq(int irq
, void *_dev
)
3521 struct net2280
*dev
= _dev
;
3523 /* shared interrupt, not ours */
3524 if ((dev
->quirks
& PLX_LEGACY
) &&
3525 (!(readl(&dev
->regs
->irqstat0
) & BIT(INTA_ASSERTED
))))
3528 spin_lock(&dev
->lock
);
3530 /* handle disconnect, dma, and more */
3531 handle_stat1_irqs(dev
, readl(&dev
->regs
->irqstat1
));
3533 /* control requests and PIO */
3534 handle_stat0_irqs(dev
, readl(&dev
->regs
->irqstat0
));
3536 if (dev
->quirks
& PLX_PCIE
) {
3537 /* re-enable interrupt to trigger any possible new interrupt */
3538 u32 pciirqenb1
= readl(&dev
->regs
->pciirqenb1
);
3539 writel(pciirqenb1
& 0x7FFFFFFF, &dev
->regs
->pciirqenb1
);
3540 writel(pciirqenb1
, &dev
->regs
->pciirqenb1
);
3543 spin_unlock(&dev
->lock
);
3548 /*-------------------------------------------------------------------------*/
3550 static void gadget_release(struct device
*_dev
)
3552 struct net2280
*dev
= dev_get_drvdata(_dev
);
3557 /* tear down the binding between this driver and the pci device */
3559 static void net2280_remove(struct pci_dev
*pdev
)
3561 struct net2280
*dev
= pci_get_drvdata(pdev
);
3563 usb_del_gadget_udc(&dev
->gadget
);
3565 BUG_ON(dev
->driver
);
3567 /* then clean up the resources we allocated during probe() */
3568 net2280_led_shutdown(dev
);
3569 if (dev
->requests
) {
3571 for (i
= 1; i
< 5; i
++) {
3572 if (!dev
->ep
[i
].dummy
)
3574 pci_pool_free(dev
->requests
, dev
->ep
[i
].dummy
,
3577 pci_pool_destroy(dev
->requests
);
3580 free_irq(pdev
->irq
, dev
);
3581 if (dev
->quirks
& PLX_PCIE
)
3582 pci_disable_msi(pdev
);
3586 release_mem_region(pci_resource_start(pdev
, 0),
3587 pci_resource_len(pdev
, 0));
3589 pci_disable_device(pdev
);
3590 device_remove_file(&pdev
->dev
, &dev_attr_registers
);
3592 ep_info(dev
, "unbind\n");
3595 /* wrap this driver around the specified device, but
3596 * don't respond over USB until a gadget driver binds to us.
3599 static int net2280_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
3601 struct net2280
*dev
;
3602 unsigned long resource
, len
;
3603 void __iomem
*base
= NULL
;
3606 /* alloc, and start init */
3607 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
3613 pci_set_drvdata(pdev
, dev
);
3614 spin_lock_init(&dev
->lock
);
3615 dev
->quirks
= id
->driver_data
;
3617 dev
->gadget
.ops
= &net2280_ops
;
3618 dev
->gadget
.max_speed
= (dev
->quirks
& PLX_SUPERSPEED
) ?
3619 USB_SPEED_SUPER
: USB_SPEED_HIGH
;
3621 /* the "gadget" abstracts/virtualizes the controller */
3622 dev
->gadget
.name
= driver_name
;
3624 /* now all the pci goodies ... */
3625 if (pci_enable_device(pdev
) < 0) {
3631 /* BAR 0 holds all the registers
3632 * BAR 1 is 8051 memory; unused here (note erratum 0103)
3633 * BAR 2 is fifo memory; unused here
3635 resource
= pci_resource_start(pdev
, 0);
3636 len
= pci_resource_len(pdev
, 0);
3637 if (!request_mem_region(resource
, len
, driver_name
)) {
3638 ep_dbg(dev
, "controller already in use\n");
3644 /* FIXME provide firmware download interface to put
3645 * 8051 code into the chip, e.g. to turn on PCI PM.
3648 base
= ioremap_nocache(resource
, len
);
3650 ep_dbg(dev
, "can't map memory\n");
3654 dev
->regs
= (struct net2280_regs __iomem
*) base
;
3655 dev
->usb
= (struct net2280_usb_regs __iomem
*) (base
+ 0x0080);
3656 dev
->pci
= (struct net2280_pci_regs __iomem
*) (base
+ 0x0100);
3657 dev
->dma
= (struct net2280_dma_regs __iomem
*) (base
+ 0x0180);
3658 dev
->dep
= (struct net2280_dep_regs __iomem
*) (base
+ 0x0200);
3659 dev
->epregs
= (struct net2280_ep_regs __iomem
*) (base
+ 0x0300);
3661 if (dev
->quirks
& PLX_PCIE
) {
3664 dev
->usb_ext
= (struct usb338x_usb_ext_regs __iomem
*)
3666 dev
->llregs
= (struct usb338x_ll_regs __iomem
*)
3668 dev
->ll_lfps_regs
= (struct usb338x_ll_lfps_regs __iomem
*)
3670 dev
->ll_tsn_regs
= (struct usb338x_ll_tsn_regs __iomem
*)
3672 dev
->ll_chicken_reg
= (struct usb338x_ll_chi_regs __iomem
*)
3674 dev
->plregs
= (struct usb338x_pl_regs __iomem
*)
3676 usbstat
= readl(&dev
->usb
->usbstat
);
3677 dev
->enhanced_mode
= !!(usbstat
& BIT(11));
3678 dev
->n_ep
= (dev
->enhanced_mode
) ? 9 : 5;
3679 /* put into initial config, link up all endpoints */
3680 fsmvalue
= get_idx_reg(dev
->regs
, SCRATCH
) &
3681 (0xf << DEFECT7374_FSM_FIELD
);
3682 /* See if firmware needs to set up for workaround: */
3683 if (fsmvalue
== DEFECT7374_FSM_SS_CONTROL_READ
) {
3684 dev
->bug7734_patched
= 1;
3685 writel(0, &dev
->usb
->usbctl
);
3687 dev
->bug7734_patched
= 0;
3689 dev
->enhanced_mode
= 0;
3691 /* put into initial config, link up all endpoints */
3692 writel(0, &dev
->usb
->usbctl
);
3698 /* irq setup after old hardware is cleaned up */
3700 ep_err(dev
, "No IRQ. Check PCI setup!\n");
3705 if (dev
->quirks
& PLX_PCIE
)
3706 if (pci_enable_msi(pdev
))
3707 ep_err(dev
, "Failed to enable MSI mode\n");
3709 if (request_irq(pdev
->irq
, net2280_irq
, IRQF_SHARED
,
3710 driver_name
, dev
)) {
3711 ep_err(dev
, "request interrupt %d failed\n", pdev
->irq
);
3718 /* NOTE: we know only the 32 LSBs of dma addresses may be nonzero */
3719 dev
->requests
= pci_pool_create("requests", pdev
,
3720 sizeof(struct net2280_dma
),
3721 0 /* no alignment requirements */,
3722 0 /* or page-crossing issues */);
3723 if (!dev
->requests
) {
3724 ep_dbg(dev
, "can't get request pool\n");
3728 for (i
= 1; i
< 5; i
++) {
3729 struct net2280_dma
*td
;
3731 td
= pci_pool_alloc(dev
->requests
, GFP_KERNEL
,
3732 &dev
->ep
[i
].td_dma
);
3734 ep_dbg(dev
, "can't get dummy %d\n", i
);
3738 td
->dmacount
= 0; /* not VALID */
3739 td
->dmadesc
= td
->dmaaddr
;
3740 dev
->ep
[i
].dummy
= td
;
3743 /* enable lower-overhead pci memory bursts during DMA */
3744 if (dev
->quirks
& PLX_LEGACY
)
3745 writel(BIT(DMA_MEMORY_WRITE_AND_INVALIDATE_ENABLE
) |
3747 * 256 write retries may not be enough...
3748 BIT(PCI_RETRY_ABORT_ENABLE) |
3750 BIT(DMA_READ_MULTIPLE_ENABLE
) |
3751 BIT(DMA_READ_LINE_ENABLE
),
3752 &dev
->pci
->pcimstctl
);
3753 /* erratum 0115 shouldn't appear: Linux inits PCI_LATENCY_TIMER */
3754 pci_set_master(pdev
);
3755 pci_try_set_mwi(pdev
);
3757 /* ... also flushes any posted pci writes */
3758 dev
->chiprev
= get_idx_reg(dev
->regs
, REG_CHIPREV
) & 0xffff;
3761 ep_info(dev
, "%s\n", driver_desc
);
3762 ep_info(dev
, "irq %d, pci mem %p, chip rev %04x\n",
3763 pdev
->irq
, base
, dev
->chiprev
);
3764 ep_info(dev
, "version: " DRIVER_VERSION
"; %s\n",
3765 dev
->enhanced_mode
? "enhanced mode" : "legacy mode");
3766 retval
= device_create_file(&pdev
->dev
, &dev_attr_registers
);
3770 retval
= usb_add_gadget_udc_release(&pdev
->dev
, &dev
->gadget
,
3778 net2280_remove(pdev
);
3782 /* make sure the board is quiescent; otherwise it will continue
3783 * generating IRQs across the upcoming reboot.
3786 static void net2280_shutdown(struct pci_dev
*pdev
)
3788 struct net2280
*dev
= pci_get_drvdata(pdev
);
3791 writel(0, &dev
->regs
->pciirqenb0
);
3792 writel(0, &dev
->regs
->pciirqenb1
);
3794 /* disable the pullup so the host will think we're gone */
3795 writel(0, &dev
->usb
->usbctl
);
3800 /*-------------------------------------------------------------------------*/
3802 static const struct pci_device_id pci_ids
[] = { {
3803 .class = PCI_CLASS_SERIAL_USB_DEVICE
,
3805 .vendor
= PCI_VENDOR_ID_PLX_LEGACY
,
3807 .subvendor
= PCI_ANY_ID
,
3808 .subdevice
= PCI_ANY_ID
,
3809 .driver_data
= PLX_LEGACY
| PLX_2280
,
3811 .class = PCI_CLASS_SERIAL_USB_DEVICE
,
3813 .vendor
= PCI_VENDOR_ID_PLX_LEGACY
,
3815 .subvendor
= PCI_ANY_ID
,
3816 .subdevice
= PCI_ANY_ID
,
3817 .driver_data
= PLX_LEGACY
,
3820 .class = PCI_CLASS_SERIAL_USB_DEVICE
,
3822 .vendor
= PCI_VENDOR_ID_PLX
,
3824 .subvendor
= PCI_ANY_ID
,
3825 .subdevice
= PCI_ANY_ID
,
3826 .driver_data
= PLX_PCIE
,
3829 .class = ((PCI_CLASS_SERIAL_USB
<< 8) | 0xfe),
3831 .vendor
= PCI_VENDOR_ID_PLX
,
3833 .subvendor
= PCI_ANY_ID
,
3834 .subdevice
= PCI_ANY_ID
,
3835 .driver_data
= PLX_PCIE
| PLX_SUPERSPEED
,
3838 .class = PCI_CLASS_SERIAL_USB_DEVICE
,
3840 .vendor
= PCI_VENDOR_ID_PLX
,
3842 .subvendor
= PCI_ANY_ID
,
3843 .subdevice
= PCI_ANY_ID
,
3844 .driver_data
= PLX_PCIE
| PLX_SUPERSPEED
,
3846 { /* end: all zeroes */ }
3848 MODULE_DEVICE_TABLE(pci
, pci_ids
);
3850 /* pci driver glue; this is a "new style" PCI driver module */
3851 static struct pci_driver net2280_pci_driver
= {
3852 .name
= (char *) driver_name
,
3853 .id_table
= pci_ids
,
3855 .probe
= net2280_probe
,
3856 .remove
= net2280_remove
,
3857 .shutdown
= net2280_shutdown
,
3859 /* FIXME add power management support */
3862 module_pci_driver(net2280_pci_driver
);
3864 MODULE_DESCRIPTION(DRIVER_DESC
);
3865 MODULE_AUTHOR("David Brownell");
3866 MODULE_LICENSE("GPL");