2 * Copyright (C) 2011 LAPIS Semiconductor Co., Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/pci.h>
12 #include <linux/delay.h>
13 #include <linux/errno.h>
14 #include <linux/list.h>
15 #include <linux/interrupt.h>
16 #include <linux/usb/ch9.h>
17 #include <linux/usb/gadget.h>
18 #include <linux/gpio.h>
19 #include <linux/irq.h>
21 /* GPIO port for VBUS detecting */
22 static int vbus_gpio_port
= -1; /* GPIO port number (-1:Not used) */
24 #define PCH_VBUS_PERIOD 3000 /* VBUS polling period (msec) */
25 #define PCH_VBUS_INTERVAL 10 /* VBUS polling interval (msec) */
27 /* Address offset of Registers */
28 #define UDC_EP_REG_SHIFT 0x20 /* Offset to next EP */
30 #define UDC_EPCTL_ADDR 0x00 /* Endpoint control */
31 #define UDC_EPSTS_ADDR 0x04 /* Endpoint status */
32 #define UDC_BUFIN_FRAMENUM_ADDR 0x08 /* buffer size in / frame number out */
33 #define UDC_BUFOUT_MAXPKT_ADDR 0x0C /* buffer size out / maxpkt in */
34 #define UDC_SUBPTR_ADDR 0x10 /* setup buffer pointer */
35 #define UDC_DESPTR_ADDR 0x14 /* Data descriptor pointer */
36 #define UDC_CONFIRM_ADDR 0x18 /* Write/Read confirmation */
38 #define UDC_DEVCFG_ADDR 0x400 /* Device configuration */
39 #define UDC_DEVCTL_ADDR 0x404 /* Device control */
40 #define UDC_DEVSTS_ADDR 0x408 /* Device status */
41 #define UDC_DEVIRQSTS_ADDR 0x40C /* Device irq status */
42 #define UDC_DEVIRQMSK_ADDR 0x410 /* Device irq mask */
43 #define UDC_EPIRQSTS_ADDR 0x414 /* Endpoint irq status */
44 #define UDC_EPIRQMSK_ADDR 0x418 /* Endpoint irq mask */
45 #define UDC_DEVLPM_ADDR 0x41C /* LPM control / status */
46 #define UDC_CSR_BUSY_ADDR 0x4f0 /* UDC_CSR_BUSY Status register */
47 #define UDC_SRST_ADDR 0x4fc /* SOFT RESET register */
48 #define UDC_CSR_ADDR 0x500 /* USB_DEVICE endpoint register */
50 /* Endpoint control register */
52 #define UDC_EPCTL_MRXFLUSH (1 << 12)
53 #define UDC_EPCTL_RRDY (1 << 9)
54 #define UDC_EPCTL_CNAK (1 << 8)
55 #define UDC_EPCTL_SNAK (1 << 7)
56 #define UDC_EPCTL_NAK (1 << 6)
57 #define UDC_EPCTL_P (1 << 3)
58 #define UDC_EPCTL_F (1 << 1)
59 #define UDC_EPCTL_S (1 << 0)
60 #define UDC_EPCTL_ET_SHIFT 4
62 #define UDC_EPCTL_ET_MASK 0x00000030
63 /* Value for ET field */
64 #define UDC_EPCTL_ET_CONTROL 0
65 #define UDC_EPCTL_ET_ISO 1
66 #define UDC_EPCTL_ET_BULK 2
67 #define UDC_EPCTL_ET_INTERRUPT 3
69 /* Endpoint status register */
71 #define UDC_EPSTS_XFERDONE (1 << 27)
72 #define UDC_EPSTS_RSS (1 << 26)
73 #define UDC_EPSTS_RCS (1 << 25)
74 #define UDC_EPSTS_TXEMPTY (1 << 24)
75 #define UDC_EPSTS_TDC (1 << 10)
76 #define UDC_EPSTS_HE (1 << 9)
77 #define UDC_EPSTS_MRXFIFO_EMP (1 << 8)
78 #define UDC_EPSTS_BNA (1 << 7)
79 #define UDC_EPSTS_IN (1 << 6)
80 #define UDC_EPSTS_OUT_SHIFT 4
82 #define UDC_EPSTS_OUT_MASK 0x00000030
83 #define UDC_EPSTS_ALL_CLR_MASK 0x1F0006F0
84 /* Value for OUT field */
85 #define UDC_EPSTS_OUT_SETUP 2
86 #define UDC_EPSTS_OUT_DATA 1
88 /* Device configuration register */
90 #define UDC_DEVCFG_CSR_PRG (1 << 17)
91 #define UDC_DEVCFG_SP (1 << 3)
93 #define UDC_DEVCFG_SPD_HS 0x0
94 #define UDC_DEVCFG_SPD_FS 0x1
95 #define UDC_DEVCFG_SPD_LS 0x2
97 /* Device control register */
99 #define UDC_DEVCTL_THLEN_SHIFT 24
100 #define UDC_DEVCTL_BRLEN_SHIFT 16
101 #define UDC_DEVCTL_CSR_DONE (1 << 13)
102 #define UDC_DEVCTL_SD (1 << 10)
103 #define UDC_DEVCTL_MODE (1 << 9)
104 #define UDC_DEVCTL_BREN (1 << 8)
105 #define UDC_DEVCTL_THE (1 << 7)
106 #define UDC_DEVCTL_DU (1 << 4)
107 #define UDC_DEVCTL_TDE (1 << 3)
108 #define UDC_DEVCTL_RDE (1 << 2)
109 #define UDC_DEVCTL_RES (1 << 0)
111 /* Device status register */
113 #define UDC_DEVSTS_TS_SHIFT 18
114 #define UDC_DEVSTS_ENUM_SPEED_SHIFT 13
115 #define UDC_DEVSTS_ALT_SHIFT 8
116 #define UDC_DEVSTS_INTF_SHIFT 4
117 #define UDC_DEVSTS_CFG_SHIFT 0
119 #define UDC_DEVSTS_TS_MASK 0xfffc0000
120 #define UDC_DEVSTS_ENUM_SPEED_MASK 0x00006000
121 #define UDC_DEVSTS_ALT_MASK 0x00000f00
122 #define UDC_DEVSTS_INTF_MASK 0x000000f0
123 #define UDC_DEVSTS_CFG_MASK 0x0000000f
124 /* value for maximum speed for SPEED field */
125 #define UDC_DEVSTS_ENUM_SPEED_FULL 1
126 #define UDC_DEVSTS_ENUM_SPEED_HIGH 0
127 #define UDC_DEVSTS_ENUM_SPEED_LOW 2
128 #define UDC_DEVSTS_ENUM_SPEED_FULLX 3
130 /* Device irq register */
132 #define UDC_DEVINT_RWKP (1 << 7)
133 #define UDC_DEVINT_ENUM (1 << 6)
134 #define UDC_DEVINT_SOF (1 << 5)
135 #define UDC_DEVINT_US (1 << 4)
136 #define UDC_DEVINT_UR (1 << 3)
137 #define UDC_DEVINT_ES (1 << 2)
138 #define UDC_DEVINT_SI (1 << 1)
139 #define UDC_DEVINT_SC (1 << 0)
141 #define UDC_DEVINT_MSK 0x7f
143 /* Endpoint irq register */
145 #define UDC_EPINT_IN_SHIFT 0
146 #define UDC_EPINT_OUT_SHIFT 16
147 #define UDC_EPINT_IN_EP0 (1 << 0)
148 #define UDC_EPINT_OUT_EP0 (1 << 16)
150 #define UDC_EPINT_MSK_DISABLE_ALL 0xffffffff
152 /* UDC_CSR_BUSY Status register */
154 #define UDC_CSR_BUSY (1 << 0)
156 /* SOFT RESET register */
158 #define UDC_PSRST (1 << 1)
159 #define UDC_SRST (1 << 0)
161 /* USB_DEVICE endpoint register */
163 #define UDC_CSR_NE_NUM_SHIFT 0
164 #define UDC_CSR_NE_DIR_SHIFT 4
165 #define UDC_CSR_NE_TYPE_SHIFT 5
166 #define UDC_CSR_NE_CFG_SHIFT 7
167 #define UDC_CSR_NE_INTF_SHIFT 11
168 #define UDC_CSR_NE_ALT_SHIFT 15
169 #define UDC_CSR_NE_MAX_PKT_SHIFT 19
171 #define UDC_CSR_NE_NUM_MASK 0x0000000f
172 #define UDC_CSR_NE_DIR_MASK 0x00000010
173 #define UDC_CSR_NE_TYPE_MASK 0x00000060
174 #define UDC_CSR_NE_CFG_MASK 0x00000780
175 #define UDC_CSR_NE_INTF_MASK 0x00007800
176 #define UDC_CSR_NE_ALT_MASK 0x00078000
177 #define UDC_CSR_NE_MAX_PKT_MASK 0x3ff80000
179 #define PCH_UDC_CSR(ep) (UDC_CSR_ADDR + ep*4)
180 #define PCH_UDC_EPINT(in, num)\
181 (1 << (num + (in ? UDC_EPINT_IN_SHIFT : UDC_EPINT_OUT_SHIFT)))
183 /* Index of endpoint */
184 #define UDC_EP0IN_IDX 0
185 #define UDC_EP0OUT_IDX 1
186 #define UDC_EPIN_IDX(ep) (ep * 2)
187 #define UDC_EPOUT_IDX(ep) (ep * 2 + 1)
188 #define PCH_UDC_EP0 0
189 #define PCH_UDC_EP1 1
190 #define PCH_UDC_EP2 2
191 #define PCH_UDC_EP3 3
193 /* Number of endpoint */
194 #define PCH_UDC_EP_NUM 32 /* Total number of EPs (16 IN,16 OUT) */
195 #define PCH_UDC_USED_EP_NUM 4 /* EP number of EP's really used */
197 #define PCH_UDC_BRLEN 0x0F /* Burst length */
198 #define PCH_UDC_THLEN 0x1F /* Threshold length */
199 /* Value of EP Buffer Size */
200 #define UDC_EP0IN_BUFF_SIZE 16
201 #define UDC_EPIN_BUFF_SIZE 256
202 #define UDC_EP0OUT_BUFF_SIZE 16
203 #define UDC_EPOUT_BUFF_SIZE 256
204 /* Value of EP maximum packet size */
205 #define UDC_EP0IN_MAX_PKT_SIZE 64
206 #define UDC_EP0OUT_MAX_PKT_SIZE 64
207 #define UDC_BULK_MAX_PKT_SIZE 512
210 #define DMA_DIR_RX 1 /* DMA for data receive */
211 #define DMA_DIR_TX 2 /* DMA for data transmit */
212 #define DMA_ADDR_INVALID (~(dma_addr_t)0)
213 #define UDC_DMA_MAXPACKET 65536 /* maximum packet size for DMA */
216 * struct pch_udc_data_dma_desc - Structure to hold DMA descriptor information
218 * @status: Status quadlet
219 * @reserved: Reserved
220 * @dataptr: Buffer descriptor
221 * @next: Next descriptor
223 struct pch_udc_data_dma_desc
{
231 * struct pch_udc_stp_dma_desc - Structure to hold DMA descriptor information
234 * @reserved: Reserved
235 * @data12: First setup word
236 * @data34: Second setup word
238 struct pch_udc_stp_dma_desc
{
241 struct usb_ctrlrequest request
;
242 } __attribute((packed
));
244 /* DMA status definitions */
246 #define PCH_UDC_BUFF_STS 0xC0000000
247 #define PCH_UDC_BS_HST_RDY 0x00000000
248 #define PCH_UDC_BS_DMA_BSY 0x40000000
249 #define PCH_UDC_BS_DMA_DONE 0x80000000
250 #define PCH_UDC_BS_HST_BSY 0xC0000000
252 #define PCH_UDC_RXTX_STS 0x30000000
253 #define PCH_UDC_RTS_SUCC 0x00000000
254 #define PCH_UDC_RTS_DESERR 0x10000000
255 #define PCH_UDC_RTS_BUFERR 0x30000000
256 /* Last Descriptor Indication */
257 #define PCH_UDC_DMA_LAST 0x08000000
258 /* Number of Rx/Tx Bytes Mask */
259 #define PCH_UDC_RXTX_BYTES 0x0000ffff
262 * struct pch_udc_cfg_data - Structure to hold current configuration
263 * and interface information
264 * @cur_cfg: current configuration in use
265 * @cur_intf: current interface in use
266 * @cur_alt: current alt interface in use
268 struct pch_udc_cfg_data
{
275 * struct pch_udc_ep - Structure holding a PCH USB device Endpoint information
276 * @ep: embedded ep request
277 * @td_stp_phys: for setup request
278 * @td_data_phys: for data request
279 * @td_stp: for setup request
280 * @td_data: for data request
281 * @dev: reference to device struct
282 * @offset_addr: offset address of ep register
284 * @queue: queue for requests
285 * @num: endpoint number
286 * @in: endpoint is IN
287 * @halted: endpoint halted?
288 * @epsts: Endpoint status
292 dma_addr_t td_stp_phys
;
293 dma_addr_t td_data_phys
;
294 struct pch_udc_stp_dma_desc
*td_stp
;
295 struct pch_udc_data_dma_desc
*td_data
;
296 struct pch_udc_dev
*dev
;
297 unsigned long offset_addr
;
298 struct list_head queue
;
306 * struct pch_vbus_gpio_data - Structure holding GPIO informaton
308 * @port: gpio port number
309 * @intr: gpio interrupt number
310 * @irq_work_fall Structure for WorkQueue
311 * @irq_work_rise Structure for WorkQueue
313 struct pch_vbus_gpio_data
{
316 struct work_struct irq_work_fall
;
317 struct work_struct irq_work_rise
;
321 * struct pch_udc_dev - Structure holding complete information
322 * of the PCH USB device
323 * @gadget: gadget driver data
324 * @driver: reference to gadget driver bound
325 * @pdev: reference to the PCI device
326 * @ep: array of endpoints
327 * @lock: protects all state
328 * @active: enabled the PCI device
329 * @stall: stall requested
330 * @prot_stall: protcol stall requested
331 * @irq_registered: irq registered with system
332 * @mem_region: device memory mapped
333 * @registered: driver regsitered with system
334 * @suspended: driver in suspended state
335 * @connected: gadget driver associated
336 * @vbus_session: required vbus_session state
337 * @set_cfg_not_acked: pending acknowledgement 4 setup
338 * @waiting_zlp_ack: pending acknowledgement 4 ZLP
339 * @data_requests: DMA pool for data requests
340 * @stp_requests: DMA pool for setup requests
341 * @dma_addr: DMA pool for received
342 * @ep0out_buf: Buffer for DMA
343 * @setup_data: Received setup data
344 * @phys_addr: of device memory
345 * @base_addr: for mapped device memory
346 * @irq: IRQ line for the device
347 * @cfg_data: current cfg, intf, and alt in use
348 * @vbus_gpio: GPIO informaton for detecting VBUS
351 struct usb_gadget gadget
;
352 struct usb_gadget_driver
*driver
;
353 struct pci_dev
*pdev
;
354 struct pch_udc_ep ep
[PCH_UDC_EP_NUM
];
355 spinlock_t lock
; /* protects all state */
366 struct pci_pool
*data_requests
;
367 struct pci_pool
*stp_requests
;
370 struct usb_ctrlrequest setup_data
;
371 unsigned long phys_addr
;
372 void __iomem
*base_addr
;
374 struct pch_udc_cfg_data cfg_data
;
375 struct pch_vbus_gpio_data vbus_gpio
;
377 #define to_pch_udc(g) (container_of((g), struct pch_udc_dev, gadget))
379 #define PCH_UDC_PCI_BAR 1
380 #define PCI_DEVICE_ID_INTEL_EG20T_UDC 0x8808
381 #define PCI_VENDOR_ID_ROHM 0x10DB
382 #define PCI_DEVICE_ID_ML7213_IOH_UDC 0x801D
383 #define PCI_DEVICE_ID_ML7831_IOH_UDC 0x8808
385 static const char ep0_string
[] = "ep0in";
386 static DEFINE_SPINLOCK(udc_stall_spinlock
); /* stall spin lock */
387 static bool speed_fs
;
388 module_param_named(speed_fs
, speed_fs
, bool, S_IRUGO
);
389 MODULE_PARM_DESC(speed_fs
, "true for Full speed operation");
392 * struct pch_udc_request - Structure holding a PCH USB device request packet
393 * @req: embedded ep request
394 * @td_data_phys: phys. address
395 * @td_data: first dma desc. of chain
396 * @td_data_last: last dma desc. of chain
397 * @queue: associated queue
398 * @dma_going: DMA in progress for request
399 * @dma_mapped: DMA memory mapped for request
400 * @dma_done: DMA completed for request
401 * @chain_len: chain length
402 * @buf: Buffer memory for align adjustment
403 * @dma: DMA memory for align adjustment
405 struct pch_udc_request
{
406 struct usb_request req
;
407 dma_addr_t td_data_phys
;
408 struct pch_udc_data_dma_desc
*td_data
;
409 struct pch_udc_data_dma_desc
*td_data_last
;
410 struct list_head queue
;
411 unsigned dma_going
:1,
419 static inline u32
pch_udc_readl(struct pch_udc_dev
*dev
, unsigned long reg
)
421 return ioread32(dev
->base_addr
+ reg
);
424 static inline void pch_udc_writel(struct pch_udc_dev
*dev
,
425 unsigned long val
, unsigned long reg
)
427 iowrite32(val
, dev
->base_addr
+ reg
);
430 static inline void pch_udc_bit_set(struct pch_udc_dev
*dev
,
432 unsigned long bitmask
)
434 pch_udc_writel(dev
, pch_udc_readl(dev
, reg
) | bitmask
, reg
);
437 static inline void pch_udc_bit_clr(struct pch_udc_dev
*dev
,
439 unsigned long bitmask
)
441 pch_udc_writel(dev
, pch_udc_readl(dev
, reg
) & ~(bitmask
), reg
);
444 static inline u32
pch_udc_ep_readl(struct pch_udc_ep
*ep
, unsigned long reg
)
446 return ioread32(ep
->dev
->base_addr
+ ep
->offset_addr
+ reg
);
449 static inline void pch_udc_ep_writel(struct pch_udc_ep
*ep
,
450 unsigned long val
, unsigned long reg
)
452 iowrite32(val
, ep
->dev
->base_addr
+ ep
->offset_addr
+ reg
);
455 static inline void pch_udc_ep_bit_set(struct pch_udc_ep
*ep
,
457 unsigned long bitmask
)
459 pch_udc_ep_writel(ep
, pch_udc_ep_readl(ep
, reg
) | bitmask
, reg
);
462 static inline void pch_udc_ep_bit_clr(struct pch_udc_ep
*ep
,
464 unsigned long bitmask
)
466 pch_udc_ep_writel(ep
, pch_udc_ep_readl(ep
, reg
) & ~(bitmask
), reg
);
470 * pch_udc_csr_busy() - Wait till idle.
471 * @dev: Reference to pch_udc_dev structure
473 static void pch_udc_csr_busy(struct pch_udc_dev
*dev
)
475 unsigned int count
= 200;
478 while ((pch_udc_readl(dev
, UDC_CSR_BUSY_ADDR
) & UDC_CSR_BUSY
)
482 dev_err(&dev
->pdev
->dev
, "%s: wait error\n", __func__
);
486 * pch_udc_write_csr() - Write the command and status registers.
487 * @dev: Reference to pch_udc_dev structure
488 * @val: value to be written to CSR register
489 * @addr: address of CSR register
491 static void pch_udc_write_csr(struct pch_udc_dev
*dev
, unsigned long val
,
494 unsigned long reg
= PCH_UDC_CSR(ep
);
496 pch_udc_csr_busy(dev
); /* Wait till idle */
497 pch_udc_writel(dev
, val
, reg
);
498 pch_udc_csr_busy(dev
); /* Wait till idle */
502 * pch_udc_read_csr() - Read the command and status registers.
503 * @dev: Reference to pch_udc_dev structure
504 * @addr: address of CSR register
506 * Return codes: content of CSR register
508 static u32
pch_udc_read_csr(struct pch_udc_dev
*dev
, unsigned int ep
)
510 unsigned long reg
= PCH_UDC_CSR(ep
);
512 pch_udc_csr_busy(dev
); /* Wait till idle */
513 pch_udc_readl(dev
, reg
); /* Dummy read */
514 pch_udc_csr_busy(dev
); /* Wait till idle */
515 return pch_udc_readl(dev
, reg
);
519 * pch_udc_rmt_wakeup() - Initiate for remote wakeup
520 * @dev: Reference to pch_udc_dev structure
522 static inline void pch_udc_rmt_wakeup(struct pch_udc_dev
*dev
)
524 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
526 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
530 * pch_udc_get_frame() - Get the current frame from device status register
531 * @dev: Reference to pch_udc_dev structure
532 * Retern current frame
534 static inline int pch_udc_get_frame(struct pch_udc_dev
*dev
)
536 u32 frame
= pch_udc_readl(dev
, UDC_DEVSTS_ADDR
);
537 return (frame
& UDC_DEVSTS_TS_MASK
) >> UDC_DEVSTS_TS_SHIFT
;
541 * pch_udc_clear_selfpowered() - Clear the self power control
542 * @dev: Reference to pch_udc_regs structure
544 static inline void pch_udc_clear_selfpowered(struct pch_udc_dev
*dev
)
546 pch_udc_bit_clr(dev
, UDC_DEVCFG_ADDR
, UDC_DEVCFG_SP
);
550 * pch_udc_set_selfpowered() - Set the self power control
551 * @dev: Reference to pch_udc_regs structure
553 static inline void pch_udc_set_selfpowered(struct pch_udc_dev
*dev
)
555 pch_udc_bit_set(dev
, UDC_DEVCFG_ADDR
, UDC_DEVCFG_SP
);
559 * pch_udc_set_disconnect() - Set the disconnect status.
560 * @dev: Reference to pch_udc_regs structure
562 static inline void pch_udc_set_disconnect(struct pch_udc_dev
*dev
)
564 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_SD
);
568 * pch_udc_clear_disconnect() - Clear the disconnect status.
569 * @dev: Reference to pch_udc_regs structure
571 static void pch_udc_clear_disconnect(struct pch_udc_dev
*dev
)
573 /* Clear the disconnect */
574 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
575 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_SD
);
577 /* Resume USB signalling */
578 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
582 * pch_udc_reconnect() - This API initializes usb device controller,
583 * and clear the disconnect status.
584 * @dev: Reference to pch_udc_regs structure
586 static void pch_udc_init(struct pch_udc_dev
*dev
);
587 static void pch_udc_reconnect(struct pch_udc_dev
*dev
)
591 /* enable device interrupts */
592 /* pch_udc_enable_interrupts() */
593 pch_udc_bit_clr(dev
, UDC_DEVIRQMSK_ADDR
,
594 UDC_DEVINT_UR
| UDC_DEVINT_ENUM
);
596 /* Clear the disconnect */
597 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
598 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_SD
);
600 /* Resume USB signalling */
601 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
605 * pch_udc_vbus_session() - set or clearr the disconnect status.
606 * @dev: Reference to pch_udc_regs structure
607 * @is_active: Parameter specifying the action
608 * 0: indicating VBUS power is ending
609 * !0: indicating VBUS power is starting
611 static inline void pch_udc_vbus_session(struct pch_udc_dev
*dev
,
615 pch_udc_reconnect(dev
);
616 dev
->vbus_session
= 1;
618 if (dev
->driver
&& dev
->driver
->disconnect
) {
619 spin_unlock(&dev
->lock
);
620 dev
->driver
->disconnect(&dev
->gadget
);
621 spin_lock(&dev
->lock
);
623 pch_udc_set_disconnect(dev
);
624 dev
->vbus_session
= 0;
629 * pch_udc_ep_set_stall() - Set the stall of endpoint
630 * @ep: Reference to structure of type pch_udc_ep_regs
632 static void pch_udc_ep_set_stall(struct pch_udc_ep
*ep
)
635 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_F
);
636 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_S
);
638 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_S
);
643 * pch_udc_ep_clear_stall() - Clear the stall of endpoint
644 * @ep: Reference to structure of type pch_udc_ep_regs
646 static inline void pch_udc_ep_clear_stall(struct pch_udc_ep
*ep
)
648 /* Clear the stall */
649 pch_udc_ep_bit_clr(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_S
);
650 /* Clear NAK by writing CNAK */
651 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_CNAK
);
655 * pch_udc_ep_set_trfr_type() - Set the transfer type of endpoint
656 * @ep: Reference to structure of type pch_udc_ep_regs
657 * @type: Type of endpoint
659 static inline void pch_udc_ep_set_trfr_type(struct pch_udc_ep
*ep
,
662 pch_udc_ep_writel(ep
, ((type
<< UDC_EPCTL_ET_SHIFT
) &
663 UDC_EPCTL_ET_MASK
), UDC_EPCTL_ADDR
);
667 * pch_udc_ep_set_bufsz() - Set the maximum packet size for the endpoint
668 * @ep: Reference to structure of type pch_udc_ep_regs
669 * @buf_size: The buffer word size
671 static void pch_udc_ep_set_bufsz(struct pch_udc_ep
*ep
,
672 u32 buf_size
, u32 ep_in
)
676 data
= pch_udc_ep_readl(ep
, UDC_BUFIN_FRAMENUM_ADDR
);
677 data
= (data
& 0xffff0000) | (buf_size
& 0xffff);
678 pch_udc_ep_writel(ep
, data
, UDC_BUFIN_FRAMENUM_ADDR
);
680 data
= pch_udc_ep_readl(ep
, UDC_BUFOUT_MAXPKT_ADDR
);
681 data
= (buf_size
<< 16) | (data
& 0xffff);
682 pch_udc_ep_writel(ep
, data
, UDC_BUFOUT_MAXPKT_ADDR
);
687 * pch_udc_ep_set_maxpkt() - Set the Max packet size for the endpoint
688 * @ep: Reference to structure of type pch_udc_ep_regs
689 * @pkt_size: The packet byte size
691 static void pch_udc_ep_set_maxpkt(struct pch_udc_ep
*ep
, u32 pkt_size
)
693 u32 data
= pch_udc_ep_readl(ep
, UDC_BUFOUT_MAXPKT_ADDR
);
694 data
= (data
& 0xffff0000) | (pkt_size
& 0xffff);
695 pch_udc_ep_writel(ep
, data
, UDC_BUFOUT_MAXPKT_ADDR
);
699 * pch_udc_ep_set_subptr() - Set the Setup buffer pointer for the endpoint
700 * @ep: Reference to structure of type pch_udc_ep_regs
701 * @addr: Address of the register
703 static inline void pch_udc_ep_set_subptr(struct pch_udc_ep
*ep
, u32 addr
)
705 pch_udc_ep_writel(ep
, addr
, UDC_SUBPTR_ADDR
);
709 * pch_udc_ep_set_ddptr() - Set the Data descriptor pointer for the endpoint
710 * @ep: Reference to structure of type pch_udc_ep_regs
711 * @addr: Address of the register
713 static inline void pch_udc_ep_set_ddptr(struct pch_udc_ep
*ep
, u32 addr
)
715 pch_udc_ep_writel(ep
, addr
, UDC_DESPTR_ADDR
);
719 * pch_udc_ep_set_pd() - Set the poll demand bit for the endpoint
720 * @ep: Reference to structure of type pch_udc_ep_regs
722 static inline void pch_udc_ep_set_pd(struct pch_udc_ep
*ep
)
724 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_P
);
728 * pch_udc_ep_set_rrdy() - Set the receive ready bit for the endpoint
729 * @ep: Reference to structure of type pch_udc_ep_regs
731 static inline void pch_udc_ep_set_rrdy(struct pch_udc_ep
*ep
)
733 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_RRDY
);
737 * pch_udc_ep_clear_rrdy() - Clear the receive ready bit for the endpoint
738 * @ep: Reference to structure of type pch_udc_ep_regs
740 static inline void pch_udc_ep_clear_rrdy(struct pch_udc_ep
*ep
)
742 pch_udc_ep_bit_clr(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_RRDY
);
746 * pch_udc_set_dma() - Set the 'TDE' or RDE bit of device control
747 * register depending on the direction specified
748 * @dev: Reference to structure of type pch_udc_regs
749 * @dir: whether Tx or Rx
750 * DMA_DIR_RX: Receive
751 * DMA_DIR_TX: Transmit
753 static inline void pch_udc_set_dma(struct pch_udc_dev
*dev
, int dir
)
755 if (dir
== DMA_DIR_RX
)
756 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RDE
);
757 else if (dir
== DMA_DIR_TX
)
758 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_TDE
);
762 * pch_udc_clear_dma() - Clear the 'TDE' or RDE bit of device control
763 * register depending on the direction specified
764 * @dev: Reference to structure of type pch_udc_regs
765 * @dir: Whether Tx or Rx
766 * DMA_DIR_RX: Receive
767 * DMA_DIR_TX: Transmit
769 static inline void pch_udc_clear_dma(struct pch_udc_dev
*dev
, int dir
)
771 if (dir
== DMA_DIR_RX
)
772 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RDE
);
773 else if (dir
== DMA_DIR_TX
)
774 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_TDE
);
778 * pch_udc_set_csr_done() - Set the device control register
779 * CSR done field (bit 13)
780 * @dev: reference to structure of type pch_udc_regs
782 static inline void pch_udc_set_csr_done(struct pch_udc_dev
*dev
)
784 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_CSR_DONE
);
788 * pch_udc_disable_interrupts() - Disables the specified interrupts
789 * @dev: Reference to structure of type pch_udc_regs
790 * @mask: Mask to disable interrupts
792 static inline void pch_udc_disable_interrupts(struct pch_udc_dev
*dev
,
795 pch_udc_bit_set(dev
, UDC_DEVIRQMSK_ADDR
, mask
);
799 * pch_udc_enable_interrupts() - Enable the specified interrupts
800 * @dev: Reference to structure of type pch_udc_regs
801 * @mask: Mask to enable interrupts
803 static inline void pch_udc_enable_interrupts(struct pch_udc_dev
*dev
,
806 pch_udc_bit_clr(dev
, UDC_DEVIRQMSK_ADDR
, mask
);
810 * pch_udc_disable_ep_interrupts() - Disable endpoint interrupts
811 * @dev: Reference to structure of type pch_udc_regs
812 * @mask: Mask to disable interrupts
814 static inline void pch_udc_disable_ep_interrupts(struct pch_udc_dev
*dev
,
817 pch_udc_bit_set(dev
, UDC_EPIRQMSK_ADDR
, mask
);
821 * pch_udc_enable_ep_interrupts() - Enable endpoint interrupts
822 * @dev: Reference to structure of type pch_udc_regs
823 * @mask: Mask to enable interrupts
825 static inline void pch_udc_enable_ep_interrupts(struct pch_udc_dev
*dev
,
828 pch_udc_bit_clr(dev
, UDC_EPIRQMSK_ADDR
, mask
);
832 * pch_udc_read_device_interrupts() - Read the device interrupts
833 * @dev: Reference to structure of type pch_udc_regs
834 * Retern The device interrupts
836 static inline u32
pch_udc_read_device_interrupts(struct pch_udc_dev
*dev
)
838 return pch_udc_readl(dev
, UDC_DEVIRQSTS_ADDR
);
842 * pch_udc_write_device_interrupts() - Write device interrupts
843 * @dev: Reference to structure of type pch_udc_regs
844 * @val: The value to be written to interrupt register
846 static inline void pch_udc_write_device_interrupts(struct pch_udc_dev
*dev
,
849 pch_udc_writel(dev
, val
, UDC_DEVIRQSTS_ADDR
);
853 * pch_udc_read_ep_interrupts() - Read the endpoint interrupts
854 * @dev: Reference to structure of type pch_udc_regs
855 * Retern The endpoint interrupt
857 static inline u32
pch_udc_read_ep_interrupts(struct pch_udc_dev
*dev
)
859 return pch_udc_readl(dev
, UDC_EPIRQSTS_ADDR
);
863 * pch_udc_write_ep_interrupts() - Clear endpoint interupts
864 * @dev: Reference to structure of type pch_udc_regs
865 * @val: The value to be written to interrupt register
867 static inline void pch_udc_write_ep_interrupts(struct pch_udc_dev
*dev
,
870 pch_udc_writel(dev
, val
, UDC_EPIRQSTS_ADDR
);
874 * pch_udc_read_device_status() - Read the device status
875 * @dev: Reference to structure of type pch_udc_regs
876 * Retern The device status
878 static inline u32
pch_udc_read_device_status(struct pch_udc_dev
*dev
)
880 return pch_udc_readl(dev
, UDC_DEVSTS_ADDR
);
884 * pch_udc_read_ep_control() - Read the endpoint control
885 * @ep: Reference to structure of type pch_udc_ep_regs
886 * Retern The endpoint control register value
888 static inline u32
pch_udc_read_ep_control(struct pch_udc_ep
*ep
)
890 return pch_udc_ep_readl(ep
, UDC_EPCTL_ADDR
);
894 * pch_udc_clear_ep_control() - Clear the endpoint control register
895 * @ep: Reference to structure of type pch_udc_ep_regs
896 * Retern The endpoint control register value
898 static inline void pch_udc_clear_ep_control(struct pch_udc_ep
*ep
)
900 return pch_udc_ep_writel(ep
, 0, UDC_EPCTL_ADDR
);
904 * pch_udc_read_ep_status() - Read the endpoint status
905 * @ep: Reference to structure of type pch_udc_ep_regs
906 * Retern The endpoint status
908 static inline u32
pch_udc_read_ep_status(struct pch_udc_ep
*ep
)
910 return pch_udc_ep_readl(ep
, UDC_EPSTS_ADDR
);
914 * pch_udc_clear_ep_status() - Clear the endpoint status
915 * @ep: Reference to structure of type pch_udc_ep_regs
916 * @stat: Endpoint status
918 static inline void pch_udc_clear_ep_status(struct pch_udc_ep
*ep
,
921 return pch_udc_ep_writel(ep
, stat
, UDC_EPSTS_ADDR
);
925 * pch_udc_ep_set_nak() - Set the bit 7 (SNAK field)
926 * of the endpoint control register
927 * @ep: Reference to structure of type pch_udc_ep_regs
929 static inline void pch_udc_ep_set_nak(struct pch_udc_ep
*ep
)
931 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_SNAK
);
935 * pch_udc_ep_clear_nak() - Set the bit 8 (CNAK field)
936 * of the endpoint control register
937 * @ep: reference to structure of type pch_udc_ep_regs
939 static void pch_udc_ep_clear_nak(struct pch_udc_ep
*ep
)
941 unsigned int loopcnt
= 0;
942 struct pch_udc_dev
*dev
= ep
->dev
;
944 if (!(pch_udc_ep_readl(ep
, UDC_EPCTL_ADDR
) & UDC_EPCTL_NAK
))
948 while (!(pch_udc_read_ep_status(ep
) & UDC_EPSTS_MRXFIFO_EMP
) &&
952 dev_err(&dev
->pdev
->dev
, "%s: RxFIFO not Empty\n",
956 while ((pch_udc_read_ep_control(ep
) & UDC_EPCTL_NAK
) && --loopcnt
) {
957 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_CNAK
);
961 dev_err(&dev
->pdev
->dev
, "%s: Clear NAK not set for ep%d%s\n",
962 __func__
, ep
->num
, (ep
->in
? "in" : "out"));
966 * pch_udc_ep_fifo_flush() - Flush the endpoint fifo
967 * @ep: reference to structure of type pch_udc_ep_regs
968 * @dir: direction of endpoint
972 static void pch_udc_ep_fifo_flush(struct pch_udc_ep
*ep
, int dir
)
974 if (dir
) { /* IN ep */
975 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_F
);
981 * pch_udc_ep_enable() - This api enables endpoint
982 * @regs: Reference to structure pch_udc_ep_regs
983 * @desc: endpoint descriptor
985 static void pch_udc_ep_enable(struct pch_udc_ep
*ep
,
986 struct pch_udc_cfg_data
*cfg
,
987 const struct usb_endpoint_descriptor
*desc
)
992 pch_udc_ep_set_trfr_type(ep
, desc
->bmAttributes
);
994 buff_size
= UDC_EPIN_BUFF_SIZE
;
996 buff_size
= UDC_EPOUT_BUFF_SIZE
;
997 pch_udc_ep_set_bufsz(ep
, buff_size
, ep
->in
);
998 pch_udc_ep_set_maxpkt(ep
, usb_endpoint_maxp(desc
));
999 pch_udc_ep_set_nak(ep
);
1000 pch_udc_ep_fifo_flush(ep
, ep
->in
);
1001 /* Configure the endpoint */
1002 val
= ep
->num
<< UDC_CSR_NE_NUM_SHIFT
| ep
->in
<< UDC_CSR_NE_DIR_SHIFT
|
1003 ((desc
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) <<
1004 UDC_CSR_NE_TYPE_SHIFT
) |
1005 (cfg
->cur_cfg
<< UDC_CSR_NE_CFG_SHIFT
) |
1006 (cfg
->cur_intf
<< UDC_CSR_NE_INTF_SHIFT
) |
1007 (cfg
->cur_alt
<< UDC_CSR_NE_ALT_SHIFT
) |
1008 usb_endpoint_maxp(desc
) << UDC_CSR_NE_MAX_PKT_SHIFT
;
1011 pch_udc_write_csr(ep
->dev
, val
, UDC_EPIN_IDX(ep
->num
));
1013 pch_udc_write_csr(ep
->dev
, val
, UDC_EPOUT_IDX(ep
->num
));
1017 * pch_udc_ep_disable() - This api disables endpoint
1018 * @regs: Reference to structure pch_udc_ep_regs
1020 static void pch_udc_ep_disable(struct pch_udc_ep
*ep
)
1023 /* flush the fifo */
1024 pch_udc_ep_writel(ep
, UDC_EPCTL_F
, UDC_EPCTL_ADDR
);
1026 pch_udc_ep_writel(ep
, UDC_EPCTL_SNAK
, UDC_EPCTL_ADDR
);
1027 pch_udc_ep_bit_set(ep
, UDC_EPSTS_ADDR
, UDC_EPSTS_IN
);
1030 pch_udc_ep_writel(ep
, UDC_EPCTL_SNAK
, UDC_EPCTL_ADDR
);
1032 /* reset desc pointer */
1033 pch_udc_ep_writel(ep
, 0, UDC_DESPTR_ADDR
);
1037 * pch_udc_wait_ep_stall() - Wait EP stall.
1038 * @dev: Reference to pch_udc_dev structure
1040 static void pch_udc_wait_ep_stall(struct pch_udc_ep
*ep
)
1042 unsigned int count
= 10000;
1044 /* Wait till idle */
1045 while ((pch_udc_read_ep_control(ep
) & UDC_EPCTL_S
) && --count
)
1048 dev_err(&ep
->dev
->pdev
->dev
, "%s: wait error\n", __func__
);
1052 * pch_udc_init() - This API initializes usb device controller
1053 * @dev: Rreference to pch_udc_regs structure
1055 static void pch_udc_init(struct pch_udc_dev
*dev
)
1058 pr_err("%s: Invalid address\n", __func__
);
1061 /* Soft Reset and Reset PHY */
1062 pch_udc_writel(dev
, UDC_SRST
, UDC_SRST_ADDR
);
1063 pch_udc_writel(dev
, UDC_SRST
| UDC_PSRST
, UDC_SRST_ADDR
);
1065 pch_udc_writel(dev
, UDC_SRST
, UDC_SRST_ADDR
);
1066 pch_udc_writel(dev
, 0x00, UDC_SRST_ADDR
);
1068 /* mask and clear all device interrupts */
1069 pch_udc_bit_set(dev
, UDC_DEVIRQMSK_ADDR
, UDC_DEVINT_MSK
);
1070 pch_udc_bit_set(dev
, UDC_DEVIRQSTS_ADDR
, UDC_DEVINT_MSK
);
1072 /* mask and clear all ep interrupts */
1073 pch_udc_bit_set(dev
, UDC_EPIRQMSK_ADDR
, UDC_EPINT_MSK_DISABLE_ALL
);
1074 pch_udc_bit_set(dev
, UDC_EPIRQSTS_ADDR
, UDC_EPINT_MSK_DISABLE_ALL
);
1076 /* enable dynamic CSR programmingi, self powered and device speed */
1078 pch_udc_bit_set(dev
, UDC_DEVCFG_ADDR
, UDC_DEVCFG_CSR_PRG
|
1079 UDC_DEVCFG_SP
| UDC_DEVCFG_SPD_FS
);
1080 else /* defaul high speed */
1081 pch_udc_bit_set(dev
, UDC_DEVCFG_ADDR
, UDC_DEVCFG_CSR_PRG
|
1082 UDC_DEVCFG_SP
| UDC_DEVCFG_SPD_HS
);
1083 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
,
1084 (PCH_UDC_THLEN
<< UDC_DEVCTL_THLEN_SHIFT
) |
1085 (PCH_UDC_BRLEN
<< UDC_DEVCTL_BRLEN_SHIFT
) |
1086 UDC_DEVCTL_MODE
| UDC_DEVCTL_BREN
|
1091 * pch_udc_exit() - This API exit usb device controller
1092 * @dev: Reference to pch_udc_regs structure
1094 static void pch_udc_exit(struct pch_udc_dev
*dev
)
1096 /* mask all device interrupts */
1097 pch_udc_bit_set(dev
, UDC_DEVIRQMSK_ADDR
, UDC_DEVINT_MSK
);
1098 /* mask all ep interrupts */
1099 pch_udc_bit_set(dev
, UDC_EPIRQMSK_ADDR
, UDC_EPINT_MSK_DISABLE_ALL
);
1100 /* put device in disconnected state */
1101 pch_udc_set_disconnect(dev
);
1105 * pch_udc_pcd_get_frame() - This API is invoked to get the current frame number
1106 * @gadget: Reference to the gadget driver
1110 * -EINVAL: If the gadget passed is NULL
1112 static int pch_udc_pcd_get_frame(struct usb_gadget
*gadget
)
1114 struct pch_udc_dev
*dev
;
1118 dev
= container_of(gadget
, struct pch_udc_dev
, gadget
);
1119 return pch_udc_get_frame(dev
);
1123 * pch_udc_pcd_wakeup() - This API is invoked to initiate a remote wakeup
1124 * @gadget: Reference to the gadget driver
1128 * -EINVAL: If the gadget passed is NULL
1130 static int pch_udc_pcd_wakeup(struct usb_gadget
*gadget
)
1132 struct pch_udc_dev
*dev
;
1133 unsigned long flags
;
1137 dev
= container_of(gadget
, struct pch_udc_dev
, gadget
);
1138 spin_lock_irqsave(&dev
->lock
, flags
);
1139 pch_udc_rmt_wakeup(dev
);
1140 spin_unlock_irqrestore(&dev
->lock
, flags
);
1145 * pch_udc_pcd_selfpowered() - This API is invoked to specify whether the device
1146 * is self powered or not
1147 * @gadget: Reference to the gadget driver
1148 * @value: Specifies self powered or not
1152 * -EINVAL: If the gadget passed is NULL
1154 static int pch_udc_pcd_selfpowered(struct usb_gadget
*gadget
, int value
)
1156 struct pch_udc_dev
*dev
;
1160 dev
= container_of(gadget
, struct pch_udc_dev
, gadget
);
1162 pch_udc_set_selfpowered(dev
);
1164 pch_udc_clear_selfpowered(dev
);
1169 * pch_udc_pcd_pullup() - This API is invoked to make the device
1170 * visible/invisible to the host
1171 * @gadget: Reference to the gadget driver
1172 * @is_on: Specifies whether the pull up is made active or inactive
1176 * -EINVAL: If the gadget passed is NULL
1178 static int pch_udc_pcd_pullup(struct usb_gadget
*gadget
, int is_on
)
1180 struct pch_udc_dev
*dev
;
1184 dev
= container_of(gadget
, struct pch_udc_dev
, gadget
);
1186 pch_udc_reconnect(dev
);
1188 if (dev
->driver
&& dev
->driver
->disconnect
) {
1189 spin_unlock(&dev
->lock
);
1190 dev
->driver
->disconnect(&dev
->gadget
);
1191 spin_lock(&dev
->lock
);
1193 pch_udc_set_disconnect(dev
);
1200 * pch_udc_pcd_vbus_session() - This API is used by a driver for an external
1201 * transceiver (or GPIO) that
1202 * detects a VBUS power session starting/ending
1203 * @gadget: Reference to the gadget driver
1204 * @is_active: specifies whether the session is starting or ending
1208 * -EINVAL: If the gadget passed is NULL
1210 static int pch_udc_pcd_vbus_session(struct usb_gadget
*gadget
, int is_active
)
1212 struct pch_udc_dev
*dev
;
1216 dev
= container_of(gadget
, struct pch_udc_dev
, gadget
);
1217 pch_udc_vbus_session(dev
, is_active
);
1222 * pch_udc_pcd_vbus_draw() - This API is used by gadget drivers during
1223 * SET_CONFIGURATION calls to
1224 * specify how much power the device can consume
1225 * @gadget: Reference to the gadget driver
1226 * @mA: specifies the current limit in 2mA unit
1229 * -EINVAL: If the gadget passed is NULL
1232 static int pch_udc_pcd_vbus_draw(struct usb_gadget
*gadget
, unsigned int mA
)
1237 static int pch_udc_start(struct usb_gadget
*g
,
1238 struct usb_gadget_driver
*driver
);
1239 static int pch_udc_stop(struct usb_gadget
*g
,
1240 struct usb_gadget_driver
*driver
);
1241 static const struct usb_gadget_ops pch_udc_ops
= {
1242 .get_frame
= pch_udc_pcd_get_frame
,
1243 .wakeup
= pch_udc_pcd_wakeup
,
1244 .set_selfpowered
= pch_udc_pcd_selfpowered
,
1245 .pullup
= pch_udc_pcd_pullup
,
1246 .vbus_session
= pch_udc_pcd_vbus_session
,
1247 .vbus_draw
= pch_udc_pcd_vbus_draw
,
1248 .udc_start
= pch_udc_start
,
1249 .udc_stop
= pch_udc_stop
,
1253 * pch_vbus_gpio_get_value() - This API gets value of GPIO port as VBUS status.
1254 * @dev: Reference to the driver structure
1259 * -1: It is not enable to detect VBUS using GPIO
1261 static int pch_vbus_gpio_get_value(struct pch_udc_dev
*dev
)
1265 if (dev
->vbus_gpio
.port
)
1266 vbus
= gpio_get_value(dev
->vbus_gpio
.port
) ? 1 : 0;
1274 * pch_vbus_gpio_work_fall() - This API keeps watch on VBUS becoming Low.
1275 * If VBUS is Low, disconnect is processed
1276 * @irq_work: Structure for WorkQueue
1279 static void pch_vbus_gpio_work_fall(struct work_struct
*irq_work
)
1281 struct pch_vbus_gpio_data
*vbus_gpio
= container_of(irq_work
,
1282 struct pch_vbus_gpio_data
, irq_work_fall
);
1283 struct pch_udc_dev
*dev
=
1284 container_of(vbus_gpio
, struct pch_udc_dev
, vbus_gpio
);
1285 int vbus_saved
= -1;
1289 if (!dev
->vbus_gpio
.port
)
1292 for (count
= 0; count
< (PCH_VBUS_PERIOD
/ PCH_VBUS_INTERVAL
);
1294 vbus
= pch_vbus_gpio_get_value(dev
);
1296 if ((vbus_saved
== vbus
) && (vbus
== 0)) {
1297 dev_dbg(&dev
->pdev
->dev
, "VBUS fell");
1299 && dev
->driver
->disconnect
) {
1300 dev
->driver
->disconnect(
1303 if (dev
->vbus_gpio
.intr
)
1306 pch_udc_reconnect(dev
);
1310 mdelay(PCH_VBUS_INTERVAL
);
1315 * pch_vbus_gpio_work_rise() - This API checks VBUS is High.
1316 * If VBUS is High, connect is processed
1317 * @irq_work: Structure for WorkQueue
1320 static void pch_vbus_gpio_work_rise(struct work_struct
*irq_work
)
1322 struct pch_vbus_gpio_data
*vbus_gpio
= container_of(irq_work
,
1323 struct pch_vbus_gpio_data
, irq_work_rise
);
1324 struct pch_udc_dev
*dev
=
1325 container_of(vbus_gpio
, struct pch_udc_dev
, vbus_gpio
);
1328 if (!dev
->vbus_gpio
.port
)
1331 mdelay(PCH_VBUS_INTERVAL
);
1332 vbus
= pch_vbus_gpio_get_value(dev
);
1335 dev_dbg(&dev
->pdev
->dev
, "VBUS rose");
1336 pch_udc_reconnect(dev
);
1342 * pch_vbus_gpio_irq() - IRQ handler for GPIO intrerrupt for changing VBUS
1343 * @irq: Interrupt request number
1344 * @dev: Reference to the device structure
1348 * -EINVAL: GPIO port is invalid or can't be initialized.
1350 static irqreturn_t
pch_vbus_gpio_irq(int irq
, void *data
)
1352 struct pch_udc_dev
*dev
= (struct pch_udc_dev
*)data
;
1354 if (!dev
->vbus_gpio
.port
|| !dev
->vbus_gpio
.intr
)
1357 if (pch_vbus_gpio_get_value(dev
))
1358 schedule_work(&dev
->vbus_gpio
.irq_work_rise
);
1360 schedule_work(&dev
->vbus_gpio
.irq_work_fall
);
1366 * pch_vbus_gpio_init() - This API initializes GPIO port detecting VBUS.
1367 * @dev: Reference to the driver structure
1368 * @vbus_gpio Number of GPIO port to detect gpio
1372 * -EINVAL: GPIO port is invalid or can't be initialized.
1374 static int pch_vbus_gpio_init(struct pch_udc_dev
*dev
, int vbus_gpio_port
)
1379 dev
->vbus_gpio
.port
= 0;
1380 dev
->vbus_gpio
.intr
= 0;
1382 if (vbus_gpio_port
<= -1)
1385 err
= gpio_is_valid(vbus_gpio_port
);
1387 pr_err("%s: gpio port %d is invalid\n",
1388 __func__
, vbus_gpio_port
);
1392 err
= gpio_request(vbus_gpio_port
, "pch_vbus");
1394 pr_err("%s: can't request gpio port %d, err: %d\n",
1395 __func__
, vbus_gpio_port
, err
);
1399 dev
->vbus_gpio
.port
= vbus_gpio_port
;
1400 gpio_direction_input(vbus_gpio_port
);
1401 INIT_WORK(&dev
->vbus_gpio
.irq_work_fall
, pch_vbus_gpio_work_fall
);
1403 irq_num
= gpio_to_irq(vbus_gpio_port
);
1405 irq_set_irq_type(irq_num
, IRQ_TYPE_EDGE_BOTH
);
1406 err
= request_irq(irq_num
, pch_vbus_gpio_irq
, 0,
1407 "vbus_detect", dev
);
1409 dev
->vbus_gpio
.intr
= irq_num
;
1410 INIT_WORK(&dev
->vbus_gpio
.irq_work_rise
,
1411 pch_vbus_gpio_work_rise
);
1413 pr_err("%s: can't request irq %d, err: %d\n",
1414 __func__
, irq_num
, err
);
1422 * pch_vbus_gpio_free() - This API frees resources of GPIO port
1423 * @dev: Reference to the driver structure
1425 static void pch_vbus_gpio_free(struct pch_udc_dev
*dev
)
1427 if (dev
->vbus_gpio
.intr
)
1428 free_irq(dev
->vbus_gpio
.intr
, dev
);
1430 if (dev
->vbus_gpio
.port
)
1431 gpio_free(dev
->vbus_gpio
.port
);
1435 * complete_req() - This API is invoked from the driver when processing
1436 * of a request is complete
1437 * @ep: Reference to the endpoint structure
1438 * @req: Reference to the request structure
1439 * @status: Indicates the success/failure of completion
1441 static void complete_req(struct pch_udc_ep
*ep
, struct pch_udc_request
*req
,
1443 __releases(&dev
->lock
)
1444 __acquires(&dev
->lock
)
1446 struct pch_udc_dev
*dev
;
1447 unsigned halted
= ep
->halted
;
1449 list_del_init(&req
->queue
);
1451 /* set new status if pending */
1452 if (req
->req
.status
== -EINPROGRESS
)
1453 req
->req
.status
= status
;
1455 status
= req
->req
.status
;
1458 if (req
->dma_mapped
) {
1459 if (req
->dma
== DMA_ADDR_INVALID
) {
1461 dma_unmap_single(&dev
->pdev
->dev
, req
->req
.dma
,
1465 dma_unmap_single(&dev
->pdev
->dev
, req
->req
.dma
,
1468 req
->req
.dma
= DMA_ADDR_INVALID
;
1471 dma_unmap_single(&dev
->pdev
->dev
, req
->dma
,
1475 dma_unmap_single(&dev
->pdev
->dev
, req
->dma
,
1478 memcpy(req
->req
.buf
, req
->buf
, req
->req
.length
);
1481 req
->dma
= DMA_ADDR_INVALID
;
1483 req
->dma_mapped
= 0;
1486 spin_unlock(&dev
->lock
);
1488 pch_udc_ep_clear_rrdy(ep
);
1489 req
->req
.complete(&ep
->ep
, &req
->req
);
1490 spin_lock(&dev
->lock
);
1491 ep
->halted
= halted
;
1495 * empty_req_queue() - This API empties the request queue of an endpoint
1496 * @ep: Reference to the endpoint structure
1498 static void empty_req_queue(struct pch_udc_ep
*ep
)
1500 struct pch_udc_request
*req
;
1503 while (!list_empty(&ep
->queue
)) {
1504 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
1505 complete_req(ep
, req
, -ESHUTDOWN
); /* Remove from list */
1510 * pch_udc_free_dma_chain() - This function frees the DMA chain created
1512 * @dev Reference to the driver structure
1513 * @req Reference to the request to be freed
1518 static void pch_udc_free_dma_chain(struct pch_udc_dev
*dev
,
1519 struct pch_udc_request
*req
)
1521 struct pch_udc_data_dma_desc
*td
= req
->td_data
;
1522 unsigned i
= req
->chain_len
;
1525 dma_addr_t addr
= (dma_addr_t
)td
->next
;
1527 for (; i
> 1; --i
) {
1528 /* do not free first desc., will be done by free for request */
1529 td
= phys_to_virt(addr
);
1530 addr2
= (dma_addr_t
)td
->next
;
1531 pci_pool_free(dev
->data_requests
, td
, addr
);
1539 * pch_udc_create_dma_chain() - This function creates or reinitializes
1541 * @ep: Reference to the endpoint structure
1542 * @req: Reference to the request
1543 * @buf_len: The buffer length
1544 * @gfp_flags: Flags to be used while mapping the data buffer
1548 * -ENOMEM: pci_pool_alloc invocation fails
1550 static int pch_udc_create_dma_chain(struct pch_udc_ep
*ep
,
1551 struct pch_udc_request
*req
,
1552 unsigned long buf_len
,
1555 struct pch_udc_data_dma_desc
*td
= req
->td_data
, *last
;
1556 unsigned long bytes
= req
->req
.length
, i
= 0;
1557 dma_addr_t dma_addr
;
1560 if (req
->chain_len
> 1)
1561 pch_udc_free_dma_chain(ep
->dev
, req
);
1563 if (req
->dma
== DMA_ADDR_INVALID
)
1564 td
->dataptr
= req
->req
.dma
;
1566 td
->dataptr
= req
->dma
;
1568 td
->status
= PCH_UDC_BS_HST_BSY
;
1569 for (; ; bytes
-= buf_len
, ++len
) {
1570 td
->status
= PCH_UDC_BS_HST_BSY
| min(buf_len
, bytes
);
1571 if (bytes
<= buf_len
)
1574 td
= pci_pool_alloc(ep
->dev
->data_requests
, gfp_flags
,
1579 td
->dataptr
= req
->td_data
->dataptr
+ i
;
1580 last
->next
= dma_addr
;
1583 req
->td_data_last
= td
;
1584 td
->status
|= PCH_UDC_DMA_LAST
;
1585 td
->next
= req
->td_data_phys
;
1586 req
->chain_len
= len
;
1591 req
->chain_len
= len
;
1592 pch_udc_free_dma_chain(ep
->dev
, req
);
1599 * prepare_dma() - This function creates and initializes the DMA chain
1601 * @ep: Reference to the endpoint structure
1602 * @req: Reference to the request
1603 * @gfp: Flag to be used while mapping the data buffer
1607 * Other 0: linux error number on failure
1609 static int prepare_dma(struct pch_udc_ep
*ep
, struct pch_udc_request
*req
,
1614 /* Allocate and create a DMA chain */
1615 retval
= pch_udc_create_dma_chain(ep
, req
, ep
->ep
.maxpacket
, gfp
);
1617 pr_err("%s: could not create DMA chain:%d\n", __func__
, retval
);
1621 req
->td_data
->status
= (req
->td_data
->status
&
1622 ~PCH_UDC_BUFF_STS
) | PCH_UDC_BS_HST_RDY
;
1627 * process_zlp() - This function process zero length packets
1628 * from the gadget driver
1629 * @ep: Reference to the endpoint structure
1630 * @req: Reference to the request
1632 static void process_zlp(struct pch_udc_ep
*ep
, struct pch_udc_request
*req
)
1634 struct pch_udc_dev
*dev
= ep
->dev
;
1636 /* IN zlp's are handled by hardware */
1637 complete_req(ep
, req
, 0);
1639 /* if set_config or set_intf is waiting for ack by zlp
1642 if (dev
->set_cfg_not_acked
) {
1643 pch_udc_set_csr_done(dev
);
1644 dev
->set_cfg_not_acked
= 0;
1646 /* setup command is ACK'ed now by zlp */
1647 if (!dev
->stall
&& dev
->waiting_zlp_ack
) {
1648 pch_udc_ep_clear_nak(&(dev
->ep
[UDC_EP0IN_IDX
]));
1649 dev
->waiting_zlp_ack
= 0;
1654 * pch_udc_start_rxrequest() - This function starts the receive requirement.
1655 * @ep: Reference to the endpoint structure
1656 * @req: Reference to the request structure
1658 static void pch_udc_start_rxrequest(struct pch_udc_ep
*ep
,
1659 struct pch_udc_request
*req
)
1661 struct pch_udc_data_dma_desc
*td_data
;
1663 pch_udc_clear_dma(ep
->dev
, DMA_DIR_RX
);
1664 td_data
= req
->td_data
;
1665 /* Set the status bits for all descriptors */
1667 td_data
->status
= (td_data
->status
& ~PCH_UDC_BUFF_STS
) |
1669 if ((td_data
->status
& PCH_UDC_DMA_LAST
) == PCH_UDC_DMA_LAST
)
1671 td_data
= phys_to_virt(td_data
->next
);
1673 /* Write the descriptor pointer */
1674 pch_udc_ep_set_ddptr(ep
, req
->td_data_phys
);
1676 pch_udc_enable_ep_interrupts(ep
->dev
, UDC_EPINT_OUT_EP0
<< ep
->num
);
1677 pch_udc_set_dma(ep
->dev
, DMA_DIR_RX
);
1678 pch_udc_ep_clear_nak(ep
);
1679 pch_udc_ep_set_rrdy(ep
);
1683 * pch_udc_pcd_ep_enable() - This API enables the endpoint. It is called
1684 * from gadget driver
1685 * @usbep: Reference to the USB endpoint structure
1686 * @desc: Reference to the USB endpoint descriptor structure
1693 static int pch_udc_pcd_ep_enable(struct usb_ep
*usbep
,
1694 const struct usb_endpoint_descriptor
*desc
)
1696 struct pch_udc_ep
*ep
;
1697 struct pch_udc_dev
*dev
;
1698 unsigned long iflags
;
1700 if (!usbep
|| (usbep
->name
== ep0_string
) || !desc
||
1701 (desc
->bDescriptorType
!= USB_DT_ENDPOINT
) || !desc
->wMaxPacketSize
)
1704 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1706 if (!dev
->driver
|| (dev
->gadget
.speed
== USB_SPEED_UNKNOWN
))
1708 spin_lock_irqsave(&dev
->lock
, iflags
);
1711 pch_udc_ep_enable(ep
, &ep
->dev
->cfg_data
, desc
);
1712 ep
->ep
.maxpacket
= usb_endpoint_maxp(desc
);
1713 pch_udc_enable_ep_interrupts(ep
->dev
, PCH_UDC_EPINT(ep
->in
, ep
->num
));
1714 spin_unlock_irqrestore(&dev
->lock
, iflags
);
1719 * pch_udc_pcd_ep_disable() - This API disables endpoint and is called
1720 * from gadget driver
1721 * @usbep Reference to the USB endpoint structure
1727 static int pch_udc_pcd_ep_disable(struct usb_ep
*usbep
)
1729 struct pch_udc_ep
*ep
;
1730 struct pch_udc_dev
*dev
;
1731 unsigned long iflags
;
1736 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1738 if ((usbep
->name
== ep0_string
) || !ep
->ep
.desc
)
1741 spin_lock_irqsave(&ep
->dev
->lock
, iflags
);
1742 empty_req_queue(ep
);
1744 pch_udc_ep_disable(ep
);
1745 pch_udc_disable_ep_interrupts(ep
->dev
, PCH_UDC_EPINT(ep
->in
, ep
->num
));
1747 INIT_LIST_HEAD(&ep
->queue
);
1748 spin_unlock_irqrestore(&ep
->dev
->lock
, iflags
);
1753 * pch_udc_alloc_request() - This function allocates request structure.
1754 * It is called by gadget driver
1755 * @usbep: Reference to the USB endpoint structure
1756 * @gfp: Flag to be used while allocating memory
1760 * Allocated address: Success
1762 static struct usb_request
*pch_udc_alloc_request(struct usb_ep
*usbep
,
1765 struct pch_udc_request
*req
;
1766 struct pch_udc_ep
*ep
;
1767 struct pch_udc_data_dma_desc
*dma_desc
;
1768 struct pch_udc_dev
*dev
;
1772 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1774 req
= kzalloc(sizeof *req
, gfp
);
1777 req
->req
.dma
= DMA_ADDR_INVALID
;
1778 req
->dma
= DMA_ADDR_INVALID
;
1779 INIT_LIST_HEAD(&req
->queue
);
1780 if (!ep
->dev
->dma_addr
)
1782 /* ep0 in requests are allocated from data pool here */
1783 dma_desc
= pci_pool_alloc(ep
->dev
->data_requests
, gfp
,
1784 &req
->td_data_phys
);
1785 if (NULL
== dma_desc
) {
1789 /* prevent from using desc. - set HOST BUSY */
1790 dma_desc
->status
|= PCH_UDC_BS_HST_BSY
;
1791 dma_desc
->dataptr
= __constant_cpu_to_le32(DMA_ADDR_INVALID
);
1792 req
->td_data
= dma_desc
;
1793 req
->td_data_last
= dma_desc
;
1799 * pch_udc_free_request() - This function frees request structure.
1800 * It is called by gadget driver
1801 * @usbep: Reference to the USB endpoint structure
1802 * @usbreq: Reference to the USB request
1804 static void pch_udc_free_request(struct usb_ep
*usbep
,
1805 struct usb_request
*usbreq
)
1807 struct pch_udc_ep
*ep
;
1808 struct pch_udc_request
*req
;
1809 struct pch_udc_dev
*dev
;
1811 if (!usbep
|| !usbreq
)
1813 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1814 req
= container_of(usbreq
, struct pch_udc_request
, req
);
1816 if (!list_empty(&req
->queue
))
1817 dev_err(&dev
->pdev
->dev
, "%s: %s req=0x%p queue not empty\n",
1818 __func__
, usbep
->name
, req
);
1819 if (req
->td_data
!= NULL
) {
1820 if (req
->chain_len
> 1)
1821 pch_udc_free_dma_chain(ep
->dev
, req
);
1822 pci_pool_free(ep
->dev
->data_requests
, req
->td_data
,
1829 * pch_udc_pcd_queue() - This function queues a request packet. It is called
1831 * @usbep: Reference to the USB endpoint structure
1832 * @usbreq: Reference to the USB request
1833 * @gfp: Flag to be used while mapping the data buffer
1837 * linux error number: Failure
1839 static int pch_udc_pcd_queue(struct usb_ep
*usbep
, struct usb_request
*usbreq
,
1843 struct pch_udc_ep
*ep
;
1844 struct pch_udc_dev
*dev
;
1845 struct pch_udc_request
*req
;
1846 unsigned long iflags
;
1848 if (!usbep
|| !usbreq
|| !usbreq
->complete
|| !usbreq
->buf
)
1850 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1852 if (!ep
->ep
.desc
&& ep
->num
)
1854 req
= container_of(usbreq
, struct pch_udc_request
, req
);
1855 if (!list_empty(&req
->queue
))
1857 if (!dev
->driver
|| (dev
->gadget
.speed
== USB_SPEED_UNKNOWN
))
1859 spin_lock_irqsave(&dev
->lock
, iflags
);
1860 /* map the buffer for dma */
1861 if (usbreq
->length
&&
1862 ((usbreq
->dma
== DMA_ADDR_INVALID
) || !usbreq
->dma
)) {
1863 if (!((unsigned long)(usbreq
->buf
) & 0x03)) {
1865 usbreq
->dma
= dma_map_single(&dev
->pdev
->dev
,
1870 usbreq
->dma
= dma_map_single(&dev
->pdev
->dev
,
1875 req
->buf
= kzalloc(usbreq
->length
, GFP_ATOMIC
);
1881 memcpy(req
->buf
, usbreq
->buf
, usbreq
->length
);
1882 req
->dma
= dma_map_single(&dev
->pdev
->dev
,
1887 req
->dma
= dma_map_single(&dev
->pdev
->dev
,
1892 req
->dma_mapped
= 1;
1894 if (usbreq
->length
> 0) {
1895 retval
= prepare_dma(ep
, req
, GFP_ATOMIC
);
1900 usbreq
->status
= -EINPROGRESS
;
1902 if (list_empty(&ep
->queue
) && !ep
->halted
) {
1903 /* no pending transfer, so start this req */
1904 if (!usbreq
->length
) {
1905 process_zlp(ep
, req
);
1910 pch_udc_start_rxrequest(ep
, req
);
1913 * For IN trfr the descriptors will be programmed and
1914 * P bit will be set when
1915 * we get an IN token
1917 pch_udc_wait_ep_stall(ep
);
1918 pch_udc_ep_clear_nak(ep
);
1919 pch_udc_enable_ep_interrupts(ep
->dev
, (1 << ep
->num
));
1922 /* Now add this request to the ep's pending requests */
1924 list_add_tail(&req
->queue
, &ep
->queue
);
1927 spin_unlock_irqrestore(&dev
->lock
, iflags
);
1932 * pch_udc_pcd_dequeue() - This function de-queues a request packet.
1933 * It is called by gadget driver
1934 * @usbep: Reference to the USB endpoint structure
1935 * @usbreq: Reference to the USB request
1939 * linux error number: Failure
1941 static int pch_udc_pcd_dequeue(struct usb_ep
*usbep
,
1942 struct usb_request
*usbreq
)
1944 struct pch_udc_ep
*ep
;
1945 struct pch_udc_request
*req
;
1946 struct pch_udc_dev
*dev
;
1947 unsigned long flags
;
1950 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1952 if (!usbep
|| !usbreq
|| (!ep
->ep
.desc
&& ep
->num
))
1954 req
= container_of(usbreq
, struct pch_udc_request
, req
);
1955 spin_lock_irqsave(&ep
->dev
->lock
, flags
);
1956 /* make sure it's still queued on this endpoint */
1957 list_for_each_entry(req
, &ep
->queue
, queue
) {
1958 if (&req
->req
== usbreq
) {
1959 pch_udc_ep_set_nak(ep
);
1960 if (!list_empty(&req
->queue
))
1961 complete_req(ep
, req
, -ECONNRESET
);
1966 spin_unlock_irqrestore(&ep
->dev
->lock
, flags
);
1971 * pch_udc_pcd_set_halt() - This function Sets or clear the endpoint halt
1973 * @usbep: Reference to the USB endpoint structure
1974 * @halt: Specifies whether to set or clear the feature
1978 * linux error number: Failure
1980 static int pch_udc_pcd_set_halt(struct usb_ep
*usbep
, int halt
)
1982 struct pch_udc_ep
*ep
;
1983 struct pch_udc_dev
*dev
;
1984 unsigned long iflags
;
1989 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1991 if (!ep
->ep
.desc
&& !ep
->num
)
1993 if (!ep
->dev
->driver
|| (ep
->dev
->gadget
.speed
== USB_SPEED_UNKNOWN
))
1995 spin_lock_irqsave(&udc_stall_spinlock
, iflags
);
1996 if (list_empty(&ep
->queue
)) {
1998 if (ep
->num
== PCH_UDC_EP0
)
2000 pch_udc_ep_set_stall(ep
);
2001 pch_udc_enable_ep_interrupts(ep
->dev
,
2002 PCH_UDC_EPINT(ep
->in
,
2005 pch_udc_ep_clear_stall(ep
);
2011 spin_unlock_irqrestore(&udc_stall_spinlock
, iflags
);
2016 * pch_udc_pcd_set_wedge() - This function Sets or clear the endpoint
2018 * @usbep: Reference to the USB endpoint structure
2019 * @halt: Specifies whether to set or clear the feature
2023 * linux error number: Failure
2025 static int pch_udc_pcd_set_wedge(struct usb_ep
*usbep
)
2027 struct pch_udc_ep
*ep
;
2028 struct pch_udc_dev
*dev
;
2029 unsigned long iflags
;
2034 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
2036 if (!ep
->ep
.desc
&& !ep
->num
)
2038 if (!ep
->dev
->driver
|| (ep
->dev
->gadget
.speed
== USB_SPEED_UNKNOWN
))
2040 spin_lock_irqsave(&udc_stall_spinlock
, iflags
);
2041 if (!list_empty(&ep
->queue
)) {
2044 if (ep
->num
== PCH_UDC_EP0
)
2046 pch_udc_ep_set_stall(ep
);
2047 pch_udc_enable_ep_interrupts(ep
->dev
,
2048 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2049 ep
->dev
->prot_stall
= 1;
2052 spin_unlock_irqrestore(&udc_stall_spinlock
, iflags
);
2057 * pch_udc_pcd_fifo_flush() - This function Flush the FIFO of specified endpoint
2058 * @usbep: Reference to the USB endpoint structure
2060 static void pch_udc_pcd_fifo_flush(struct usb_ep
*usbep
)
2062 struct pch_udc_ep
*ep
;
2067 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
2068 if (ep
->ep
.desc
|| !ep
->num
)
2069 pch_udc_ep_fifo_flush(ep
, ep
->in
);
2072 static const struct usb_ep_ops pch_udc_ep_ops
= {
2073 .enable
= pch_udc_pcd_ep_enable
,
2074 .disable
= pch_udc_pcd_ep_disable
,
2075 .alloc_request
= pch_udc_alloc_request
,
2076 .free_request
= pch_udc_free_request
,
2077 .queue
= pch_udc_pcd_queue
,
2078 .dequeue
= pch_udc_pcd_dequeue
,
2079 .set_halt
= pch_udc_pcd_set_halt
,
2080 .set_wedge
= pch_udc_pcd_set_wedge
,
2081 .fifo_status
= NULL
,
2082 .fifo_flush
= pch_udc_pcd_fifo_flush
,
2086 * pch_udc_init_setup_buff() - This function initializes the SETUP buffer
2087 * @td_stp: Reference to the SETP buffer structure
2089 static void pch_udc_init_setup_buff(struct pch_udc_stp_dma_desc
*td_stp
)
2091 static u32 pky_marker
;
2095 td_stp
->reserved
= ++pky_marker
;
2096 memset(&td_stp
->request
, 0xFF, sizeof td_stp
->request
);
2097 td_stp
->status
= PCH_UDC_BS_HST_RDY
;
2101 * pch_udc_start_next_txrequest() - This function starts
2102 * the next transmission requirement
2103 * @ep: Reference to the endpoint structure
2105 static void pch_udc_start_next_txrequest(struct pch_udc_ep
*ep
)
2107 struct pch_udc_request
*req
;
2108 struct pch_udc_data_dma_desc
*td_data
;
2110 if (pch_udc_read_ep_control(ep
) & UDC_EPCTL_P
)
2113 if (list_empty(&ep
->queue
))
2117 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
2122 pch_udc_wait_ep_stall(ep
);
2124 pch_udc_ep_set_ddptr(ep
, 0);
2125 td_data
= req
->td_data
;
2127 td_data
->status
= (td_data
->status
& ~PCH_UDC_BUFF_STS
) |
2129 if ((td_data
->status
& PCH_UDC_DMA_LAST
) == PCH_UDC_DMA_LAST
)
2131 td_data
= phys_to_virt(td_data
->next
);
2133 pch_udc_ep_set_ddptr(ep
, req
->td_data_phys
);
2134 pch_udc_set_dma(ep
->dev
, DMA_DIR_TX
);
2135 pch_udc_ep_set_pd(ep
);
2136 pch_udc_enable_ep_interrupts(ep
->dev
, PCH_UDC_EPINT(ep
->in
, ep
->num
));
2137 pch_udc_ep_clear_nak(ep
);
2141 * pch_udc_complete_transfer() - This function completes a transfer
2142 * @ep: Reference to the endpoint structure
2144 static void pch_udc_complete_transfer(struct pch_udc_ep
*ep
)
2146 struct pch_udc_request
*req
;
2147 struct pch_udc_dev
*dev
= ep
->dev
;
2149 if (list_empty(&ep
->queue
))
2151 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
2152 if ((req
->td_data_last
->status
& PCH_UDC_BUFF_STS
) !=
2153 PCH_UDC_BS_DMA_DONE
)
2155 if ((req
->td_data_last
->status
& PCH_UDC_RXTX_STS
) !=
2157 dev_err(&dev
->pdev
->dev
, "Invalid RXTX status (0x%08x) "
2158 "epstatus=0x%08x\n",
2159 (req
->td_data_last
->status
& PCH_UDC_RXTX_STS
),
2164 req
->req
.actual
= req
->req
.length
;
2165 req
->td_data_last
->status
= PCH_UDC_BS_HST_BSY
| PCH_UDC_DMA_LAST
;
2166 req
->td_data
->status
= PCH_UDC_BS_HST_BSY
| PCH_UDC_DMA_LAST
;
2167 complete_req(ep
, req
, 0);
2169 if (!list_empty(&ep
->queue
)) {
2170 pch_udc_wait_ep_stall(ep
);
2171 pch_udc_ep_clear_nak(ep
);
2172 pch_udc_enable_ep_interrupts(ep
->dev
,
2173 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2175 pch_udc_disable_ep_interrupts(ep
->dev
,
2176 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2181 * pch_udc_complete_receiver() - This function completes a receiver
2182 * @ep: Reference to the endpoint structure
2184 static void pch_udc_complete_receiver(struct pch_udc_ep
*ep
)
2186 struct pch_udc_request
*req
;
2187 struct pch_udc_dev
*dev
= ep
->dev
;
2189 struct pch_udc_data_dma_desc
*td
;
2192 if (list_empty(&ep
->queue
))
2195 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
2196 pch_udc_clear_dma(ep
->dev
, DMA_DIR_RX
);
2197 pch_udc_ep_set_ddptr(ep
, 0);
2198 if ((req
->td_data_last
->status
& PCH_UDC_BUFF_STS
) ==
2199 PCH_UDC_BS_DMA_DONE
)
2200 td
= req
->td_data_last
;
2205 if ((td
->status
& PCH_UDC_RXTX_STS
) != PCH_UDC_RTS_SUCC
) {
2206 dev_err(&dev
->pdev
->dev
, "Invalid RXTX status=0x%08x "
2207 "epstatus=0x%08x\n",
2208 (req
->td_data
->status
& PCH_UDC_RXTX_STS
),
2212 if ((td
->status
& PCH_UDC_BUFF_STS
) == PCH_UDC_BS_DMA_DONE
)
2213 if (td
->status
& PCH_UDC_DMA_LAST
) {
2214 count
= td
->status
& PCH_UDC_RXTX_BYTES
;
2217 if (td
== req
->td_data_last
) {
2218 dev_err(&dev
->pdev
->dev
, "Not complete RX descriptor");
2221 addr
= (dma_addr_t
)td
->next
;
2222 td
= phys_to_virt(addr
);
2224 /* on 64k packets the RXBYTES field is zero */
2225 if (!count
&& (req
->req
.length
== UDC_DMA_MAXPACKET
))
2226 count
= UDC_DMA_MAXPACKET
;
2227 req
->td_data
->status
|= PCH_UDC_DMA_LAST
;
2228 td
->status
|= PCH_UDC_BS_HST_BSY
;
2231 req
->req
.actual
= count
;
2232 complete_req(ep
, req
, 0);
2233 /* If there is a new/failed requests try that now */
2234 if (!list_empty(&ep
->queue
)) {
2235 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
2236 pch_udc_start_rxrequest(ep
, req
);
2241 * pch_udc_svc_data_in() - This function process endpoint interrupts
2243 * @dev: Reference to the device structure
2244 * @ep_num: Endpoint that generated the interrupt
2246 static void pch_udc_svc_data_in(struct pch_udc_dev
*dev
, int ep_num
)
2249 struct pch_udc_ep
*ep
;
2251 ep
= &dev
->ep
[UDC_EPIN_IDX(ep_num
)];
2255 if (!(epsts
& (UDC_EPSTS_IN
| UDC_EPSTS_BNA
| UDC_EPSTS_HE
|
2256 UDC_EPSTS_TDC
| UDC_EPSTS_RCS
| UDC_EPSTS_TXEMPTY
|
2257 UDC_EPSTS_RSS
| UDC_EPSTS_XFERDONE
)))
2259 if ((epsts
& UDC_EPSTS_BNA
))
2261 if (epsts
& UDC_EPSTS_HE
)
2263 if (epsts
& UDC_EPSTS_RSS
) {
2264 pch_udc_ep_set_stall(ep
);
2265 pch_udc_enable_ep_interrupts(ep
->dev
,
2266 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2268 if (epsts
& UDC_EPSTS_RCS
) {
2269 if (!dev
->prot_stall
) {
2270 pch_udc_ep_clear_stall(ep
);
2272 pch_udc_ep_set_stall(ep
);
2273 pch_udc_enable_ep_interrupts(ep
->dev
,
2274 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2277 if (epsts
& UDC_EPSTS_TDC
)
2278 pch_udc_complete_transfer(ep
);
2279 /* On IN interrupt, provide data if we have any */
2280 if ((epsts
& UDC_EPSTS_IN
) && !(epsts
& UDC_EPSTS_RSS
) &&
2281 !(epsts
& UDC_EPSTS_TDC
) && !(epsts
& UDC_EPSTS_TXEMPTY
))
2282 pch_udc_start_next_txrequest(ep
);
2286 * pch_udc_svc_data_out() - Handles interrupts from OUT endpoint
2287 * @dev: Reference to the device structure
2288 * @ep_num: Endpoint that generated the interrupt
2290 static void pch_udc_svc_data_out(struct pch_udc_dev
*dev
, int ep_num
)
2293 struct pch_udc_ep
*ep
;
2294 struct pch_udc_request
*req
= NULL
;
2296 ep
= &dev
->ep
[UDC_EPOUT_IDX(ep_num
)];
2300 if ((epsts
& UDC_EPSTS_BNA
) && (!list_empty(&ep
->queue
))) {
2302 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
,
2304 if ((req
->td_data_last
->status
& PCH_UDC_BUFF_STS
) !=
2305 PCH_UDC_BS_DMA_DONE
) {
2306 if (!req
->dma_going
)
2307 pch_udc_start_rxrequest(ep
, req
);
2311 if (epsts
& UDC_EPSTS_HE
)
2313 if (epsts
& UDC_EPSTS_RSS
) {
2314 pch_udc_ep_set_stall(ep
);
2315 pch_udc_enable_ep_interrupts(ep
->dev
,
2316 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2318 if (epsts
& UDC_EPSTS_RCS
) {
2319 if (!dev
->prot_stall
) {
2320 pch_udc_ep_clear_stall(ep
);
2322 pch_udc_ep_set_stall(ep
);
2323 pch_udc_enable_ep_interrupts(ep
->dev
,
2324 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2327 if (((epsts
& UDC_EPSTS_OUT_MASK
) >> UDC_EPSTS_OUT_SHIFT
) ==
2328 UDC_EPSTS_OUT_DATA
) {
2329 if (ep
->dev
->prot_stall
== 1) {
2330 pch_udc_ep_set_stall(ep
);
2331 pch_udc_enable_ep_interrupts(ep
->dev
,
2332 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2334 pch_udc_complete_receiver(ep
);
2337 if (list_empty(&ep
->queue
))
2338 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2342 * pch_udc_svc_control_in() - Handle Control IN endpoint interrupts
2343 * @dev: Reference to the device structure
2345 static void pch_udc_svc_control_in(struct pch_udc_dev
*dev
)
2348 struct pch_udc_ep
*ep
;
2349 struct pch_udc_ep
*ep_out
;
2351 ep
= &dev
->ep
[UDC_EP0IN_IDX
];
2352 ep_out
= &dev
->ep
[UDC_EP0OUT_IDX
];
2356 if (!(epsts
& (UDC_EPSTS_IN
| UDC_EPSTS_BNA
| UDC_EPSTS_HE
|
2357 UDC_EPSTS_TDC
| UDC_EPSTS_RCS
| UDC_EPSTS_TXEMPTY
|
2358 UDC_EPSTS_XFERDONE
)))
2360 if ((epsts
& UDC_EPSTS_BNA
))
2362 if (epsts
& UDC_EPSTS_HE
)
2364 if ((epsts
& UDC_EPSTS_TDC
) && (!dev
->stall
)) {
2365 pch_udc_complete_transfer(ep
);
2366 pch_udc_clear_dma(dev
, DMA_DIR_RX
);
2367 ep_out
->td_data
->status
= (ep_out
->td_data
->status
&
2368 ~PCH_UDC_BUFF_STS
) |
2370 pch_udc_ep_clear_nak(ep_out
);
2371 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2372 pch_udc_ep_set_rrdy(ep_out
);
2374 /* On IN interrupt, provide data if we have any */
2375 if ((epsts
& UDC_EPSTS_IN
) && !(epsts
& UDC_EPSTS_TDC
) &&
2376 !(epsts
& UDC_EPSTS_TXEMPTY
))
2377 pch_udc_start_next_txrequest(ep
);
2381 * pch_udc_svc_control_out() - Routine that handle Control
2382 * OUT endpoint interrupts
2383 * @dev: Reference to the device structure
2385 static void pch_udc_svc_control_out(struct pch_udc_dev
*dev
)
2386 __releases(&dev
->lock
)
2387 __acquires(&dev
->lock
)
2390 int setup_supported
;
2391 struct pch_udc_ep
*ep
;
2393 ep
= &dev
->ep
[UDC_EP0OUT_IDX
];
2398 if (((stat
& UDC_EPSTS_OUT_MASK
) >> UDC_EPSTS_OUT_SHIFT
) ==
2399 UDC_EPSTS_OUT_SETUP
) {
2401 dev
->ep
[UDC_EP0IN_IDX
].halted
= 0;
2402 dev
->ep
[UDC_EP0OUT_IDX
].halted
= 0;
2403 dev
->setup_data
= ep
->td_stp
->request
;
2404 pch_udc_init_setup_buff(ep
->td_stp
);
2405 pch_udc_clear_dma(dev
, DMA_DIR_RX
);
2406 pch_udc_ep_fifo_flush(&(dev
->ep
[UDC_EP0IN_IDX
]),
2407 dev
->ep
[UDC_EP0IN_IDX
].in
);
2408 if ((dev
->setup_data
.bRequestType
& USB_DIR_IN
))
2409 dev
->gadget
.ep0
= &dev
->ep
[UDC_EP0IN_IDX
].ep
;
2411 dev
->gadget
.ep0
= &ep
->ep
;
2412 spin_unlock(&dev
->lock
);
2413 /* If Mass storage Reset */
2414 if ((dev
->setup_data
.bRequestType
== 0x21) &&
2415 (dev
->setup_data
.bRequest
== 0xFF))
2416 dev
->prot_stall
= 0;
2417 /* call gadget with setup data received */
2418 setup_supported
= dev
->driver
->setup(&dev
->gadget
,
2420 spin_lock(&dev
->lock
);
2422 if (dev
->setup_data
.bRequestType
& USB_DIR_IN
) {
2423 ep
->td_data
->status
= (ep
->td_data
->status
&
2424 ~PCH_UDC_BUFF_STS
) |
2426 pch_udc_ep_set_ddptr(ep
, ep
->td_data_phys
);
2428 /* ep0 in returns data on IN phase */
2429 if (setup_supported
>= 0 && setup_supported
<
2430 UDC_EP0IN_MAX_PKT_SIZE
) {
2431 pch_udc_ep_clear_nak(&(dev
->ep
[UDC_EP0IN_IDX
]));
2432 /* Gadget would have queued a request when
2433 * we called the setup */
2434 if (!(dev
->setup_data
.bRequestType
& USB_DIR_IN
)) {
2435 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2436 pch_udc_ep_clear_nak(ep
);
2438 } else if (setup_supported
< 0) {
2439 /* if unsupported request, then stall */
2440 pch_udc_ep_set_stall(&(dev
->ep
[UDC_EP0IN_IDX
]));
2441 pch_udc_enable_ep_interrupts(ep
->dev
,
2442 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2444 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2446 dev
->waiting_zlp_ack
= 1;
2448 } else if ((((stat
& UDC_EPSTS_OUT_MASK
) >> UDC_EPSTS_OUT_SHIFT
) ==
2449 UDC_EPSTS_OUT_DATA
) && !dev
->stall
) {
2450 pch_udc_clear_dma(dev
, DMA_DIR_RX
);
2451 pch_udc_ep_set_ddptr(ep
, 0);
2452 if (!list_empty(&ep
->queue
)) {
2454 pch_udc_svc_data_out(dev
, PCH_UDC_EP0
);
2456 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2458 pch_udc_ep_set_rrdy(ep
);
2463 * pch_udc_postsvc_epinters() - This function enables end point interrupts
2464 * and clears NAK status
2465 * @dev: Reference to the device structure
2466 * @ep_num: End point number
2468 static void pch_udc_postsvc_epinters(struct pch_udc_dev
*dev
, int ep_num
)
2470 struct pch_udc_ep
*ep
;
2471 struct pch_udc_request
*req
;
2473 ep
= &dev
->ep
[UDC_EPIN_IDX(ep_num
)];
2474 if (!list_empty(&ep
->queue
)) {
2475 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
2476 pch_udc_enable_ep_interrupts(ep
->dev
,
2477 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2478 pch_udc_ep_clear_nak(ep
);
2483 * pch_udc_read_all_epstatus() - This function read all endpoint status
2484 * @dev: Reference to the device structure
2485 * @ep_intr: Status of endpoint interrupt
2487 static void pch_udc_read_all_epstatus(struct pch_udc_dev
*dev
, u32 ep_intr
)
2490 struct pch_udc_ep
*ep
;
2492 for (i
= 0; i
< PCH_UDC_USED_EP_NUM
; i
++) {
2494 if (ep_intr
& (0x1 << i
)) {
2495 ep
= &dev
->ep
[UDC_EPIN_IDX(i
)];
2496 ep
->epsts
= pch_udc_read_ep_status(ep
);
2497 pch_udc_clear_ep_status(ep
, ep
->epsts
);
2500 if (ep_intr
& (0x10000 << i
)) {
2501 ep
= &dev
->ep
[UDC_EPOUT_IDX(i
)];
2502 ep
->epsts
= pch_udc_read_ep_status(ep
);
2503 pch_udc_clear_ep_status(ep
, ep
->epsts
);
2509 * pch_udc_activate_control_ep() - This function enables the control endpoints
2510 * for traffic after a reset
2511 * @dev: Reference to the device structure
2513 static void pch_udc_activate_control_ep(struct pch_udc_dev
*dev
)
2515 struct pch_udc_ep
*ep
;
2518 /* Setup the IN endpoint */
2519 ep
= &dev
->ep
[UDC_EP0IN_IDX
];
2520 pch_udc_clear_ep_control(ep
);
2521 pch_udc_ep_fifo_flush(ep
, ep
->in
);
2522 pch_udc_ep_set_bufsz(ep
, UDC_EP0IN_BUFF_SIZE
, ep
->in
);
2523 pch_udc_ep_set_maxpkt(ep
, UDC_EP0IN_MAX_PKT_SIZE
);
2524 /* Initialize the IN EP Descriptor */
2527 ep
->td_data_phys
= 0;
2528 ep
->td_stp_phys
= 0;
2530 /* Setup the OUT endpoint */
2531 ep
= &dev
->ep
[UDC_EP0OUT_IDX
];
2532 pch_udc_clear_ep_control(ep
);
2533 pch_udc_ep_fifo_flush(ep
, ep
->in
);
2534 pch_udc_ep_set_bufsz(ep
, UDC_EP0OUT_BUFF_SIZE
, ep
->in
);
2535 pch_udc_ep_set_maxpkt(ep
, UDC_EP0OUT_MAX_PKT_SIZE
);
2536 val
= UDC_EP0OUT_MAX_PKT_SIZE
<< UDC_CSR_NE_MAX_PKT_SHIFT
;
2537 pch_udc_write_csr(ep
->dev
, val
, UDC_EP0OUT_IDX
);
2539 /* Initialize the SETUP buffer */
2540 pch_udc_init_setup_buff(ep
->td_stp
);
2541 /* Write the pointer address of dma descriptor */
2542 pch_udc_ep_set_subptr(ep
, ep
->td_stp_phys
);
2543 /* Write the pointer address of Setup descriptor */
2544 pch_udc_ep_set_ddptr(ep
, ep
->td_data_phys
);
2546 /* Initialize the dma descriptor */
2547 ep
->td_data
->status
= PCH_UDC_DMA_LAST
;
2548 ep
->td_data
->dataptr
= dev
->dma_addr
;
2549 ep
->td_data
->next
= ep
->td_data_phys
;
2551 pch_udc_ep_clear_nak(ep
);
2556 * pch_udc_svc_ur_interrupt() - This function handles a USB reset interrupt
2557 * @dev: Reference to driver structure
2559 static void pch_udc_svc_ur_interrupt(struct pch_udc_dev
*dev
)
2561 struct pch_udc_ep
*ep
;
2564 pch_udc_clear_dma(dev
, DMA_DIR_TX
);
2565 pch_udc_clear_dma(dev
, DMA_DIR_RX
);
2566 /* Mask all endpoint interrupts */
2567 pch_udc_disable_ep_interrupts(dev
, UDC_EPINT_MSK_DISABLE_ALL
);
2568 /* clear all endpoint interrupts */
2569 pch_udc_write_ep_interrupts(dev
, UDC_EPINT_MSK_DISABLE_ALL
);
2571 for (i
= 0; i
< PCH_UDC_EP_NUM
; i
++) {
2573 pch_udc_clear_ep_status(ep
, UDC_EPSTS_ALL_CLR_MASK
);
2574 pch_udc_clear_ep_control(ep
);
2575 pch_udc_ep_set_ddptr(ep
, 0);
2576 pch_udc_write_csr(ep
->dev
, 0x00, i
);
2579 dev
->prot_stall
= 0;
2580 dev
->waiting_zlp_ack
= 0;
2581 dev
->set_cfg_not_acked
= 0;
2583 /* disable ep to empty req queue. Skip the control EP's */
2584 for (i
= 0; i
< (PCH_UDC_USED_EP_NUM
*2); i
++) {
2586 pch_udc_ep_set_nak(ep
);
2587 pch_udc_ep_fifo_flush(ep
, ep
->in
);
2588 /* Complete request queue */
2589 empty_req_queue(ep
);
2591 if (dev
->driver
&& dev
->driver
->disconnect
) {
2592 spin_unlock(&dev
->lock
);
2593 dev
->driver
->disconnect(&dev
->gadget
);
2594 spin_lock(&dev
->lock
);
2599 * pch_udc_svc_enum_interrupt() - This function handles a USB speed enumeration
2601 * @dev: Reference to driver structure
2603 static void pch_udc_svc_enum_interrupt(struct pch_udc_dev
*dev
)
2605 u32 dev_stat
, dev_speed
;
2606 u32 speed
= USB_SPEED_FULL
;
2608 dev_stat
= pch_udc_read_device_status(dev
);
2609 dev_speed
= (dev_stat
& UDC_DEVSTS_ENUM_SPEED_MASK
) >>
2610 UDC_DEVSTS_ENUM_SPEED_SHIFT
;
2611 switch (dev_speed
) {
2612 case UDC_DEVSTS_ENUM_SPEED_HIGH
:
2613 speed
= USB_SPEED_HIGH
;
2615 case UDC_DEVSTS_ENUM_SPEED_FULL
:
2616 speed
= USB_SPEED_FULL
;
2618 case UDC_DEVSTS_ENUM_SPEED_LOW
:
2619 speed
= USB_SPEED_LOW
;
2624 dev
->gadget
.speed
= speed
;
2625 pch_udc_activate_control_ep(dev
);
2626 pch_udc_enable_ep_interrupts(dev
, UDC_EPINT_IN_EP0
| UDC_EPINT_OUT_EP0
);
2627 pch_udc_set_dma(dev
, DMA_DIR_TX
);
2628 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2629 pch_udc_ep_set_rrdy(&(dev
->ep
[UDC_EP0OUT_IDX
]));
2631 /* enable device interrupts */
2632 pch_udc_enable_interrupts(dev
, UDC_DEVINT_UR
| UDC_DEVINT_US
|
2633 UDC_DEVINT_ES
| UDC_DEVINT_ENUM
|
2634 UDC_DEVINT_SI
| UDC_DEVINT_SC
);
2638 * pch_udc_svc_intf_interrupt() - This function handles a set interface
2640 * @dev: Reference to driver structure
2642 static void pch_udc_svc_intf_interrupt(struct pch_udc_dev
*dev
)
2644 u32 reg
, dev_stat
= 0;
2647 dev_stat
= pch_udc_read_device_status(dev
);
2648 dev
->cfg_data
.cur_intf
= (dev_stat
& UDC_DEVSTS_INTF_MASK
) >>
2649 UDC_DEVSTS_INTF_SHIFT
;
2650 dev
->cfg_data
.cur_alt
= (dev_stat
& UDC_DEVSTS_ALT_MASK
) >>
2651 UDC_DEVSTS_ALT_SHIFT
;
2652 dev
->set_cfg_not_acked
= 1;
2653 /* Construct the usb request for gadget driver and inform it */
2654 memset(&dev
->setup_data
, 0 , sizeof dev
->setup_data
);
2655 dev
->setup_data
.bRequest
= USB_REQ_SET_INTERFACE
;
2656 dev
->setup_data
.bRequestType
= USB_RECIP_INTERFACE
;
2657 dev
->setup_data
.wValue
= cpu_to_le16(dev
->cfg_data
.cur_alt
);
2658 dev
->setup_data
.wIndex
= cpu_to_le16(dev
->cfg_data
.cur_intf
);
2659 /* programm the Endpoint Cfg registers */
2660 /* Only one end point cfg register */
2661 reg
= pch_udc_read_csr(dev
, UDC_EP0OUT_IDX
);
2662 reg
= (reg
& ~UDC_CSR_NE_INTF_MASK
) |
2663 (dev
->cfg_data
.cur_intf
<< UDC_CSR_NE_INTF_SHIFT
);
2664 reg
= (reg
& ~UDC_CSR_NE_ALT_MASK
) |
2665 (dev
->cfg_data
.cur_alt
<< UDC_CSR_NE_ALT_SHIFT
);
2666 pch_udc_write_csr(dev
, reg
, UDC_EP0OUT_IDX
);
2667 for (i
= 0; i
< PCH_UDC_USED_EP_NUM
* 2; i
++) {
2668 /* clear stall bits */
2669 pch_udc_ep_clear_stall(&(dev
->ep
[i
]));
2670 dev
->ep
[i
].halted
= 0;
2673 spin_unlock(&dev
->lock
);
2674 ret
= dev
->driver
->setup(&dev
->gadget
, &dev
->setup_data
);
2675 spin_lock(&dev
->lock
);
2679 * pch_udc_svc_cfg_interrupt() - This function handles a set configuration
2681 * @dev: Reference to driver structure
2683 static void pch_udc_svc_cfg_interrupt(struct pch_udc_dev
*dev
)
2686 u32 reg
, dev_stat
= 0;
2688 dev_stat
= pch_udc_read_device_status(dev
);
2689 dev
->set_cfg_not_acked
= 1;
2690 dev
->cfg_data
.cur_cfg
= (dev_stat
& UDC_DEVSTS_CFG_MASK
) >>
2691 UDC_DEVSTS_CFG_SHIFT
;
2692 /* make usb request for gadget driver */
2693 memset(&dev
->setup_data
, 0 , sizeof dev
->setup_data
);
2694 dev
->setup_data
.bRequest
= USB_REQ_SET_CONFIGURATION
;
2695 dev
->setup_data
.wValue
= cpu_to_le16(dev
->cfg_data
.cur_cfg
);
2696 /* program the NE registers */
2697 /* Only one end point cfg register */
2698 reg
= pch_udc_read_csr(dev
, UDC_EP0OUT_IDX
);
2699 reg
= (reg
& ~UDC_CSR_NE_CFG_MASK
) |
2700 (dev
->cfg_data
.cur_cfg
<< UDC_CSR_NE_CFG_SHIFT
);
2701 pch_udc_write_csr(dev
, reg
, UDC_EP0OUT_IDX
);
2702 for (i
= 0; i
< PCH_UDC_USED_EP_NUM
* 2; i
++) {
2703 /* clear stall bits */
2704 pch_udc_ep_clear_stall(&(dev
->ep
[i
]));
2705 dev
->ep
[i
].halted
= 0;
2709 /* call gadget zero with setup data received */
2710 spin_unlock(&dev
->lock
);
2711 ret
= dev
->driver
->setup(&dev
->gadget
, &dev
->setup_data
);
2712 spin_lock(&dev
->lock
);
2716 * pch_udc_dev_isr() - This function services device interrupts
2717 * by invoking appropriate routines.
2718 * @dev: Reference to the device structure
2719 * @dev_intr: The Device interrupt status.
2721 static void pch_udc_dev_isr(struct pch_udc_dev
*dev
, u32 dev_intr
)
2725 /* USB Reset Interrupt */
2726 if (dev_intr
& UDC_DEVINT_UR
) {
2727 pch_udc_svc_ur_interrupt(dev
);
2728 dev_dbg(&dev
->pdev
->dev
, "USB_RESET\n");
2730 /* Enumeration Done Interrupt */
2731 if (dev_intr
& UDC_DEVINT_ENUM
) {
2732 pch_udc_svc_enum_interrupt(dev
);
2733 dev_dbg(&dev
->pdev
->dev
, "USB_ENUM\n");
2735 /* Set Interface Interrupt */
2736 if (dev_intr
& UDC_DEVINT_SI
)
2737 pch_udc_svc_intf_interrupt(dev
);
2738 /* Set Config Interrupt */
2739 if (dev_intr
& UDC_DEVINT_SC
)
2740 pch_udc_svc_cfg_interrupt(dev
);
2741 /* USB Suspend interrupt */
2742 if (dev_intr
& UDC_DEVINT_US
) {
2744 && dev
->driver
->suspend
) {
2745 spin_unlock(&dev
->lock
);
2746 dev
->driver
->suspend(&dev
->gadget
);
2747 spin_lock(&dev
->lock
);
2750 vbus
= pch_vbus_gpio_get_value(dev
);
2751 if ((dev
->vbus_session
== 0)
2753 if (dev
->driver
&& dev
->driver
->disconnect
) {
2754 spin_unlock(&dev
->lock
);
2755 dev
->driver
->disconnect(&dev
->gadget
);
2756 spin_lock(&dev
->lock
);
2758 pch_udc_reconnect(dev
);
2759 } else if ((dev
->vbus_session
== 0)
2761 && !dev
->vbus_gpio
.intr
)
2762 schedule_work(&dev
->vbus_gpio
.irq_work_fall
);
2764 dev_dbg(&dev
->pdev
->dev
, "USB_SUSPEND\n");
2766 /* Clear the SOF interrupt, if enabled */
2767 if (dev_intr
& UDC_DEVINT_SOF
)
2768 dev_dbg(&dev
->pdev
->dev
, "SOF\n");
2769 /* ES interrupt, IDLE > 3ms on the USB */
2770 if (dev_intr
& UDC_DEVINT_ES
)
2771 dev_dbg(&dev
->pdev
->dev
, "ES\n");
2772 /* RWKP interrupt */
2773 if (dev_intr
& UDC_DEVINT_RWKP
)
2774 dev_dbg(&dev
->pdev
->dev
, "RWKP\n");
2778 * pch_udc_isr() - This function handles interrupts from the PCH USB Device
2779 * @irq: Interrupt request number
2780 * @dev: Reference to the device structure
2782 static irqreturn_t
pch_udc_isr(int irq
, void *pdev
)
2784 struct pch_udc_dev
*dev
= (struct pch_udc_dev
*) pdev
;
2785 u32 dev_intr
, ep_intr
;
2788 dev_intr
= pch_udc_read_device_interrupts(dev
);
2789 ep_intr
= pch_udc_read_ep_interrupts(dev
);
2791 /* For a hot plug, this find that the controller is hung up. */
2792 if (dev_intr
== ep_intr
)
2793 if (dev_intr
== pch_udc_readl(dev
, UDC_DEVCFG_ADDR
)) {
2794 dev_dbg(&dev
->pdev
->dev
, "UDC: Hung up\n");
2795 /* The controller is reset */
2796 pch_udc_writel(dev
, UDC_SRST
, UDC_SRST_ADDR
);
2800 /* Clear device interrupts */
2801 pch_udc_write_device_interrupts(dev
, dev_intr
);
2803 /* Clear ep interrupts */
2804 pch_udc_write_ep_interrupts(dev
, ep_intr
);
2805 if (!dev_intr
&& !ep_intr
)
2807 spin_lock(&dev
->lock
);
2809 pch_udc_dev_isr(dev
, dev_intr
);
2811 pch_udc_read_all_epstatus(dev
, ep_intr
);
2812 /* Process Control In interrupts, if present */
2813 if (ep_intr
& UDC_EPINT_IN_EP0
) {
2814 pch_udc_svc_control_in(dev
);
2815 pch_udc_postsvc_epinters(dev
, 0);
2817 /* Process Control Out interrupts, if present */
2818 if (ep_intr
& UDC_EPINT_OUT_EP0
)
2819 pch_udc_svc_control_out(dev
);
2820 /* Process data in end point interrupts */
2821 for (i
= 1; i
< PCH_UDC_USED_EP_NUM
; i
++) {
2822 if (ep_intr
& (1 << i
)) {
2823 pch_udc_svc_data_in(dev
, i
);
2824 pch_udc_postsvc_epinters(dev
, i
);
2827 /* Process data out end point interrupts */
2828 for (i
= UDC_EPINT_OUT_SHIFT
+ 1; i
< (UDC_EPINT_OUT_SHIFT
+
2829 PCH_UDC_USED_EP_NUM
); i
++)
2830 if (ep_intr
& (1 << i
))
2831 pch_udc_svc_data_out(dev
, i
-
2832 UDC_EPINT_OUT_SHIFT
);
2834 spin_unlock(&dev
->lock
);
2839 * pch_udc_setup_ep0() - This function enables control endpoint for traffic
2840 * @dev: Reference to the device structure
2842 static void pch_udc_setup_ep0(struct pch_udc_dev
*dev
)
2844 /* enable ep0 interrupts */
2845 pch_udc_enable_ep_interrupts(dev
, UDC_EPINT_IN_EP0
|
2847 /* enable device interrupts */
2848 pch_udc_enable_interrupts(dev
, UDC_DEVINT_UR
| UDC_DEVINT_US
|
2849 UDC_DEVINT_ES
| UDC_DEVINT_ENUM
|
2850 UDC_DEVINT_SI
| UDC_DEVINT_SC
);
2854 * gadget_release() - Free the gadget driver private data
2855 * @pdev reference to struct pci_dev
2857 static void gadget_release(struct device
*pdev
)
2859 struct pch_udc_dev
*dev
= dev_get_drvdata(pdev
);
2865 * pch_udc_pcd_reinit() - This API initializes the endpoint structures
2866 * @dev: Reference to the driver structure
2868 static void pch_udc_pcd_reinit(struct pch_udc_dev
*dev
)
2870 const char *const ep_string
[] = {
2871 ep0_string
, "ep0out", "ep1in", "ep1out", "ep2in", "ep2out",
2872 "ep3in", "ep3out", "ep4in", "ep4out", "ep5in", "ep5out",
2873 "ep6in", "ep6out", "ep7in", "ep7out", "ep8in", "ep8out",
2874 "ep9in", "ep9out", "ep10in", "ep10out", "ep11in", "ep11out",
2875 "ep12in", "ep12out", "ep13in", "ep13out", "ep14in", "ep14out",
2876 "ep15in", "ep15out",
2880 dev
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2881 INIT_LIST_HEAD(&dev
->gadget
.ep_list
);
2883 /* Initialize the endpoints structures */
2884 memset(dev
->ep
, 0, sizeof dev
->ep
);
2885 for (i
= 0; i
< PCH_UDC_EP_NUM
; i
++) {
2886 struct pch_udc_ep
*ep
= &dev
->ep
[i
];
2891 ep
->ep
.name
= ep_string
[i
];
2892 ep
->ep
.ops
= &pch_udc_ep_ops
;
2894 ep
->offset_addr
= ep
->num
* UDC_EP_REG_SHIFT
;
2896 ep
->offset_addr
= (UDC_EPINT_OUT_SHIFT
+ ep
->num
) *
2898 /* need to set ep->ep.maxpacket and set Default Configuration?*/
2899 ep
->ep
.maxpacket
= UDC_BULK_MAX_PKT_SIZE
;
2900 list_add_tail(&ep
->ep
.ep_list
, &dev
->gadget
.ep_list
);
2901 INIT_LIST_HEAD(&ep
->queue
);
2903 dev
->ep
[UDC_EP0IN_IDX
].ep
.maxpacket
= UDC_EP0IN_MAX_PKT_SIZE
;
2904 dev
->ep
[UDC_EP0OUT_IDX
].ep
.maxpacket
= UDC_EP0OUT_MAX_PKT_SIZE
;
2906 /* remove ep0 in and out from the list. They have own pointer */
2907 list_del_init(&dev
->ep
[UDC_EP0IN_IDX
].ep
.ep_list
);
2908 list_del_init(&dev
->ep
[UDC_EP0OUT_IDX
].ep
.ep_list
);
2910 dev
->gadget
.ep0
= &dev
->ep
[UDC_EP0IN_IDX
].ep
;
2911 INIT_LIST_HEAD(&dev
->gadget
.ep0
->ep_list
);
2915 * pch_udc_pcd_init() - This API initializes the driver structure
2916 * @dev: Reference to the driver structure
2921 static int pch_udc_pcd_init(struct pch_udc_dev
*dev
)
2924 pch_udc_pcd_reinit(dev
);
2925 pch_vbus_gpio_init(dev
, vbus_gpio_port
);
2930 * init_dma_pools() - create dma pools during initialization
2931 * @pdev: reference to struct pci_dev
2933 static int init_dma_pools(struct pch_udc_dev
*dev
)
2935 struct pch_udc_stp_dma_desc
*td_stp
;
2936 struct pch_udc_data_dma_desc
*td_data
;
2939 dev
->data_requests
= pci_pool_create("data_requests", dev
->pdev
,
2940 sizeof(struct pch_udc_data_dma_desc
), 0, 0);
2941 if (!dev
->data_requests
) {
2942 dev_err(&dev
->pdev
->dev
, "%s: can't get request data pool\n",
2947 /* dma desc for setup data */
2948 dev
->stp_requests
= pci_pool_create("setup requests", dev
->pdev
,
2949 sizeof(struct pch_udc_stp_dma_desc
), 0, 0);
2950 if (!dev
->stp_requests
) {
2951 dev_err(&dev
->pdev
->dev
, "%s: can't get setup request pool\n",
2956 td_stp
= pci_pool_alloc(dev
->stp_requests
, GFP_KERNEL
,
2957 &dev
->ep
[UDC_EP0OUT_IDX
].td_stp_phys
);
2959 dev_err(&dev
->pdev
->dev
,
2960 "%s: can't allocate setup dma descriptor\n", __func__
);
2963 dev
->ep
[UDC_EP0OUT_IDX
].td_stp
= td_stp
;
2965 /* data: 0 packets !? */
2966 td_data
= pci_pool_alloc(dev
->data_requests
, GFP_KERNEL
,
2967 &dev
->ep
[UDC_EP0OUT_IDX
].td_data_phys
);
2969 dev_err(&dev
->pdev
->dev
,
2970 "%s: can't allocate data dma descriptor\n", __func__
);
2973 dev
->ep
[UDC_EP0OUT_IDX
].td_data
= td_data
;
2974 dev
->ep
[UDC_EP0IN_IDX
].td_stp
= NULL
;
2975 dev
->ep
[UDC_EP0IN_IDX
].td_stp_phys
= 0;
2976 dev
->ep
[UDC_EP0IN_IDX
].td_data
= NULL
;
2977 dev
->ep
[UDC_EP0IN_IDX
].td_data_phys
= 0;
2979 dev
->ep0out_buf
= kzalloc(UDC_EP0OUT_BUFF_SIZE
* 4, GFP_KERNEL
);
2980 if (!dev
->ep0out_buf
)
2982 dev
->dma_addr
= dma_map_single(&dev
->pdev
->dev
, dev
->ep0out_buf
,
2983 UDC_EP0OUT_BUFF_SIZE
* 4,
2988 static int pch_udc_start(struct usb_gadget
*g
,
2989 struct usb_gadget_driver
*driver
)
2991 struct pch_udc_dev
*dev
= to_pch_udc(g
);
2993 driver
->driver
.bus
= NULL
;
2994 dev
->driver
= driver
;
2996 /* get ready for ep0 traffic */
2997 pch_udc_setup_ep0(dev
);
3000 if ((pch_vbus_gpio_get_value(dev
) != 0) || !dev
->vbus_gpio
.intr
)
3001 pch_udc_clear_disconnect(dev
);
3007 static int pch_udc_stop(struct usb_gadget
*g
,
3008 struct usb_gadget_driver
*driver
)
3010 struct pch_udc_dev
*dev
= to_pch_udc(g
);
3012 pch_udc_disable_interrupts(dev
, UDC_DEVINT_MSK
);
3014 /* Assures that there are no pending requests with this driver */
3019 pch_udc_set_disconnect(dev
);
3024 static void pch_udc_shutdown(struct pci_dev
*pdev
)
3026 struct pch_udc_dev
*dev
= pci_get_drvdata(pdev
);
3028 pch_udc_disable_interrupts(dev
, UDC_DEVINT_MSK
);
3029 pch_udc_disable_ep_interrupts(dev
, UDC_EPINT_MSK_DISABLE_ALL
);
3031 /* disable the pullup so the host will think we're gone */
3032 pch_udc_set_disconnect(dev
);
3035 static void pch_udc_remove(struct pci_dev
*pdev
)
3037 struct pch_udc_dev
*dev
= pci_get_drvdata(pdev
);
3039 usb_del_gadget_udc(&dev
->gadget
);
3041 /* gadget driver must not be registered */
3044 "%s: gadget driver still bound!!!\n", __func__
);
3045 /* dma pool cleanup */
3046 if (dev
->data_requests
)
3047 pci_pool_destroy(dev
->data_requests
);
3049 if (dev
->stp_requests
) {
3050 /* cleanup DMA desc's for ep0in */
3051 if (dev
->ep
[UDC_EP0OUT_IDX
].td_stp
) {
3052 pci_pool_free(dev
->stp_requests
,
3053 dev
->ep
[UDC_EP0OUT_IDX
].td_stp
,
3054 dev
->ep
[UDC_EP0OUT_IDX
].td_stp_phys
);
3056 if (dev
->ep
[UDC_EP0OUT_IDX
].td_data
) {
3057 pci_pool_free(dev
->stp_requests
,
3058 dev
->ep
[UDC_EP0OUT_IDX
].td_data
,
3059 dev
->ep
[UDC_EP0OUT_IDX
].td_data_phys
);
3061 pci_pool_destroy(dev
->stp_requests
);
3065 dma_unmap_single(&dev
->pdev
->dev
, dev
->dma_addr
,
3066 UDC_EP0OUT_BUFF_SIZE
* 4, DMA_FROM_DEVICE
);
3067 kfree(dev
->ep0out_buf
);
3069 pch_vbus_gpio_free(dev
);
3073 if (dev
->irq_registered
)
3074 free_irq(pdev
->irq
, dev
);
3076 iounmap(dev
->base_addr
);
3077 if (dev
->mem_region
)
3078 release_mem_region(dev
->phys_addr
,
3079 pci_resource_len(pdev
, PCH_UDC_PCI_BAR
));
3081 pci_disable_device(pdev
);
3083 pci_set_drvdata(pdev
, NULL
);
3087 static int pch_udc_suspend(struct pci_dev
*pdev
, pm_message_t state
)
3089 struct pch_udc_dev
*dev
= pci_get_drvdata(pdev
);
3091 pch_udc_disable_interrupts(dev
, UDC_DEVINT_MSK
);
3092 pch_udc_disable_ep_interrupts(dev
, UDC_EPINT_MSK_DISABLE_ALL
);
3094 pci_disable_device(pdev
);
3095 pci_enable_wake(pdev
, PCI_D3hot
, 0);
3097 if (pci_save_state(pdev
)) {
3099 "%s: could not save PCI config state\n", __func__
);
3102 pci_set_power_state(pdev
, pci_choose_state(pdev
, state
));
3106 static int pch_udc_resume(struct pci_dev
*pdev
)
3110 pci_set_power_state(pdev
, PCI_D0
);
3111 pci_restore_state(pdev
);
3112 ret
= pci_enable_device(pdev
);
3114 dev_err(&pdev
->dev
, "%s: pci_enable_device failed\n", __func__
);
3117 pci_enable_wake(pdev
, PCI_D3hot
, 0);
3121 #define pch_udc_suspend NULL
3122 #define pch_udc_resume NULL
3123 #endif /* CONFIG_PM */
3125 static int pch_udc_probe(struct pci_dev
*pdev
,
3126 const struct pci_device_id
*id
)
3128 unsigned long resource
;
3131 struct pch_udc_dev
*dev
;
3134 dev
= kzalloc(sizeof *dev
, GFP_KERNEL
);
3136 pr_err("%s: no memory for device structure\n", __func__
);
3140 if (pci_enable_device(pdev
) < 0) {
3142 pr_err("%s: pci_enable_device failed\n", __func__
);
3146 pci_set_drvdata(pdev
, dev
);
3148 /* PCI resource allocation */
3149 resource
= pci_resource_start(pdev
, 1);
3150 len
= pci_resource_len(pdev
, 1);
3152 if (!request_mem_region(resource
, len
, KBUILD_MODNAME
)) {
3153 dev_err(&pdev
->dev
, "%s: pci device used already\n", __func__
);
3157 dev
->phys_addr
= resource
;
3158 dev
->mem_region
= 1;
3160 dev
->base_addr
= ioremap_nocache(resource
, len
);
3161 if (!dev
->base_addr
) {
3162 pr_err("%s: device memory cannot be mapped\n", __func__
);
3167 dev_err(&pdev
->dev
, "%s: irq not set\n", __func__
);
3171 /* initialize the hardware */
3172 if (pch_udc_pcd_init(dev
)) {
3176 if (request_irq(pdev
->irq
, pch_udc_isr
, IRQF_SHARED
, KBUILD_MODNAME
,
3178 dev_err(&pdev
->dev
, "%s: request_irq(%d) fail\n", __func__
,
3183 dev
->irq
= pdev
->irq
;
3184 dev
->irq_registered
= 1;
3186 pci_set_master(pdev
);
3187 pci_try_set_mwi(pdev
);
3189 /* device struct setup */
3190 spin_lock_init(&dev
->lock
);
3192 dev
->gadget
.ops
= &pch_udc_ops
;
3194 retval
= init_dma_pools(dev
);
3198 dev
->gadget
.name
= KBUILD_MODNAME
;
3199 dev
->gadget
.max_speed
= USB_SPEED_HIGH
;
3201 /* Put the device in disconnected state till a driver is bound */
3202 pch_udc_set_disconnect(dev
);
3203 retval
= usb_add_gadget_udc_release(&pdev
->dev
, &dev
->gadget
,
3210 pch_udc_remove(pdev
);
3214 static DEFINE_PCI_DEVICE_TABLE(pch_udc_pcidev_id
) = {
3216 PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_EG20T_UDC
),
3217 .class = (PCI_CLASS_SERIAL_USB
<< 8) | 0xfe,
3218 .class_mask
= 0xffffffff,
3221 PCI_DEVICE(PCI_VENDOR_ID_ROHM
, PCI_DEVICE_ID_ML7213_IOH_UDC
),
3222 .class = (PCI_CLASS_SERIAL_USB
<< 8) | 0xfe,
3223 .class_mask
= 0xffffffff,
3226 PCI_DEVICE(PCI_VENDOR_ID_ROHM
, PCI_DEVICE_ID_ML7831_IOH_UDC
),
3227 .class = (PCI_CLASS_SERIAL_USB
<< 8) | 0xfe,
3228 .class_mask
= 0xffffffff,
3233 MODULE_DEVICE_TABLE(pci
, pch_udc_pcidev_id
);
3235 static struct pci_driver pch_udc_driver
= {
3236 .name
= KBUILD_MODNAME
,
3237 .id_table
= pch_udc_pcidev_id
,
3238 .probe
= pch_udc_probe
,
3239 .remove
= pch_udc_remove
,
3240 .suspend
= pch_udc_suspend
,
3241 .resume
= pch_udc_resume
,
3242 .shutdown
= pch_udc_shutdown
,
3245 module_pci_driver(pch_udc_driver
);
3247 MODULE_DESCRIPTION("Intel EG20T USB Device Controller");
3248 MODULE_AUTHOR("LAPIS Semiconductor, <tomoya-linux@dsn.lapis-semi.com>");
3249 MODULE_LICENSE("GPL");