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 registered 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 * @bar: Indicates which PCI BAR for USB regs
347 * @irq: IRQ line for the device
348 * @cfg_data: current cfg, intf, and alt in use
349 * @vbus_gpio: GPIO informaton for detecting VBUS
352 struct usb_gadget gadget
;
353 struct usb_gadget_driver
*driver
;
354 struct pci_dev
*pdev
;
355 struct pch_udc_ep ep
[PCH_UDC_EP_NUM
];
356 spinlock_t lock
; /* protects all state */
367 struct pci_pool
*data_requests
;
368 struct pci_pool
*stp_requests
;
371 struct usb_ctrlrequest setup_data
;
372 unsigned long phys_addr
;
373 void __iomem
*base_addr
;
376 struct pch_udc_cfg_data cfg_data
;
377 struct pch_vbus_gpio_data vbus_gpio
;
379 #define to_pch_udc(g) (container_of((g), struct pch_udc_dev, gadget))
381 #define PCH_UDC_PCI_BAR_QUARK_X1000 0
382 #define PCH_UDC_PCI_BAR 1
383 #define PCI_DEVICE_ID_INTEL_EG20T_UDC 0x8808
384 #define PCI_DEVICE_ID_INTEL_QUARK_X1000_UDC 0x0939
385 #define PCI_VENDOR_ID_ROHM 0x10DB
386 #define PCI_DEVICE_ID_ML7213_IOH_UDC 0x801D
387 #define PCI_DEVICE_ID_ML7831_IOH_UDC 0x8808
389 static const char ep0_string
[] = "ep0in";
390 static DEFINE_SPINLOCK(udc_stall_spinlock
); /* stall spin lock */
391 static bool speed_fs
;
392 module_param_named(speed_fs
, speed_fs
, bool, S_IRUGO
);
393 MODULE_PARM_DESC(speed_fs
, "true for Full speed operation");
396 * struct pch_udc_request - Structure holding a PCH USB device request packet
397 * @req: embedded ep request
398 * @td_data_phys: phys. address
399 * @td_data: first dma desc. of chain
400 * @td_data_last: last dma desc. of chain
401 * @queue: associated queue
402 * @dma_going: DMA in progress for request
403 * @dma_mapped: DMA memory mapped for request
404 * @dma_done: DMA completed for request
405 * @chain_len: chain length
406 * @buf: Buffer memory for align adjustment
407 * @dma: DMA memory for align adjustment
409 struct pch_udc_request
{
410 struct usb_request req
;
411 dma_addr_t td_data_phys
;
412 struct pch_udc_data_dma_desc
*td_data
;
413 struct pch_udc_data_dma_desc
*td_data_last
;
414 struct list_head queue
;
415 unsigned dma_going
:1,
423 static inline u32
pch_udc_readl(struct pch_udc_dev
*dev
, unsigned long reg
)
425 return ioread32(dev
->base_addr
+ reg
);
428 static inline void pch_udc_writel(struct pch_udc_dev
*dev
,
429 unsigned long val
, unsigned long reg
)
431 iowrite32(val
, dev
->base_addr
+ reg
);
434 static inline void pch_udc_bit_set(struct pch_udc_dev
*dev
,
436 unsigned long bitmask
)
438 pch_udc_writel(dev
, pch_udc_readl(dev
, reg
) | bitmask
, reg
);
441 static inline void pch_udc_bit_clr(struct pch_udc_dev
*dev
,
443 unsigned long bitmask
)
445 pch_udc_writel(dev
, pch_udc_readl(dev
, reg
) & ~(bitmask
), reg
);
448 static inline u32
pch_udc_ep_readl(struct pch_udc_ep
*ep
, unsigned long reg
)
450 return ioread32(ep
->dev
->base_addr
+ ep
->offset_addr
+ reg
);
453 static inline void pch_udc_ep_writel(struct pch_udc_ep
*ep
,
454 unsigned long val
, unsigned long reg
)
456 iowrite32(val
, ep
->dev
->base_addr
+ ep
->offset_addr
+ reg
);
459 static inline void pch_udc_ep_bit_set(struct pch_udc_ep
*ep
,
461 unsigned long bitmask
)
463 pch_udc_ep_writel(ep
, pch_udc_ep_readl(ep
, reg
) | bitmask
, reg
);
466 static inline void pch_udc_ep_bit_clr(struct pch_udc_ep
*ep
,
468 unsigned long bitmask
)
470 pch_udc_ep_writel(ep
, pch_udc_ep_readl(ep
, reg
) & ~(bitmask
), reg
);
474 * pch_udc_csr_busy() - Wait till idle.
475 * @dev: Reference to pch_udc_dev structure
477 static void pch_udc_csr_busy(struct pch_udc_dev
*dev
)
479 unsigned int count
= 200;
482 while ((pch_udc_readl(dev
, UDC_CSR_BUSY_ADDR
) & UDC_CSR_BUSY
)
486 dev_err(&dev
->pdev
->dev
, "%s: wait error\n", __func__
);
490 * pch_udc_write_csr() - Write the command and status registers.
491 * @dev: Reference to pch_udc_dev structure
492 * @val: value to be written to CSR register
493 * @addr: address of CSR register
495 static void pch_udc_write_csr(struct pch_udc_dev
*dev
, unsigned long val
,
498 unsigned long reg
= PCH_UDC_CSR(ep
);
500 pch_udc_csr_busy(dev
); /* Wait till idle */
501 pch_udc_writel(dev
, val
, reg
);
502 pch_udc_csr_busy(dev
); /* Wait till idle */
506 * pch_udc_read_csr() - Read the command and status registers.
507 * @dev: Reference to pch_udc_dev structure
508 * @addr: address of CSR register
510 * Return codes: content of CSR register
512 static u32
pch_udc_read_csr(struct pch_udc_dev
*dev
, unsigned int ep
)
514 unsigned long reg
= PCH_UDC_CSR(ep
);
516 pch_udc_csr_busy(dev
); /* Wait till idle */
517 pch_udc_readl(dev
, reg
); /* Dummy read */
518 pch_udc_csr_busy(dev
); /* Wait till idle */
519 return pch_udc_readl(dev
, reg
);
523 * pch_udc_rmt_wakeup() - Initiate for remote wakeup
524 * @dev: Reference to pch_udc_dev structure
526 static inline void pch_udc_rmt_wakeup(struct pch_udc_dev
*dev
)
528 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
530 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
534 * pch_udc_get_frame() - Get the current frame from device status register
535 * @dev: Reference to pch_udc_dev structure
536 * Retern current frame
538 static inline int pch_udc_get_frame(struct pch_udc_dev
*dev
)
540 u32 frame
= pch_udc_readl(dev
, UDC_DEVSTS_ADDR
);
541 return (frame
& UDC_DEVSTS_TS_MASK
) >> UDC_DEVSTS_TS_SHIFT
;
545 * pch_udc_clear_selfpowered() - Clear the self power control
546 * @dev: Reference to pch_udc_regs structure
548 static inline void pch_udc_clear_selfpowered(struct pch_udc_dev
*dev
)
550 pch_udc_bit_clr(dev
, UDC_DEVCFG_ADDR
, UDC_DEVCFG_SP
);
554 * pch_udc_set_selfpowered() - Set the self power control
555 * @dev: Reference to pch_udc_regs structure
557 static inline void pch_udc_set_selfpowered(struct pch_udc_dev
*dev
)
559 pch_udc_bit_set(dev
, UDC_DEVCFG_ADDR
, UDC_DEVCFG_SP
);
563 * pch_udc_set_disconnect() - Set the disconnect status.
564 * @dev: Reference to pch_udc_regs structure
566 static inline void pch_udc_set_disconnect(struct pch_udc_dev
*dev
)
568 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_SD
);
572 * pch_udc_clear_disconnect() - Clear the disconnect status.
573 * @dev: Reference to pch_udc_regs structure
575 static void pch_udc_clear_disconnect(struct pch_udc_dev
*dev
)
577 /* Clear the disconnect */
578 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
579 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_SD
);
581 /* Resume USB signalling */
582 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
586 * pch_udc_reconnect() - This API initializes usb device controller,
587 * and clear the disconnect status.
588 * @dev: Reference to pch_udc_regs structure
590 static void pch_udc_init(struct pch_udc_dev
*dev
);
591 static void pch_udc_reconnect(struct pch_udc_dev
*dev
)
595 /* enable device interrupts */
596 /* pch_udc_enable_interrupts() */
597 pch_udc_bit_clr(dev
, UDC_DEVIRQMSK_ADDR
,
598 UDC_DEVINT_UR
| UDC_DEVINT_ENUM
);
600 /* Clear the disconnect */
601 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
602 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_SD
);
604 /* Resume USB signalling */
605 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RES
);
609 * pch_udc_vbus_session() - set or clearr the disconnect status.
610 * @dev: Reference to pch_udc_regs structure
611 * @is_active: Parameter specifying the action
612 * 0: indicating VBUS power is ending
613 * !0: indicating VBUS power is starting
615 static inline void pch_udc_vbus_session(struct pch_udc_dev
*dev
,
619 pch_udc_reconnect(dev
);
620 dev
->vbus_session
= 1;
622 if (dev
->driver
&& dev
->driver
->disconnect
) {
623 spin_lock(&dev
->lock
);
624 dev
->driver
->disconnect(&dev
->gadget
);
625 spin_unlock(&dev
->lock
);
627 pch_udc_set_disconnect(dev
);
628 dev
->vbus_session
= 0;
633 * pch_udc_ep_set_stall() - Set the stall of endpoint
634 * @ep: Reference to structure of type pch_udc_ep_regs
636 static void pch_udc_ep_set_stall(struct pch_udc_ep
*ep
)
639 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_F
);
640 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_S
);
642 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_S
);
647 * pch_udc_ep_clear_stall() - Clear the stall of endpoint
648 * @ep: Reference to structure of type pch_udc_ep_regs
650 static inline void pch_udc_ep_clear_stall(struct pch_udc_ep
*ep
)
652 /* Clear the stall */
653 pch_udc_ep_bit_clr(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_S
);
654 /* Clear NAK by writing CNAK */
655 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_CNAK
);
659 * pch_udc_ep_set_trfr_type() - Set the transfer type of endpoint
660 * @ep: Reference to structure of type pch_udc_ep_regs
661 * @type: Type of endpoint
663 static inline void pch_udc_ep_set_trfr_type(struct pch_udc_ep
*ep
,
666 pch_udc_ep_writel(ep
, ((type
<< UDC_EPCTL_ET_SHIFT
) &
667 UDC_EPCTL_ET_MASK
), UDC_EPCTL_ADDR
);
671 * pch_udc_ep_set_bufsz() - Set the maximum packet size for the endpoint
672 * @ep: Reference to structure of type pch_udc_ep_regs
673 * @buf_size: The buffer word size
675 static void pch_udc_ep_set_bufsz(struct pch_udc_ep
*ep
,
676 u32 buf_size
, u32 ep_in
)
680 data
= pch_udc_ep_readl(ep
, UDC_BUFIN_FRAMENUM_ADDR
);
681 data
= (data
& 0xffff0000) | (buf_size
& 0xffff);
682 pch_udc_ep_writel(ep
, data
, UDC_BUFIN_FRAMENUM_ADDR
);
684 data
= pch_udc_ep_readl(ep
, UDC_BUFOUT_MAXPKT_ADDR
);
685 data
= (buf_size
<< 16) | (data
& 0xffff);
686 pch_udc_ep_writel(ep
, data
, UDC_BUFOUT_MAXPKT_ADDR
);
691 * pch_udc_ep_set_maxpkt() - Set the Max packet size for the endpoint
692 * @ep: Reference to structure of type pch_udc_ep_regs
693 * @pkt_size: The packet byte size
695 static void pch_udc_ep_set_maxpkt(struct pch_udc_ep
*ep
, u32 pkt_size
)
697 u32 data
= pch_udc_ep_readl(ep
, UDC_BUFOUT_MAXPKT_ADDR
);
698 data
= (data
& 0xffff0000) | (pkt_size
& 0xffff);
699 pch_udc_ep_writel(ep
, data
, UDC_BUFOUT_MAXPKT_ADDR
);
703 * pch_udc_ep_set_subptr() - Set the Setup buffer pointer for the endpoint
704 * @ep: Reference to structure of type pch_udc_ep_regs
705 * @addr: Address of the register
707 static inline void pch_udc_ep_set_subptr(struct pch_udc_ep
*ep
, u32 addr
)
709 pch_udc_ep_writel(ep
, addr
, UDC_SUBPTR_ADDR
);
713 * pch_udc_ep_set_ddptr() - Set the Data descriptor pointer for the endpoint
714 * @ep: Reference to structure of type pch_udc_ep_regs
715 * @addr: Address of the register
717 static inline void pch_udc_ep_set_ddptr(struct pch_udc_ep
*ep
, u32 addr
)
719 pch_udc_ep_writel(ep
, addr
, UDC_DESPTR_ADDR
);
723 * pch_udc_ep_set_pd() - Set the poll demand bit for the endpoint
724 * @ep: Reference to structure of type pch_udc_ep_regs
726 static inline void pch_udc_ep_set_pd(struct pch_udc_ep
*ep
)
728 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_P
);
732 * pch_udc_ep_set_rrdy() - Set the receive ready bit for the endpoint
733 * @ep: Reference to structure of type pch_udc_ep_regs
735 static inline void pch_udc_ep_set_rrdy(struct pch_udc_ep
*ep
)
737 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_RRDY
);
741 * pch_udc_ep_clear_rrdy() - Clear the receive ready bit for the endpoint
742 * @ep: Reference to structure of type pch_udc_ep_regs
744 static inline void pch_udc_ep_clear_rrdy(struct pch_udc_ep
*ep
)
746 pch_udc_ep_bit_clr(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_RRDY
);
750 * pch_udc_set_dma() - Set the 'TDE' or RDE bit of device control
751 * register depending on the direction specified
752 * @dev: Reference to structure of type pch_udc_regs
753 * @dir: whether Tx or Rx
754 * DMA_DIR_RX: Receive
755 * DMA_DIR_TX: Transmit
757 static inline void pch_udc_set_dma(struct pch_udc_dev
*dev
, int dir
)
759 if (dir
== DMA_DIR_RX
)
760 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RDE
);
761 else if (dir
== DMA_DIR_TX
)
762 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_TDE
);
766 * pch_udc_clear_dma() - Clear the 'TDE' or RDE bit of device control
767 * register depending on the direction specified
768 * @dev: Reference to structure of type pch_udc_regs
769 * @dir: Whether Tx or Rx
770 * DMA_DIR_RX: Receive
771 * DMA_DIR_TX: Transmit
773 static inline void pch_udc_clear_dma(struct pch_udc_dev
*dev
, int dir
)
775 if (dir
== DMA_DIR_RX
)
776 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_RDE
);
777 else if (dir
== DMA_DIR_TX
)
778 pch_udc_bit_clr(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_TDE
);
782 * pch_udc_set_csr_done() - Set the device control register
783 * CSR done field (bit 13)
784 * @dev: reference to structure of type pch_udc_regs
786 static inline void pch_udc_set_csr_done(struct pch_udc_dev
*dev
)
788 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
, UDC_DEVCTL_CSR_DONE
);
792 * pch_udc_disable_interrupts() - Disables the specified interrupts
793 * @dev: Reference to structure of type pch_udc_regs
794 * @mask: Mask to disable interrupts
796 static inline void pch_udc_disable_interrupts(struct pch_udc_dev
*dev
,
799 pch_udc_bit_set(dev
, UDC_DEVIRQMSK_ADDR
, mask
);
803 * pch_udc_enable_interrupts() - Enable the specified interrupts
804 * @dev: Reference to structure of type pch_udc_regs
805 * @mask: Mask to enable interrupts
807 static inline void pch_udc_enable_interrupts(struct pch_udc_dev
*dev
,
810 pch_udc_bit_clr(dev
, UDC_DEVIRQMSK_ADDR
, mask
);
814 * pch_udc_disable_ep_interrupts() - Disable endpoint interrupts
815 * @dev: Reference to structure of type pch_udc_regs
816 * @mask: Mask to disable interrupts
818 static inline void pch_udc_disable_ep_interrupts(struct pch_udc_dev
*dev
,
821 pch_udc_bit_set(dev
, UDC_EPIRQMSK_ADDR
, mask
);
825 * pch_udc_enable_ep_interrupts() - Enable endpoint interrupts
826 * @dev: Reference to structure of type pch_udc_regs
827 * @mask: Mask to enable interrupts
829 static inline void pch_udc_enable_ep_interrupts(struct pch_udc_dev
*dev
,
832 pch_udc_bit_clr(dev
, UDC_EPIRQMSK_ADDR
, mask
);
836 * pch_udc_read_device_interrupts() - Read the device interrupts
837 * @dev: Reference to structure of type pch_udc_regs
838 * Retern The device interrupts
840 static inline u32
pch_udc_read_device_interrupts(struct pch_udc_dev
*dev
)
842 return pch_udc_readl(dev
, UDC_DEVIRQSTS_ADDR
);
846 * pch_udc_write_device_interrupts() - Write device interrupts
847 * @dev: Reference to structure of type pch_udc_regs
848 * @val: The value to be written to interrupt register
850 static inline void pch_udc_write_device_interrupts(struct pch_udc_dev
*dev
,
853 pch_udc_writel(dev
, val
, UDC_DEVIRQSTS_ADDR
);
857 * pch_udc_read_ep_interrupts() - Read the endpoint interrupts
858 * @dev: Reference to structure of type pch_udc_regs
859 * Retern The endpoint interrupt
861 static inline u32
pch_udc_read_ep_interrupts(struct pch_udc_dev
*dev
)
863 return pch_udc_readl(dev
, UDC_EPIRQSTS_ADDR
);
867 * pch_udc_write_ep_interrupts() - Clear endpoint interupts
868 * @dev: Reference to structure of type pch_udc_regs
869 * @val: The value to be written to interrupt register
871 static inline void pch_udc_write_ep_interrupts(struct pch_udc_dev
*dev
,
874 pch_udc_writel(dev
, val
, UDC_EPIRQSTS_ADDR
);
878 * pch_udc_read_device_status() - Read the device status
879 * @dev: Reference to structure of type pch_udc_regs
880 * Retern The device status
882 static inline u32
pch_udc_read_device_status(struct pch_udc_dev
*dev
)
884 return pch_udc_readl(dev
, UDC_DEVSTS_ADDR
);
888 * pch_udc_read_ep_control() - Read the endpoint control
889 * @ep: Reference to structure of type pch_udc_ep_regs
890 * Retern The endpoint control register value
892 static inline u32
pch_udc_read_ep_control(struct pch_udc_ep
*ep
)
894 return pch_udc_ep_readl(ep
, UDC_EPCTL_ADDR
);
898 * pch_udc_clear_ep_control() - Clear the endpoint control register
899 * @ep: Reference to structure of type pch_udc_ep_regs
900 * Retern The endpoint control register value
902 static inline void pch_udc_clear_ep_control(struct pch_udc_ep
*ep
)
904 return pch_udc_ep_writel(ep
, 0, UDC_EPCTL_ADDR
);
908 * pch_udc_read_ep_status() - Read the endpoint status
909 * @ep: Reference to structure of type pch_udc_ep_regs
910 * Retern The endpoint status
912 static inline u32
pch_udc_read_ep_status(struct pch_udc_ep
*ep
)
914 return pch_udc_ep_readl(ep
, UDC_EPSTS_ADDR
);
918 * pch_udc_clear_ep_status() - Clear the endpoint status
919 * @ep: Reference to structure of type pch_udc_ep_regs
920 * @stat: Endpoint status
922 static inline void pch_udc_clear_ep_status(struct pch_udc_ep
*ep
,
925 return pch_udc_ep_writel(ep
, stat
, UDC_EPSTS_ADDR
);
929 * pch_udc_ep_set_nak() - Set the bit 7 (SNAK field)
930 * of the endpoint control register
931 * @ep: Reference to structure of type pch_udc_ep_regs
933 static inline void pch_udc_ep_set_nak(struct pch_udc_ep
*ep
)
935 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_SNAK
);
939 * pch_udc_ep_clear_nak() - Set the bit 8 (CNAK field)
940 * of the endpoint control register
941 * @ep: reference to structure of type pch_udc_ep_regs
943 static void pch_udc_ep_clear_nak(struct pch_udc_ep
*ep
)
945 unsigned int loopcnt
= 0;
946 struct pch_udc_dev
*dev
= ep
->dev
;
948 if (!(pch_udc_ep_readl(ep
, UDC_EPCTL_ADDR
) & UDC_EPCTL_NAK
))
952 while (!(pch_udc_read_ep_status(ep
) & UDC_EPSTS_MRXFIFO_EMP
) &&
956 dev_err(&dev
->pdev
->dev
, "%s: RxFIFO not Empty\n",
960 while ((pch_udc_read_ep_control(ep
) & UDC_EPCTL_NAK
) && --loopcnt
) {
961 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_CNAK
);
965 dev_err(&dev
->pdev
->dev
, "%s: Clear NAK not set for ep%d%s\n",
966 __func__
, ep
->num
, (ep
->in
? "in" : "out"));
970 * pch_udc_ep_fifo_flush() - Flush the endpoint fifo
971 * @ep: reference to structure of type pch_udc_ep_regs
972 * @dir: direction of endpoint
976 static void pch_udc_ep_fifo_flush(struct pch_udc_ep
*ep
, int dir
)
978 if (dir
) { /* IN ep */
979 pch_udc_ep_bit_set(ep
, UDC_EPCTL_ADDR
, UDC_EPCTL_F
);
985 * pch_udc_ep_enable() - This api enables endpoint
986 * @regs: Reference to structure pch_udc_ep_regs
987 * @desc: endpoint descriptor
989 static void pch_udc_ep_enable(struct pch_udc_ep
*ep
,
990 struct pch_udc_cfg_data
*cfg
,
991 const struct usb_endpoint_descriptor
*desc
)
996 pch_udc_ep_set_trfr_type(ep
, desc
->bmAttributes
);
998 buff_size
= UDC_EPIN_BUFF_SIZE
;
1000 buff_size
= UDC_EPOUT_BUFF_SIZE
;
1001 pch_udc_ep_set_bufsz(ep
, buff_size
, ep
->in
);
1002 pch_udc_ep_set_maxpkt(ep
, usb_endpoint_maxp(desc
));
1003 pch_udc_ep_set_nak(ep
);
1004 pch_udc_ep_fifo_flush(ep
, ep
->in
);
1005 /* Configure the endpoint */
1006 val
= ep
->num
<< UDC_CSR_NE_NUM_SHIFT
| ep
->in
<< UDC_CSR_NE_DIR_SHIFT
|
1007 ((desc
->bmAttributes
& USB_ENDPOINT_XFERTYPE_MASK
) <<
1008 UDC_CSR_NE_TYPE_SHIFT
) |
1009 (cfg
->cur_cfg
<< UDC_CSR_NE_CFG_SHIFT
) |
1010 (cfg
->cur_intf
<< UDC_CSR_NE_INTF_SHIFT
) |
1011 (cfg
->cur_alt
<< UDC_CSR_NE_ALT_SHIFT
) |
1012 usb_endpoint_maxp(desc
) << UDC_CSR_NE_MAX_PKT_SHIFT
;
1015 pch_udc_write_csr(ep
->dev
, val
, UDC_EPIN_IDX(ep
->num
));
1017 pch_udc_write_csr(ep
->dev
, val
, UDC_EPOUT_IDX(ep
->num
));
1021 * pch_udc_ep_disable() - This api disables endpoint
1022 * @regs: Reference to structure pch_udc_ep_regs
1024 static void pch_udc_ep_disable(struct pch_udc_ep
*ep
)
1027 /* flush the fifo */
1028 pch_udc_ep_writel(ep
, UDC_EPCTL_F
, UDC_EPCTL_ADDR
);
1030 pch_udc_ep_writel(ep
, UDC_EPCTL_SNAK
, UDC_EPCTL_ADDR
);
1031 pch_udc_ep_bit_set(ep
, UDC_EPSTS_ADDR
, UDC_EPSTS_IN
);
1034 pch_udc_ep_writel(ep
, UDC_EPCTL_SNAK
, UDC_EPCTL_ADDR
);
1036 /* reset desc pointer */
1037 pch_udc_ep_writel(ep
, 0, UDC_DESPTR_ADDR
);
1041 * pch_udc_wait_ep_stall() - Wait EP stall.
1042 * @dev: Reference to pch_udc_dev structure
1044 static void pch_udc_wait_ep_stall(struct pch_udc_ep
*ep
)
1046 unsigned int count
= 10000;
1048 /* Wait till idle */
1049 while ((pch_udc_read_ep_control(ep
) & UDC_EPCTL_S
) && --count
)
1052 dev_err(&ep
->dev
->pdev
->dev
, "%s: wait error\n", __func__
);
1056 * pch_udc_init() - This API initializes usb device controller
1057 * @dev: Rreference to pch_udc_regs structure
1059 static void pch_udc_init(struct pch_udc_dev
*dev
)
1062 pr_err("%s: Invalid address\n", __func__
);
1065 /* Soft Reset and Reset PHY */
1066 pch_udc_writel(dev
, UDC_SRST
, UDC_SRST_ADDR
);
1067 pch_udc_writel(dev
, UDC_SRST
| UDC_PSRST
, UDC_SRST_ADDR
);
1069 pch_udc_writel(dev
, UDC_SRST
, UDC_SRST_ADDR
);
1070 pch_udc_writel(dev
, 0x00, UDC_SRST_ADDR
);
1072 /* mask and clear all device interrupts */
1073 pch_udc_bit_set(dev
, UDC_DEVIRQMSK_ADDR
, UDC_DEVINT_MSK
);
1074 pch_udc_bit_set(dev
, UDC_DEVIRQSTS_ADDR
, UDC_DEVINT_MSK
);
1076 /* mask and clear all ep interrupts */
1077 pch_udc_bit_set(dev
, UDC_EPIRQMSK_ADDR
, UDC_EPINT_MSK_DISABLE_ALL
);
1078 pch_udc_bit_set(dev
, UDC_EPIRQSTS_ADDR
, UDC_EPINT_MSK_DISABLE_ALL
);
1080 /* enable dynamic CSR programmingi, self powered and device speed */
1082 pch_udc_bit_set(dev
, UDC_DEVCFG_ADDR
, UDC_DEVCFG_CSR_PRG
|
1083 UDC_DEVCFG_SP
| UDC_DEVCFG_SPD_FS
);
1084 else /* defaul high speed */
1085 pch_udc_bit_set(dev
, UDC_DEVCFG_ADDR
, UDC_DEVCFG_CSR_PRG
|
1086 UDC_DEVCFG_SP
| UDC_DEVCFG_SPD_HS
);
1087 pch_udc_bit_set(dev
, UDC_DEVCTL_ADDR
,
1088 (PCH_UDC_THLEN
<< UDC_DEVCTL_THLEN_SHIFT
) |
1089 (PCH_UDC_BRLEN
<< UDC_DEVCTL_BRLEN_SHIFT
) |
1090 UDC_DEVCTL_MODE
| UDC_DEVCTL_BREN
|
1095 * pch_udc_exit() - This API exit usb device controller
1096 * @dev: Reference to pch_udc_regs structure
1098 static void pch_udc_exit(struct pch_udc_dev
*dev
)
1100 /* mask all device interrupts */
1101 pch_udc_bit_set(dev
, UDC_DEVIRQMSK_ADDR
, UDC_DEVINT_MSK
);
1102 /* mask all ep interrupts */
1103 pch_udc_bit_set(dev
, UDC_EPIRQMSK_ADDR
, UDC_EPINT_MSK_DISABLE_ALL
);
1104 /* put device in disconnected state */
1105 pch_udc_set_disconnect(dev
);
1109 * pch_udc_pcd_get_frame() - This API is invoked to get the current frame number
1110 * @gadget: Reference to the gadget driver
1114 * -EINVAL: If the gadget passed is NULL
1116 static int pch_udc_pcd_get_frame(struct usb_gadget
*gadget
)
1118 struct pch_udc_dev
*dev
;
1122 dev
= container_of(gadget
, struct pch_udc_dev
, gadget
);
1123 return pch_udc_get_frame(dev
);
1127 * pch_udc_pcd_wakeup() - This API is invoked to initiate a remote wakeup
1128 * @gadget: Reference to the gadget driver
1132 * -EINVAL: If the gadget passed is NULL
1134 static int pch_udc_pcd_wakeup(struct usb_gadget
*gadget
)
1136 struct pch_udc_dev
*dev
;
1137 unsigned long flags
;
1141 dev
= container_of(gadget
, struct pch_udc_dev
, gadget
);
1142 spin_lock_irqsave(&dev
->lock
, flags
);
1143 pch_udc_rmt_wakeup(dev
);
1144 spin_unlock_irqrestore(&dev
->lock
, flags
);
1149 * pch_udc_pcd_selfpowered() - This API is invoked to specify whether the device
1150 * is self powered or not
1151 * @gadget: Reference to the gadget driver
1152 * @value: Specifies self powered or not
1156 * -EINVAL: If the gadget passed is NULL
1158 static int pch_udc_pcd_selfpowered(struct usb_gadget
*gadget
, int value
)
1160 struct pch_udc_dev
*dev
;
1164 gadget
->is_selfpowered
= (value
!= 0);
1165 dev
= container_of(gadget
, struct pch_udc_dev
, gadget
);
1167 pch_udc_set_selfpowered(dev
);
1169 pch_udc_clear_selfpowered(dev
);
1174 * pch_udc_pcd_pullup() - This API is invoked to make the device
1175 * visible/invisible to the host
1176 * @gadget: Reference to the gadget driver
1177 * @is_on: Specifies whether the pull up is made active or inactive
1181 * -EINVAL: If the gadget passed is NULL
1183 static int pch_udc_pcd_pullup(struct usb_gadget
*gadget
, int is_on
)
1185 struct pch_udc_dev
*dev
;
1189 dev
= container_of(gadget
, struct pch_udc_dev
, gadget
);
1191 pch_udc_reconnect(dev
);
1193 if (dev
->driver
&& dev
->driver
->disconnect
) {
1194 spin_lock(&dev
->lock
);
1195 dev
->driver
->disconnect(&dev
->gadget
);
1196 spin_unlock(&dev
->lock
);
1198 pch_udc_set_disconnect(dev
);
1205 * pch_udc_pcd_vbus_session() - This API is used by a driver for an external
1206 * transceiver (or GPIO) that
1207 * detects a VBUS power session starting/ending
1208 * @gadget: Reference to the gadget driver
1209 * @is_active: specifies whether the session is starting or ending
1213 * -EINVAL: If the gadget passed is NULL
1215 static int pch_udc_pcd_vbus_session(struct usb_gadget
*gadget
, int is_active
)
1217 struct pch_udc_dev
*dev
;
1221 dev
= container_of(gadget
, struct pch_udc_dev
, gadget
);
1222 pch_udc_vbus_session(dev
, is_active
);
1227 * pch_udc_pcd_vbus_draw() - This API is used by gadget drivers during
1228 * SET_CONFIGURATION calls to
1229 * specify how much power the device can consume
1230 * @gadget: Reference to the gadget driver
1231 * @mA: specifies the current limit in 2mA unit
1234 * -EINVAL: If the gadget passed is NULL
1237 static int pch_udc_pcd_vbus_draw(struct usb_gadget
*gadget
, unsigned int mA
)
1242 static int pch_udc_start(struct usb_gadget
*g
,
1243 struct usb_gadget_driver
*driver
);
1244 static int pch_udc_stop(struct usb_gadget
*g
);
1246 static const struct usb_gadget_ops pch_udc_ops
= {
1247 .get_frame
= pch_udc_pcd_get_frame
,
1248 .wakeup
= pch_udc_pcd_wakeup
,
1249 .set_selfpowered
= pch_udc_pcd_selfpowered
,
1250 .pullup
= pch_udc_pcd_pullup
,
1251 .vbus_session
= pch_udc_pcd_vbus_session
,
1252 .vbus_draw
= pch_udc_pcd_vbus_draw
,
1253 .udc_start
= pch_udc_start
,
1254 .udc_stop
= pch_udc_stop
,
1258 * pch_vbus_gpio_get_value() - This API gets value of GPIO port as VBUS status.
1259 * @dev: Reference to the driver structure
1264 * -1: It is not enable to detect VBUS using GPIO
1266 static int pch_vbus_gpio_get_value(struct pch_udc_dev
*dev
)
1270 if (dev
->vbus_gpio
.port
)
1271 vbus
= gpio_get_value(dev
->vbus_gpio
.port
) ? 1 : 0;
1279 * pch_vbus_gpio_work_fall() - This API keeps watch on VBUS becoming Low.
1280 * If VBUS is Low, disconnect is processed
1281 * @irq_work: Structure for WorkQueue
1284 static void pch_vbus_gpio_work_fall(struct work_struct
*irq_work
)
1286 struct pch_vbus_gpio_data
*vbus_gpio
= container_of(irq_work
,
1287 struct pch_vbus_gpio_data
, irq_work_fall
);
1288 struct pch_udc_dev
*dev
=
1289 container_of(vbus_gpio
, struct pch_udc_dev
, vbus_gpio
);
1290 int vbus_saved
= -1;
1294 if (!dev
->vbus_gpio
.port
)
1297 for (count
= 0; count
< (PCH_VBUS_PERIOD
/ PCH_VBUS_INTERVAL
);
1299 vbus
= pch_vbus_gpio_get_value(dev
);
1301 if ((vbus_saved
== vbus
) && (vbus
== 0)) {
1302 dev_dbg(&dev
->pdev
->dev
, "VBUS fell");
1304 && dev
->driver
->disconnect
) {
1305 dev
->driver
->disconnect(
1308 if (dev
->vbus_gpio
.intr
)
1311 pch_udc_reconnect(dev
);
1315 mdelay(PCH_VBUS_INTERVAL
);
1320 * pch_vbus_gpio_work_rise() - This API checks VBUS is High.
1321 * If VBUS is High, connect is processed
1322 * @irq_work: Structure for WorkQueue
1325 static void pch_vbus_gpio_work_rise(struct work_struct
*irq_work
)
1327 struct pch_vbus_gpio_data
*vbus_gpio
= container_of(irq_work
,
1328 struct pch_vbus_gpio_data
, irq_work_rise
);
1329 struct pch_udc_dev
*dev
=
1330 container_of(vbus_gpio
, struct pch_udc_dev
, vbus_gpio
);
1333 if (!dev
->vbus_gpio
.port
)
1336 mdelay(PCH_VBUS_INTERVAL
);
1337 vbus
= pch_vbus_gpio_get_value(dev
);
1340 dev_dbg(&dev
->pdev
->dev
, "VBUS rose");
1341 pch_udc_reconnect(dev
);
1347 * pch_vbus_gpio_irq() - IRQ handler for GPIO intrerrupt for changing VBUS
1348 * @irq: Interrupt request number
1349 * @dev: Reference to the device structure
1353 * -EINVAL: GPIO port is invalid or can't be initialized.
1355 static irqreturn_t
pch_vbus_gpio_irq(int irq
, void *data
)
1357 struct pch_udc_dev
*dev
= (struct pch_udc_dev
*)data
;
1359 if (!dev
->vbus_gpio
.port
|| !dev
->vbus_gpio
.intr
)
1362 if (pch_vbus_gpio_get_value(dev
))
1363 schedule_work(&dev
->vbus_gpio
.irq_work_rise
);
1365 schedule_work(&dev
->vbus_gpio
.irq_work_fall
);
1371 * pch_vbus_gpio_init() - This API initializes GPIO port detecting VBUS.
1372 * @dev: Reference to the driver structure
1373 * @vbus_gpio Number of GPIO port to detect gpio
1377 * -EINVAL: GPIO port is invalid or can't be initialized.
1379 static int pch_vbus_gpio_init(struct pch_udc_dev
*dev
, int vbus_gpio_port
)
1384 dev
->vbus_gpio
.port
= 0;
1385 dev
->vbus_gpio
.intr
= 0;
1387 if (vbus_gpio_port
<= -1)
1390 err
= gpio_is_valid(vbus_gpio_port
);
1392 pr_err("%s: gpio port %d is invalid\n",
1393 __func__
, vbus_gpio_port
);
1397 err
= gpio_request(vbus_gpio_port
, "pch_vbus");
1399 pr_err("%s: can't request gpio port %d, err: %d\n",
1400 __func__
, vbus_gpio_port
, err
);
1404 dev
->vbus_gpio
.port
= vbus_gpio_port
;
1405 gpio_direction_input(vbus_gpio_port
);
1406 INIT_WORK(&dev
->vbus_gpio
.irq_work_fall
, pch_vbus_gpio_work_fall
);
1408 irq_num
= gpio_to_irq(vbus_gpio_port
);
1410 irq_set_irq_type(irq_num
, IRQ_TYPE_EDGE_BOTH
);
1411 err
= request_irq(irq_num
, pch_vbus_gpio_irq
, 0,
1412 "vbus_detect", dev
);
1414 dev
->vbus_gpio
.intr
= irq_num
;
1415 INIT_WORK(&dev
->vbus_gpio
.irq_work_rise
,
1416 pch_vbus_gpio_work_rise
);
1418 pr_err("%s: can't request irq %d, err: %d\n",
1419 __func__
, irq_num
, err
);
1427 * pch_vbus_gpio_free() - This API frees resources of GPIO port
1428 * @dev: Reference to the driver structure
1430 static void pch_vbus_gpio_free(struct pch_udc_dev
*dev
)
1432 if (dev
->vbus_gpio
.intr
)
1433 free_irq(dev
->vbus_gpio
.intr
, dev
);
1435 if (dev
->vbus_gpio
.port
)
1436 gpio_free(dev
->vbus_gpio
.port
);
1440 * complete_req() - This API is invoked from the driver when processing
1441 * of a request is complete
1442 * @ep: Reference to the endpoint structure
1443 * @req: Reference to the request structure
1444 * @status: Indicates the success/failure of completion
1446 static void complete_req(struct pch_udc_ep
*ep
, struct pch_udc_request
*req
,
1448 __releases(&dev
->lock
)
1449 __acquires(&dev
->lock
)
1451 struct pch_udc_dev
*dev
;
1452 unsigned halted
= ep
->halted
;
1454 list_del_init(&req
->queue
);
1456 /* set new status if pending */
1457 if (req
->req
.status
== -EINPROGRESS
)
1458 req
->req
.status
= status
;
1460 status
= req
->req
.status
;
1463 if (req
->dma_mapped
) {
1464 if (req
->dma
== DMA_ADDR_INVALID
) {
1466 dma_unmap_single(&dev
->pdev
->dev
, req
->req
.dma
,
1470 dma_unmap_single(&dev
->pdev
->dev
, req
->req
.dma
,
1473 req
->req
.dma
= DMA_ADDR_INVALID
;
1476 dma_unmap_single(&dev
->pdev
->dev
, req
->dma
,
1480 dma_unmap_single(&dev
->pdev
->dev
, req
->dma
,
1483 memcpy(req
->req
.buf
, req
->buf
, req
->req
.length
);
1486 req
->dma
= DMA_ADDR_INVALID
;
1488 req
->dma_mapped
= 0;
1491 spin_lock(&dev
->lock
);
1493 pch_udc_ep_clear_rrdy(ep
);
1494 usb_gadget_giveback_request(&ep
->ep
, &req
->req
);
1495 spin_unlock(&dev
->lock
);
1496 ep
->halted
= halted
;
1500 * empty_req_queue() - This API empties the request queue of an endpoint
1501 * @ep: Reference to the endpoint structure
1503 static void empty_req_queue(struct pch_udc_ep
*ep
)
1505 struct pch_udc_request
*req
;
1508 while (!list_empty(&ep
->queue
)) {
1509 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
1510 complete_req(ep
, req
, -ESHUTDOWN
); /* Remove from list */
1515 * pch_udc_free_dma_chain() - This function frees the DMA chain created
1517 * @dev Reference to the driver structure
1518 * @req Reference to the request to be freed
1523 static void pch_udc_free_dma_chain(struct pch_udc_dev
*dev
,
1524 struct pch_udc_request
*req
)
1526 struct pch_udc_data_dma_desc
*td
= req
->td_data
;
1527 unsigned i
= req
->chain_len
;
1530 dma_addr_t addr
= (dma_addr_t
)td
->next
;
1532 for (; i
> 1; --i
) {
1533 /* do not free first desc., will be done by free for request */
1534 td
= phys_to_virt(addr
);
1535 addr2
= (dma_addr_t
)td
->next
;
1536 pci_pool_free(dev
->data_requests
, td
, addr
);
1543 * pch_udc_create_dma_chain() - This function creates or reinitializes
1545 * @ep: Reference to the endpoint structure
1546 * @req: Reference to the request
1547 * @buf_len: The buffer length
1548 * @gfp_flags: Flags to be used while mapping the data buffer
1552 * -ENOMEM: pci_pool_alloc invocation fails
1554 static int pch_udc_create_dma_chain(struct pch_udc_ep
*ep
,
1555 struct pch_udc_request
*req
,
1556 unsigned long buf_len
,
1559 struct pch_udc_data_dma_desc
*td
= req
->td_data
, *last
;
1560 unsigned long bytes
= req
->req
.length
, i
= 0;
1561 dma_addr_t dma_addr
;
1564 if (req
->chain_len
> 1)
1565 pch_udc_free_dma_chain(ep
->dev
, req
);
1567 if (req
->dma
== DMA_ADDR_INVALID
)
1568 td
->dataptr
= req
->req
.dma
;
1570 td
->dataptr
= req
->dma
;
1572 td
->status
= PCH_UDC_BS_HST_BSY
;
1573 for (; ; bytes
-= buf_len
, ++len
) {
1574 td
->status
= PCH_UDC_BS_HST_BSY
| min(buf_len
, bytes
);
1575 if (bytes
<= buf_len
)
1578 td
= pci_pool_alloc(ep
->dev
->data_requests
, gfp_flags
,
1583 td
->dataptr
= req
->td_data
->dataptr
+ i
;
1584 last
->next
= dma_addr
;
1587 req
->td_data_last
= td
;
1588 td
->status
|= PCH_UDC_DMA_LAST
;
1589 td
->next
= req
->td_data_phys
;
1590 req
->chain_len
= len
;
1595 req
->chain_len
= len
;
1596 pch_udc_free_dma_chain(ep
->dev
, req
);
1603 * prepare_dma() - This function creates and initializes the DMA chain
1605 * @ep: Reference to the endpoint structure
1606 * @req: Reference to the request
1607 * @gfp: Flag to be used while mapping the data buffer
1611 * Other 0: linux error number on failure
1613 static int prepare_dma(struct pch_udc_ep
*ep
, struct pch_udc_request
*req
,
1618 /* Allocate and create a DMA chain */
1619 retval
= pch_udc_create_dma_chain(ep
, req
, ep
->ep
.maxpacket
, gfp
);
1621 pr_err("%s: could not create DMA chain:%d\n", __func__
, retval
);
1625 req
->td_data
->status
= (req
->td_data
->status
&
1626 ~PCH_UDC_BUFF_STS
) | PCH_UDC_BS_HST_RDY
;
1631 * process_zlp() - This function process zero length packets
1632 * from the gadget driver
1633 * @ep: Reference to the endpoint structure
1634 * @req: Reference to the request
1636 static void process_zlp(struct pch_udc_ep
*ep
, struct pch_udc_request
*req
)
1638 struct pch_udc_dev
*dev
= ep
->dev
;
1640 /* IN zlp's are handled by hardware */
1641 complete_req(ep
, req
, 0);
1643 /* if set_config or set_intf is waiting for ack by zlp
1646 if (dev
->set_cfg_not_acked
) {
1647 pch_udc_set_csr_done(dev
);
1648 dev
->set_cfg_not_acked
= 0;
1650 /* setup command is ACK'ed now by zlp */
1651 if (!dev
->stall
&& dev
->waiting_zlp_ack
) {
1652 pch_udc_ep_clear_nak(&(dev
->ep
[UDC_EP0IN_IDX
]));
1653 dev
->waiting_zlp_ack
= 0;
1658 * pch_udc_start_rxrequest() - This function starts the receive requirement.
1659 * @ep: Reference to the endpoint structure
1660 * @req: Reference to the request structure
1662 static void pch_udc_start_rxrequest(struct pch_udc_ep
*ep
,
1663 struct pch_udc_request
*req
)
1665 struct pch_udc_data_dma_desc
*td_data
;
1667 pch_udc_clear_dma(ep
->dev
, DMA_DIR_RX
);
1668 td_data
= req
->td_data
;
1669 /* Set the status bits for all descriptors */
1671 td_data
->status
= (td_data
->status
& ~PCH_UDC_BUFF_STS
) |
1673 if ((td_data
->status
& PCH_UDC_DMA_LAST
) == PCH_UDC_DMA_LAST
)
1675 td_data
= phys_to_virt(td_data
->next
);
1677 /* Write the descriptor pointer */
1678 pch_udc_ep_set_ddptr(ep
, req
->td_data_phys
);
1680 pch_udc_enable_ep_interrupts(ep
->dev
, UDC_EPINT_OUT_EP0
<< ep
->num
);
1681 pch_udc_set_dma(ep
->dev
, DMA_DIR_RX
);
1682 pch_udc_ep_clear_nak(ep
);
1683 pch_udc_ep_set_rrdy(ep
);
1687 * pch_udc_pcd_ep_enable() - This API enables the endpoint. It is called
1688 * from gadget driver
1689 * @usbep: Reference to the USB endpoint structure
1690 * @desc: Reference to the USB endpoint descriptor structure
1697 static int pch_udc_pcd_ep_enable(struct usb_ep
*usbep
,
1698 const struct usb_endpoint_descriptor
*desc
)
1700 struct pch_udc_ep
*ep
;
1701 struct pch_udc_dev
*dev
;
1702 unsigned long iflags
;
1704 if (!usbep
|| (usbep
->name
== ep0_string
) || !desc
||
1705 (desc
->bDescriptorType
!= USB_DT_ENDPOINT
) || !desc
->wMaxPacketSize
)
1708 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1710 if (!dev
->driver
|| (dev
->gadget
.speed
== USB_SPEED_UNKNOWN
))
1712 spin_lock_irqsave(&dev
->lock
, iflags
);
1715 pch_udc_ep_enable(ep
, &ep
->dev
->cfg_data
, desc
);
1716 ep
->ep
.maxpacket
= usb_endpoint_maxp(desc
);
1717 pch_udc_enable_ep_interrupts(ep
->dev
, PCH_UDC_EPINT(ep
->in
, ep
->num
));
1718 spin_unlock_irqrestore(&dev
->lock
, iflags
);
1723 * pch_udc_pcd_ep_disable() - This API disables endpoint and is called
1724 * from gadget driver
1725 * @usbep Reference to the USB endpoint structure
1731 static int pch_udc_pcd_ep_disable(struct usb_ep
*usbep
)
1733 struct pch_udc_ep
*ep
;
1734 struct pch_udc_dev
*dev
;
1735 unsigned long iflags
;
1740 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1742 if ((usbep
->name
== ep0_string
) || !ep
->ep
.desc
)
1745 spin_lock_irqsave(&ep
->dev
->lock
, iflags
);
1746 empty_req_queue(ep
);
1748 pch_udc_ep_disable(ep
);
1749 pch_udc_disable_ep_interrupts(ep
->dev
, PCH_UDC_EPINT(ep
->in
, ep
->num
));
1751 INIT_LIST_HEAD(&ep
->queue
);
1752 spin_unlock_irqrestore(&ep
->dev
->lock
, iflags
);
1757 * pch_udc_alloc_request() - This function allocates request structure.
1758 * It is called by gadget driver
1759 * @usbep: Reference to the USB endpoint structure
1760 * @gfp: Flag to be used while allocating memory
1764 * Allocated address: Success
1766 static struct usb_request
*pch_udc_alloc_request(struct usb_ep
*usbep
,
1769 struct pch_udc_request
*req
;
1770 struct pch_udc_ep
*ep
;
1771 struct pch_udc_data_dma_desc
*dma_desc
;
1772 struct pch_udc_dev
*dev
;
1776 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1778 req
= kzalloc(sizeof *req
, gfp
);
1781 req
->req
.dma
= DMA_ADDR_INVALID
;
1782 req
->dma
= DMA_ADDR_INVALID
;
1783 INIT_LIST_HEAD(&req
->queue
);
1784 if (!ep
->dev
->dma_addr
)
1786 /* ep0 in requests are allocated from data pool here */
1787 dma_desc
= pci_pool_alloc(ep
->dev
->data_requests
, gfp
,
1788 &req
->td_data_phys
);
1789 if (NULL
== dma_desc
) {
1793 /* prevent from using desc. - set HOST BUSY */
1794 dma_desc
->status
|= PCH_UDC_BS_HST_BSY
;
1795 dma_desc
->dataptr
= cpu_to_le32(DMA_ADDR_INVALID
);
1796 req
->td_data
= dma_desc
;
1797 req
->td_data_last
= dma_desc
;
1803 * pch_udc_free_request() - This function frees request structure.
1804 * It is called by gadget driver
1805 * @usbep: Reference to the USB endpoint structure
1806 * @usbreq: Reference to the USB request
1808 static void pch_udc_free_request(struct usb_ep
*usbep
,
1809 struct usb_request
*usbreq
)
1811 struct pch_udc_ep
*ep
;
1812 struct pch_udc_request
*req
;
1813 struct pch_udc_dev
*dev
;
1815 if (!usbep
|| !usbreq
)
1817 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1818 req
= container_of(usbreq
, struct pch_udc_request
, req
);
1820 if (!list_empty(&req
->queue
))
1821 dev_err(&dev
->pdev
->dev
, "%s: %s req=0x%p queue not empty\n",
1822 __func__
, usbep
->name
, req
);
1823 if (req
->td_data
!= NULL
) {
1824 if (req
->chain_len
> 1)
1825 pch_udc_free_dma_chain(ep
->dev
, req
);
1826 pci_pool_free(ep
->dev
->data_requests
, req
->td_data
,
1833 * pch_udc_pcd_queue() - This function queues a request packet. It is called
1835 * @usbep: Reference to the USB endpoint structure
1836 * @usbreq: Reference to the USB request
1837 * @gfp: Flag to be used while mapping the data buffer
1841 * linux error number: Failure
1843 static int pch_udc_pcd_queue(struct usb_ep
*usbep
, struct usb_request
*usbreq
,
1847 struct pch_udc_ep
*ep
;
1848 struct pch_udc_dev
*dev
;
1849 struct pch_udc_request
*req
;
1850 unsigned long iflags
;
1852 if (!usbep
|| !usbreq
|| !usbreq
->complete
|| !usbreq
->buf
)
1854 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1856 if (!ep
->ep
.desc
&& ep
->num
)
1858 req
= container_of(usbreq
, struct pch_udc_request
, req
);
1859 if (!list_empty(&req
->queue
))
1861 if (!dev
->driver
|| (dev
->gadget
.speed
== USB_SPEED_UNKNOWN
))
1863 spin_lock_irqsave(&dev
->lock
, iflags
);
1864 /* map the buffer for dma */
1865 if (usbreq
->length
&&
1866 ((usbreq
->dma
== DMA_ADDR_INVALID
) || !usbreq
->dma
)) {
1867 if (!((unsigned long)(usbreq
->buf
) & 0x03)) {
1869 usbreq
->dma
= dma_map_single(&dev
->pdev
->dev
,
1874 usbreq
->dma
= dma_map_single(&dev
->pdev
->dev
,
1879 req
->buf
= kzalloc(usbreq
->length
, GFP_ATOMIC
);
1885 memcpy(req
->buf
, usbreq
->buf
, usbreq
->length
);
1886 req
->dma
= dma_map_single(&dev
->pdev
->dev
,
1891 req
->dma
= dma_map_single(&dev
->pdev
->dev
,
1896 req
->dma_mapped
= 1;
1898 if (usbreq
->length
> 0) {
1899 retval
= prepare_dma(ep
, req
, GFP_ATOMIC
);
1904 usbreq
->status
= -EINPROGRESS
;
1906 if (list_empty(&ep
->queue
) && !ep
->halted
) {
1907 /* no pending transfer, so start this req */
1908 if (!usbreq
->length
) {
1909 process_zlp(ep
, req
);
1914 pch_udc_start_rxrequest(ep
, req
);
1917 * For IN trfr the descriptors will be programmed and
1918 * P bit will be set when
1919 * we get an IN token
1921 pch_udc_wait_ep_stall(ep
);
1922 pch_udc_ep_clear_nak(ep
);
1923 pch_udc_enable_ep_interrupts(ep
->dev
, (1 << ep
->num
));
1926 /* Now add this request to the ep's pending requests */
1928 list_add_tail(&req
->queue
, &ep
->queue
);
1931 spin_unlock_irqrestore(&dev
->lock
, iflags
);
1936 * pch_udc_pcd_dequeue() - This function de-queues a request packet.
1937 * It is called by gadget driver
1938 * @usbep: Reference to the USB endpoint structure
1939 * @usbreq: Reference to the USB request
1943 * linux error number: Failure
1945 static int pch_udc_pcd_dequeue(struct usb_ep
*usbep
,
1946 struct usb_request
*usbreq
)
1948 struct pch_udc_ep
*ep
;
1949 struct pch_udc_request
*req
;
1950 struct pch_udc_dev
*dev
;
1951 unsigned long flags
;
1954 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1956 if (!usbep
|| !usbreq
|| (!ep
->ep
.desc
&& ep
->num
))
1958 req
= container_of(usbreq
, struct pch_udc_request
, req
);
1959 spin_lock_irqsave(&ep
->dev
->lock
, flags
);
1960 /* make sure it's still queued on this endpoint */
1961 list_for_each_entry(req
, &ep
->queue
, queue
) {
1962 if (&req
->req
== usbreq
) {
1963 pch_udc_ep_set_nak(ep
);
1964 if (!list_empty(&req
->queue
))
1965 complete_req(ep
, req
, -ECONNRESET
);
1970 spin_unlock_irqrestore(&ep
->dev
->lock
, flags
);
1975 * pch_udc_pcd_set_halt() - This function Sets or clear the endpoint halt
1977 * @usbep: Reference to the USB endpoint structure
1978 * @halt: Specifies whether to set or clear the feature
1982 * linux error number: Failure
1984 static int pch_udc_pcd_set_halt(struct usb_ep
*usbep
, int halt
)
1986 struct pch_udc_ep
*ep
;
1987 struct pch_udc_dev
*dev
;
1988 unsigned long iflags
;
1993 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
1995 if (!ep
->ep
.desc
&& !ep
->num
)
1997 if (!ep
->dev
->driver
|| (ep
->dev
->gadget
.speed
== USB_SPEED_UNKNOWN
))
1999 spin_lock_irqsave(&udc_stall_spinlock
, iflags
);
2000 if (list_empty(&ep
->queue
)) {
2002 if (ep
->num
== PCH_UDC_EP0
)
2004 pch_udc_ep_set_stall(ep
);
2005 pch_udc_enable_ep_interrupts(ep
->dev
,
2006 PCH_UDC_EPINT(ep
->in
,
2009 pch_udc_ep_clear_stall(ep
);
2015 spin_unlock_irqrestore(&udc_stall_spinlock
, iflags
);
2020 * pch_udc_pcd_set_wedge() - This function Sets or clear the endpoint
2022 * @usbep: Reference to the USB endpoint structure
2023 * @halt: Specifies whether to set or clear the feature
2027 * linux error number: Failure
2029 static int pch_udc_pcd_set_wedge(struct usb_ep
*usbep
)
2031 struct pch_udc_ep
*ep
;
2032 struct pch_udc_dev
*dev
;
2033 unsigned long iflags
;
2038 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
2040 if (!ep
->ep
.desc
&& !ep
->num
)
2042 if (!ep
->dev
->driver
|| (ep
->dev
->gadget
.speed
== USB_SPEED_UNKNOWN
))
2044 spin_lock_irqsave(&udc_stall_spinlock
, iflags
);
2045 if (!list_empty(&ep
->queue
)) {
2048 if (ep
->num
== PCH_UDC_EP0
)
2050 pch_udc_ep_set_stall(ep
);
2051 pch_udc_enable_ep_interrupts(ep
->dev
,
2052 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2053 ep
->dev
->prot_stall
= 1;
2056 spin_unlock_irqrestore(&udc_stall_spinlock
, iflags
);
2061 * pch_udc_pcd_fifo_flush() - This function Flush the FIFO of specified endpoint
2062 * @usbep: Reference to the USB endpoint structure
2064 static void pch_udc_pcd_fifo_flush(struct usb_ep
*usbep
)
2066 struct pch_udc_ep
*ep
;
2071 ep
= container_of(usbep
, struct pch_udc_ep
, ep
);
2072 if (ep
->ep
.desc
|| !ep
->num
)
2073 pch_udc_ep_fifo_flush(ep
, ep
->in
);
2076 static const struct usb_ep_ops pch_udc_ep_ops
= {
2077 .enable
= pch_udc_pcd_ep_enable
,
2078 .disable
= pch_udc_pcd_ep_disable
,
2079 .alloc_request
= pch_udc_alloc_request
,
2080 .free_request
= pch_udc_free_request
,
2081 .queue
= pch_udc_pcd_queue
,
2082 .dequeue
= pch_udc_pcd_dequeue
,
2083 .set_halt
= pch_udc_pcd_set_halt
,
2084 .set_wedge
= pch_udc_pcd_set_wedge
,
2085 .fifo_status
= NULL
,
2086 .fifo_flush
= pch_udc_pcd_fifo_flush
,
2090 * pch_udc_init_setup_buff() - This function initializes the SETUP buffer
2091 * @td_stp: Reference to the SETP buffer structure
2093 static void pch_udc_init_setup_buff(struct pch_udc_stp_dma_desc
*td_stp
)
2095 static u32 pky_marker
;
2099 td_stp
->reserved
= ++pky_marker
;
2100 memset(&td_stp
->request
, 0xFF, sizeof td_stp
->request
);
2101 td_stp
->status
= PCH_UDC_BS_HST_RDY
;
2105 * pch_udc_start_next_txrequest() - This function starts
2106 * the next transmission requirement
2107 * @ep: Reference to the endpoint structure
2109 static void pch_udc_start_next_txrequest(struct pch_udc_ep
*ep
)
2111 struct pch_udc_request
*req
;
2112 struct pch_udc_data_dma_desc
*td_data
;
2114 if (pch_udc_read_ep_control(ep
) & UDC_EPCTL_P
)
2117 if (list_empty(&ep
->queue
))
2121 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
2126 pch_udc_wait_ep_stall(ep
);
2128 pch_udc_ep_set_ddptr(ep
, 0);
2129 td_data
= req
->td_data
;
2131 td_data
->status
= (td_data
->status
& ~PCH_UDC_BUFF_STS
) |
2133 if ((td_data
->status
& PCH_UDC_DMA_LAST
) == PCH_UDC_DMA_LAST
)
2135 td_data
= phys_to_virt(td_data
->next
);
2137 pch_udc_ep_set_ddptr(ep
, req
->td_data_phys
);
2138 pch_udc_set_dma(ep
->dev
, DMA_DIR_TX
);
2139 pch_udc_ep_set_pd(ep
);
2140 pch_udc_enable_ep_interrupts(ep
->dev
, PCH_UDC_EPINT(ep
->in
, ep
->num
));
2141 pch_udc_ep_clear_nak(ep
);
2145 * pch_udc_complete_transfer() - This function completes a transfer
2146 * @ep: Reference to the endpoint structure
2148 static void pch_udc_complete_transfer(struct pch_udc_ep
*ep
)
2150 struct pch_udc_request
*req
;
2151 struct pch_udc_dev
*dev
= ep
->dev
;
2153 if (list_empty(&ep
->queue
))
2155 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
2156 if ((req
->td_data_last
->status
& PCH_UDC_BUFF_STS
) !=
2157 PCH_UDC_BS_DMA_DONE
)
2159 if ((req
->td_data_last
->status
& PCH_UDC_RXTX_STS
) !=
2161 dev_err(&dev
->pdev
->dev
, "Invalid RXTX status (0x%08x) "
2162 "epstatus=0x%08x\n",
2163 (req
->td_data_last
->status
& PCH_UDC_RXTX_STS
),
2168 req
->req
.actual
= req
->req
.length
;
2169 req
->td_data_last
->status
= PCH_UDC_BS_HST_BSY
| PCH_UDC_DMA_LAST
;
2170 req
->td_data
->status
= PCH_UDC_BS_HST_BSY
| PCH_UDC_DMA_LAST
;
2171 complete_req(ep
, req
, 0);
2173 if (!list_empty(&ep
->queue
)) {
2174 pch_udc_wait_ep_stall(ep
);
2175 pch_udc_ep_clear_nak(ep
);
2176 pch_udc_enable_ep_interrupts(ep
->dev
,
2177 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2179 pch_udc_disable_ep_interrupts(ep
->dev
,
2180 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2185 * pch_udc_complete_receiver() - This function completes a receiver
2186 * @ep: Reference to the endpoint structure
2188 static void pch_udc_complete_receiver(struct pch_udc_ep
*ep
)
2190 struct pch_udc_request
*req
;
2191 struct pch_udc_dev
*dev
= ep
->dev
;
2193 struct pch_udc_data_dma_desc
*td
;
2196 if (list_empty(&ep
->queue
))
2199 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
2200 pch_udc_clear_dma(ep
->dev
, DMA_DIR_RX
);
2201 pch_udc_ep_set_ddptr(ep
, 0);
2202 if ((req
->td_data_last
->status
& PCH_UDC_BUFF_STS
) ==
2203 PCH_UDC_BS_DMA_DONE
)
2204 td
= req
->td_data_last
;
2209 if ((td
->status
& PCH_UDC_RXTX_STS
) != PCH_UDC_RTS_SUCC
) {
2210 dev_err(&dev
->pdev
->dev
, "Invalid RXTX status=0x%08x "
2211 "epstatus=0x%08x\n",
2212 (req
->td_data
->status
& PCH_UDC_RXTX_STS
),
2216 if ((td
->status
& PCH_UDC_BUFF_STS
) == PCH_UDC_BS_DMA_DONE
)
2217 if (td
->status
& PCH_UDC_DMA_LAST
) {
2218 count
= td
->status
& PCH_UDC_RXTX_BYTES
;
2221 if (td
== req
->td_data_last
) {
2222 dev_err(&dev
->pdev
->dev
, "Not complete RX descriptor");
2225 addr
= (dma_addr_t
)td
->next
;
2226 td
= phys_to_virt(addr
);
2228 /* on 64k packets the RXBYTES field is zero */
2229 if (!count
&& (req
->req
.length
== UDC_DMA_MAXPACKET
))
2230 count
= UDC_DMA_MAXPACKET
;
2231 req
->td_data
->status
|= PCH_UDC_DMA_LAST
;
2232 td
->status
|= PCH_UDC_BS_HST_BSY
;
2235 req
->req
.actual
= count
;
2236 complete_req(ep
, req
, 0);
2237 /* If there is a new/failed requests try that now */
2238 if (!list_empty(&ep
->queue
)) {
2239 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
2240 pch_udc_start_rxrequest(ep
, req
);
2245 * pch_udc_svc_data_in() - This function process endpoint interrupts
2247 * @dev: Reference to the device structure
2248 * @ep_num: Endpoint that generated the interrupt
2250 static void pch_udc_svc_data_in(struct pch_udc_dev
*dev
, int ep_num
)
2253 struct pch_udc_ep
*ep
;
2255 ep
= &dev
->ep
[UDC_EPIN_IDX(ep_num
)];
2259 if (!(epsts
& (UDC_EPSTS_IN
| UDC_EPSTS_BNA
| UDC_EPSTS_HE
|
2260 UDC_EPSTS_TDC
| UDC_EPSTS_RCS
| UDC_EPSTS_TXEMPTY
|
2261 UDC_EPSTS_RSS
| UDC_EPSTS_XFERDONE
)))
2263 if ((epsts
& UDC_EPSTS_BNA
))
2265 if (epsts
& UDC_EPSTS_HE
)
2267 if (epsts
& UDC_EPSTS_RSS
) {
2268 pch_udc_ep_set_stall(ep
);
2269 pch_udc_enable_ep_interrupts(ep
->dev
,
2270 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2272 if (epsts
& UDC_EPSTS_RCS
) {
2273 if (!dev
->prot_stall
) {
2274 pch_udc_ep_clear_stall(ep
);
2276 pch_udc_ep_set_stall(ep
);
2277 pch_udc_enable_ep_interrupts(ep
->dev
,
2278 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2281 if (epsts
& UDC_EPSTS_TDC
)
2282 pch_udc_complete_transfer(ep
);
2283 /* On IN interrupt, provide data if we have any */
2284 if ((epsts
& UDC_EPSTS_IN
) && !(epsts
& UDC_EPSTS_RSS
) &&
2285 !(epsts
& UDC_EPSTS_TDC
) && !(epsts
& UDC_EPSTS_TXEMPTY
))
2286 pch_udc_start_next_txrequest(ep
);
2290 * pch_udc_svc_data_out() - Handles interrupts from OUT endpoint
2291 * @dev: Reference to the device structure
2292 * @ep_num: Endpoint that generated the interrupt
2294 static void pch_udc_svc_data_out(struct pch_udc_dev
*dev
, int ep_num
)
2297 struct pch_udc_ep
*ep
;
2298 struct pch_udc_request
*req
= NULL
;
2300 ep
= &dev
->ep
[UDC_EPOUT_IDX(ep_num
)];
2304 if ((epsts
& UDC_EPSTS_BNA
) && (!list_empty(&ep
->queue
))) {
2306 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
,
2308 if ((req
->td_data_last
->status
& PCH_UDC_BUFF_STS
) !=
2309 PCH_UDC_BS_DMA_DONE
) {
2310 if (!req
->dma_going
)
2311 pch_udc_start_rxrequest(ep
, req
);
2315 if (epsts
& UDC_EPSTS_HE
)
2317 if (epsts
& UDC_EPSTS_RSS
) {
2318 pch_udc_ep_set_stall(ep
);
2319 pch_udc_enable_ep_interrupts(ep
->dev
,
2320 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2322 if (epsts
& UDC_EPSTS_RCS
) {
2323 if (!dev
->prot_stall
) {
2324 pch_udc_ep_clear_stall(ep
);
2326 pch_udc_ep_set_stall(ep
);
2327 pch_udc_enable_ep_interrupts(ep
->dev
,
2328 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2331 if (((epsts
& UDC_EPSTS_OUT_MASK
) >> UDC_EPSTS_OUT_SHIFT
) ==
2332 UDC_EPSTS_OUT_DATA
) {
2333 if (ep
->dev
->prot_stall
== 1) {
2334 pch_udc_ep_set_stall(ep
);
2335 pch_udc_enable_ep_interrupts(ep
->dev
,
2336 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2338 pch_udc_complete_receiver(ep
);
2341 if (list_empty(&ep
->queue
))
2342 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2346 * pch_udc_svc_control_in() - Handle Control IN endpoint interrupts
2347 * @dev: Reference to the device structure
2349 static void pch_udc_svc_control_in(struct pch_udc_dev
*dev
)
2352 struct pch_udc_ep
*ep
;
2353 struct pch_udc_ep
*ep_out
;
2355 ep
= &dev
->ep
[UDC_EP0IN_IDX
];
2356 ep_out
= &dev
->ep
[UDC_EP0OUT_IDX
];
2360 if (!(epsts
& (UDC_EPSTS_IN
| UDC_EPSTS_BNA
| UDC_EPSTS_HE
|
2361 UDC_EPSTS_TDC
| UDC_EPSTS_RCS
| UDC_EPSTS_TXEMPTY
|
2362 UDC_EPSTS_XFERDONE
)))
2364 if ((epsts
& UDC_EPSTS_BNA
))
2366 if (epsts
& UDC_EPSTS_HE
)
2368 if ((epsts
& UDC_EPSTS_TDC
) && (!dev
->stall
)) {
2369 pch_udc_complete_transfer(ep
);
2370 pch_udc_clear_dma(dev
, DMA_DIR_RX
);
2371 ep_out
->td_data
->status
= (ep_out
->td_data
->status
&
2372 ~PCH_UDC_BUFF_STS
) |
2374 pch_udc_ep_clear_nak(ep_out
);
2375 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2376 pch_udc_ep_set_rrdy(ep_out
);
2378 /* On IN interrupt, provide data if we have any */
2379 if ((epsts
& UDC_EPSTS_IN
) && !(epsts
& UDC_EPSTS_TDC
) &&
2380 !(epsts
& UDC_EPSTS_TXEMPTY
))
2381 pch_udc_start_next_txrequest(ep
);
2385 * pch_udc_svc_control_out() - Routine that handle Control
2386 * OUT endpoint interrupts
2387 * @dev: Reference to the device structure
2389 static void pch_udc_svc_control_out(struct pch_udc_dev
*dev
)
2390 __releases(&dev
->lock
)
2391 __acquires(&dev
->lock
)
2394 int setup_supported
;
2395 struct pch_udc_ep
*ep
;
2397 ep
= &dev
->ep
[UDC_EP0OUT_IDX
];
2402 if (((stat
& UDC_EPSTS_OUT_MASK
) >> UDC_EPSTS_OUT_SHIFT
) ==
2403 UDC_EPSTS_OUT_SETUP
) {
2405 dev
->ep
[UDC_EP0IN_IDX
].halted
= 0;
2406 dev
->ep
[UDC_EP0OUT_IDX
].halted
= 0;
2407 dev
->setup_data
= ep
->td_stp
->request
;
2408 pch_udc_init_setup_buff(ep
->td_stp
);
2409 pch_udc_clear_dma(dev
, DMA_DIR_RX
);
2410 pch_udc_ep_fifo_flush(&(dev
->ep
[UDC_EP0IN_IDX
]),
2411 dev
->ep
[UDC_EP0IN_IDX
].in
);
2412 if ((dev
->setup_data
.bRequestType
& USB_DIR_IN
))
2413 dev
->gadget
.ep0
= &dev
->ep
[UDC_EP0IN_IDX
].ep
;
2415 dev
->gadget
.ep0
= &ep
->ep
;
2416 spin_lock(&dev
->lock
);
2417 /* If Mass storage Reset */
2418 if ((dev
->setup_data
.bRequestType
== 0x21) &&
2419 (dev
->setup_data
.bRequest
== 0xFF))
2420 dev
->prot_stall
= 0;
2421 /* call gadget with setup data received */
2422 setup_supported
= dev
->driver
->setup(&dev
->gadget
,
2424 spin_unlock(&dev
->lock
);
2426 if (dev
->setup_data
.bRequestType
& USB_DIR_IN
) {
2427 ep
->td_data
->status
= (ep
->td_data
->status
&
2428 ~PCH_UDC_BUFF_STS
) |
2430 pch_udc_ep_set_ddptr(ep
, ep
->td_data_phys
);
2432 /* ep0 in returns data on IN phase */
2433 if (setup_supported
>= 0 && setup_supported
<
2434 UDC_EP0IN_MAX_PKT_SIZE
) {
2435 pch_udc_ep_clear_nak(&(dev
->ep
[UDC_EP0IN_IDX
]));
2436 /* Gadget would have queued a request when
2437 * we called the setup */
2438 if (!(dev
->setup_data
.bRequestType
& USB_DIR_IN
)) {
2439 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2440 pch_udc_ep_clear_nak(ep
);
2442 } else if (setup_supported
< 0) {
2443 /* if unsupported request, then stall */
2444 pch_udc_ep_set_stall(&(dev
->ep
[UDC_EP0IN_IDX
]));
2445 pch_udc_enable_ep_interrupts(ep
->dev
,
2446 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2448 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2450 dev
->waiting_zlp_ack
= 1;
2452 } else if ((((stat
& UDC_EPSTS_OUT_MASK
) >> UDC_EPSTS_OUT_SHIFT
) ==
2453 UDC_EPSTS_OUT_DATA
) && !dev
->stall
) {
2454 pch_udc_clear_dma(dev
, DMA_DIR_RX
);
2455 pch_udc_ep_set_ddptr(ep
, 0);
2456 if (!list_empty(&ep
->queue
)) {
2458 pch_udc_svc_data_out(dev
, PCH_UDC_EP0
);
2460 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2462 pch_udc_ep_set_rrdy(ep
);
2467 * pch_udc_postsvc_epinters() - This function enables end point interrupts
2468 * and clears NAK status
2469 * @dev: Reference to the device structure
2470 * @ep_num: End point number
2472 static void pch_udc_postsvc_epinters(struct pch_udc_dev
*dev
, int ep_num
)
2474 struct pch_udc_ep
*ep
;
2475 struct pch_udc_request
*req
;
2477 ep
= &dev
->ep
[UDC_EPIN_IDX(ep_num
)];
2478 if (!list_empty(&ep
->queue
)) {
2479 req
= list_entry(ep
->queue
.next
, struct pch_udc_request
, queue
);
2480 pch_udc_enable_ep_interrupts(ep
->dev
,
2481 PCH_UDC_EPINT(ep
->in
, ep
->num
));
2482 pch_udc_ep_clear_nak(ep
);
2487 * pch_udc_read_all_epstatus() - This function read all endpoint status
2488 * @dev: Reference to the device structure
2489 * @ep_intr: Status of endpoint interrupt
2491 static void pch_udc_read_all_epstatus(struct pch_udc_dev
*dev
, u32 ep_intr
)
2494 struct pch_udc_ep
*ep
;
2496 for (i
= 0; i
< PCH_UDC_USED_EP_NUM
; i
++) {
2498 if (ep_intr
& (0x1 << i
)) {
2499 ep
= &dev
->ep
[UDC_EPIN_IDX(i
)];
2500 ep
->epsts
= pch_udc_read_ep_status(ep
);
2501 pch_udc_clear_ep_status(ep
, ep
->epsts
);
2504 if (ep_intr
& (0x10000 << i
)) {
2505 ep
= &dev
->ep
[UDC_EPOUT_IDX(i
)];
2506 ep
->epsts
= pch_udc_read_ep_status(ep
);
2507 pch_udc_clear_ep_status(ep
, ep
->epsts
);
2513 * pch_udc_activate_control_ep() - This function enables the control endpoints
2514 * for traffic after a reset
2515 * @dev: Reference to the device structure
2517 static void pch_udc_activate_control_ep(struct pch_udc_dev
*dev
)
2519 struct pch_udc_ep
*ep
;
2522 /* Setup the IN endpoint */
2523 ep
= &dev
->ep
[UDC_EP0IN_IDX
];
2524 pch_udc_clear_ep_control(ep
);
2525 pch_udc_ep_fifo_flush(ep
, ep
->in
);
2526 pch_udc_ep_set_bufsz(ep
, UDC_EP0IN_BUFF_SIZE
, ep
->in
);
2527 pch_udc_ep_set_maxpkt(ep
, UDC_EP0IN_MAX_PKT_SIZE
);
2528 /* Initialize the IN EP Descriptor */
2531 ep
->td_data_phys
= 0;
2532 ep
->td_stp_phys
= 0;
2534 /* Setup the OUT endpoint */
2535 ep
= &dev
->ep
[UDC_EP0OUT_IDX
];
2536 pch_udc_clear_ep_control(ep
);
2537 pch_udc_ep_fifo_flush(ep
, ep
->in
);
2538 pch_udc_ep_set_bufsz(ep
, UDC_EP0OUT_BUFF_SIZE
, ep
->in
);
2539 pch_udc_ep_set_maxpkt(ep
, UDC_EP0OUT_MAX_PKT_SIZE
);
2540 val
= UDC_EP0OUT_MAX_PKT_SIZE
<< UDC_CSR_NE_MAX_PKT_SHIFT
;
2541 pch_udc_write_csr(ep
->dev
, val
, UDC_EP0OUT_IDX
);
2543 /* Initialize the SETUP buffer */
2544 pch_udc_init_setup_buff(ep
->td_stp
);
2545 /* Write the pointer address of dma descriptor */
2546 pch_udc_ep_set_subptr(ep
, ep
->td_stp_phys
);
2547 /* Write the pointer address of Setup descriptor */
2548 pch_udc_ep_set_ddptr(ep
, ep
->td_data_phys
);
2550 /* Initialize the dma descriptor */
2551 ep
->td_data
->status
= PCH_UDC_DMA_LAST
;
2552 ep
->td_data
->dataptr
= dev
->dma_addr
;
2553 ep
->td_data
->next
= ep
->td_data_phys
;
2555 pch_udc_ep_clear_nak(ep
);
2560 * pch_udc_svc_ur_interrupt() - This function handles a USB reset interrupt
2561 * @dev: Reference to driver structure
2563 static void pch_udc_svc_ur_interrupt(struct pch_udc_dev
*dev
)
2565 struct pch_udc_ep
*ep
;
2568 pch_udc_clear_dma(dev
, DMA_DIR_TX
);
2569 pch_udc_clear_dma(dev
, DMA_DIR_RX
);
2570 /* Mask all endpoint interrupts */
2571 pch_udc_disable_ep_interrupts(dev
, UDC_EPINT_MSK_DISABLE_ALL
);
2572 /* clear all endpoint interrupts */
2573 pch_udc_write_ep_interrupts(dev
, UDC_EPINT_MSK_DISABLE_ALL
);
2575 for (i
= 0; i
< PCH_UDC_EP_NUM
; i
++) {
2577 pch_udc_clear_ep_status(ep
, UDC_EPSTS_ALL_CLR_MASK
);
2578 pch_udc_clear_ep_control(ep
);
2579 pch_udc_ep_set_ddptr(ep
, 0);
2580 pch_udc_write_csr(ep
->dev
, 0x00, i
);
2583 dev
->prot_stall
= 0;
2584 dev
->waiting_zlp_ack
= 0;
2585 dev
->set_cfg_not_acked
= 0;
2587 /* disable ep to empty req queue. Skip the control EP's */
2588 for (i
= 0; i
< (PCH_UDC_USED_EP_NUM
*2); i
++) {
2590 pch_udc_ep_set_nak(ep
);
2591 pch_udc_ep_fifo_flush(ep
, ep
->in
);
2592 /* Complete request queue */
2593 empty_req_queue(ep
);
2596 spin_lock(&dev
->lock
);
2597 usb_gadget_udc_reset(&dev
->gadget
, dev
->driver
);
2598 spin_unlock(&dev
->lock
);
2603 * pch_udc_svc_enum_interrupt() - This function handles a USB speed enumeration
2605 * @dev: Reference to driver structure
2607 static void pch_udc_svc_enum_interrupt(struct pch_udc_dev
*dev
)
2609 u32 dev_stat
, dev_speed
;
2610 u32 speed
= USB_SPEED_FULL
;
2612 dev_stat
= pch_udc_read_device_status(dev
);
2613 dev_speed
= (dev_stat
& UDC_DEVSTS_ENUM_SPEED_MASK
) >>
2614 UDC_DEVSTS_ENUM_SPEED_SHIFT
;
2615 switch (dev_speed
) {
2616 case UDC_DEVSTS_ENUM_SPEED_HIGH
:
2617 speed
= USB_SPEED_HIGH
;
2619 case UDC_DEVSTS_ENUM_SPEED_FULL
:
2620 speed
= USB_SPEED_FULL
;
2622 case UDC_DEVSTS_ENUM_SPEED_LOW
:
2623 speed
= USB_SPEED_LOW
;
2628 dev
->gadget
.speed
= speed
;
2629 pch_udc_activate_control_ep(dev
);
2630 pch_udc_enable_ep_interrupts(dev
, UDC_EPINT_IN_EP0
| UDC_EPINT_OUT_EP0
);
2631 pch_udc_set_dma(dev
, DMA_DIR_TX
);
2632 pch_udc_set_dma(dev
, DMA_DIR_RX
);
2633 pch_udc_ep_set_rrdy(&(dev
->ep
[UDC_EP0OUT_IDX
]));
2635 /* enable device interrupts */
2636 pch_udc_enable_interrupts(dev
, UDC_DEVINT_UR
| UDC_DEVINT_US
|
2637 UDC_DEVINT_ES
| UDC_DEVINT_ENUM
|
2638 UDC_DEVINT_SI
| UDC_DEVINT_SC
);
2642 * pch_udc_svc_intf_interrupt() - This function handles a set interface
2644 * @dev: Reference to driver structure
2646 static void pch_udc_svc_intf_interrupt(struct pch_udc_dev
*dev
)
2648 u32 reg
, dev_stat
= 0;
2651 dev_stat
= pch_udc_read_device_status(dev
);
2652 dev
->cfg_data
.cur_intf
= (dev_stat
& UDC_DEVSTS_INTF_MASK
) >>
2653 UDC_DEVSTS_INTF_SHIFT
;
2654 dev
->cfg_data
.cur_alt
= (dev_stat
& UDC_DEVSTS_ALT_MASK
) >>
2655 UDC_DEVSTS_ALT_SHIFT
;
2656 dev
->set_cfg_not_acked
= 1;
2657 /* Construct the usb request for gadget driver and inform it */
2658 memset(&dev
->setup_data
, 0 , sizeof dev
->setup_data
);
2659 dev
->setup_data
.bRequest
= USB_REQ_SET_INTERFACE
;
2660 dev
->setup_data
.bRequestType
= USB_RECIP_INTERFACE
;
2661 dev
->setup_data
.wValue
= cpu_to_le16(dev
->cfg_data
.cur_alt
);
2662 dev
->setup_data
.wIndex
= cpu_to_le16(dev
->cfg_data
.cur_intf
);
2663 /* programm the Endpoint Cfg registers */
2664 /* Only one end point cfg register */
2665 reg
= pch_udc_read_csr(dev
, UDC_EP0OUT_IDX
);
2666 reg
= (reg
& ~UDC_CSR_NE_INTF_MASK
) |
2667 (dev
->cfg_data
.cur_intf
<< UDC_CSR_NE_INTF_SHIFT
);
2668 reg
= (reg
& ~UDC_CSR_NE_ALT_MASK
) |
2669 (dev
->cfg_data
.cur_alt
<< UDC_CSR_NE_ALT_SHIFT
);
2670 pch_udc_write_csr(dev
, reg
, UDC_EP0OUT_IDX
);
2671 for (i
= 0; i
< PCH_UDC_USED_EP_NUM
* 2; i
++) {
2672 /* clear stall bits */
2673 pch_udc_ep_clear_stall(&(dev
->ep
[i
]));
2674 dev
->ep
[i
].halted
= 0;
2677 spin_lock(&dev
->lock
);
2678 ret
= dev
->driver
->setup(&dev
->gadget
, &dev
->setup_data
);
2679 spin_unlock(&dev
->lock
);
2683 * pch_udc_svc_cfg_interrupt() - This function handles a set configuration
2685 * @dev: Reference to driver structure
2687 static void pch_udc_svc_cfg_interrupt(struct pch_udc_dev
*dev
)
2690 u32 reg
, dev_stat
= 0;
2692 dev_stat
= pch_udc_read_device_status(dev
);
2693 dev
->set_cfg_not_acked
= 1;
2694 dev
->cfg_data
.cur_cfg
= (dev_stat
& UDC_DEVSTS_CFG_MASK
) >>
2695 UDC_DEVSTS_CFG_SHIFT
;
2696 /* make usb request for gadget driver */
2697 memset(&dev
->setup_data
, 0 , sizeof dev
->setup_data
);
2698 dev
->setup_data
.bRequest
= USB_REQ_SET_CONFIGURATION
;
2699 dev
->setup_data
.wValue
= cpu_to_le16(dev
->cfg_data
.cur_cfg
);
2700 /* program the NE registers */
2701 /* Only one end point cfg register */
2702 reg
= pch_udc_read_csr(dev
, UDC_EP0OUT_IDX
);
2703 reg
= (reg
& ~UDC_CSR_NE_CFG_MASK
) |
2704 (dev
->cfg_data
.cur_cfg
<< UDC_CSR_NE_CFG_SHIFT
);
2705 pch_udc_write_csr(dev
, reg
, UDC_EP0OUT_IDX
);
2706 for (i
= 0; i
< PCH_UDC_USED_EP_NUM
* 2; i
++) {
2707 /* clear stall bits */
2708 pch_udc_ep_clear_stall(&(dev
->ep
[i
]));
2709 dev
->ep
[i
].halted
= 0;
2713 /* call gadget zero with setup data received */
2714 spin_lock(&dev
->lock
);
2715 ret
= dev
->driver
->setup(&dev
->gadget
, &dev
->setup_data
);
2716 spin_unlock(&dev
->lock
);
2720 * pch_udc_dev_isr() - This function services device interrupts
2721 * by invoking appropriate routines.
2722 * @dev: Reference to the device structure
2723 * @dev_intr: The Device interrupt status.
2725 static void pch_udc_dev_isr(struct pch_udc_dev
*dev
, u32 dev_intr
)
2729 /* USB Reset Interrupt */
2730 if (dev_intr
& UDC_DEVINT_UR
) {
2731 pch_udc_svc_ur_interrupt(dev
);
2732 dev_dbg(&dev
->pdev
->dev
, "USB_RESET\n");
2734 /* Enumeration Done Interrupt */
2735 if (dev_intr
& UDC_DEVINT_ENUM
) {
2736 pch_udc_svc_enum_interrupt(dev
);
2737 dev_dbg(&dev
->pdev
->dev
, "USB_ENUM\n");
2739 /* Set Interface Interrupt */
2740 if (dev_intr
& UDC_DEVINT_SI
)
2741 pch_udc_svc_intf_interrupt(dev
);
2742 /* Set Config Interrupt */
2743 if (dev_intr
& UDC_DEVINT_SC
)
2744 pch_udc_svc_cfg_interrupt(dev
);
2745 /* USB Suspend interrupt */
2746 if (dev_intr
& UDC_DEVINT_US
) {
2748 && dev
->driver
->suspend
) {
2749 spin_unlock(&dev
->lock
);
2750 dev
->driver
->suspend(&dev
->gadget
);
2751 spin_lock(&dev
->lock
);
2754 vbus
= pch_vbus_gpio_get_value(dev
);
2755 if ((dev
->vbus_session
== 0)
2757 if (dev
->driver
&& dev
->driver
->disconnect
) {
2758 spin_unlock(&dev
->lock
);
2759 dev
->driver
->disconnect(&dev
->gadget
);
2760 spin_lock(&dev
->lock
);
2762 pch_udc_reconnect(dev
);
2763 } else if ((dev
->vbus_session
== 0)
2765 && !dev
->vbus_gpio
.intr
)
2766 schedule_work(&dev
->vbus_gpio
.irq_work_fall
);
2768 dev_dbg(&dev
->pdev
->dev
, "USB_SUSPEND\n");
2770 /* Clear the SOF interrupt, if enabled */
2771 if (dev_intr
& UDC_DEVINT_SOF
)
2772 dev_dbg(&dev
->pdev
->dev
, "SOF\n");
2773 /* ES interrupt, IDLE > 3ms on the USB */
2774 if (dev_intr
& UDC_DEVINT_ES
)
2775 dev_dbg(&dev
->pdev
->dev
, "ES\n");
2776 /* RWKP interrupt */
2777 if (dev_intr
& UDC_DEVINT_RWKP
)
2778 dev_dbg(&dev
->pdev
->dev
, "RWKP\n");
2782 * pch_udc_isr() - This function handles interrupts from the PCH USB Device
2783 * @irq: Interrupt request number
2784 * @dev: Reference to the device structure
2786 static irqreturn_t
pch_udc_isr(int irq
, void *pdev
)
2788 struct pch_udc_dev
*dev
= (struct pch_udc_dev
*) pdev
;
2789 u32 dev_intr
, ep_intr
;
2792 dev_intr
= pch_udc_read_device_interrupts(dev
);
2793 ep_intr
= pch_udc_read_ep_interrupts(dev
);
2795 /* For a hot plug, this find that the controller is hung up. */
2796 if (dev_intr
== ep_intr
)
2797 if (dev_intr
== pch_udc_readl(dev
, UDC_DEVCFG_ADDR
)) {
2798 dev_dbg(&dev
->pdev
->dev
, "UDC: Hung up\n");
2799 /* The controller is reset */
2800 pch_udc_writel(dev
, UDC_SRST
, UDC_SRST_ADDR
);
2804 /* Clear device interrupts */
2805 pch_udc_write_device_interrupts(dev
, dev_intr
);
2807 /* Clear ep interrupts */
2808 pch_udc_write_ep_interrupts(dev
, ep_intr
);
2809 if (!dev_intr
&& !ep_intr
)
2811 spin_lock(&dev
->lock
);
2813 pch_udc_dev_isr(dev
, dev_intr
);
2815 pch_udc_read_all_epstatus(dev
, ep_intr
);
2816 /* Process Control In interrupts, if present */
2817 if (ep_intr
& UDC_EPINT_IN_EP0
) {
2818 pch_udc_svc_control_in(dev
);
2819 pch_udc_postsvc_epinters(dev
, 0);
2821 /* Process Control Out interrupts, if present */
2822 if (ep_intr
& UDC_EPINT_OUT_EP0
)
2823 pch_udc_svc_control_out(dev
);
2824 /* Process data in end point interrupts */
2825 for (i
= 1; i
< PCH_UDC_USED_EP_NUM
; i
++) {
2826 if (ep_intr
& (1 << i
)) {
2827 pch_udc_svc_data_in(dev
, i
);
2828 pch_udc_postsvc_epinters(dev
, i
);
2831 /* Process data out end point interrupts */
2832 for (i
= UDC_EPINT_OUT_SHIFT
+ 1; i
< (UDC_EPINT_OUT_SHIFT
+
2833 PCH_UDC_USED_EP_NUM
); i
++)
2834 if (ep_intr
& (1 << i
))
2835 pch_udc_svc_data_out(dev
, i
-
2836 UDC_EPINT_OUT_SHIFT
);
2838 spin_unlock(&dev
->lock
);
2843 * pch_udc_setup_ep0() - This function enables control endpoint for traffic
2844 * @dev: Reference to the device structure
2846 static void pch_udc_setup_ep0(struct pch_udc_dev
*dev
)
2848 /* enable ep0 interrupts */
2849 pch_udc_enable_ep_interrupts(dev
, UDC_EPINT_IN_EP0
|
2851 /* enable device interrupts */
2852 pch_udc_enable_interrupts(dev
, UDC_DEVINT_UR
| UDC_DEVINT_US
|
2853 UDC_DEVINT_ES
| UDC_DEVINT_ENUM
|
2854 UDC_DEVINT_SI
| UDC_DEVINT_SC
);
2858 * gadget_release() - Free the gadget driver private data
2859 * @pdev reference to struct pci_dev
2861 static void gadget_release(struct device
*pdev
)
2863 struct pch_udc_dev
*dev
= dev_get_drvdata(pdev
);
2869 * pch_udc_pcd_reinit() - This API initializes the endpoint structures
2870 * @dev: Reference to the driver structure
2872 static void pch_udc_pcd_reinit(struct pch_udc_dev
*dev
)
2874 const char *const ep_string
[] = {
2875 ep0_string
, "ep0out", "ep1in", "ep1out", "ep2in", "ep2out",
2876 "ep3in", "ep3out", "ep4in", "ep4out", "ep5in", "ep5out",
2877 "ep6in", "ep6out", "ep7in", "ep7out", "ep8in", "ep8out",
2878 "ep9in", "ep9out", "ep10in", "ep10out", "ep11in", "ep11out",
2879 "ep12in", "ep12out", "ep13in", "ep13out", "ep14in", "ep14out",
2880 "ep15in", "ep15out",
2884 dev
->gadget
.speed
= USB_SPEED_UNKNOWN
;
2885 INIT_LIST_HEAD(&dev
->gadget
.ep_list
);
2887 /* Initialize the endpoints structures */
2888 memset(dev
->ep
, 0, sizeof dev
->ep
);
2889 for (i
= 0; i
< PCH_UDC_EP_NUM
; i
++) {
2890 struct pch_udc_ep
*ep
= &dev
->ep
[i
];
2895 ep
->ep
.name
= ep_string
[i
];
2896 ep
->ep
.ops
= &pch_udc_ep_ops
;
2898 ep
->offset_addr
= ep
->num
* UDC_EP_REG_SHIFT
;
2899 ep
->ep
.caps
.dir_in
= true;
2901 ep
->offset_addr
= (UDC_EPINT_OUT_SHIFT
+ ep
->num
) *
2903 ep
->ep
.caps
.dir_out
= true;
2905 if (i
== UDC_EP0IN_IDX
|| i
== UDC_EP0OUT_IDX
) {
2906 ep
->ep
.caps
.type_control
= true;
2908 ep
->ep
.caps
.type_iso
= true;
2909 ep
->ep
.caps
.type_bulk
= true;
2910 ep
->ep
.caps
.type_int
= true;
2912 /* need to set ep->ep.maxpacket and set Default Configuration?*/
2913 usb_ep_set_maxpacket_limit(&ep
->ep
, UDC_BULK_MAX_PKT_SIZE
);
2914 list_add_tail(&ep
->ep
.ep_list
, &dev
->gadget
.ep_list
);
2915 INIT_LIST_HEAD(&ep
->queue
);
2917 usb_ep_set_maxpacket_limit(&dev
->ep
[UDC_EP0IN_IDX
].ep
, UDC_EP0IN_MAX_PKT_SIZE
);
2918 usb_ep_set_maxpacket_limit(&dev
->ep
[UDC_EP0OUT_IDX
].ep
, UDC_EP0OUT_MAX_PKT_SIZE
);
2920 /* remove ep0 in and out from the list. They have own pointer */
2921 list_del_init(&dev
->ep
[UDC_EP0IN_IDX
].ep
.ep_list
);
2922 list_del_init(&dev
->ep
[UDC_EP0OUT_IDX
].ep
.ep_list
);
2924 dev
->gadget
.ep0
= &dev
->ep
[UDC_EP0IN_IDX
].ep
;
2925 INIT_LIST_HEAD(&dev
->gadget
.ep0
->ep_list
);
2929 * pch_udc_pcd_init() - This API initializes the driver structure
2930 * @dev: Reference to the driver structure
2935 static int pch_udc_pcd_init(struct pch_udc_dev
*dev
)
2938 pch_udc_pcd_reinit(dev
);
2939 pch_vbus_gpio_init(dev
, vbus_gpio_port
);
2944 * init_dma_pools() - create dma pools during initialization
2945 * @pdev: reference to struct pci_dev
2947 static int init_dma_pools(struct pch_udc_dev
*dev
)
2949 struct pch_udc_stp_dma_desc
*td_stp
;
2950 struct pch_udc_data_dma_desc
*td_data
;
2953 dev
->data_requests
= pci_pool_create("data_requests", dev
->pdev
,
2954 sizeof(struct pch_udc_data_dma_desc
), 0, 0);
2955 if (!dev
->data_requests
) {
2956 dev_err(&dev
->pdev
->dev
, "%s: can't get request data pool\n",
2961 /* dma desc for setup data */
2962 dev
->stp_requests
= pci_pool_create("setup requests", dev
->pdev
,
2963 sizeof(struct pch_udc_stp_dma_desc
), 0, 0);
2964 if (!dev
->stp_requests
) {
2965 dev_err(&dev
->pdev
->dev
, "%s: can't get setup request pool\n",
2970 td_stp
= pci_pool_alloc(dev
->stp_requests
, GFP_KERNEL
,
2971 &dev
->ep
[UDC_EP0OUT_IDX
].td_stp_phys
);
2973 dev_err(&dev
->pdev
->dev
,
2974 "%s: can't allocate setup dma descriptor\n", __func__
);
2977 dev
->ep
[UDC_EP0OUT_IDX
].td_stp
= td_stp
;
2979 /* data: 0 packets !? */
2980 td_data
= pci_pool_alloc(dev
->data_requests
, GFP_KERNEL
,
2981 &dev
->ep
[UDC_EP0OUT_IDX
].td_data_phys
);
2983 dev_err(&dev
->pdev
->dev
,
2984 "%s: can't allocate data dma descriptor\n", __func__
);
2987 dev
->ep
[UDC_EP0OUT_IDX
].td_data
= td_data
;
2988 dev
->ep
[UDC_EP0IN_IDX
].td_stp
= NULL
;
2989 dev
->ep
[UDC_EP0IN_IDX
].td_stp_phys
= 0;
2990 dev
->ep
[UDC_EP0IN_IDX
].td_data
= NULL
;
2991 dev
->ep
[UDC_EP0IN_IDX
].td_data_phys
= 0;
2993 dev
->ep0out_buf
= kzalloc(UDC_EP0OUT_BUFF_SIZE
* 4, GFP_KERNEL
);
2994 if (!dev
->ep0out_buf
)
2996 dev
->dma_addr
= dma_map_single(&dev
->pdev
->dev
, dev
->ep0out_buf
,
2997 UDC_EP0OUT_BUFF_SIZE
* 4,
3002 static int pch_udc_start(struct usb_gadget
*g
,
3003 struct usb_gadget_driver
*driver
)
3005 struct pch_udc_dev
*dev
= to_pch_udc(g
);
3007 driver
->driver
.bus
= NULL
;
3008 dev
->driver
= driver
;
3010 /* get ready for ep0 traffic */
3011 pch_udc_setup_ep0(dev
);
3014 if ((pch_vbus_gpio_get_value(dev
) != 0) || !dev
->vbus_gpio
.intr
)
3015 pch_udc_clear_disconnect(dev
);
3021 static int pch_udc_stop(struct usb_gadget
*g
)
3023 struct pch_udc_dev
*dev
= to_pch_udc(g
);
3025 pch_udc_disable_interrupts(dev
, UDC_DEVINT_MSK
);
3027 /* Assures that there are no pending requests with this driver */
3032 pch_udc_set_disconnect(dev
);
3037 static void pch_udc_shutdown(struct pci_dev
*pdev
)
3039 struct pch_udc_dev
*dev
= pci_get_drvdata(pdev
);
3041 pch_udc_disable_interrupts(dev
, UDC_DEVINT_MSK
);
3042 pch_udc_disable_ep_interrupts(dev
, UDC_EPINT_MSK_DISABLE_ALL
);
3044 /* disable the pullup so the host will think we're gone */
3045 pch_udc_set_disconnect(dev
);
3048 static void pch_udc_remove(struct pci_dev
*pdev
)
3050 struct pch_udc_dev
*dev
= pci_get_drvdata(pdev
);
3052 usb_del_gadget_udc(&dev
->gadget
);
3054 /* gadget driver must not be registered */
3057 "%s: gadget driver still bound!!!\n", __func__
);
3058 /* dma pool cleanup */
3059 if (dev
->data_requests
)
3060 pci_pool_destroy(dev
->data_requests
);
3062 if (dev
->stp_requests
) {
3063 /* cleanup DMA desc's for ep0in */
3064 if (dev
->ep
[UDC_EP0OUT_IDX
].td_stp
) {
3065 pci_pool_free(dev
->stp_requests
,
3066 dev
->ep
[UDC_EP0OUT_IDX
].td_stp
,
3067 dev
->ep
[UDC_EP0OUT_IDX
].td_stp_phys
);
3069 if (dev
->ep
[UDC_EP0OUT_IDX
].td_data
) {
3070 pci_pool_free(dev
->stp_requests
,
3071 dev
->ep
[UDC_EP0OUT_IDX
].td_data
,
3072 dev
->ep
[UDC_EP0OUT_IDX
].td_data_phys
);
3074 pci_pool_destroy(dev
->stp_requests
);
3078 dma_unmap_single(&dev
->pdev
->dev
, dev
->dma_addr
,
3079 UDC_EP0OUT_BUFF_SIZE
* 4, DMA_FROM_DEVICE
);
3080 kfree(dev
->ep0out_buf
);
3082 pch_vbus_gpio_free(dev
);
3086 if (dev
->irq_registered
)
3087 free_irq(pdev
->irq
, dev
);
3089 iounmap(dev
->base_addr
);
3090 if (dev
->mem_region
)
3091 release_mem_region(dev
->phys_addr
,
3092 pci_resource_len(pdev
, dev
->bar
));
3094 pci_disable_device(pdev
);
3099 static int pch_udc_suspend(struct pci_dev
*pdev
, pm_message_t state
)
3101 struct pch_udc_dev
*dev
= pci_get_drvdata(pdev
);
3103 pch_udc_disable_interrupts(dev
, UDC_DEVINT_MSK
);
3104 pch_udc_disable_ep_interrupts(dev
, UDC_EPINT_MSK_DISABLE_ALL
);
3106 pci_disable_device(pdev
);
3107 pci_enable_wake(pdev
, PCI_D3hot
, 0);
3109 if (pci_save_state(pdev
)) {
3111 "%s: could not save PCI config state\n", __func__
);
3114 pci_set_power_state(pdev
, pci_choose_state(pdev
, state
));
3118 static int pch_udc_resume(struct pci_dev
*pdev
)
3122 pci_set_power_state(pdev
, PCI_D0
);
3123 pci_restore_state(pdev
);
3124 ret
= pci_enable_device(pdev
);
3126 dev_err(&pdev
->dev
, "%s: pci_enable_device failed\n", __func__
);
3129 pci_enable_wake(pdev
, PCI_D3hot
, 0);
3133 #define pch_udc_suspend NULL
3134 #define pch_udc_resume NULL
3135 #endif /* CONFIG_PM */
3137 static int pch_udc_probe(struct pci_dev
*pdev
,
3138 const struct pci_device_id
*id
)
3140 unsigned long resource
;
3143 struct pch_udc_dev
*dev
;
3146 dev
= kzalloc(sizeof *dev
, GFP_KERNEL
);
3148 pr_err("%s: no memory for device structure\n", __func__
);
3152 if (pci_enable_device(pdev
) < 0) {
3154 pr_err("%s: pci_enable_device failed\n", __func__
);
3158 pci_set_drvdata(pdev
, dev
);
3160 /* Determine BAR based on PCI ID */
3161 if (id
->device
== PCI_DEVICE_ID_INTEL_QUARK_X1000_UDC
)
3162 dev
->bar
= PCH_UDC_PCI_BAR_QUARK_X1000
;
3164 dev
->bar
= PCH_UDC_PCI_BAR
;
3166 /* PCI resource allocation */
3167 resource
= pci_resource_start(pdev
, dev
->bar
);
3168 len
= pci_resource_len(pdev
, dev
->bar
);
3170 if (!request_mem_region(resource
, len
, KBUILD_MODNAME
)) {
3171 dev_err(&pdev
->dev
, "%s: pci device used already\n", __func__
);
3175 dev
->phys_addr
= resource
;
3176 dev
->mem_region
= 1;
3178 dev
->base_addr
= ioremap_nocache(resource
, len
);
3179 if (!dev
->base_addr
) {
3180 pr_err("%s: device memory cannot be mapped\n", __func__
);
3185 dev_err(&pdev
->dev
, "%s: irq not set\n", __func__
);
3189 /* initialize the hardware */
3190 if (pch_udc_pcd_init(dev
)) {
3194 if (request_irq(pdev
->irq
, pch_udc_isr
, IRQF_SHARED
, KBUILD_MODNAME
,
3196 dev_err(&pdev
->dev
, "%s: request_irq(%d) fail\n", __func__
,
3201 dev
->irq
= pdev
->irq
;
3202 dev
->irq_registered
= 1;
3204 pci_set_master(pdev
);
3205 pci_try_set_mwi(pdev
);
3207 /* device struct setup */
3208 spin_lock_init(&dev
->lock
);
3210 dev
->gadget
.ops
= &pch_udc_ops
;
3212 retval
= init_dma_pools(dev
);
3216 dev
->gadget
.name
= KBUILD_MODNAME
;
3217 dev
->gadget
.max_speed
= USB_SPEED_HIGH
;
3219 /* Put the device in disconnected state till a driver is bound */
3220 pch_udc_set_disconnect(dev
);
3221 retval
= usb_add_gadget_udc_release(&pdev
->dev
, &dev
->gadget
,
3228 pch_udc_remove(pdev
);
3232 static const struct pci_device_id pch_udc_pcidev_id
[] = {
3234 PCI_DEVICE(PCI_VENDOR_ID_INTEL
,
3235 PCI_DEVICE_ID_INTEL_QUARK_X1000_UDC
),
3236 .class = (PCI_CLASS_SERIAL_USB
<< 8) | 0xfe,
3237 .class_mask
= 0xffffffff,
3240 PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_EG20T_UDC
),
3241 .class = (PCI_CLASS_SERIAL_USB
<< 8) | 0xfe,
3242 .class_mask
= 0xffffffff,
3245 PCI_DEVICE(PCI_VENDOR_ID_ROHM
, PCI_DEVICE_ID_ML7213_IOH_UDC
),
3246 .class = (PCI_CLASS_SERIAL_USB
<< 8) | 0xfe,
3247 .class_mask
= 0xffffffff,
3250 PCI_DEVICE(PCI_VENDOR_ID_ROHM
, PCI_DEVICE_ID_ML7831_IOH_UDC
),
3251 .class = (PCI_CLASS_SERIAL_USB
<< 8) | 0xfe,
3252 .class_mask
= 0xffffffff,
3257 MODULE_DEVICE_TABLE(pci
, pch_udc_pcidev_id
);
3259 static struct pci_driver pch_udc_driver
= {
3260 .name
= KBUILD_MODNAME
,
3261 .id_table
= pch_udc_pcidev_id
,
3262 .probe
= pch_udc_probe
,
3263 .remove
= pch_udc_remove
,
3264 .suspend
= pch_udc_suspend
,
3265 .resume
= pch_udc_resume
,
3266 .shutdown
= pch_udc_shutdown
,
3269 module_pci_driver(pch_udc_driver
);
3271 MODULE_DESCRIPTION("Intel EG20T USB Device Controller");
3272 MODULE_AUTHOR("LAPIS Semiconductor, <tomoya-linux@dsn.lapis-semi.com>");
3273 MODULE_LICENSE("GPL");