]> git.lizzy.rs Git - plan9front.git/blob - sys/src/9/port/usbehci.c
usbehci: remove panic() calls from interrupts if stuff isnt ready (spurious interrupts?)
[plan9front.git] / sys / src / 9 / port / usbehci.c
1 /*
2  * USB Enhanced Host Controller Interface (EHCI) driver
3  * High speed USB 2.0.
4  *
5  * Note that all of our unlock routines call coherence.
6  *
7  * BUGS:
8  * - Too many delays and ilocks.
9  * - bandwidth admission control must be done per-frame.
10  * - requires polling (some controllers miss interrupts).
11  * - must warn of power overruns.
12  */
13
14 #include        "u.h"
15 #include        "../port/lib.h"
16 #include        "mem.h"
17 #include        "dat.h"
18 #include        "fns.h"
19 #include        "io.h"
20 #include        "../port/error.h"
21 #include        "../port/usb.h"
22 #include        "usbehci.h"
23 #include        "uncached.h"
24
25 #define diprint         if(ehcidebug || iso->debug)print
26 #define ddiprint        if(ehcidebug>1 || iso->debug>1)print
27 #define dqprint         if(ehcidebug || (qh->io && qh->io->debug))print
28 #define ddqprint        if(ehcidebug>1 || (qh->io && qh->io->debug>1))print
29
30 #define TRUNC(x, sz)    ((x) & ((sz)-1))
31 #define LPTR(q)         ((ulong*)KADDR((q) & ~0x1F))
32
33 typedef struct Ctlio Ctlio;
34 typedef union Ed Ed;
35 typedef struct Edpool Edpool;
36 typedef struct Itd Itd;
37 typedef struct Qio Qio;
38 typedef struct Qtd Qtd;
39 typedef struct Sitd Sitd;
40 typedef struct Td Td;
41
42 /*
43  * EHCI interface registers and bits
44  */
45 enum
46 {
47         /* Queue states (software) */
48         Qidle           = 0,
49         Qinstall,
50         Qrun,
51         Qdone,
52         Qclose,
53         Qfree,
54
55         Enabledelay     = 100,          /* waiting for a port to enable */
56         Abortdelay      = 5,            /* delay after cancelling Tds (ms) */
57
58         Incr            = 64,           /* for pools of Tds, Qhs, etc. */
59         Align           = 128,          /* in bytes for all those descriptors */
60
61         /* Keep them as a power of 2, lower than ctlr->nframes */
62         /* Also, keep Nisoframes >= Nintrleafs */
63         Nintrleafs      = 32,           /* nb. of leaf frames in intr. tree */
64         Nisoframes      = 64,           /* nb. of iso frames (in window) */
65
66         /*
67          * HW constants
68          */
69
70         /* Itd bits (csw[]) */
71         Itdactive       = 0x80000000,   /* execution enabled */
72         Itddberr        = 0x40000000,   /* data buffer error */
73         Itdbabble       = 0x20000000,   /* babble error */
74         Itdtrerr        = 0x10000000,   /* transaction error */
75         Itdlenshift     = 16,           /* transaction length */
76         Itdlenmask      = 0xFFF,
77         Itdioc          = 0x00008000,   /* interrupt on complete */
78         Itdpgshift      = 12,           /* page select field */
79         Itdoffshift     = 0,            /* transaction offset */
80         /* Itd bits, buffer[] */
81         Itdepshift      = 8,            /* endpoint address (buffer[0]) */
82         Itddevshift     = 0,            /* device address (buffer[0]) */
83         Itdin           = 0x800,        /* is input (buffer[1]) */
84         Itdout          = 0,
85         Itdmaxpktshift  = 0,            /* max packet (buffer[1]) */
86         Itdntdsshift    = 0,            /* nb. of tds per µframe (buffer[2]) */
87
88         Itderrors       = Itddberr|Itdbabble|Itdtrerr,
89
90         /* Sitd bits (epc) */
91         Stdin           = 0x80000000,   /* input direction */
92         Stdportshift    = 24,           /* hub port number */
93         Stdhubshift     = 16,           /* hub address */
94         Stdepshift      = 8,            /* endpoint address */
95         Stddevshift     = 0,            /* device address */
96         /* Sitd bits (mfs) */
97         Stdssmshift     = 0,            /* split start mask */
98         Stdscmshift     = 8,            /* split complete mask */
99         /* Sitd bits (csw) */
100         Stdioc          = 0x80000000,   /* interrupt on complete */
101         Stdpg           = 0x40000000,   /* page select */
102         Stdlenshift     = 16,           /* total bytes to transfer */
103         Stdlenmask      = 0x3FF,
104         Stdactive       = 0x00000080,   /* active */
105         Stderr          = 0x00000040,   /* tr. translator error */
106         Stddberr        = 0x00000020,   /* data buffer error */
107         Stdbabble       = 0x00000010,   /* babble error */
108         Stdtrerr        = 0x00000008,   /* transaction error */
109         Stdmmf          = 0x00000004,   /* missed µframe */
110         Stddcs          = 0x00000002,   /* do complete split */
111
112         Stderrors       = Stderr|Stddberr|Stdbabble|Stdtrerr|Stdmmf,
113
114         /* Sitd bits buffer[1] */
115         Stdtpall        = 0x00000000,   /* all payload here (188 bytes) */
116         Stdtpbegin      = 0x00000008,   /* first payload for fs trans. */
117         Stdtcntmask     = 0x00000007,   /* T-count */
118
119         /* Td bits (csw) */
120         Tddata1         = 0x80000000,   /* data toggle 1 */
121         Tddata0         = 0x00000000,   /* data toggle 0 */
122         Tdlenshift      = 16,           /* total bytes to transfer */
123         Tdlenmask       = 0x7FFF,
124         Tdmaxpkt        = 0x5000,       /* max buffer for a Td */
125         Tdioc           = 0x00008000,   /* interrupt on complete */
126         Tdpgshift       = 12,           /* current page */
127         Tdpgmask        = 7,
128         Tderr1          = 0x00000400,   /* bit 0 of error counter */
129         Tderr2          = 0x00000800,   /* bit 1 of error counter */
130         Tdtokout        = 0x00000000,   /* direction out */
131         Tdtokin         = 0x00000100,   /* direction in */
132         Tdtoksetup      = 0x00000200,   /* setup packet */
133         Tdtok           = 0x00000300,   /* token bits */
134         Tdactive                = 0x00000080,   /* active */
135         Tdhalt          = 0x00000040,   /* halted */
136         Tddberr         = 0x00000020,   /* data buffer error */
137         Tdbabble        = 0x00000010,   /* babble error */
138         Tdtrerr         = 0x00000008,   /* transaction error */
139         Tdmmf           = 0x00000004,   /* missed µframe */
140         Tddcs           = 0x00000002,   /* do complete split */
141         Tdping          = 0x00000001,   /* do ping */
142
143         Tderrors        = Tdhalt|Tddberr|Tdbabble|Tdtrerr|Tdmmf,
144
145         /* Qh bits (eps0) */
146         Qhrlcmask       = 0xF,          /* nak reload count */
147         Qhrlcshift      = 28,           /* nak reload count */
148         Qhnhctl         = 0x08000000,   /* not-high speed ctl */
149         Qhmplmask       = 0x7FF,        /* max packet */
150         Qhmplshift      = 16,
151         Qhhrl           = 0x00008000,   /* head of reclamation list */
152         Qhdtc           = 0x00004000,   /* data toggle ctl. */
153         Qhint           = 0x00000080,   /* inactivate on next transition */
154         Qhspeedmask     = 0x00003000,   /* speed bits */
155         Qhfull          = 0x00000000,   /* full speed */
156         Qhlow           = 0x00001000,   /* low speed */
157         Qhhigh          = 0x00002000,   /* high speed */
158
159         /* Qh bits (eps1) */
160         Qhmultshift     = 30,           /* multiple tds per µframe */
161         Qhmultmask      = 3,
162         Qhportshift     = 23,           /* hub port number */
163         Qhhubshift      = 16,           /* hub address */
164         Qhscmshift      = 8,            /* split completion mask bits */
165         Qhismshift      = 0,            /* interrupt sched. mask bits */
166 };
167
168 /*
169  * Endpoint tree (software)
170  */
171 struct Qtree
172 {
173         int     nel;
174         int     depth;
175         ulong*  bw;
176         Qh**    root;
177 };
178
179 /*
180  * One per endpoint per direction, to control I/O.
181  */
182 struct Qio
183 {
184         QLock;                  /* for the entire I/O process */
185         Rendez;                 /* wait for completion */
186         Qh*     qh;             /* Td list (field const after init) */
187         int     usbid;          /* usb address for endpoint/device */
188         int     toggle;         /* Tddata0/Tddata1 */
189         int     tok;            /* Tdtoksetup, Tdtokin, Tdtokout */
190         ulong   iotime;         /* last I/O time; to hold interrupt polls */
191         int     debug;          /* debug flag from the endpoint */
192         char*   err;            /* error string */
193         char*   tag;            /* debug (no room in Qh for this) */
194         ulong   bw;
195 };
196
197 struct Ctlio
198 {
199         Qio;                    /* a single Qio for each RPC */
200         uchar*  data;           /* read from last ctl req. */
201         int     ndata;          /* number of bytes read */
202 };
203
204 struct Isoio
205 {
206         QLock;
207         Rendez;                 /* wait for space/completion/errors */
208         int     usbid;          /* address used for device/endpoint */
209         int     tok;            /* Tdtokin or Tdtokout */
210         int     state;          /* Qrun -> Qdone -> Qrun... -> Qclose */
211         int     nframes;        /* number of frames ([S]Itds) used */
212         uchar*  data;           /* iso data buffers if not embedded */
213         char*   err;            /* error string */
214         int     nerrs;          /* nb of consecutive I/O errors */
215         ulong   maxsize;        /* ntds * ep->maxpkt */
216         long    nleft;          /* number of bytes left from last write */
217         int     debug;          /* debug flag from the endpoint */
218         int     delay;          /* max number of bytes to buffer */
219         int     hs;             /* is high speed? */
220         Isoio*  next;           /* in list of active Isoios */
221         ulong   td0frno;        /* first frame used in ctlr */
222         union{
223                 Itd*    tdi;    /* next td processed by interrupt */
224                 Sitd*   stdi;
225         };
226         union{
227                 Itd*    tdu;    /* next td for user I/O in tdps */
228                 Sitd*   stdu;
229         };
230         union{
231                 Itd**   itdps;  /* itdps[i]: ptr to Itd for i-th frame or nil */
232                 Sitd**  sitdps; /* sitdps[i]: ptr to Sitd for i-th frame or nil */
233                 ulong** tdps;   /* same thing, as seen by hw */
234         };
235 };
236
237 struct Edpool
238 {
239         Lock;
240         Ed*     free;
241         int     nalloc;
242         int     ninuse;
243         int     nfree;
244 };
245
246 /*
247  * We use the 64-bit version for Itd, Sitd, Td, and Qh.
248  * If the ehci is 64-bit capable it assumes we are using those
249  * structures even when the system is 32 bits.
250  */
251
252 /*
253  * Iso transfer descriptor.  hw: 92 bytes, 108 bytes total
254  * aligned to 32.
255  */
256 struct Itd
257 {
258         ulong   link;           /* to next hw struct */
259         ulong   csw[8];         /* sts/length/pg/off. updated by hw */
260         ulong   buffer[7];      /* buffer pointers, addrs, maxsz */
261         ulong   xbuffer[7];     /* high 32 bits of buffer for 64-bits */
262
263         ulong   _pad0;          /* pad to next cache line */
264         /* cache-line boundary here */
265
266         /* software */
267         Itd*    next;
268         ulong   ndata;          /* number of bytes in data */
269         ulong   mdata;          /* max number of bytes in data */
270         uchar*  data;
271 };
272
273 /*
274  * Split transaction iso transfer descriptor.
275  * hw: 36 bytes, 52 bytes total. aligned to 32.
276  */
277 struct Sitd
278 {
279         ulong   link;           /* to next hw struct */
280         ulong   epc;            /* static endpoint state. addrs */
281         ulong   mfs;            /* static endpoint state. µ-frame sched. */
282         ulong   csw;            /* transfer state. updated by hw */
283         ulong   buffer[2];      /* buf. ptr/offset. offset updated by hw */
284                                 /* buf ptr/TP/Tcnt. TP/Tcnt updated by hw */
285         ulong   blink;          /* back pointer */
286         /* cache-line boundary after xbuffer[0] */
287         ulong   xbuffer[2];     /* high 32 bits of buffer for 64-bits */
288
289         /* software */
290         Sitd*   next;
291         ulong   ndata;          /* number of bytes in data */
292         ulong   mdata;          /* max number of bytes in data */
293         uchar*  data;
294 };
295
296 /*
297  * Queue element transfer descriptor.
298  * hw: first 52 bytes, total 68+sbuff bytes.  aligned to 32 bytes.
299  */
300 struct Td
301 {
302         ulong   nlink;          /* to next Td */
303         ulong   alink;          /* alternate link to next Td */
304         ulong   csw;            /* cmd/sts. updated by hw */
305         ulong   buffer[5];      /* buf ptrs. offset updated by hw */
306         /* cache-line boundary here */
307         ulong   xbuffer[5];     /* high 32 bits of buffer for 64-bits */
308
309         /* software */
310         Td*     next;           /* in qh or Isoio or free list */
311         ulong   ndata;          /* bytes available/used at data */
312         uchar*  data;           /* pointer to actual data */
313         uchar*  buff;           /* allocated data buffer or nil */
314         uchar   sbuff[1];       /* first byte of embedded buffer */
315 };
316
317 /*
318  * Queue head. Aligned to 32 bytes.
319  * hw: first 68 bytes, 92 total.
320  */
321 struct Qh
322 {
323         ulong   link;           /* to next Qh in round robin */
324         ulong   eps0;           /* static endpoint state. addrs */
325         ulong   eps1;           /* static endpoint state. µ-frame sched. */
326
327         /* updated by hw */
328         ulong   tclink;         /* current Td (No Term bit here!) */
329         ulong   nlink;          /* to next Td */
330         ulong   alink;          /* alternate link to next Td */
331         ulong   csw;            /* cmd/sts. updated by hw */
332         /* cache-line boundary after buffer[0] */
333         ulong   buffer[5];      /* buf ptrs. offset updated by hw */
334         ulong   xbuffer[5];     /* high 32 bits of buffer for 64-bits */
335
336         /* software */
337         Qh*     next;           /* in controller list/tree of Qhs */
338         int     state;          /* Qidle -> Qinstall -> Qrun -> Qdone | Qclose */
339         Qio*    io;             /* for this queue */
340         Td*     tds;            /* for this queue */
341         int     sched;          /* slot for for intr. Qhs */
342         Qh*     inext;          /* next in list of intr. qhs */
343 };
344
345 /*
346  * We can avoid frame span traversal nodes if we don't span frames.
347  * Just schedule transfers that can fit on the current frame and
348  * wait a little bit otherwise.
349  */
350
351 /*
352  * Software. Ehci descriptors provided by pool.
353  * There are soo few because we avoid using Fstn.
354  */
355 union Ed
356 {
357         Ed*     next;           /* in free list */
358         Qh      qh;
359         Td      td;
360         Itd     itd;
361         Sitd    sitd;
362         uchar   align[Align];
363 };
364
365 int ehcidebug;
366
367 static Edpool edpool;
368 static char Ebug[] = "not yet implemented";
369 static char* qhsname[] = { "idle", "install", "run", "done", "close", "FREE" };
370
371 Ecapio* ehcidebugcapio;
372 int ehcidebugport;
373
374 void
375 ehcirun(Ctlr *ctlr, int on)
376 {
377         int i;
378         Eopio *opio;
379
380         ddprint("ehci %#p %s\n", ctlr->capio, on ? "starting" : "halting");
381         opio = ctlr->opio;
382         if(on)
383                 opio->cmd |= Crun;
384         else
385                 opio->cmd = Cstop;
386         coherence();
387         for(i = 0; i < 100; i++)
388                 if(on == 0 && (opio->sts & Shalted) != 0)
389                         break;
390                 else if(on != 0 && (opio->sts & Shalted) == 0)
391                         break;
392                 else
393                         delay(1);
394         if(i == 100)
395                 print("ehci %#p %s cmd timed out\n",
396                         ctlr->capio, on ? "run" : "halt");
397         ddprint("ehci %#p cmd %#lux sts %#lux\n",
398                 ctlr->capio, opio->cmd, opio->sts);
399 }
400
401 static void*
402 edalloc(void)
403 {
404         Ed *ed, *pool;
405         int i;
406
407         lock(&edpool);
408         if(edpool.free == nil){
409                 pool = xspanalloc(Incr*sizeof(Ed), Align, 0);
410                 if(pool == nil)
411                         panic("edalloc");
412                 for(i=Incr; --i>=0;){
413                         pool[i].next = edpool.free;
414                         edpool.free = &pool[i];
415                 }
416                 edpool.nalloc += Incr;
417                 edpool.nfree += Incr;
418                 dprint("ehci: edalloc: %d eds\n", edpool.nalloc);
419         }
420         ed = edpool.free;
421         edpool.free = ed->next;
422         edpool.ninuse++;
423         edpool.nfree--;
424         unlock(&edpool);
425
426         memset(ed, 0, sizeof(Ed));      /* safety */
427         assert(((ulong)ed & 0xF) == 0);
428         return ed;
429 }
430
431 static void
432 edfree(void *a)
433 {
434         Ed *ed;
435
436         ed = a;
437         lock(&edpool);
438         ed->next = edpool.free;
439         edpool.free = ed;
440         edpool.ninuse--;
441         edpool.nfree++;
442         unlock(&edpool);
443 }
444
445 /*
446  * Allocate and do some initialization.
447  * Free after releasing buffers used.
448  */
449
450 static Itd*
451 itdalloc(void)
452 {
453         Itd *td;
454
455         td = edalloc();
456         td->link = Lterm;
457         return td;
458 }
459
460 static void
461 itdfree(Itd *td)
462 {
463         edfree(td);
464 }
465
466 static Sitd*
467 sitdalloc(void)
468 {
469         Sitd *td;
470
471         td = edalloc();
472         td->link = td->blink = Lterm;
473         return td;
474 }
475
476 static void
477 sitdfree(Sitd *td)
478 {
479         edfree(td);
480 }
481
482 static Td*
483 tdalloc(void)
484 {
485         Td *td;
486
487         td = edalloc();
488         td->nlink = td->alink = Lterm;
489         return td;
490 }
491
492 static void
493 tdfree(Td *td)
494 {
495         if(td == nil)
496                 return;
497         free(td->buff);
498         edfree(td);
499 }
500
501 static void
502 tdlinktd(Td *td, Td *next)
503 {
504         td->next = next;
505         td->alink = Lterm;
506         if(next == nil)
507                 td->nlink = Lterm;
508         else
509                 td->nlink = PADDR(next);
510         coherence();
511 }
512
513 static Qh*
514 qhlinkqh(Qh *qh, Qh *next)
515 {
516         qh->next = next;
517         if(next == nil)
518                 qh->link = Lterm;
519         else
520                 qh->link = PADDR(next)|Lqh;
521         coherence();
522         return qh;
523 }
524
525 static void
526 qhsetaddr(Qh *qh, ulong addr)
527 {
528         ulong eps0;
529
530         eps0 = qh->eps0 & ~((Epmax<<8)|Devmax);
531         qh->eps0 = eps0 | addr & Devmax | ((addr >> 7) & Epmax) << 8;
532         coherence();
533 }
534
535 /*
536  * return smallest power of 2 <= n
537  */
538 static int
539 flog2lower(int n)
540 {
541         int i;
542
543         for(i = 0; (1 << (i + 1)) <= n; i++)
544                 ;
545         return i;
546 }
547
548 static int
549 pickschedq(Qtree *qt, int pollival, ulong bw, ulong limit)
550 {
551         int i, j, d, upperb, q;
552         ulong best, worst, total;
553
554         d = flog2lower(pollival);
555         if(d > qt->depth)
556                 d = qt->depth;
557         q = -1;
558         worst = 0;
559         best = ~0;
560         upperb = (1 << (d+1)) - 1;
561         for(i = (1 << d) - 1; i < upperb; i++){
562                 total = qt->bw[0];
563                 for(j = i; j > 0; j = (j - 1) / 2)
564                         total += qt->bw[j];
565                 if(total < best){
566                         best = total;
567                         q = i;
568                 }
569                 if(total > worst)
570                         worst = total;
571         }
572         if(worst + bw >= limit)
573                 return -1;
574         return q;
575 }
576
577 static int
578 schedq(Ctlr *ctlr, Qh *qh, int pollival)
579 {
580         int q;
581         Qh *tqh;
582         ulong bw;
583
584         bw = qh->io->bw;
585         q = pickschedq(ctlr->tree, pollival, 0, ~0);
586         ddqprint("ehci: sched %#p q %d, ival %d, bw %uld\n",
587                 qh->io, q, pollival, bw);
588         if(q < 0){
589                 print("ehci: no room for ed\n");
590                 return -1;
591         }
592         ctlr->tree->bw[q] += bw;
593         tqh = ctlr->tree->root[q];
594         qh->sched = q;
595         qhlinkqh(qh, tqh->next);
596         qhlinkqh(tqh, qh);
597         coherence();
598         qh->inext = ctlr->intrqhs;
599         ctlr->intrqhs = qh;
600         coherence();
601         return 0;
602 }
603
604 static void
605 unschedq(Ctlr *ctlr, Qh *qh)
606 {
607         int q;
608         Qh *prev, *this, *next;
609         Qh **l;
610         ulong bw;
611
612         bw = qh->io->bw;
613         q = qh->sched;
614         if(q < 0)
615                 return;
616         ctlr->tree->bw[q] -= bw;
617
618         prev = ctlr->tree->root[q];
619         this = prev->next;
620         while(this != nil && this != qh){
621                 prev = this;
622                 this = this->next;
623         }
624         if(this == nil)
625                 print("ehci: unschedq %d: not found\n", q);
626         else{
627                 next = this->next;
628                 qhlinkqh(prev, next);
629         }
630         for(l = &ctlr->intrqhs; *l != nil; l = &(*l)->inext)
631                 if(*l == qh){
632                         *l = (*l)->inext;
633                         return;
634                 }
635         print("ehci: unschedq: qh %#p not found\n", qh);
636 }
637
638 static ulong
639 qhmaxpkt(Qh *qh)
640 {
641         return (qh->eps0 >> Qhmplshift) & Qhmplmask;
642 }
643
644 static void
645 qhsetmaxpkt(Qh *qh, int maxpkt)
646 {
647         ulong eps0;
648
649         eps0 = qh->eps0 & ~(Qhmplmask << Qhmplshift);
650         qh->eps0 = eps0 | (maxpkt & Qhmplmask) << Qhmplshift;
651         coherence();
652 }
653
654 /*
655  * Initialize the round-robin circular list of ctl/bulk Qhs
656  * if ep is nil. Otherwise, allocate and link a new Qh in the ctlr.
657  */
658 static Qh*
659 qhalloc(Ctlr *ctlr, Ep *ep, Qio *io, char* tag)
660 {
661         Qh *qh;
662         int ttype;
663
664         qh = edalloc();
665         qh->nlink = Lterm;
666         qh->alink = Lterm;
667         qh->csw = Tdhalt;
668         qh->state = Qidle;
669         qh->sched = -1;
670         qh->io = io;
671         if(ep != nil){
672                 qh->eps0 = 0;
673                 qhsetmaxpkt(qh, ep->maxpkt);
674                 if(ep->dev->speed == Lowspeed)
675                         qh->eps0 |= Qhlow;
676                 if(ep->dev->speed == Highspeed)
677                         qh->eps0 |= Qhhigh;
678                 else if(ep->ttype == Tctl)
679                         qh->eps0 |= Qhnhctl;
680                 qh->eps0 |= Qhdtc | 8 << Qhrlcshift;    /* 8 naks max */
681                 coherence();
682                 qhsetaddr(qh, io->usbid);
683                 qh->eps1 = (ep->ntds & Qhmultmask) << Qhmultshift;
684                 qh->eps1 |= ep->dev->port << Qhportshift;
685                 qh->eps1 |= ep->dev->hub << Qhhubshift;
686                 qh->eps1 |= 034 << Qhscmshift;
687                 if(ep->ttype == Tintr)
688                         qh->eps1 |= 1 << Qhismshift;    /* intr. start µf. */
689                 coherence();
690                 if(io != nil)
691                         io->tag = tag;
692         }
693         ilock(ctlr);
694         ttype = Tctl;
695         if(ep != nil)
696                 ttype = ep->ttype;
697         switch(ttype){
698         case Tctl:
699         case Tbulk:
700                 if(ctlr->qhs == nil){
701                         ctlr->qhs = qhlinkqh(qh, qh);
702                         qh->eps0 |= Qhhigh | Qhhrl;
703                         coherence();
704                         ctlr->opio->link = PADDR(qh)|Lqh;
705                         coherence();
706                 }else{
707                         qhlinkqh(qh, ctlr->qhs->next);
708                         qhlinkqh(ctlr->qhs, qh);
709                 }
710                 break;
711         case Tintr:
712                 schedq(ctlr, qh, ep->pollival);
713                 break;
714         default:
715                 print("ehci: qhalloc called for ttype != ctl/bulk\n");
716         }
717         iunlock(ctlr);
718         return qh;
719 }
720
721 static int
722 qhadvanced(void *a)
723 {
724         Ctlr *ctlr;
725
726         ctlr = a;
727         return (ctlr->opio->cmd & Ciasync) == 0;
728 }
729
730 /*
731  * called when a qh is removed, to be sure the hw is not
732  * keeping pointers into it.
733  */
734 static void
735 qhcoherency(Ctlr *ctlr)
736 {
737         int i;
738
739         qlock(&ctlr->portlck);
740         ctlr->opio->cmd |= Ciasync;     /* ask for intr. on async advance */
741         coherence();
742         for(i = 0; i < 3 && qhadvanced(ctlr) == 0; i++)
743                 if(!waserror()){
744                         tsleep(ctlr, qhadvanced, ctlr, Abortdelay);
745                         poperror();
746                 }
747         dprint("ehci: qhcoherency: doorbell %d\n", qhadvanced(ctlr));
748         if(i == 3)
749                 print("ehci: async advance doorbell did not ring\n");
750         ctlr->opio->cmd &= ~Ciasync;    /* try to clean */
751         qunlock(&ctlr->portlck);
752 }
753
754 static void
755 qhfree(Ctlr *ctlr, Qh *qh)
756 {
757         Td *td, *ltd;
758         Qh *q;
759
760         if(qh == nil)
761                 return;
762         ilock(ctlr);
763         if(qh->sched < 0){
764                 for(q = ctlr->qhs; q != nil; q = q->next)
765                         if(q->next == qh)
766                                 break;
767                 if(q == nil)
768                         panic("qhfree: nil q");
769                 q->next = qh->next;
770                 q->link = qh->link;
771                 coherence();
772         }else
773                 unschedq(ctlr, qh);
774         iunlock(ctlr);
775
776         qhcoherency(ctlr);
777
778         for(td = qh->tds; td != nil; td = ltd){
779                 ltd = td->next;
780                 tdfree(td);
781         }
782
783         edfree(qh);
784 }
785
786 static void
787 qhlinktd(Qh *qh, Td *td)
788 {
789         ulong csw;
790         int i;
791
792         csw = qh->csw;
793         qh->tds = td;
794         if(td == nil)
795                 qh->csw = (csw & ~Tdactive) | Tdhalt;
796         else{
797                 csw &= Tddata1 | Tdping;        /* save */
798                 qh->csw = Tdhalt;
799                 coherence();
800                 qh->tclink = 0;
801                 qh->alink = Lterm;
802                 qh->nlink = PADDR(td);
803                 for(i = 0; i < nelem(qh->buffer); i++)
804                         qh->buffer[i] = 0;
805                 coherence();
806                 qh->csw = csw & ~(Tdhalt|Tdactive);     /* activate next */
807         }
808         coherence();
809 }
810
811 static char*
812 seprintlink(char *s, char *se, char *name, ulong l, int typed)
813 {
814         s = seprint(s, se, "%s %ulx", name, l);
815         if((l & Lterm) != 0)
816                 return seprint(s, se, "T");
817         if(typed == 0)
818                 return s;
819         switch(l & (3<<1)){
820         case Litd:
821                 return seprint(s, se, "I");
822         case Lqh:
823                 return seprint(s, se, "Q");
824         case Lsitd:
825                 return seprint(s, se, "S");
826         default:
827                 return seprint(s, se, "F");
828         }
829 }
830
831 static char*
832 seprintitd(char *s, char *se, Itd *td)
833 {
834         int i;
835         ulong b0, b1;
836         char flags[6];
837         char *rw;
838
839         if(td == nil)
840                 return seprint(s, se, "<nil itd>\n");
841         b0 = td->buffer[0];
842         b1 = td->buffer[1];
843
844         s = seprint(s, se, "itd %#p", td);
845         rw = (b1 & Itdin) ? "in" : "out";
846         s = seprint(s, se, " %s ep %uld dev %uld max %uld mult %uld",
847                 rw, (b0>>8)&Epmax, (b0&Devmax),
848                 td->buffer[1] & 0x7ff, b1 & 3);
849         s = seprintlink(s, se, " link", td->link, 1);
850         s = seprint(s, se, "\n");
851         for(i = 0; i < nelem(td->csw); i++){
852                 memset(flags, '-', 5);
853                 if((td->csw[i] & Itdactive) != 0)
854                         flags[0] = 'a';
855                 if((td->csw[i] & Itdioc) != 0)
856                         flags[1] = 'i';
857                 if((td->csw[i] & Itddberr) != 0)
858                         flags[2] = 'd';
859                 if((td->csw[i] & Itdbabble) != 0)
860                         flags[3] = 'b';
861                 if((td->csw[i] & Itdtrerr) != 0)
862                         flags[4] = 't';
863                 flags[5] = 0;
864                 s = seprint(s, se, "\ttd%d %s", i, flags);
865                 s = seprint(s, se, " len %uld", (td->csw[i] >> 16) & 0x7ff);
866                 s = seprint(s, se, " pg %uld", (td->csw[i] >> 12) & 0x7);
867                 s = seprint(s, se, " off %uld\n", td->csw[i] & 0xfff);
868         }
869         s = seprint(s, se, "\tbuffs:");
870         for(i = 0; i < nelem(td->buffer); i++)
871                 s = seprint(s, se, " %#lux", td->buffer[i] >> 12);
872         return seprint(s, se, "\n");
873 }
874
875 static char*
876 seprintsitd(char *s, char *se, Sitd *td)
877 {
878         char rw, pg, ss;
879         char flags[8];
880         static char pc[4] = { 'a', 'b', 'm', 'e' };
881
882         if(td == nil)
883                 return seprint(s, se, "<nil sitd>\n");
884         s = seprint(s, se, "sitd %#p", td);
885         rw = (td->epc & Stdin) ? 'r' : 'w';
886         s = seprint(s, se, " %c ep %uld dev %uld",
887                 rw, (td->epc>>8)&0xf, td->epc&0x7f);
888         s = seprint(s, se, " max %uld", (td->csw >> 16) & 0x3ff);
889         s = seprint(s, se, " hub %uld", (td->epc >> 16) & 0x7f);
890         s = seprint(s, se, " port %uld\n", (td->epc >> 24) & 0x7f);
891         memset(flags, '-', 7);
892         if((td->csw & Stdactive) != 0)
893                 flags[0] = 'a';
894         if((td->csw & Stdioc) != 0)
895                 flags[1] = 'i';
896         if((td->csw & Stderr) != 0)
897                 flags[2] = 'e';
898         if((td->csw & Stddberr) != 0)
899                 flags[3] = 'd';
900         if((td->csw & Stdbabble) != 0)
901                 flags[4] = 'b';
902         if((td->csw & Stdtrerr) != 0)
903                 flags[5] = 't';
904         if((td->csw & Stdmmf) != 0)
905                 flags[6] = 'n';
906         flags[7] = 0;
907         ss = (td->csw & Stddcs) ? 'c' : 's';
908         pg = (td->csw & Stdpg) ? '1' : '0';
909         s = seprint(s, se, "\t%s %cs pg%c", flags, ss, pg);
910         s = seprint(s, se, " b0 %#lux b1 %#lux off %uld\n",
911                 td->buffer[0] >> 12, td->buffer[1] >> 12, td->buffer[0] & 0xfff);
912         s = seprint(s, se, "\ttpos %c tcnt %uld",
913                 pc[(td->buffer[0]>>3)&3], td->buffer[1] & 7);
914         s = seprint(s, se, " ssm %#lux csm %#lux cspm %#lux",
915                 td->mfs & 0xff, (td->mfs>>8) & 0xff, (td->csw>>8) & 0xff);
916         s = seprintlink(s, se, " link", td->link, 1);
917         s = seprintlink(s, se, " blink", td->blink, 0);
918         return seprint(s, se, "\n");
919 }
920
921 static long
922 maxtdlen(Td *td)
923 {
924         return (td->csw >> Tdlenshift) & Tdlenmask;
925 }
926
927 static long
928 tdlen(Td *td)
929 {
930         if(td->data == nil)
931                 return 0;
932         return td->ndata - maxtdlen(td);
933 }
934
935 static char*
936 seprinttd(char *s, char *se, Td *td, char *tag)
937 {
938         int i;
939         char t, ss;
940         char flags[9];
941         static char *tok[4] = { "out", "in", "setup", "BUG" };
942
943         if(td == nil)
944                 return seprint(s, se, "%s <nil td>\n", tag);
945         s = seprint(s, se, "%s %#p", tag, td);
946         s = seprintlink(s, se, " nlink", td->nlink, 0);
947         s = seprintlink(s, se, " alink", td->alink, 0);
948         s = seprint(s, se, " %s", tok[(td->csw & Tdtok) >> 8]);
949         if((td->csw & Tdping) != 0)
950                 s = seprint(s, se, " png");
951         memset(flags, '-', 8);
952         if((td->csw & Tdactive) != 0)
953                 flags[0] = 'a';
954         if((td->csw & Tdioc) != 0)
955                 flags[1] = 'i';
956         if((td->csw & Tdhalt) != 0)
957                 flags[2] = 'h';
958         if((td->csw & Tddberr) != 0)
959                 flags[3] = 'd';
960         if((td->csw & Tdbabble) != 0)
961                 flags[4] = 'b';
962         if((td->csw & Tdtrerr) != 0)
963                 flags[5] = 't';
964         if((td->csw & Tdmmf) != 0)
965                 flags[6] = 'n';
966         if((td->csw & (Tderr2|Tderr1)) == 0)
967                 flags[7] = 'z';
968         flags[8] = 0;
969         t = (td->csw & Tddata1) ? '1' : '0';
970         ss = (td->csw & Tddcs) ? 'c' : 's';
971         s = seprint(s, se, "\n\td%c %s %cs", t, flags, ss);
972         s = seprint(s, se, " max %uld", maxtdlen(td));
973         s = seprint(s, se, " pg %uld off %#lux\n",
974                 (td->csw >> Tdpgshift) & Tdpgmask, td->buffer[0] & 0xFFF);
975         s = seprint(s, se, "\tbuffs:");
976         for(i = 0; i < nelem(td->buffer); i++)
977                 s = seprint(s, se, " %#lux", td->buffer[i]>>12);
978         if(td->data != nil)
979                 s = seprintdata(s, se, td->data, td->ndata);
980         return seprint(s, se, "\n");
981 }
982
983 static void
984 dumptd(Td *td, char *pref)
985 {
986         char buf[256];
987         char *se;
988         int i;
989
990         i = 0;
991         se = buf+sizeof(buf);
992         for(; td != nil; td = td->next){
993                 seprinttd(buf, se, td, pref);
994                 print("%s", buf);
995                 if(i++ > 20){
996                         print("...more tds...\n");
997                         break;
998                 }
999         }
1000 }
1001
1002 static void
1003 qhdump(Qh *qh)
1004 {
1005         char buf[256];
1006         char *s, *se, *tag;
1007         Td td;
1008         static char *speed[] = {"full", "low", "high", "BUG"};
1009
1010         if(qh == nil){
1011                 print("<nil qh>\n");
1012                 return;
1013         }
1014         if(qh->io == nil)
1015                 tag = "qh";
1016         else
1017                 tag = qh->io->tag;
1018         se = buf+sizeof(buf);
1019         s = seprint(buf, se, "%s %#p", tag, qh);
1020         s = seprint(s, se, " ep %uld dev %uld",
1021                 (qh->eps0>>8)&0xf, qh->eps0&0x7f);
1022         s = seprint(s, se, " hub %uld", (qh->eps1 >> 16) & 0x7f);
1023         s = seprint(s, se, " port %uld", (qh->eps1 >> 23) & 0x7f);
1024         s = seprintlink(s, se, " link", qh->link, 1);
1025         seprint(s, se, "  clink %#lux", qh->tclink);
1026         print("%s\n", buf);
1027         s = seprint(buf, se, "\tnrld %uld", (qh->eps0 >> Qhrlcshift) & Qhrlcmask);
1028         s = seprint(s, se, " nak %uld", (qh->alink >> 1) & 0xf);
1029         s = seprint(s, se, " max %uld ", qhmaxpkt(qh));
1030         if((qh->eps0 & Qhnhctl) != 0)
1031                 s = seprint(s, se, "c");
1032         if((qh->eps0 & Qhhrl) != 0)
1033                 s = seprint(s, se, "h");
1034         if((qh->eps0 & Qhdtc) != 0)
1035                 s = seprint(s, se, "d");
1036         if((qh->eps0 & Qhint) != 0)
1037                 s = seprint(s, se, "i");
1038         s = seprint(s, se, " %s", speed[(qh->eps0 >> 12) & 3]);
1039         s = seprint(s, se, " mult %uld", (qh->eps1 >> Qhmultshift) & Qhmultmask);
1040         seprint(s, se, " scm %#lux ism %#lux\n",
1041                 (qh->eps1 >> 8 & 0xff), qh->eps1 & 0xff);
1042         print("%s\n", buf);
1043         memset(&td, 0, sizeof(td));
1044         memmove(&td, &qh->nlink, 32);   /* overlay area */
1045         seprinttd(buf, se, &td, "\tovl");
1046         print("%s", buf);
1047 }
1048
1049 static void
1050 isodump(Isoio* iso, int all)
1051 {
1052         Itd *td, *tdi, *tdu;
1053         Sitd *std, *stdi, *stdu;
1054         char buf[256];
1055         int i;
1056
1057         if(iso == nil){
1058                 print("<nil iso>\n");
1059                 return;
1060         }
1061         print("iso %#p %s %s speed state %d nframes %d maxsz %uld",
1062                 iso, iso->tok == Tdtokin ? "in" : "out",
1063                 iso->hs ? "high" : "full",
1064                 iso->state, iso->nframes, iso->maxsize);
1065         print(" td0 %uld tdi %#p tdu %#p data %#p\n",
1066                 iso->td0frno, iso->tdi, iso->tdu, iso->data);
1067         if(iso->err != nil)
1068                 print("\terr %s\n", iso->err);
1069         if(iso->err != nil)
1070                 print("\terr='%s'\n", iso->err);
1071         if(all == 0)
1072                 if(iso->hs != 0){
1073                         tdi = iso->tdi;
1074                         seprintitd(buf, buf+sizeof(buf), tdi);
1075                         print("\ttdi %s\n", buf);
1076                         tdu = iso->tdu;
1077                         seprintitd(buf, buf+sizeof(buf), tdu);
1078                         print("\ttdu %s\n", buf);
1079                 }else{
1080                         stdi = iso->stdi;
1081                         seprintsitd(buf, buf+sizeof(buf), stdi);
1082                         print("\tstdi %s\n", buf);
1083                         stdu = iso->stdu;
1084                         seprintsitd(buf, buf+sizeof(buf), stdu);
1085                         print("\tstdu %s\n", buf);
1086                 }
1087         else
1088                 for(i = 0; i < Nisoframes; i++)
1089                         if(iso->tdps[i] != nil)
1090                                 if(iso->hs != 0){
1091                                         td = iso->itdps[i];
1092                                         seprintitd(buf, buf+sizeof(buf), td);
1093                                         if(td == iso->tdi)
1094                                                 print("i->");
1095                                         if(td == iso->tdu)
1096                                                 print("i->");
1097                                         print("[%d]\t%s", i, buf);
1098                                 }else{
1099                                         std = iso->sitdps[i];
1100                                         seprintsitd(buf, buf+sizeof(buf), std);
1101                                         if(std == iso->stdi)
1102                                                 print("i->");
1103                                         if(std == iso->stdu)
1104                                                 print("u->");
1105                                         print("[%d]\t%s", i, buf);
1106                                 }
1107 }
1108
1109 static void
1110 dump(Hci *hp)
1111 {
1112         int i;
1113         char *s, *se;
1114         char buf[128];
1115         Ctlr *ctlr;
1116         Eopio *opio;
1117         Isoio *iso;
1118         Qh *qh;
1119
1120         ctlr = hp->aux;
1121         opio = ctlr->opio;
1122         ilock(ctlr);
1123         print("ehci port %#p frames %#p (%d fr.) nintr %d ntdintr %d",
1124                 ctlr->capio, ctlr->frames, ctlr->nframes,
1125                 ctlr->nintr, ctlr->ntdintr);
1126         print(" nqhintr %d nisointr %d\n", ctlr->nqhintr, ctlr->nisointr);
1127         print("\tcmd %#lux sts %#lux intr %#lux frno %uld",
1128                 opio->cmd, opio->sts, opio->intr, opio->frno);
1129         print(" base %#lux link %#lux fr0 %#lux\n",
1130                 opio->frbase, opio->link, ctlr->frames[0]);
1131         se = buf+sizeof(buf);
1132         s = seprint(buf, se, "\t");
1133         for(i = 0; i < hp->nports; i++){
1134                 s = seprint(s, se, "p%d %#lux ", i, opio->portsc[i]);
1135                 if(hp->nports > 4 && i == hp->nports/2 - 1)
1136                         s = seprint(s, se, "\n\t");
1137         }
1138         print("%s\n", buf);
1139         qh = ctlr->qhs;
1140         i = 0;
1141         do{
1142                 qhdump(qh);
1143                 qh = qh->next;
1144         }while(qh != ctlr->qhs && i++ < 100);
1145         if(i > 100)
1146                 print("...too many Qhs...\n");
1147         if(ctlr->intrqhs != nil)
1148                 print("intr qhs:\n");
1149         for(qh = ctlr->intrqhs; qh != nil; qh = qh->inext)
1150                 qhdump(qh);
1151         if(ctlr->iso != nil)
1152                 print("iso:\n");
1153         for(iso = ctlr->iso; iso != nil; iso = iso->next)
1154                 isodump(ctlr->iso, 0);
1155         print("%d eds in tree\n", ctlr->ntree);
1156         iunlock(ctlr);
1157         lock(&edpool);
1158         print("%d eds allocated = %d in use + %d free\n",
1159                 edpool.nalloc, edpool.ninuse, edpool.nfree);
1160         unlock(&edpool);
1161 }
1162
1163 static char*
1164 errmsg(int err)
1165 {
1166         if(err == 0)
1167                 return "ok";
1168         if(err & Tddberr)
1169                 return "data buffer error";
1170         if(err & Tdbabble)
1171                 return "babble detected";
1172         if(err & Tdtrerr)
1173                 return "transaction error";
1174         if(err & Tdmmf)
1175                 return "missed µframe";
1176         if(err & Tdhalt)
1177                 return Estalled;        /* [uo]hci report this error */
1178         return Eio;
1179 }
1180
1181 static char*
1182 ierrmsg(int err)
1183 {
1184         if(err == 0)
1185                 return "ok";
1186         if(err & Itddberr)
1187                 return "data buffer error";
1188         if(err & Itdbabble)
1189                 return "babble detected";
1190         if(err & Itdtrerr)
1191                 return "transaction error";
1192         return Eio;
1193 }
1194
1195 static char*
1196 serrmsg(int err)
1197 {
1198         if(err & Stderr)
1199                 return "translation translator error";
1200         /* other errors have same numbers than Td errors */
1201         return errmsg(err);
1202 }
1203
1204 static int
1205 isocanread(void *a)
1206 {
1207         Isoio *iso;
1208
1209         iso = a;
1210         if(iso->state == Qclose)
1211                 return 1;
1212         if(iso->state == Qrun && iso->tok == Tdtokin){
1213                 if(iso->hs != 0 && iso->tdi != iso->tdu)
1214                         return 1;
1215                 if(iso->hs == 0 && iso->stdi != iso->stdu)
1216                         return 1;
1217         }
1218         return 0;
1219 }
1220
1221 static int
1222 isocanwrite(void *a)
1223 {
1224         Isoio *iso;
1225
1226         iso = a;
1227         if(iso->state == Qclose)
1228                 return 1;
1229         if(iso->state == Qrun && iso->tok == Tdtokout){
1230                 if(iso->hs != 0 && iso->tdu->next != iso->tdi)
1231                         return 1;
1232                 if(iso->hs == 0 && iso->stdu->next != iso->stdi)
1233                         return 1;
1234         }
1235         return 0;
1236 }
1237
1238 static void
1239 itdinit(Isoio *iso, Itd *td)
1240 {
1241         int p, t;
1242         ulong pa, tsize, size;
1243
1244         /*
1245          * BUG: This does not put an integral number of samples
1246          * on each µframe unless samples per packet % 8 == 0
1247          * Also, all samples are packed early on each frame.
1248          */
1249         p = 0;
1250         size = td->ndata = td->mdata;
1251         pa = PADDR(td->data);
1252         for(t = 0; size > 0 && t < 8; t++){
1253                 tsize = size;
1254                 if(tsize > iso->maxsize)
1255                         tsize = iso->maxsize;
1256                 size -= tsize;
1257                 assert(p < nelem(td->buffer));
1258                 td->csw[t] = tsize << Itdlenshift | p << Itdpgshift |
1259                         (pa & 0xFFF) << Itdoffshift | Itdactive | Itdioc;
1260                 coherence();
1261                 if(((pa+tsize) & ~0xFFF) != (pa & ~0xFFF))
1262                         p++;
1263                 pa += tsize;
1264         }
1265 }
1266
1267 static void
1268 sitdinit(Isoio *iso, Sitd *td)
1269 {
1270         td->ndata = td->mdata & Stdlenmask;
1271         td->buffer[0] = PADDR(td->data);
1272         td->buffer[1] = (td->buffer[0] & ~0xFFF) + 0x1000;
1273         if(iso->tok == Tdtokin || td->ndata <= 188)
1274                 td->buffer[1] |= Stdtpall;
1275         else
1276                 td->buffer[1] |= Stdtpbegin;
1277         if(iso->tok == Tdtokin)
1278                 td->buffer[1] |= 1;
1279         else
1280                 td->buffer[1] |= ((td->ndata + 187) / 188) & Stdtcntmask;
1281         coherence();
1282         td->csw = td->ndata << Stdlenshift | Stdactive | Stdioc;
1283         coherence();
1284 }
1285
1286 static int
1287 itdactive(Itd *td)
1288 {
1289         int i;
1290
1291         for(i = 0; i < nelem(td->csw); i++)
1292                 if((td->csw[i] & Itdactive) != 0)
1293                         return 1;
1294         return 0;
1295 }
1296
1297 static int
1298 isodelay(void *a)
1299 {
1300         Isoio *iso;
1301         int delay;
1302
1303         iso = a;
1304         if(iso->state == Qclose || iso->err || iso->delay == 0)
1305                 return 1;
1306
1307         delay = 0;
1308         if(iso->hs){
1309                 Itd *i;
1310
1311                 for(i = iso->tdi; i->next != iso->tdu; i = i->next){
1312                         if(!itdactive(i))
1313                                 continue;
1314                         delay += i->mdata;
1315                         if(delay > iso->delay)
1316                                 break;
1317                 }
1318         } else {
1319                 Sitd *i;
1320
1321                 for(i = iso->stdi; i->next != iso->stdu; i = i->next){
1322                         if((i->csw & Stdactive) == 0)
1323                                 continue;
1324                         delay += i->mdata;
1325                         if(delay > iso->delay)
1326                                 break;
1327                 }
1328         }
1329
1330         return delay <= iso->delay;
1331 }
1332
1333
1334 static int
1335 isohsinterrupt(Ctlr *ctlr, Isoio *iso)
1336 {
1337         int err, i, nframes, t;
1338         Itd *tdi;
1339
1340         tdi = iso->tdi;
1341         if(tdi == nil || itdactive(tdi))                        /* not all tds are done */
1342                 return 0;
1343         ctlr->nisointr++;
1344         ddiprint("isohsintr: iso %#p: tdi %#p tdu %#p\n", iso, tdi, iso->tdu);
1345         if(iso->state != Qrun && iso->state != Qdone)
1346                 panic("isofsintr: iso state");
1347         if(ehcidebug > 1 || iso->debug > 1)
1348                 isodump(iso, 0);
1349
1350         nframes = iso->nframes / 2;             /* limit how many we look */
1351         if(nframes > Nisoframes)
1352                 nframes = Nisoframes;
1353
1354         if(iso->tok == Tdtokin)
1355                 tdi->ndata = 0;
1356         /* else, it has the number of bytes transferred */
1357
1358         for(i = 0; i < nframes && itdactive(tdi) == 0; i++){
1359                 if(iso->tok == Tdtokin)
1360                         tdi->ndata += (tdi->csw[i] >> Itdlenshift) & Itdlenmask;
1361                 err = 0;
1362                 coherence();
1363                 for(t = 0; t < nelem(tdi->csw); t++){
1364                         tdi->csw[t] &= ~Itdioc;
1365                         coherence();
1366                         err |= tdi->csw[t] & Itderrors;
1367                 }
1368                 if(err == 0)
1369                         iso->nerrs = 0;
1370                 else if(iso->nerrs++ > iso->nframes/2){
1371                         if(iso->err == nil){
1372                                 iso->err = ierrmsg(err);
1373                                 diprint("isohsintr: tdi %#p error %#ux %s\n",
1374                                         tdi, err, iso->err);
1375                                 diprint("ctlr load %uld\n", ctlr->load);
1376                         }
1377                         tdi->ndata = 0;
1378                 }else
1379                         tdi->ndata = 0;
1380                 if(tdi->next == iso->tdu || tdi->next->next == iso->tdu){
1381                         memset(iso->tdu->data, 0, iso->tdu->mdata);
1382                         itdinit(iso, iso->tdu);
1383                         iso->tdu = iso->tdu->next;
1384                         iso->nleft = 0;
1385                 }
1386                 tdi = tdi->next;
1387                 coherence();
1388         }
1389         ddiprint("isohsintr: %d frames processed\n", nframes);
1390         if(i == nframes){
1391                 tdi->csw[0] |= Itdioc;
1392                 coherence();
1393         }
1394         iso->tdi = tdi;
1395         coherence();
1396         if(isocanwrite(iso) || isocanread(iso)){
1397                 diprint("wakeup iso %#p tdi %#p tdu %#p\n", iso,
1398                         iso->tdi, iso->tdu);
1399                 wakeup(iso);
1400         }
1401         return 1;
1402 }
1403
1404 static int
1405 isofsinterrupt(Ctlr *ctlr, Isoio *iso)
1406 {
1407         int err, i, nframes;
1408         Sitd *stdi;
1409
1410         stdi = iso->stdi;
1411         if(stdi == nil || (stdi->csw & Stdactive) != 0)         /* nothing new done */
1412                 return 0;
1413         ctlr->nisointr++;
1414         ddiprint("isofsintr: iso %#p: tdi %#p tdu %#p\n", iso, stdi, iso->stdu);
1415         if(iso->state != Qrun && iso->state != Qdone)
1416                 panic("isofsintr: iso state");
1417         if(ehcidebug > 1 || iso->debug > 1)
1418                 isodump(iso, 0);
1419
1420         nframes = iso->nframes / 2;             /* limit how many we look */
1421         if(nframes > Nisoframes)
1422                 nframes = Nisoframes;
1423
1424         for(i = 0; i < nframes && (stdi->csw & Stdactive) == 0; i++){
1425                 stdi->csw &= ~Stdioc;
1426                 /* write back csw and see if it produces errors */
1427                 coherence();
1428                 err = stdi->csw & Stderrors;
1429                 if(err == 0){
1430                         iso->nerrs = 0;
1431                         if(iso->tok == Tdtokin)
1432                                 stdi->ndata = (stdi->csw>>Stdlenshift)&Stdlenmask;
1433                         /* else len is assumed correct */
1434                 }else if(iso->nerrs++ > iso->nframes/2){
1435                         if(iso->err == nil){
1436                                 iso->err = serrmsg(err);
1437                                 diprint("isofsintr: tdi %#p error %#ux %s\n",
1438                                         stdi, err, iso->err);
1439                                 diprint("ctlr load %uld\n", ctlr->load);
1440                         }
1441                         stdi->ndata = 0;
1442                 }else
1443                         stdi->ndata = 0;
1444
1445                 if(stdi->next == iso->stdu || stdi->next->next == iso->stdu){
1446                         memset(iso->stdu->data, 0, iso->stdu->mdata);
1447                         coherence();
1448                         sitdinit(iso, iso->stdu);
1449                         iso->stdu = iso->stdu->next;
1450                         iso->nleft = 0;
1451                 }
1452                 coherence();
1453                 stdi = stdi->next;
1454         }
1455         ddiprint("isofsintr: %d frames processed\n", nframes);
1456         if(i == nframes){
1457                 stdi->csw |= Stdioc;
1458                 coherence();
1459         }
1460         iso->stdi = stdi;
1461         coherence();
1462         if(isocanwrite(iso) || isocanread(iso)){
1463                 diprint("wakeup iso %#p tdi %#p tdu %#p\n", iso,
1464                         iso->stdi, iso->stdu);
1465                 wakeup(iso);
1466         }
1467         return 1;
1468 }
1469
1470 static int
1471 qhinterrupt(Ctlr *ctlr, Qh *qh)
1472 {
1473         Td *td;
1474         int err;
1475
1476         if(qh->state != Qrun)
1477                 panic("qhinterrupt: qh state");
1478         td = qh->tds;
1479         if(td == nil)
1480                 return 0;
1481         if((td->csw & Tdactive) == 0)
1482                 ddqprint("qhinterrupt port %#p qh %#p\n", ctlr->capio, qh);
1483         for(; td != nil; td = td->next){
1484                 if(td->csw & Tdactive)
1485                         return 0;
1486                 err = td->csw & Tderrors;
1487                 if(err != 0){
1488                         if(qh->io->err == nil){
1489                                 qh->io->err = errmsg(err);
1490                                 dqprint("qhintr: td %#p csw %#lux error %#ux %s\n",
1491                                         td, td->csw, err, qh->io->err);
1492                         }
1493                         break;
1494                 }
1495                 td->ndata = tdlen(td);
1496                 coherence();
1497                 if(td->ndata < maxtdlen(td)){   /* EOT */
1498                         td = td->next;
1499                         break;
1500                 }
1501         }
1502         /*
1503          * Done. Make void the Tds not used (errors or EOT) and wakeup epio.
1504          */
1505         for(; td != nil; td = td->next)
1506                 td->ndata = 0;
1507         coherence();
1508         qh->state = Qdone;
1509         coherence();
1510         wakeup(qh->io);
1511         return 1;
1512 }
1513
1514 static int
1515 ehciintr(Hci *hp)
1516 {
1517         Ctlr *ctlr;
1518         Eopio *opio;
1519         Isoio *iso;
1520         ulong sts;
1521         Qh *qh;
1522         int i, some;
1523
1524         ctlr = hp->aux;
1525         opio = ctlr->opio;
1526
1527         /*
1528          * Will we know in USB 3.0 who the interrupt was for?.
1529          * Do they still teach indexing in CS?
1530          * This is Intel's doing.
1531          */
1532         ilock(ctlr);
1533         ctlr->nintr++;
1534         sts = opio->sts & Sintrs;
1535         if(sts == 0){           /* not ours; shared intr. */
1536                 iunlock(ctlr);
1537                 return 0;
1538         }
1539         opio->sts = sts;
1540         coherence();
1541         if((sts & Sherr) != 0)
1542                 print("ehci: port %#p fatal host system error\n", ctlr->capio);
1543         if((sts & Shalted) != 0)
1544                 print("ehci: port %#p: halted\n", ctlr->capio);
1545         if((sts & Sasync) != 0){
1546                 dprint("ehci: doorbell\n");
1547                 wakeup(ctlr);
1548         }
1549         /*
1550          * We enter always this if, even if it seems the
1551          * interrupt does not report anything done/failed.
1552          * Some controllers don't post interrupts right.
1553          */
1554         some = 0;
1555         if((sts & (Serrintr|Sintr)) != 0){
1556                 ctlr->ntdintr++;
1557                 if(ehcidebug > 1){
1558                         print("ehci port %#p frames %#p nintr %d ntdintr %d",
1559                                 ctlr->capio, ctlr->frames,
1560                                 ctlr->nintr, ctlr->ntdintr);
1561                         print(" nqhintr %d nisointr %d\n",
1562                                 ctlr->nqhintr, ctlr->nisointr);
1563                         print("\tcmd %#lux sts %#lux intr %#lux frno %uld",
1564                                 opio->cmd, opio->sts, opio->intr, opio->frno);
1565                 }
1566
1567                 /* process the Iso transfers */
1568                 for(iso = ctlr->iso; iso != nil; iso = iso->next)
1569                         if(iso->state == Qrun || iso->state == Qdone)
1570                                 if(iso->hs != 0)
1571                                         some += isohsinterrupt(ctlr, iso);
1572                                 else
1573                                         some += isofsinterrupt(ctlr, iso);
1574
1575                 /* process the qhs in the periodic tree */
1576                 for(qh = ctlr->intrqhs; qh != nil; qh = qh->inext)
1577                         if(qh->state == Qrun)
1578                                 some += qhinterrupt(ctlr, qh);
1579
1580                 /* process the async Qh circular list */
1581                 qh = ctlr->qhs;
1582                 i = 0;
1583                 do{
1584                         if(qh == nil)
1585                                 break;
1586                         if(qh->state == Qrun)
1587                                 some += qhinterrupt(ctlr, qh);
1588                         qh = qh->next;
1589                 }while(qh != ctlr->qhs && i++ < 100);
1590                 if(i > 100)
1591                         print("echi: interrupt: qh loop?\n");
1592         }
1593         iunlock(ctlr);
1594         return some;
1595 }
1596
1597 static void
1598 interrupt(Ureg*, void* a)
1599 {
1600         ehciintr(a);
1601 }
1602
1603 static int
1604 portenable(Hci *hp, int port, int on)
1605 {
1606         Ctlr *ctlr;
1607         Eopio *opio;
1608         int s;
1609
1610         ctlr = hp->aux;
1611         opio = ctlr->opio;
1612         s = opio->portsc[port-1];
1613         eqlock(&ctlr->portlck);
1614         if(waserror()){
1615                 qunlock(&ctlr->portlck);
1616                 nexterror();
1617         }
1618         dprint("ehci %#p port %d enable=%d; sts %#x\n",
1619                 ctlr->capio, port, on, s);
1620         ilock(ctlr);
1621         if(s & (Psstatuschg | Pschange))
1622                 opio->portsc[port-1] = s;
1623         if(on)
1624                 opio->portsc[port-1] |= Psenable;
1625         else
1626                 opio->portsc[port-1] &= ~Psenable;
1627         coherence();
1628         microdelay(64);
1629         iunlock(ctlr);
1630         tsleep(&up->sleep, return0, 0, Enabledelay);
1631         dprint("ehci %#p port %d enable=%d: sts %#lux\n",
1632                 ctlr->capio, port, on, opio->portsc[port-1]);
1633         qunlock(&ctlr->portlck);
1634         poperror();
1635         return 0;
1636 }
1637
1638 /*
1639  * If we detect during status that the port is low-speed or
1640  * during reset that it's full-speed, the device is not for
1641  * ourselves. The companion controller will take care.
1642  * Low-speed devices will not be seen by usbd. Full-speed
1643  * ones are seen because it's only after reset that we know what
1644  * they are (usbd may notice a device not enabled in this case).
1645  */
1646 static void
1647 portlend(Ctlr *ctlr, int port, char *ss)
1648 {
1649         Eopio *opio;
1650         ulong s;
1651
1652         opio = ctlr->opio;
1653
1654         dprint("ehci %#p port %d: %s speed device: no longer owned\n",
1655                 ctlr->capio, port, ss);
1656         s = opio->portsc[port-1] & ~(Pschange|Psstatuschg);
1657         opio->portsc[port-1] = s | Psowner;
1658         coherence();
1659 }
1660
1661 static int
1662 portreset(Hci *hp, int port, int on)
1663 {
1664         ulong *portscp;
1665         Eopio *opio;
1666         Ctlr *ctlr;
1667         int i;
1668
1669         if(on == 0)
1670                 return 0;
1671
1672         ctlr = hp->aux;
1673         opio = ctlr->opio;
1674         eqlock(&ctlr->portlck);
1675         if(waserror()){
1676                 iunlock(ctlr);
1677                 qunlock(&ctlr->portlck);
1678                 nexterror();
1679         }
1680         portscp = &opio->portsc[port-1];
1681         dprint("ehci %#p port %d reset; sts %#lux\n", ctlr->capio, port, *portscp);
1682         ilock(ctlr);
1683         /* Shalted must be zero, else Psreset will stay set */
1684         if (opio->sts & Shalted)
1685                 iprint("ehci %#p: halted yet trying to reset port\n",
1686                         ctlr->capio);
1687         *portscp = (*portscp & ~Psenable) | Psreset;    /* initiate reset */
1688         coherence();
1689
1690         /*
1691          * usb 2 spec: reset must finish within 20 ms.
1692          * linux says spec says it can take 50 ms. for hubs.
1693          */
1694         for(i = 0; *portscp & Psreset && i < 10; i++)
1695                 delay(10);
1696         if (*portscp & Psreset)
1697                 iprint("ehci %#p: port %d didn't reset within %d ms; sts %#lux\n",
1698                         ctlr->capio, port, i * 10, *portscp);
1699         *portscp &= ~Psreset;           /* force appearance of reset done */
1700         coherence();
1701         delay(10);                      /* ehci spec: enable within 2 ms. */
1702
1703         if((*portscp & Psenable) == 0)
1704                 portlend(ctlr, port, "full");
1705
1706         iunlock(ctlr);
1707         dprint("ehci %#p after port %d reset; sts %#lux\n",
1708                 ctlr->capio, port, *portscp);
1709         qunlock(&ctlr->portlck);
1710         poperror();
1711         return 0;
1712 }
1713
1714 static int
1715 portstatus(Hci *hp, int port)
1716 {
1717         int s, r;
1718         Eopio *opio;
1719         Ctlr *ctlr;
1720
1721         ctlr = hp->aux;
1722         opio = ctlr->opio;
1723         eqlock(&ctlr->portlck);
1724         if(waserror()){
1725                 iunlock(ctlr);
1726                 qunlock(&ctlr->portlck);
1727                 nexterror();
1728         }
1729         ilock(ctlr);
1730         s = opio->portsc[port-1];
1731         if(s & (Psstatuschg | Pschange)){
1732                 opio->portsc[port-1] = s;
1733                 coherence();
1734                 ddprint("ehci %#p port %d status %#x\n", ctlr->capio, port, s);
1735         }
1736         /*
1737          * If the port is a low speed port we yield ownership now
1738          * to the [uo]hci companion controller and pretend it's not here.
1739          */
1740         if((s & Pspresent) != 0 && (s & Pslinemask) == Pslow){
1741                 portlend(ctlr, port, "low");
1742                 s &= ~Pspresent;                /* not for us this time */
1743         }
1744         iunlock(ctlr);
1745         qunlock(&ctlr->portlck);
1746         poperror();
1747
1748         /*
1749          * We must return status bits as a
1750          * get port status hub request would do.
1751          */
1752         r = 0;
1753         if(s & Pspresent)
1754                 r |= HPpresent|HPhigh;
1755         if(s & Psenable)
1756                 r |= HPenable;
1757         if(s & Pssuspend)
1758                 r |= HPsuspend;
1759         if(s & Psreset)
1760                 r |= HPreset;
1761         if(s & Psstatuschg)
1762                 r |= HPstatuschg;
1763         if(s & Pschange)
1764                 r |= HPchange;
1765         return r;
1766 }
1767
1768 static char*
1769 seprintio(char *s, char *e, Qio *io, char *pref)
1770 {
1771         s = seprint(s,e,"%s io %#p qh %#p id %#x", pref, io, io->qh, io->usbid);
1772         s = seprint(s,e," iot %ld", io->iotime);
1773         s = seprint(s,e," tog %#x tok %#x err %s", io->toggle, io->tok, io->err);
1774         return s;
1775 }
1776
1777 static char*
1778 seprintep(char *s, char *e, Ep *ep)
1779 {
1780         Qio *io;
1781         Ctlio *cio;
1782         Ctlr *ctlr;
1783
1784         ctlr = ep->hp->aux;
1785         ilock(ctlr);
1786         if(ep->aux == nil){
1787                 *s = 0;
1788                 iunlock(ctlr);
1789                 return s;
1790         }
1791         switch(ep->ttype){
1792         case Tctl:
1793                 cio = ep->aux;
1794                 s = seprintio(s, e, cio, "c");
1795                 s = seprint(s, e, "\trepl %d ndata %d\n", ep->rhrepl, cio->ndata);
1796                 break;
1797         case Tbulk:
1798         case Tintr:
1799                 io = ep->aux;
1800                 if(ep->mode != OWRITE)
1801                         s = seprintio(s, e, &io[OREAD], "r");
1802                 if(ep->mode != OREAD)
1803                         s = seprintio(s, e, &io[OWRITE], "w");
1804                 break;
1805         case Tiso:
1806                 *s = 0;
1807                 break;
1808         }
1809         iunlock(ctlr);
1810         return s;
1811 }
1812
1813 /*
1814  * halt condition was cleared on the endpoint. update our toggles.
1815  */
1816 static void
1817 clrhalt(Ep *ep)
1818 {
1819         Qio *io;
1820
1821         ep->clrhalt = 0;
1822         coherence();
1823         switch(ep->ttype){
1824         case Tintr:
1825         case Tbulk:
1826                 io = ep->aux;
1827                 if(ep->mode != OREAD){
1828                         qlock(&io[OWRITE]);
1829                         io[OWRITE].toggle = Tddata0;
1830                         deprint("ep clrhalt for io %#p\n", io+OWRITE);
1831                         qunlock(&io[OWRITE]);
1832                 }
1833                 if(ep->mode != OWRITE){
1834                         qlock(&io[OREAD]);
1835                         io[OREAD].toggle = Tddata0;
1836                         deprint("ep clrhalt for io %#p\n", io+OREAD);
1837                         qunlock(&io[OREAD]);
1838                 }
1839                 break;
1840         }
1841 }
1842
1843 static void
1844 xdump(char* pref, void *qh)
1845 {
1846         int i;
1847         ulong *u;
1848
1849         u = qh;
1850         print("%s %#p:", pref, u);
1851         for(i = 0; i < 16; i++)
1852                 if((i%4) == 0)
1853                         print("\n %#8.8ulx", u[i]);
1854                 else
1855                         print(" %#8.8ulx", u[i]);
1856         print("\n");
1857 }
1858
1859 static long
1860 episohscpy(Ctlr *ctlr, Ep *ep, Isoio* iso, uchar *b, long count)
1861 {
1862         int nr;
1863         long tot;
1864         Itd *tdu;
1865
1866         for(tot = 0; iso->tdi != iso->tdu && tot < count; tot += nr){
1867                 tdu = iso->tdu;
1868                 if(itdactive(tdu))
1869                         break;
1870                 nr = tdu->ndata;
1871                 if(tot + nr > count)
1872                         nr = count - tot;
1873                 if(nr == 0)
1874                         print("ehci: ep%d.%d: too many polls\n",
1875                                 ep->dev->nb, ep->nb);
1876                 else{
1877                         iunlock(ctlr);          /* We could page fault here */
1878                         memmove(b+tot, tdu->data, nr);
1879                         ilock(ctlr);
1880                         if(iso->tdu != tdu)
1881                                 continue;
1882                         if(nr < tdu->ndata)
1883                                 memmove(tdu->data, tdu->data+nr, tdu->ndata - nr);
1884                         tdu->ndata -= nr;
1885                         coherence();
1886                 }
1887                 if(tdu->ndata == 0){
1888                         itdinit(iso, tdu);
1889                         iso->tdu = tdu->next;
1890                 }
1891         }
1892         return tot;
1893 }
1894
1895 static long
1896 episofscpy(Ctlr *ctlr, Ep *ep, Isoio* iso, uchar *b, long count)
1897 {
1898         int nr;
1899         long tot;
1900         Sitd *stdu;
1901
1902         for(tot = 0; iso->stdi != iso->stdu && tot < count; tot += nr){
1903                 stdu = iso->stdu;
1904                 if(stdu->csw & Stdactive){
1905                         diprint("ehci: episoread: %#p tdu active\n", iso);
1906                         break;
1907                 }
1908                 nr = stdu->ndata;
1909                 if(tot + nr > count)
1910                         nr = count - tot;
1911                 if(nr == 0)
1912                         print("ehci: ep%d.%d: too many polls\n",
1913                                 ep->dev->nb, ep->nb);
1914                 else{
1915                         iunlock(ctlr);          /* We could page fault here */
1916                         memmove(b+tot, stdu->data, nr);
1917                         ilock(ctlr);
1918                         if(iso->stdu != stdu)
1919                                 continue;
1920                         if(nr < stdu->ndata)
1921                                 memmove(stdu->data, stdu->data+nr,
1922                                         stdu->ndata - nr);
1923                         stdu->ndata -= nr;
1924                         coherence();
1925                 }
1926                 if(stdu->ndata == 0){
1927                         sitdinit(iso, stdu);
1928                         iso->stdu = stdu->next;
1929                 }
1930         }
1931         return tot;
1932 }
1933
1934 static long
1935 episoread(Ep *ep, Isoio *iso, void *a, long count)
1936 {
1937         Ctlr *ctlr;
1938         uchar *b;
1939         long tot;
1940
1941         iso->debug = ep->debug;
1942         diprint("ehci: episoread: %#p ep%d.%d\n", iso, ep->dev->nb, ep->nb);
1943
1944         b = a;
1945         ctlr = ep->hp->aux;
1946         eqlock(iso);
1947         if(waserror()){
1948                 qunlock(iso);
1949                 nexterror();
1950         }
1951         iso->err = nil;
1952         iso->nerrs = 0;
1953         ilock(ctlr);
1954         if(iso->state == Qclose){
1955                 iunlock(ctlr);
1956                 error(iso->err ? iso->err : Eio);
1957         }
1958         iso->state = Qrun;
1959         coherence();
1960         while(isocanread(iso) == 0){
1961                 iunlock(ctlr);
1962                 diprint("ehci: episoread: %#p sleep\n", iso);
1963                 if(waserror()){
1964                         if(iso->err == nil)
1965                                 iso->err = "I/O timed out";
1966                         ilock(ctlr);
1967                         break;
1968                 }
1969                 tsleep(iso, isocanread, iso, ep->tmout);
1970                 poperror();
1971                 ilock(ctlr);
1972         }
1973         if(iso->state == Qclose){
1974                 iunlock(ctlr);
1975                 error(iso->err ? iso->err : Eio);
1976         }
1977         iso->state = Qdone;
1978         coherence();
1979         assert(iso->tdu != iso->tdi);
1980
1981         if(iso->hs != 0)
1982                 tot = episohscpy(ctlr, ep, iso, b, count);
1983         else
1984                 tot = episofscpy(ctlr, ep, iso, b, count);
1985         iunlock(ctlr);
1986         qunlock(iso);
1987         poperror();
1988         diprint("uhci: episoread: %#p %uld bytes err '%s'\n", iso, tot, iso->err);
1989         if(iso->err != nil)
1990                 error(iso->err);
1991         return tot;
1992 }
1993
1994 /*
1995  * iso->tdu is the next place to put data. When it gets full
1996  * it is activated and tdu advanced.
1997  */
1998 static long
1999 putsamples(Ctlr *ctlr, Isoio *iso, uchar *b, long count)
2000 {
2001         long left, tot, n;
2002         Sitd *stdu;
2003         Itd *tdu;
2004
2005         for(tot = 0; isocanwrite(iso) && tot < count; tot += n){
2006                 n = count-tot;
2007                 left = iso->nleft;
2008                 if(iso->hs != 0){
2009                         tdu = iso->tdu;
2010                         if(n > tdu->mdata - left)
2011                                 n = tdu->mdata - left;
2012                         iunlock(ctlr);          /* We could page fault here */
2013                         memmove(tdu->data + left, b + tot, n);
2014                         ilock(ctlr);
2015                         if(iso->tdu != tdu)
2016                                 continue;
2017                         iso->nleft += n;
2018                         if(iso->nleft == tdu->mdata){
2019                                 itdinit(iso, tdu);
2020                                 iso->tdu = tdu->next;
2021                                 iso->nleft = 0;
2022                         }
2023                 }else{
2024                         stdu = iso->stdu;
2025                         if(n > stdu->mdata - left)
2026                                 n = stdu->mdata - left;
2027                         iunlock(ctlr);          /* We could page fault here */
2028                         memmove(stdu->data + left, b + tot, n);
2029                         ilock(ctlr);
2030                         if(iso->stdu != stdu)
2031                                 continue;
2032                         iso->nleft += n;
2033                         if(iso->nleft == stdu->mdata){
2034                                 sitdinit(iso, stdu);
2035                                 iso->stdu = stdu->next;
2036                                 iso->nleft = 0;
2037                         }
2038                 }
2039         }
2040         return tot;
2041 }
2042
2043 /*
2044  * Queue data for writing and return error status from
2045  * last writes done, to maintain buffered data.
2046  */
2047 static long
2048 episowrite(Ep *ep, Isoio *iso, void *a, long count)
2049 {
2050         Ctlr *ctlr;
2051         uchar *b;
2052         int tot, nw;
2053         char *err;
2054
2055         iso->delay = ep->sampledelay * ep->samplesz;
2056         iso->debug = ep->debug;
2057         diprint("ehci: episowrite: %#p ep%d.%d\n", iso, ep->dev->nb, ep->nb);
2058
2059         ctlr = ep->hp->aux;
2060         eqlock(iso);
2061         if(waserror()){
2062                 qunlock(iso);
2063                 nexterror();
2064         }
2065         ilock(ctlr);
2066         if(iso->state == Qclose){
2067                 iunlock(ctlr);
2068                 error(iso->err ? iso->err : Eio);
2069         }
2070         iso->state = Qrun;
2071         coherence();
2072         b = a;
2073         for(tot = 0; tot < count; tot += nw){
2074                 while(isocanwrite(iso) == 0){
2075                         iunlock(ctlr);
2076                         diprint("ehci: episowrite: %#p sleep\n", iso);
2077                         if(waserror()){
2078                                 if(iso->err == nil)
2079                                         iso->err = "I/O timed out";
2080                                 ilock(ctlr);
2081                                 break;
2082                         }
2083                         tsleep(iso, isocanwrite, iso, ep->tmout);
2084                         poperror();
2085                         ilock(ctlr);
2086                 }
2087                 err = iso->err;
2088                 iso->err = nil;
2089                 if(iso->state == Qclose || err != nil){
2090                         iunlock(ctlr);
2091                         error(err ? err : Eio);
2092                 }
2093                 if(iso->state != Qrun)
2094                         panic("episowrite: iso not running");
2095                 nw = putsamples(ctlr, iso, b+tot, count-tot);
2096         }
2097         while(isodelay(iso) == 0){
2098                 iunlock(ctlr);
2099                 sleep(iso, isodelay, iso);
2100                 ilock(ctlr);
2101         }
2102         if(iso->state != Qclose)
2103                 iso->state = Qdone;
2104         iunlock(ctlr);
2105         err = iso->err;         /* in case it failed early */
2106         iso->err = nil;
2107         qunlock(iso);
2108         poperror();
2109         if(err != nil)
2110                 error(err);
2111         diprint("ehci: episowrite: %#p %d bytes\n", iso, tot);
2112         return tot;
2113 }
2114
2115 static int
2116 nexttoggle(int toggle, int count, int maxpkt)
2117 {
2118         int np;
2119
2120         np = count / maxpkt;
2121         if(np == 0)
2122                 np = 1;
2123         if((np % 2) == 0)
2124                 return toggle;
2125         if(toggle == Tddata1)
2126                 return Tddata0;
2127         else
2128                 return Tddata1;
2129 }
2130
2131 static Td*
2132 epgettd(Qio *io, int flags, void *a, int count, int maxpkt)
2133 {
2134         Td *td;
2135         ulong pa;
2136         int i;
2137
2138         if(count > Tdmaxpkt)
2139                 panic("ehci: epgettd: too many bytes");
2140         td = tdalloc();
2141         td->csw = flags | io->toggle | io->tok | count << Tdlenshift |
2142                 Tderr2 | Tderr1;
2143         coherence();
2144
2145         /*
2146          * use the space wasted by alignment as an
2147          * embedded buffer if count bytes fit in there.
2148          */
2149         assert(Align > sizeof(Td));
2150         if(count <= Align - sizeof(Td)){
2151                 td->data = td->sbuff;
2152                 td->buff = nil;
2153         }else
2154                 td->data = td->buff = smalloc(Tdmaxpkt);
2155
2156         pa = PADDR(td->data);
2157         for(i = 0; i < nelem(td->buffer); i++){
2158                 td->buffer[i] = pa;
2159                 if(i > 0)
2160                         td->buffer[i] &= ~0xFFF;
2161                 pa += 0x1000;
2162         }
2163         td->ndata = count;
2164         if(a != nil && count > 0)
2165                 memmove(td->data, a, count);
2166         coherence();
2167         io->toggle = nexttoggle(io->toggle, count, maxpkt);
2168         coherence();
2169         return td;
2170 }
2171
2172 /*
2173  * Try to get them idle
2174  */
2175 static void
2176 aborttds(Qh *qh)
2177 {
2178         Td *td;
2179
2180         qh->state = Qdone;
2181         coherence();
2182         if(qh->sched >= 0 && (qh->eps0 & Qhspeedmask) != Qhhigh)
2183                 qh->eps0 |= Qhint;      /* inactivate on next pass */
2184         coherence();
2185         for(td = qh->tds; td != nil; td = td->next){
2186                 if(td->csw & Tdactive)
2187                         td->ndata = 0;
2188                 td->csw |= Tdhalt;
2189                 coherence();
2190         }
2191 }
2192
2193 /*
2194  * Some controllers do not post the usb/error interrupt after
2195  * the work has been done. It seems that we must poll for them.
2196  */
2197 static int
2198 workpending(void *a)
2199 {
2200         Ctlr *ctlr;
2201
2202         ctlr = a;
2203         return ctlr->nreqs > 0;
2204 }
2205
2206 static void
2207 ehcipoll(void* a)
2208 {
2209         Hci *hp;
2210         Ctlr *ctlr;
2211         Poll *poll;
2212         int i;
2213
2214         hp = a;
2215         ctlr = hp->aux;
2216         poll = &ctlr->poll;
2217         for(;;){
2218                 if(ctlr->nreqs == 0){
2219                         if(0)ddprint("ehcipoll %#p sleep\n", ctlr->capio);
2220                         sleep(poll, workpending, ctlr);
2221                         if(0)ddprint("ehcipoll %#p awaken\n", ctlr->capio);
2222                 }
2223                 for(i = 0; i < 16 && ctlr->nreqs > 0; i++)
2224                         if(ehciintr(hp) == 0)
2225                                  break;
2226                 do{
2227                         tsleep(&up->sleep, return0, 0, 1);
2228                         ehciintr(hp);
2229                 }while(ctlr->nreqs > 0);
2230         }
2231 }
2232
2233 static void
2234 pollcheck(Hci *hp)
2235 {
2236         Ctlr *ctlr;
2237         Poll *poll;
2238
2239         ctlr = hp->aux;
2240         poll = &ctlr->poll;
2241
2242         if(poll->must != 0 && poll->does == 0){
2243                 lock(poll);
2244                 if(poll->must != 0 && poll->does == 0){
2245                         poll->does++;
2246                         print("ehci %#p: polling\n", ctlr->capio);
2247                         kproc("ehcipoll", ehcipoll, hp);
2248                 }
2249                 unlock(poll);
2250         }
2251 }
2252
2253 static int
2254 epiodone(void *a)
2255 {
2256         Qh *qh;
2257
2258         qh = a;
2259         return qh->state != Qrun;
2260 }
2261
2262 static void
2263 epiowait(Hci *hp, Qio *io, int tmout, ulong load)
2264 {
2265         Qh *qh;
2266         int timedout;
2267         Ctlr *ctlr;
2268
2269         ctlr = hp->aux;
2270         qh = io->qh;
2271         ddqprint("ehci io %#p sleep on qh %#p state %s\n",
2272                 io, qh, qhsname[qh->state]);
2273         timedout = 0;
2274         if(waserror()){
2275                 dqprint("ehci io %#p qh %#p timed out\n", io, qh);
2276                 timedout++;
2277         }else{
2278                 if(tmout == 0)
2279                         sleep(io, epiodone, qh);
2280                 else
2281                         tsleep(io, epiodone, qh, tmout);
2282                 poperror();
2283         }
2284
2285         ilock(ctlr);
2286         /* Are we missing interrupts? */
2287         if(qh->state == Qrun){
2288                 iunlock(ctlr);
2289                 ehciintr(hp);
2290                 ilock(ctlr);
2291                 if(qh->state == Qdone){
2292                         dqprint("ehci %#p: polling required\n", ctlr->capio);
2293                         ctlr->poll.must = 1;
2294                         pollcheck(hp);
2295                 }
2296         }
2297
2298         if(qh->state == Qrun){
2299                 dqprint("ehci io %#p qh %#p timed out (no intr?)\n", io, qh);
2300                 timedout = 1;
2301         }else if(qh->state != Qdone && qh->state != Qclose)
2302                 panic("ehci: epio: queue state %d", qh->state);
2303         if(timedout){
2304                 aborttds(io->qh);
2305                 io->err = "request timed out";
2306                 iunlock(ctlr);
2307                 if(!waserror()){
2308                         tsleep(&up->sleep, return0, 0, Abortdelay);
2309                         poperror();
2310                 }
2311                 ilock(ctlr);
2312         }
2313         if(qh->state != Qclose)
2314                 qh->state = Qidle;
2315         coherence();
2316         qhlinktd(qh, nil);
2317         ctlr->load -= load;
2318         ctlr->nreqs--;
2319         iunlock(ctlr);
2320 }
2321
2322 /*
2323  * Non iso I/O.
2324  * To make it work for control transfers, the caller may
2325  * lock the Qio for the entire control transfer.
2326  */
2327 static long
2328 epio(Ep *ep, Qio *io, void *a, long count, int mustlock)
2329 {
2330         int saved, ntds, tmout;
2331         long n, tot;
2332         ulong load;
2333         char *err;
2334         char buf[128];
2335         uchar *c;
2336         Ctlr *ctlr;
2337         Qh* qh;
2338         Td *td, *ltd, *td0, *ntd;
2339
2340         qh = io->qh;
2341         ctlr = ep->hp->aux;
2342         io->debug = ep->debug;
2343         tmout = ep->tmout;
2344         ddeprint("epio: %s ep%d.%d io %#p count %ld load %uld\n",
2345                 io->tok == Tdtokin ? "in" : "out",
2346                 ep->dev->nb, ep->nb, io, count, ctlr->load);
2347         if((ehcidebug > 1 || ep->debug > 1) && io->tok != Tdtokin){
2348                 seprintdata(buf, buf+sizeof(buf), a, count);
2349                 print("echi epio: user data: %s\n", buf);
2350         }
2351         if(mustlock){
2352                 eqlock(io);
2353                 if(waserror()){
2354                         qunlock(io);
2355                         nexterror();
2356                 }
2357         }
2358         io->err = nil;
2359         ilock(ctlr);
2360         if(qh->state == Qclose){        /* Tds released by cancelio */
2361                 iunlock(ctlr);
2362                 error(io->err ? io->err : Eio);
2363         }
2364         if(qh->state != Qidle)
2365                 panic("epio: qh not idle");
2366         qh->state = Qinstall;
2367         iunlock(ctlr);
2368
2369         c = a;
2370         td0 = ltd = nil;
2371         load = tot = 0;
2372         do{
2373                 n = (Tdmaxpkt / ep->maxpkt) * ep->maxpkt;
2374                 if(count-tot < n)
2375                         n = count-tot;
2376                 if(c != nil && io->tok != Tdtokin)
2377                         td = epgettd(io, Tdactive, c+tot, n, ep->maxpkt);
2378                 else
2379                         td = epgettd(io, Tdactive, nil, n, ep->maxpkt);
2380                 if(td0 == nil)
2381                         td0 = td;
2382                 else
2383                         tdlinktd(ltd, td);
2384                 ltd = td;
2385                 tot += n;
2386                 load += ep->load;
2387         }while(tot < count);
2388         if(td0 == nil || ltd == nil)
2389                 panic("epio: no td");
2390
2391         ltd->csw |= Tdioc;              /* the last one interrupts */
2392         coherence();
2393
2394         ddeprint("ehci: load %uld ctlr load %uld\n", load, ctlr->load);
2395         if(ehcidebug > 1 || ep->debug > 1)
2396                 dumptd(td0, "epio: put: ");
2397
2398         ilock(ctlr);
2399         if(qh->state != Qclose){
2400                 io->iotime = TK2MS(MACHP(0)->ticks);
2401                 qh->state = Qrun;
2402                 coherence();
2403                 qhlinktd(qh, td0);
2404                 ctlr->nreqs++;
2405                 ctlr->load += load;
2406         }
2407         iunlock(ctlr);
2408
2409         if(ctlr->poll.does)
2410                 wakeup(&ctlr->poll);
2411
2412         epiowait(ep->hp, io, tmout, load);
2413         if(ehcidebug > 1 || ep->debug > 1){
2414                 dumptd(td0, "epio: got: ");
2415                 qhdump(qh);
2416         }
2417
2418         tot = 0;
2419         c = a;
2420         saved = 0;
2421         ntds = 0;
2422         for(td = td0; td != nil; td = ntd){
2423                 ntds++;
2424                 /*
2425                  * Use td tok, not io tok, because of setup packets.
2426                  * Also, we must save the next toggle value from the
2427                  * last completed Td (in case of a short packet, or
2428                  * fewer than the requested number of packets in the
2429                  * Td being transferred).
2430                  */
2431                 if(td->csw & (Tdhalt|Tdactive))
2432                         saved++;
2433                 else{
2434                         if(!saved){
2435                                 io->toggle = td->csw & Tddata1;
2436                                 coherence();
2437                         }
2438                         tot += td->ndata;
2439                         if(c != nil && (td->csw & Tdtok) == Tdtokin && td->ndata > 0){
2440                                 memmove(c, td->data, td->ndata);
2441                                 c += td->ndata;
2442                         }
2443                 }
2444                 ntd = td->next;
2445                 tdfree(td);
2446         }
2447         err = io->err;
2448         if(mustlock){
2449                 qunlock(io);
2450                 poperror();
2451         }
2452         ddeprint("epio: io %#p: %d tds: return %ld err '%s'\n",
2453                 io, ntds, tot, err);
2454         if(err == Estalled)
2455                 return 0;       /* that's our convention */
2456         if(err != nil)
2457                 error(err);
2458         if(tot < 0)
2459                 error(Eio);
2460         return tot;
2461 }
2462
2463 static long
2464 epread(Ep *ep, void *a, long count)
2465 {
2466         Ctlio *cio;
2467         Qio *io;
2468         Isoio *iso;
2469         char buf[160];
2470         ulong delta;
2471
2472         ddeprint("ehci: epread\n");
2473         if(ep->aux == nil)
2474                 panic("epread: not open");
2475
2476         pollcheck(ep->hp);
2477
2478         switch(ep->ttype){
2479         case Tctl:
2480                 cio = ep->aux;
2481                 eqlock(cio);
2482                 if(waserror()){
2483                         qunlock(cio);
2484                         nexterror();
2485                 }
2486                 ddeprint("epread ctl ndata %d\n", cio->ndata);
2487                 if(cio->ndata < 0)
2488                         error("request expected");
2489                 else if(cio->ndata == 0){
2490                         cio->ndata = -1;
2491                         count = 0;
2492                 }else{
2493                         if(count > cio->ndata)
2494                                 count = cio->ndata;
2495                         if(count > 0)
2496                                 memmove(a, cio->data, count);
2497                         /* BUG for big transfers */
2498                         free(cio->data);
2499                         cio->data = nil;
2500                         cio->ndata = 0; /* signal EOF next time */
2501                 }
2502                 qunlock(cio);
2503                 poperror();
2504                 if(ehcidebug>1 || ep->debug){
2505                         seprintdata(buf, buf+sizeof(buf), a, count);
2506                         print("epread: %s\n", buf);
2507                 }
2508                 return count;
2509         case Tbulk:
2510                 io = ep->aux;
2511                 if(ep->clrhalt)
2512                         clrhalt(ep);
2513                 return epio(ep, &io[OREAD], a, count, 1);
2514         case Tintr:
2515                 io = ep->aux;
2516                 delta = TK2MS(MACHP(0)->ticks) - io[OREAD].iotime + 1;
2517                 if(delta < ep->pollival / 2)
2518                         tsleep(&up->sleep, return0, 0, ep->pollival/2 - delta);
2519                 if(ep->clrhalt)
2520                         clrhalt(ep);
2521                 return epio(ep, &io[OREAD], a, count, 1);
2522         case Tiso:
2523                 iso = ep->aux;
2524                 return episoread(ep, iso, a, count);
2525         }
2526         return -1;
2527 }
2528
2529 /*
2530  * Control transfers are one setup write (data0)
2531  * plus zero or more reads/writes (data1, data0, ...)
2532  * plus a final write/read with data1 to ack.
2533  * For both host to device and device to host we perform
2534  * the entire transfer when the user writes the request,
2535  * and keep any data read from the device for a later read.
2536  * We call epio three times instead of placing all Tds at
2537  * the same time because doing so leads to crc/tmout errors
2538  * for some devices.
2539  * Upon errors on the data phase we must still run the status
2540  * phase or the device may cease responding in the future.
2541  */
2542 static long
2543 epctlio(Ep *ep, Ctlio *cio, void *a, long count)
2544 {
2545         uchar *c;
2546         long len;
2547
2548         ddeprint("epctlio: cio %#p ep%d.%d count %ld\n",
2549                 cio, ep->dev->nb, ep->nb, count);
2550         if(count < Rsetuplen)
2551                 error("short usb comand");
2552         eqlock(cio);
2553         free(cio->data);
2554         cio->data = nil;
2555         cio->ndata = 0;
2556         if(waserror()){
2557                 free(cio->data);
2558                 cio->data = nil;
2559                 cio->ndata = 0;
2560                 qunlock(cio);
2561                 nexterror();
2562         }
2563
2564         /* set the address if unset and out of configuration state */
2565         if(ep->dev->state != Dconfig && ep->dev->state != Dreset)
2566                 if(cio->usbid == 0){
2567                         cio->usbid = (ep->nb&Epmax) << 7 | ep->dev->nb&Devmax;
2568                         coherence();
2569                         qhsetaddr(cio->qh, cio->usbid);
2570                 }
2571         /* adjust maxpkt if the user has learned a different one */
2572         if(qhmaxpkt(cio->qh) != ep->maxpkt)
2573                 qhsetmaxpkt(cio->qh, ep->maxpkt);
2574         c = a;
2575         cio->tok = Tdtoksetup;
2576         cio->toggle = Tddata0;
2577         coherence();
2578         if(epio(ep, cio, a, Rsetuplen, 0) < Rsetuplen)
2579                 error(Eio);
2580         a = c + Rsetuplen;
2581         count -= Rsetuplen;
2582
2583         cio->toggle = Tddata1;
2584         if(c[Rtype] & Rd2h){
2585                 cio->tok = Tdtokin;
2586                 len = GET2(c+Rcount);
2587                 if(len <= 0)
2588                         error("bad length in d2h request");
2589                 if(len > Maxctllen)
2590                         error("d2h data too large to fit in ehci");
2591                 a = cio->data = smalloc(len+1);
2592         }else{
2593                 cio->tok = Tdtokout;
2594                 len = count;
2595         }
2596         coherence();
2597         if(len > 0)
2598                 if(waserror())
2599                         len = -1;
2600                 else{
2601                         len = epio(ep, cio, a, len, 0);
2602                         poperror();
2603                 }
2604         if(c[Rtype] & Rd2h){
2605                 count = Rsetuplen;
2606                 cio->ndata = len;
2607                 cio->tok = Tdtokout;
2608         }else{
2609                 if(len < 0)
2610                         count = -1;
2611                 else
2612                         count = Rsetuplen + len;
2613                 cio->tok = Tdtokin;
2614         }
2615         cio->toggle = Tddata1;
2616         coherence();
2617         epio(ep, cio, nil, 0, 0);
2618         qunlock(cio);
2619         poperror();
2620         ddeprint("epctlio cio %#p return %ld\n", cio, count);
2621         return count;
2622 }
2623
2624 static long
2625 epwrite(Ep *ep, void *a, long count)
2626 {
2627         Qio *io;
2628         Ctlio *cio;
2629         Isoio *iso;
2630         ulong delta;
2631
2632         pollcheck(ep->hp);
2633
2634         ddeprint("ehci: epwrite ep%d.%d\n", ep->dev->nb, ep->nb);
2635         if(ep->aux == nil)
2636                 panic("ehci: epwrite: not open");
2637         switch(ep->ttype){
2638         case Tctl:
2639                 cio = ep->aux;
2640                 return epctlio(ep, cio, a, count);
2641         case Tbulk:
2642                 io = ep->aux;
2643                 if(ep->clrhalt)
2644                         clrhalt(ep);
2645                 return epio(ep, &io[OWRITE], a, count, 1);
2646         case Tintr:
2647                 io = ep->aux;
2648                 delta = TK2MS(MACHP(0)->ticks) - io[OWRITE].iotime + 1;
2649                 if(delta < ep->pollival)
2650                         tsleep(&up->sleep, return0, 0, ep->pollival - delta);
2651                 if(ep->clrhalt)
2652                         clrhalt(ep);
2653                 return epio(ep, &io[OWRITE], a, count, 1);
2654         case Tiso:
2655                 iso = ep->aux;
2656                 return episowrite(ep, iso, a, count);
2657         }
2658         return -1;
2659 }
2660
2661 static void
2662 isofsinit(Ep *ep, Isoio *iso)
2663 {
2664         long left;
2665         Sitd *td, *ltd;
2666         int i;
2667         ulong frno;
2668
2669         left = 0;
2670         ltd = nil;
2671         frno = iso->td0frno;
2672         for(i = 0; i < iso->nframes; i++){
2673                 td = sitdalloc();
2674                 td->data = iso->data + i * ep->maxpkt;
2675                 td->epc = ep->dev->port << Stdportshift;
2676                 td->epc |= ep->dev->hub << Stdhubshift;
2677                 td->epc |= ep->nb << Stdepshift;
2678                 td->epc |= ep->dev->nb << Stddevshift;
2679                 td->mfs = 034 << Stdscmshift | 1 << Stdssmshift;
2680                 if(ep->mode == OREAD){
2681                         td->epc |= Stdin;
2682                         td->mdata = ep->maxpkt;
2683                 }else{
2684                         td->mdata = (ep->hz+left) * ep->pollival / 1000;
2685                         td->mdata *= ep->samplesz;
2686                         left = (ep->hz+left) * ep->pollival % 1000;
2687                         if(td->mdata > ep->maxpkt){
2688                                 print("ehci: ep%d.%d: size > maxpkt\n",
2689                                         ep->dev->nb, ep->nb);
2690                                 print("size = %ld max = %ld\n",
2691                                         td->mdata,ep->maxpkt);
2692                                 td->mdata = ep->maxpkt;
2693                         }
2694                 }
2695                 coherence();
2696
2697                 iso->sitdps[frno] = td;
2698                 coherence();
2699                 sitdinit(iso, td);
2700                 if(ltd != nil)
2701                         ltd->next = td;
2702                 ltd = td;
2703                 frno = TRUNC(frno+ep->pollival, Nisoframes);
2704         }
2705         ltd->next = iso->sitdps[iso->td0frno];
2706         coherence();
2707 }
2708
2709 static void
2710 isohsinit(Ep *ep, Isoio *iso)
2711 {
2712         int ival, p;
2713         long left;
2714         ulong frno, i, pa;
2715         Itd *ltd, *td;
2716
2717         iso->hs = 1;
2718         ival = 1;
2719         if(ep->pollival > 8)
2720                 ival = ep->pollival/8;
2721         left = 0;
2722         ltd = nil;
2723         frno = iso->td0frno;
2724         for(i = 0; i < iso->nframes; i++){
2725                 td = itdalloc();
2726                 td->data = iso->data + i * 8 * iso->maxsize;
2727                 pa = PADDR(td->data) & ~0xFFF;
2728                 for(p = 0; p < 8; p++)
2729                         td->buffer[i] = pa + p * 0x1000;
2730                 td->buffer[0] = PADDR(iso->data) & ~0xFFF |
2731                         ep->nb << Itdepshift | ep->dev->nb << Itddevshift;
2732                 if(ep->mode == OREAD)
2733                         td->buffer[1] |= Itdin;
2734                 else
2735                         td->buffer[1] |= Itdout;
2736                 td->buffer[1] |= ep->maxpkt << Itdmaxpktshift;
2737                 td->buffer[2] |= ep->ntds << Itdntdsshift;
2738
2739                 if(ep->mode == OREAD)
2740                         td->mdata = 8 * iso->maxsize;
2741                 else{
2742                         td->mdata = (ep->hz + left) * ep->pollival / 1000;
2743                         td->mdata *= ep->samplesz;
2744                         left = (ep->hz + left) * ep->pollival % 1000;
2745                 }
2746                 coherence();
2747                 iso->itdps[frno] = td;
2748                 coherence();
2749                 itdinit(iso, td);
2750                 if(ltd != nil)
2751                         ltd->next = td;
2752                 ltd = td;
2753                 frno = TRUNC(frno + ival, Nisoframes);
2754         }
2755 }
2756
2757 static void
2758 isoopen(Ctlr *ctlr, Ep *ep)
2759 {
2760         int ival;               /* pollival in ms */
2761         int tpf;                /* tds per frame */
2762         int i, n, w, woff;
2763         ulong frno;
2764         Isoio *iso;
2765
2766         iso = ep->aux;
2767         switch(ep->mode){
2768         case OREAD:
2769                 iso->tok = Tdtokin;
2770                 break;
2771         case OWRITE:
2772                 iso->tok = Tdtokout;
2773                 break;
2774         default:
2775                 error("iso i/o is half-duplex");
2776         }
2777         iso->usbid = ep->nb << 7 | ep->dev->nb & Devmax;
2778         iso->state = Qidle;
2779         coherence();
2780         iso->debug = ep->debug;
2781         ival = ep->pollival;
2782         tpf = 1;
2783         if(ep->dev->speed == Highspeed){
2784                 tpf = 8;
2785                 if(ival <= 8)
2786                         ival = 1;
2787                 else
2788                         ival /= 8;
2789         }
2790         assert(ival != 0);
2791         iso->nframes = Nisoframes / ival;
2792         if(iso->nframes < 3)
2793                 error("uhci isoopen bug");      /* we need at least 3 tds */
2794         iso->maxsize = ep->ntds * ep->maxpkt;
2795         if(ctlr->load + ep->load > 800)
2796                 print("usb: ehci: bandwidth may be exceeded\n");
2797         ilock(ctlr);
2798         ctlr->load += ep->load;
2799         ctlr->isoload += ep->load;
2800         ctlr->nreqs++;
2801         dprint("ehci: load %uld isoload %uld\n", ctlr->load, ctlr->isoload);
2802         diprint("iso nframes %d pollival %uld ival %d maxpkt %uld ntds %d\n",
2803                 iso->nframes, ep->pollival, ival, ep->maxpkt, ep->ntds);
2804         iunlock(ctlr);
2805         if(ctlr->poll.does)
2806                 wakeup(&ctlr->poll);
2807
2808         /*
2809          * From here on this cannot raise errors
2810          * unless we catch them and release here all memory allocated.
2811          */
2812         assert(ep->maxpkt > 0 && ep->ntds > 0 && ep->ntds < 4);
2813         assert(ep->maxpkt <= 1024);
2814         iso->tdps = smalloc(sizeof(uintptr) * Nisoframes);
2815         iso->data = smalloc(iso->nframes * tpf * ep->ntds * ep->maxpkt);
2816         iso->td0frno = TRUNC(ctlr->opio->frno + 10, Nisoframes);
2817         /* read: now; write: 1s ahead */
2818
2819         if(ep->dev->speed == Highspeed)
2820                 isohsinit(ep, iso);
2821         else
2822                 isofsinit(ep, iso);
2823         iso->tdu = iso->tdi = iso->itdps[iso->td0frno];
2824         iso->stdu = iso->stdi = iso->sitdps[iso->td0frno];
2825         coherence();
2826
2827         ilock(ctlr);
2828         frno = iso->td0frno;
2829         for(i = 0; i < iso->nframes; i++){
2830                 *iso->tdps[frno] = ctlr->frames[frno];
2831                 frno = TRUNC(frno+ival, Nisoframes);
2832         }
2833
2834         /*
2835          * Iso uses a virtual frame window of Nisoframes, and we must
2836          * fill the actual ctlr frame array by placing ctlr->nframes/Nisoframes
2837          * copies of the window in the frame array.
2838          */
2839         assert(ctlr->nframes >= Nisoframes && Nisoframes >= iso->nframes);
2840         assert(Nisoframes >= Nintrleafs);
2841         n = ctlr->nframes / Nisoframes;
2842         for(w = 0; w < n; w++){
2843                 frno = iso->td0frno;
2844                 woff = w * Nisoframes;
2845                 for(i = 0; i < iso->nframes ; i++){
2846                         assert(woff+frno < ctlr->nframes);
2847                         assert(iso->tdps[frno] != nil);
2848                         if(ep->dev->speed == Highspeed)
2849                                 ctlr->frames[woff+frno] = PADDR(iso->tdps[frno])
2850                                         |Litd;
2851                         else
2852                                 ctlr->frames[woff+frno] = PADDR(iso->tdps[frno])
2853                                         |Lsitd;
2854                         coherence();
2855                         frno = TRUNC(frno+ep->pollival, Nisoframes);
2856                 }
2857         }
2858         coherence();
2859         iso->next = ctlr->iso;
2860         ctlr->iso = iso;
2861         coherence();
2862         iso->state = Qdone;
2863         iunlock(ctlr);
2864         if(ehcidebug > 1 || iso->debug >1)
2865                 isodump(iso, 0);
2866 }
2867
2868 /*
2869  * Allocate the endpoint and set it up for I/O
2870  * in the controller. This must follow what's said
2871  * in Ep regarding configuration, including perhaps
2872  * the saved toggles (saved on a previous close of
2873  * the endpoint data file by epclose).
2874  */
2875 static void
2876 epopen(Ep *ep)
2877 {
2878         Ctlr *ctlr;
2879         Ctlio *cio;
2880         Qio *io;
2881         int usbid;
2882
2883         ctlr = ep->hp->aux;
2884         deprint("ehci: epopen ep%d.%d\n", ep->dev->nb, ep->nb);
2885         if(ep->aux != nil)
2886                 panic("ehci: epopen called with open ep");
2887         if(waserror()){
2888                 free(ep->aux);
2889                 ep->aux = nil;
2890                 nexterror();
2891         }
2892         switch(ep->ttype){
2893         case Tnone:
2894                 error("endpoint not configured");
2895         case Tiso:
2896                 ep->aux = smalloc(sizeof(Isoio));
2897                 isoopen(ctlr, ep);
2898                 break;
2899         case Tctl:
2900                 cio = ep->aux = smalloc(sizeof(Ctlio));
2901                 cio->debug = ep->debug;
2902                 cio->ndata = -1;
2903                 cio->data = nil;
2904                 if(ep->dev->isroot != 0 && ep->nb == 0) /* root hub */
2905                         break;
2906                 cio->qh = qhalloc(ctlr, ep, cio, "epc");
2907                 break;
2908         case Tbulk:
2909                 ep->pollival = 1;       /* assume this; doesn't really matter */
2910                 /* and fall... */
2911         case Tintr:
2912                 io = ep->aux = smalloc(sizeof(Qio)*2);
2913                 io[OREAD].debug = io[OWRITE].debug = ep->debug;
2914                 usbid = (ep->nb&Epmax) << 7 | ep->dev->nb &Devmax;
2915                 assert(ep->pollival != 0);
2916                 if(ep->mode != OREAD){
2917                         if(ep->toggle[OWRITE] != 0)
2918                                 io[OWRITE].toggle = Tddata1;
2919                         else
2920                                 io[OWRITE].toggle = Tddata0;
2921                         io[OWRITE].tok = Tdtokout;
2922                         io[OWRITE].usbid = usbid;
2923                         io[OWRITE].bw = ep->maxpkt*1000/ep->pollival; /* bytes/s */
2924                         io[OWRITE].qh = qhalloc(ctlr, ep, io+OWRITE, "epw");
2925                 }
2926                 if(ep->mode != OWRITE){
2927                         if(ep->toggle[OREAD] != 0)
2928                                 io[OREAD].toggle = Tddata1;
2929                         else
2930                                 io[OREAD].toggle = Tddata0;
2931                         io[OREAD].tok = Tdtokin;
2932                         io[OREAD].usbid = usbid;
2933                         io[OREAD].bw = ep->maxpkt*1000/ep->pollival; /* bytes/s */
2934                         io[OREAD].qh = qhalloc(ctlr, ep, io+OREAD, "epr");
2935                 }
2936                 break;
2937         }
2938         coherence();
2939         if(ehcidebug>1 || ep->debug)
2940                 dump(ep->hp);
2941         deprint("ehci: epopen done\n");
2942         poperror();
2943 }
2944
2945 static void
2946 cancelio(Ctlr *ctlr, Qio *io)
2947 {
2948         Qh *qh;
2949
2950         ilock(ctlr);
2951         qh = io->qh;
2952         if(io == nil || io->qh == nil || io->qh->state == Qclose){
2953                 iunlock(ctlr);
2954                 return;
2955         }
2956         dqprint("ehci: cancelio for qh %#p state %s\n",
2957                 qh, qhsname[qh->state]);
2958         aborttds(qh);
2959         qh->state = Qclose;
2960         iunlock(ctlr);
2961         if(!waserror()){
2962                 tsleep(&up->sleep, return0, 0, Abortdelay);
2963                 poperror();
2964         }
2965         wakeup(io);
2966         qlock(io);
2967         /* wait for epio if running */
2968         qunlock(io);
2969
2970         qhfree(ctlr, qh);
2971         io->qh = nil;
2972 }
2973
2974 static void
2975 cancelisoio(Ctlr *ctlr, Isoio *iso, int pollival, ulong load)
2976 {
2977         int frno, i, n, t, w, woff;
2978         ulong *lp, *tp;
2979         Isoio **il;
2980         Itd *td;
2981         Sitd *std;
2982
2983         ilock(ctlr);
2984         if(iso->state == Qclose){
2985                 iunlock(ctlr);
2986                 return;
2987         }
2988         ctlr->nreqs--;
2989         if(iso->state != Qrun && iso->state != Qdone)
2990                 panic("bad iso state");
2991         iso->state = Qclose;
2992         coherence();
2993         if(ctlr->isoload < load)
2994                 panic("ehci: low isoload");
2995         ctlr->isoload -= load;
2996         ctlr->load -= load;
2997         for(il = &ctlr->iso; *il != nil; il = &(*il)->next)
2998                 if(*il == iso)
2999                         break;
3000         if(*il == nil)
3001                 panic("cancleiso: not found");
3002         *il = iso->next;
3003
3004         frno = iso->td0frno;
3005         for(i = 0; i < iso->nframes; i++){
3006                 tp = iso->tdps[frno];
3007                 if(iso->hs != 0){
3008                         td = iso->itdps[frno];
3009                         for(t = 0; t < nelem(td->csw); t++)
3010                                 td->csw[t] &= ~(Itdioc|Itdactive);
3011                 }else{
3012                         std = iso->sitdps[frno];
3013                         std->csw &= ~(Stdioc|Stdactive);
3014                 }
3015                 coherence();
3016                 for(lp = &ctlr->frames[frno]; !(*lp & Lterm);
3017                     lp = &LPTR(*lp)[0])
3018                         if(LPTR(*lp) == tp)
3019                                 break;
3020                 if(*lp & Lterm)
3021                         panic("cancelisoio: td not found");
3022                 *lp = tp[0];
3023                 /*
3024                  * Iso uses a virtual frame window of Nisoframes, and we must
3025                  * restore pointers in copies of the window kept at ctlr->frames.
3026                  */
3027                 if(lp == &ctlr->frames[frno]){
3028                         n = ctlr->nframes / Nisoframes;
3029                         for(w = 1; w < n; w++){
3030                                 woff = w * Nisoframes;
3031                                 ctlr->frames[woff+frno] = *lp;
3032                         }
3033                 }
3034                 coherence();
3035                 frno = TRUNC(frno+pollival, Nisoframes);
3036         }
3037         iunlock(ctlr);
3038
3039         /*
3040          * wakeup anyone waiting for I/O and
3041          * wait to be sure no I/O is in progress in the controller.
3042          * and then wait to be sure episo* is no longer running.
3043          */
3044         wakeup(iso);
3045         diprint("cancelisoio iso %#p waiting for I/O to cease\n", iso);
3046         tsleep(&up->sleep, return0, 0, 5);
3047         qlock(iso);
3048         qunlock(iso);
3049         diprint("cancelisoio iso %#p releasing iso\n", iso);
3050
3051         frno = iso->td0frno;
3052         for(i = 0; i < iso->nframes; i++){
3053                 if(iso->hs != 0)
3054                         itdfree(iso->itdps[frno]);
3055                 else
3056                         sitdfree(iso->sitdps[frno]);
3057                 iso->tdps[frno] = nil;
3058                 frno = TRUNC(frno+pollival, Nisoframes);
3059         }
3060         free(iso->tdps);
3061         iso->tdps = nil;
3062         free(iso->data);
3063         iso->data = nil;
3064         coherence();
3065 }
3066
3067 static void
3068 epclose(Ep *ep)
3069 {
3070         Qio *io;
3071         Ctlio *cio;
3072         Isoio *iso;
3073         Ctlr *ctlr;
3074
3075         ctlr = ep->hp->aux;
3076         deprint("ehci: epclose ep%d.%d\n", ep->dev->nb, ep->nb);
3077
3078         if(ep->aux == nil)
3079                 panic("ehci: epclose called with closed ep");
3080         switch(ep->ttype){
3081         case Tctl:
3082                 cio = ep->aux;
3083                 cancelio(ctlr, cio);
3084                 free(cio->data);
3085                 cio->data = nil;
3086                 break;
3087         case Tintr:
3088         case Tbulk:
3089                 io = ep->aux;
3090                 ep->toggle[OREAD] = ep->toggle[OWRITE] = 0;
3091                 if(ep->mode != OWRITE){
3092                         cancelio(ctlr, &io[OREAD]);
3093                         if(io[OREAD].toggle == Tddata1)
3094                                 ep->toggle[OREAD] = 1;
3095                 }
3096                 if(ep->mode != OREAD){
3097                         cancelio(ctlr, &io[OWRITE]);
3098                         if(io[OWRITE].toggle == Tddata1)
3099                                 ep->toggle[OWRITE] = 1;
3100                 }
3101                 coherence();
3102                 break;
3103         case Tiso:
3104                 iso = ep->aux;
3105                 cancelisoio(ctlr, iso, ep->pollival, ep->load);
3106                 break;
3107         default:
3108                 panic("epclose: bad ttype");
3109         }
3110         free(ep->aux);
3111         ep->aux = nil;
3112 }
3113
3114 /*
3115  * return smallest power of 2 >= n
3116  */
3117 static int
3118 flog2(int n)
3119 {
3120         int i;
3121
3122         for(i = 0; (1 << i) < n; i++)
3123                 ;
3124         return i;
3125 }
3126
3127 /*
3128  * build the periodic scheduling tree:
3129  * framesize must be a multiple of the tree size
3130  */
3131 static void
3132 mkqhtree(Ctlr *ctlr)
3133 {
3134         int i, n, d, o, leaf0, depth;
3135         ulong leafs[Nintrleafs];
3136         Qh *qh;
3137         Qh **tree;
3138         Qtree *qt;
3139
3140         depth = flog2(Nintrleafs);
3141         n = (1 << (depth+1)) - 1;
3142         qt = mallocz(sizeof(*qt), 1);
3143         if(qt == nil)
3144                 panic("ehci: mkqhtree: no memory");
3145         qt->nel = n;
3146         qt->depth = depth;
3147         qt->bw = mallocz(n * sizeof(qt->bw), 1);
3148         qt->root = tree = mallocz(n * sizeof(Qh *), 1);
3149         if(qt->bw == nil || tree == nil)
3150                 panic("ehci: mkqhtree: no memory");
3151         for(i = 0; i < n; i++){
3152                 tree[i] = qh = edalloc();
3153                 if(qh == nil)
3154                         panic("ehci: mkqhtree: no memory");
3155                 qh->nlink = qh->alink = qh->link = Lterm;
3156                 qh->csw = Tdhalt;
3157                 qh->state = Qidle;
3158                 coherence();
3159                 if(i > 0)
3160                         qhlinkqh(tree[i], tree[(i-1)/2]);
3161         }
3162         ctlr->ntree = i;
3163         dprint("ehci: tree: %d endpoints allocated\n", i);
3164
3165         /* distribute leaves evenly round the frame list */
3166         leaf0 = n / 2;
3167         for(i = 0; i < Nintrleafs; i++){
3168                 o = 0;
3169                 for(d = 0; d < depth; d++){
3170                         o <<= 1;
3171                         if(i & (1 << d))
3172                                 o |= 1;
3173                 }
3174                 if(leaf0 + o >= n){
3175                         print("leaf0=%d o=%d i=%d n=%d\n", leaf0, o, i, n);
3176                         break;
3177                 }
3178                 leafs[i] = PADDR(tree[leaf0 + o]) | Lqh;
3179         }
3180         assert((ctlr->nframes % Nintrleafs) == 0);
3181         for(i = 0; i < ctlr->nframes; i += Nintrleafs){
3182                 memmove(ctlr->frames + i, leafs, sizeof leafs);
3183                 coherence();
3184         }
3185         ctlr->tree = qt;
3186         coherence();
3187 }
3188
3189 void
3190 ehcimeminit(Ctlr *ctlr)
3191 {
3192         int i, frsize;
3193         Eopio *opio;
3194
3195         opio = ctlr->opio;
3196         frsize = ctlr->nframes * sizeof(ulong);
3197         assert((frsize & 0xFFF) == 0);          /* must be 4k aligned */
3198         ctlr->frames = xspanalloc(frsize, frsize, 0);
3199         if(ctlr->frames == nil)
3200                 panic("ehci reset: no memory");
3201
3202         for (i = 0; i < ctlr->nframes; i++)
3203                 ctlr->frames[i] = Lterm;
3204         opio->frbase = PADDR(ctlr->frames);
3205         opio->frno = 0;
3206         coherence();
3207
3208         qhalloc(ctlr, nil, nil, nil);   /* init async list */
3209         mkqhtree(ctlr);                 /* init sync list */
3210         edfree(edalloc());              /* try to get some ones pre-allocated */
3211
3212         dprint("ehci %#p flb %#lux frno %#lux\n",
3213                 ctlr->capio, opio->frbase, opio->frno);
3214 }
3215
3216 static void
3217 init(Hci *hp)
3218 {
3219         Ctlr *ctlr;
3220         Eopio *opio;
3221         static int ctlrno;
3222         int i;
3223
3224         hp->highspeed = 1;
3225         ctlr = hp->aux;
3226         opio = ctlr->opio;
3227         dprint("ehci %#p init\n", ctlr->capio);
3228
3229         ilock(ctlr);
3230         /*
3231          * Unless we activate frroll interrupt
3232          * some machines won't post other interrupts.
3233          */
3234         opio->intr = Iusb|Ierr|Iportchg|Ihcerr|Iasync;
3235         coherence();
3236         opio->cmd |= Cpse;
3237         coherence();
3238         opio->cmd |= Case;
3239         coherence();
3240         ehcirun(ctlr, 1);
3241
3242         /* route all ports to us */
3243         opio->config = Callmine;
3244         coherence();
3245
3246         for (i = 0; i < hp->nports; i++)
3247                 opio->portsc[i] = Pspower;
3248         iunlock(ctlr);
3249         if(ehcidebug > 1)
3250                 dump(hp);
3251         ctlrno++;
3252 }
3253
3254 void
3255 ehcilinkage(Hci *hp)
3256 {
3257         hp->init = init;
3258         hp->dump = dump;
3259         hp->interrupt = interrupt;
3260         hp->epopen = epopen;
3261         hp->epclose = epclose;
3262         hp->epread = epread;
3263         hp->epwrite = epwrite;
3264         hp->seprintep = seprintep;
3265         hp->portenable = portenable;
3266         hp->portreset = portreset;
3267         hp->portstatus = portstatus;
3268 //      hp->shutdown = shutdown;
3269 //      hp->debug = setdebug;
3270         hp->type = "ehci";
3271 }