147a1685fSDinh Nguyen /** 247a1685fSDinh Nguyen * Copyright (c) 2011 Samsung Electronics Co., Ltd. 347a1685fSDinh Nguyen * http://www.samsung.com 447a1685fSDinh Nguyen * 547a1685fSDinh Nguyen * Copyright 2008 Openmoko, Inc. 647a1685fSDinh Nguyen * Copyright 2008 Simtec Electronics 747a1685fSDinh Nguyen * Ben Dooks <ben@simtec.co.uk> 847a1685fSDinh Nguyen * http://armlinux.simtec.co.uk/ 947a1685fSDinh Nguyen * 1047a1685fSDinh Nguyen * S3C USB2.0 High-speed / OtG driver 1147a1685fSDinh Nguyen * 1247a1685fSDinh Nguyen * This program is free software; you can redistribute it and/or modify 1347a1685fSDinh Nguyen * it under the terms of the GNU General Public License version 2 as 1447a1685fSDinh Nguyen * published by the Free Software Foundation. 1547a1685fSDinh Nguyen */ 1647a1685fSDinh Nguyen 1747a1685fSDinh Nguyen #include <linux/kernel.h> 1847a1685fSDinh Nguyen #include <linux/module.h> 1947a1685fSDinh Nguyen #include <linux/spinlock.h> 2047a1685fSDinh Nguyen #include <linux/interrupt.h> 2147a1685fSDinh Nguyen #include <linux/platform_device.h> 2247a1685fSDinh Nguyen #include <linux/dma-mapping.h> 237ad8096eSMarek Szyprowski #include <linux/mutex.h> 2447a1685fSDinh Nguyen #include <linux/seq_file.h> 2547a1685fSDinh Nguyen #include <linux/delay.h> 2647a1685fSDinh Nguyen #include <linux/io.h> 2747a1685fSDinh Nguyen #include <linux/slab.h> 2847a1685fSDinh Nguyen #include <linux/clk.h> 2947a1685fSDinh Nguyen #include <linux/regulator/consumer.h> 3047a1685fSDinh Nguyen #include <linux/of_platform.h> 3147a1685fSDinh Nguyen #include <linux/phy/phy.h> 3247a1685fSDinh Nguyen 3347a1685fSDinh Nguyen #include <linux/usb/ch9.h> 3447a1685fSDinh Nguyen #include <linux/usb/gadget.h> 3547a1685fSDinh Nguyen #include <linux/usb/phy.h> 3647a1685fSDinh Nguyen #include <linux/platform_data/s3c-hsotg.h> 3747a1685fSDinh Nguyen 38f7c0b143SDinh Nguyen #include "core.h" 39941fcce4SDinh Nguyen #include "hw.h" 4047a1685fSDinh Nguyen 4147a1685fSDinh Nguyen /* conversion functions */ 421f91b4ccSFelipe Balbi static inline struct dwc2_hsotg_req *our_req(struct usb_request *req) 4347a1685fSDinh Nguyen { 441f91b4ccSFelipe Balbi return container_of(req, struct dwc2_hsotg_req, req); 4547a1685fSDinh Nguyen } 4647a1685fSDinh Nguyen 471f91b4ccSFelipe Balbi static inline struct dwc2_hsotg_ep *our_ep(struct usb_ep *ep) 4847a1685fSDinh Nguyen { 491f91b4ccSFelipe Balbi return container_of(ep, struct dwc2_hsotg_ep, ep); 5047a1685fSDinh Nguyen } 5147a1685fSDinh Nguyen 52941fcce4SDinh Nguyen static inline struct dwc2_hsotg *to_hsotg(struct usb_gadget *gadget) 5347a1685fSDinh Nguyen { 54941fcce4SDinh Nguyen return container_of(gadget, struct dwc2_hsotg, gadget); 5547a1685fSDinh Nguyen } 5647a1685fSDinh Nguyen 5747a1685fSDinh Nguyen static inline void __orr32(void __iomem *ptr, u32 val) 5847a1685fSDinh Nguyen { 5995c8bc36SAntti Seppälä dwc2_writel(dwc2_readl(ptr) | val, ptr); 6047a1685fSDinh Nguyen } 6147a1685fSDinh Nguyen 6247a1685fSDinh Nguyen static inline void __bic32(void __iomem *ptr, u32 val) 6347a1685fSDinh Nguyen { 6495c8bc36SAntti Seppälä dwc2_writel(dwc2_readl(ptr) & ~val, ptr); 6547a1685fSDinh Nguyen } 6647a1685fSDinh Nguyen 671f91b4ccSFelipe Balbi static inline struct dwc2_hsotg_ep *index_to_ep(struct dwc2_hsotg *hsotg, 68c6f5c050SMian Yousaf Kaukab u32 ep_index, u32 dir_in) 69c6f5c050SMian Yousaf Kaukab { 70c6f5c050SMian Yousaf Kaukab if (dir_in) 71c6f5c050SMian Yousaf Kaukab return hsotg->eps_in[ep_index]; 72c6f5c050SMian Yousaf Kaukab else 73c6f5c050SMian Yousaf Kaukab return hsotg->eps_out[ep_index]; 74c6f5c050SMian Yousaf Kaukab } 75c6f5c050SMian Yousaf Kaukab 76997f4f81SMickael Maison /* forward declaration of functions */ 771f91b4ccSFelipe Balbi static void dwc2_hsotg_dump(struct dwc2_hsotg *hsotg); 7847a1685fSDinh Nguyen 7947a1685fSDinh Nguyen /** 8047a1685fSDinh Nguyen * using_dma - return the DMA status of the driver. 8147a1685fSDinh Nguyen * @hsotg: The driver state. 8247a1685fSDinh Nguyen * 8347a1685fSDinh Nguyen * Return true if we're using DMA. 8447a1685fSDinh Nguyen * 8547a1685fSDinh Nguyen * Currently, we have the DMA support code worked into everywhere 8647a1685fSDinh Nguyen * that needs it, but the AMBA DMA implementation in the hardware can 8747a1685fSDinh Nguyen * only DMA from 32bit aligned addresses. This means that gadgets such 8847a1685fSDinh Nguyen * as the CDC Ethernet cannot work as they often pass packets which are 8947a1685fSDinh Nguyen * not 32bit aligned. 9047a1685fSDinh Nguyen * 9147a1685fSDinh Nguyen * Unfortunately the choice to use DMA or not is global to the controller 9247a1685fSDinh Nguyen * and seems to be only settable when the controller is being put through 9347a1685fSDinh Nguyen * a core reset. This means we either need to fix the gadgets to take 9447a1685fSDinh Nguyen * account of DMA alignment, or add bounce buffers (yuerk). 9547a1685fSDinh Nguyen * 96edd74be8SGregory Herrero * g_using_dma is set depending on dts flag. 9747a1685fSDinh Nguyen */ 98941fcce4SDinh Nguyen static inline bool using_dma(struct dwc2_hsotg *hsotg) 9947a1685fSDinh Nguyen { 100edd74be8SGregory Herrero return hsotg->g_using_dma; 10147a1685fSDinh Nguyen } 10247a1685fSDinh Nguyen 10347a1685fSDinh Nguyen /** 1041f91b4ccSFelipe Balbi * dwc2_hsotg_en_gsint - enable one or more of the general interrupt 10547a1685fSDinh Nguyen * @hsotg: The device state 10647a1685fSDinh Nguyen * @ints: A bitmask of the interrupts to enable 10747a1685fSDinh Nguyen */ 1081f91b4ccSFelipe Balbi static void dwc2_hsotg_en_gsint(struct dwc2_hsotg *hsotg, u32 ints) 10947a1685fSDinh Nguyen { 11095c8bc36SAntti Seppälä u32 gsintmsk = dwc2_readl(hsotg->regs + GINTMSK); 11147a1685fSDinh Nguyen u32 new_gsintmsk; 11247a1685fSDinh Nguyen 11347a1685fSDinh Nguyen new_gsintmsk = gsintmsk | ints; 11447a1685fSDinh Nguyen 11547a1685fSDinh Nguyen if (new_gsintmsk != gsintmsk) { 11647a1685fSDinh Nguyen dev_dbg(hsotg->dev, "gsintmsk now 0x%08x\n", new_gsintmsk); 11795c8bc36SAntti Seppälä dwc2_writel(new_gsintmsk, hsotg->regs + GINTMSK); 11847a1685fSDinh Nguyen } 11947a1685fSDinh Nguyen } 12047a1685fSDinh Nguyen 12147a1685fSDinh Nguyen /** 1221f91b4ccSFelipe Balbi * dwc2_hsotg_disable_gsint - disable one or more of the general interrupt 12347a1685fSDinh Nguyen * @hsotg: The device state 12447a1685fSDinh Nguyen * @ints: A bitmask of the interrupts to enable 12547a1685fSDinh Nguyen */ 1261f91b4ccSFelipe Balbi static void dwc2_hsotg_disable_gsint(struct dwc2_hsotg *hsotg, u32 ints) 12747a1685fSDinh Nguyen { 12895c8bc36SAntti Seppälä u32 gsintmsk = dwc2_readl(hsotg->regs + GINTMSK); 12947a1685fSDinh Nguyen u32 new_gsintmsk; 13047a1685fSDinh Nguyen 13147a1685fSDinh Nguyen new_gsintmsk = gsintmsk & ~ints; 13247a1685fSDinh Nguyen 13347a1685fSDinh Nguyen if (new_gsintmsk != gsintmsk) 13495c8bc36SAntti Seppälä dwc2_writel(new_gsintmsk, hsotg->regs + GINTMSK); 13547a1685fSDinh Nguyen } 13647a1685fSDinh Nguyen 13747a1685fSDinh Nguyen /** 1381f91b4ccSFelipe Balbi * dwc2_hsotg_ctrl_epint - enable/disable an endpoint irq 13947a1685fSDinh Nguyen * @hsotg: The device state 14047a1685fSDinh Nguyen * @ep: The endpoint index 14147a1685fSDinh Nguyen * @dir_in: True if direction is in. 14247a1685fSDinh Nguyen * @en: The enable value, true to enable 14347a1685fSDinh Nguyen * 14447a1685fSDinh Nguyen * Set or clear the mask for an individual endpoint's interrupt 14547a1685fSDinh Nguyen * request. 14647a1685fSDinh Nguyen */ 1471f91b4ccSFelipe Balbi static void dwc2_hsotg_ctrl_epint(struct dwc2_hsotg *hsotg, 14847a1685fSDinh Nguyen unsigned int ep, unsigned int dir_in, 14947a1685fSDinh Nguyen unsigned int en) 15047a1685fSDinh Nguyen { 15147a1685fSDinh Nguyen unsigned long flags; 15247a1685fSDinh Nguyen u32 bit = 1 << ep; 15347a1685fSDinh Nguyen u32 daint; 15447a1685fSDinh Nguyen 15547a1685fSDinh Nguyen if (!dir_in) 15647a1685fSDinh Nguyen bit <<= 16; 15747a1685fSDinh Nguyen 15847a1685fSDinh Nguyen local_irq_save(flags); 15995c8bc36SAntti Seppälä daint = dwc2_readl(hsotg->regs + DAINTMSK); 16047a1685fSDinh Nguyen if (en) 16147a1685fSDinh Nguyen daint |= bit; 16247a1685fSDinh Nguyen else 16347a1685fSDinh Nguyen daint &= ~bit; 16495c8bc36SAntti Seppälä dwc2_writel(daint, hsotg->regs + DAINTMSK); 16547a1685fSDinh Nguyen local_irq_restore(flags); 16647a1685fSDinh Nguyen } 16747a1685fSDinh Nguyen 16847a1685fSDinh Nguyen /** 1691f91b4ccSFelipe Balbi * dwc2_hsotg_init_fifo - initialise non-periodic FIFOs 17047a1685fSDinh Nguyen * @hsotg: The device instance. 17147a1685fSDinh Nguyen */ 1721f91b4ccSFelipe Balbi static void dwc2_hsotg_init_fifo(struct dwc2_hsotg *hsotg) 17347a1685fSDinh Nguyen { 17447a1685fSDinh Nguyen unsigned int ep; 17547a1685fSDinh Nguyen unsigned int addr; 17647a1685fSDinh Nguyen int timeout; 17747a1685fSDinh Nguyen u32 val; 17847a1685fSDinh Nguyen 1797fcbc95cSGregory Herrero /* Reset fifo map if not correctly cleared during previous session */ 1807fcbc95cSGregory Herrero WARN_ON(hsotg->fifo_map); 1817fcbc95cSGregory Herrero hsotg->fifo_map = 0; 1827fcbc95cSGregory Herrero 1830a176279SGregory Herrero /* set RX/NPTX FIFO sizes */ 18495c8bc36SAntti Seppälä dwc2_writel(hsotg->g_rx_fifo_sz, hsotg->regs + GRXFSIZ); 18595c8bc36SAntti Seppälä dwc2_writel((hsotg->g_rx_fifo_sz << FIFOSIZE_STARTADDR_SHIFT) | 1860a176279SGregory Herrero (hsotg->g_np_g_tx_fifo_sz << FIFOSIZE_DEPTH_SHIFT), 1870a176279SGregory Herrero hsotg->regs + GNPTXFSIZ); 18847a1685fSDinh Nguyen 18947a1685fSDinh Nguyen /* 19047a1685fSDinh Nguyen * arange all the rest of the TX FIFOs, as some versions of this 19147a1685fSDinh Nguyen * block have overlapping default addresses. This also ensures 19247a1685fSDinh Nguyen * that if the settings have been changed, then they are set to 19347a1685fSDinh Nguyen * known values. 19447a1685fSDinh Nguyen */ 19547a1685fSDinh Nguyen 19647a1685fSDinh Nguyen /* start at the end of the GNPTXFSIZ, rounded up */ 1970a176279SGregory Herrero addr = hsotg->g_rx_fifo_sz + hsotg->g_np_g_tx_fifo_sz; 19847a1685fSDinh Nguyen 19947a1685fSDinh Nguyen /* 2000a176279SGregory Herrero * Configure fifos sizes from provided configuration and assign 201b203d0a2SRobert Baldyga * them to endpoints dynamically according to maxpacket size value of 202b203d0a2SRobert Baldyga * given endpoint. 20347a1685fSDinh Nguyen */ 2040a176279SGregory Herrero for (ep = 1; ep < MAX_EPS_CHANNELS; ep++) { 2050a176279SGregory Herrero if (!hsotg->g_tx_fifo_sz[ep]) 2060a176279SGregory Herrero continue; 207b203d0a2SRobert Baldyga val = addr; 2080a176279SGregory Herrero val |= hsotg->g_tx_fifo_sz[ep] << FIFOSIZE_DEPTH_SHIFT; 2090a176279SGregory Herrero WARN_ONCE(addr + hsotg->g_tx_fifo_sz[ep] > hsotg->fifo_mem, 210b203d0a2SRobert Baldyga "insufficient fifo memory"); 2110a176279SGregory Herrero addr += hsotg->g_tx_fifo_sz[ep]; 21247a1685fSDinh Nguyen 21395c8bc36SAntti Seppälä dwc2_writel(val, hsotg->regs + DPTXFSIZN(ep)); 21447a1685fSDinh Nguyen } 21547a1685fSDinh Nguyen 21647a1685fSDinh Nguyen /* 21747a1685fSDinh Nguyen * according to p428 of the design guide, we need to ensure that 21847a1685fSDinh Nguyen * all fifos are flushed before continuing 21947a1685fSDinh Nguyen */ 22047a1685fSDinh Nguyen 22195c8bc36SAntti Seppälä dwc2_writel(GRSTCTL_TXFNUM(0x10) | GRSTCTL_TXFFLSH | 22247a1685fSDinh Nguyen GRSTCTL_RXFFLSH, hsotg->regs + GRSTCTL); 22347a1685fSDinh Nguyen 22447a1685fSDinh Nguyen /* wait until the fifos are both flushed */ 22547a1685fSDinh Nguyen timeout = 100; 22647a1685fSDinh Nguyen while (1) { 22795c8bc36SAntti Seppälä val = dwc2_readl(hsotg->regs + GRSTCTL); 22847a1685fSDinh Nguyen 22947a1685fSDinh Nguyen if ((val & (GRSTCTL_TXFFLSH | GRSTCTL_RXFFLSH)) == 0) 23047a1685fSDinh Nguyen break; 23147a1685fSDinh Nguyen 23247a1685fSDinh Nguyen if (--timeout == 0) { 23347a1685fSDinh Nguyen dev_err(hsotg->dev, 23447a1685fSDinh Nguyen "%s: timeout flushing fifos (GRSTCTL=%08x)\n", 23547a1685fSDinh Nguyen __func__, val); 23648b20bcbSGregory Herrero break; 23747a1685fSDinh Nguyen } 23847a1685fSDinh Nguyen 23947a1685fSDinh Nguyen udelay(1); 24047a1685fSDinh Nguyen } 24147a1685fSDinh Nguyen 24247a1685fSDinh Nguyen dev_dbg(hsotg->dev, "FIFOs reset, timeout at %d\n", timeout); 24347a1685fSDinh Nguyen } 24447a1685fSDinh Nguyen 24547a1685fSDinh Nguyen /** 24647a1685fSDinh Nguyen * @ep: USB endpoint to allocate request for. 24747a1685fSDinh Nguyen * @flags: Allocation flags 24847a1685fSDinh Nguyen * 24947a1685fSDinh Nguyen * Allocate a new USB request structure appropriate for the specified endpoint 25047a1685fSDinh Nguyen */ 2511f91b4ccSFelipe Balbi static struct usb_request *dwc2_hsotg_ep_alloc_request(struct usb_ep *ep, 25247a1685fSDinh Nguyen gfp_t flags) 25347a1685fSDinh Nguyen { 2541f91b4ccSFelipe Balbi struct dwc2_hsotg_req *req; 25547a1685fSDinh Nguyen 2561f91b4ccSFelipe Balbi req = kzalloc(sizeof(struct dwc2_hsotg_req), flags); 25747a1685fSDinh Nguyen if (!req) 25847a1685fSDinh Nguyen return NULL; 25947a1685fSDinh Nguyen 26047a1685fSDinh Nguyen INIT_LIST_HEAD(&req->queue); 26147a1685fSDinh Nguyen 26247a1685fSDinh Nguyen return &req->req; 26347a1685fSDinh Nguyen } 26447a1685fSDinh Nguyen 26547a1685fSDinh Nguyen /** 26647a1685fSDinh Nguyen * is_ep_periodic - return true if the endpoint is in periodic mode. 26747a1685fSDinh Nguyen * @hs_ep: The endpoint to query. 26847a1685fSDinh Nguyen * 26947a1685fSDinh Nguyen * Returns true if the endpoint is in periodic mode, meaning it is being 27047a1685fSDinh Nguyen * used for an Interrupt or ISO transfer. 27147a1685fSDinh Nguyen */ 2721f91b4ccSFelipe Balbi static inline int is_ep_periodic(struct dwc2_hsotg_ep *hs_ep) 27347a1685fSDinh Nguyen { 27447a1685fSDinh Nguyen return hs_ep->periodic; 27547a1685fSDinh Nguyen } 27647a1685fSDinh Nguyen 27747a1685fSDinh Nguyen /** 2781f91b4ccSFelipe Balbi * dwc2_hsotg_unmap_dma - unmap the DMA memory being used for the request 27947a1685fSDinh Nguyen * @hsotg: The device state. 28047a1685fSDinh Nguyen * @hs_ep: The endpoint for the request 28147a1685fSDinh Nguyen * @hs_req: The request being processed. 28247a1685fSDinh Nguyen * 2831f91b4ccSFelipe Balbi * This is the reverse of dwc2_hsotg_map_dma(), called for the completion 28447a1685fSDinh Nguyen * of a request to ensure the buffer is ready for access by the caller. 28547a1685fSDinh Nguyen */ 2861f91b4ccSFelipe Balbi static void dwc2_hsotg_unmap_dma(struct dwc2_hsotg *hsotg, 2871f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep, 2881f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req) 28947a1685fSDinh Nguyen { 29047a1685fSDinh Nguyen struct usb_request *req = &hs_req->req; 29147a1685fSDinh Nguyen 29247a1685fSDinh Nguyen /* ignore this if we're not moving any data */ 29347a1685fSDinh Nguyen if (hs_req->req.length == 0) 29447a1685fSDinh Nguyen return; 29547a1685fSDinh Nguyen 29647a1685fSDinh Nguyen usb_gadget_unmap_request(&hsotg->gadget, req, hs_ep->dir_in); 29747a1685fSDinh Nguyen } 29847a1685fSDinh Nguyen 29947a1685fSDinh Nguyen /** 3001f91b4ccSFelipe Balbi * dwc2_hsotg_write_fifo - write packet Data to the TxFIFO 30147a1685fSDinh Nguyen * @hsotg: The controller state. 30247a1685fSDinh Nguyen * @hs_ep: The endpoint we're going to write for. 30347a1685fSDinh Nguyen * @hs_req: The request to write data for. 30447a1685fSDinh Nguyen * 30547a1685fSDinh Nguyen * This is called when the TxFIFO has some space in it to hold a new 30647a1685fSDinh Nguyen * transmission and we have something to give it. The actual setup of 30747a1685fSDinh Nguyen * the data size is done elsewhere, so all we have to do is to actually 30847a1685fSDinh Nguyen * write the data. 30947a1685fSDinh Nguyen * 31047a1685fSDinh Nguyen * The return value is zero if there is more space (or nothing was done) 31147a1685fSDinh Nguyen * otherwise -ENOSPC is returned if the FIFO space was used up. 31247a1685fSDinh Nguyen * 31347a1685fSDinh Nguyen * This routine is only needed for PIO 31447a1685fSDinh Nguyen */ 3151f91b4ccSFelipe Balbi static int dwc2_hsotg_write_fifo(struct dwc2_hsotg *hsotg, 3161f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep, 3171f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req) 31847a1685fSDinh Nguyen { 31947a1685fSDinh Nguyen bool periodic = is_ep_periodic(hs_ep); 32095c8bc36SAntti Seppälä u32 gnptxsts = dwc2_readl(hsotg->regs + GNPTXSTS); 32147a1685fSDinh Nguyen int buf_pos = hs_req->req.actual; 32247a1685fSDinh Nguyen int to_write = hs_ep->size_loaded; 32347a1685fSDinh Nguyen void *data; 32447a1685fSDinh Nguyen int can_write; 32547a1685fSDinh Nguyen int pkt_round; 32647a1685fSDinh Nguyen int max_transfer; 32747a1685fSDinh Nguyen 32847a1685fSDinh Nguyen to_write -= (buf_pos - hs_ep->last_load); 32947a1685fSDinh Nguyen 33047a1685fSDinh Nguyen /* if there's nothing to write, get out early */ 33147a1685fSDinh Nguyen if (to_write == 0) 33247a1685fSDinh Nguyen return 0; 33347a1685fSDinh Nguyen 33447a1685fSDinh Nguyen if (periodic && !hsotg->dedicated_fifos) { 33595c8bc36SAntti Seppälä u32 epsize = dwc2_readl(hsotg->regs + DIEPTSIZ(hs_ep->index)); 33647a1685fSDinh Nguyen int size_left; 33747a1685fSDinh Nguyen int size_done; 33847a1685fSDinh Nguyen 33947a1685fSDinh Nguyen /* 34047a1685fSDinh Nguyen * work out how much data was loaded so we can calculate 34147a1685fSDinh Nguyen * how much data is left in the fifo. 34247a1685fSDinh Nguyen */ 34347a1685fSDinh Nguyen 34447a1685fSDinh Nguyen size_left = DXEPTSIZ_XFERSIZE_GET(epsize); 34547a1685fSDinh Nguyen 34647a1685fSDinh Nguyen /* 34747a1685fSDinh Nguyen * if shared fifo, we cannot write anything until the 34847a1685fSDinh Nguyen * previous data has been completely sent. 34947a1685fSDinh Nguyen */ 35047a1685fSDinh Nguyen if (hs_ep->fifo_load != 0) { 3511f91b4ccSFelipe Balbi dwc2_hsotg_en_gsint(hsotg, GINTSTS_PTXFEMP); 35247a1685fSDinh Nguyen return -ENOSPC; 35347a1685fSDinh Nguyen } 35447a1685fSDinh Nguyen 35547a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: left=%d, load=%d, fifo=%d, size %d\n", 35647a1685fSDinh Nguyen __func__, size_left, 35747a1685fSDinh Nguyen hs_ep->size_loaded, hs_ep->fifo_load, hs_ep->fifo_size); 35847a1685fSDinh Nguyen 35947a1685fSDinh Nguyen /* how much of the data has moved */ 36047a1685fSDinh Nguyen size_done = hs_ep->size_loaded - size_left; 36147a1685fSDinh Nguyen 36247a1685fSDinh Nguyen /* how much data is left in the fifo */ 36347a1685fSDinh Nguyen can_write = hs_ep->fifo_load - size_done; 36447a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: => can_write1=%d\n", 36547a1685fSDinh Nguyen __func__, can_write); 36647a1685fSDinh Nguyen 36747a1685fSDinh Nguyen can_write = hs_ep->fifo_size - can_write; 36847a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: => can_write2=%d\n", 36947a1685fSDinh Nguyen __func__, can_write); 37047a1685fSDinh Nguyen 37147a1685fSDinh Nguyen if (can_write <= 0) { 3721f91b4ccSFelipe Balbi dwc2_hsotg_en_gsint(hsotg, GINTSTS_PTXFEMP); 37347a1685fSDinh Nguyen return -ENOSPC; 37447a1685fSDinh Nguyen } 37547a1685fSDinh Nguyen } else if (hsotg->dedicated_fifos && hs_ep->index != 0) { 37695c8bc36SAntti Seppälä can_write = dwc2_readl(hsotg->regs + DTXFSTS(hs_ep->index)); 37747a1685fSDinh Nguyen 37847a1685fSDinh Nguyen can_write &= 0xffff; 37947a1685fSDinh Nguyen can_write *= 4; 38047a1685fSDinh Nguyen } else { 38147a1685fSDinh Nguyen if (GNPTXSTS_NP_TXQ_SPC_AVAIL_GET(gnptxsts) == 0) { 38247a1685fSDinh Nguyen dev_dbg(hsotg->dev, 38347a1685fSDinh Nguyen "%s: no queue slots available (0x%08x)\n", 38447a1685fSDinh Nguyen __func__, gnptxsts); 38547a1685fSDinh Nguyen 3861f91b4ccSFelipe Balbi dwc2_hsotg_en_gsint(hsotg, GINTSTS_NPTXFEMP); 38747a1685fSDinh Nguyen return -ENOSPC; 38847a1685fSDinh Nguyen } 38947a1685fSDinh Nguyen 39047a1685fSDinh Nguyen can_write = GNPTXSTS_NP_TXF_SPC_AVAIL_GET(gnptxsts); 39147a1685fSDinh Nguyen can_write *= 4; /* fifo size is in 32bit quantities. */ 39247a1685fSDinh Nguyen } 39347a1685fSDinh Nguyen 39447a1685fSDinh Nguyen max_transfer = hs_ep->ep.maxpacket * hs_ep->mc; 39547a1685fSDinh Nguyen 39647a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: GNPTXSTS=%08x, can=%d, to=%d, max_transfer %d\n", 39747a1685fSDinh Nguyen __func__, gnptxsts, can_write, to_write, max_transfer); 39847a1685fSDinh Nguyen 39947a1685fSDinh Nguyen /* 40047a1685fSDinh Nguyen * limit to 512 bytes of data, it seems at least on the non-periodic 40147a1685fSDinh Nguyen * FIFO, requests of >512 cause the endpoint to get stuck with a 40247a1685fSDinh Nguyen * fragment of the end of the transfer in it. 40347a1685fSDinh Nguyen */ 40447a1685fSDinh Nguyen if (can_write > 512 && !periodic) 40547a1685fSDinh Nguyen can_write = 512; 40647a1685fSDinh Nguyen 40747a1685fSDinh Nguyen /* 40847a1685fSDinh Nguyen * limit the write to one max-packet size worth of data, but allow 40947a1685fSDinh Nguyen * the transfer to return that it did not run out of fifo space 41047a1685fSDinh Nguyen * doing it. 41147a1685fSDinh Nguyen */ 41247a1685fSDinh Nguyen if (to_write > max_transfer) { 41347a1685fSDinh Nguyen to_write = max_transfer; 41447a1685fSDinh Nguyen 41547a1685fSDinh Nguyen /* it's needed only when we do not use dedicated fifos */ 41647a1685fSDinh Nguyen if (!hsotg->dedicated_fifos) 4171f91b4ccSFelipe Balbi dwc2_hsotg_en_gsint(hsotg, 41847a1685fSDinh Nguyen periodic ? GINTSTS_PTXFEMP : 41947a1685fSDinh Nguyen GINTSTS_NPTXFEMP); 42047a1685fSDinh Nguyen } 42147a1685fSDinh Nguyen 42247a1685fSDinh Nguyen /* see if we can write data */ 42347a1685fSDinh Nguyen 42447a1685fSDinh Nguyen if (to_write > can_write) { 42547a1685fSDinh Nguyen to_write = can_write; 42647a1685fSDinh Nguyen pkt_round = to_write % max_transfer; 42747a1685fSDinh Nguyen 42847a1685fSDinh Nguyen /* 42947a1685fSDinh Nguyen * Round the write down to an 43047a1685fSDinh Nguyen * exact number of packets. 43147a1685fSDinh Nguyen * 43247a1685fSDinh Nguyen * Note, we do not currently check to see if we can ever 43347a1685fSDinh Nguyen * write a full packet or not to the FIFO. 43447a1685fSDinh Nguyen */ 43547a1685fSDinh Nguyen 43647a1685fSDinh Nguyen if (pkt_round) 43747a1685fSDinh Nguyen to_write -= pkt_round; 43847a1685fSDinh Nguyen 43947a1685fSDinh Nguyen /* 44047a1685fSDinh Nguyen * enable correct FIFO interrupt to alert us when there 44147a1685fSDinh Nguyen * is more room left. 44247a1685fSDinh Nguyen */ 44347a1685fSDinh Nguyen 44447a1685fSDinh Nguyen /* it's needed only when we do not use dedicated fifos */ 44547a1685fSDinh Nguyen if (!hsotg->dedicated_fifos) 4461f91b4ccSFelipe Balbi dwc2_hsotg_en_gsint(hsotg, 44747a1685fSDinh Nguyen periodic ? GINTSTS_PTXFEMP : 44847a1685fSDinh Nguyen GINTSTS_NPTXFEMP); 44947a1685fSDinh Nguyen } 45047a1685fSDinh Nguyen 45147a1685fSDinh Nguyen dev_dbg(hsotg->dev, "write %d/%d, can_write %d, done %d\n", 45247a1685fSDinh Nguyen to_write, hs_req->req.length, can_write, buf_pos); 45347a1685fSDinh Nguyen 45447a1685fSDinh Nguyen if (to_write <= 0) 45547a1685fSDinh Nguyen return -ENOSPC; 45647a1685fSDinh Nguyen 45747a1685fSDinh Nguyen hs_req->req.actual = buf_pos + to_write; 45847a1685fSDinh Nguyen hs_ep->total_data += to_write; 45947a1685fSDinh Nguyen 46047a1685fSDinh Nguyen if (periodic) 46147a1685fSDinh Nguyen hs_ep->fifo_load += to_write; 46247a1685fSDinh Nguyen 46347a1685fSDinh Nguyen to_write = DIV_ROUND_UP(to_write, 4); 46447a1685fSDinh Nguyen data = hs_req->req.buf + buf_pos; 46547a1685fSDinh Nguyen 46647a1685fSDinh Nguyen iowrite32_rep(hsotg->regs + EPFIFO(hs_ep->index), data, to_write); 46747a1685fSDinh Nguyen 46847a1685fSDinh Nguyen return (to_write >= can_write) ? -ENOSPC : 0; 46947a1685fSDinh Nguyen } 47047a1685fSDinh Nguyen 47147a1685fSDinh Nguyen /** 47247a1685fSDinh Nguyen * get_ep_limit - get the maximum data legnth for this endpoint 47347a1685fSDinh Nguyen * @hs_ep: The endpoint 47447a1685fSDinh Nguyen * 47547a1685fSDinh Nguyen * Return the maximum data that can be queued in one go on a given endpoint 47647a1685fSDinh Nguyen * so that transfers that are too long can be split. 47747a1685fSDinh Nguyen */ 4781f91b4ccSFelipe Balbi static unsigned get_ep_limit(struct dwc2_hsotg_ep *hs_ep) 47947a1685fSDinh Nguyen { 48047a1685fSDinh Nguyen int index = hs_ep->index; 48147a1685fSDinh Nguyen unsigned maxsize; 48247a1685fSDinh Nguyen unsigned maxpkt; 48347a1685fSDinh Nguyen 48447a1685fSDinh Nguyen if (index != 0) { 48547a1685fSDinh Nguyen maxsize = DXEPTSIZ_XFERSIZE_LIMIT + 1; 48647a1685fSDinh Nguyen maxpkt = DXEPTSIZ_PKTCNT_LIMIT + 1; 48747a1685fSDinh Nguyen } else { 48847a1685fSDinh Nguyen maxsize = 64+64; 48947a1685fSDinh Nguyen if (hs_ep->dir_in) 49047a1685fSDinh Nguyen maxpkt = DIEPTSIZ0_PKTCNT_LIMIT + 1; 49147a1685fSDinh Nguyen else 49247a1685fSDinh Nguyen maxpkt = 2; 49347a1685fSDinh Nguyen } 49447a1685fSDinh Nguyen 49547a1685fSDinh Nguyen /* we made the constant loading easier above by using +1 */ 49647a1685fSDinh Nguyen maxpkt--; 49747a1685fSDinh Nguyen maxsize--; 49847a1685fSDinh Nguyen 49947a1685fSDinh Nguyen /* 50047a1685fSDinh Nguyen * constrain by packet count if maxpkts*pktsize is greater 50147a1685fSDinh Nguyen * than the length register size. 50247a1685fSDinh Nguyen */ 50347a1685fSDinh Nguyen 50447a1685fSDinh Nguyen if ((maxpkt * hs_ep->ep.maxpacket) < maxsize) 50547a1685fSDinh Nguyen maxsize = maxpkt * hs_ep->ep.maxpacket; 50647a1685fSDinh Nguyen 50747a1685fSDinh Nguyen return maxsize; 50847a1685fSDinh Nguyen } 50947a1685fSDinh Nguyen 51047a1685fSDinh Nguyen /** 5111f91b4ccSFelipe Balbi * dwc2_hsotg_start_req - start a USB request from an endpoint's queue 51247a1685fSDinh Nguyen * @hsotg: The controller state. 51347a1685fSDinh Nguyen * @hs_ep: The endpoint to process a request for 51447a1685fSDinh Nguyen * @hs_req: The request to start. 51547a1685fSDinh Nguyen * @continuing: True if we are doing more for the current request. 51647a1685fSDinh Nguyen * 51747a1685fSDinh Nguyen * Start the given request running by setting the endpoint registers 51847a1685fSDinh Nguyen * appropriately, and writing any data to the FIFOs. 51947a1685fSDinh Nguyen */ 5201f91b4ccSFelipe Balbi static void dwc2_hsotg_start_req(struct dwc2_hsotg *hsotg, 5211f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep, 5221f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req, 52347a1685fSDinh Nguyen bool continuing) 52447a1685fSDinh Nguyen { 52547a1685fSDinh Nguyen struct usb_request *ureq = &hs_req->req; 52647a1685fSDinh Nguyen int index = hs_ep->index; 52747a1685fSDinh Nguyen int dir_in = hs_ep->dir_in; 52847a1685fSDinh Nguyen u32 epctrl_reg; 52947a1685fSDinh Nguyen u32 epsize_reg; 53047a1685fSDinh Nguyen u32 epsize; 53147a1685fSDinh Nguyen u32 ctrl; 53247a1685fSDinh Nguyen unsigned length; 53347a1685fSDinh Nguyen unsigned packets; 53447a1685fSDinh Nguyen unsigned maxreq; 53547a1685fSDinh Nguyen 53647a1685fSDinh Nguyen if (index != 0) { 53747a1685fSDinh Nguyen if (hs_ep->req && !continuing) { 53847a1685fSDinh Nguyen dev_err(hsotg->dev, "%s: active request\n", __func__); 53947a1685fSDinh Nguyen WARN_ON(1); 54047a1685fSDinh Nguyen return; 54147a1685fSDinh Nguyen } else if (hs_ep->req != hs_req && continuing) { 54247a1685fSDinh Nguyen dev_err(hsotg->dev, 54347a1685fSDinh Nguyen "%s: continue different req\n", __func__); 54447a1685fSDinh Nguyen WARN_ON(1); 54547a1685fSDinh Nguyen return; 54647a1685fSDinh Nguyen } 54747a1685fSDinh Nguyen } 54847a1685fSDinh Nguyen 54947a1685fSDinh Nguyen epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index); 55047a1685fSDinh Nguyen epsize_reg = dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index); 55147a1685fSDinh Nguyen 55247a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x, ep %d, dir %s\n", 55395c8bc36SAntti Seppälä __func__, dwc2_readl(hsotg->regs + epctrl_reg), index, 55447a1685fSDinh Nguyen hs_ep->dir_in ? "in" : "out"); 55547a1685fSDinh Nguyen 55647a1685fSDinh Nguyen /* If endpoint is stalled, we will restart request later */ 55795c8bc36SAntti Seppälä ctrl = dwc2_readl(hsotg->regs + epctrl_reg); 55847a1685fSDinh Nguyen 55947a1685fSDinh Nguyen if (ctrl & DXEPCTL_STALL) { 56047a1685fSDinh Nguyen dev_warn(hsotg->dev, "%s: ep%d is stalled\n", __func__, index); 56147a1685fSDinh Nguyen return; 56247a1685fSDinh Nguyen } 56347a1685fSDinh Nguyen 56447a1685fSDinh Nguyen length = ureq->length - ureq->actual; 56547a1685fSDinh Nguyen dev_dbg(hsotg->dev, "ureq->length:%d ureq->actual:%d\n", 56647a1685fSDinh Nguyen ureq->length, ureq->actual); 56747a1685fSDinh Nguyen 56847a1685fSDinh Nguyen maxreq = get_ep_limit(hs_ep); 56947a1685fSDinh Nguyen if (length > maxreq) { 57047a1685fSDinh Nguyen int round = maxreq % hs_ep->ep.maxpacket; 57147a1685fSDinh Nguyen 57247a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: length %d, max-req %d, r %d\n", 57347a1685fSDinh Nguyen __func__, length, maxreq, round); 57447a1685fSDinh Nguyen 57547a1685fSDinh Nguyen /* round down to multiple of packets */ 57647a1685fSDinh Nguyen if (round) 57747a1685fSDinh Nguyen maxreq -= round; 57847a1685fSDinh Nguyen 57947a1685fSDinh Nguyen length = maxreq; 58047a1685fSDinh Nguyen } 58147a1685fSDinh Nguyen 58247a1685fSDinh Nguyen if (length) 58347a1685fSDinh Nguyen packets = DIV_ROUND_UP(length, hs_ep->ep.maxpacket); 58447a1685fSDinh Nguyen else 58547a1685fSDinh Nguyen packets = 1; /* send one packet if length is zero. */ 58647a1685fSDinh Nguyen 58747a1685fSDinh Nguyen if (hs_ep->isochronous && length > (hs_ep->mc * hs_ep->ep.maxpacket)) { 58847a1685fSDinh Nguyen dev_err(hsotg->dev, "req length > maxpacket*mc\n"); 58947a1685fSDinh Nguyen return; 59047a1685fSDinh Nguyen } 59147a1685fSDinh Nguyen 59247a1685fSDinh Nguyen if (dir_in && index != 0) 59347a1685fSDinh Nguyen if (hs_ep->isochronous) 59447a1685fSDinh Nguyen epsize = DXEPTSIZ_MC(packets); 59547a1685fSDinh Nguyen else 59647a1685fSDinh Nguyen epsize = DXEPTSIZ_MC(1); 59747a1685fSDinh Nguyen else 59847a1685fSDinh Nguyen epsize = 0; 59947a1685fSDinh Nguyen 60047a1685fSDinh Nguyen /* 601f71b5e25SMian Yousaf Kaukab * zero length packet should be programmed on its own and should not 602f71b5e25SMian Yousaf Kaukab * be counted in DIEPTSIZ.PktCnt with other packets. 60347a1685fSDinh Nguyen */ 604f71b5e25SMian Yousaf Kaukab if (dir_in && ureq->zero && !continuing) { 605f71b5e25SMian Yousaf Kaukab /* Test if zlp is actually required. */ 606f71b5e25SMian Yousaf Kaukab if ((ureq->length >= hs_ep->ep.maxpacket) && 607f71b5e25SMian Yousaf Kaukab !(ureq->length % hs_ep->ep.maxpacket)) 6088a20fa45SMian Yousaf Kaukab hs_ep->send_zlp = 1; 60947a1685fSDinh Nguyen } 61047a1685fSDinh Nguyen 61147a1685fSDinh Nguyen epsize |= DXEPTSIZ_PKTCNT(packets); 61247a1685fSDinh Nguyen epsize |= DXEPTSIZ_XFERSIZE(length); 61347a1685fSDinh Nguyen 61447a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: %d@%d/%d, 0x%08x => 0x%08x\n", 61547a1685fSDinh Nguyen __func__, packets, length, ureq->length, epsize, epsize_reg); 61647a1685fSDinh Nguyen 61747a1685fSDinh Nguyen /* store the request as the current one we're doing */ 61847a1685fSDinh Nguyen hs_ep->req = hs_req; 61947a1685fSDinh Nguyen 62047a1685fSDinh Nguyen /* write size / packets */ 62195c8bc36SAntti Seppälä dwc2_writel(epsize, hsotg->regs + epsize_reg); 62247a1685fSDinh Nguyen 62347a1685fSDinh Nguyen if (using_dma(hsotg) && !continuing) { 62447a1685fSDinh Nguyen unsigned int dma_reg; 62547a1685fSDinh Nguyen 62647a1685fSDinh Nguyen /* 62747a1685fSDinh Nguyen * write DMA address to control register, buffer already 6281f91b4ccSFelipe Balbi * synced by dwc2_hsotg_ep_queue(). 62947a1685fSDinh Nguyen */ 63047a1685fSDinh Nguyen 63147a1685fSDinh Nguyen dma_reg = dir_in ? DIEPDMA(index) : DOEPDMA(index); 63295c8bc36SAntti Seppälä dwc2_writel(ureq->dma, hsotg->regs + dma_reg); 63347a1685fSDinh Nguyen 6340cc4cf6fSFabio Estevam dev_dbg(hsotg->dev, "%s: %pad => 0x%08x\n", 63547a1685fSDinh Nguyen __func__, &ureq->dma, dma_reg); 63647a1685fSDinh Nguyen } 63747a1685fSDinh Nguyen 63847a1685fSDinh Nguyen ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */ 63947a1685fSDinh Nguyen ctrl |= DXEPCTL_USBACTEP; 64047a1685fSDinh Nguyen 641fe0b94abSMian Yousaf Kaukab dev_dbg(hsotg->dev, "ep0 state:%d\n", hsotg->ep0_state); 64247a1685fSDinh Nguyen 64347a1685fSDinh Nguyen /* For Setup request do not clear NAK */ 644fe0b94abSMian Yousaf Kaukab if (!(index == 0 && hsotg->ep0_state == DWC2_EP0_SETUP)) 64547a1685fSDinh Nguyen ctrl |= DXEPCTL_CNAK; /* clear NAK set by core */ 64647a1685fSDinh Nguyen 64747a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl); 64895c8bc36SAntti Seppälä dwc2_writel(ctrl, hsotg->regs + epctrl_reg); 64947a1685fSDinh Nguyen 65047a1685fSDinh Nguyen /* 65147a1685fSDinh Nguyen * set these, it seems that DMA support increments past the end 65247a1685fSDinh Nguyen * of the packet buffer so we need to calculate the length from 65347a1685fSDinh Nguyen * this information. 65447a1685fSDinh Nguyen */ 65547a1685fSDinh Nguyen hs_ep->size_loaded = length; 65647a1685fSDinh Nguyen hs_ep->last_load = ureq->actual; 65747a1685fSDinh Nguyen 65847a1685fSDinh Nguyen if (dir_in && !using_dma(hsotg)) { 65947a1685fSDinh Nguyen /* set these anyway, we may need them for non-periodic in */ 66047a1685fSDinh Nguyen hs_ep->fifo_load = 0; 66147a1685fSDinh Nguyen 6621f91b4ccSFelipe Balbi dwc2_hsotg_write_fifo(hsotg, hs_ep, hs_req); 66347a1685fSDinh Nguyen } 66447a1685fSDinh Nguyen 66547a1685fSDinh Nguyen /* 66647a1685fSDinh Nguyen * clear the INTknTXFEmpMsk when we start request, more as a aide 66747a1685fSDinh Nguyen * to debugging to see what is going on. 66847a1685fSDinh Nguyen */ 66947a1685fSDinh Nguyen if (dir_in) 67095c8bc36SAntti Seppälä dwc2_writel(DIEPMSK_INTKNTXFEMPMSK, 67147a1685fSDinh Nguyen hsotg->regs + DIEPINT(index)); 67247a1685fSDinh Nguyen 67347a1685fSDinh Nguyen /* 67447a1685fSDinh Nguyen * Note, trying to clear the NAK here causes problems with transmit 67547a1685fSDinh Nguyen * on the S3C6400 ending up with the TXFIFO becoming full. 67647a1685fSDinh Nguyen */ 67747a1685fSDinh Nguyen 67847a1685fSDinh Nguyen /* check ep is enabled */ 67995c8bc36SAntti Seppälä if (!(dwc2_readl(hsotg->regs + epctrl_reg) & DXEPCTL_EPENA)) 6801a0ed863SMian Yousaf Kaukab dev_dbg(hsotg->dev, 68147a1685fSDinh Nguyen "ep%d: failed to become enabled (DXEPCTL=0x%08x)?\n", 68295c8bc36SAntti Seppälä index, dwc2_readl(hsotg->regs + epctrl_reg)); 68347a1685fSDinh Nguyen 68447a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: DXEPCTL=0x%08x\n", 68595c8bc36SAntti Seppälä __func__, dwc2_readl(hsotg->regs + epctrl_reg)); 68647a1685fSDinh Nguyen 68747a1685fSDinh Nguyen /* enable ep interrupts */ 6881f91b4ccSFelipe Balbi dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 1); 68947a1685fSDinh Nguyen } 69047a1685fSDinh Nguyen 69147a1685fSDinh Nguyen /** 6921f91b4ccSFelipe Balbi * dwc2_hsotg_map_dma - map the DMA memory being used for the request 69347a1685fSDinh Nguyen * @hsotg: The device state. 69447a1685fSDinh Nguyen * @hs_ep: The endpoint the request is on. 69547a1685fSDinh Nguyen * @req: The request being processed. 69647a1685fSDinh Nguyen * 69747a1685fSDinh Nguyen * We've been asked to queue a request, so ensure that the memory buffer 69847a1685fSDinh Nguyen * is correctly setup for DMA. If we've been passed an extant DMA address 69947a1685fSDinh Nguyen * then ensure the buffer has been synced to memory. If our buffer has no 70047a1685fSDinh Nguyen * DMA memory, then we map the memory and mark our request to allow us to 70147a1685fSDinh Nguyen * cleanup on completion. 70247a1685fSDinh Nguyen */ 7031f91b4ccSFelipe Balbi static int dwc2_hsotg_map_dma(struct dwc2_hsotg *hsotg, 7041f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep, 70547a1685fSDinh Nguyen struct usb_request *req) 70647a1685fSDinh Nguyen { 7071f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req = our_req(req); 70847a1685fSDinh Nguyen int ret; 70947a1685fSDinh Nguyen 71047a1685fSDinh Nguyen /* if the length is zero, ignore the DMA data */ 71147a1685fSDinh Nguyen if (hs_req->req.length == 0) 71247a1685fSDinh Nguyen return 0; 71347a1685fSDinh Nguyen 71447a1685fSDinh Nguyen ret = usb_gadget_map_request(&hsotg->gadget, req, hs_ep->dir_in); 71547a1685fSDinh Nguyen if (ret) 71647a1685fSDinh Nguyen goto dma_error; 71747a1685fSDinh Nguyen 71847a1685fSDinh Nguyen return 0; 71947a1685fSDinh Nguyen 72047a1685fSDinh Nguyen dma_error: 72147a1685fSDinh Nguyen dev_err(hsotg->dev, "%s: failed to map buffer %p, %d bytes\n", 72247a1685fSDinh Nguyen __func__, req->buf, req->length); 72347a1685fSDinh Nguyen 72447a1685fSDinh Nguyen return -EIO; 72547a1685fSDinh Nguyen } 72647a1685fSDinh Nguyen 7271f91b4ccSFelipe Balbi static int dwc2_hsotg_handle_unaligned_buf_start(struct dwc2_hsotg *hsotg, 7281f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep, struct dwc2_hsotg_req *hs_req) 7297d24c1b5SMian Yousaf Kaukab { 7307d24c1b5SMian Yousaf Kaukab void *req_buf = hs_req->req.buf; 7317d24c1b5SMian Yousaf Kaukab 7327d24c1b5SMian Yousaf Kaukab /* If dma is not being used or buffer is aligned */ 7337d24c1b5SMian Yousaf Kaukab if (!using_dma(hsotg) || !((long)req_buf & 3)) 7347d24c1b5SMian Yousaf Kaukab return 0; 7357d24c1b5SMian Yousaf Kaukab 7367d24c1b5SMian Yousaf Kaukab WARN_ON(hs_req->saved_req_buf); 7377d24c1b5SMian Yousaf Kaukab 7387d24c1b5SMian Yousaf Kaukab dev_dbg(hsotg->dev, "%s: %s: buf=%p length=%d\n", __func__, 7397d24c1b5SMian Yousaf Kaukab hs_ep->ep.name, req_buf, hs_req->req.length); 7407d24c1b5SMian Yousaf Kaukab 7417d24c1b5SMian Yousaf Kaukab hs_req->req.buf = kmalloc(hs_req->req.length, GFP_ATOMIC); 7427d24c1b5SMian Yousaf Kaukab if (!hs_req->req.buf) { 7437d24c1b5SMian Yousaf Kaukab hs_req->req.buf = req_buf; 7447d24c1b5SMian Yousaf Kaukab dev_err(hsotg->dev, 7457d24c1b5SMian Yousaf Kaukab "%s: unable to allocate memory for bounce buffer\n", 7467d24c1b5SMian Yousaf Kaukab __func__); 7477d24c1b5SMian Yousaf Kaukab return -ENOMEM; 7487d24c1b5SMian Yousaf Kaukab } 7497d24c1b5SMian Yousaf Kaukab 7507d24c1b5SMian Yousaf Kaukab /* Save actual buffer */ 7517d24c1b5SMian Yousaf Kaukab hs_req->saved_req_buf = req_buf; 7527d24c1b5SMian Yousaf Kaukab 7537d24c1b5SMian Yousaf Kaukab if (hs_ep->dir_in) 7547d24c1b5SMian Yousaf Kaukab memcpy(hs_req->req.buf, req_buf, hs_req->req.length); 7557d24c1b5SMian Yousaf Kaukab return 0; 7567d24c1b5SMian Yousaf Kaukab } 7577d24c1b5SMian Yousaf Kaukab 7581f91b4ccSFelipe Balbi static void dwc2_hsotg_handle_unaligned_buf_complete(struct dwc2_hsotg *hsotg, 7591f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep, struct dwc2_hsotg_req *hs_req) 7607d24c1b5SMian Yousaf Kaukab { 7617d24c1b5SMian Yousaf Kaukab /* If dma is not being used or buffer was aligned */ 7627d24c1b5SMian Yousaf Kaukab if (!using_dma(hsotg) || !hs_req->saved_req_buf) 7637d24c1b5SMian Yousaf Kaukab return; 7647d24c1b5SMian Yousaf Kaukab 7657d24c1b5SMian Yousaf Kaukab dev_dbg(hsotg->dev, "%s: %s: status=%d actual-length=%d\n", __func__, 7667d24c1b5SMian Yousaf Kaukab hs_ep->ep.name, hs_req->req.status, hs_req->req.actual); 7677d24c1b5SMian Yousaf Kaukab 7687d24c1b5SMian Yousaf Kaukab /* Copy data from bounce buffer on successful out transfer */ 7697d24c1b5SMian Yousaf Kaukab if (!hs_ep->dir_in && !hs_req->req.status) 7707d24c1b5SMian Yousaf Kaukab memcpy(hs_req->saved_req_buf, hs_req->req.buf, 7717d24c1b5SMian Yousaf Kaukab hs_req->req.actual); 7727d24c1b5SMian Yousaf Kaukab 7737d24c1b5SMian Yousaf Kaukab /* Free bounce buffer */ 7747d24c1b5SMian Yousaf Kaukab kfree(hs_req->req.buf); 7757d24c1b5SMian Yousaf Kaukab 7767d24c1b5SMian Yousaf Kaukab hs_req->req.buf = hs_req->saved_req_buf; 7777d24c1b5SMian Yousaf Kaukab hs_req->saved_req_buf = NULL; 7787d24c1b5SMian Yousaf Kaukab } 7797d24c1b5SMian Yousaf Kaukab 7801f91b4ccSFelipe Balbi static int dwc2_hsotg_ep_queue(struct usb_ep *ep, struct usb_request *req, 78147a1685fSDinh Nguyen gfp_t gfp_flags) 78247a1685fSDinh Nguyen { 7831f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req = our_req(req); 7841f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = our_ep(ep); 785941fcce4SDinh Nguyen struct dwc2_hsotg *hs = hs_ep->parent; 78647a1685fSDinh Nguyen bool first; 7877d24c1b5SMian Yousaf Kaukab int ret; 78847a1685fSDinh Nguyen 78947a1685fSDinh Nguyen dev_dbg(hs->dev, "%s: req %p: %d@%p, noi=%d, zero=%d, snok=%d\n", 79047a1685fSDinh Nguyen ep->name, req, req->length, req->buf, req->no_interrupt, 79147a1685fSDinh Nguyen req->zero, req->short_not_ok); 79247a1685fSDinh Nguyen 7937ababa92SGregory Herrero /* Prevent new request submission when controller is suspended */ 7947ababa92SGregory Herrero if (hs->lx_state == DWC2_L2) { 7957ababa92SGregory Herrero dev_dbg(hs->dev, "%s: don't submit request while suspended\n", 7967ababa92SGregory Herrero __func__); 7977ababa92SGregory Herrero return -EAGAIN; 7987ababa92SGregory Herrero } 7997ababa92SGregory Herrero 80047a1685fSDinh Nguyen /* initialise status of the request */ 80147a1685fSDinh Nguyen INIT_LIST_HEAD(&hs_req->queue); 80247a1685fSDinh Nguyen req->actual = 0; 80347a1685fSDinh Nguyen req->status = -EINPROGRESS; 80447a1685fSDinh Nguyen 8051f91b4ccSFelipe Balbi ret = dwc2_hsotg_handle_unaligned_buf_start(hs, hs_ep, hs_req); 8067d24c1b5SMian Yousaf Kaukab if (ret) 8077d24c1b5SMian Yousaf Kaukab return ret; 8087d24c1b5SMian Yousaf Kaukab 80947a1685fSDinh Nguyen /* if we're using DMA, sync the buffers as necessary */ 81047a1685fSDinh Nguyen if (using_dma(hs)) { 8111f91b4ccSFelipe Balbi ret = dwc2_hsotg_map_dma(hs, hs_ep, req); 81247a1685fSDinh Nguyen if (ret) 81347a1685fSDinh Nguyen return ret; 81447a1685fSDinh Nguyen } 81547a1685fSDinh Nguyen 81647a1685fSDinh Nguyen first = list_empty(&hs_ep->queue); 81747a1685fSDinh Nguyen list_add_tail(&hs_req->queue, &hs_ep->queue); 81847a1685fSDinh Nguyen 81947a1685fSDinh Nguyen if (first) 8201f91b4ccSFelipe Balbi dwc2_hsotg_start_req(hs, hs_ep, hs_req, false); 82147a1685fSDinh Nguyen 82247a1685fSDinh Nguyen return 0; 82347a1685fSDinh Nguyen } 82447a1685fSDinh Nguyen 8251f91b4ccSFelipe Balbi static int dwc2_hsotg_ep_queue_lock(struct usb_ep *ep, struct usb_request *req, 82647a1685fSDinh Nguyen gfp_t gfp_flags) 82747a1685fSDinh Nguyen { 8281f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = our_ep(ep); 829941fcce4SDinh Nguyen struct dwc2_hsotg *hs = hs_ep->parent; 83047a1685fSDinh Nguyen unsigned long flags = 0; 83147a1685fSDinh Nguyen int ret = 0; 83247a1685fSDinh Nguyen 83347a1685fSDinh Nguyen spin_lock_irqsave(&hs->lock, flags); 8341f91b4ccSFelipe Balbi ret = dwc2_hsotg_ep_queue(ep, req, gfp_flags); 83547a1685fSDinh Nguyen spin_unlock_irqrestore(&hs->lock, flags); 83647a1685fSDinh Nguyen 83747a1685fSDinh Nguyen return ret; 83847a1685fSDinh Nguyen } 83947a1685fSDinh Nguyen 8401f91b4ccSFelipe Balbi static void dwc2_hsotg_ep_free_request(struct usb_ep *ep, 84147a1685fSDinh Nguyen struct usb_request *req) 84247a1685fSDinh Nguyen { 8431f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req = our_req(req); 84447a1685fSDinh Nguyen 84547a1685fSDinh Nguyen kfree(hs_req); 84647a1685fSDinh Nguyen } 84747a1685fSDinh Nguyen 84847a1685fSDinh Nguyen /** 8491f91b4ccSFelipe Balbi * dwc2_hsotg_complete_oursetup - setup completion callback 85047a1685fSDinh Nguyen * @ep: The endpoint the request was on. 85147a1685fSDinh Nguyen * @req: The request completed. 85247a1685fSDinh Nguyen * 85347a1685fSDinh Nguyen * Called on completion of any requests the driver itself 85447a1685fSDinh Nguyen * submitted that need cleaning up. 85547a1685fSDinh Nguyen */ 8561f91b4ccSFelipe Balbi static void dwc2_hsotg_complete_oursetup(struct usb_ep *ep, 85747a1685fSDinh Nguyen struct usb_request *req) 85847a1685fSDinh Nguyen { 8591f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = our_ep(ep); 860941fcce4SDinh Nguyen struct dwc2_hsotg *hsotg = hs_ep->parent; 86147a1685fSDinh Nguyen 86247a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: ep %p, req %p\n", __func__, ep, req); 86347a1685fSDinh Nguyen 8641f91b4ccSFelipe Balbi dwc2_hsotg_ep_free_request(ep, req); 86547a1685fSDinh Nguyen } 86647a1685fSDinh Nguyen 86747a1685fSDinh Nguyen /** 86847a1685fSDinh Nguyen * ep_from_windex - convert control wIndex value to endpoint 86947a1685fSDinh Nguyen * @hsotg: The driver state. 87047a1685fSDinh Nguyen * @windex: The control request wIndex field (in host order). 87147a1685fSDinh Nguyen * 87247a1685fSDinh Nguyen * Convert the given wIndex into a pointer to an driver endpoint 87347a1685fSDinh Nguyen * structure, or return NULL if it is not a valid endpoint. 87447a1685fSDinh Nguyen */ 8751f91b4ccSFelipe Balbi static struct dwc2_hsotg_ep *ep_from_windex(struct dwc2_hsotg *hsotg, 87647a1685fSDinh Nguyen u32 windex) 87747a1685fSDinh Nguyen { 8781f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *ep; 87947a1685fSDinh Nguyen int dir = (windex & USB_DIR_IN) ? 1 : 0; 88047a1685fSDinh Nguyen int idx = windex & 0x7F; 88147a1685fSDinh Nguyen 88247a1685fSDinh Nguyen if (windex >= 0x100) 88347a1685fSDinh Nguyen return NULL; 88447a1685fSDinh Nguyen 88547a1685fSDinh Nguyen if (idx > hsotg->num_of_eps) 88647a1685fSDinh Nguyen return NULL; 88747a1685fSDinh Nguyen 888c6f5c050SMian Yousaf Kaukab ep = index_to_ep(hsotg, idx, dir); 889c6f5c050SMian Yousaf Kaukab 89047a1685fSDinh Nguyen if (idx && ep->dir_in != dir) 89147a1685fSDinh Nguyen return NULL; 89247a1685fSDinh Nguyen 89347a1685fSDinh Nguyen return ep; 89447a1685fSDinh Nguyen } 89547a1685fSDinh Nguyen 89647a1685fSDinh Nguyen /** 8971f91b4ccSFelipe Balbi * dwc2_hsotg_set_test_mode - Enable usb Test Modes 8989e14d0a5SGregory Herrero * @hsotg: The driver state. 8999e14d0a5SGregory Herrero * @testmode: requested usb test mode 9009e14d0a5SGregory Herrero * Enable usb Test Mode requested by the Host. 9019e14d0a5SGregory Herrero */ 9021f91b4ccSFelipe Balbi int dwc2_hsotg_set_test_mode(struct dwc2_hsotg *hsotg, int testmode) 9039e14d0a5SGregory Herrero { 90495c8bc36SAntti Seppälä int dctl = dwc2_readl(hsotg->regs + DCTL); 9059e14d0a5SGregory Herrero 9069e14d0a5SGregory Herrero dctl &= ~DCTL_TSTCTL_MASK; 9079e14d0a5SGregory Herrero switch (testmode) { 9089e14d0a5SGregory Herrero case TEST_J: 9099e14d0a5SGregory Herrero case TEST_K: 9109e14d0a5SGregory Herrero case TEST_SE0_NAK: 9119e14d0a5SGregory Herrero case TEST_PACKET: 9129e14d0a5SGregory Herrero case TEST_FORCE_EN: 9139e14d0a5SGregory Herrero dctl |= testmode << DCTL_TSTCTL_SHIFT; 9149e14d0a5SGregory Herrero break; 9159e14d0a5SGregory Herrero default: 9169e14d0a5SGregory Herrero return -EINVAL; 9179e14d0a5SGregory Herrero } 91895c8bc36SAntti Seppälä dwc2_writel(dctl, hsotg->regs + DCTL); 9199e14d0a5SGregory Herrero return 0; 9209e14d0a5SGregory Herrero } 9219e14d0a5SGregory Herrero 9229e14d0a5SGregory Herrero /** 9231f91b4ccSFelipe Balbi * dwc2_hsotg_send_reply - send reply to control request 92447a1685fSDinh Nguyen * @hsotg: The device state 92547a1685fSDinh Nguyen * @ep: Endpoint 0 92647a1685fSDinh Nguyen * @buff: Buffer for request 92747a1685fSDinh Nguyen * @length: Length of reply. 92847a1685fSDinh Nguyen * 92947a1685fSDinh Nguyen * Create a request and queue it on the given endpoint. This is useful as 93047a1685fSDinh Nguyen * an internal method of sending replies to certain control requests, etc. 93147a1685fSDinh Nguyen */ 9321f91b4ccSFelipe Balbi static int dwc2_hsotg_send_reply(struct dwc2_hsotg *hsotg, 9331f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *ep, 93447a1685fSDinh Nguyen void *buff, 93547a1685fSDinh Nguyen int length) 93647a1685fSDinh Nguyen { 93747a1685fSDinh Nguyen struct usb_request *req; 93847a1685fSDinh Nguyen int ret; 93947a1685fSDinh Nguyen 94047a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: buff %p, len %d\n", __func__, buff, length); 94147a1685fSDinh Nguyen 9421f91b4ccSFelipe Balbi req = dwc2_hsotg_ep_alloc_request(&ep->ep, GFP_ATOMIC); 94347a1685fSDinh Nguyen hsotg->ep0_reply = req; 94447a1685fSDinh Nguyen if (!req) { 94547a1685fSDinh Nguyen dev_warn(hsotg->dev, "%s: cannot alloc req\n", __func__); 94647a1685fSDinh Nguyen return -ENOMEM; 94747a1685fSDinh Nguyen } 94847a1685fSDinh Nguyen 94947a1685fSDinh Nguyen req->buf = hsotg->ep0_buff; 95047a1685fSDinh Nguyen req->length = length; 951f71b5e25SMian Yousaf Kaukab /* 952f71b5e25SMian Yousaf Kaukab * zero flag is for sending zlp in DATA IN stage. It has no impact on 953f71b5e25SMian Yousaf Kaukab * STATUS stage. 954f71b5e25SMian Yousaf Kaukab */ 955f71b5e25SMian Yousaf Kaukab req->zero = 0; 9561f91b4ccSFelipe Balbi req->complete = dwc2_hsotg_complete_oursetup; 95747a1685fSDinh Nguyen 95847a1685fSDinh Nguyen if (length) 95947a1685fSDinh Nguyen memcpy(req->buf, buff, length); 96047a1685fSDinh Nguyen 9611f91b4ccSFelipe Balbi ret = dwc2_hsotg_ep_queue(&ep->ep, req, GFP_ATOMIC); 96247a1685fSDinh Nguyen if (ret) { 96347a1685fSDinh Nguyen dev_warn(hsotg->dev, "%s: cannot queue req\n", __func__); 96447a1685fSDinh Nguyen return ret; 96547a1685fSDinh Nguyen } 96647a1685fSDinh Nguyen 96747a1685fSDinh Nguyen return 0; 96847a1685fSDinh Nguyen } 96947a1685fSDinh Nguyen 97047a1685fSDinh Nguyen /** 9711f91b4ccSFelipe Balbi * dwc2_hsotg_process_req_status - process request GET_STATUS 97247a1685fSDinh Nguyen * @hsotg: The device state 97347a1685fSDinh Nguyen * @ctrl: USB control request 97447a1685fSDinh Nguyen */ 9751f91b4ccSFelipe Balbi static int dwc2_hsotg_process_req_status(struct dwc2_hsotg *hsotg, 97647a1685fSDinh Nguyen struct usb_ctrlrequest *ctrl) 97747a1685fSDinh Nguyen { 9781f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0]; 9791f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *ep; 98047a1685fSDinh Nguyen __le16 reply; 98147a1685fSDinh Nguyen int ret; 98247a1685fSDinh Nguyen 98347a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: USB_REQ_GET_STATUS\n", __func__); 98447a1685fSDinh Nguyen 98547a1685fSDinh Nguyen if (!ep0->dir_in) { 98647a1685fSDinh Nguyen dev_warn(hsotg->dev, "%s: direction out?\n", __func__); 98747a1685fSDinh Nguyen return -EINVAL; 98847a1685fSDinh Nguyen } 98947a1685fSDinh Nguyen 99047a1685fSDinh Nguyen switch (ctrl->bRequestType & USB_RECIP_MASK) { 99147a1685fSDinh Nguyen case USB_RECIP_DEVICE: 99247a1685fSDinh Nguyen reply = cpu_to_le16(0); /* bit 0 => self powered, 99347a1685fSDinh Nguyen * bit 1 => remote wakeup */ 99447a1685fSDinh Nguyen break; 99547a1685fSDinh Nguyen 99647a1685fSDinh Nguyen case USB_RECIP_INTERFACE: 99747a1685fSDinh Nguyen /* currently, the data result should be zero */ 99847a1685fSDinh Nguyen reply = cpu_to_le16(0); 99947a1685fSDinh Nguyen break; 100047a1685fSDinh Nguyen 100147a1685fSDinh Nguyen case USB_RECIP_ENDPOINT: 100247a1685fSDinh Nguyen ep = ep_from_windex(hsotg, le16_to_cpu(ctrl->wIndex)); 100347a1685fSDinh Nguyen if (!ep) 100447a1685fSDinh Nguyen return -ENOENT; 100547a1685fSDinh Nguyen 100647a1685fSDinh Nguyen reply = cpu_to_le16(ep->halted ? 1 : 0); 100747a1685fSDinh Nguyen break; 100847a1685fSDinh Nguyen 100947a1685fSDinh Nguyen default: 101047a1685fSDinh Nguyen return 0; 101147a1685fSDinh Nguyen } 101247a1685fSDinh Nguyen 101347a1685fSDinh Nguyen if (le16_to_cpu(ctrl->wLength) != 2) 101447a1685fSDinh Nguyen return -EINVAL; 101547a1685fSDinh Nguyen 10161f91b4ccSFelipe Balbi ret = dwc2_hsotg_send_reply(hsotg, ep0, &reply, 2); 101747a1685fSDinh Nguyen if (ret) { 101847a1685fSDinh Nguyen dev_err(hsotg->dev, "%s: failed to send reply\n", __func__); 101947a1685fSDinh Nguyen return ret; 102047a1685fSDinh Nguyen } 102147a1685fSDinh Nguyen 102247a1685fSDinh Nguyen return 1; 102347a1685fSDinh Nguyen } 102447a1685fSDinh Nguyen 10251f91b4ccSFelipe Balbi static int dwc2_hsotg_ep_sethalt(struct usb_ep *ep, int value); 102647a1685fSDinh Nguyen 102747a1685fSDinh Nguyen /** 102847a1685fSDinh Nguyen * get_ep_head - return the first request on the endpoint 102947a1685fSDinh Nguyen * @hs_ep: The controller endpoint to get 103047a1685fSDinh Nguyen * 103147a1685fSDinh Nguyen * Get the first request on the endpoint. 103247a1685fSDinh Nguyen */ 10331f91b4ccSFelipe Balbi static struct dwc2_hsotg_req *get_ep_head(struct dwc2_hsotg_ep *hs_ep) 103447a1685fSDinh Nguyen { 103547a1685fSDinh Nguyen if (list_empty(&hs_ep->queue)) 103647a1685fSDinh Nguyen return NULL; 103747a1685fSDinh Nguyen 10381f91b4ccSFelipe Balbi return list_first_entry(&hs_ep->queue, struct dwc2_hsotg_req, queue); 103947a1685fSDinh Nguyen } 104047a1685fSDinh Nguyen 104147a1685fSDinh Nguyen /** 10421f91b4ccSFelipe Balbi * dwc2_hsotg_process_req_feature - process request {SET,CLEAR}_FEATURE 104347a1685fSDinh Nguyen * @hsotg: The device state 104447a1685fSDinh Nguyen * @ctrl: USB control request 104547a1685fSDinh Nguyen */ 10461f91b4ccSFelipe Balbi static int dwc2_hsotg_process_req_feature(struct dwc2_hsotg *hsotg, 104747a1685fSDinh Nguyen struct usb_ctrlrequest *ctrl) 104847a1685fSDinh Nguyen { 10491f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0]; 10501f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req; 105147a1685fSDinh Nguyen bool restart; 105247a1685fSDinh Nguyen bool set = (ctrl->bRequest == USB_REQ_SET_FEATURE); 10531f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *ep; 105447a1685fSDinh Nguyen int ret; 105547a1685fSDinh Nguyen bool halted; 10569e14d0a5SGregory Herrero u32 recip; 10579e14d0a5SGregory Herrero u32 wValue; 10589e14d0a5SGregory Herrero u32 wIndex; 105947a1685fSDinh Nguyen 106047a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: %s_FEATURE\n", 106147a1685fSDinh Nguyen __func__, set ? "SET" : "CLEAR"); 106247a1685fSDinh Nguyen 10639e14d0a5SGregory Herrero wValue = le16_to_cpu(ctrl->wValue); 10649e14d0a5SGregory Herrero wIndex = le16_to_cpu(ctrl->wIndex); 10659e14d0a5SGregory Herrero recip = ctrl->bRequestType & USB_RECIP_MASK; 10669e14d0a5SGregory Herrero 10679e14d0a5SGregory Herrero switch (recip) { 10689e14d0a5SGregory Herrero case USB_RECIP_DEVICE: 10699e14d0a5SGregory Herrero switch (wValue) { 10709e14d0a5SGregory Herrero case USB_DEVICE_TEST_MODE: 10719e14d0a5SGregory Herrero if ((wIndex & 0xff) != 0) 10729e14d0a5SGregory Herrero return -EINVAL; 10739e14d0a5SGregory Herrero if (!set) 10749e14d0a5SGregory Herrero return -EINVAL; 10759e14d0a5SGregory Herrero 10769e14d0a5SGregory Herrero hsotg->test_mode = wIndex >> 8; 10771f91b4ccSFelipe Balbi ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0); 10789e14d0a5SGregory Herrero if (ret) { 10799e14d0a5SGregory Herrero dev_err(hsotg->dev, 10809e14d0a5SGregory Herrero "%s: failed to send reply\n", __func__); 10819e14d0a5SGregory Herrero return ret; 10829e14d0a5SGregory Herrero } 10839e14d0a5SGregory Herrero break; 10849e14d0a5SGregory Herrero default: 10859e14d0a5SGregory Herrero return -ENOENT; 10869e14d0a5SGregory Herrero } 10879e14d0a5SGregory Herrero break; 10889e14d0a5SGregory Herrero 10899e14d0a5SGregory Herrero case USB_RECIP_ENDPOINT: 10909e14d0a5SGregory Herrero ep = ep_from_windex(hsotg, wIndex); 109147a1685fSDinh Nguyen if (!ep) { 109247a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: no endpoint for 0x%04x\n", 10939e14d0a5SGregory Herrero __func__, wIndex); 109447a1685fSDinh Nguyen return -ENOENT; 109547a1685fSDinh Nguyen } 109647a1685fSDinh Nguyen 10979e14d0a5SGregory Herrero switch (wValue) { 109847a1685fSDinh Nguyen case USB_ENDPOINT_HALT: 109947a1685fSDinh Nguyen halted = ep->halted; 110047a1685fSDinh Nguyen 11011f91b4ccSFelipe Balbi dwc2_hsotg_ep_sethalt(&ep->ep, set); 110247a1685fSDinh Nguyen 11031f91b4ccSFelipe Balbi ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0); 110447a1685fSDinh Nguyen if (ret) { 110547a1685fSDinh Nguyen dev_err(hsotg->dev, 110647a1685fSDinh Nguyen "%s: failed to send reply\n", __func__); 110747a1685fSDinh Nguyen return ret; 110847a1685fSDinh Nguyen } 110947a1685fSDinh Nguyen 111047a1685fSDinh Nguyen /* 111147a1685fSDinh Nguyen * we have to complete all requests for ep if it was 111247a1685fSDinh Nguyen * halted, and the halt was cleared by CLEAR_FEATURE 111347a1685fSDinh Nguyen */ 111447a1685fSDinh Nguyen 111547a1685fSDinh Nguyen if (!set && halted) { 111647a1685fSDinh Nguyen /* 111747a1685fSDinh Nguyen * If we have request in progress, 111847a1685fSDinh Nguyen * then complete it 111947a1685fSDinh Nguyen */ 112047a1685fSDinh Nguyen if (ep->req) { 112147a1685fSDinh Nguyen hs_req = ep->req; 112247a1685fSDinh Nguyen ep->req = NULL; 112347a1685fSDinh Nguyen list_del_init(&hs_req->queue); 1124c00dd4a6SGregory Herrero if (hs_req->req.complete) { 1125c00dd4a6SGregory Herrero spin_unlock(&hsotg->lock); 1126c00dd4a6SGregory Herrero usb_gadget_giveback_request( 1127c00dd4a6SGregory Herrero &ep->ep, &hs_req->req); 1128c00dd4a6SGregory Herrero spin_lock(&hsotg->lock); 1129c00dd4a6SGregory Herrero } 113047a1685fSDinh Nguyen } 113147a1685fSDinh Nguyen 113247a1685fSDinh Nguyen /* If we have pending request, then start it */ 1133c00dd4a6SGregory Herrero if (!ep->req) { 113447a1685fSDinh Nguyen restart = !list_empty(&ep->queue); 113547a1685fSDinh Nguyen if (restart) { 113647a1685fSDinh Nguyen hs_req = get_ep_head(ep); 11371f91b4ccSFelipe Balbi dwc2_hsotg_start_req(hsotg, ep, 113847a1685fSDinh Nguyen hs_req, false); 113947a1685fSDinh Nguyen } 114047a1685fSDinh Nguyen } 1141c00dd4a6SGregory Herrero } 114247a1685fSDinh Nguyen 114347a1685fSDinh Nguyen break; 114447a1685fSDinh Nguyen 114547a1685fSDinh Nguyen default: 114647a1685fSDinh Nguyen return -ENOENT; 114747a1685fSDinh Nguyen } 11489e14d0a5SGregory Herrero break; 11499e14d0a5SGregory Herrero default: 11509e14d0a5SGregory Herrero return -ENOENT; 11519e14d0a5SGregory Herrero } 115247a1685fSDinh Nguyen return 1; 115347a1685fSDinh Nguyen } 115447a1685fSDinh Nguyen 11551f91b4ccSFelipe Balbi static void dwc2_hsotg_enqueue_setup(struct dwc2_hsotg *hsotg); 115647a1685fSDinh Nguyen 115747a1685fSDinh Nguyen /** 11581f91b4ccSFelipe Balbi * dwc2_hsotg_stall_ep0 - stall ep0 115947a1685fSDinh Nguyen * @hsotg: The device state 116047a1685fSDinh Nguyen * 116147a1685fSDinh Nguyen * Set stall for ep0 as response for setup request. 116247a1685fSDinh Nguyen */ 11631f91b4ccSFelipe Balbi static void dwc2_hsotg_stall_ep0(struct dwc2_hsotg *hsotg) 1164e9ebe7c3SJingoo Han { 11651f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0]; 116647a1685fSDinh Nguyen u32 reg; 116747a1685fSDinh Nguyen u32 ctrl; 116847a1685fSDinh Nguyen 116947a1685fSDinh Nguyen dev_dbg(hsotg->dev, "ep0 stall (dir=%d)\n", ep0->dir_in); 117047a1685fSDinh Nguyen reg = (ep0->dir_in) ? DIEPCTL0 : DOEPCTL0; 117147a1685fSDinh Nguyen 117247a1685fSDinh Nguyen /* 117347a1685fSDinh Nguyen * DxEPCTL_Stall will be cleared by EP once it has 117447a1685fSDinh Nguyen * taken effect, so no need to clear later. 117547a1685fSDinh Nguyen */ 117647a1685fSDinh Nguyen 117795c8bc36SAntti Seppälä ctrl = dwc2_readl(hsotg->regs + reg); 117847a1685fSDinh Nguyen ctrl |= DXEPCTL_STALL; 117947a1685fSDinh Nguyen ctrl |= DXEPCTL_CNAK; 118095c8bc36SAntti Seppälä dwc2_writel(ctrl, hsotg->regs + reg); 118147a1685fSDinh Nguyen 118247a1685fSDinh Nguyen dev_dbg(hsotg->dev, 118347a1685fSDinh Nguyen "written DXEPCTL=0x%08x to %08x (DXEPCTL=0x%08x)\n", 118495c8bc36SAntti Seppälä ctrl, reg, dwc2_readl(hsotg->regs + reg)); 118547a1685fSDinh Nguyen 118647a1685fSDinh Nguyen /* 118747a1685fSDinh Nguyen * complete won't be called, so we enqueue 118847a1685fSDinh Nguyen * setup request here 118947a1685fSDinh Nguyen */ 11901f91b4ccSFelipe Balbi dwc2_hsotg_enqueue_setup(hsotg); 119147a1685fSDinh Nguyen } 119247a1685fSDinh Nguyen 119347a1685fSDinh Nguyen /** 11941f91b4ccSFelipe Balbi * dwc2_hsotg_process_control - process a control request 119547a1685fSDinh Nguyen * @hsotg: The device state 119647a1685fSDinh Nguyen * @ctrl: The control request received 119747a1685fSDinh Nguyen * 119847a1685fSDinh Nguyen * The controller has received the SETUP phase of a control request, and 119947a1685fSDinh Nguyen * needs to work out what to do next (and whether to pass it on to the 120047a1685fSDinh Nguyen * gadget driver). 120147a1685fSDinh Nguyen */ 12021f91b4ccSFelipe Balbi static void dwc2_hsotg_process_control(struct dwc2_hsotg *hsotg, 120347a1685fSDinh Nguyen struct usb_ctrlrequest *ctrl) 120447a1685fSDinh Nguyen { 12051f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *ep0 = hsotg->eps_out[0]; 120647a1685fSDinh Nguyen int ret = 0; 120747a1685fSDinh Nguyen u32 dcfg; 120847a1685fSDinh Nguyen 120947a1685fSDinh Nguyen dev_dbg(hsotg->dev, "ctrl Req=%02x, Type=%02x, V=%04x, L=%04x\n", 121047a1685fSDinh Nguyen ctrl->bRequest, ctrl->bRequestType, 121147a1685fSDinh Nguyen ctrl->wValue, ctrl->wLength); 121247a1685fSDinh Nguyen 1213fe0b94abSMian Yousaf Kaukab if (ctrl->wLength == 0) { 121447a1685fSDinh Nguyen ep0->dir_in = 1; 1215fe0b94abSMian Yousaf Kaukab hsotg->ep0_state = DWC2_EP0_STATUS_IN; 1216fe0b94abSMian Yousaf Kaukab } else if (ctrl->bRequestType & USB_DIR_IN) { 1217fe0b94abSMian Yousaf Kaukab ep0->dir_in = 1; 1218fe0b94abSMian Yousaf Kaukab hsotg->ep0_state = DWC2_EP0_DATA_IN; 1219fe0b94abSMian Yousaf Kaukab } else { 1220fe0b94abSMian Yousaf Kaukab ep0->dir_in = 0; 1221fe0b94abSMian Yousaf Kaukab hsotg->ep0_state = DWC2_EP0_DATA_OUT; 1222fe0b94abSMian Yousaf Kaukab } 122347a1685fSDinh Nguyen 122447a1685fSDinh Nguyen if ((ctrl->bRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD) { 122547a1685fSDinh Nguyen switch (ctrl->bRequest) { 122647a1685fSDinh Nguyen case USB_REQ_SET_ADDRESS: 12276d713c15SMian Yousaf Kaukab hsotg->connected = 1; 122895c8bc36SAntti Seppälä dcfg = dwc2_readl(hsotg->regs + DCFG); 122947a1685fSDinh Nguyen dcfg &= ~DCFG_DEVADDR_MASK; 1230d5dbd3f7SPaul Zimmerman dcfg |= (le16_to_cpu(ctrl->wValue) << 1231d5dbd3f7SPaul Zimmerman DCFG_DEVADDR_SHIFT) & DCFG_DEVADDR_MASK; 123295c8bc36SAntti Seppälä dwc2_writel(dcfg, hsotg->regs + DCFG); 123347a1685fSDinh Nguyen 123447a1685fSDinh Nguyen dev_info(hsotg->dev, "new address %d\n", ctrl->wValue); 123547a1685fSDinh Nguyen 12361f91b4ccSFelipe Balbi ret = dwc2_hsotg_send_reply(hsotg, ep0, NULL, 0); 123747a1685fSDinh Nguyen return; 123847a1685fSDinh Nguyen 123947a1685fSDinh Nguyen case USB_REQ_GET_STATUS: 12401f91b4ccSFelipe Balbi ret = dwc2_hsotg_process_req_status(hsotg, ctrl); 124147a1685fSDinh Nguyen break; 124247a1685fSDinh Nguyen 124347a1685fSDinh Nguyen case USB_REQ_CLEAR_FEATURE: 124447a1685fSDinh Nguyen case USB_REQ_SET_FEATURE: 12451f91b4ccSFelipe Balbi ret = dwc2_hsotg_process_req_feature(hsotg, ctrl); 124647a1685fSDinh Nguyen break; 124747a1685fSDinh Nguyen } 124847a1685fSDinh Nguyen } 124947a1685fSDinh Nguyen 125047a1685fSDinh Nguyen /* as a fallback, try delivering it to the driver to deal with */ 125147a1685fSDinh Nguyen 125247a1685fSDinh Nguyen if (ret == 0 && hsotg->driver) { 125347a1685fSDinh Nguyen spin_unlock(&hsotg->lock); 125447a1685fSDinh Nguyen ret = hsotg->driver->setup(&hsotg->gadget, ctrl); 125547a1685fSDinh Nguyen spin_lock(&hsotg->lock); 125647a1685fSDinh Nguyen if (ret < 0) 125747a1685fSDinh Nguyen dev_dbg(hsotg->dev, "driver->setup() ret %d\n", ret); 125847a1685fSDinh Nguyen } 125947a1685fSDinh Nguyen 126047a1685fSDinh Nguyen /* 126147a1685fSDinh Nguyen * the request is either unhandlable, or is not formatted correctly 126247a1685fSDinh Nguyen * so respond with a STALL for the status stage to indicate failure. 126347a1685fSDinh Nguyen */ 126447a1685fSDinh Nguyen 126547a1685fSDinh Nguyen if (ret < 0) 12661f91b4ccSFelipe Balbi dwc2_hsotg_stall_ep0(hsotg); 126747a1685fSDinh Nguyen } 126847a1685fSDinh Nguyen 126947a1685fSDinh Nguyen /** 12701f91b4ccSFelipe Balbi * dwc2_hsotg_complete_setup - completion of a setup transfer 127147a1685fSDinh Nguyen * @ep: The endpoint the request was on. 127247a1685fSDinh Nguyen * @req: The request completed. 127347a1685fSDinh Nguyen * 127447a1685fSDinh Nguyen * Called on completion of any requests the driver itself submitted for 127547a1685fSDinh Nguyen * EP0 setup packets 127647a1685fSDinh Nguyen */ 12771f91b4ccSFelipe Balbi static void dwc2_hsotg_complete_setup(struct usb_ep *ep, 127847a1685fSDinh Nguyen struct usb_request *req) 127947a1685fSDinh Nguyen { 12801f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = our_ep(ep); 1281941fcce4SDinh Nguyen struct dwc2_hsotg *hsotg = hs_ep->parent; 128247a1685fSDinh Nguyen 128347a1685fSDinh Nguyen if (req->status < 0) { 128447a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: failed %d\n", __func__, req->status); 128547a1685fSDinh Nguyen return; 128647a1685fSDinh Nguyen } 128747a1685fSDinh Nguyen 128847a1685fSDinh Nguyen spin_lock(&hsotg->lock); 128947a1685fSDinh Nguyen if (req->actual == 0) 12901f91b4ccSFelipe Balbi dwc2_hsotg_enqueue_setup(hsotg); 129147a1685fSDinh Nguyen else 12921f91b4ccSFelipe Balbi dwc2_hsotg_process_control(hsotg, req->buf); 129347a1685fSDinh Nguyen spin_unlock(&hsotg->lock); 129447a1685fSDinh Nguyen } 129547a1685fSDinh Nguyen 129647a1685fSDinh Nguyen /** 12971f91b4ccSFelipe Balbi * dwc2_hsotg_enqueue_setup - start a request for EP0 packets 129847a1685fSDinh Nguyen * @hsotg: The device state. 129947a1685fSDinh Nguyen * 130047a1685fSDinh Nguyen * Enqueue a request on EP0 if necessary to received any SETUP packets 130147a1685fSDinh Nguyen * received from the host. 130247a1685fSDinh Nguyen */ 13031f91b4ccSFelipe Balbi static void dwc2_hsotg_enqueue_setup(struct dwc2_hsotg *hsotg) 130447a1685fSDinh Nguyen { 130547a1685fSDinh Nguyen struct usb_request *req = hsotg->ctrl_req; 13061f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req = our_req(req); 130747a1685fSDinh Nguyen int ret; 130847a1685fSDinh Nguyen 130947a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: queueing setup request\n", __func__); 131047a1685fSDinh Nguyen 131147a1685fSDinh Nguyen req->zero = 0; 131247a1685fSDinh Nguyen req->length = 8; 131347a1685fSDinh Nguyen req->buf = hsotg->ctrl_buff; 13141f91b4ccSFelipe Balbi req->complete = dwc2_hsotg_complete_setup; 131547a1685fSDinh Nguyen 131647a1685fSDinh Nguyen if (!list_empty(&hs_req->queue)) { 131747a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s already queued???\n", __func__); 131847a1685fSDinh Nguyen return; 131947a1685fSDinh Nguyen } 132047a1685fSDinh Nguyen 1321c6f5c050SMian Yousaf Kaukab hsotg->eps_out[0]->dir_in = 0; 13228a20fa45SMian Yousaf Kaukab hsotg->eps_out[0]->send_zlp = 0; 1323fe0b94abSMian Yousaf Kaukab hsotg->ep0_state = DWC2_EP0_SETUP; 132447a1685fSDinh Nguyen 13251f91b4ccSFelipe Balbi ret = dwc2_hsotg_ep_queue(&hsotg->eps_out[0]->ep, req, GFP_ATOMIC); 132647a1685fSDinh Nguyen if (ret < 0) { 132747a1685fSDinh Nguyen dev_err(hsotg->dev, "%s: failed queue (%d)\n", __func__, ret); 132847a1685fSDinh Nguyen /* 132947a1685fSDinh Nguyen * Don't think there's much we can do other than watch the 133047a1685fSDinh Nguyen * driver fail. 133147a1685fSDinh Nguyen */ 133247a1685fSDinh Nguyen } 133347a1685fSDinh Nguyen } 133447a1685fSDinh Nguyen 13351f91b4ccSFelipe Balbi static void dwc2_hsotg_program_zlp(struct dwc2_hsotg *hsotg, 13361f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep) 1337fe0b94abSMian Yousaf Kaukab { 1338fe0b94abSMian Yousaf Kaukab u32 ctrl; 1339fe0b94abSMian Yousaf Kaukab u8 index = hs_ep->index; 1340fe0b94abSMian Yousaf Kaukab u32 epctl_reg = hs_ep->dir_in ? DIEPCTL(index) : DOEPCTL(index); 1341fe0b94abSMian Yousaf Kaukab u32 epsiz_reg = hs_ep->dir_in ? DIEPTSIZ(index) : DOEPTSIZ(index); 1342fe0b94abSMian Yousaf Kaukab 1343ccb34a91SMian Yousaf Kaukab if (hs_ep->dir_in) 1344ccb34a91SMian Yousaf Kaukab dev_dbg(hsotg->dev, "Sending zero-length packet on ep%d\n", 1345ccb34a91SMian Yousaf Kaukab index); 1346ccb34a91SMian Yousaf Kaukab else 1347ccb34a91SMian Yousaf Kaukab dev_dbg(hsotg->dev, "Receiving zero-length packet on ep%d\n", 1348ccb34a91SMian Yousaf Kaukab index); 1349fe0b94abSMian Yousaf Kaukab 135095c8bc36SAntti Seppälä dwc2_writel(DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) | 1351fe0b94abSMian Yousaf Kaukab DXEPTSIZ_XFERSIZE(0), hsotg->regs + 1352fe0b94abSMian Yousaf Kaukab epsiz_reg); 1353fe0b94abSMian Yousaf Kaukab 135495c8bc36SAntti Seppälä ctrl = dwc2_readl(hsotg->regs + epctl_reg); 1355fe0b94abSMian Yousaf Kaukab ctrl |= DXEPCTL_CNAK; /* clear NAK set by core */ 1356fe0b94abSMian Yousaf Kaukab ctrl |= DXEPCTL_EPENA; /* ensure ep enabled */ 1357fe0b94abSMian Yousaf Kaukab ctrl |= DXEPCTL_USBACTEP; 135895c8bc36SAntti Seppälä dwc2_writel(ctrl, hsotg->regs + epctl_reg); 1359fe0b94abSMian Yousaf Kaukab } 1360fe0b94abSMian Yousaf Kaukab 136147a1685fSDinh Nguyen /** 13621f91b4ccSFelipe Balbi * dwc2_hsotg_complete_request - complete a request given to us 136347a1685fSDinh Nguyen * @hsotg: The device state. 136447a1685fSDinh Nguyen * @hs_ep: The endpoint the request was on. 136547a1685fSDinh Nguyen * @hs_req: The request to complete. 136647a1685fSDinh Nguyen * @result: The result code (0 => Ok, otherwise errno) 136747a1685fSDinh Nguyen * 136847a1685fSDinh Nguyen * The given request has finished, so call the necessary completion 136947a1685fSDinh Nguyen * if it has one and then look to see if we can start a new request 137047a1685fSDinh Nguyen * on the endpoint. 137147a1685fSDinh Nguyen * 137247a1685fSDinh Nguyen * Note, expects the ep to already be locked as appropriate. 137347a1685fSDinh Nguyen */ 13741f91b4ccSFelipe Balbi static void dwc2_hsotg_complete_request(struct dwc2_hsotg *hsotg, 13751f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep, 13761f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req, 137747a1685fSDinh Nguyen int result) 137847a1685fSDinh Nguyen { 137947a1685fSDinh Nguyen bool restart; 138047a1685fSDinh Nguyen 138147a1685fSDinh Nguyen if (!hs_req) { 138247a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: nothing to complete?\n", __func__); 138347a1685fSDinh Nguyen return; 138447a1685fSDinh Nguyen } 138547a1685fSDinh Nguyen 138647a1685fSDinh Nguyen dev_dbg(hsotg->dev, "complete: ep %p %s, req %p, %d => %p\n", 138747a1685fSDinh Nguyen hs_ep, hs_ep->ep.name, hs_req, result, hs_req->req.complete); 138847a1685fSDinh Nguyen 138947a1685fSDinh Nguyen /* 139047a1685fSDinh Nguyen * only replace the status if we've not already set an error 139147a1685fSDinh Nguyen * from a previous transaction 139247a1685fSDinh Nguyen */ 139347a1685fSDinh Nguyen 139447a1685fSDinh Nguyen if (hs_req->req.status == -EINPROGRESS) 139547a1685fSDinh Nguyen hs_req->req.status = result; 139647a1685fSDinh Nguyen 13971f91b4ccSFelipe Balbi dwc2_hsotg_handle_unaligned_buf_complete(hsotg, hs_ep, hs_req); 13987d24c1b5SMian Yousaf Kaukab 139947a1685fSDinh Nguyen hs_ep->req = NULL; 140047a1685fSDinh Nguyen list_del_init(&hs_req->queue); 140147a1685fSDinh Nguyen 140247a1685fSDinh Nguyen if (using_dma(hsotg)) 14031f91b4ccSFelipe Balbi dwc2_hsotg_unmap_dma(hsotg, hs_ep, hs_req); 140447a1685fSDinh Nguyen 140547a1685fSDinh Nguyen /* 140647a1685fSDinh Nguyen * call the complete request with the locks off, just in case the 140747a1685fSDinh Nguyen * request tries to queue more work for this endpoint. 140847a1685fSDinh Nguyen */ 140947a1685fSDinh Nguyen 141047a1685fSDinh Nguyen if (hs_req->req.complete) { 141147a1685fSDinh Nguyen spin_unlock(&hsotg->lock); 1412304f7e5eSMichal Sojka usb_gadget_giveback_request(&hs_ep->ep, &hs_req->req); 141347a1685fSDinh Nguyen spin_lock(&hsotg->lock); 141447a1685fSDinh Nguyen } 141547a1685fSDinh Nguyen 141647a1685fSDinh Nguyen /* 141747a1685fSDinh Nguyen * Look to see if there is anything else to do. Note, the completion 141847a1685fSDinh Nguyen * of the previous request may have caused a new request to be started 141947a1685fSDinh Nguyen * so be careful when doing this. 142047a1685fSDinh Nguyen */ 142147a1685fSDinh Nguyen 142247a1685fSDinh Nguyen if (!hs_ep->req && result >= 0) { 142347a1685fSDinh Nguyen restart = !list_empty(&hs_ep->queue); 142447a1685fSDinh Nguyen if (restart) { 142547a1685fSDinh Nguyen hs_req = get_ep_head(hs_ep); 14261f91b4ccSFelipe Balbi dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, false); 142747a1685fSDinh Nguyen } 142847a1685fSDinh Nguyen } 142947a1685fSDinh Nguyen } 143047a1685fSDinh Nguyen 143147a1685fSDinh Nguyen /** 14321f91b4ccSFelipe Balbi * dwc2_hsotg_rx_data - receive data from the FIFO for an endpoint 143347a1685fSDinh Nguyen * @hsotg: The device state. 143447a1685fSDinh Nguyen * @ep_idx: The endpoint index for the data 143547a1685fSDinh Nguyen * @size: The size of data in the fifo, in bytes 143647a1685fSDinh Nguyen * 143747a1685fSDinh Nguyen * The FIFO status shows there is data to read from the FIFO for a given 143847a1685fSDinh Nguyen * endpoint, so sort out whether we need to read the data into a request 143947a1685fSDinh Nguyen * that has been made for that endpoint. 144047a1685fSDinh Nguyen */ 14411f91b4ccSFelipe Balbi static void dwc2_hsotg_rx_data(struct dwc2_hsotg *hsotg, int ep_idx, int size) 144247a1685fSDinh Nguyen { 14431f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = hsotg->eps_out[ep_idx]; 14441f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req = hs_ep->req; 144547a1685fSDinh Nguyen void __iomem *fifo = hsotg->regs + EPFIFO(ep_idx); 144647a1685fSDinh Nguyen int to_read; 144747a1685fSDinh Nguyen int max_req; 144847a1685fSDinh Nguyen int read_ptr; 144947a1685fSDinh Nguyen 145047a1685fSDinh Nguyen 145147a1685fSDinh Nguyen if (!hs_req) { 145295c8bc36SAntti Seppälä u32 epctl = dwc2_readl(hsotg->regs + DOEPCTL(ep_idx)); 145347a1685fSDinh Nguyen int ptr; 145447a1685fSDinh Nguyen 14556b448af4SRobert Baldyga dev_dbg(hsotg->dev, 145647a1685fSDinh Nguyen "%s: FIFO %d bytes on ep%d but no req (DXEPCTl=0x%08x)\n", 145747a1685fSDinh Nguyen __func__, size, ep_idx, epctl); 145847a1685fSDinh Nguyen 145947a1685fSDinh Nguyen /* dump the data from the FIFO, we've nothing we can do */ 146047a1685fSDinh Nguyen for (ptr = 0; ptr < size; ptr += 4) 146195c8bc36SAntti Seppälä (void)dwc2_readl(fifo); 146247a1685fSDinh Nguyen 146347a1685fSDinh Nguyen return; 146447a1685fSDinh Nguyen } 146547a1685fSDinh Nguyen 146647a1685fSDinh Nguyen to_read = size; 146747a1685fSDinh Nguyen read_ptr = hs_req->req.actual; 146847a1685fSDinh Nguyen max_req = hs_req->req.length - read_ptr; 146947a1685fSDinh Nguyen 147047a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: read %d/%d, done %d/%d\n", 147147a1685fSDinh Nguyen __func__, to_read, max_req, read_ptr, hs_req->req.length); 147247a1685fSDinh Nguyen 147347a1685fSDinh Nguyen if (to_read > max_req) { 147447a1685fSDinh Nguyen /* 147547a1685fSDinh Nguyen * more data appeared than we where willing 147647a1685fSDinh Nguyen * to deal with in this request. 147747a1685fSDinh Nguyen */ 147847a1685fSDinh Nguyen 147947a1685fSDinh Nguyen /* currently we don't deal this */ 148047a1685fSDinh Nguyen WARN_ON_ONCE(1); 148147a1685fSDinh Nguyen } 148247a1685fSDinh Nguyen 148347a1685fSDinh Nguyen hs_ep->total_data += to_read; 148447a1685fSDinh Nguyen hs_req->req.actual += to_read; 148547a1685fSDinh Nguyen to_read = DIV_ROUND_UP(to_read, 4); 148647a1685fSDinh Nguyen 148747a1685fSDinh Nguyen /* 148847a1685fSDinh Nguyen * note, we might over-write the buffer end by 3 bytes depending on 148947a1685fSDinh Nguyen * alignment of the data. 149047a1685fSDinh Nguyen */ 149147a1685fSDinh Nguyen ioread32_rep(fifo, hs_req->req.buf + read_ptr, to_read); 149247a1685fSDinh Nguyen } 149347a1685fSDinh Nguyen 149447a1685fSDinh Nguyen /** 14951f91b4ccSFelipe Balbi * dwc2_hsotg_ep0_zlp - send/receive zero-length packet on control endpoint 149647a1685fSDinh Nguyen * @hsotg: The device instance 1497fe0b94abSMian Yousaf Kaukab * @dir_in: If IN zlp 149847a1685fSDinh Nguyen * 149947a1685fSDinh Nguyen * Generate a zero-length IN packet request for terminating a SETUP 150047a1685fSDinh Nguyen * transaction. 150147a1685fSDinh Nguyen * 150247a1685fSDinh Nguyen * Note, since we don't write any data to the TxFIFO, then it is 150347a1685fSDinh Nguyen * currently believed that we do not need to wait for any space in 150447a1685fSDinh Nguyen * the TxFIFO. 150547a1685fSDinh Nguyen */ 15061f91b4ccSFelipe Balbi static void dwc2_hsotg_ep0_zlp(struct dwc2_hsotg *hsotg, bool dir_in) 150747a1685fSDinh Nguyen { 1508c6f5c050SMian Yousaf Kaukab /* eps_out[0] is used in both directions */ 1509fe0b94abSMian Yousaf Kaukab hsotg->eps_out[0]->dir_in = dir_in; 1510fe0b94abSMian Yousaf Kaukab hsotg->ep0_state = dir_in ? DWC2_EP0_STATUS_IN : DWC2_EP0_STATUS_OUT; 151147a1685fSDinh Nguyen 15121f91b4ccSFelipe Balbi dwc2_hsotg_program_zlp(hsotg, hsotg->eps_out[0]); 151347a1685fSDinh Nguyen } 151447a1685fSDinh Nguyen 151547a1685fSDinh Nguyen /** 15161f91b4ccSFelipe Balbi * dwc2_hsotg_handle_outdone - handle receiving OutDone/SetupDone from RXFIFO 151747a1685fSDinh Nguyen * @hsotg: The device instance 151847a1685fSDinh Nguyen * @epnum: The endpoint received from 151947a1685fSDinh Nguyen * 152047a1685fSDinh Nguyen * The RXFIFO has delivered an OutDone event, which means that the data 152147a1685fSDinh Nguyen * transfer for an OUT endpoint has been completed, either by a short 152247a1685fSDinh Nguyen * packet or by the finish of a transfer. 152347a1685fSDinh Nguyen */ 15241f91b4ccSFelipe Balbi static void dwc2_hsotg_handle_outdone(struct dwc2_hsotg *hsotg, int epnum) 152547a1685fSDinh Nguyen { 152695c8bc36SAntti Seppälä u32 epsize = dwc2_readl(hsotg->regs + DOEPTSIZ(epnum)); 15271f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = hsotg->eps_out[epnum]; 15281f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req = hs_ep->req; 152947a1685fSDinh Nguyen struct usb_request *req = &hs_req->req; 153047a1685fSDinh Nguyen unsigned size_left = DXEPTSIZ_XFERSIZE_GET(epsize); 153147a1685fSDinh Nguyen int result = 0; 153247a1685fSDinh Nguyen 153347a1685fSDinh Nguyen if (!hs_req) { 153447a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: no request active\n", __func__); 153547a1685fSDinh Nguyen return; 153647a1685fSDinh Nguyen } 153747a1685fSDinh Nguyen 1538fe0b94abSMian Yousaf Kaukab if (epnum == 0 && hsotg->ep0_state == DWC2_EP0_STATUS_OUT) { 1539fe0b94abSMian Yousaf Kaukab dev_dbg(hsotg->dev, "zlp packet received\n"); 15401f91b4ccSFelipe Balbi dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0); 15411f91b4ccSFelipe Balbi dwc2_hsotg_enqueue_setup(hsotg); 1542fe0b94abSMian Yousaf Kaukab return; 1543fe0b94abSMian Yousaf Kaukab } 1544fe0b94abSMian Yousaf Kaukab 154547a1685fSDinh Nguyen if (using_dma(hsotg)) { 154647a1685fSDinh Nguyen unsigned size_done; 154747a1685fSDinh Nguyen 154847a1685fSDinh Nguyen /* 154947a1685fSDinh Nguyen * Calculate the size of the transfer by checking how much 155047a1685fSDinh Nguyen * is left in the endpoint size register and then working it 155147a1685fSDinh Nguyen * out from the amount we loaded for the transfer. 155247a1685fSDinh Nguyen * 155347a1685fSDinh Nguyen * We need to do this as DMA pointers are always 32bit aligned 155447a1685fSDinh Nguyen * so may overshoot/undershoot the transfer. 155547a1685fSDinh Nguyen */ 155647a1685fSDinh Nguyen 155747a1685fSDinh Nguyen size_done = hs_ep->size_loaded - size_left; 155847a1685fSDinh Nguyen size_done += hs_ep->last_load; 155947a1685fSDinh Nguyen 156047a1685fSDinh Nguyen req->actual = size_done; 156147a1685fSDinh Nguyen } 156247a1685fSDinh Nguyen 156347a1685fSDinh Nguyen /* if there is more request to do, schedule new transfer */ 156447a1685fSDinh Nguyen if (req->actual < req->length && size_left == 0) { 15651f91b4ccSFelipe Balbi dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, true); 156647a1685fSDinh Nguyen return; 156747a1685fSDinh Nguyen } 156847a1685fSDinh Nguyen 156947a1685fSDinh Nguyen if (req->actual < req->length && req->short_not_ok) { 157047a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: got %d/%d (short not ok) => error\n", 157147a1685fSDinh Nguyen __func__, req->actual, req->length); 157247a1685fSDinh Nguyen 157347a1685fSDinh Nguyen /* 157447a1685fSDinh Nguyen * todo - what should we return here? there's no one else 157547a1685fSDinh Nguyen * even bothering to check the status. 157647a1685fSDinh Nguyen */ 157747a1685fSDinh Nguyen } 157847a1685fSDinh Nguyen 1579fe0b94abSMian Yousaf Kaukab if (epnum == 0 && hsotg->ep0_state == DWC2_EP0_DATA_OUT) { 1580fe0b94abSMian Yousaf Kaukab /* Move to STATUS IN */ 15811f91b4ccSFelipe Balbi dwc2_hsotg_ep0_zlp(hsotg, true); 1582fe0b94abSMian Yousaf Kaukab return; 158347a1685fSDinh Nguyen } 158447a1685fSDinh Nguyen 15851f91b4ccSFelipe Balbi dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, result); 158647a1685fSDinh Nguyen } 158747a1685fSDinh Nguyen 158847a1685fSDinh Nguyen /** 15891f91b4ccSFelipe Balbi * dwc2_hsotg_read_frameno - read current frame number 159047a1685fSDinh Nguyen * @hsotg: The device instance 159147a1685fSDinh Nguyen * 159247a1685fSDinh Nguyen * Return the current frame number 159347a1685fSDinh Nguyen */ 15941f91b4ccSFelipe Balbi static u32 dwc2_hsotg_read_frameno(struct dwc2_hsotg *hsotg) 159547a1685fSDinh Nguyen { 159647a1685fSDinh Nguyen u32 dsts; 159747a1685fSDinh Nguyen 159895c8bc36SAntti Seppälä dsts = dwc2_readl(hsotg->regs + DSTS); 159947a1685fSDinh Nguyen dsts &= DSTS_SOFFN_MASK; 160047a1685fSDinh Nguyen dsts >>= DSTS_SOFFN_SHIFT; 160147a1685fSDinh Nguyen 160247a1685fSDinh Nguyen return dsts; 160347a1685fSDinh Nguyen } 160447a1685fSDinh Nguyen 160547a1685fSDinh Nguyen /** 16061f91b4ccSFelipe Balbi * dwc2_hsotg_handle_rx - RX FIFO has data 160747a1685fSDinh Nguyen * @hsotg: The device instance 160847a1685fSDinh Nguyen * 160947a1685fSDinh Nguyen * The IRQ handler has detected that the RX FIFO has some data in it 161047a1685fSDinh Nguyen * that requires processing, so find out what is in there and do the 161147a1685fSDinh Nguyen * appropriate read. 161247a1685fSDinh Nguyen * 161347a1685fSDinh Nguyen * The RXFIFO is a true FIFO, the packets coming out are still in packet 161447a1685fSDinh Nguyen * chunks, so if you have x packets received on an endpoint you'll get x 161547a1685fSDinh Nguyen * FIFO events delivered, each with a packet's worth of data in it. 161647a1685fSDinh Nguyen * 161747a1685fSDinh Nguyen * When using DMA, we should not be processing events from the RXFIFO 161847a1685fSDinh Nguyen * as the actual data should be sent to the memory directly and we turn 161947a1685fSDinh Nguyen * on the completion interrupts to get notifications of transfer completion. 162047a1685fSDinh Nguyen */ 16211f91b4ccSFelipe Balbi static void dwc2_hsotg_handle_rx(struct dwc2_hsotg *hsotg) 162247a1685fSDinh Nguyen { 162395c8bc36SAntti Seppälä u32 grxstsr = dwc2_readl(hsotg->regs + GRXSTSP); 162447a1685fSDinh Nguyen u32 epnum, status, size; 162547a1685fSDinh Nguyen 162647a1685fSDinh Nguyen WARN_ON(using_dma(hsotg)); 162747a1685fSDinh Nguyen 162847a1685fSDinh Nguyen epnum = grxstsr & GRXSTS_EPNUM_MASK; 162947a1685fSDinh Nguyen status = grxstsr & GRXSTS_PKTSTS_MASK; 163047a1685fSDinh Nguyen 163147a1685fSDinh Nguyen size = grxstsr & GRXSTS_BYTECNT_MASK; 163247a1685fSDinh Nguyen size >>= GRXSTS_BYTECNT_SHIFT; 163347a1685fSDinh Nguyen 163447a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: GRXSTSP=0x%08x (%d@%d)\n", 163547a1685fSDinh Nguyen __func__, grxstsr, size, epnum); 163647a1685fSDinh Nguyen 163747a1685fSDinh Nguyen switch ((status & GRXSTS_PKTSTS_MASK) >> GRXSTS_PKTSTS_SHIFT) { 163847a1685fSDinh Nguyen case GRXSTS_PKTSTS_GLOBALOUTNAK: 163947a1685fSDinh Nguyen dev_dbg(hsotg->dev, "GLOBALOUTNAK\n"); 164047a1685fSDinh Nguyen break; 164147a1685fSDinh Nguyen 164247a1685fSDinh Nguyen case GRXSTS_PKTSTS_OUTDONE: 164347a1685fSDinh Nguyen dev_dbg(hsotg->dev, "OutDone (Frame=0x%08x)\n", 16441f91b4ccSFelipe Balbi dwc2_hsotg_read_frameno(hsotg)); 164547a1685fSDinh Nguyen 164647a1685fSDinh Nguyen if (!using_dma(hsotg)) 16471f91b4ccSFelipe Balbi dwc2_hsotg_handle_outdone(hsotg, epnum); 164847a1685fSDinh Nguyen break; 164947a1685fSDinh Nguyen 165047a1685fSDinh Nguyen case GRXSTS_PKTSTS_SETUPDONE: 165147a1685fSDinh Nguyen dev_dbg(hsotg->dev, 165247a1685fSDinh Nguyen "SetupDone (Frame=0x%08x, DOPEPCTL=0x%08x)\n", 16531f91b4ccSFelipe Balbi dwc2_hsotg_read_frameno(hsotg), 165495c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + DOEPCTL(0))); 1655fe0b94abSMian Yousaf Kaukab /* 16561f91b4ccSFelipe Balbi * Call dwc2_hsotg_handle_outdone here if it was not called from 1657fe0b94abSMian Yousaf Kaukab * GRXSTS_PKTSTS_OUTDONE. That is, if the core didn't 1658fe0b94abSMian Yousaf Kaukab * generate GRXSTS_PKTSTS_OUTDONE for setup packet. 1659fe0b94abSMian Yousaf Kaukab */ 1660fe0b94abSMian Yousaf Kaukab if (hsotg->ep0_state == DWC2_EP0_SETUP) 16611f91b4ccSFelipe Balbi dwc2_hsotg_handle_outdone(hsotg, epnum); 166247a1685fSDinh Nguyen break; 166347a1685fSDinh Nguyen 166447a1685fSDinh Nguyen case GRXSTS_PKTSTS_OUTRX: 16651f91b4ccSFelipe Balbi dwc2_hsotg_rx_data(hsotg, epnum, size); 166647a1685fSDinh Nguyen break; 166747a1685fSDinh Nguyen 166847a1685fSDinh Nguyen case GRXSTS_PKTSTS_SETUPRX: 166947a1685fSDinh Nguyen dev_dbg(hsotg->dev, 167047a1685fSDinh Nguyen "SetupRX (Frame=0x%08x, DOPEPCTL=0x%08x)\n", 16711f91b4ccSFelipe Balbi dwc2_hsotg_read_frameno(hsotg), 167295c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + DOEPCTL(0))); 167347a1685fSDinh Nguyen 1674fe0b94abSMian Yousaf Kaukab WARN_ON(hsotg->ep0_state != DWC2_EP0_SETUP); 1675fe0b94abSMian Yousaf Kaukab 16761f91b4ccSFelipe Balbi dwc2_hsotg_rx_data(hsotg, epnum, size); 167747a1685fSDinh Nguyen break; 167847a1685fSDinh Nguyen 167947a1685fSDinh Nguyen default: 168047a1685fSDinh Nguyen dev_warn(hsotg->dev, "%s: unknown status %08x\n", 168147a1685fSDinh Nguyen __func__, grxstsr); 168247a1685fSDinh Nguyen 16831f91b4ccSFelipe Balbi dwc2_hsotg_dump(hsotg); 168447a1685fSDinh Nguyen break; 168547a1685fSDinh Nguyen } 168647a1685fSDinh Nguyen } 168747a1685fSDinh Nguyen 168847a1685fSDinh Nguyen /** 16891f91b4ccSFelipe Balbi * dwc2_hsotg_ep0_mps - turn max packet size into register setting 169047a1685fSDinh Nguyen * @mps: The maximum packet size in bytes. 169147a1685fSDinh Nguyen */ 16921f91b4ccSFelipe Balbi static u32 dwc2_hsotg_ep0_mps(unsigned int mps) 169347a1685fSDinh Nguyen { 169447a1685fSDinh Nguyen switch (mps) { 169547a1685fSDinh Nguyen case 64: 169647a1685fSDinh Nguyen return D0EPCTL_MPS_64; 169747a1685fSDinh Nguyen case 32: 169847a1685fSDinh Nguyen return D0EPCTL_MPS_32; 169947a1685fSDinh Nguyen case 16: 170047a1685fSDinh Nguyen return D0EPCTL_MPS_16; 170147a1685fSDinh Nguyen case 8: 170247a1685fSDinh Nguyen return D0EPCTL_MPS_8; 170347a1685fSDinh Nguyen } 170447a1685fSDinh Nguyen 170547a1685fSDinh Nguyen /* bad max packet size, warn and return invalid result */ 170647a1685fSDinh Nguyen WARN_ON(1); 170747a1685fSDinh Nguyen return (u32)-1; 170847a1685fSDinh Nguyen } 170947a1685fSDinh Nguyen 171047a1685fSDinh Nguyen /** 17111f91b4ccSFelipe Balbi * dwc2_hsotg_set_ep_maxpacket - set endpoint's max-packet field 171247a1685fSDinh Nguyen * @hsotg: The driver state. 171347a1685fSDinh Nguyen * @ep: The index number of the endpoint 171447a1685fSDinh Nguyen * @mps: The maximum packet size in bytes 171547a1685fSDinh Nguyen * 171647a1685fSDinh Nguyen * Configure the maximum packet size for the given endpoint, updating 171747a1685fSDinh Nguyen * the hardware control registers to reflect this. 171847a1685fSDinh Nguyen */ 17191f91b4ccSFelipe Balbi static void dwc2_hsotg_set_ep_maxpacket(struct dwc2_hsotg *hsotg, 1720c6f5c050SMian Yousaf Kaukab unsigned int ep, unsigned int mps, unsigned int dir_in) 172147a1685fSDinh Nguyen { 17221f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep; 172347a1685fSDinh Nguyen void __iomem *regs = hsotg->regs; 172447a1685fSDinh Nguyen u32 mpsval; 172547a1685fSDinh Nguyen u32 mcval; 172647a1685fSDinh Nguyen u32 reg; 172747a1685fSDinh Nguyen 1728c6f5c050SMian Yousaf Kaukab hs_ep = index_to_ep(hsotg, ep, dir_in); 1729c6f5c050SMian Yousaf Kaukab if (!hs_ep) 1730c6f5c050SMian Yousaf Kaukab return; 1731c6f5c050SMian Yousaf Kaukab 173247a1685fSDinh Nguyen if (ep == 0) { 173347a1685fSDinh Nguyen /* EP0 is a special case */ 17341f91b4ccSFelipe Balbi mpsval = dwc2_hsotg_ep0_mps(mps); 173547a1685fSDinh Nguyen if (mpsval > 3) 173647a1685fSDinh Nguyen goto bad_mps; 173747a1685fSDinh Nguyen hs_ep->ep.maxpacket = mps; 173847a1685fSDinh Nguyen hs_ep->mc = 1; 173947a1685fSDinh Nguyen } else { 174047a1685fSDinh Nguyen mpsval = mps & DXEPCTL_MPS_MASK; 174147a1685fSDinh Nguyen if (mpsval > 1024) 174247a1685fSDinh Nguyen goto bad_mps; 174347a1685fSDinh Nguyen mcval = ((mps >> 11) & 0x3) + 1; 174447a1685fSDinh Nguyen hs_ep->mc = mcval; 174547a1685fSDinh Nguyen if (mcval > 3) 174647a1685fSDinh Nguyen goto bad_mps; 174747a1685fSDinh Nguyen hs_ep->ep.maxpacket = mpsval; 174847a1685fSDinh Nguyen } 174947a1685fSDinh Nguyen 1750c6f5c050SMian Yousaf Kaukab if (dir_in) { 175195c8bc36SAntti Seppälä reg = dwc2_readl(regs + DIEPCTL(ep)); 175247a1685fSDinh Nguyen reg &= ~DXEPCTL_MPS_MASK; 175347a1685fSDinh Nguyen reg |= mpsval; 175495c8bc36SAntti Seppälä dwc2_writel(reg, regs + DIEPCTL(ep)); 1755c6f5c050SMian Yousaf Kaukab } else { 175695c8bc36SAntti Seppälä reg = dwc2_readl(regs + DOEPCTL(ep)); 175747a1685fSDinh Nguyen reg &= ~DXEPCTL_MPS_MASK; 175847a1685fSDinh Nguyen reg |= mpsval; 175995c8bc36SAntti Seppälä dwc2_writel(reg, regs + DOEPCTL(ep)); 176047a1685fSDinh Nguyen } 176147a1685fSDinh Nguyen 176247a1685fSDinh Nguyen return; 176347a1685fSDinh Nguyen 176447a1685fSDinh Nguyen bad_mps: 176547a1685fSDinh Nguyen dev_err(hsotg->dev, "ep%d: bad mps of %d\n", ep, mps); 176647a1685fSDinh Nguyen } 176747a1685fSDinh Nguyen 176847a1685fSDinh Nguyen /** 17691f91b4ccSFelipe Balbi * dwc2_hsotg_txfifo_flush - flush Tx FIFO 177047a1685fSDinh Nguyen * @hsotg: The driver state 177147a1685fSDinh Nguyen * @idx: The index for the endpoint (0..15) 177247a1685fSDinh Nguyen */ 17731f91b4ccSFelipe Balbi static void dwc2_hsotg_txfifo_flush(struct dwc2_hsotg *hsotg, unsigned int idx) 177447a1685fSDinh Nguyen { 177547a1685fSDinh Nguyen int timeout; 177647a1685fSDinh Nguyen int val; 177747a1685fSDinh Nguyen 177895c8bc36SAntti Seppälä dwc2_writel(GRSTCTL_TXFNUM(idx) | GRSTCTL_TXFFLSH, 177947a1685fSDinh Nguyen hsotg->regs + GRSTCTL); 178047a1685fSDinh Nguyen 178147a1685fSDinh Nguyen /* wait until the fifo is flushed */ 178247a1685fSDinh Nguyen timeout = 100; 178347a1685fSDinh Nguyen 178447a1685fSDinh Nguyen while (1) { 178595c8bc36SAntti Seppälä val = dwc2_readl(hsotg->regs + GRSTCTL); 178647a1685fSDinh Nguyen 178747a1685fSDinh Nguyen if ((val & (GRSTCTL_TXFFLSH)) == 0) 178847a1685fSDinh Nguyen break; 178947a1685fSDinh Nguyen 179047a1685fSDinh Nguyen if (--timeout == 0) { 179147a1685fSDinh Nguyen dev_err(hsotg->dev, 179247a1685fSDinh Nguyen "%s: timeout flushing fifo (GRSTCTL=%08x)\n", 179347a1685fSDinh Nguyen __func__, val); 1794e0cbe595SMarek Szyprowski break; 179547a1685fSDinh Nguyen } 179647a1685fSDinh Nguyen 179747a1685fSDinh Nguyen udelay(1); 179847a1685fSDinh Nguyen } 179947a1685fSDinh Nguyen } 180047a1685fSDinh Nguyen 180147a1685fSDinh Nguyen /** 18021f91b4ccSFelipe Balbi * dwc2_hsotg_trytx - check to see if anything needs transmitting 180347a1685fSDinh Nguyen * @hsotg: The driver state 180447a1685fSDinh Nguyen * @hs_ep: The driver endpoint to check. 180547a1685fSDinh Nguyen * 180647a1685fSDinh Nguyen * Check to see if there is a request that has data to send, and if so 180747a1685fSDinh Nguyen * make an attempt to write data into the FIFO. 180847a1685fSDinh Nguyen */ 18091f91b4ccSFelipe Balbi static int dwc2_hsotg_trytx(struct dwc2_hsotg *hsotg, 18101f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep) 181147a1685fSDinh Nguyen { 18121f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req = hs_ep->req; 181347a1685fSDinh Nguyen 181447a1685fSDinh Nguyen if (!hs_ep->dir_in || !hs_req) { 181547a1685fSDinh Nguyen /** 181647a1685fSDinh Nguyen * if request is not enqueued, we disable interrupts 181747a1685fSDinh Nguyen * for endpoints, excepting ep0 181847a1685fSDinh Nguyen */ 181947a1685fSDinh Nguyen if (hs_ep->index != 0) 18201f91b4ccSFelipe Balbi dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index, 182147a1685fSDinh Nguyen hs_ep->dir_in, 0); 182247a1685fSDinh Nguyen return 0; 182347a1685fSDinh Nguyen } 182447a1685fSDinh Nguyen 182547a1685fSDinh Nguyen if (hs_req->req.actual < hs_req->req.length) { 182647a1685fSDinh Nguyen dev_dbg(hsotg->dev, "trying to write more for ep%d\n", 182747a1685fSDinh Nguyen hs_ep->index); 18281f91b4ccSFelipe Balbi return dwc2_hsotg_write_fifo(hsotg, hs_ep, hs_req); 182947a1685fSDinh Nguyen } 183047a1685fSDinh Nguyen 183147a1685fSDinh Nguyen return 0; 183247a1685fSDinh Nguyen } 183347a1685fSDinh Nguyen 183447a1685fSDinh Nguyen /** 18351f91b4ccSFelipe Balbi * dwc2_hsotg_complete_in - complete IN transfer 183647a1685fSDinh Nguyen * @hsotg: The device state. 183747a1685fSDinh Nguyen * @hs_ep: The endpoint that has just completed. 183847a1685fSDinh Nguyen * 183947a1685fSDinh Nguyen * An IN transfer has been completed, update the transfer's state and then 184047a1685fSDinh Nguyen * call the relevant completion routines. 184147a1685fSDinh Nguyen */ 18421f91b4ccSFelipe Balbi static void dwc2_hsotg_complete_in(struct dwc2_hsotg *hsotg, 18431f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep) 184447a1685fSDinh Nguyen { 18451f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req = hs_ep->req; 184695c8bc36SAntti Seppälä u32 epsize = dwc2_readl(hsotg->regs + DIEPTSIZ(hs_ep->index)); 184747a1685fSDinh Nguyen int size_left, size_done; 184847a1685fSDinh Nguyen 184947a1685fSDinh Nguyen if (!hs_req) { 185047a1685fSDinh Nguyen dev_dbg(hsotg->dev, "XferCompl but no req\n"); 185147a1685fSDinh Nguyen return; 185247a1685fSDinh Nguyen } 185347a1685fSDinh Nguyen 185447a1685fSDinh Nguyen /* Finish ZLP handling for IN EP0 transactions */ 1855fe0b94abSMian Yousaf Kaukab if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_STATUS_IN) { 1856fe0b94abSMian Yousaf Kaukab dev_dbg(hsotg->dev, "zlp packet sent\n"); 18571f91b4ccSFelipe Balbi dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0); 18589e14d0a5SGregory Herrero if (hsotg->test_mode) { 18599e14d0a5SGregory Herrero int ret; 18609e14d0a5SGregory Herrero 18611f91b4ccSFelipe Balbi ret = dwc2_hsotg_set_test_mode(hsotg, hsotg->test_mode); 18629e14d0a5SGregory Herrero if (ret < 0) { 18639e14d0a5SGregory Herrero dev_dbg(hsotg->dev, "Invalid Test #%d\n", 18649e14d0a5SGregory Herrero hsotg->test_mode); 18651f91b4ccSFelipe Balbi dwc2_hsotg_stall_ep0(hsotg); 18669e14d0a5SGregory Herrero return; 18679e14d0a5SGregory Herrero } 18689e14d0a5SGregory Herrero } 18691f91b4ccSFelipe Balbi dwc2_hsotg_enqueue_setup(hsotg); 187047a1685fSDinh Nguyen return; 187147a1685fSDinh Nguyen } 187247a1685fSDinh Nguyen 187347a1685fSDinh Nguyen /* 187447a1685fSDinh Nguyen * Calculate the size of the transfer by checking how much is left 187547a1685fSDinh Nguyen * in the endpoint size register and then working it out from 187647a1685fSDinh Nguyen * the amount we loaded for the transfer. 187747a1685fSDinh Nguyen * 187847a1685fSDinh Nguyen * We do this even for DMA, as the transfer may have incremented 187947a1685fSDinh Nguyen * past the end of the buffer (DMA transfers are always 32bit 188047a1685fSDinh Nguyen * aligned). 188147a1685fSDinh Nguyen */ 188247a1685fSDinh Nguyen 188347a1685fSDinh Nguyen size_left = DXEPTSIZ_XFERSIZE_GET(epsize); 188447a1685fSDinh Nguyen 188547a1685fSDinh Nguyen size_done = hs_ep->size_loaded - size_left; 188647a1685fSDinh Nguyen size_done += hs_ep->last_load; 188747a1685fSDinh Nguyen 188847a1685fSDinh Nguyen if (hs_req->req.actual != size_done) 188947a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: adjusting size done %d => %d\n", 189047a1685fSDinh Nguyen __func__, hs_req->req.actual, size_done); 189147a1685fSDinh Nguyen 189247a1685fSDinh Nguyen hs_req->req.actual = size_done; 189347a1685fSDinh Nguyen dev_dbg(hsotg->dev, "req->length:%d req->actual:%d req->zero:%d\n", 189447a1685fSDinh Nguyen hs_req->req.length, hs_req->req.actual, hs_req->req.zero); 189547a1685fSDinh Nguyen 189647a1685fSDinh Nguyen if (!size_left && hs_req->req.actual < hs_req->req.length) { 189747a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s trying more for req...\n", __func__); 18981f91b4ccSFelipe Balbi dwc2_hsotg_start_req(hsotg, hs_ep, hs_req, true); 1899fe0b94abSMian Yousaf Kaukab return; 1900fe0b94abSMian Yousaf Kaukab } 1901fe0b94abSMian Yousaf Kaukab 1902f71b5e25SMian Yousaf Kaukab /* Zlp for all endpoints, for ep0 only in DATA IN stage */ 19038a20fa45SMian Yousaf Kaukab if (hs_ep->send_zlp) { 19041f91b4ccSFelipe Balbi dwc2_hsotg_program_zlp(hsotg, hs_ep); 19058a20fa45SMian Yousaf Kaukab hs_ep->send_zlp = 0; 1906f71b5e25SMian Yousaf Kaukab /* transfer will be completed on next complete interrupt */ 1907f71b5e25SMian Yousaf Kaukab return; 1908f71b5e25SMian Yousaf Kaukab } 1909f71b5e25SMian Yousaf Kaukab 1910fe0b94abSMian Yousaf Kaukab if (hs_ep->index == 0 && hsotg->ep0_state == DWC2_EP0_DATA_IN) { 1911fe0b94abSMian Yousaf Kaukab /* Move to STATUS OUT */ 19121f91b4ccSFelipe Balbi dwc2_hsotg_ep0_zlp(hsotg, false); 1913fe0b94abSMian Yousaf Kaukab return; 1914fe0b94abSMian Yousaf Kaukab } 1915fe0b94abSMian Yousaf Kaukab 19161f91b4ccSFelipe Balbi dwc2_hsotg_complete_request(hsotg, hs_ep, hs_req, 0); 191747a1685fSDinh Nguyen } 191847a1685fSDinh Nguyen 191947a1685fSDinh Nguyen /** 19201f91b4ccSFelipe Balbi * dwc2_hsotg_epint - handle an in/out endpoint interrupt 192147a1685fSDinh Nguyen * @hsotg: The driver state 192247a1685fSDinh Nguyen * @idx: The index for the endpoint (0..15) 192347a1685fSDinh Nguyen * @dir_in: Set if this is an IN endpoint 192447a1685fSDinh Nguyen * 192547a1685fSDinh Nguyen * Process and clear any interrupt pending for an individual endpoint 192647a1685fSDinh Nguyen */ 19271f91b4ccSFelipe Balbi static void dwc2_hsotg_epint(struct dwc2_hsotg *hsotg, unsigned int idx, 192847a1685fSDinh Nguyen int dir_in) 192947a1685fSDinh Nguyen { 19301f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = index_to_ep(hsotg, idx, dir_in); 193147a1685fSDinh Nguyen u32 epint_reg = dir_in ? DIEPINT(idx) : DOEPINT(idx); 193247a1685fSDinh Nguyen u32 epctl_reg = dir_in ? DIEPCTL(idx) : DOEPCTL(idx); 193347a1685fSDinh Nguyen u32 epsiz_reg = dir_in ? DIEPTSIZ(idx) : DOEPTSIZ(idx); 193447a1685fSDinh Nguyen u32 ints; 193547a1685fSDinh Nguyen u32 ctrl; 193647a1685fSDinh Nguyen 193795c8bc36SAntti Seppälä ints = dwc2_readl(hsotg->regs + epint_reg); 193895c8bc36SAntti Seppälä ctrl = dwc2_readl(hsotg->regs + epctl_reg); 193947a1685fSDinh Nguyen 194047a1685fSDinh Nguyen /* Clear endpoint interrupts */ 194195c8bc36SAntti Seppälä dwc2_writel(ints, hsotg->regs + epint_reg); 194247a1685fSDinh Nguyen 1943c6f5c050SMian Yousaf Kaukab if (!hs_ep) { 1944c6f5c050SMian Yousaf Kaukab dev_err(hsotg->dev, "%s:Interrupt for unconfigured ep%d(%s)\n", 1945c6f5c050SMian Yousaf Kaukab __func__, idx, dir_in ? "in" : "out"); 1946c6f5c050SMian Yousaf Kaukab return; 1947c6f5c050SMian Yousaf Kaukab } 1948c6f5c050SMian Yousaf Kaukab 194947a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: ep%d(%s) DxEPINT=0x%08x\n", 195047a1685fSDinh Nguyen __func__, idx, dir_in ? "in" : "out", ints); 195147a1685fSDinh Nguyen 1952b787d755SMian Yousaf Kaukab /* Don't process XferCompl interrupt if it is a setup packet */ 1953b787d755SMian Yousaf Kaukab if (idx == 0 && (ints & (DXEPINT_SETUP | DXEPINT_SETUP_RCVD))) 1954b787d755SMian Yousaf Kaukab ints &= ~DXEPINT_XFERCOMPL; 1955b787d755SMian Yousaf Kaukab 195647a1685fSDinh Nguyen if (ints & DXEPINT_XFERCOMPL) { 195747a1685fSDinh Nguyen if (hs_ep->isochronous && hs_ep->interval == 1) { 195847a1685fSDinh Nguyen if (ctrl & DXEPCTL_EOFRNUM) 195947a1685fSDinh Nguyen ctrl |= DXEPCTL_SETEVENFR; 196047a1685fSDinh Nguyen else 196147a1685fSDinh Nguyen ctrl |= DXEPCTL_SETODDFR; 196295c8bc36SAntti Seppälä dwc2_writel(ctrl, hsotg->regs + epctl_reg); 196347a1685fSDinh Nguyen } 196447a1685fSDinh Nguyen 196547a1685fSDinh Nguyen dev_dbg(hsotg->dev, 196647a1685fSDinh Nguyen "%s: XferCompl: DxEPCTL=0x%08x, DXEPTSIZ=%08x\n", 196795c8bc36SAntti Seppälä __func__, dwc2_readl(hsotg->regs + epctl_reg), 196895c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + epsiz_reg)); 196947a1685fSDinh Nguyen 197047a1685fSDinh Nguyen /* 197147a1685fSDinh Nguyen * we get OutDone from the FIFO, so we only need to look 197247a1685fSDinh Nguyen * at completing IN requests here 197347a1685fSDinh Nguyen */ 197447a1685fSDinh Nguyen if (dir_in) { 19751f91b4ccSFelipe Balbi dwc2_hsotg_complete_in(hsotg, hs_ep); 197647a1685fSDinh Nguyen 197747a1685fSDinh Nguyen if (idx == 0 && !hs_ep->req) 19781f91b4ccSFelipe Balbi dwc2_hsotg_enqueue_setup(hsotg); 197947a1685fSDinh Nguyen } else if (using_dma(hsotg)) { 198047a1685fSDinh Nguyen /* 198147a1685fSDinh Nguyen * We're using DMA, we need to fire an OutDone here 198247a1685fSDinh Nguyen * as we ignore the RXFIFO. 198347a1685fSDinh Nguyen */ 198447a1685fSDinh Nguyen 19851f91b4ccSFelipe Balbi dwc2_hsotg_handle_outdone(hsotg, idx); 198647a1685fSDinh Nguyen } 198747a1685fSDinh Nguyen } 198847a1685fSDinh Nguyen 198947a1685fSDinh Nguyen if (ints & DXEPINT_EPDISBLD) { 199047a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: EPDisbld\n", __func__); 199147a1685fSDinh Nguyen 199247a1685fSDinh Nguyen if (dir_in) { 199395c8bc36SAntti Seppälä int epctl = dwc2_readl(hsotg->regs + epctl_reg); 199447a1685fSDinh Nguyen 19951f91b4ccSFelipe Balbi dwc2_hsotg_txfifo_flush(hsotg, hs_ep->fifo_index); 199647a1685fSDinh Nguyen 199747a1685fSDinh Nguyen if ((epctl & DXEPCTL_STALL) && 199847a1685fSDinh Nguyen (epctl & DXEPCTL_EPTYPE_BULK)) { 199995c8bc36SAntti Seppälä int dctl = dwc2_readl(hsotg->regs + DCTL); 200047a1685fSDinh Nguyen 200147a1685fSDinh Nguyen dctl |= DCTL_CGNPINNAK; 200295c8bc36SAntti Seppälä dwc2_writel(dctl, hsotg->regs + DCTL); 200347a1685fSDinh Nguyen } 200447a1685fSDinh Nguyen } 200547a1685fSDinh Nguyen } 200647a1685fSDinh Nguyen 200747a1685fSDinh Nguyen if (ints & DXEPINT_AHBERR) 200847a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: AHBErr\n", __func__); 200947a1685fSDinh Nguyen 201047a1685fSDinh Nguyen if (ints & DXEPINT_SETUP) { /* Setup or Timeout */ 201147a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: Setup/Timeout\n", __func__); 201247a1685fSDinh Nguyen 201347a1685fSDinh Nguyen if (using_dma(hsotg) && idx == 0) { 201447a1685fSDinh Nguyen /* 201547a1685fSDinh Nguyen * this is the notification we've received a 201647a1685fSDinh Nguyen * setup packet. In non-DMA mode we'd get this 201747a1685fSDinh Nguyen * from the RXFIFO, instead we need to process 201847a1685fSDinh Nguyen * the setup here. 201947a1685fSDinh Nguyen */ 202047a1685fSDinh Nguyen 202147a1685fSDinh Nguyen if (dir_in) 202247a1685fSDinh Nguyen WARN_ON_ONCE(1); 202347a1685fSDinh Nguyen else 20241f91b4ccSFelipe Balbi dwc2_hsotg_handle_outdone(hsotg, 0); 202547a1685fSDinh Nguyen } 202647a1685fSDinh Nguyen } 202747a1685fSDinh Nguyen 202847a1685fSDinh Nguyen if (ints & DXEPINT_BACK2BACKSETUP) 202947a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: B2BSetup/INEPNakEff\n", __func__); 203047a1685fSDinh Nguyen 203147a1685fSDinh Nguyen if (dir_in && !hs_ep->isochronous) { 203247a1685fSDinh Nguyen /* not sure if this is important, but we'll clear it anyway */ 203347a1685fSDinh Nguyen if (ints & DIEPMSK_INTKNTXFEMPMSK) { 203447a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: ep%d: INTknTXFEmpMsk\n", 203547a1685fSDinh Nguyen __func__, idx); 203647a1685fSDinh Nguyen } 203747a1685fSDinh Nguyen 203847a1685fSDinh Nguyen /* this probably means something bad is happening */ 203947a1685fSDinh Nguyen if (ints & DIEPMSK_INTKNEPMISMSK) { 204047a1685fSDinh Nguyen dev_warn(hsotg->dev, "%s: ep%d: INTknEP\n", 204147a1685fSDinh Nguyen __func__, idx); 204247a1685fSDinh Nguyen } 204347a1685fSDinh Nguyen 204447a1685fSDinh Nguyen /* FIFO has space or is empty (see GAHBCFG) */ 204547a1685fSDinh Nguyen if (hsotg->dedicated_fifos && 204647a1685fSDinh Nguyen ints & DIEPMSK_TXFIFOEMPTY) { 204747a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: ep%d: TxFIFOEmpty\n", 204847a1685fSDinh Nguyen __func__, idx); 204947a1685fSDinh Nguyen if (!using_dma(hsotg)) 20501f91b4ccSFelipe Balbi dwc2_hsotg_trytx(hsotg, hs_ep); 205147a1685fSDinh Nguyen } 205247a1685fSDinh Nguyen } 205347a1685fSDinh Nguyen } 205447a1685fSDinh Nguyen 205547a1685fSDinh Nguyen /** 20561f91b4ccSFelipe Balbi * dwc2_hsotg_irq_enumdone - Handle EnumDone interrupt (enumeration done) 205747a1685fSDinh Nguyen * @hsotg: The device state. 205847a1685fSDinh Nguyen * 205947a1685fSDinh Nguyen * Handle updating the device settings after the enumeration phase has 206047a1685fSDinh Nguyen * been completed. 206147a1685fSDinh Nguyen */ 20621f91b4ccSFelipe Balbi static void dwc2_hsotg_irq_enumdone(struct dwc2_hsotg *hsotg) 206347a1685fSDinh Nguyen { 206495c8bc36SAntti Seppälä u32 dsts = dwc2_readl(hsotg->regs + DSTS); 20659b2667f1SJingoo Han int ep0_mps = 0, ep_mps = 8; 206647a1685fSDinh Nguyen 206747a1685fSDinh Nguyen /* 206847a1685fSDinh Nguyen * This should signal the finish of the enumeration phase 206947a1685fSDinh Nguyen * of the USB handshaking, so we should now know what rate 207047a1685fSDinh Nguyen * we connected at. 207147a1685fSDinh Nguyen */ 207247a1685fSDinh Nguyen 207347a1685fSDinh Nguyen dev_dbg(hsotg->dev, "EnumDone (DSTS=0x%08x)\n", dsts); 207447a1685fSDinh Nguyen 207547a1685fSDinh Nguyen /* 207647a1685fSDinh Nguyen * note, since we're limited by the size of transfer on EP0, and 207747a1685fSDinh Nguyen * it seems IN transfers must be a even number of packets we do 207847a1685fSDinh Nguyen * not advertise a 64byte MPS on EP0. 207947a1685fSDinh Nguyen */ 208047a1685fSDinh Nguyen 208147a1685fSDinh Nguyen /* catch both EnumSpd_FS and EnumSpd_FS48 */ 208247a1685fSDinh Nguyen switch (dsts & DSTS_ENUMSPD_MASK) { 208347a1685fSDinh Nguyen case DSTS_ENUMSPD_FS: 208447a1685fSDinh Nguyen case DSTS_ENUMSPD_FS48: 208547a1685fSDinh Nguyen hsotg->gadget.speed = USB_SPEED_FULL; 208647a1685fSDinh Nguyen ep0_mps = EP0_MPS_LIMIT; 208747a1685fSDinh Nguyen ep_mps = 1023; 208847a1685fSDinh Nguyen break; 208947a1685fSDinh Nguyen 209047a1685fSDinh Nguyen case DSTS_ENUMSPD_HS: 209147a1685fSDinh Nguyen hsotg->gadget.speed = USB_SPEED_HIGH; 209247a1685fSDinh Nguyen ep0_mps = EP0_MPS_LIMIT; 209347a1685fSDinh Nguyen ep_mps = 1024; 209447a1685fSDinh Nguyen break; 209547a1685fSDinh Nguyen 209647a1685fSDinh Nguyen case DSTS_ENUMSPD_LS: 209747a1685fSDinh Nguyen hsotg->gadget.speed = USB_SPEED_LOW; 209847a1685fSDinh Nguyen /* 209947a1685fSDinh Nguyen * note, we don't actually support LS in this driver at the 210047a1685fSDinh Nguyen * moment, and the documentation seems to imply that it isn't 210147a1685fSDinh Nguyen * supported by the PHYs on some of the devices. 210247a1685fSDinh Nguyen */ 210347a1685fSDinh Nguyen break; 210447a1685fSDinh Nguyen } 210547a1685fSDinh Nguyen dev_info(hsotg->dev, "new device is %s\n", 210647a1685fSDinh Nguyen usb_speed_string(hsotg->gadget.speed)); 210747a1685fSDinh Nguyen 210847a1685fSDinh Nguyen /* 210947a1685fSDinh Nguyen * we should now know the maximum packet size for an 211047a1685fSDinh Nguyen * endpoint, so set the endpoints to a default value. 211147a1685fSDinh Nguyen */ 211247a1685fSDinh Nguyen 211347a1685fSDinh Nguyen if (ep0_mps) { 211447a1685fSDinh Nguyen int i; 2115c6f5c050SMian Yousaf Kaukab /* Initialize ep0 for both in and out directions */ 21161f91b4ccSFelipe Balbi dwc2_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps, 1); 21171f91b4ccSFelipe Balbi dwc2_hsotg_set_ep_maxpacket(hsotg, 0, ep0_mps, 0); 2118c6f5c050SMian Yousaf Kaukab for (i = 1; i < hsotg->num_of_eps; i++) { 2119c6f5c050SMian Yousaf Kaukab if (hsotg->eps_in[i]) 21201f91b4ccSFelipe Balbi dwc2_hsotg_set_ep_maxpacket(hsotg, i, ep_mps, 1); 2121c6f5c050SMian Yousaf Kaukab if (hsotg->eps_out[i]) 21221f91b4ccSFelipe Balbi dwc2_hsotg_set_ep_maxpacket(hsotg, i, ep_mps, 0); 2123c6f5c050SMian Yousaf Kaukab } 212447a1685fSDinh Nguyen } 212547a1685fSDinh Nguyen 212647a1685fSDinh Nguyen /* ensure after enumeration our EP0 is active */ 212747a1685fSDinh Nguyen 21281f91b4ccSFelipe Balbi dwc2_hsotg_enqueue_setup(hsotg); 212947a1685fSDinh Nguyen 213047a1685fSDinh Nguyen dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n", 213195c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + DIEPCTL0), 213295c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + DOEPCTL0)); 213347a1685fSDinh Nguyen } 213447a1685fSDinh Nguyen 213547a1685fSDinh Nguyen /** 213647a1685fSDinh Nguyen * kill_all_requests - remove all requests from the endpoint's queue 213747a1685fSDinh Nguyen * @hsotg: The device state. 213847a1685fSDinh Nguyen * @ep: The endpoint the requests may be on. 213947a1685fSDinh Nguyen * @result: The result code to use. 214047a1685fSDinh Nguyen * 214147a1685fSDinh Nguyen * Go through the requests on the given endpoint and mark them 214247a1685fSDinh Nguyen * completed with the given result code. 214347a1685fSDinh Nguyen */ 2144941fcce4SDinh Nguyen static void kill_all_requests(struct dwc2_hsotg *hsotg, 21451f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *ep, 21466b448af4SRobert Baldyga int result) 214747a1685fSDinh Nguyen { 21481f91b4ccSFelipe Balbi struct dwc2_hsotg_req *req, *treq; 2149b203d0a2SRobert Baldyga unsigned size; 215047a1685fSDinh Nguyen 21516b448af4SRobert Baldyga ep->req = NULL; 215247a1685fSDinh Nguyen 21536b448af4SRobert Baldyga list_for_each_entry_safe(req, treq, &ep->queue, queue) 21541f91b4ccSFelipe Balbi dwc2_hsotg_complete_request(hsotg, ep, req, 215547a1685fSDinh Nguyen result); 21566b448af4SRobert Baldyga 2157b203d0a2SRobert Baldyga if (!hsotg->dedicated_fifos) 2158b203d0a2SRobert Baldyga return; 215995c8bc36SAntti Seppälä size = (dwc2_readl(hsotg->regs + DTXFSTS(ep->index)) & 0xffff) * 4; 2160b203d0a2SRobert Baldyga if (size < ep->fifo_size) 21611f91b4ccSFelipe Balbi dwc2_hsotg_txfifo_flush(hsotg, ep->fifo_index); 216247a1685fSDinh Nguyen } 216347a1685fSDinh Nguyen 216447a1685fSDinh Nguyen /** 21651f91b4ccSFelipe Balbi * dwc2_hsotg_disconnect - disconnect service 216647a1685fSDinh Nguyen * @hsotg: The device state. 216747a1685fSDinh Nguyen * 216847a1685fSDinh Nguyen * The device has been disconnected. Remove all current 216947a1685fSDinh Nguyen * transactions and signal the gadget driver that this 217047a1685fSDinh Nguyen * has happened. 217147a1685fSDinh Nguyen */ 21721f91b4ccSFelipe Balbi void dwc2_hsotg_disconnect(struct dwc2_hsotg *hsotg) 217347a1685fSDinh Nguyen { 217447a1685fSDinh Nguyen unsigned ep; 217547a1685fSDinh Nguyen 21764ace06e8SMarek Szyprowski if (!hsotg->connected) 21774ace06e8SMarek Szyprowski return; 21784ace06e8SMarek Szyprowski 21794ace06e8SMarek Szyprowski hsotg->connected = 0; 21809e14d0a5SGregory Herrero hsotg->test_mode = 0; 2181c6f5c050SMian Yousaf Kaukab 2182c6f5c050SMian Yousaf Kaukab for (ep = 0; ep < hsotg->num_of_eps; ep++) { 2183c6f5c050SMian Yousaf Kaukab if (hsotg->eps_in[ep]) 2184c6f5c050SMian Yousaf Kaukab kill_all_requests(hsotg, hsotg->eps_in[ep], 2185c6f5c050SMian Yousaf Kaukab -ESHUTDOWN); 2186c6f5c050SMian Yousaf Kaukab if (hsotg->eps_out[ep]) 2187c6f5c050SMian Yousaf Kaukab kill_all_requests(hsotg, hsotg->eps_out[ep], 2188c6f5c050SMian Yousaf Kaukab -ESHUTDOWN); 2189c6f5c050SMian Yousaf Kaukab } 219047a1685fSDinh Nguyen 219147a1685fSDinh Nguyen call_gadget(hsotg, disconnect); 2192065d3931SGregory Herrero hsotg->lx_state = DWC2_L3; 219347a1685fSDinh Nguyen } 219447a1685fSDinh Nguyen 219547a1685fSDinh Nguyen /** 21961f91b4ccSFelipe Balbi * dwc2_hsotg_irq_fifoempty - TX FIFO empty interrupt handler 219747a1685fSDinh Nguyen * @hsotg: The device state: 219847a1685fSDinh Nguyen * @periodic: True if this is a periodic FIFO interrupt 219947a1685fSDinh Nguyen */ 22001f91b4ccSFelipe Balbi static void dwc2_hsotg_irq_fifoempty(struct dwc2_hsotg *hsotg, bool periodic) 220147a1685fSDinh Nguyen { 22021f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *ep; 220347a1685fSDinh Nguyen int epno, ret; 220447a1685fSDinh Nguyen 220547a1685fSDinh Nguyen /* look through for any more data to transmit */ 220647a1685fSDinh Nguyen for (epno = 0; epno < hsotg->num_of_eps; epno++) { 2207c6f5c050SMian Yousaf Kaukab ep = index_to_ep(hsotg, epno, 1); 2208c6f5c050SMian Yousaf Kaukab 2209c6f5c050SMian Yousaf Kaukab if (!ep) 2210c6f5c050SMian Yousaf Kaukab continue; 221147a1685fSDinh Nguyen 221247a1685fSDinh Nguyen if (!ep->dir_in) 221347a1685fSDinh Nguyen continue; 221447a1685fSDinh Nguyen 221547a1685fSDinh Nguyen if ((periodic && !ep->periodic) || 221647a1685fSDinh Nguyen (!periodic && ep->periodic)) 221747a1685fSDinh Nguyen continue; 221847a1685fSDinh Nguyen 22191f91b4ccSFelipe Balbi ret = dwc2_hsotg_trytx(hsotg, ep); 222047a1685fSDinh Nguyen if (ret < 0) 222147a1685fSDinh Nguyen break; 222247a1685fSDinh Nguyen } 222347a1685fSDinh Nguyen } 222447a1685fSDinh Nguyen 222547a1685fSDinh Nguyen /* IRQ flags which will trigger a retry around the IRQ loop */ 222647a1685fSDinh Nguyen #define IRQ_RETRY_MASK (GINTSTS_NPTXFEMP | \ 222747a1685fSDinh Nguyen GINTSTS_PTXFEMP | \ 222847a1685fSDinh Nguyen GINTSTS_RXFLVL) 222947a1685fSDinh Nguyen 223047a1685fSDinh Nguyen /** 22311f91b4ccSFelipe Balbi * dwc2_hsotg_corereset - issue softreset to the core 223247a1685fSDinh Nguyen * @hsotg: The device state 223347a1685fSDinh Nguyen * 223447a1685fSDinh Nguyen * Issue a soft reset to the core, and await the core finishing it. 223547a1685fSDinh Nguyen */ 22361f91b4ccSFelipe Balbi static int dwc2_hsotg_corereset(struct dwc2_hsotg *hsotg) 223747a1685fSDinh Nguyen { 223847a1685fSDinh Nguyen int timeout; 223947a1685fSDinh Nguyen u32 grstctl; 224047a1685fSDinh Nguyen 224147a1685fSDinh Nguyen dev_dbg(hsotg->dev, "resetting core\n"); 224247a1685fSDinh Nguyen 224347a1685fSDinh Nguyen /* issue soft reset */ 224495c8bc36SAntti Seppälä dwc2_writel(GRSTCTL_CSFTRST, hsotg->regs + GRSTCTL); 224547a1685fSDinh Nguyen 224647a1685fSDinh Nguyen timeout = 10000; 224747a1685fSDinh Nguyen do { 224895c8bc36SAntti Seppälä grstctl = dwc2_readl(hsotg->regs + GRSTCTL); 224947a1685fSDinh Nguyen } while ((grstctl & GRSTCTL_CSFTRST) && timeout-- > 0); 225047a1685fSDinh Nguyen 225147a1685fSDinh Nguyen if (grstctl & GRSTCTL_CSFTRST) { 225247a1685fSDinh Nguyen dev_err(hsotg->dev, "Failed to get CSftRst asserted\n"); 225347a1685fSDinh Nguyen return -EINVAL; 225447a1685fSDinh Nguyen } 225547a1685fSDinh Nguyen 225647a1685fSDinh Nguyen timeout = 10000; 225747a1685fSDinh Nguyen 225847a1685fSDinh Nguyen while (1) { 225995c8bc36SAntti Seppälä u32 grstctl = dwc2_readl(hsotg->regs + GRSTCTL); 226047a1685fSDinh Nguyen 226147a1685fSDinh Nguyen if (timeout-- < 0) { 226247a1685fSDinh Nguyen dev_info(hsotg->dev, 226347a1685fSDinh Nguyen "%s: reset failed, GRSTCTL=%08x\n", 226447a1685fSDinh Nguyen __func__, grstctl); 226547a1685fSDinh Nguyen return -ETIMEDOUT; 226647a1685fSDinh Nguyen } 226747a1685fSDinh Nguyen 226847a1685fSDinh Nguyen if (!(grstctl & GRSTCTL_AHBIDLE)) 226947a1685fSDinh Nguyen continue; 227047a1685fSDinh Nguyen 227147a1685fSDinh Nguyen break; /* reset done */ 227247a1685fSDinh Nguyen } 227347a1685fSDinh Nguyen 227447a1685fSDinh Nguyen dev_dbg(hsotg->dev, "reset successful\n"); 227547a1685fSDinh Nguyen return 0; 227647a1685fSDinh Nguyen } 227747a1685fSDinh Nguyen 227847a1685fSDinh Nguyen /** 22791f91b4ccSFelipe Balbi * dwc2_hsotg_core_init - issue softreset to the core 228047a1685fSDinh Nguyen * @hsotg: The device state 228147a1685fSDinh Nguyen * 228247a1685fSDinh Nguyen * Issue a soft reset to the core, and await the core finishing it. 228347a1685fSDinh Nguyen */ 22841f91b4ccSFelipe Balbi void dwc2_hsotg_core_init_disconnected(struct dwc2_hsotg *hsotg, 2285643cc4deSGregory Herrero bool is_usb_reset) 228647a1685fSDinh Nguyen { 2287643cc4deSGregory Herrero u32 val; 2288643cc4deSGregory Herrero 2289643cc4deSGregory Herrero if (!is_usb_reset) 22901f91b4ccSFelipe Balbi dwc2_hsotg_corereset(hsotg); 229147a1685fSDinh Nguyen 229247a1685fSDinh Nguyen /* 229347a1685fSDinh Nguyen * we must now enable ep0 ready for host detection and then 229447a1685fSDinh Nguyen * set configuration. 229547a1685fSDinh Nguyen */ 229647a1685fSDinh Nguyen 229747a1685fSDinh Nguyen /* set the PLL on, remove the HNP/SRP and set the PHY */ 2298fa4a8d72SMian Yousaf Kaukab val = (hsotg->phyif == GUSBCFG_PHYIF8) ? 9 : 5; 229995c8bc36SAntti Seppälä dwc2_writel(hsotg->phyif | GUSBCFG_TOUTCAL(7) | 2300f889f23dSMian Yousaf Kaukab (val << GUSBCFG_USBTRDTIM_SHIFT), hsotg->regs + GUSBCFG); 230147a1685fSDinh Nguyen 23021f91b4ccSFelipe Balbi dwc2_hsotg_init_fifo(hsotg); 230347a1685fSDinh Nguyen 2304643cc4deSGregory Herrero if (!is_usb_reset) 230547a1685fSDinh Nguyen __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON); 230647a1685fSDinh Nguyen 230795c8bc36SAntti Seppälä dwc2_writel(DCFG_EPMISCNT(1) | DCFG_DEVSPD_HS, hsotg->regs + DCFG); 230847a1685fSDinh Nguyen 230947a1685fSDinh Nguyen /* Clear any pending OTG interrupts */ 231095c8bc36SAntti Seppälä dwc2_writel(0xffffffff, hsotg->regs + GOTGINT); 231147a1685fSDinh Nguyen 231247a1685fSDinh Nguyen /* Clear any pending interrupts */ 231395c8bc36SAntti Seppälä dwc2_writel(0xffffffff, hsotg->regs + GINTSTS); 231447a1685fSDinh Nguyen 231595c8bc36SAntti Seppälä dwc2_writel(GINTSTS_ERLYSUSP | GINTSTS_SESSREQINT | 231647a1685fSDinh Nguyen GINTSTS_GOUTNAKEFF | GINTSTS_GINNAKEFF | 231747a1685fSDinh Nguyen GINTSTS_CONIDSTSCHNG | GINTSTS_USBRST | 23184876886fSGregory Herrero GINTSTS_RESETDET | GINTSTS_ENUMDONE | 23194876886fSGregory Herrero GINTSTS_OTGINT | GINTSTS_USBSUSP | 23204876886fSGregory Herrero GINTSTS_WKUPINT, 232147a1685fSDinh Nguyen hsotg->regs + GINTMSK); 232247a1685fSDinh Nguyen 232347a1685fSDinh Nguyen if (using_dma(hsotg)) 232495c8bc36SAntti Seppälä dwc2_writel(GAHBCFG_GLBL_INTR_EN | GAHBCFG_DMA_EN | 23255f05048eSGregory Herrero (GAHBCFG_HBSTLEN_INCR4 << GAHBCFG_HBSTLEN_SHIFT), 232647a1685fSDinh Nguyen hsotg->regs + GAHBCFG); 232747a1685fSDinh Nguyen else 232895c8bc36SAntti Seppälä dwc2_writel(((hsotg->dedicated_fifos) ? 232995c8bc36SAntti Seppälä (GAHBCFG_NP_TXF_EMP_LVL | 233047a1685fSDinh Nguyen GAHBCFG_P_TXF_EMP_LVL) : 0) | 233195c8bc36SAntti Seppälä GAHBCFG_GLBL_INTR_EN, hsotg->regs + GAHBCFG); 233247a1685fSDinh Nguyen 233347a1685fSDinh Nguyen /* 233447a1685fSDinh Nguyen * If INTknTXFEmpMsk is enabled, it's important to disable ep interrupts 233547a1685fSDinh Nguyen * when we have no data to transfer. Otherwise we get being flooded by 233647a1685fSDinh Nguyen * interrupts. 233747a1685fSDinh Nguyen */ 233847a1685fSDinh Nguyen 233995c8bc36SAntti Seppälä dwc2_writel(((hsotg->dedicated_fifos && !using_dma(hsotg)) ? 23406ff2e832SMian Yousaf Kaukab DIEPMSK_TXFIFOEMPTY | DIEPMSK_INTKNTXFEMPMSK : 0) | 234147a1685fSDinh Nguyen DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK | 234247a1685fSDinh Nguyen DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK | 234347a1685fSDinh Nguyen DIEPMSK_INTKNEPMISMSK, 234447a1685fSDinh Nguyen hsotg->regs + DIEPMSK); 234547a1685fSDinh Nguyen 234647a1685fSDinh Nguyen /* 234747a1685fSDinh Nguyen * don't need XferCompl, we get that from RXFIFO in slave mode. In 234847a1685fSDinh Nguyen * DMA mode we may need this. 234947a1685fSDinh Nguyen */ 235095c8bc36SAntti Seppälä dwc2_writel((using_dma(hsotg) ? (DIEPMSK_XFERCOMPLMSK | 235147a1685fSDinh Nguyen DIEPMSK_TIMEOUTMSK) : 0) | 235247a1685fSDinh Nguyen DOEPMSK_EPDISBLDMSK | DOEPMSK_AHBERRMSK | 235347a1685fSDinh Nguyen DOEPMSK_SETUPMSK, 235447a1685fSDinh Nguyen hsotg->regs + DOEPMSK); 235547a1685fSDinh Nguyen 235695c8bc36SAntti Seppälä dwc2_writel(0, hsotg->regs + DAINTMSK); 235747a1685fSDinh Nguyen 235847a1685fSDinh Nguyen dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n", 235995c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + DIEPCTL0), 236095c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + DOEPCTL0)); 236147a1685fSDinh Nguyen 236247a1685fSDinh Nguyen /* enable in and out endpoint interrupts */ 23631f91b4ccSFelipe Balbi dwc2_hsotg_en_gsint(hsotg, GINTSTS_OEPINT | GINTSTS_IEPINT); 236447a1685fSDinh Nguyen 236547a1685fSDinh Nguyen /* 236647a1685fSDinh Nguyen * Enable the RXFIFO when in slave mode, as this is how we collect 236747a1685fSDinh Nguyen * the data. In DMA mode, we get events from the FIFO but also 236847a1685fSDinh Nguyen * things we cannot process, so do not use it. 236947a1685fSDinh Nguyen */ 237047a1685fSDinh Nguyen if (!using_dma(hsotg)) 23711f91b4ccSFelipe Balbi dwc2_hsotg_en_gsint(hsotg, GINTSTS_RXFLVL); 237247a1685fSDinh Nguyen 237347a1685fSDinh Nguyen /* Enable interrupts for EP0 in and out */ 23741f91b4ccSFelipe Balbi dwc2_hsotg_ctrl_epint(hsotg, 0, 0, 1); 23751f91b4ccSFelipe Balbi dwc2_hsotg_ctrl_epint(hsotg, 0, 1, 1); 237647a1685fSDinh Nguyen 2377643cc4deSGregory Herrero if (!is_usb_reset) { 237847a1685fSDinh Nguyen __orr32(hsotg->regs + DCTL, DCTL_PWRONPRGDONE); 237947a1685fSDinh Nguyen udelay(10); /* see openiboot */ 238047a1685fSDinh Nguyen __bic32(hsotg->regs + DCTL, DCTL_PWRONPRGDONE); 2381643cc4deSGregory Herrero } 238247a1685fSDinh Nguyen 238395c8bc36SAntti Seppälä dev_dbg(hsotg->dev, "DCTL=0x%08x\n", dwc2_readl(hsotg->regs + DCTL)); 238447a1685fSDinh Nguyen 238547a1685fSDinh Nguyen /* 238647a1685fSDinh Nguyen * DxEPCTL_USBActEp says RO in manual, but seems to be set by 238747a1685fSDinh Nguyen * writing to the EPCTL register.. 238847a1685fSDinh Nguyen */ 238947a1685fSDinh Nguyen 239047a1685fSDinh Nguyen /* set to read 1 8byte packet */ 239195c8bc36SAntti Seppälä dwc2_writel(DXEPTSIZ_MC(1) | DXEPTSIZ_PKTCNT(1) | 239247a1685fSDinh Nguyen DXEPTSIZ_XFERSIZE(8), hsotg->regs + DOEPTSIZ0); 239347a1685fSDinh Nguyen 239495c8bc36SAntti Seppälä dwc2_writel(dwc2_hsotg_ep0_mps(hsotg->eps_out[0]->ep.maxpacket) | 239547a1685fSDinh Nguyen DXEPCTL_CNAK | DXEPCTL_EPENA | 239647a1685fSDinh Nguyen DXEPCTL_USBACTEP, 239747a1685fSDinh Nguyen hsotg->regs + DOEPCTL0); 239847a1685fSDinh Nguyen 239947a1685fSDinh Nguyen /* enable, but don't activate EP0in */ 240095c8bc36SAntti Seppälä dwc2_writel(dwc2_hsotg_ep0_mps(hsotg->eps_out[0]->ep.maxpacket) | 240147a1685fSDinh Nguyen DXEPCTL_USBACTEP, hsotg->regs + DIEPCTL0); 240247a1685fSDinh Nguyen 24031f91b4ccSFelipe Balbi dwc2_hsotg_enqueue_setup(hsotg); 240447a1685fSDinh Nguyen 240547a1685fSDinh Nguyen dev_dbg(hsotg->dev, "EP0: DIEPCTL0=0x%08x, DOEPCTL0=0x%08x\n", 240695c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + DIEPCTL0), 240795c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + DOEPCTL0)); 240847a1685fSDinh Nguyen 240947a1685fSDinh Nguyen /* clear global NAKs */ 2410643cc4deSGregory Herrero val = DCTL_CGOUTNAK | DCTL_CGNPINNAK; 2411643cc4deSGregory Herrero if (!is_usb_reset) 2412643cc4deSGregory Herrero val |= DCTL_SFTDISCON; 2413643cc4deSGregory Herrero __orr32(hsotg->regs + DCTL, val); 241447a1685fSDinh Nguyen 241547a1685fSDinh Nguyen /* must be at-least 3ms to allow bus to see disconnect */ 241647a1685fSDinh Nguyen mdelay(3); 241747a1685fSDinh Nguyen 2418ac3c81f3SMarek Szyprowski hsotg->last_rst = jiffies; 2419065d3931SGregory Herrero hsotg->lx_state = DWC2_L0; 2420ad38dc5dSMarek Szyprowski } 2421ac3c81f3SMarek Szyprowski 24221f91b4ccSFelipe Balbi static void dwc2_hsotg_core_disconnect(struct dwc2_hsotg *hsotg) 2423ad38dc5dSMarek Szyprowski { 2424ad38dc5dSMarek Szyprowski /* set the soft-disconnect bit */ 2425ad38dc5dSMarek Szyprowski __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON); 2426ad38dc5dSMarek Szyprowski } 2427ad38dc5dSMarek Szyprowski 24281f91b4ccSFelipe Balbi void dwc2_hsotg_core_connect(struct dwc2_hsotg *hsotg) 2429ad38dc5dSMarek Szyprowski { 243047a1685fSDinh Nguyen /* remove the soft-disconnect and let's go */ 243147a1685fSDinh Nguyen __bic32(hsotg->regs + DCTL, DCTL_SFTDISCON); 243247a1685fSDinh Nguyen } 243347a1685fSDinh Nguyen 243447a1685fSDinh Nguyen /** 24351f91b4ccSFelipe Balbi * dwc2_hsotg_irq - handle device interrupt 243647a1685fSDinh Nguyen * @irq: The IRQ number triggered 243747a1685fSDinh Nguyen * @pw: The pw value when registered the handler. 243847a1685fSDinh Nguyen */ 24391f91b4ccSFelipe Balbi static irqreturn_t dwc2_hsotg_irq(int irq, void *pw) 244047a1685fSDinh Nguyen { 2441941fcce4SDinh Nguyen struct dwc2_hsotg *hsotg = pw; 244247a1685fSDinh Nguyen int retry_count = 8; 244347a1685fSDinh Nguyen u32 gintsts; 244447a1685fSDinh Nguyen u32 gintmsk; 244547a1685fSDinh Nguyen 244647a1685fSDinh Nguyen spin_lock(&hsotg->lock); 244747a1685fSDinh Nguyen irq_retry: 244895c8bc36SAntti Seppälä gintsts = dwc2_readl(hsotg->regs + GINTSTS); 244995c8bc36SAntti Seppälä gintmsk = dwc2_readl(hsotg->regs + GINTMSK); 245047a1685fSDinh Nguyen 245147a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: %08x %08x (%08x) retry %d\n", 245247a1685fSDinh Nguyen __func__, gintsts, gintsts & gintmsk, gintmsk, retry_count); 245347a1685fSDinh Nguyen 245447a1685fSDinh Nguyen gintsts &= gintmsk; 245547a1685fSDinh Nguyen 245647a1685fSDinh Nguyen if (gintsts & GINTSTS_ENUMDONE) { 245795c8bc36SAntti Seppälä dwc2_writel(GINTSTS_ENUMDONE, hsotg->regs + GINTSTS); 245847a1685fSDinh Nguyen 24591f91b4ccSFelipe Balbi dwc2_hsotg_irq_enumdone(hsotg); 246047a1685fSDinh Nguyen } 246147a1685fSDinh Nguyen 246247a1685fSDinh Nguyen if (gintsts & (GINTSTS_OEPINT | GINTSTS_IEPINT)) { 246395c8bc36SAntti Seppälä u32 daint = dwc2_readl(hsotg->regs + DAINT); 246495c8bc36SAntti Seppälä u32 daintmsk = dwc2_readl(hsotg->regs + DAINTMSK); 246547a1685fSDinh Nguyen u32 daint_out, daint_in; 246647a1685fSDinh Nguyen int ep; 246747a1685fSDinh Nguyen 246847a1685fSDinh Nguyen daint &= daintmsk; 246947a1685fSDinh Nguyen daint_out = daint >> DAINT_OUTEP_SHIFT; 247047a1685fSDinh Nguyen daint_in = daint & ~(daint_out << DAINT_OUTEP_SHIFT); 247147a1685fSDinh Nguyen 247247a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: daint=%08x\n", __func__, daint); 247347a1685fSDinh Nguyen 2474cec87f1dSMian Yousaf Kaukab for (ep = 0; ep < hsotg->num_of_eps && daint_out; 2475cec87f1dSMian Yousaf Kaukab ep++, daint_out >>= 1) { 247647a1685fSDinh Nguyen if (daint_out & 1) 24771f91b4ccSFelipe Balbi dwc2_hsotg_epint(hsotg, ep, 0); 247847a1685fSDinh Nguyen } 247947a1685fSDinh Nguyen 2480cec87f1dSMian Yousaf Kaukab for (ep = 0; ep < hsotg->num_of_eps && daint_in; 2481cec87f1dSMian Yousaf Kaukab ep++, daint_in >>= 1) { 248247a1685fSDinh Nguyen if (daint_in & 1) 24831f91b4ccSFelipe Balbi dwc2_hsotg_epint(hsotg, ep, 1); 248447a1685fSDinh Nguyen } 248547a1685fSDinh Nguyen } 248647a1685fSDinh Nguyen 24874876886fSGregory Herrero if (gintsts & GINTSTS_RESETDET) { 24884876886fSGregory Herrero dev_dbg(hsotg->dev, "%s: USBRstDet\n", __func__); 24894876886fSGregory Herrero 249095c8bc36SAntti Seppälä dwc2_writel(GINTSTS_RESETDET, hsotg->regs + GINTSTS); 24914876886fSGregory Herrero 24924876886fSGregory Herrero /* This event must be used only if controller is suspended */ 24934876886fSGregory Herrero if (hsotg->lx_state == DWC2_L2) { 24944876886fSGregory Herrero dwc2_exit_hibernation(hsotg, true); 24954876886fSGregory Herrero hsotg->lx_state = DWC2_L0; 24964876886fSGregory Herrero } 24974876886fSGregory Herrero } 24984876886fSGregory Herrero 24994876886fSGregory Herrero if (gintsts & (GINTSTS_USBRST | GINTSTS_RESETDET)) { 250047a1685fSDinh Nguyen 250195c8bc36SAntti Seppälä u32 usb_status = dwc2_readl(hsotg->regs + GOTGCTL); 250247a1685fSDinh Nguyen 25039599815dSMarek Szyprowski dev_dbg(hsotg->dev, "%s: USBRst\n", __func__); 250447a1685fSDinh Nguyen dev_dbg(hsotg->dev, "GNPTXSTS=%08x\n", 250595c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + GNPTXSTS)); 250647a1685fSDinh Nguyen 250795c8bc36SAntti Seppälä dwc2_writel(GINTSTS_USBRST, hsotg->regs + GINTSTS); 250847a1685fSDinh Nguyen 25096d713c15SMian Yousaf Kaukab /* Report disconnection if it is not already done. */ 25101f91b4ccSFelipe Balbi dwc2_hsotg_disconnect(hsotg); 25116d713c15SMian Yousaf Kaukab 251247a1685fSDinh Nguyen if (usb_status & GOTGCTL_BSESVLD) { 251347a1685fSDinh Nguyen if (time_after(jiffies, hsotg->last_rst + 251447a1685fSDinh Nguyen msecs_to_jiffies(200))) { 251547a1685fSDinh Nguyen 2516c6f5c050SMian Yousaf Kaukab kill_all_requests(hsotg, hsotg->eps_out[0], 25176b448af4SRobert Baldyga -ECONNRESET); 251847a1685fSDinh Nguyen 25191f91b4ccSFelipe Balbi dwc2_hsotg_core_init_disconnected(hsotg, true); 252047a1685fSDinh Nguyen } 252147a1685fSDinh Nguyen } 252247a1685fSDinh Nguyen } 252347a1685fSDinh Nguyen 252447a1685fSDinh Nguyen /* check both FIFOs */ 252547a1685fSDinh Nguyen 252647a1685fSDinh Nguyen if (gintsts & GINTSTS_NPTXFEMP) { 252747a1685fSDinh Nguyen dev_dbg(hsotg->dev, "NPTxFEmp\n"); 252847a1685fSDinh Nguyen 252947a1685fSDinh Nguyen /* 253047a1685fSDinh Nguyen * Disable the interrupt to stop it happening again 253147a1685fSDinh Nguyen * unless one of these endpoint routines decides that 253247a1685fSDinh Nguyen * it needs re-enabling 253347a1685fSDinh Nguyen */ 253447a1685fSDinh Nguyen 25351f91b4ccSFelipe Balbi dwc2_hsotg_disable_gsint(hsotg, GINTSTS_NPTXFEMP); 25361f91b4ccSFelipe Balbi dwc2_hsotg_irq_fifoempty(hsotg, false); 253747a1685fSDinh Nguyen } 253847a1685fSDinh Nguyen 253947a1685fSDinh Nguyen if (gintsts & GINTSTS_PTXFEMP) { 254047a1685fSDinh Nguyen dev_dbg(hsotg->dev, "PTxFEmp\n"); 254147a1685fSDinh Nguyen 254247a1685fSDinh Nguyen /* See note in GINTSTS_NPTxFEmp */ 254347a1685fSDinh Nguyen 25441f91b4ccSFelipe Balbi dwc2_hsotg_disable_gsint(hsotg, GINTSTS_PTXFEMP); 25451f91b4ccSFelipe Balbi dwc2_hsotg_irq_fifoempty(hsotg, true); 254647a1685fSDinh Nguyen } 254747a1685fSDinh Nguyen 254847a1685fSDinh Nguyen if (gintsts & GINTSTS_RXFLVL) { 254947a1685fSDinh Nguyen /* 255047a1685fSDinh Nguyen * note, since GINTSTS_RxFLvl doubles as FIFO-not-empty, 25511f91b4ccSFelipe Balbi * we need to retry dwc2_hsotg_handle_rx if this is still 255247a1685fSDinh Nguyen * set. 255347a1685fSDinh Nguyen */ 255447a1685fSDinh Nguyen 25551f91b4ccSFelipe Balbi dwc2_hsotg_handle_rx(hsotg); 255647a1685fSDinh Nguyen } 255747a1685fSDinh Nguyen 255847a1685fSDinh Nguyen if (gintsts & GINTSTS_ERLYSUSP) { 255947a1685fSDinh Nguyen dev_dbg(hsotg->dev, "GINTSTS_ErlySusp\n"); 256095c8bc36SAntti Seppälä dwc2_writel(GINTSTS_ERLYSUSP, hsotg->regs + GINTSTS); 256147a1685fSDinh Nguyen } 256247a1685fSDinh Nguyen 256347a1685fSDinh Nguyen /* 256447a1685fSDinh Nguyen * these next two seem to crop-up occasionally causing the core 256547a1685fSDinh Nguyen * to shutdown the USB transfer, so try clearing them and logging 256647a1685fSDinh Nguyen * the occurrence. 256747a1685fSDinh Nguyen */ 256847a1685fSDinh Nguyen 256947a1685fSDinh Nguyen if (gintsts & GINTSTS_GOUTNAKEFF) { 257047a1685fSDinh Nguyen dev_info(hsotg->dev, "GOUTNakEff triggered\n"); 257147a1685fSDinh Nguyen 257295c8bc36SAntti Seppälä dwc2_writel(DCTL_CGOUTNAK, hsotg->regs + DCTL); 257347a1685fSDinh Nguyen 25741f91b4ccSFelipe Balbi dwc2_hsotg_dump(hsotg); 257547a1685fSDinh Nguyen } 257647a1685fSDinh Nguyen 257747a1685fSDinh Nguyen if (gintsts & GINTSTS_GINNAKEFF) { 257847a1685fSDinh Nguyen dev_info(hsotg->dev, "GINNakEff triggered\n"); 257947a1685fSDinh Nguyen 258095c8bc36SAntti Seppälä dwc2_writel(DCTL_CGNPINNAK, hsotg->regs + DCTL); 258147a1685fSDinh Nguyen 25821f91b4ccSFelipe Balbi dwc2_hsotg_dump(hsotg); 258347a1685fSDinh Nguyen } 258447a1685fSDinh Nguyen 258547a1685fSDinh Nguyen /* 258647a1685fSDinh Nguyen * if we've had fifo events, we should try and go around the 258747a1685fSDinh Nguyen * loop again to see if there's any point in returning yet. 258847a1685fSDinh Nguyen */ 258947a1685fSDinh Nguyen 259047a1685fSDinh Nguyen if (gintsts & IRQ_RETRY_MASK && --retry_count > 0) 259147a1685fSDinh Nguyen goto irq_retry; 259247a1685fSDinh Nguyen 259347a1685fSDinh Nguyen spin_unlock(&hsotg->lock); 259447a1685fSDinh Nguyen 259547a1685fSDinh Nguyen return IRQ_HANDLED; 259647a1685fSDinh Nguyen } 259747a1685fSDinh Nguyen 259847a1685fSDinh Nguyen /** 25991f91b4ccSFelipe Balbi * dwc2_hsotg_ep_enable - enable the given endpoint 260047a1685fSDinh Nguyen * @ep: The USB endpint to configure 260147a1685fSDinh Nguyen * @desc: The USB endpoint descriptor to configure with. 260247a1685fSDinh Nguyen * 260347a1685fSDinh Nguyen * This is called from the USB gadget code's usb_ep_enable(). 260447a1685fSDinh Nguyen */ 26051f91b4ccSFelipe Balbi static int dwc2_hsotg_ep_enable(struct usb_ep *ep, 260647a1685fSDinh Nguyen const struct usb_endpoint_descriptor *desc) 260747a1685fSDinh Nguyen { 26081f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = our_ep(ep); 2609941fcce4SDinh Nguyen struct dwc2_hsotg *hsotg = hs_ep->parent; 261047a1685fSDinh Nguyen unsigned long flags; 2611ca4c55adSMian Yousaf Kaukab unsigned int index = hs_ep->index; 261247a1685fSDinh Nguyen u32 epctrl_reg; 261347a1685fSDinh Nguyen u32 epctrl; 261447a1685fSDinh Nguyen u32 mps; 2615ca4c55adSMian Yousaf Kaukab unsigned int dir_in; 2616ca4c55adSMian Yousaf Kaukab unsigned int i, val, size; 261747a1685fSDinh Nguyen int ret = 0; 261847a1685fSDinh Nguyen 261947a1685fSDinh Nguyen dev_dbg(hsotg->dev, 262047a1685fSDinh Nguyen "%s: ep %s: a 0x%02x, attr 0x%02x, mps 0x%04x, intr %d\n", 262147a1685fSDinh Nguyen __func__, ep->name, desc->bEndpointAddress, desc->bmAttributes, 262247a1685fSDinh Nguyen desc->wMaxPacketSize, desc->bInterval); 262347a1685fSDinh Nguyen 262447a1685fSDinh Nguyen /* not to be called for EP0 */ 262547a1685fSDinh Nguyen WARN_ON(index == 0); 262647a1685fSDinh Nguyen 262747a1685fSDinh Nguyen dir_in = (desc->bEndpointAddress & USB_ENDPOINT_DIR_MASK) ? 1 : 0; 262847a1685fSDinh Nguyen if (dir_in != hs_ep->dir_in) { 262947a1685fSDinh Nguyen dev_err(hsotg->dev, "%s: direction mismatch!\n", __func__); 263047a1685fSDinh Nguyen return -EINVAL; 263147a1685fSDinh Nguyen } 263247a1685fSDinh Nguyen 263347a1685fSDinh Nguyen mps = usb_endpoint_maxp(desc); 263447a1685fSDinh Nguyen 26351f91b4ccSFelipe Balbi /* note, we handle this here instead of dwc2_hsotg_set_ep_maxpacket */ 263647a1685fSDinh Nguyen 263747a1685fSDinh Nguyen epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index); 263895c8bc36SAntti Seppälä epctrl = dwc2_readl(hsotg->regs + epctrl_reg); 263947a1685fSDinh Nguyen 264047a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x from 0x%08x\n", 264147a1685fSDinh Nguyen __func__, epctrl, epctrl_reg); 264247a1685fSDinh Nguyen 264347a1685fSDinh Nguyen spin_lock_irqsave(&hsotg->lock, flags); 264447a1685fSDinh Nguyen 264547a1685fSDinh Nguyen epctrl &= ~(DXEPCTL_EPTYPE_MASK | DXEPCTL_MPS_MASK); 264647a1685fSDinh Nguyen epctrl |= DXEPCTL_MPS(mps); 264747a1685fSDinh Nguyen 264847a1685fSDinh Nguyen /* 264947a1685fSDinh Nguyen * mark the endpoint as active, otherwise the core may ignore 265047a1685fSDinh Nguyen * transactions entirely for this endpoint 265147a1685fSDinh Nguyen */ 265247a1685fSDinh Nguyen epctrl |= DXEPCTL_USBACTEP; 265347a1685fSDinh Nguyen 265447a1685fSDinh Nguyen /* 265547a1685fSDinh Nguyen * set the NAK status on the endpoint, otherwise we might try and 265647a1685fSDinh Nguyen * do something with data that we've yet got a request to process 265747a1685fSDinh Nguyen * since the RXFIFO will take data for an endpoint even if the 265847a1685fSDinh Nguyen * size register hasn't been set. 265947a1685fSDinh Nguyen */ 266047a1685fSDinh Nguyen 266147a1685fSDinh Nguyen epctrl |= DXEPCTL_SNAK; 266247a1685fSDinh Nguyen 266347a1685fSDinh Nguyen /* update the endpoint state */ 26641f91b4ccSFelipe Balbi dwc2_hsotg_set_ep_maxpacket(hsotg, hs_ep->index, mps, dir_in); 266547a1685fSDinh Nguyen 266647a1685fSDinh Nguyen /* default, set to non-periodic */ 266747a1685fSDinh Nguyen hs_ep->isochronous = 0; 266847a1685fSDinh Nguyen hs_ep->periodic = 0; 266947a1685fSDinh Nguyen hs_ep->halted = 0; 267047a1685fSDinh Nguyen hs_ep->interval = desc->bInterval; 267147a1685fSDinh Nguyen 267247a1685fSDinh Nguyen if (hs_ep->interval > 1 && hs_ep->mc > 1) 267347a1685fSDinh Nguyen dev_err(hsotg->dev, "MC > 1 when interval is not 1\n"); 267447a1685fSDinh Nguyen 267547a1685fSDinh Nguyen switch (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) { 267647a1685fSDinh Nguyen case USB_ENDPOINT_XFER_ISOC: 267747a1685fSDinh Nguyen epctrl |= DXEPCTL_EPTYPE_ISO; 267847a1685fSDinh Nguyen epctrl |= DXEPCTL_SETEVENFR; 267947a1685fSDinh Nguyen hs_ep->isochronous = 1; 268047a1685fSDinh Nguyen if (dir_in) 268147a1685fSDinh Nguyen hs_ep->periodic = 1; 268247a1685fSDinh Nguyen break; 268347a1685fSDinh Nguyen 268447a1685fSDinh Nguyen case USB_ENDPOINT_XFER_BULK: 268547a1685fSDinh Nguyen epctrl |= DXEPCTL_EPTYPE_BULK; 268647a1685fSDinh Nguyen break; 268747a1685fSDinh Nguyen 268847a1685fSDinh Nguyen case USB_ENDPOINT_XFER_INT: 2689b203d0a2SRobert Baldyga if (dir_in) 269047a1685fSDinh Nguyen hs_ep->periodic = 1; 269147a1685fSDinh Nguyen 269247a1685fSDinh Nguyen epctrl |= DXEPCTL_EPTYPE_INTERRUPT; 269347a1685fSDinh Nguyen break; 269447a1685fSDinh Nguyen 269547a1685fSDinh Nguyen case USB_ENDPOINT_XFER_CONTROL: 269647a1685fSDinh Nguyen epctrl |= DXEPCTL_EPTYPE_CONTROL; 269747a1685fSDinh Nguyen break; 269847a1685fSDinh Nguyen } 269947a1685fSDinh Nguyen 27004556e12cSMian Yousaf Kaukab /* If fifo is already allocated for this ep */ 27014556e12cSMian Yousaf Kaukab if (hs_ep->fifo_index) { 27024556e12cSMian Yousaf Kaukab size = hs_ep->ep.maxpacket * hs_ep->mc; 27034556e12cSMian Yousaf Kaukab /* If bigger fifo is required deallocate current one */ 27044556e12cSMian Yousaf Kaukab if (size > hs_ep->fifo_size) { 27054556e12cSMian Yousaf Kaukab hsotg->fifo_map &= ~(1 << hs_ep->fifo_index); 27064556e12cSMian Yousaf Kaukab hs_ep->fifo_index = 0; 27074556e12cSMian Yousaf Kaukab hs_ep->fifo_size = 0; 27084556e12cSMian Yousaf Kaukab } 27094556e12cSMian Yousaf Kaukab } 27104556e12cSMian Yousaf Kaukab 271147a1685fSDinh Nguyen /* 271247a1685fSDinh Nguyen * if the hardware has dedicated fifos, we must give each IN EP 271347a1685fSDinh Nguyen * a unique tx-fifo even if it is non-periodic. 271447a1685fSDinh Nguyen */ 27154556e12cSMian Yousaf Kaukab if (dir_in && hsotg->dedicated_fifos && !hs_ep->fifo_index) { 2716ca4c55adSMian Yousaf Kaukab u32 fifo_index = 0; 2717ca4c55adSMian Yousaf Kaukab u32 fifo_size = UINT_MAX; 2718b203d0a2SRobert Baldyga size = hs_ep->ep.maxpacket*hs_ep->mc; 27195f2196bdSMian Yousaf Kaukab for (i = 1; i < hsotg->num_of_eps; ++i) { 2720b203d0a2SRobert Baldyga if (hsotg->fifo_map & (1<<i)) 2721b203d0a2SRobert Baldyga continue; 272295c8bc36SAntti Seppälä val = dwc2_readl(hsotg->regs + DPTXFSIZN(i)); 2723b203d0a2SRobert Baldyga val = (val >> FIFOSIZE_DEPTH_SHIFT)*4; 2724b203d0a2SRobert Baldyga if (val < size) 2725b203d0a2SRobert Baldyga continue; 2726ca4c55adSMian Yousaf Kaukab /* Search for smallest acceptable fifo */ 2727ca4c55adSMian Yousaf Kaukab if (val < fifo_size) { 2728ca4c55adSMian Yousaf Kaukab fifo_size = val; 2729ca4c55adSMian Yousaf Kaukab fifo_index = i; 2730b203d0a2SRobert Baldyga } 2731ca4c55adSMian Yousaf Kaukab } 2732ca4c55adSMian Yousaf Kaukab if (!fifo_index) { 27335f2196bdSMian Yousaf Kaukab dev_err(hsotg->dev, 27345f2196bdSMian Yousaf Kaukab "%s: No suitable fifo found\n", __func__); 2735b585a48bSSudip Mukherjee ret = -ENOMEM; 2736b585a48bSSudip Mukherjee goto error; 2737b585a48bSSudip Mukherjee } 2738ca4c55adSMian Yousaf Kaukab hsotg->fifo_map |= 1 << fifo_index; 2739ca4c55adSMian Yousaf Kaukab epctrl |= DXEPCTL_TXFNUM(fifo_index); 2740ca4c55adSMian Yousaf Kaukab hs_ep->fifo_index = fifo_index; 2741ca4c55adSMian Yousaf Kaukab hs_ep->fifo_size = fifo_size; 2742b203d0a2SRobert Baldyga } 274347a1685fSDinh Nguyen 274447a1685fSDinh Nguyen /* for non control endpoints, set PID to D0 */ 274547a1685fSDinh Nguyen if (index) 274647a1685fSDinh Nguyen epctrl |= DXEPCTL_SETD0PID; 274747a1685fSDinh Nguyen 274847a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: write DxEPCTL=0x%08x\n", 274947a1685fSDinh Nguyen __func__, epctrl); 275047a1685fSDinh Nguyen 275195c8bc36SAntti Seppälä dwc2_writel(epctrl, hsotg->regs + epctrl_reg); 275247a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: read DxEPCTL=0x%08x\n", 275395c8bc36SAntti Seppälä __func__, dwc2_readl(hsotg->regs + epctrl_reg)); 275447a1685fSDinh Nguyen 275547a1685fSDinh Nguyen /* enable the endpoint interrupt */ 27561f91b4ccSFelipe Balbi dwc2_hsotg_ctrl_epint(hsotg, index, dir_in, 1); 275747a1685fSDinh Nguyen 2758b585a48bSSudip Mukherjee error: 275947a1685fSDinh Nguyen spin_unlock_irqrestore(&hsotg->lock, flags); 276047a1685fSDinh Nguyen return ret; 276147a1685fSDinh Nguyen } 276247a1685fSDinh Nguyen 276347a1685fSDinh Nguyen /** 27641f91b4ccSFelipe Balbi * dwc2_hsotg_ep_disable - disable given endpoint 276547a1685fSDinh Nguyen * @ep: The endpoint to disable. 276647a1685fSDinh Nguyen */ 27671f91b4ccSFelipe Balbi static int dwc2_hsotg_ep_disable(struct usb_ep *ep) 276847a1685fSDinh Nguyen { 27691f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = our_ep(ep); 2770941fcce4SDinh Nguyen struct dwc2_hsotg *hsotg = hs_ep->parent; 277147a1685fSDinh Nguyen int dir_in = hs_ep->dir_in; 277247a1685fSDinh Nguyen int index = hs_ep->index; 277347a1685fSDinh Nguyen unsigned long flags; 277447a1685fSDinh Nguyen u32 epctrl_reg; 277547a1685fSDinh Nguyen u32 ctrl; 277647a1685fSDinh Nguyen 27771e011293SMarek Szyprowski dev_dbg(hsotg->dev, "%s(ep %p)\n", __func__, ep); 277847a1685fSDinh Nguyen 2779c6f5c050SMian Yousaf Kaukab if (ep == &hsotg->eps_out[0]->ep) { 278047a1685fSDinh Nguyen dev_err(hsotg->dev, "%s: called for ep0\n", __func__); 278147a1685fSDinh Nguyen return -EINVAL; 278247a1685fSDinh Nguyen } 278347a1685fSDinh Nguyen 278447a1685fSDinh Nguyen epctrl_reg = dir_in ? DIEPCTL(index) : DOEPCTL(index); 278547a1685fSDinh Nguyen 278647a1685fSDinh Nguyen spin_lock_irqsave(&hsotg->lock, flags); 278747a1685fSDinh Nguyen 2788b203d0a2SRobert Baldyga hsotg->fifo_map &= ~(1<<hs_ep->fifo_index); 2789b203d0a2SRobert Baldyga hs_ep->fifo_index = 0; 2790b203d0a2SRobert Baldyga hs_ep->fifo_size = 0; 279147a1685fSDinh Nguyen 279295c8bc36SAntti Seppälä ctrl = dwc2_readl(hsotg->regs + epctrl_reg); 279347a1685fSDinh Nguyen ctrl &= ~DXEPCTL_EPENA; 279447a1685fSDinh Nguyen ctrl &= ~DXEPCTL_USBACTEP; 279547a1685fSDinh Nguyen ctrl |= DXEPCTL_SNAK; 279647a1685fSDinh Nguyen 279747a1685fSDinh Nguyen dev_dbg(hsotg->dev, "%s: DxEPCTL=0x%08x\n", __func__, ctrl); 279895c8bc36SAntti Seppälä dwc2_writel(ctrl, hsotg->regs + epctrl_reg); 279947a1685fSDinh Nguyen 280047a1685fSDinh Nguyen /* disable endpoint interrupts */ 28011f91b4ccSFelipe Balbi dwc2_hsotg_ctrl_epint(hsotg, hs_ep->index, hs_ep->dir_in, 0); 280247a1685fSDinh Nguyen 28031141ea01SMian Yousaf Kaukab /* terminate all requests with shutdown */ 28041141ea01SMian Yousaf Kaukab kill_all_requests(hsotg, hs_ep, -ESHUTDOWN); 28051141ea01SMian Yousaf Kaukab 280647a1685fSDinh Nguyen spin_unlock_irqrestore(&hsotg->lock, flags); 280747a1685fSDinh Nguyen return 0; 280847a1685fSDinh Nguyen } 280947a1685fSDinh Nguyen 281047a1685fSDinh Nguyen /** 281147a1685fSDinh Nguyen * on_list - check request is on the given endpoint 281247a1685fSDinh Nguyen * @ep: The endpoint to check. 281347a1685fSDinh Nguyen * @test: The request to test if it is on the endpoint. 281447a1685fSDinh Nguyen */ 28151f91b4ccSFelipe Balbi static bool on_list(struct dwc2_hsotg_ep *ep, struct dwc2_hsotg_req *test) 281647a1685fSDinh Nguyen { 28171f91b4ccSFelipe Balbi struct dwc2_hsotg_req *req, *treq; 281847a1685fSDinh Nguyen 281947a1685fSDinh Nguyen list_for_each_entry_safe(req, treq, &ep->queue, queue) { 282047a1685fSDinh Nguyen if (req == test) 282147a1685fSDinh Nguyen return true; 282247a1685fSDinh Nguyen } 282347a1685fSDinh Nguyen 282447a1685fSDinh Nguyen return false; 282547a1685fSDinh Nguyen } 282647a1685fSDinh Nguyen 282747a1685fSDinh Nguyen /** 28281f91b4ccSFelipe Balbi * dwc2_hsotg_ep_dequeue - dequeue given endpoint 282947a1685fSDinh Nguyen * @ep: The endpoint to dequeue. 283047a1685fSDinh Nguyen * @req: The request to be removed from a queue. 283147a1685fSDinh Nguyen */ 28321f91b4ccSFelipe Balbi static int dwc2_hsotg_ep_dequeue(struct usb_ep *ep, struct usb_request *req) 283347a1685fSDinh Nguyen { 28341f91b4ccSFelipe Balbi struct dwc2_hsotg_req *hs_req = our_req(req); 28351f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = our_ep(ep); 2836941fcce4SDinh Nguyen struct dwc2_hsotg *hs = hs_ep->parent; 283747a1685fSDinh Nguyen unsigned long flags; 283847a1685fSDinh Nguyen 28391e011293SMarek Szyprowski dev_dbg(hs->dev, "ep_dequeue(%p,%p)\n", ep, req); 284047a1685fSDinh Nguyen 284147a1685fSDinh Nguyen spin_lock_irqsave(&hs->lock, flags); 284247a1685fSDinh Nguyen 284347a1685fSDinh Nguyen if (!on_list(hs_ep, hs_req)) { 284447a1685fSDinh Nguyen spin_unlock_irqrestore(&hs->lock, flags); 284547a1685fSDinh Nguyen return -EINVAL; 284647a1685fSDinh Nguyen } 284747a1685fSDinh Nguyen 28481f91b4ccSFelipe Balbi dwc2_hsotg_complete_request(hs, hs_ep, hs_req, -ECONNRESET); 284947a1685fSDinh Nguyen spin_unlock_irqrestore(&hs->lock, flags); 285047a1685fSDinh Nguyen 285147a1685fSDinh Nguyen return 0; 285247a1685fSDinh Nguyen } 285347a1685fSDinh Nguyen 285447a1685fSDinh Nguyen /** 28551f91b4ccSFelipe Balbi * dwc2_hsotg_ep_sethalt - set halt on a given endpoint 285647a1685fSDinh Nguyen * @ep: The endpoint to set halt. 285747a1685fSDinh Nguyen * @value: Set or unset the halt. 285847a1685fSDinh Nguyen */ 28591f91b4ccSFelipe Balbi static int dwc2_hsotg_ep_sethalt(struct usb_ep *ep, int value) 286047a1685fSDinh Nguyen { 28611f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = our_ep(ep); 2862941fcce4SDinh Nguyen struct dwc2_hsotg *hs = hs_ep->parent; 286347a1685fSDinh Nguyen int index = hs_ep->index; 286447a1685fSDinh Nguyen u32 epreg; 286547a1685fSDinh Nguyen u32 epctl; 286647a1685fSDinh Nguyen u32 xfertype; 286747a1685fSDinh Nguyen 286847a1685fSDinh Nguyen dev_info(hs->dev, "%s(ep %p %s, %d)\n", __func__, ep, ep->name, value); 286947a1685fSDinh Nguyen 287047a1685fSDinh Nguyen if (index == 0) { 287147a1685fSDinh Nguyen if (value) 28721f91b4ccSFelipe Balbi dwc2_hsotg_stall_ep0(hs); 287347a1685fSDinh Nguyen else 287447a1685fSDinh Nguyen dev_warn(hs->dev, 287547a1685fSDinh Nguyen "%s: can't clear halt on ep0\n", __func__); 287647a1685fSDinh Nguyen return 0; 287747a1685fSDinh Nguyen } 287847a1685fSDinh Nguyen 2879c6f5c050SMian Yousaf Kaukab if (hs_ep->dir_in) { 288047a1685fSDinh Nguyen epreg = DIEPCTL(index); 288195c8bc36SAntti Seppälä epctl = dwc2_readl(hs->regs + epreg); 288247a1685fSDinh Nguyen 288347a1685fSDinh Nguyen if (value) { 28845a350d53SFelipe Balbi epctl |= DXEPCTL_STALL | DXEPCTL_SNAK; 288547a1685fSDinh Nguyen if (epctl & DXEPCTL_EPENA) 288647a1685fSDinh Nguyen epctl |= DXEPCTL_EPDIS; 288747a1685fSDinh Nguyen } else { 288847a1685fSDinh Nguyen epctl &= ~DXEPCTL_STALL; 288947a1685fSDinh Nguyen xfertype = epctl & DXEPCTL_EPTYPE_MASK; 289047a1685fSDinh Nguyen if (xfertype == DXEPCTL_EPTYPE_BULK || 289147a1685fSDinh Nguyen xfertype == DXEPCTL_EPTYPE_INTERRUPT) 289247a1685fSDinh Nguyen epctl |= DXEPCTL_SETD0PID; 289347a1685fSDinh Nguyen } 289495c8bc36SAntti Seppälä dwc2_writel(epctl, hs->regs + epreg); 2895c6f5c050SMian Yousaf Kaukab } else { 289647a1685fSDinh Nguyen 289747a1685fSDinh Nguyen epreg = DOEPCTL(index); 289895c8bc36SAntti Seppälä epctl = dwc2_readl(hs->regs + epreg); 289947a1685fSDinh Nguyen 290047a1685fSDinh Nguyen if (value) 290147a1685fSDinh Nguyen epctl |= DXEPCTL_STALL; 290247a1685fSDinh Nguyen else { 290347a1685fSDinh Nguyen epctl &= ~DXEPCTL_STALL; 290447a1685fSDinh Nguyen xfertype = epctl & DXEPCTL_EPTYPE_MASK; 290547a1685fSDinh Nguyen if (xfertype == DXEPCTL_EPTYPE_BULK || 290647a1685fSDinh Nguyen xfertype == DXEPCTL_EPTYPE_INTERRUPT) 290747a1685fSDinh Nguyen epctl |= DXEPCTL_SETD0PID; 290847a1685fSDinh Nguyen } 290995c8bc36SAntti Seppälä dwc2_writel(epctl, hs->regs + epreg); 2910c6f5c050SMian Yousaf Kaukab } 291147a1685fSDinh Nguyen 291247a1685fSDinh Nguyen hs_ep->halted = value; 291347a1685fSDinh Nguyen 291447a1685fSDinh Nguyen return 0; 291547a1685fSDinh Nguyen } 291647a1685fSDinh Nguyen 291747a1685fSDinh Nguyen /** 29181f91b4ccSFelipe Balbi * dwc2_hsotg_ep_sethalt_lock - set halt on a given endpoint with lock held 291947a1685fSDinh Nguyen * @ep: The endpoint to set halt. 292047a1685fSDinh Nguyen * @value: Set or unset the halt. 292147a1685fSDinh Nguyen */ 29221f91b4ccSFelipe Balbi static int dwc2_hsotg_ep_sethalt_lock(struct usb_ep *ep, int value) 292347a1685fSDinh Nguyen { 29241f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep = our_ep(ep); 2925941fcce4SDinh Nguyen struct dwc2_hsotg *hs = hs_ep->parent; 292647a1685fSDinh Nguyen unsigned long flags = 0; 292747a1685fSDinh Nguyen int ret = 0; 292847a1685fSDinh Nguyen 292947a1685fSDinh Nguyen spin_lock_irqsave(&hs->lock, flags); 29301f91b4ccSFelipe Balbi ret = dwc2_hsotg_ep_sethalt(ep, value); 293147a1685fSDinh Nguyen spin_unlock_irqrestore(&hs->lock, flags); 293247a1685fSDinh Nguyen 293347a1685fSDinh Nguyen return ret; 293447a1685fSDinh Nguyen } 293547a1685fSDinh Nguyen 29361f91b4ccSFelipe Balbi static struct usb_ep_ops dwc2_hsotg_ep_ops = { 29371f91b4ccSFelipe Balbi .enable = dwc2_hsotg_ep_enable, 29381f91b4ccSFelipe Balbi .disable = dwc2_hsotg_ep_disable, 29391f91b4ccSFelipe Balbi .alloc_request = dwc2_hsotg_ep_alloc_request, 29401f91b4ccSFelipe Balbi .free_request = dwc2_hsotg_ep_free_request, 29411f91b4ccSFelipe Balbi .queue = dwc2_hsotg_ep_queue_lock, 29421f91b4ccSFelipe Balbi .dequeue = dwc2_hsotg_ep_dequeue, 29431f91b4ccSFelipe Balbi .set_halt = dwc2_hsotg_ep_sethalt_lock, 294447a1685fSDinh Nguyen /* note, don't believe we have any call for the fifo routines */ 294547a1685fSDinh Nguyen }; 294647a1685fSDinh Nguyen 294747a1685fSDinh Nguyen /** 29481f91b4ccSFelipe Balbi * dwc2_hsotg_phy_enable - enable platform phy dev 294947a1685fSDinh Nguyen * @hsotg: The driver state 295047a1685fSDinh Nguyen * 295147a1685fSDinh Nguyen * A wrapper for platform code responsible for controlling 295247a1685fSDinh Nguyen * low-level USB code 295347a1685fSDinh Nguyen */ 29541f91b4ccSFelipe Balbi static void dwc2_hsotg_phy_enable(struct dwc2_hsotg *hsotg) 295547a1685fSDinh Nguyen { 295647a1685fSDinh Nguyen struct platform_device *pdev = to_platform_device(hsotg->dev); 295747a1685fSDinh Nguyen 295847a1685fSDinh Nguyen dev_dbg(hsotg->dev, "pdev 0x%p\n", pdev); 295947a1685fSDinh Nguyen 2960ca2c5ba8SKamil Debski if (hsotg->uphy) 2961ca2c5ba8SKamil Debski usb_phy_init(hsotg->uphy); 2962ca2c5ba8SKamil Debski else if (hsotg->plat && hsotg->plat->phy_init) 2963ca2c5ba8SKamil Debski hsotg->plat->phy_init(pdev, hsotg->plat->phy_type); 2964ca2c5ba8SKamil Debski else { 296547a1685fSDinh Nguyen phy_init(hsotg->phy); 296647a1685fSDinh Nguyen phy_power_on(hsotg->phy); 2967ca2c5ba8SKamil Debski } 296847a1685fSDinh Nguyen } 296947a1685fSDinh Nguyen 297047a1685fSDinh Nguyen /** 29711f91b4ccSFelipe Balbi * dwc2_hsotg_phy_disable - disable platform phy dev 297247a1685fSDinh Nguyen * @hsotg: The driver state 297347a1685fSDinh Nguyen * 297447a1685fSDinh Nguyen * A wrapper for platform code responsible for controlling 297547a1685fSDinh Nguyen * low-level USB code 297647a1685fSDinh Nguyen */ 29771f91b4ccSFelipe Balbi static void dwc2_hsotg_phy_disable(struct dwc2_hsotg *hsotg) 297847a1685fSDinh Nguyen { 297947a1685fSDinh Nguyen struct platform_device *pdev = to_platform_device(hsotg->dev); 298047a1685fSDinh Nguyen 2981ca2c5ba8SKamil Debski if (hsotg->uphy) 2982ca2c5ba8SKamil Debski usb_phy_shutdown(hsotg->uphy); 2983ca2c5ba8SKamil Debski else if (hsotg->plat && hsotg->plat->phy_exit) 2984ca2c5ba8SKamil Debski hsotg->plat->phy_exit(pdev, hsotg->plat->phy_type); 2985ca2c5ba8SKamil Debski else { 298647a1685fSDinh Nguyen phy_power_off(hsotg->phy); 298747a1685fSDinh Nguyen phy_exit(hsotg->phy); 2988ca2c5ba8SKamil Debski } 298947a1685fSDinh Nguyen } 299047a1685fSDinh Nguyen 299147a1685fSDinh Nguyen /** 29921f91b4ccSFelipe Balbi * dwc2_hsotg_init - initalize the usb core 299347a1685fSDinh Nguyen * @hsotg: The driver state 299447a1685fSDinh Nguyen */ 29951f91b4ccSFelipe Balbi static void dwc2_hsotg_init(struct dwc2_hsotg *hsotg) 299647a1685fSDinh Nguyen { 2997fa4a8d72SMian Yousaf Kaukab u32 trdtim; 299847a1685fSDinh Nguyen /* unmask subset of endpoint interrupts */ 299947a1685fSDinh Nguyen 300095c8bc36SAntti Seppälä dwc2_writel(DIEPMSK_TIMEOUTMSK | DIEPMSK_AHBERRMSK | 300147a1685fSDinh Nguyen DIEPMSK_EPDISBLDMSK | DIEPMSK_XFERCOMPLMSK, 300247a1685fSDinh Nguyen hsotg->regs + DIEPMSK); 300347a1685fSDinh Nguyen 300495c8bc36SAntti Seppälä dwc2_writel(DOEPMSK_SETUPMSK | DOEPMSK_AHBERRMSK | 300547a1685fSDinh Nguyen DOEPMSK_EPDISBLDMSK | DOEPMSK_XFERCOMPLMSK, 300647a1685fSDinh Nguyen hsotg->regs + DOEPMSK); 300747a1685fSDinh Nguyen 300895c8bc36SAntti Seppälä dwc2_writel(0, hsotg->regs + DAINTMSK); 300947a1685fSDinh Nguyen 301047a1685fSDinh Nguyen /* Be in disconnected state until gadget is registered */ 301147a1685fSDinh Nguyen __orr32(hsotg->regs + DCTL, DCTL_SFTDISCON); 301247a1685fSDinh Nguyen 301347a1685fSDinh Nguyen /* setup fifos */ 301447a1685fSDinh Nguyen 301547a1685fSDinh Nguyen dev_dbg(hsotg->dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n", 301695c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + GRXFSIZ), 301795c8bc36SAntti Seppälä dwc2_readl(hsotg->regs + GNPTXFSIZ)); 301847a1685fSDinh Nguyen 30191f91b4ccSFelipe Balbi dwc2_hsotg_init_fifo(hsotg); 302047a1685fSDinh Nguyen 302147a1685fSDinh Nguyen /* set the PLL on, remove the HNP/SRP and set the PHY */ 3022fa4a8d72SMian Yousaf Kaukab trdtim = (hsotg->phyif == GUSBCFG_PHYIF8) ? 9 : 5; 302395c8bc36SAntti Seppälä dwc2_writel(hsotg->phyif | GUSBCFG_TOUTCAL(7) | 3024f889f23dSMian Yousaf Kaukab (trdtim << GUSBCFG_USBTRDTIM_SHIFT), 302547a1685fSDinh Nguyen hsotg->regs + GUSBCFG); 302647a1685fSDinh Nguyen 3027f5090044SGregory Herrero if (using_dma(hsotg)) 3028f5090044SGregory Herrero __orr32(hsotg->regs + GAHBCFG, GAHBCFG_DMA_EN); 302947a1685fSDinh Nguyen } 303047a1685fSDinh Nguyen 303147a1685fSDinh Nguyen /** 30321f91b4ccSFelipe Balbi * dwc2_hsotg_udc_start - prepare the udc for work 303347a1685fSDinh Nguyen * @gadget: The usb gadget state 303447a1685fSDinh Nguyen * @driver: The usb gadget driver 303547a1685fSDinh Nguyen * 303647a1685fSDinh Nguyen * Perform initialization to prepare udc device and driver 303747a1685fSDinh Nguyen * to work. 303847a1685fSDinh Nguyen */ 30391f91b4ccSFelipe Balbi static int dwc2_hsotg_udc_start(struct usb_gadget *gadget, 304047a1685fSDinh Nguyen struct usb_gadget_driver *driver) 304147a1685fSDinh Nguyen { 3042941fcce4SDinh Nguyen struct dwc2_hsotg *hsotg = to_hsotg(gadget); 30435b9451f8SMarek Szyprowski unsigned long flags; 304447a1685fSDinh Nguyen int ret; 304547a1685fSDinh Nguyen 304647a1685fSDinh Nguyen if (!hsotg) { 304747a1685fSDinh Nguyen pr_err("%s: called with no device\n", __func__); 304847a1685fSDinh Nguyen return -ENODEV; 304947a1685fSDinh Nguyen } 305047a1685fSDinh Nguyen 305147a1685fSDinh Nguyen if (!driver) { 305247a1685fSDinh Nguyen dev_err(hsotg->dev, "%s: no driver\n", __func__); 305347a1685fSDinh Nguyen return -EINVAL; 305447a1685fSDinh Nguyen } 305547a1685fSDinh Nguyen 305647a1685fSDinh Nguyen if (driver->max_speed < USB_SPEED_FULL) 305747a1685fSDinh Nguyen dev_err(hsotg->dev, "%s: bad speed\n", __func__); 305847a1685fSDinh Nguyen 305947a1685fSDinh Nguyen if (!driver->setup) { 306047a1685fSDinh Nguyen dev_err(hsotg->dev, "%s: missing entry points\n", __func__); 306147a1685fSDinh Nguyen return -EINVAL; 306247a1685fSDinh Nguyen } 306347a1685fSDinh Nguyen 30647ad8096eSMarek Szyprowski mutex_lock(&hsotg->init_mutex); 306547a1685fSDinh Nguyen WARN_ON(hsotg->driver); 306647a1685fSDinh Nguyen 306747a1685fSDinh Nguyen driver->driver.bus = NULL; 306847a1685fSDinh Nguyen hsotg->driver = driver; 306947a1685fSDinh Nguyen hsotg->gadget.dev.of_node = hsotg->dev->of_node; 307047a1685fSDinh Nguyen hsotg->gadget.speed = USB_SPEED_UNKNOWN; 307147a1685fSDinh Nguyen 3072d00b4142SRobert Baldyga clk_enable(hsotg->clk); 3073d00b4142SRobert Baldyga 307447a1685fSDinh Nguyen ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies), 307547a1685fSDinh Nguyen hsotg->supplies); 307647a1685fSDinh Nguyen if (ret) { 307747a1685fSDinh Nguyen dev_err(hsotg->dev, "failed to enable supplies: %d\n", ret); 307847a1685fSDinh Nguyen goto err; 307947a1685fSDinh Nguyen } 308047a1685fSDinh Nguyen 30811f91b4ccSFelipe Balbi dwc2_hsotg_phy_enable(hsotg); 3082f6c01592SGregory Herrero if (!IS_ERR_OR_NULL(hsotg->uphy)) 3083f6c01592SGregory Herrero otg_set_peripheral(hsotg->uphy->otg, &hsotg->gadget); 3084c816c47fSMarek Szyprowski 30855b9451f8SMarek Szyprowski spin_lock_irqsave(&hsotg->lock, flags); 30861f91b4ccSFelipe Balbi dwc2_hsotg_init(hsotg); 30871f91b4ccSFelipe Balbi dwc2_hsotg_core_init_disconnected(hsotg, false); 3088dc6e69e6SMarek Szyprowski hsotg->enabled = 0; 30895b9451f8SMarek Szyprowski spin_unlock_irqrestore(&hsotg->lock, flags); 30905b9451f8SMarek Szyprowski 309147a1685fSDinh Nguyen dev_info(hsotg->dev, "bound driver %s\n", driver->driver.name); 30925b9451f8SMarek Szyprowski 30937ad8096eSMarek Szyprowski mutex_unlock(&hsotg->init_mutex); 30947ad8096eSMarek Szyprowski 309547a1685fSDinh Nguyen return 0; 309647a1685fSDinh Nguyen 309747a1685fSDinh Nguyen err: 30987ad8096eSMarek Szyprowski mutex_unlock(&hsotg->init_mutex); 309947a1685fSDinh Nguyen hsotg->driver = NULL; 310047a1685fSDinh Nguyen return ret; 310147a1685fSDinh Nguyen } 310247a1685fSDinh Nguyen 310347a1685fSDinh Nguyen /** 31041f91b4ccSFelipe Balbi * dwc2_hsotg_udc_stop - stop the udc 310547a1685fSDinh Nguyen * @gadget: The usb gadget state 310647a1685fSDinh Nguyen * @driver: The usb gadget driver 310747a1685fSDinh Nguyen * 310847a1685fSDinh Nguyen * Stop udc hw block and stay tunned for future transmissions 310947a1685fSDinh Nguyen */ 31101f91b4ccSFelipe Balbi static int dwc2_hsotg_udc_stop(struct usb_gadget *gadget) 311147a1685fSDinh Nguyen { 3112941fcce4SDinh Nguyen struct dwc2_hsotg *hsotg = to_hsotg(gadget); 311347a1685fSDinh Nguyen unsigned long flags = 0; 311447a1685fSDinh Nguyen int ep; 311547a1685fSDinh Nguyen 311647a1685fSDinh Nguyen if (!hsotg) 311747a1685fSDinh Nguyen return -ENODEV; 311847a1685fSDinh Nguyen 31197ad8096eSMarek Szyprowski mutex_lock(&hsotg->init_mutex); 31207ad8096eSMarek Szyprowski 312147a1685fSDinh Nguyen /* all endpoints should be shutdown */ 3122c6f5c050SMian Yousaf Kaukab for (ep = 1; ep < hsotg->num_of_eps; ep++) { 3123c6f5c050SMian Yousaf Kaukab if (hsotg->eps_in[ep]) 31241f91b4ccSFelipe Balbi dwc2_hsotg_ep_disable(&hsotg->eps_in[ep]->ep); 3125c6f5c050SMian Yousaf Kaukab if (hsotg->eps_out[ep]) 31261f91b4ccSFelipe Balbi dwc2_hsotg_ep_disable(&hsotg->eps_out[ep]->ep); 3127c6f5c050SMian Yousaf Kaukab } 312847a1685fSDinh Nguyen 312947a1685fSDinh Nguyen spin_lock_irqsave(&hsotg->lock, flags); 313047a1685fSDinh Nguyen 313147a1685fSDinh Nguyen hsotg->driver = NULL; 313247a1685fSDinh Nguyen hsotg->gadget.speed = USB_SPEED_UNKNOWN; 3133dc6e69e6SMarek Szyprowski hsotg->enabled = 0; 313447a1685fSDinh Nguyen 313547a1685fSDinh Nguyen spin_unlock_irqrestore(&hsotg->lock, flags); 313647a1685fSDinh Nguyen 3137f6c01592SGregory Herrero if (!IS_ERR_OR_NULL(hsotg->uphy)) 3138f6c01592SGregory Herrero otg_set_peripheral(hsotg->uphy->otg, NULL); 31391f91b4ccSFelipe Balbi dwc2_hsotg_phy_disable(hsotg); 3140c816c47fSMarek Szyprowski 314147a1685fSDinh Nguyen regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), hsotg->supplies); 314247a1685fSDinh Nguyen 3143d00b4142SRobert Baldyga clk_disable(hsotg->clk); 3144d00b4142SRobert Baldyga 31457ad8096eSMarek Szyprowski mutex_unlock(&hsotg->init_mutex); 31467ad8096eSMarek Szyprowski 314747a1685fSDinh Nguyen return 0; 314847a1685fSDinh Nguyen } 314947a1685fSDinh Nguyen 315047a1685fSDinh Nguyen /** 31511f91b4ccSFelipe Balbi * dwc2_hsotg_gadget_getframe - read the frame number 315247a1685fSDinh Nguyen * @gadget: The usb gadget state 315347a1685fSDinh Nguyen * 315447a1685fSDinh Nguyen * Read the {micro} frame number 315547a1685fSDinh Nguyen */ 31561f91b4ccSFelipe Balbi static int dwc2_hsotg_gadget_getframe(struct usb_gadget *gadget) 315747a1685fSDinh Nguyen { 31581f91b4ccSFelipe Balbi return dwc2_hsotg_read_frameno(to_hsotg(gadget)); 315947a1685fSDinh Nguyen } 316047a1685fSDinh Nguyen 316147a1685fSDinh Nguyen /** 31621f91b4ccSFelipe Balbi * dwc2_hsotg_pullup - connect/disconnect the USB PHY 316347a1685fSDinh Nguyen * @gadget: The usb gadget state 316447a1685fSDinh Nguyen * @is_on: Current state of the USB PHY 316547a1685fSDinh Nguyen * 316647a1685fSDinh Nguyen * Connect/Disconnect the USB PHY pullup 316747a1685fSDinh Nguyen */ 31681f91b4ccSFelipe Balbi static int dwc2_hsotg_pullup(struct usb_gadget *gadget, int is_on) 316947a1685fSDinh Nguyen { 3170941fcce4SDinh Nguyen struct dwc2_hsotg *hsotg = to_hsotg(gadget); 317147a1685fSDinh Nguyen unsigned long flags = 0; 317247a1685fSDinh Nguyen 3173d784f1e5SAndrzej Pietrasiewicz dev_dbg(hsotg->dev, "%s: is_on: %d\n", __func__, is_on); 317447a1685fSDinh Nguyen 31757ad8096eSMarek Szyprowski mutex_lock(&hsotg->init_mutex); 317647a1685fSDinh Nguyen spin_lock_irqsave(&hsotg->lock, flags); 317747a1685fSDinh Nguyen if (is_on) { 3178d00b4142SRobert Baldyga clk_enable(hsotg->clk); 3179dc6e69e6SMarek Szyprowski hsotg->enabled = 1; 31801f91b4ccSFelipe Balbi dwc2_hsotg_core_init_disconnected(hsotg, false); 31811f91b4ccSFelipe Balbi dwc2_hsotg_core_connect(hsotg); 318247a1685fSDinh Nguyen } else { 31831f91b4ccSFelipe Balbi dwc2_hsotg_core_disconnect(hsotg); 31841f91b4ccSFelipe Balbi dwc2_hsotg_disconnect(hsotg); 3185dc6e69e6SMarek Szyprowski hsotg->enabled = 0; 3186d00b4142SRobert Baldyga clk_disable(hsotg->clk); 318747a1685fSDinh Nguyen } 318847a1685fSDinh Nguyen 318947a1685fSDinh Nguyen hsotg->gadget.speed = USB_SPEED_UNKNOWN; 319047a1685fSDinh Nguyen spin_unlock_irqrestore(&hsotg->lock, flags); 31917ad8096eSMarek Szyprowski mutex_unlock(&hsotg->init_mutex); 319247a1685fSDinh Nguyen 319347a1685fSDinh Nguyen return 0; 319447a1685fSDinh Nguyen } 319547a1685fSDinh Nguyen 31961f91b4ccSFelipe Balbi static int dwc2_hsotg_vbus_session(struct usb_gadget *gadget, int is_active) 319783d98223SGregory Herrero { 319883d98223SGregory Herrero struct dwc2_hsotg *hsotg = to_hsotg(gadget); 319983d98223SGregory Herrero unsigned long flags; 320083d98223SGregory Herrero 320183d98223SGregory Herrero dev_dbg(hsotg->dev, "%s: is_active: %d\n", __func__, is_active); 320283d98223SGregory Herrero spin_lock_irqsave(&hsotg->lock, flags); 320383d98223SGregory Herrero 320483d98223SGregory Herrero if (is_active) { 320518b2b37cSGregory Herrero /* 320618b2b37cSGregory Herrero * If controller is hibernated, it must exit from hibernation 320718b2b37cSGregory Herrero * before being initialized 320818b2b37cSGregory Herrero */ 3209065d3931SGregory Herrero if (hsotg->lx_state == DWC2_L2) 321018b2b37cSGregory Herrero dwc2_exit_hibernation(hsotg, false); 3211065d3931SGregory Herrero 321283d98223SGregory Herrero /* Kill any ep0 requests as controller will be reinitialized */ 321383d98223SGregory Herrero kill_all_requests(hsotg, hsotg->eps_out[0], -ECONNRESET); 32141f91b4ccSFelipe Balbi dwc2_hsotg_core_init_disconnected(hsotg, false); 321583d98223SGregory Herrero if (hsotg->enabled) 32161f91b4ccSFelipe Balbi dwc2_hsotg_core_connect(hsotg); 321783d98223SGregory Herrero } else { 32181f91b4ccSFelipe Balbi dwc2_hsotg_core_disconnect(hsotg); 32191f91b4ccSFelipe Balbi dwc2_hsotg_disconnect(hsotg); 322083d98223SGregory Herrero } 322183d98223SGregory Herrero 322283d98223SGregory Herrero spin_unlock_irqrestore(&hsotg->lock, flags); 322383d98223SGregory Herrero return 0; 322483d98223SGregory Herrero } 322583d98223SGregory Herrero 3226596d696aSGregory Herrero /** 32271f91b4ccSFelipe Balbi * dwc2_hsotg_vbus_draw - report bMaxPower field 3228596d696aSGregory Herrero * @gadget: The usb gadget state 3229596d696aSGregory Herrero * @mA: Amount of current 3230596d696aSGregory Herrero * 3231596d696aSGregory Herrero * Report how much power the device may consume to the phy. 3232596d696aSGregory Herrero */ 32331f91b4ccSFelipe Balbi static int dwc2_hsotg_vbus_draw(struct usb_gadget *gadget, unsigned mA) 3234596d696aSGregory Herrero { 3235596d696aSGregory Herrero struct dwc2_hsotg *hsotg = to_hsotg(gadget); 3236596d696aSGregory Herrero 3237596d696aSGregory Herrero if (IS_ERR_OR_NULL(hsotg->uphy)) 3238596d696aSGregory Herrero return -ENOTSUPP; 3239596d696aSGregory Herrero return usb_phy_set_power(hsotg->uphy, mA); 3240596d696aSGregory Herrero } 3241596d696aSGregory Herrero 32421f91b4ccSFelipe Balbi static const struct usb_gadget_ops dwc2_hsotg_gadget_ops = { 32431f91b4ccSFelipe Balbi .get_frame = dwc2_hsotg_gadget_getframe, 32441f91b4ccSFelipe Balbi .udc_start = dwc2_hsotg_udc_start, 32451f91b4ccSFelipe Balbi .udc_stop = dwc2_hsotg_udc_stop, 32461f91b4ccSFelipe Balbi .pullup = dwc2_hsotg_pullup, 32471f91b4ccSFelipe Balbi .vbus_session = dwc2_hsotg_vbus_session, 32481f91b4ccSFelipe Balbi .vbus_draw = dwc2_hsotg_vbus_draw, 324947a1685fSDinh Nguyen }; 325047a1685fSDinh Nguyen 325147a1685fSDinh Nguyen /** 32521f91b4ccSFelipe Balbi * dwc2_hsotg_initep - initialise a single endpoint 325347a1685fSDinh Nguyen * @hsotg: The device state. 325447a1685fSDinh Nguyen * @hs_ep: The endpoint to be initialised. 325547a1685fSDinh Nguyen * @epnum: The endpoint number 325647a1685fSDinh Nguyen * 325747a1685fSDinh Nguyen * Initialise the given endpoint (as part of the probe and device state 325847a1685fSDinh Nguyen * creation) to give to the gadget driver. Setup the endpoint name, any 325947a1685fSDinh Nguyen * direction information and other state that may be required. 326047a1685fSDinh Nguyen */ 32611f91b4ccSFelipe Balbi static void dwc2_hsotg_initep(struct dwc2_hsotg *hsotg, 32621f91b4ccSFelipe Balbi struct dwc2_hsotg_ep *hs_ep, 3263c6f5c050SMian Yousaf Kaukab int epnum, 3264c6f5c050SMian Yousaf Kaukab bool dir_in) 326547a1685fSDinh Nguyen { 326647a1685fSDinh Nguyen char *dir; 326747a1685fSDinh Nguyen 326847a1685fSDinh Nguyen if (epnum == 0) 326947a1685fSDinh Nguyen dir = ""; 3270c6f5c050SMian Yousaf Kaukab else if (dir_in) 327147a1685fSDinh Nguyen dir = "in"; 3272c6f5c050SMian Yousaf Kaukab else 3273c6f5c050SMian Yousaf Kaukab dir = "out"; 327447a1685fSDinh Nguyen 3275c6f5c050SMian Yousaf Kaukab hs_ep->dir_in = dir_in; 327647a1685fSDinh Nguyen hs_ep->index = epnum; 327747a1685fSDinh Nguyen 327847a1685fSDinh Nguyen snprintf(hs_ep->name, sizeof(hs_ep->name), "ep%d%s", epnum, dir); 327947a1685fSDinh Nguyen 328047a1685fSDinh Nguyen INIT_LIST_HEAD(&hs_ep->queue); 328147a1685fSDinh Nguyen INIT_LIST_HEAD(&hs_ep->ep.ep_list); 328247a1685fSDinh Nguyen 328347a1685fSDinh Nguyen /* add to the list of endpoints known by the gadget driver */ 328447a1685fSDinh Nguyen if (epnum) 328547a1685fSDinh Nguyen list_add_tail(&hs_ep->ep.ep_list, &hsotg->gadget.ep_list); 328647a1685fSDinh Nguyen 328747a1685fSDinh Nguyen hs_ep->parent = hsotg; 328847a1685fSDinh Nguyen hs_ep->ep.name = hs_ep->name; 328947a1685fSDinh Nguyen usb_ep_set_maxpacket_limit(&hs_ep->ep, epnum ? 1024 : EP0_MPS_LIMIT); 32901f91b4ccSFelipe Balbi hs_ep->ep.ops = &dwc2_hsotg_ep_ops; 329147a1685fSDinh Nguyen 32922954522fSRobert Baldyga if (epnum == 0) { 32932954522fSRobert Baldyga hs_ep->ep.caps.type_control = true; 32942954522fSRobert Baldyga } else { 32952954522fSRobert Baldyga hs_ep->ep.caps.type_iso = true; 32962954522fSRobert Baldyga hs_ep->ep.caps.type_bulk = true; 32972954522fSRobert Baldyga hs_ep->ep.caps.type_int = true; 32982954522fSRobert Baldyga } 32992954522fSRobert Baldyga 33002954522fSRobert Baldyga if (dir_in) 33012954522fSRobert Baldyga hs_ep->ep.caps.dir_in = true; 33022954522fSRobert Baldyga else 33032954522fSRobert Baldyga hs_ep->ep.caps.dir_out = true; 33042954522fSRobert Baldyga 330547a1685fSDinh Nguyen /* 330647a1685fSDinh Nguyen * if we're using dma, we need to set the next-endpoint pointer 330747a1685fSDinh Nguyen * to be something valid. 330847a1685fSDinh Nguyen */ 330947a1685fSDinh Nguyen 331047a1685fSDinh Nguyen if (using_dma(hsotg)) { 331147a1685fSDinh Nguyen u32 next = DXEPCTL_NEXTEP((epnum + 1) % 15); 3312c6f5c050SMian Yousaf Kaukab if (dir_in) 331395c8bc36SAntti Seppälä dwc2_writel(next, hsotg->regs + DIEPCTL(epnum)); 3314c6f5c050SMian Yousaf Kaukab else 331595c8bc36SAntti Seppälä dwc2_writel(next, hsotg->regs + DOEPCTL(epnum)); 331647a1685fSDinh Nguyen } 331747a1685fSDinh Nguyen } 331847a1685fSDinh Nguyen 331947a1685fSDinh Nguyen /** 33201f91b4ccSFelipe Balbi * dwc2_hsotg_hw_cfg - read HW configuration registers 332147a1685fSDinh Nguyen * @param: The device state 332247a1685fSDinh Nguyen * 332347a1685fSDinh Nguyen * Read the USB core HW configuration registers 332447a1685fSDinh Nguyen */ 33251f91b4ccSFelipe Balbi static int dwc2_hsotg_hw_cfg(struct dwc2_hsotg *hsotg) 332647a1685fSDinh Nguyen { 3327c6f5c050SMian Yousaf Kaukab u32 cfg; 3328c6f5c050SMian Yousaf Kaukab u32 ep_type; 3329c6f5c050SMian Yousaf Kaukab u32 i; 3330c6f5c050SMian Yousaf Kaukab 333147a1685fSDinh Nguyen /* check hardware configuration */ 333247a1685fSDinh Nguyen 333395c8bc36SAntti Seppälä cfg = dwc2_readl(hsotg->regs + GHWCFG2); 3334f889f23dSMian Yousaf Kaukab hsotg->num_of_eps = (cfg >> GHWCFG2_NUM_DEV_EP_SHIFT) & 0xF; 3335c6f5c050SMian Yousaf Kaukab /* Add ep0 */ 3336c6f5c050SMian Yousaf Kaukab hsotg->num_of_eps++; 333747a1685fSDinh Nguyen 33381f91b4ccSFelipe Balbi hsotg->eps_in[0] = devm_kzalloc(hsotg->dev, sizeof(struct dwc2_hsotg_ep), 3339c6f5c050SMian Yousaf Kaukab GFP_KERNEL); 3340c6f5c050SMian Yousaf Kaukab if (!hsotg->eps_in[0]) 3341c6f5c050SMian Yousaf Kaukab return -ENOMEM; 33421f91b4ccSFelipe Balbi /* Same dwc2_hsotg_ep is used in both directions for ep0 */ 3343c6f5c050SMian Yousaf Kaukab hsotg->eps_out[0] = hsotg->eps_in[0]; 334447a1685fSDinh Nguyen 334595c8bc36SAntti Seppälä cfg = dwc2_readl(hsotg->regs + GHWCFG1); 3346251a17f5SRoshan Pius for (i = 1, cfg >>= 2; i < hsotg->num_of_eps; i++, cfg >>= 2) { 3347c6f5c050SMian Yousaf Kaukab ep_type = cfg & 3; 3348c6f5c050SMian Yousaf Kaukab /* Direction in or both */ 3349c6f5c050SMian Yousaf Kaukab if (!(ep_type & 2)) { 3350c6f5c050SMian Yousaf Kaukab hsotg->eps_in[i] = devm_kzalloc(hsotg->dev, 33511f91b4ccSFelipe Balbi sizeof(struct dwc2_hsotg_ep), GFP_KERNEL); 3352c6f5c050SMian Yousaf Kaukab if (!hsotg->eps_in[i]) 3353c6f5c050SMian Yousaf Kaukab return -ENOMEM; 3354c6f5c050SMian Yousaf Kaukab } 3355c6f5c050SMian Yousaf Kaukab /* Direction out or both */ 3356c6f5c050SMian Yousaf Kaukab if (!(ep_type & 1)) { 3357c6f5c050SMian Yousaf Kaukab hsotg->eps_out[i] = devm_kzalloc(hsotg->dev, 33581f91b4ccSFelipe Balbi sizeof(struct dwc2_hsotg_ep), GFP_KERNEL); 3359c6f5c050SMian Yousaf Kaukab if (!hsotg->eps_out[i]) 3360c6f5c050SMian Yousaf Kaukab return -ENOMEM; 3361c6f5c050SMian Yousaf Kaukab } 3362c6f5c050SMian Yousaf Kaukab } 3363c6f5c050SMian Yousaf Kaukab 336495c8bc36SAntti Seppälä cfg = dwc2_readl(hsotg->regs + GHWCFG3); 3365f889f23dSMian Yousaf Kaukab hsotg->fifo_mem = (cfg >> GHWCFG3_DFIFO_DEPTH_SHIFT); 3366c6f5c050SMian Yousaf Kaukab 336795c8bc36SAntti Seppälä cfg = dwc2_readl(hsotg->regs + GHWCFG4); 3368f889f23dSMian Yousaf Kaukab hsotg->dedicated_fifos = (cfg >> GHWCFG4_DED_FIFO_SHIFT) & 1; 336947a1685fSDinh Nguyen 3370cff9eb75SMarek Szyprowski dev_info(hsotg->dev, "EPs: %d, %s fifos, %d entries in SPRAM\n", 3371cff9eb75SMarek Szyprowski hsotg->num_of_eps, 3372cff9eb75SMarek Szyprowski hsotg->dedicated_fifos ? "dedicated" : "shared", 3373cff9eb75SMarek Szyprowski hsotg->fifo_mem); 3374c6f5c050SMian Yousaf Kaukab return 0; 337547a1685fSDinh Nguyen } 337647a1685fSDinh Nguyen 337747a1685fSDinh Nguyen /** 33781f91b4ccSFelipe Balbi * dwc2_hsotg_dump - dump state of the udc 337947a1685fSDinh Nguyen * @param: The device state 338047a1685fSDinh Nguyen */ 33811f91b4ccSFelipe Balbi static void dwc2_hsotg_dump(struct dwc2_hsotg *hsotg) 338247a1685fSDinh Nguyen { 338347a1685fSDinh Nguyen #ifdef DEBUG 338447a1685fSDinh Nguyen struct device *dev = hsotg->dev; 338547a1685fSDinh Nguyen void __iomem *regs = hsotg->regs; 338647a1685fSDinh Nguyen u32 val; 338747a1685fSDinh Nguyen int idx; 338847a1685fSDinh Nguyen 338947a1685fSDinh Nguyen dev_info(dev, "DCFG=0x%08x, DCTL=0x%08x, DIEPMSK=%08x\n", 339095c8bc36SAntti Seppälä dwc2_readl(regs + DCFG), dwc2_readl(regs + DCTL), 339195c8bc36SAntti Seppälä dwc2_readl(regs + DIEPMSK)); 339247a1685fSDinh Nguyen 3393f889f23dSMian Yousaf Kaukab dev_info(dev, "GAHBCFG=0x%08x, GHWCFG1=0x%08x\n", 339495c8bc36SAntti Seppälä dwc2_readl(regs + GAHBCFG), dwc2_readl(regs + GHWCFG1)); 339547a1685fSDinh Nguyen 339647a1685fSDinh Nguyen dev_info(dev, "GRXFSIZ=0x%08x, GNPTXFSIZ=0x%08x\n", 339795c8bc36SAntti Seppälä dwc2_readl(regs + GRXFSIZ), dwc2_readl(regs + GNPTXFSIZ)); 339847a1685fSDinh Nguyen 339947a1685fSDinh Nguyen /* show periodic fifo settings */ 340047a1685fSDinh Nguyen 3401364f8e93SMian Yousaf Kaukab for (idx = 1; idx < hsotg->num_of_eps; idx++) { 340295c8bc36SAntti Seppälä val = dwc2_readl(regs + DPTXFSIZN(idx)); 340347a1685fSDinh Nguyen dev_info(dev, "DPTx[%d] FSize=%d, StAddr=0x%08x\n", idx, 340447a1685fSDinh Nguyen val >> FIFOSIZE_DEPTH_SHIFT, 340547a1685fSDinh Nguyen val & FIFOSIZE_STARTADDR_MASK); 340647a1685fSDinh Nguyen } 340747a1685fSDinh Nguyen 3408364f8e93SMian Yousaf Kaukab for (idx = 0; idx < hsotg->num_of_eps; idx++) { 340947a1685fSDinh Nguyen dev_info(dev, 341047a1685fSDinh Nguyen "ep%d-in: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n", idx, 341195c8bc36SAntti Seppälä dwc2_readl(regs + DIEPCTL(idx)), 341295c8bc36SAntti Seppälä dwc2_readl(regs + DIEPTSIZ(idx)), 341395c8bc36SAntti Seppälä dwc2_readl(regs + DIEPDMA(idx))); 341447a1685fSDinh Nguyen 341595c8bc36SAntti Seppälä val = dwc2_readl(regs + DOEPCTL(idx)); 341647a1685fSDinh Nguyen dev_info(dev, 341747a1685fSDinh Nguyen "ep%d-out: EPCTL=0x%08x, SIZ=0x%08x, DMA=0x%08x\n", 341895c8bc36SAntti Seppälä idx, dwc2_readl(regs + DOEPCTL(idx)), 341995c8bc36SAntti Seppälä dwc2_readl(regs + DOEPTSIZ(idx)), 342095c8bc36SAntti Seppälä dwc2_readl(regs + DOEPDMA(idx))); 342147a1685fSDinh Nguyen 342247a1685fSDinh Nguyen } 342347a1685fSDinh Nguyen 342447a1685fSDinh Nguyen dev_info(dev, "DVBUSDIS=0x%08x, DVBUSPULSE=%08x\n", 342595c8bc36SAntti Seppälä dwc2_readl(regs + DVBUSDIS), dwc2_readl(regs + DVBUSPULSE)); 342647a1685fSDinh Nguyen #endif 342747a1685fSDinh Nguyen } 342847a1685fSDinh Nguyen 3429edd74be8SGregory Herrero #ifdef CONFIG_OF 34301f91b4ccSFelipe Balbi static void dwc2_hsotg_of_probe(struct dwc2_hsotg *hsotg) 3431edd74be8SGregory Herrero { 3432edd74be8SGregory Herrero struct device_node *np = hsotg->dev->of_node; 34330a176279SGregory Herrero u32 len = 0; 34340a176279SGregory Herrero u32 i = 0; 3435edd74be8SGregory Herrero 3436edd74be8SGregory Herrero /* Enable dma if requested in device tree */ 3437edd74be8SGregory Herrero hsotg->g_using_dma = of_property_read_bool(np, "g-use-dma"); 34380a176279SGregory Herrero 34390a176279SGregory Herrero /* 34400a176279SGregory Herrero * Register TX periodic fifo size per endpoint. 34410a176279SGregory Herrero * EP0 is excluded since it has no fifo configuration. 34420a176279SGregory Herrero */ 34430a176279SGregory Herrero if (!of_find_property(np, "g-tx-fifo-size", &len)) 34440a176279SGregory Herrero goto rx_fifo; 34450a176279SGregory Herrero 34460a176279SGregory Herrero len /= sizeof(u32); 34470a176279SGregory Herrero 34480a176279SGregory Herrero /* Read tx fifo sizes other than ep0 */ 34490a176279SGregory Herrero if (of_property_read_u32_array(np, "g-tx-fifo-size", 34500a176279SGregory Herrero &hsotg->g_tx_fifo_sz[1], len)) 34510a176279SGregory Herrero goto rx_fifo; 34520a176279SGregory Herrero 34530a176279SGregory Herrero /* Add ep0 */ 34540a176279SGregory Herrero len++; 34550a176279SGregory Herrero 34560a176279SGregory Herrero /* Make remaining TX fifos unavailable */ 34570a176279SGregory Herrero if (len < MAX_EPS_CHANNELS) { 34580a176279SGregory Herrero for (i = len; i < MAX_EPS_CHANNELS; i++) 34590a176279SGregory Herrero hsotg->g_tx_fifo_sz[i] = 0; 34600a176279SGregory Herrero } 34610a176279SGregory Herrero 34620a176279SGregory Herrero rx_fifo: 34630a176279SGregory Herrero /* Register RX fifo size */ 34640a176279SGregory Herrero of_property_read_u32(np, "g-rx-fifo-size", &hsotg->g_rx_fifo_sz); 34650a176279SGregory Herrero 34660a176279SGregory Herrero /* Register NPTX fifo size */ 34670a176279SGregory Herrero of_property_read_u32(np, "g-np-tx-fifo-size", 34680a176279SGregory Herrero &hsotg->g_np_g_tx_fifo_sz); 3469edd74be8SGregory Herrero } 3470edd74be8SGregory Herrero #else 34711f91b4ccSFelipe Balbi static inline void dwc2_hsotg_of_probe(struct dwc2_hsotg *hsotg) { } 3472edd74be8SGregory Herrero #endif 3473edd74be8SGregory Herrero 347447a1685fSDinh Nguyen /** 3475117777b2SDinh Nguyen * dwc2_gadget_init - init function for gadget 3476117777b2SDinh Nguyen * @dwc2: The data structure for the DWC2 driver. 3477117777b2SDinh Nguyen * @irq: The IRQ number for the controller. 347847a1685fSDinh Nguyen */ 3479117777b2SDinh Nguyen int dwc2_gadget_init(struct dwc2_hsotg *hsotg, int irq) 348047a1685fSDinh Nguyen { 3481117777b2SDinh Nguyen struct device *dev = hsotg->dev; 34821f91b4ccSFelipe Balbi struct dwc2_hsotg_plat *plat = dev->platform_data; 348347a1685fSDinh Nguyen int epnum; 348447a1685fSDinh Nguyen int ret; 348547a1685fSDinh Nguyen int i; 34860a176279SGregory Herrero u32 p_tx_fifo[] = DWC2_G_P_LEGACY_TX_FIFO_SIZE; 348747a1685fSDinh Nguyen 34881b59fc7eSKamil Debski /* Set default UTMI width */ 34891b59fc7eSKamil Debski hsotg->phyif = GUSBCFG_PHYIF16; 34901b59fc7eSKamil Debski 34911f91b4ccSFelipe Balbi dwc2_hsotg_of_probe(hsotg); 3492edd74be8SGregory Herrero 34930a176279SGregory Herrero /* Initialize to legacy fifo configuration values */ 34940a176279SGregory Herrero hsotg->g_rx_fifo_sz = 2048; 34950a176279SGregory Herrero hsotg->g_np_g_tx_fifo_sz = 1024; 34960a176279SGregory Herrero memcpy(&hsotg->g_tx_fifo_sz[1], p_tx_fifo, sizeof(p_tx_fifo)); 34970a176279SGregory Herrero /* Device tree specific probe */ 34981f91b4ccSFelipe Balbi dwc2_hsotg_of_probe(hsotg); 34990a176279SGregory Herrero /* Dump fifo information */ 35000a176279SGregory Herrero dev_dbg(dev, "NonPeriodic TXFIFO size: %d\n", 35010a176279SGregory Herrero hsotg->g_np_g_tx_fifo_sz); 35020a176279SGregory Herrero dev_dbg(dev, "RXFIFO size: %d\n", hsotg->g_rx_fifo_sz); 35030a176279SGregory Herrero for (i = 0; i < MAX_EPS_CHANNELS; i++) 35040a176279SGregory Herrero dev_dbg(dev, "Periodic TXFIFO%2d size: %d\n", i, 35050a176279SGregory Herrero hsotg->g_tx_fifo_sz[i]); 350647a1685fSDinh Nguyen /* 3507135b3c43SYunzhi Li * If platform probe couldn't find a generic PHY or an old style 3508135b3c43SYunzhi Li * USB PHY, fall back to pdata 350947a1685fSDinh Nguyen */ 3510135b3c43SYunzhi Li if (IS_ERR_OR_NULL(hsotg->phy) && IS_ERR_OR_NULL(hsotg->uphy)) { 3511117777b2SDinh Nguyen plat = dev_get_platdata(dev); 351247a1685fSDinh Nguyen if (!plat) { 3513117777b2SDinh Nguyen dev_err(dev, 351447a1685fSDinh Nguyen "no platform data or transceiver defined\n"); 351547a1685fSDinh Nguyen return -EPROBE_DEFER; 351647a1685fSDinh Nguyen } 351747a1685fSDinh Nguyen hsotg->plat = plat; 3518135b3c43SYunzhi Li } else if (hsotg->phy) { 35191b59fc7eSKamil Debski /* 35201b59fc7eSKamil Debski * If using the generic PHY framework, check if the PHY bus 35211b59fc7eSKamil Debski * width is 8-bit and set the phyif appropriately. 35221b59fc7eSKamil Debski */ 3523135b3c43SYunzhi Li if (phy_get_bus_width(hsotg->phy) == 8) 35241b59fc7eSKamil Debski hsotg->phyif = GUSBCFG_PHYIF8; 35251b59fc7eSKamil Debski } 352647a1685fSDinh Nguyen 3527117777b2SDinh Nguyen hsotg->clk = devm_clk_get(dev, "otg"); 352847a1685fSDinh Nguyen if (IS_ERR(hsotg->clk)) { 35298d736d8aSDinh Nguyen hsotg->clk = NULL; 3530f415fbd1SDinh Nguyen dev_dbg(dev, "cannot get otg clock\n"); 353147a1685fSDinh Nguyen } 353247a1685fSDinh Nguyen 353347a1685fSDinh Nguyen hsotg->gadget.max_speed = USB_SPEED_HIGH; 35341f91b4ccSFelipe Balbi hsotg->gadget.ops = &dwc2_hsotg_gadget_ops; 353547a1685fSDinh Nguyen hsotg->gadget.name = dev_name(dev); 3536097ee662SGregory Herrero if (hsotg->dr_mode == USB_DR_MODE_OTG) 3537097ee662SGregory Herrero hsotg->gadget.is_otg = 1; 3538*ec4cc657SMian Yousaf Kaukab else if (hsotg->dr_mode == USB_DR_MODE_PERIPHERAL) 3539*ec4cc657SMian Yousaf Kaukab hsotg->op_state = OTG_STATE_B_PERIPHERAL; 354047a1685fSDinh Nguyen 354147a1685fSDinh Nguyen /* reset the system */ 354247a1685fSDinh Nguyen 3543f415fbd1SDinh Nguyen ret = clk_prepare_enable(hsotg->clk); 3544f415fbd1SDinh Nguyen if (ret) { 3545f415fbd1SDinh Nguyen dev_err(dev, "failed to enable otg clk\n"); 3546f415fbd1SDinh Nguyen goto err_clk; 3547f415fbd1SDinh Nguyen } 3548f415fbd1SDinh Nguyen 354947a1685fSDinh Nguyen 355047a1685fSDinh Nguyen /* regulators */ 355147a1685fSDinh Nguyen 355247a1685fSDinh Nguyen for (i = 0; i < ARRAY_SIZE(hsotg->supplies); i++) 35531f91b4ccSFelipe Balbi hsotg->supplies[i].supply = dwc2_hsotg_supply_names[i]; 355447a1685fSDinh Nguyen 355547a1685fSDinh Nguyen ret = devm_regulator_bulk_get(dev, ARRAY_SIZE(hsotg->supplies), 355647a1685fSDinh Nguyen hsotg->supplies); 355747a1685fSDinh Nguyen if (ret) { 355847a1685fSDinh Nguyen dev_err(dev, "failed to request supplies: %d\n", ret); 355947a1685fSDinh Nguyen goto err_clk; 356047a1685fSDinh Nguyen } 356147a1685fSDinh Nguyen 356247a1685fSDinh Nguyen ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies), 356347a1685fSDinh Nguyen hsotg->supplies); 356447a1685fSDinh Nguyen 356547a1685fSDinh Nguyen if (ret) { 3566941fcce4SDinh Nguyen dev_err(dev, "failed to enable supplies: %d\n", ret); 3567c139ec27SMian Yousaf Kaukab goto err_clk; 356847a1685fSDinh Nguyen } 356947a1685fSDinh Nguyen 357047a1685fSDinh Nguyen /* usb phy enable */ 35711f91b4ccSFelipe Balbi dwc2_hsotg_phy_enable(hsotg); 357247a1685fSDinh Nguyen 35731b7a66b4SGregory Herrero /* 35741b7a66b4SGregory Herrero * Force Device mode before initialization. 35751b7a66b4SGregory Herrero * This allows correctly configuring fifo for device mode. 35761b7a66b4SGregory Herrero */ 35771b7a66b4SGregory Herrero __bic32(hsotg->regs + GUSBCFG, GUSBCFG_FORCEHOSTMODE); 35781b7a66b4SGregory Herrero __orr32(hsotg->regs + GUSBCFG, GUSBCFG_FORCEDEVMODE); 35791b7a66b4SGregory Herrero 35801b7a66b4SGregory Herrero /* 35811b7a66b4SGregory Herrero * According to Synopsys databook, this sleep is needed for the force 35821b7a66b4SGregory Herrero * device mode to take effect. 35831b7a66b4SGregory Herrero */ 35841b7a66b4SGregory Herrero msleep(25); 35851b7a66b4SGregory Herrero 35861f91b4ccSFelipe Balbi dwc2_hsotg_corereset(hsotg); 35871f91b4ccSFelipe Balbi ret = dwc2_hsotg_hw_cfg(hsotg); 3588c6f5c050SMian Yousaf Kaukab if (ret) { 3589c6f5c050SMian Yousaf Kaukab dev_err(hsotg->dev, "Hardware configuration failed: %d\n", ret); 3590c6f5c050SMian Yousaf Kaukab goto err_clk; 3591c6f5c050SMian Yousaf Kaukab } 3592c6f5c050SMian Yousaf Kaukab 35931f91b4ccSFelipe Balbi dwc2_hsotg_init(hsotg); 359447a1685fSDinh Nguyen 35951b7a66b4SGregory Herrero /* Switch back to default configuration */ 35961b7a66b4SGregory Herrero __bic32(hsotg->regs + GUSBCFG, GUSBCFG_FORCEDEVMODE); 35971b7a66b4SGregory Herrero 35983f95001dSMian Yousaf Kaukab hsotg->ctrl_buff = devm_kzalloc(hsotg->dev, 35993f95001dSMian Yousaf Kaukab DWC2_CTRL_BUFF_SIZE, GFP_KERNEL); 36003f95001dSMian Yousaf Kaukab if (!hsotg->ctrl_buff) { 36013f95001dSMian Yousaf Kaukab dev_err(dev, "failed to allocate ctrl request buff\n"); 36023f95001dSMian Yousaf Kaukab ret = -ENOMEM; 36033f95001dSMian Yousaf Kaukab goto err_supplies; 36043f95001dSMian Yousaf Kaukab } 36053f95001dSMian Yousaf Kaukab 36063f95001dSMian Yousaf Kaukab hsotg->ep0_buff = devm_kzalloc(hsotg->dev, 36073f95001dSMian Yousaf Kaukab DWC2_CTRL_BUFF_SIZE, GFP_KERNEL); 36083f95001dSMian Yousaf Kaukab if (!hsotg->ep0_buff) { 36093f95001dSMian Yousaf Kaukab dev_err(dev, "failed to allocate ctrl reply buff\n"); 36103f95001dSMian Yousaf Kaukab ret = -ENOMEM; 36113f95001dSMian Yousaf Kaukab goto err_supplies; 36123f95001dSMian Yousaf Kaukab } 36133f95001dSMian Yousaf Kaukab 36141f91b4ccSFelipe Balbi ret = devm_request_irq(hsotg->dev, irq, dwc2_hsotg_irq, IRQF_SHARED, 3615db8178c3SDinh Nguyen dev_name(hsotg->dev), hsotg); 3616eb3c56c5SMarek Szyprowski if (ret < 0) { 36171f91b4ccSFelipe Balbi dwc2_hsotg_phy_disable(hsotg); 3618eb3c56c5SMarek Szyprowski clk_disable_unprepare(hsotg->clk); 3619eb3c56c5SMarek Szyprowski regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), 3620eb3c56c5SMarek Szyprowski hsotg->supplies); 3621db8178c3SDinh Nguyen dev_err(dev, "cannot claim IRQ for gadget\n"); 3622c139ec27SMian Yousaf Kaukab goto err_supplies; 3623eb3c56c5SMarek Szyprowski } 3624eb3c56c5SMarek Szyprowski 362547a1685fSDinh Nguyen /* hsotg->num_of_eps holds number of EPs other than ep0 */ 362647a1685fSDinh Nguyen 362747a1685fSDinh Nguyen if (hsotg->num_of_eps == 0) { 362847a1685fSDinh Nguyen dev_err(dev, "wrong number of EPs (zero)\n"); 362947a1685fSDinh Nguyen ret = -EINVAL; 363047a1685fSDinh Nguyen goto err_supplies; 363147a1685fSDinh Nguyen } 363247a1685fSDinh Nguyen 363347a1685fSDinh Nguyen /* setup endpoint information */ 363447a1685fSDinh Nguyen 363547a1685fSDinh Nguyen INIT_LIST_HEAD(&hsotg->gadget.ep_list); 3636c6f5c050SMian Yousaf Kaukab hsotg->gadget.ep0 = &hsotg->eps_out[0]->ep; 363747a1685fSDinh Nguyen 363847a1685fSDinh Nguyen /* allocate EP0 request */ 363947a1685fSDinh Nguyen 36401f91b4ccSFelipe Balbi hsotg->ctrl_req = dwc2_hsotg_ep_alloc_request(&hsotg->eps_out[0]->ep, 364147a1685fSDinh Nguyen GFP_KERNEL); 364247a1685fSDinh Nguyen if (!hsotg->ctrl_req) { 364347a1685fSDinh Nguyen dev_err(dev, "failed to allocate ctrl req\n"); 364447a1685fSDinh Nguyen ret = -ENOMEM; 3645c6f5c050SMian Yousaf Kaukab goto err_supplies; 364647a1685fSDinh Nguyen } 364747a1685fSDinh Nguyen 364847a1685fSDinh Nguyen /* initialise the endpoints now the core has been initialised */ 3649c6f5c050SMian Yousaf Kaukab for (epnum = 0; epnum < hsotg->num_of_eps; epnum++) { 3650c6f5c050SMian Yousaf Kaukab if (hsotg->eps_in[epnum]) 36511f91b4ccSFelipe Balbi dwc2_hsotg_initep(hsotg, hsotg->eps_in[epnum], 3652c6f5c050SMian Yousaf Kaukab epnum, 1); 3653c6f5c050SMian Yousaf Kaukab if (hsotg->eps_out[epnum]) 36541f91b4ccSFelipe Balbi dwc2_hsotg_initep(hsotg, hsotg->eps_out[epnum], 3655c6f5c050SMian Yousaf Kaukab epnum, 0); 3656c6f5c050SMian Yousaf Kaukab } 365747a1685fSDinh Nguyen 365847a1685fSDinh Nguyen /* disable power and clock */ 36591f91b4ccSFelipe Balbi dwc2_hsotg_phy_disable(hsotg); 366047a1685fSDinh Nguyen 366147a1685fSDinh Nguyen ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), 366247a1685fSDinh Nguyen hsotg->supplies); 366347a1685fSDinh Nguyen if (ret) { 3664117777b2SDinh Nguyen dev_err(dev, "failed to disable supplies: %d\n", ret); 3665c6f5c050SMian Yousaf Kaukab goto err_supplies; 366647a1685fSDinh Nguyen } 366747a1685fSDinh Nguyen 3668117777b2SDinh Nguyen ret = usb_add_gadget_udc(dev, &hsotg->gadget); 366947a1685fSDinh Nguyen if (ret) 3670c6f5c050SMian Yousaf Kaukab goto err_supplies; 367147a1685fSDinh Nguyen 36721f91b4ccSFelipe Balbi dwc2_hsotg_dump(hsotg); 367347a1685fSDinh Nguyen 367447a1685fSDinh Nguyen return 0; 367547a1685fSDinh Nguyen 367647a1685fSDinh Nguyen err_supplies: 36771f91b4ccSFelipe Balbi dwc2_hsotg_phy_disable(hsotg); 367847a1685fSDinh Nguyen err_clk: 367947a1685fSDinh Nguyen clk_disable_unprepare(hsotg->clk); 368047a1685fSDinh Nguyen 368147a1685fSDinh Nguyen return ret; 368247a1685fSDinh Nguyen } 368347a1685fSDinh Nguyen 368447a1685fSDinh Nguyen /** 36851f91b4ccSFelipe Balbi * dwc2_hsotg_remove - remove function for hsotg driver 368647a1685fSDinh Nguyen * @pdev: The platform information for the driver 368747a1685fSDinh Nguyen */ 36881f91b4ccSFelipe Balbi int dwc2_hsotg_remove(struct dwc2_hsotg *hsotg) 368947a1685fSDinh Nguyen { 369047a1685fSDinh Nguyen usb_del_gadget_udc(&hsotg->gadget); 369147a1685fSDinh Nguyen clk_disable_unprepare(hsotg->clk); 369247a1685fSDinh Nguyen 369347a1685fSDinh Nguyen return 0; 369447a1685fSDinh Nguyen } 369547a1685fSDinh Nguyen 36961f91b4ccSFelipe Balbi int dwc2_hsotg_suspend(struct dwc2_hsotg *hsotg) 369747a1685fSDinh Nguyen { 369847a1685fSDinh Nguyen unsigned long flags; 369947a1685fSDinh Nguyen int ret = 0; 370047a1685fSDinh Nguyen 37019e779778SGregory Herrero if (hsotg->lx_state != DWC2_L0) 37029e779778SGregory Herrero return ret; 37039e779778SGregory Herrero 37047ad8096eSMarek Szyprowski mutex_lock(&hsotg->init_mutex); 37057ad8096eSMarek Szyprowski 3706dc6e69e6SMarek Szyprowski if (hsotg->driver) { 3707dc6e69e6SMarek Szyprowski int ep; 3708dc6e69e6SMarek Szyprowski 370947a1685fSDinh Nguyen dev_info(hsotg->dev, "suspending usb gadget %s\n", 371047a1685fSDinh Nguyen hsotg->driver->driver.name); 371147a1685fSDinh Nguyen 371247a1685fSDinh Nguyen spin_lock_irqsave(&hsotg->lock, flags); 3713dc6e69e6SMarek Szyprowski if (hsotg->enabled) 37141f91b4ccSFelipe Balbi dwc2_hsotg_core_disconnect(hsotg); 37151f91b4ccSFelipe Balbi dwc2_hsotg_disconnect(hsotg); 371647a1685fSDinh Nguyen hsotg->gadget.speed = USB_SPEED_UNKNOWN; 371747a1685fSDinh Nguyen spin_unlock_irqrestore(&hsotg->lock, flags); 371847a1685fSDinh Nguyen 37191f91b4ccSFelipe Balbi dwc2_hsotg_phy_disable(hsotg); 37207b093f77SMarek Szyprowski 3721c6f5c050SMian Yousaf Kaukab for (ep = 0; ep < hsotg->num_of_eps; ep++) { 3722c6f5c050SMian Yousaf Kaukab if (hsotg->eps_in[ep]) 37231f91b4ccSFelipe Balbi dwc2_hsotg_ep_disable(&hsotg->eps_in[ep]->ep); 3724c6f5c050SMian Yousaf Kaukab if (hsotg->eps_out[ep]) 37251f91b4ccSFelipe Balbi dwc2_hsotg_ep_disable(&hsotg->eps_out[ep]->ep); 3726c6f5c050SMian Yousaf Kaukab } 372747a1685fSDinh Nguyen 372847a1685fSDinh Nguyen ret = regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), 372947a1685fSDinh Nguyen hsotg->supplies); 3730d00b4142SRobert Baldyga clk_disable(hsotg->clk); 373147a1685fSDinh Nguyen } 373247a1685fSDinh Nguyen 37337ad8096eSMarek Szyprowski mutex_unlock(&hsotg->init_mutex); 37347ad8096eSMarek Szyprowski 373547a1685fSDinh Nguyen return ret; 373647a1685fSDinh Nguyen } 373747a1685fSDinh Nguyen 37381f91b4ccSFelipe Balbi int dwc2_hsotg_resume(struct dwc2_hsotg *hsotg) 373947a1685fSDinh Nguyen { 374047a1685fSDinh Nguyen unsigned long flags; 374147a1685fSDinh Nguyen int ret = 0; 374247a1685fSDinh Nguyen 37439e779778SGregory Herrero if (hsotg->lx_state == DWC2_L2) 37449e779778SGregory Herrero return ret; 37459e779778SGregory Herrero 37467ad8096eSMarek Szyprowski mutex_lock(&hsotg->init_mutex); 37477ad8096eSMarek Szyprowski 374847a1685fSDinh Nguyen if (hsotg->driver) { 374947a1685fSDinh Nguyen dev_info(hsotg->dev, "resuming usb gadget %s\n", 375047a1685fSDinh Nguyen hsotg->driver->driver.name); 3751d00b4142SRobert Baldyga 3752d00b4142SRobert Baldyga clk_enable(hsotg->clk); 375347a1685fSDinh Nguyen ret = regulator_bulk_enable(ARRAY_SIZE(hsotg->supplies), 375447a1685fSDinh Nguyen hsotg->supplies); 375547a1685fSDinh Nguyen 37561f91b4ccSFelipe Balbi dwc2_hsotg_phy_enable(hsotg); 375747a1685fSDinh Nguyen 375847a1685fSDinh Nguyen spin_lock_irqsave(&hsotg->lock, flags); 37591f91b4ccSFelipe Balbi dwc2_hsotg_core_init_disconnected(hsotg, false); 3760dc6e69e6SMarek Szyprowski if (hsotg->enabled) 37611f91b4ccSFelipe Balbi dwc2_hsotg_core_connect(hsotg); 376247a1685fSDinh Nguyen spin_unlock_irqrestore(&hsotg->lock, flags); 3763dc6e69e6SMarek Szyprowski } 37647ad8096eSMarek Szyprowski mutex_unlock(&hsotg->init_mutex); 376547a1685fSDinh Nguyen 376647a1685fSDinh Nguyen return ret; 376747a1685fSDinh Nguyen } 3768