2 * MUSB OTG peripheral driver ep0 handling
4 * Copyright 2005 Mentor Graphics Corporation
5 * Copyright (C) 2005-2006 by Texas Instruments
6 * Copyright (C) 2006-2007 Nokia Corporation
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
25 * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
29 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 #include <linux/kernel.h>
36 #include <linux/list.h>
37 #include <linux/timer.h>
38 #include <linux/spinlock.h>
39 #include <linux/init.h>
40 #include <linux/device.h>
41 #include <linux/interrupt.h>
43 #include "musb_core.h"
45 /* ep0 is always musb->endpoints[0].ep_in */
46 #define next_ep0_request(musb) next_in_request(&(musb)->endpoints[0])
49 * locking note: we use only the controller lock, for simpler correctness.
50 * It's always held with IRQs blocked.
52 * It protects the ep0 request queue as well as ep0_state, not just the
53 * controller and indexed registers. And that lock stays held unless it
54 * needs to be dropped to allow reentering this driver ... like upcalls to
55 * the gadget driver, or adjusting endpoint halt status.
58 static char *decode_ep0stage(u8 stage)
61 case MUSB_EP0_STAGE_SETUP: return "idle";
62 case MUSB_EP0_STAGE_TX: return "in";
63 case MUSB_EP0_STAGE_RX: return "out";
64 case MUSB_EP0_STAGE_ACKWAIT: return "wait";
65 case MUSB_EP0_STAGE_STATUSIN: return "in/status";
66 case MUSB_EP0_STAGE_STATUSOUT: return "out/status";
71 /* handle a standard GET_STATUS request
72 * Context: caller holds controller lock
74 static int service_tx_status_request(
76 const struct usb_ctrlrequest *ctrlrequest)
78 void __iomem *mbase = musb->mregs;
80 u8 result[2], epnum = 0;
81 const u8 recip = ctrlrequest->bRequestType & USB_RECIP_MASK;
86 case USB_RECIP_DEVICE:
87 result[0] = musb->is_self_powered << USB_DEVICE_SELF_POWERED;
88 result[0] |= musb->may_wakeup << USB_DEVICE_REMOTE_WAKEUP;
89 #ifdef CONFIG_USB_MUSB_OTG
91 result[0] |= musb->g.b_hnp_enable
92 << USB_DEVICE_B_HNP_ENABLE;
93 result[0] |= musb->g.a_alt_hnp_support
94 << USB_DEVICE_A_ALT_HNP_SUPPORT;
95 result[0] |= musb->g.a_hnp_support
96 << USB_DEVICE_A_HNP_SUPPORT;
101 case USB_RECIP_INTERFACE:
105 case USB_RECIP_ENDPOINT: {
111 epnum = (u8) ctrlrequest->wIndex;
117 is_in = epnum & USB_DIR_IN;
120 ep = &musb->endpoints[epnum].ep_in;
122 ep = &musb->endpoints[epnum].ep_out;
124 regs = musb->endpoints[epnum].regs;
126 if (epnum >= MUSB_C_NUM_EPS || !ep->desc) {
131 musb_ep_select(mbase, epnum);
133 tmp = musb_readw(regs, MUSB_TXCSR)
134 & MUSB_TXCSR_P_SENDSTALL;
136 tmp = musb_readw(regs, MUSB_RXCSR)
137 & MUSB_RXCSR_P_SENDSTALL;
138 musb_ep_select(mbase, 0);
140 result[0] = tmp ? 1 : 0;
144 /* class, vendor, etc ... delegate */
149 /* fill up the fifo; caller updates csr0 */
151 u16 len = le16_to_cpu(ctrlrequest->wLength);
155 musb_write_fifo(&musb->endpoints[0], len, result);
162 * handle a control-IN request, the end0 buffer contains the current request
163 * that is supposed to be a standard control request. Assumes the fifo to
164 * be at least 2 bytes long.
166 * @return 0 if the request was NOT HANDLED,
168 * > 0 when the request is processed
170 * Context: caller holds controller lock
173 service_in_request(struct musb *musb, const struct usb_ctrlrequest *ctrlrequest)
175 int handled = 0; /* not handled */
177 if ((ctrlrequest->bRequestType & USB_TYPE_MASK)
178 == USB_TYPE_STANDARD) {
179 switch (ctrlrequest->bRequest) {
180 case USB_REQ_GET_STATUS:
181 handled = service_tx_status_request(musb,
185 /* case USB_REQ_SYNC_FRAME: */
195 * Context: caller holds controller lock
197 static void musb_g_ep0_giveback(struct musb *musb, struct usb_request *req)
199 musb_g_giveback(&musb->endpoints[0].ep_in, req, 0);
200 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
204 * Tries to start B-device HNP negotiation if enabled via sysfs
206 static inline void musb_try_b_hnp_enable(struct musb *musb)
208 void __iomem *mbase = musb->mregs;
211 DBG(1, "HNP: Setting HR\n");
212 devctl = musb_readb(mbase, MUSB_DEVCTL);
213 musb_writeb(mbase, MUSB_DEVCTL, devctl | MUSB_DEVCTL_HR);
217 * Handle all control requests with no DATA stage, including standard
219 * USB_REQ_SET_CONFIGURATION, USB_REQ_SET_INTERFACE, unrecognized
220 * always delegated to the gadget driver
221 * USB_REQ_SET_ADDRESS, USB_REQ_CLEAR_FEATURE, USB_REQ_SET_FEATURE
222 * always handled here, except for class/vendor/... features
224 * Context: caller holds controller lock
227 service_zero_data_request(struct musb *musb,
228 struct usb_ctrlrequest *ctrlrequest)
229 __releases(musb->lock)
230 __acquires(musb->lock)
232 int handled = -EINVAL;
233 void __iomem *mbase = musb->mregs;
234 const u8 recip = ctrlrequest->bRequestType & USB_RECIP_MASK;
236 /* the gadget driver handles everything except what we MUST handle */
237 if ((ctrlrequest->bRequestType & USB_TYPE_MASK)
238 == USB_TYPE_STANDARD) {
239 switch (ctrlrequest->bRequest) {
240 case USB_REQ_SET_ADDRESS:
241 /* change it after the status stage */
242 musb->set_address = true;
243 musb->address = (u8) (ctrlrequest->wValue & 0x7f);
247 case USB_REQ_CLEAR_FEATURE:
249 case USB_RECIP_DEVICE:
250 if (ctrlrequest->wValue
251 != USB_DEVICE_REMOTE_WAKEUP)
253 musb->may_wakeup = 0;
256 case USB_RECIP_INTERFACE:
258 case USB_RECIP_ENDPOINT:{
259 const u8 num = ctrlrequest->wIndex & 0x0f;
260 struct musb_ep *musb_ep;
263 || num >= MUSB_C_NUM_EPS
264 || ctrlrequest->wValue
265 != USB_ENDPOINT_HALT)
268 if (ctrlrequest->wIndex & USB_DIR_IN)
269 musb_ep = &musb->endpoints[num].ep_in;
271 musb_ep = &musb->endpoints[num].ep_out;
275 /* REVISIT do it directly, no locking games */
276 spin_unlock(&musb->lock);
277 musb_gadget_set_halt(&musb_ep->end_point, 0);
278 spin_lock(&musb->lock);
280 /* select ep0 again */
281 musb_ep_select(mbase, 0);
285 /* class, vendor, etc ... delegate */
291 case USB_REQ_SET_FEATURE:
293 case USB_RECIP_DEVICE:
295 switch (ctrlrequest->wValue) {
296 case USB_DEVICE_REMOTE_WAKEUP:
297 musb->may_wakeup = 1;
299 case USB_DEVICE_TEST_MODE:
300 if (musb->g.speed != USB_SPEED_HIGH)
302 if (ctrlrequest->wIndex & 0xff)
305 switch (ctrlrequest->wIndex >> 8) {
307 pr_debug("TEST_J\n");
314 pr_debug("TEST_K\n");
320 pr_debug("TEST_SE0_NAK\n");
326 pr_debug("TEST_PACKET\n");
334 /* enter test mode after irq */
336 musb->test_mode = true;
338 #ifdef CONFIG_USB_MUSB_OTG
339 case USB_DEVICE_B_HNP_ENABLE:
342 musb->g.b_hnp_enable = 1;
343 musb_try_b_hnp_enable(musb);
345 case USB_DEVICE_A_HNP_SUPPORT:
348 musb->g.a_hnp_support = 1;
350 case USB_DEVICE_A_ALT_HNP_SUPPORT:
353 musb->g.a_alt_hnp_support = 1;
363 case USB_RECIP_INTERFACE:
366 case USB_RECIP_ENDPOINT:{
368 ctrlrequest->wIndex & 0x0f;
369 struct musb_ep *musb_ep;
370 struct musb_hw_ep *ep;
376 || epnum >= MUSB_C_NUM_EPS
377 || ctrlrequest->wValue
378 != USB_ENDPOINT_HALT)
381 ep = musb->endpoints + epnum;
383 is_in = ctrlrequest->wIndex & USB_DIR_IN;
385 musb_ep = &ep->ep_in;
387 musb_ep = &ep->ep_out;
391 musb_ep_select(mbase, epnum);
393 csr = musb_readw(regs,
395 if (csr & MUSB_TXCSR_FIFONOTEMPTY)
396 csr |= MUSB_TXCSR_FLUSHFIFO;
397 csr |= MUSB_TXCSR_P_SENDSTALL
398 | MUSB_TXCSR_CLRDATATOG
399 | MUSB_TXCSR_P_WZC_BITS;
400 musb_writew(regs, MUSB_TXCSR,
403 csr = musb_readw(regs,
405 csr |= MUSB_RXCSR_P_SENDSTALL
406 | MUSB_RXCSR_FLUSHFIFO
407 | MUSB_RXCSR_CLRDATATOG
408 | MUSB_TXCSR_P_WZC_BITS;
409 musb_writew(regs, MUSB_RXCSR,
413 /* select ep0 again */
414 musb_ep_select(mbase, 0);
419 /* class, vendor, etc ... delegate */
425 /* delegate SET_CONFIGURATION, etc */
433 /* we have an ep0out data packet
434 * Context: caller holds controller lock
436 static void ep0_rxstate(struct musb *musb)
438 void __iomem *regs = musb->control_ep->regs;
439 struct usb_request *req;
442 req = next_ep0_request(musb);
444 /* read packet and ack; or stall because of gadget driver bug:
445 * should have provided the rx buffer before setup() returned.
448 void *buf = req->buf + req->actual;
449 unsigned len = req->length - req->actual;
451 /* read the buffer */
452 tmp = musb_readb(regs, MUSB_COUNT0);
454 req->status = -EOVERFLOW;
457 musb_read_fifo(&musb->endpoints[0], tmp, buf);
459 tmp = MUSB_CSR0_P_SVDRXPKTRDY;
460 if (tmp < 64 || req->actual == req->length) {
461 musb->ep0_state = MUSB_EP0_STAGE_STATUSIN;
462 tmp |= MUSB_CSR0_P_DATAEND;
466 tmp = MUSB_CSR0_P_SVDRXPKTRDY | MUSB_CSR0_P_SENDSTALL;
469 /* Completion handler may choose to stall, e.g. because the
470 * message just received holds invalid data.
474 musb_g_ep0_giveback(musb, req);
479 musb_writew(regs, MUSB_CSR0, tmp);
483 * transmitting to the host (IN), this code might be called from IRQ
484 * and from kernel thread.
486 * Context: caller holds controller lock
488 static void ep0_txstate(struct musb *musb)
490 void __iomem *regs = musb->control_ep->regs;
491 struct usb_request *request = next_ep0_request(musb);
492 u16 csr = MUSB_CSR0_TXPKTRDY;
498 DBG(2, "odd; csr0 %04x\n", musb_readw(regs, MUSB_CSR0));
503 fifo_src = (u8 *) request->buf + request->actual;
504 fifo_count = min((unsigned) MUSB_EP0_FIFOSIZE,
505 request->length - request->actual);
506 musb_write_fifo(&musb->endpoints[0], fifo_count, fifo_src);
507 request->actual += fifo_count;
509 /* update the flags */
510 if (fifo_count < MUSB_MAX_END0_PACKET
511 || request->actual == request->length) {
512 musb->ep0_state = MUSB_EP0_STAGE_STATUSOUT;
513 csr |= MUSB_CSR0_P_DATAEND;
517 /* report completions as soon as the fifo's loaded; there's no
518 * win in waiting till this last packet gets acked. (other than
519 * very precise fault reporting, needed by USB TMC; possible with
520 * this hardware, but not usable from portable gadget drivers.)
524 musb_g_ep0_giveback(musb, request);
530 /* send it out, triggering a "txpktrdy cleared" irq */
531 musb_writew(regs, MUSB_CSR0, csr);
535 * Read a SETUP packet (struct usb_ctrlrequest) from the hardware.
536 * Fields are left in USB byte-order.
538 * Context: caller holds controller lock.
541 musb_read_setup(struct musb *musb, struct usb_ctrlrequest *req)
543 struct usb_request *r;
544 void __iomem *regs = musb->control_ep->regs;
546 musb_read_fifo(&musb->endpoints[0], sizeof *req, (u8 *)req);
548 /* NOTE: earlier 2.6 versions changed setup packets to host
549 * order, but now USB packets always stay in USB byte order.
551 DBG(3, "SETUP req%02x.%02x v%04x i%04x l%d\n",
554 le16_to_cpu(req->wValue),
555 le16_to_cpu(req->wIndex),
556 le16_to_cpu(req->wLength));
558 /* clean up any leftover transfers */
559 r = next_ep0_request(musb);
561 musb_g_ep0_giveback(musb, r);
563 /* For zero-data requests we want to delay the STATUS stage to
564 * avoid SETUPEND errors. If we read data (OUT), delay accepting
565 * packets until there's a buffer to store them in.
567 * If we write data, the controller acts happier if we enable
568 * the TX FIFO right away, and give the controller a moment
571 musb->set_address = false;
572 musb->ackpend = MUSB_CSR0_P_SVDRXPKTRDY;
573 if (req->wLength == 0) {
574 if (req->bRequestType & USB_DIR_IN)
575 musb->ackpend |= MUSB_CSR0_TXPKTRDY;
576 musb->ep0_state = MUSB_EP0_STAGE_ACKWAIT;
577 } else if (req->bRequestType & USB_DIR_IN) {
578 musb->ep0_state = MUSB_EP0_STAGE_TX;
579 musb_writew(regs, MUSB_CSR0, MUSB_CSR0_P_SVDRXPKTRDY);
580 while ((musb_readw(regs, MUSB_CSR0)
581 & MUSB_CSR0_RXPKTRDY) != 0)
585 musb->ep0_state = MUSB_EP0_STAGE_RX;
589 forward_to_driver(struct musb *musb, const struct usb_ctrlrequest *ctrlrequest)
590 __releases(musb->lock)
591 __acquires(musb->lock)
594 if (!musb->gadget_driver)
596 spin_unlock(&musb->lock);
597 retval = musb->gadget_driver->setup(&musb->g, ctrlrequest);
598 spin_lock(&musb->lock);
603 * Handle peripheral ep0 interrupt
605 * Context: irq handler; we won't re-enter the driver that way.
607 irqreturn_t musb_g_ep0_irq(struct musb *musb)
611 void __iomem *mbase = musb->mregs;
612 void __iomem *regs = musb->endpoints[0].regs;
613 irqreturn_t retval = IRQ_NONE;
615 musb_ep_select(mbase, 0); /* select ep0 */
616 csr = musb_readw(regs, MUSB_CSR0);
617 len = musb_readb(regs, MUSB_COUNT0);
619 DBG(4, "csr %04x, count %d, myaddr %d, ep0stage %s\n",
621 musb_readb(mbase, MUSB_FADDR),
622 decode_ep0stage(musb->ep0_state));
624 /* I sent a stall.. need to acknowledge it now.. */
625 if (csr & MUSB_CSR0_P_SENTSTALL) {
626 musb_writew(regs, MUSB_CSR0,
627 csr & ~MUSB_CSR0_P_SENTSTALL);
628 retval = IRQ_HANDLED;
629 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
630 csr = musb_readw(regs, MUSB_CSR0);
633 /* request ended "early" */
634 if (csr & MUSB_CSR0_P_SETUPEND) {
635 musb_writew(regs, MUSB_CSR0, MUSB_CSR0_P_SVDSETUPEND);
636 retval = IRQ_HANDLED;
637 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
638 csr = musb_readw(regs, MUSB_CSR0);
639 /* NOTE: request may need completion */
642 /* docs from Mentor only describe tx, rx, and idle/setup states.
643 * we need to handle nuances around status stages, and also the
644 * case where status and setup stages come back-to-back ...
646 switch (musb->ep0_state) {
648 case MUSB_EP0_STAGE_TX:
649 /* irq on clearing txpktrdy */
650 if ((csr & MUSB_CSR0_TXPKTRDY) == 0) {
652 retval = IRQ_HANDLED;
656 case MUSB_EP0_STAGE_RX:
657 /* irq on set rxpktrdy */
658 if (csr & MUSB_CSR0_RXPKTRDY) {
660 retval = IRQ_HANDLED;
664 case MUSB_EP0_STAGE_STATUSIN:
665 /* end of sequence #2 (OUT/RX state) or #3 (no data) */
667 /* update address (if needed) only @ the end of the
668 * status phase per usb spec, which also guarantees
669 * we get 10 msec to receive this irq... until this
670 * is done we won't see the next packet.
672 if (musb->set_address) {
673 musb->set_address = false;
674 musb_writeb(mbase, MUSB_FADDR, musb->address);
677 /* enter test mode if needed (exit by reset) */
678 else if (musb->test_mode) {
679 DBG(1, "entering TESTMODE\n");
681 if (MUSB_TEST_PACKET == musb->test_mode_nr)
682 musb_load_testpacket(musb);
684 musb_writeb(mbase, MUSB_TESTMODE,
689 case MUSB_EP0_STAGE_STATUSOUT:
690 /* end of sequence #1: write to host (TX state) */
692 struct usb_request *req;
694 req = next_ep0_request(musb);
696 musb_g_ep0_giveback(musb, req);
698 retval = IRQ_HANDLED;
699 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
702 case MUSB_EP0_STAGE_SETUP:
703 if (csr & MUSB_CSR0_RXPKTRDY) {
704 struct usb_ctrlrequest setup;
708 ERR("SETUP packet len %d != 8 ?\n", len);
711 musb_read_setup(musb, &setup);
712 retval = IRQ_HANDLED;
714 /* sometimes the RESET won't be reported */
715 if (unlikely(musb->g.speed == USB_SPEED_UNKNOWN)) {
718 printk(KERN_NOTICE "%s: peripheral reset "
721 power = musb_readb(mbase, MUSB_POWER);
722 musb->g.speed = (power & MUSB_POWER_HSMODE)
723 ? USB_SPEED_HIGH : USB_SPEED_FULL;
727 switch (musb->ep0_state) {
729 /* sequence #3 (no data stage), includes requests
730 * we can't forward (notably SET_ADDRESS and the
731 * device/endpoint feature set/clear operations)
732 * plus SET_CONFIGURATION and others we must
734 case MUSB_EP0_STAGE_ACKWAIT:
735 handled = service_zero_data_request(
738 /* status stage might be immediate */
740 musb->ackpend |= MUSB_CSR0_P_DATAEND;
742 MUSB_EP0_STAGE_STATUSIN;
746 /* sequence #1 (IN to host), includes GET_STATUS
747 * requests that we can't forward, GET_DESCRIPTOR
748 * and others that we must
750 case MUSB_EP0_STAGE_TX:
751 handled = service_in_request(musb, &setup);
753 musb->ackpend = MUSB_CSR0_TXPKTRDY
754 | MUSB_CSR0_P_DATAEND;
756 MUSB_EP0_STAGE_STATUSOUT;
760 /* sequence #2 (OUT from host), always forward */
761 default: /* MUSB_EP0_STAGE_RX */
765 DBG(3, "handled %d, csr %04x, ep0stage %s\n",
767 decode_ep0stage(musb->ep0_state));
769 /* unless we need to delegate this to the gadget
770 * driver, we know how to wrap this up: csr0 has
771 * not yet been written.
775 else if (handled > 0)
778 handled = forward_to_driver(musb, &setup);
780 musb_ep_select(mbase, 0);
782 DBG(3, "stall (%d)\n", handled);
783 musb->ackpend |= MUSB_CSR0_P_SENDSTALL;
784 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
786 musb_writew(regs, MUSB_CSR0,
793 case MUSB_EP0_STAGE_ACKWAIT:
794 /* This should not happen. But happens with tusb6010 with
795 * g_file_storage and high speed. Do nothing.
797 retval = IRQ_HANDLED;
803 musb_writew(regs, MUSB_CSR0, MUSB_CSR0_P_SENDSTALL);
804 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
813 musb_g_ep0_enable(struct usb_ep *ep, const struct usb_endpoint_descriptor *desc)
819 static int musb_g_ep0_disable(struct usb_ep *e)
826 musb_g_ep0_queue(struct usb_ep *e, struct usb_request *r, gfp_t gfp_flags)
829 struct musb_request *req;
832 unsigned long lockflags;
840 regs = musb->control_ep->regs;
842 req = to_musb_request(r);
844 req->request.actual = 0;
845 req->request.status = -EINPROGRESS;
848 spin_lock_irqsave(&musb->lock, lockflags);
850 if (!list_empty(&ep->req_list)) {
855 switch (musb->ep0_state) {
856 case MUSB_EP0_STAGE_RX: /* control-OUT data */
857 case MUSB_EP0_STAGE_TX: /* control-IN data */
858 case MUSB_EP0_STAGE_ACKWAIT: /* zero-length data */
862 DBG(1, "ep0 request queued in state %d\n",
868 /* add request to the list */
869 list_add_tail(&(req->request.list), &(ep->req_list));
871 DBG(3, "queue to %s (%s), length=%d\n",
872 ep->name, ep->is_in ? "IN/TX" : "OUT/RX",
873 req->request.length);
875 musb_ep_select(musb->mregs, 0);
877 /* sequence #1, IN ... start writing the data */
878 if (musb->ep0_state == MUSB_EP0_STAGE_TX)
881 /* sequence #3, no-data ... issue IN status */
882 else if (musb->ep0_state == MUSB_EP0_STAGE_ACKWAIT) {
883 if (req->request.length)
886 musb->ep0_state = MUSB_EP0_STAGE_STATUSIN;
887 musb_writew(regs, MUSB_CSR0,
888 musb->ackpend | MUSB_CSR0_P_DATAEND);
890 musb_g_ep0_giveback(ep->musb, r);
893 /* else for sequence #2 (OUT), caller provides a buffer
894 * before the next packet arrives. deferred responses
895 * (after SETUP is acked) are racey.
897 } else if (musb->ackpend) {
898 musb_writew(regs, MUSB_CSR0, musb->ackpend);
903 spin_unlock_irqrestore(&musb->lock, lockflags);
907 static int musb_g_ep0_dequeue(struct usb_ep *ep, struct usb_request *req)
909 /* we just won't support this */
913 static int musb_g_ep0_halt(struct usb_ep *e, int value)
917 void __iomem *base, *regs;
928 regs = musb->control_ep->regs;
931 spin_lock_irqsave(&musb->lock, flags);
933 if (!list_empty(&ep->req_list)) {
938 musb_ep_select(base, 0);
941 switch (musb->ep0_state) {
943 /* Stalls are usually issued after parsing SETUP packet, either
944 * directly in irq context from setup() or else later.
946 case MUSB_EP0_STAGE_TX: /* control-IN data */
947 case MUSB_EP0_STAGE_ACKWAIT: /* STALL for zero-length data */
948 case MUSB_EP0_STAGE_RX: /* control-OUT data */
949 csr = musb_readw(regs, MUSB_CSR0);
952 /* It's also OK to issue stalls during callbacks when a non-empty
953 * DATA stage buffer has been read (or even written).
955 case MUSB_EP0_STAGE_STATUSIN: /* control-OUT status */
956 case MUSB_EP0_STAGE_STATUSOUT: /* control-IN status */
958 csr |= MUSB_CSR0_P_SENDSTALL;
959 musb_writew(regs, MUSB_CSR0, csr);
960 musb->ep0_state = MUSB_EP0_STAGE_SETUP;
964 DBG(1, "ep0 can't halt in state %d\n", musb->ep0_state);
969 spin_unlock_irqrestore(&musb->lock, flags);
973 const struct usb_ep_ops musb_g_ep0_ops = {
974 .enable = musb_g_ep0_enable,
975 .disable = musb_g_ep0_disable,
976 .alloc_request = musb_alloc_request,
977 .free_request = musb_free_request,
978 .queue = musb_g_ep0_queue,
979 .dequeue = musb_g_ep0_dequeue,
980 .set_halt = musb_g_ep0_halt,