USB: isp1362: remove _DBG() usage
[deliverable/linux.git] / drivers / usb / host / isp1362.h
CommitLineData
a9d43091
LW
1/*
2 * ISP1362 HCD (Host Controller Driver) for USB.
3 *
4 * COPYRIGHT (C) by L. Wassmann <LW@KARO-electronics.de>
5 */
6
7/* ------------------------------------------------------------------------- */
8/*
9 * Platform specific compile time options
10 */
10d0ca02 11#if defined(CONFIG_BLACKFIN)
a9d43091
LW
12
13#include <linux/io.h>
14#define USE_32BIT 0
15#define MAX_ROOT_PORTS 2
16#define USE_PLATFORM_DELAY 0
17#define USE_NDELAY 1
18
19#define DUMMY_DELAY_ACCESS \
20 do { \
21 bfin_read16(ASYNC_BANK0_BASE); \
22 bfin_read16(ASYNC_BANK0_BASE); \
23 bfin_read16(ASYNC_BANK0_BASE); \
24 } while (0)
25
26#undef insw
27#undef outsw
28
29#define insw delayed_insw
30#define outsw delayed_outsw
31
32static inline void delayed_outsw(unsigned int addr, void *buf, int len)
33{
34 unsigned short *bp = (unsigned short *)buf;
35 while (len--) {
36 DUMMY_DELAY_ACCESS;
37 outw(*bp++, addr);
38 }
39}
40
41static inline void delayed_insw(unsigned int addr, void *buf, int len)
42{
43 unsigned short *bp = (unsigned short *)buf;
44 while (len--) {
45 DUMMY_DELAY_ACCESS;
0c8a32df 46 *bp++ = inw(addr);
a9d43091
LW
47 }
48}
49
50#else
51
52#define MAX_ROOT_PORTS 2
53
54#define USE_32BIT 0
55
56/* These options are mutually eclusive */
57#define USE_PLATFORM_DELAY 0
58#define USE_NDELAY 0
59
60#define DUMMY_DELAY_ACCESS do {} while (0)
61
62#endif
63
64
65/* ------------------------------------------------------------------------- */
66
67#define USB_RESET_WIDTH 50
68#define MAX_XFER_SIZE 1023
69
70/* Buffer sizes */
71#define ISP1362_BUF_SIZE 4096
72#define ISP1362_ISTL_BUFSIZE 512
73#define ISP1362_INTL_BLKSIZE 64
74#define ISP1362_INTL_BUFFERS 16
75#define ISP1362_ATL_BLKSIZE 64
76
77#define ISP1362_REG_WRITE_OFFSET 0x80
78
79#ifdef ISP1362_DEBUG
80typedef const unsigned int isp1362_reg_t;
81
82#define REG_WIDTH_16 0x000
83#define REG_WIDTH_32 0x100
84#define REG_WIDTH_MASK 0x100
85#define REG_NO_MASK 0x0ff
86
87#define REG_ACCESS_R 0x200
88#define REG_ACCESS_W 0x400
89#define REG_ACCESS_RW 0x600
90#define REG_ACCESS_MASK 0x600
91
92#define ISP1362_REG_NO(r) ((r) & REG_NO_MASK)
93
a9d43091
LW
94#define ISP1362_REG(name, addr, width, rw) \
95static isp1362_reg_t ISP1362_REG_##name = ((addr) | (width) | (rw))
96
97#define REG_ACCESS_TEST(r) BUG_ON(((r) & ISP1362_REG_WRITE_OFFSET) && !((r) & REG_ACCESS_W))
98#define REG_WIDTH_TEST(r, w) BUG_ON(((r) & REG_WIDTH_MASK) != (w))
99#else
100typedef const unsigned char isp1362_reg_t;
101#define ISP1362_REG_NO(r) (r)
a9d43091
LW
102
103#define ISP1362_REG(name, addr, width, rw) \
104static isp1362_reg_t ISP1362_REG_##name = addr
105
106#define REG_ACCESS_TEST(r) do {} while (0)
107#define REG_WIDTH_TEST(r, w) do {} while (0)
108#endif
109
110/* OHCI compatible registers */
111/*
112 * Note: Some of the ISP1362 'OHCI' registers implement only
113 * a subset of the bits defined in the OHCI spec.
114 *
115 * Bitmasks for the individual bits of these registers are defined in "ohci.h"
116 */
117ISP1362_REG(HCREVISION, 0x00, REG_WIDTH_32, REG_ACCESS_R);
118ISP1362_REG(HCCONTROL, 0x01, REG_WIDTH_32, REG_ACCESS_RW);
119ISP1362_REG(HCCMDSTAT, 0x02, REG_WIDTH_32, REG_ACCESS_RW);
120ISP1362_REG(HCINTSTAT, 0x03, REG_WIDTH_32, REG_ACCESS_RW);
121ISP1362_REG(HCINTENB, 0x04, REG_WIDTH_32, REG_ACCESS_RW);
122ISP1362_REG(HCINTDIS, 0x05, REG_WIDTH_32, REG_ACCESS_RW);
123ISP1362_REG(HCFMINTVL, 0x0d, REG_WIDTH_32, REG_ACCESS_RW);
124ISP1362_REG(HCFMREM, 0x0e, REG_WIDTH_32, REG_ACCESS_RW);
125ISP1362_REG(HCFMNUM, 0x0f, REG_WIDTH_32, REG_ACCESS_RW);
126ISP1362_REG(HCLSTHRESH, 0x11, REG_WIDTH_32, REG_ACCESS_RW);
127ISP1362_REG(HCRHDESCA, 0x12, REG_WIDTH_32, REG_ACCESS_RW);
128ISP1362_REG(HCRHDESCB, 0x13, REG_WIDTH_32, REG_ACCESS_RW);
129ISP1362_REG(HCRHSTATUS, 0x14, REG_WIDTH_32, REG_ACCESS_RW);
130ISP1362_REG(HCRHPORT1, 0x15, REG_WIDTH_32, REG_ACCESS_RW);
131ISP1362_REG(HCRHPORT2, 0x16, REG_WIDTH_32, REG_ACCESS_RW);
132
133/* Philips ISP1362 specific registers */
134ISP1362_REG(HCHWCFG, 0x20, REG_WIDTH_16, REG_ACCESS_RW);
135#define HCHWCFG_DISABLE_SUSPEND (1 << 15)
136#define HCHWCFG_GLOBAL_PWRDOWN (1 << 14)
7949f4e1
KM
137#define HCHWCFG_PULLDOWN_DS2 (1 << 13)
138#define HCHWCFG_PULLDOWN_DS1 (1 << 12)
a9d43091
LW
139#define HCHWCFG_CLKNOTSTOP (1 << 11)
140#define HCHWCFG_ANALOG_OC (1 << 10)
141#define HCHWCFG_ONEINT (1 << 9)
142#define HCHWCFG_DACK_MODE (1 << 8)
143#define HCHWCFG_ONEDMA (1 << 7)
144#define HCHWCFG_DACK_POL (1 << 6)
145#define HCHWCFG_DREQ_POL (1 << 5)
146#define HCHWCFG_DBWIDTH_MASK (0x03 << 3)
147#define HCHWCFG_DBWIDTH(n) (((n) << 3) & HCHWCFG_DBWIDTH_MASK)
148#define HCHWCFG_INT_POL (1 << 2)
149#define HCHWCFG_INT_TRIGGER (1 << 1)
150#define HCHWCFG_INT_ENABLE (1 << 0)
151
152ISP1362_REG(HCDMACFG, 0x21, REG_WIDTH_16, REG_ACCESS_RW);
153#define HCDMACFG_CTR_ENABLE (1 << 7)
154#define HCDMACFG_BURST_LEN_MASK (0x03 << 5)
155#define HCDMACFG_BURST_LEN(n) (((n) << 5) & HCDMACFG_BURST_LEN_MASK)
156#define HCDMACFG_BURST_LEN_1 HCDMACFG_BURST_LEN(0)
157#define HCDMACFG_BURST_LEN_4 HCDMACFG_BURST_LEN(1)
158#define HCDMACFG_BURST_LEN_8 HCDMACFG_BURST_LEN(2)
159#define HCDMACFG_DMA_ENABLE (1 << 4)
160#define HCDMACFG_BUF_TYPE_MASK (0x07 << 1)
161#define HCDMACFG_BUF_TYPE(n) (((n) << 1) & HCDMACFG_BUF_TYPE_MASK)
162#define HCDMACFG_BUF_ISTL0 HCDMACFG_BUF_TYPE(0)
163#define HCDMACFG_BUF_ISTL1 HCDMACFG_BUF_TYPE(1)
164#define HCDMACFG_BUF_INTL HCDMACFG_BUF_TYPE(2)
165#define HCDMACFG_BUF_ATL HCDMACFG_BUF_TYPE(3)
166#define HCDMACFG_BUF_DIRECT HCDMACFG_BUF_TYPE(4)
167#define HCDMACFG_DMA_RW_SELECT (1 << 0)
168
169ISP1362_REG(HCXFERCTR, 0x22, REG_WIDTH_16, REG_ACCESS_RW);
170
171ISP1362_REG(HCuPINT, 0x24, REG_WIDTH_16, REG_ACCESS_RW);
172#define HCuPINT_SOF (1 << 0)
173#define HCuPINT_ISTL0 (1 << 1)
174#define HCuPINT_ISTL1 (1 << 2)
175#define HCuPINT_EOT (1 << 3)
176#define HCuPINT_OPR (1 << 4)
177#define HCuPINT_SUSP (1 << 5)
178#define HCuPINT_CLKRDY (1 << 6)
179#define HCuPINT_INTL (1 << 7)
180#define HCuPINT_ATL (1 << 8)
181#define HCuPINT_OTG (1 << 9)
182
183ISP1362_REG(HCuPINTENB, 0x25, REG_WIDTH_16, REG_ACCESS_RW);
184/* same bit definitions apply as for HCuPINT */
185
186ISP1362_REG(HCCHIPID, 0x27, REG_WIDTH_16, REG_ACCESS_R);
187#define HCCHIPID_MASK 0xff00
188#define HCCHIPID_MAGIC 0x3600
189
190ISP1362_REG(HCSCRATCH, 0x28, REG_WIDTH_16, REG_ACCESS_RW);
191
192ISP1362_REG(HCSWRES, 0x29, REG_WIDTH_16, REG_ACCESS_W);
193#define HCSWRES_MAGIC 0x00f6
194
195ISP1362_REG(HCBUFSTAT, 0x2c, REG_WIDTH_16, REG_ACCESS_RW);
196#define HCBUFSTAT_ISTL0_FULL (1 << 0)
197#define HCBUFSTAT_ISTL1_FULL (1 << 1)
198#define HCBUFSTAT_INTL_ACTIVE (1 << 2)
199#define HCBUFSTAT_ATL_ACTIVE (1 << 3)
200#define HCBUFSTAT_RESET_HWPP (1 << 4)
201#define HCBUFSTAT_ISTL0_ACTIVE (1 << 5)
202#define HCBUFSTAT_ISTL1_ACTIVE (1 << 6)
203#define HCBUFSTAT_ISTL0_DONE (1 << 8)
204#define HCBUFSTAT_ISTL1_DONE (1 << 9)
205#define HCBUFSTAT_PAIRED_PTDPP (1 << 10)
206
207ISP1362_REG(HCDIRADDR, 0x32, REG_WIDTH_32, REG_ACCESS_RW);
208#define HCDIRADDR_ADDR_MASK 0x0000ffff
209#define HCDIRADDR_ADDR(n) (((n) << 0) & HCDIRADDR_ADDR_MASK)
210#define HCDIRADDR_COUNT_MASK 0xffff0000
211#define HCDIRADDR_COUNT(n) (((n) << 16) & HCDIRADDR_COUNT_MASK)
212ISP1362_REG(HCDIRDATA, 0x45, REG_WIDTH_16, REG_ACCESS_RW);
213
214ISP1362_REG(HCISTLBUFSZ, 0x30, REG_WIDTH_16, REG_ACCESS_RW);
215ISP1362_REG(HCISTL0PORT, 0x40, REG_WIDTH_16, REG_ACCESS_RW);
216ISP1362_REG(HCISTL1PORT, 0x42, REG_WIDTH_16, REG_ACCESS_RW);
217ISP1362_REG(HCISTLRATE, 0x47, REG_WIDTH_16, REG_ACCESS_RW);
218
219ISP1362_REG(HCINTLBUFSZ, 0x33, REG_WIDTH_16, REG_ACCESS_RW);
220ISP1362_REG(HCINTLPORT, 0x43, REG_WIDTH_16, REG_ACCESS_RW);
221ISP1362_REG(HCINTLBLKSZ, 0x53, REG_WIDTH_16, REG_ACCESS_RW);
222ISP1362_REG(HCINTLDONE, 0x17, REG_WIDTH_32, REG_ACCESS_R);
223ISP1362_REG(HCINTLSKIP, 0x18, REG_WIDTH_32, REG_ACCESS_RW);
224ISP1362_REG(HCINTLLAST, 0x19, REG_WIDTH_32, REG_ACCESS_RW);
225ISP1362_REG(HCINTLCURR, 0x1a, REG_WIDTH_16, REG_ACCESS_R);
226
227ISP1362_REG(HCATLBUFSZ, 0x34, REG_WIDTH_16, REG_ACCESS_RW);
228ISP1362_REG(HCATLPORT, 0x44, REG_WIDTH_16, REG_ACCESS_RW);
229ISP1362_REG(HCATLBLKSZ, 0x54, REG_WIDTH_16, REG_ACCESS_RW);
230ISP1362_REG(HCATLDONE, 0x1b, REG_WIDTH_32, REG_ACCESS_R);
231ISP1362_REG(HCATLSKIP, 0x1c, REG_WIDTH_32, REG_ACCESS_RW);
232ISP1362_REG(HCATLLAST, 0x1d, REG_WIDTH_32, REG_ACCESS_RW);
233ISP1362_REG(HCATLCURR, 0x1e, REG_WIDTH_16, REG_ACCESS_R);
234
235ISP1362_REG(HCATLDTC, 0x51, REG_WIDTH_16, REG_ACCESS_RW);
236ISP1362_REG(HCATLDTCTO, 0x52, REG_WIDTH_16, REG_ACCESS_RW);
237
238
239ISP1362_REG(OTGCONTROL, 0x62, REG_WIDTH_16, REG_ACCESS_RW);
240ISP1362_REG(OTGSTATUS, 0x67, REG_WIDTH_16, REG_ACCESS_R);
241ISP1362_REG(OTGINT, 0x68, REG_WIDTH_16, REG_ACCESS_RW);
242ISP1362_REG(OTGINTENB, 0x69, REG_WIDTH_16, REG_ACCESS_RW);
243ISP1362_REG(OTGTIMER, 0x6A, REG_WIDTH_16, REG_ACCESS_RW);
244ISP1362_REG(OTGALTTMR, 0x6C, REG_WIDTH_16, REG_ACCESS_RW);
245
246/* Philips transfer descriptor, cpu-endian */
247struct ptd {
248 u16 count;
249#define PTD_COUNT_MSK (0x3ff << 0)
250#define PTD_TOGGLE_MSK (1 << 10)
251#define PTD_ACTIVE_MSK (1 << 11)
252#define PTD_CC_MSK (0xf << 12)
253 u16 mps;
254#define PTD_MPS_MSK (0x3ff << 0)
255#define PTD_SPD_MSK (1 << 10)
256#define PTD_LAST_MSK (1 << 11)
257#define PTD_EP_MSK (0xf << 12)
258 u16 len;
259#define PTD_LEN_MSK (0x3ff << 0)
260#define PTD_DIR_MSK (3 << 10)
261#define PTD_DIR_SETUP (0)
262#define PTD_DIR_OUT (1)
263#define PTD_DIR_IN (2)
264 u16 faddr;
265#define PTD_FA_MSK (0x7f << 0)
266/* PTD Byte 7: [StartingFrame (if ISO PTD) | StartingFrame[0..4], PollingRate[0..2] (if INT PTD)] */
267#define PTD_SF_ISO_MSK (0xff << 8)
268#define PTD_SF_INT_MSK (0x1f << 8)
269#define PTD_PR_MSK (0x07 << 13)
270} __attribute__ ((packed, aligned(2)));
271#define PTD_HEADER_SIZE sizeof(struct ptd)
272
273/* ------------------------------------------------------------------------- */
274/* Copied from ohci.h: */
275/*
276 * Hardware transfer status codes -- CC from PTD
277 */
278#define PTD_CC_NOERROR 0x00
279#define PTD_CC_CRC 0x01
280#define PTD_CC_BITSTUFFING 0x02
281#define PTD_CC_DATATOGGLEM 0x03
282#define PTD_CC_STALL 0x04
283#define PTD_DEVNOTRESP 0x05
284#define PTD_PIDCHECKFAIL 0x06
285#define PTD_UNEXPECTEDPID 0x07
286#define PTD_DATAOVERRUN 0x08
287#define PTD_DATAUNDERRUN 0x09
288 /* 0x0A, 0x0B reserved for hardware */
289#define PTD_BUFFEROVERRUN 0x0C
290#define PTD_BUFFERUNDERRUN 0x0D
291 /* 0x0E, 0x0F reserved for HCD */
292#define PTD_NOTACCESSED 0x0F
293
294
295/* map OHCI TD status codes (CC) to errno values */
296static const int cc_to_error[16] = {
297 /* No Error */ 0,
298 /* CRC Error */ -EILSEQ,
299 /* Bit Stuff */ -EPROTO,
300 /* Data Togg */ -EILSEQ,
301 /* Stall */ -EPIPE,
302 /* DevNotResp */ -ETIMEDOUT,
303 /* PIDCheck */ -EPROTO,
304 /* UnExpPID */ -EPROTO,
305 /* DataOver */ -EOVERFLOW,
306 /* DataUnder */ -EREMOTEIO,
307 /* (for hw) */ -EIO,
308 /* (for hw) */ -EIO,
309 /* BufferOver */ -ECOMM,
310 /* BuffUnder */ -ENOSR,
311 /* (for HCD) */ -EALREADY,
312 /* (for HCD) */ -EALREADY
313};
314
315
316/*
317 * HcControl (control) register masks
318 */
319#define OHCI_CTRL_HCFS (3 << 6) /* host controller functional state */
320#define OHCI_CTRL_RWC (1 << 9) /* remote wakeup connected */
321#define OHCI_CTRL_RWE (1 << 10) /* remote wakeup enable */
322
323/* pre-shifted values for HCFS */
324# define OHCI_USB_RESET (0 << 6)
325# define OHCI_USB_RESUME (1 << 6)
326# define OHCI_USB_OPER (2 << 6)
327# define OHCI_USB_SUSPEND (3 << 6)
328
329/*
330 * HcCommandStatus (cmdstatus) register masks
331 */
332#define OHCI_HCR (1 << 0) /* host controller reset */
333#define OHCI_SOC (3 << 16) /* scheduling overrun count */
334
335/*
336 * masks used with interrupt registers:
337 * HcInterruptStatus (intrstatus)
338 * HcInterruptEnable (intrenable)
339 * HcInterruptDisable (intrdisable)
340 */
341#define OHCI_INTR_SO (1 << 0) /* scheduling overrun */
342#define OHCI_INTR_WDH (1 << 1) /* writeback of done_head */
343#define OHCI_INTR_SF (1 << 2) /* start frame */
344#define OHCI_INTR_RD (1 << 3) /* resume detect */
345#define OHCI_INTR_UE (1 << 4) /* unrecoverable error */
346#define OHCI_INTR_FNO (1 << 5) /* frame number overflow */
347#define OHCI_INTR_RHSC (1 << 6) /* root hub status change */
348#define OHCI_INTR_OC (1 << 30) /* ownership change */
349#define OHCI_INTR_MIE (1 << 31) /* master interrupt enable */
350
351/* roothub.portstatus [i] bits */
352#define RH_PS_CCS 0x00000001 /* current connect status */
353#define RH_PS_PES 0x00000002 /* port enable status*/
354#define RH_PS_PSS 0x00000004 /* port suspend status */
355#define RH_PS_POCI 0x00000008 /* port over current indicator */
356#define RH_PS_PRS 0x00000010 /* port reset status */
357#define RH_PS_PPS 0x00000100 /* port power status */
358#define RH_PS_LSDA 0x00000200 /* low speed device attached */
359#define RH_PS_CSC 0x00010000 /* connect status change */
360#define RH_PS_PESC 0x00020000 /* port enable status change */
361#define RH_PS_PSSC 0x00040000 /* port suspend status change */
362#define RH_PS_OCIC 0x00080000 /* over current indicator change */
363#define RH_PS_PRSC 0x00100000 /* port reset status change */
364
365/* roothub.status bits */
366#define RH_HS_LPS 0x00000001 /* local power status */
367#define RH_HS_OCI 0x00000002 /* over current indicator */
368#define RH_HS_DRWE 0x00008000 /* device remote wakeup enable */
369#define RH_HS_LPSC 0x00010000 /* local power status change */
370#define RH_HS_OCIC 0x00020000 /* over current indicator change */
371#define RH_HS_CRWE 0x80000000 /* clear remote wakeup enable */
372
373/* roothub.b masks */
374#define RH_B_DR 0x0000ffff /* device removable flags */
375#define RH_B_PPCM 0xffff0000 /* port power control mask */
376
377/* roothub.a masks */
378#define RH_A_NDP (0xff << 0) /* number of downstream ports */
379#define RH_A_PSM (1 << 8) /* power switching mode */
380#define RH_A_NPS (1 << 9) /* no power switching */
381#define RH_A_DT (1 << 10) /* device type (mbz) */
382#define RH_A_OCPM (1 << 11) /* over current protection mode */
383#define RH_A_NOCP (1 << 12) /* no over current protection */
384#define RH_A_POTPGT (0xff << 24) /* power on to power good time */
385
386#define FI 0x2edf /* 12000 bits per frame (-1) */
387#define FSMP(fi) (0x7fff & ((6 * ((fi) - 210)) / 7))
388#define LSTHRESH 0x628 /* lowspeed bit threshold */
389
390/* ------------------------------------------------------------------------- */
391
392/* PTD accessor macros. */
393#define PTD_GET_COUNT(p) (((p)->count & PTD_COUNT_MSK) >> 0)
394#define PTD_COUNT(v) (((v) << 0) & PTD_COUNT_MSK)
395#define PTD_GET_TOGGLE(p) (((p)->count & PTD_TOGGLE_MSK) >> 10)
396#define PTD_TOGGLE(v) (((v) << 10) & PTD_TOGGLE_MSK)
397#define PTD_GET_ACTIVE(p) (((p)->count & PTD_ACTIVE_MSK) >> 11)
398#define PTD_ACTIVE(v) (((v) << 11) & PTD_ACTIVE_MSK)
399#define PTD_GET_CC(p) (((p)->count & PTD_CC_MSK) >> 12)
400#define PTD_CC(v) (((v) << 12) & PTD_CC_MSK)
401#define PTD_GET_MPS(p) (((p)->mps & PTD_MPS_MSK) >> 0)
402#define PTD_MPS(v) (((v) << 0) & PTD_MPS_MSK)
403#define PTD_GET_SPD(p) (((p)->mps & PTD_SPD_MSK) >> 10)
404#define PTD_SPD(v) (((v) << 10) & PTD_SPD_MSK)
405#define PTD_GET_LAST(p) (((p)->mps & PTD_LAST_MSK) >> 11)
406#define PTD_LAST(v) (((v) << 11) & PTD_LAST_MSK)
407#define PTD_GET_EP(p) (((p)->mps & PTD_EP_MSK) >> 12)
408#define PTD_EP(v) (((v) << 12) & PTD_EP_MSK)
409#define PTD_GET_LEN(p) (((p)->len & PTD_LEN_MSK) >> 0)
410#define PTD_LEN(v) (((v) << 0) & PTD_LEN_MSK)
411#define PTD_GET_DIR(p) (((p)->len & PTD_DIR_MSK) >> 10)
412#define PTD_DIR(v) (((v) << 10) & PTD_DIR_MSK)
413#define PTD_GET_FA(p) (((p)->faddr & PTD_FA_MSK) >> 0)
414#define PTD_FA(v) (((v) << 0) & PTD_FA_MSK)
415#define PTD_GET_SF_INT(p) (((p)->faddr & PTD_SF_INT_MSK) >> 8)
416#define PTD_SF_INT(v) (((v) << 8) & PTD_SF_INT_MSK)
417#define PTD_GET_SF_ISO(p) (((p)->faddr & PTD_SF_ISO_MSK) >> 8)
418#define PTD_SF_ISO(v) (((v) << 8) & PTD_SF_ISO_MSK)
419#define PTD_GET_PR(p) (((p)->faddr & PTD_PR_MSK) >> 13)
420#define PTD_PR(v) (((v) << 13) & PTD_PR_MSK)
421
422#define LOG2_PERIODIC_SIZE 5 /* arbitrary; this matches OHCI */
423#define PERIODIC_SIZE (1 << LOG2_PERIODIC_SIZE)
424
425struct isp1362_ep {
426 struct usb_host_endpoint *hep;
427 struct usb_device *udev;
428
429 /* philips transfer descriptor */
430 struct ptd ptd;
431
432 u8 maxpacket;
433 u8 epnum;
434 u8 nextpid;
435 u16 error_count;
436 u16 length; /* of current packet */
437 s16 ptd_offset; /* buffer offset in ISP1362 where
438 PTD has been stored
439 (for access thru HCDIRDATA) */
440 int ptd_index;
441 int num_ptds;
442 void *data; /* to databuf */
443 /* queue of active EPs (the ones transmitted to the chip) */
444 struct list_head active;
445
446 /* periodic schedule */
447 u8 branch;
448 u16 interval;
449 u16 load;
450 u16 last_iso;
451
452 /* async schedule */
453 struct list_head schedule; /* list of all EPs that need processing */
454 struct list_head remove_list;
455 int num_req;
456};
457
458struct isp1362_ep_queue {
459 struct list_head active; /* list of PTDs currently processed by HC */
460 atomic_t finishing;
461 unsigned long buf_map;
462 unsigned long skip_map;
463 int free_ptd;
464 u16 buf_start;
465 u16 buf_size;
466 u16 blk_size; /* PTD buffer block size for ATL and INTL */
467 u8 buf_count;
468 u8 buf_avail;
469 char name[16];
470
471 /* for statistical tracking */
472 u8 stat_maxptds; /* Max # of ptds seen simultaneously in fifo */
473 u8 ptd_count; /* number of ptds submitted to this queue */
474};
475
476struct isp1362_hcd {
477 spinlock_t lock;
478 void __iomem *addr_reg;
479 void __iomem *data_reg;
480
481 struct isp1362_platform_data *board;
482
483 struct proc_dir_entry *pde;
484 unsigned long stat1, stat2, stat4, stat8, stat16;
485
486 /* HC registers */
487 u32 intenb; /* "OHCI" interrupts */
488 u16 irqenb; /* uP interrupts */
489
490 /* Root hub registers */
491 u32 rhdesca;
492 u32 rhdescb;
493 u32 rhstatus;
494 u32 rhport[MAX_ROOT_PORTS];
495 unsigned long next_statechange;
496
497 /* HC control reg shadow copy */
498 u32 hc_control;
499
500 /* async schedule: control, bulk */
501 struct list_head async;
502
503 /* periodic schedule: int */
504 u16 load[PERIODIC_SIZE];
505 struct list_head periodic;
506 u16 fmindex;
507
508 /* periodic schedule: isochronous */
509 struct list_head isoc;
22a627ba
RK
510 unsigned int istl_flip:1;
511 unsigned int irq_active:1;
a9d43091
LW
512
513 /* Schedules for the current frame */
514 struct isp1362_ep_queue atl_queue;
515 struct isp1362_ep_queue intl_queue;
516 struct isp1362_ep_queue istl_queue[2];
517
518 /* list of PTDs retrieved from HC */
519 struct list_head remove_list;
520 enum {
521 ISP1362_INT_SOF,
522 ISP1362_INT_ISTL0,
523 ISP1362_INT_ISTL1,
524 ISP1362_INT_EOT,
525 ISP1362_INT_OPR,
526 ISP1362_INT_SUSP,
527 ISP1362_INT_CLKRDY,
528 ISP1362_INT_INTL,
529 ISP1362_INT_ATL,
530 ISP1362_INT_OTG,
531 NUM_ISP1362_IRQS
532 } IRQ_NAMES;
533 unsigned int irq_stat[NUM_ISP1362_IRQS];
534 int req_serial;
535};
536
537static inline const char *ISP1362_INT_NAME(int n)
538{
539 switch (n) {
540 case ISP1362_INT_SOF: return "SOF";
541 case ISP1362_INT_ISTL0: return "ISTL0";
542 case ISP1362_INT_ISTL1: return "ISTL1";
543 case ISP1362_INT_EOT: return "EOT";
544 case ISP1362_INT_OPR: return "OPR";
545 case ISP1362_INT_SUSP: return "SUSP";
546 case ISP1362_INT_CLKRDY: return "CLKRDY";
547 case ISP1362_INT_INTL: return "INTL";
548 case ISP1362_INT_ATL: return "ATL";
549 case ISP1362_INT_OTG: return "OTG";
550 default: return "unknown";
551 }
552}
553
554static inline void ALIGNSTAT(struct isp1362_hcd *isp1362_hcd, void *ptr)
555{
b0a9cf29 556 unsigned long p = (unsigned long)ptr;
a9d43091
LW
557 if (!(p & 0xf))
558 isp1362_hcd->stat16++;
559 else if (!(p & 0x7))
560 isp1362_hcd->stat8++;
561 else if (!(p & 0x3))
562 isp1362_hcd->stat4++;
563 else if (!(p & 0x1))
564 isp1362_hcd->stat2++;
565 else
566 isp1362_hcd->stat1++;
567}
568
569static inline struct isp1362_hcd *hcd_to_isp1362_hcd(struct usb_hcd *hcd)
570{
571 return (struct isp1362_hcd *) (hcd->hcd_priv);
572}
573
574static inline struct usb_hcd *isp1362_hcd_to_hcd(struct isp1362_hcd *isp1362_hcd)
575{
576 return container_of((void *)isp1362_hcd, struct usb_hcd, hcd_priv);
577}
578
579#define frame_before(f1, f2) ((s16)((u16)f1 - (u16)f2) < 0)
580
581/*
582 * ISP1362 HW Interface
583 */
584
585#ifdef ISP1362_DEBUG
586#define DBG(level, fmt...) \
587 do { \
588 if (dbg_level > level) \
589 pr_debug(fmt); \
590 } while (0)
a9d43091
LW
591#else
592#define DBG(fmt...) do {} while (0)
a9d43091
LW
593#endif
594
595#ifdef VERBOSE
596# define VDBG(fmt...) DBG(3, fmt)
597#else
598# define VDBG(fmt...) do {} while (0)
599#endif
600
601#ifdef REGISTERS
602# define RDBG(fmt...) DBG(1, fmt)
603#else
604# define RDBG(fmt...) do {} while (0)
605#endif
606
607#ifdef URB_TRACE
608#define URB_DBG(fmt...) DBG(0, fmt)
609#else
610#define URB_DBG(fmt...) do {} while (0)
611#endif
612
613
614#if USE_PLATFORM_DELAY
615#if USE_NDELAY
616#error USE_PLATFORM_DELAY and USE_NDELAY defined simultaneously.
617#endif
618#define isp1362_delay(h, d) (h)->board->delay(isp1362_hcd_to_hcd(h)->self.controller, d)
619#elif USE_NDELAY
620#define isp1362_delay(h, d) ndelay(d)
621#else
622#define isp1362_delay(h, d) do {} while (0)
623#endif
624
625#define get_urb(ep) ({ \
626 BUG_ON(list_empty(&ep->hep->urb_list)); \
627 container_of(ep->hep->urb_list.next, struct urb, urb_list); \
628})
629
630/* basic access functions for ISP1362 chip registers */
631/* NOTE: The contents of the address pointer register cannot be read back! The driver must ensure,
632 * that all register accesses are performed with interrupts disabled, since the interrupt
633 * handler has no way of restoring the previous state.
634 */
635static void isp1362_write_addr(struct isp1362_hcd *isp1362_hcd, isp1362_reg_t reg)
636{
a9d43091 637 REG_ACCESS_TEST(reg);
a9d43091
LW
638 DUMMY_DELAY_ACCESS;
639 writew(ISP1362_REG_NO(reg), isp1362_hcd->addr_reg);
640 DUMMY_DELAY_ACCESS;
641 isp1362_delay(isp1362_hcd, 1);
642}
643
644static void isp1362_write_data16(struct isp1362_hcd *isp1362_hcd, u16 val)
645{
a9d43091
LW
646 DUMMY_DELAY_ACCESS;
647 writew(val, isp1362_hcd->data_reg);
648}
649
650static u16 isp1362_read_data16(struct isp1362_hcd *isp1362_hcd)
651{
652 u16 val;
653
a9d43091
LW
654 DUMMY_DELAY_ACCESS;
655 val = readw(isp1362_hcd->data_reg);
656
657 return val;
658}
659
660static void isp1362_write_data32(struct isp1362_hcd *isp1362_hcd, u32 val)
661{
a9d43091
LW
662#if USE_32BIT
663 DUMMY_DELAY_ACCESS;
664 writel(val, isp1362_hcd->data_reg);
665#else
666 DUMMY_DELAY_ACCESS;
667 writew((u16)val, isp1362_hcd->data_reg);
668 DUMMY_DELAY_ACCESS;
669 writew(val >> 16, isp1362_hcd->data_reg);
670#endif
671}
672
673static u32 isp1362_read_data32(struct isp1362_hcd *isp1362_hcd)
674{
675 u32 val;
676
a9d43091
LW
677#if USE_32BIT
678 DUMMY_DELAY_ACCESS;
679 val = readl(isp1362_hcd->data_reg);
680#else
681 DUMMY_DELAY_ACCESS;
682 val = (u32)readw(isp1362_hcd->data_reg);
683 DUMMY_DELAY_ACCESS;
684 val |= (u32)readw(isp1362_hcd->data_reg) << 16;
685#endif
686 return val;
687}
688
689/* use readsw/writesw to access the fifo whenever possible */
690/* assume HCDIRDATA or XFERCTR & addr_reg have been set up */
691static void isp1362_read_fifo(struct isp1362_hcd *isp1362_hcd, void *buf, u16 len)
692{
693 u8 *dp = buf;
694 u16 data;
695
696 if (!len)
697 return;
698
a9d43091
LW
699 RDBG("%s: Reading %d byte from fifo to mem @ %p\n", __func__, len, buf);
700#if USE_32BIT
701 if (len >= 4) {
702 RDBG("%s: Using readsl for %d dwords\n", __func__, len >> 2);
703 readsl(isp1362_hcd->data_reg, dp, len >> 2);
704 dp += len & ~3;
705 len &= 3;
706 }
707#endif
708 if (len >= 2) {
709 RDBG("%s: Using readsw for %d words\n", __func__, len >> 1);
710 insw((unsigned long)isp1362_hcd->data_reg, dp, len >> 1);
711 dp += len & ~1;
712 len &= 1;
713 }
714
715 BUG_ON(len & ~1);
716 if (len > 0) {
717 data = isp1362_read_data16(isp1362_hcd);
718 RDBG("%s: Reading trailing byte %02x to mem @ %08x\n", __func__,
719 (u8)data, (u32)dp);
720 *dp = (u8)data;
721 }
722}
723
724static void isp1362_write_fifo(struct isp1362_hcd *isp1362_hcd, void *buf, u16 len)
725{
726 u8 *dp = buf;
727 u16 data;
728
729 if (!len)
730 return;
731
b0a9cf29 732 if ((unsigned long)dp & 0x1) {
a9d43091
LW
733 /* not aligned */
734 for (; len > 1; len -= 2) {
735 data = *dp++;
736 data |= *dp++ << 8;
737 isp1362_write_data16(isp1362_hcd, data);
738 }
739 if (len)
740 isp1362_write_data16(isp1362_hcd, *dp);
741 return;
742 }
743
a9d43091
LW
744 RDBG("%s: Writing %d byte to fifo from memory @%p\n", __func__, len, buf);
745#if USE_32BIT
746 if (len >= 4) {
747 RDBG("%s: Using writesl for %d dwords\n", __func__, len >> 2);
748 writesl(isp1362_hcd->data_reg, dp, len >> 2);
749 dp += len & ~3;
750 len &= 3;
751 }
752#endif
753 if (len >= 2) {
754 RDBG("%s: Using writesw for %d words\n", __func__, len >> 1);
755 outsw((unsigned long)isp1362_hcd->data_reg, dp, len >> 1);
756 dp += len & ~1;
757 len &= 1;
758 }
759
760 BUG_ON(len & ~1);
761 if (len > 0) {
762 /* finally write any trailing byte; we don't need to care
763 * about the high byte of the last word written
764 */
765 data = (u16)*dp;
766 RDBG("%s: Sending trailing byte %02x from mem @ %08x\n", __func__,
767 data, (u32)dp);
768 isp1362_write_data16(isp1362_hcd, data);
769 }
770}
771
772#define isp1362_read_reg16(d, r) ({ \
773 u16 __v; \
774 REG_WIDTH_TEST(ISP1362_REG_##r, REG_WIDTH_16); \
775 isp1362_write_addr(d, ISP1362_REG_##r); \
776 __v = isp1362_read_data16(d); \
777 RDBG("%s: Read %04x from %s[%02x]\n", __func__, __v, #r, \
778 ISP1362_REG_NO(ISP1362_REG_##r)); \
779 __v; \
780})
781
782#define isp1362_read_reg32(d, r) ({ \
783 u32 __v; \
784 REG_WIDTH_TEST(ISP1362_REG_##r, REG_WIDTH_32); \
785 isp1362_write_addr(d, ISP1362_REG_##r); \
786 __v = isp1362_read_data32(d); \
787 RDBG("%s: Read %08x from %s[%02x]\n", __func__, __v, #r, \
788 ISP1362_REG_NO(ISP1362_REG_##r)); \
789 __v; \
790})
791
792#define isp1362_write_reg16(d, r, v) { \
793 REG_WIDTH_TEST(ISP1362_REG_##r, REG_WIDTH_16); \
794 isp1362_write_addr(d, (ISP1362_REG_##r) | ISP1362_REG_WRITE_OFFSET); \
795 isp1362_write_data16(d, (u16)(v)); \
796 RDBG("%s: Wrote %04x to %s[%02x]\n", __func__, (u16)(v), #r, \
797 ISP1362_REG_NO(ISP1362_REG_##r)); \
798}
799
800#define isp1362_write_reg32(d, r, v) { \
801 REG_WIDTH_TEST(ISP1362_REG_##r, REG_WIDTH_32); \
802 isp1362_write_addr(d, (ISP1362_REG_##r) | ISP1362_REG_WRITE_OFFSET); \
803 isp1362_write_data32(d, (u32)(v)); \
804 RDBG("%s: Wrote %08x to %s[%02x]\n", __func__, (u32)(v), #r, \
805 ISP1362_REG_NO(ISP1362_REG_##r)); \
806}
807
808#define isp1362_set_mask16(d, r, m) { \
809 u16 __v; \
810 __v = isp1362_read_reg16(d, r); \
811 if ((__v | m) != __v) \
812 isp1362_write_reg16(d, r, __v | m); \
813}
814
815#define isp1362_clr_mask16(d, r, m) { \
816 u16 __v; \
817 __v = isp1362_read_reg16(d, r); \
818 if ((__v & ~m) != __v) \
819 isp1362_write_reg16(d, r, __v & ~m); \
820}
821
822#define isp1362_set_mask32(d, r, m) { \
823 u32 __v; \
824 __v = isp1362_read_reg32(d, r); \
825 if ((__v | m) != __v) \
826 isp1362_write_reg32(d, r, __v | m); \
827}
828
829#define isp1362_clr_mask32(d, r, m) { \
830 u32 __v; \
831 __v = isp1362_read_reg32(d, r); \
832 if ((__v & ~m) != __v) \
833 isp1362_write_reg32(d, r, __v & ~m); \
834}
835
836#ifdef ISP1362_DEBUG
837#define isp1362_show_reg(d, r) { \
838 if ((ISP1362_REG_##r & REG_WIDTH_MASK) == REG_WIDTH_32) \
839 DBG(0, "%-12s[%02x]: %08x\n", #r, \
840 ISP1362_REG_NO(ISP1362_REG_##r), isp1362_read_reg32(d, r)); \
841 else \
842 DBG(0, "%-12s[%02x]: %04x\n", #r, \
843 ISP1362_REG_NO(ISP1362_REG_##r), isp1362_read_reg16(d, r)); \
844}
845#else
846#define isp1362_show_reg(d, r) do {} while (0)
847#endif
848
849static void __attribute__((__unused__)) isp1362_show_regs(struct isp1362_hcd *isp1362_hcd)
850{
851 isp1362_show_reg(isp1362_hcd, HCREVISION);
852 isp1362_show_reg(isp1362_hcd, HCCONTROL);
853 isp1362_show_reg(isp1362_hcd, HCCMDSTAT);
854 isp1362_show_reg(isp1362_hcd, HCINTSTAT);
855 isp1362_show_reg(isp1362_hcd, HCINTENB);
856 isp1362_show_reg(isp1362_hcd, HCFMINTVL);
857 isp1362_show_reg(isp1362_hcd, HCFMREM);
858 isp1362_show_reg(isp1362_hcd, HCFMNUM);
859 isp1362_show_reg(isp1362_hcd, HCLSTHRESH);
860 isp1362_show_reg(isp1362_hcd, HCRHDESCA);
861 isp1362_show_reg(isp1362_hcd, HCRHDESCB);
862 isp1362_show_reg(isp1362_hcd, HCRHSTATUS);
863 isp1362_show_reg(isp1362_hcd, HCRHPORT1);
864 isp1362_show_reg(isp1362_hcd, HCRHPORT2);
865
866 isp1362_show_reg(isp1362_hcd, HCHWCFG);
867 isp1362_show_reg(isp1362_hcd, HCDMACFG);
868 isp1362_show_reg(isp1362_hcd, HCXFERCTR);
869 isp1362_show_reg(isp1362_hcd, HCuPINT);
870
871 if (in_interrupt())
872 DBG(0, "%-12s[%02x]: %04x\n", "HCuPINTENB",
873 ISP1362_REG_NO(ISP1362_REG_HCuPINTENB), isp1362_hcd->irqenb);
874 else
875 isp1362_show_reg(isp1362_hcd, HCuPINTENB);
876 isp1362_show_reg(isp1362_hcd, HCCHIPID);
877 isp1362_show_reg(isp1362_hcd, HCSCRATCH);
878 isp1362_show_reg(isp1362_hcd, HCBUFSTAT);
879 isp1362_show_reg(isp1362_hcd, HCDIRADDR);
880 /* Access would advance fifo
881 * isp1362_show_reg(isp1362_hcd, HCDIRDATA);
882 */
883 isp1362_show_reg(isp1362_hcd, HCISTLBUFSZ);
884 isp1362_show_reg(isp1362_hcd, HCISTLRATE);
885 isp1362_show_reg(isp1362_hcd, HCINTLBUFSZ);
886 isp1362_show_reg(isp1362_hcd, HCINTLBLKSZ);
887 isp1362_show_reg(isp1362_hcd, HCINTLDONE);
888 isp1362_show_reg(isp1362_hcd, HCINTLSKIP);
889 isp1362_show_reg(isp1362_hcd, HCINTLLAST);
890 isp1362_show_reg(isp1362_hcd, HCINTLCURR);
891 isp1362_show_reg(isp1362_hcd, HCATLBUFSZ);
892 isp1362_show_reg(isp1362_hcd, HCATLBLKSZ);
893 /* only valid after ATL_DONE interrupt
894 * isp1362_show_reg(isp1362_hcd, HCATLDONE);
895 */
896 isp1362_show_reg(isp1362_hcd, HCATLSKIP);
897 isp1362_show_reg(isp1362_hcd, HCATLLAST);
898 isp1362_show_reg(isp1362_hcd, HCATLCURR);
899 isp1362_show_reg(isp1362_hcd, HCATLDTC);
900 isp1362_show_reg(isp1362_hcd, HCATLDTCTO);
901}
902
903static void isp1362_write_diraddr(struct isp1362_hcd *isp1362_hcd, u16 offset, u16 len)
904{
a9d43091
LW
905 len = (len + 1) & ~1;
906
907 isp1362_clr_mask16(isp1362_hcd, HCDMACFG, HCDMACFG_CTR_ENABLE);
908 isp1362_write_reg32(isp1362_hcd, HCDIRADDR,
909 HCDIRADDR_ADDR(offset) | HCDIRADDR_COUNT(len));
910}
911
912static void isp1362_read_buffer(struct isp1362_hcd *isp1362_hcd, void *buf, u16 offset, int len)
913{
a9d43091
LW
914 isp1362_write_diraddr(isp1362_hcd, offset, len);
915
b0a9cf29
MF
916 DBG(3, "%s: Reading %d byte from buffer @%04x to memory @ %p\n",
917 __func__, len, offset, buf);
a9d43091
LW
918
919 isp1362_write_reg16(isp1362_hcd, HCuPINT, HCuPINT_EOT);
a9d43091
LW
920
921 isp1362_write_addr(isp1362_hcd, ISP1362_REG_HCDIRDATA);
922
923 isp1362_read_fifo(isp1362_hcd, buf, len);
a9d43091 924 isp1362_write_reg16(isp1362_hcd, HCuPINT, HCuPINT_EOT);
a9d43091
LW
925}
926
927static void isp1362_write_buffer(struct isp1362_hcd *isp1362_hcd, void *buf, u16 offset, int len)
928{
a9d43091
LW
929 isp1362_write_diraddr(isp1362_hcd, offset, len);
930
b0a9cf29
MF
931 DBG(3, "%s: Writing %d byte to buffer @%04x from memory @ %p\n",
932 __func__, len, offset, buf);
a9d43091
LW
933
934 isp1362_write_reg16(isp1362_hcd, HCuPINT, HCuPINT_EOT);
a9d43091
LW
935
936 isp1362_write_addr(isp1362_hcd, ISP1362_REG_HCDIRDATA | ISP1362_REG_WRITE_OFFSET);
937 isp1362_write_fifo(isp1362_hcd, buf, len);
938
a9d43091 939 isp1362_write_reg16(isp1362_hcd, HCuPINT, HCuPINT_EOT);
a9d43091
LW
940}
941
942static void __attribute__((unused)) dump_data(char *buf, int len)
943{
944 if (dbg_level > 0) {
945 int k;
946 int lf = 0;
947
948 for (k = 0; k < len; ++k) {
949 if (!lf)
950 DBG(0, "%04x:", k);
951 printk(" %02x", ((u8 *) buf)[k]);
952 lf = 1;
953 if (!k)
954 continue;
955 if (k % 16 == 15) {
956 printk("\n");
957 lf = 0;
958 continue;
959 }
960 if (k % 8 == 7)
961 printk(" ");
962 if (k % 4 == 3)
963 printk(" ");
964 }
965 if (lf)
966 printk("\n");
967 }
968}
969
970#if defined(ISP1362_DEBUG) && defined(PTD_TRACE)
971
972static void dump_ptd(struct ptd *ptd)
973{
974 DBG(0, "EP %p: CC=%x EP=%d DIR=%x CNT=%d LEN=%d MPS=%d TGL=%x ACT=%x FA=%d SPD=%x SF=%x PR=%x LST=%x\n",
975 container_of(ptd, struct isp1362_ep, ptd),
976 PTD_GET_CC(ptd), PTD_GET_EP(ptd), PTD_GET_DIR(ptd),
977 PTD_GET_COUNT(ptd), PTD_GET_LEN(ptd), PTD_GET_MPS(ptd),
978 PTD_GET_TOGGLE(ptd), PTD_GET_ACTIVE(ptd), PTD_GET_FA(ptd),
979 PTD_GET_SPD(ptd), PTD_GET_SF_INT(ptd), PTD_GET_PR(ptd), PTD_GET_LAST(ptd));
980 DBG(0, " %04x %04x %04x %04x\n", ptd->count, ptd->mps, ptd->len, ptd->faddr);
981}
982
983static void dump_ptd_out_data(struct ptd *ptd, u8 *buf)
984{
985 if (dbg_level > 0) {
986 if (PTD_GET_DIR(ptd) != PTD_DIR_IN && PTD_GET_LEN(ptd)) {
987 DBG(0, "--out->\n");
988 dump_data(buf, PTD_GET_LEN(ptd));
989 }
990 }
991}
992
993static void dump_ptd_in_data(struct ptd *ptd, u8 *buf)
994{
995 if (dbg_level > 0) {
996 if (PTD_GET_DIR(ptd) == PTD_DIR_IN && PTD_GET_COUNT(ptd)) {
997 DBG(0, "<--in--\n");
998 dump_data(buf, PTD_GET_COUNT(ptd));
999 }
1000 DBG(0, "-----\n");
1001 }
1002}
1003
1004static void dump_ptd_queue(struct isp1362_ep_queue *epq)
1005{
1006 struct isp1362_ep *ep;
1007 int dbg = dbg_level;
1008
1009 dbg_level = 1;
1010 list_for_each_entry(ep, &epq->active, active) {
1011 dump_ptd(&ep->ptd);
1012 dump_data(ep->data, ep->length);
1013 }
1014 dbg_level = dbg;
1015}
1016#else
1017#define dump_ptd(ptd) do {} while (0)
1018#define dump_ptd_in_data(ptd, buf) do {} while (0)
1019#define dump_ptd_out_data(ptd, buf) do {} while (0)
1020#define dump_ptd_data(ptd, buf) do {} while (0)
1021#define dump_ptd_queue(epq) do {} while (0)
1022#endif
This page took 0.36237 seconds and 5 git commands to generate.