]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/digi/digi.c
This commit was generated by cvs2svn to compensate for changes in r138298,
[FreeBSD/FreeBSD.git] / sys / dev / digi / digi.c
1 /*-
2  * Copyright (c) 2001 Brian Somers <brian@Awfulhak.org>
3  *   based on work by Slawa Olhovchenkov
4  *                    John Prince <johnp@knight-trosoft.com>
5  *                    Eric Hernes
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  */
31
32 /*-
33  * TODO:
34  *      Figure out what the con bios stuff is supposed to do
35  *      Test with *LOTS* more cards - I only have a PCI8r and an ISA Xem.
36  */
37
38 #include "opt_compat.h"
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/proc.h>
43 #include <sys/conf.h>
44 #include <sys/linker.h>
45 #include <sys/kernel.h>
46 #include <sys/mbuf.h>
47 #include <sys/malloc.h>
48 #include <sys/module.h>
49 #include <sys/tty.h>
50 #include <sys/syslog.h>
51 #include <sys/fcntl.h>
52 #include <sys/serial.h>
53 #include <sys/bus.h>
54 #include <machine/resource.h>
55
56 #include <sys/digiio.h>
57 #include <dev/digi/digireg.h>
58 #include <dev/digi/digi.h>
59 #include <dev/digi/digi_mod.h>
60 #include <dev/digi/digi_pci.h>
61
62 static t_open_t         digiopen;
63 static d_open_t         digicopen;
64 static d_close_t        digicclose;
65 static t_ioctl_t        digiioctl;
66 static d_ioctl_t        digisioctl;
67 static d_ioctl_t        digicioctl;
68
69 static void     digistop(struct tty *tp, int rw);
70 static void     digibreak(struct tty *tp, int brk);
71 static int      digimodem(struct tty *tp, int sigon, int sigoff);
72 static void     digi_poll(void *ptr);
73 static void     digi_freemoduledata(struct digi_softc *);
74 static void     fepcmd(struct digi_p *port, int cmd, int op, int ncmds);
75 static void     digistart(struct tty *tp);
76 static int      digiparam(struct tty *tp, struct termios *t);
77 static void     digiclose(struct tty *tp);
78 static void     digi_intr(void *);
79 static int      digi_init(struct digi_softc *_sc);
80 static int      digi_loadmoduledata(struct digi_softc *);
81 static int      digi_inuse(struct digi_softc *);
82 static void     digi_free_state(struct digi_softc *);
83
84 #define fepcmd_b(port, cmd, op1, op2, ncmds) \
85         fepcmd(port, cmd, (op2 << 8) | op1, ncmds)
86 #define fepcmd_w        fepcmd
87
88 struct con_bios {
89         struct con_bios *next;
90         u_char *bios;
91         size_t size;
92 };
93
94 static struct con_bios *con_bios_list;
95 devclass_t       digi_devclass;
96 static char      driver_name[] = "digi";
97 unsigned         digi_debug = 0;
98
99 static struct speedtab digispeedtab[] = {
100         { 0,            0},                     /* old (sysV-like) Bx codes */
101         { 50,           1},
102         { 75,           2},
103         { 110,          3},
104         { 134,          4},
105         { 150,          5},
106         { 200,          6},
107         { 300,          7},
108         { 600,          8},
109         { 1200,         9},
110         { 1800,         10},
111         { 2400,         11},
112         { 4800,         12},
113         { 9600,         13},
114         { 19200,        14},
115         { 38400,        15},
116         { 57600,        (02000 | 1)},
117         { 76800,        (02000 | 2)},
118         { 115200,       (02000 | 3)},
119         { 230400,       (02000 | 6)},
120         { -1,           -1}
121 };
122
123 const struct digi_control_signals digi_xixe_signals = {
124         0x02, 0x08, 0x10, 0x20, 0x40, 0x80
125 };
126
127 const struct digi_control_signals digi_normal_signals = {
128         0x02, 0x80, 0x20, 0x10, 0x40, 0x01
129 };
130
131 static struct cdevsw digi_csw = {
132         .d_version =    D_VERSION,
133         .d_open =       digicopen,
134         .d_close =      digicclose,
135         .d_ioctl =      digicioctl,
136         .d_name =       driver_name,
137         .d_flags =      D_TTY | D_NEEDGIANT,
138 };
139
140 static void
141 digi_poll(void *ptr)
142 {
143         struct digi_softc *sc;
144
145         sc = (struct digi_softc *)ptr;
146         callout_handle_init(&sc->callout);
147         digi_intr(sc);
148         sc->callout = timeout(digi_poll, sc, (hz >= 200) ? hz / 100 : 1);
149 }
150
151 static void
152 digi_int_test(void *v)
153 {
154         struct digi_softc *sc = v;
155
156         callout_handle_init(&sc->inttest);
157 #ifdef DIGI_INTERRUPT
158         if (sc->intr_timestamp.tv_sec || sc->intr_timestamp.tv_usec) {
159                 /* interrupt OK! */
160                 return;
161         }
162         log(LOG_ERR, "digi%d: Interrupt didn't work, use polled mode\n", unit);
163 #endif
164         sc->callout = timeout(digi_poll, sc, (hz >= 200) ? hz / 100 : 1);
165 }
166
167 static void
168 digi_freemoduledata(struct digi_softc *sc)
169 {
170         if (sc->fep.data != NULL) {
171                 free(sc->fep.data, M_TTYS);
172                 sc->fep.data = NULL;
173         }
174         if (sc->link.data != NULL) {
175                 free(sc->link.data, M_TTYS);
176                 sc->link.data = NULL;
177         }
178         if (sc->bios.data != NULL) {
179                 free(sc->bios.data, M_TTYS);
180                 sc->bios.data = NULL;
181         }
182 }
183
184 static int
185 digi_bcopy(const void *vfrom, void *vto, size_t sz)
186 {
187         volatile const char *from = (volatile const char *)vfrom;
188         volatile char *to = (volatile char *)vto;
189         size_t i;
190
191         for (i = 0; i < sz; i++)
192                 *to++ = *from++;
193
194         from = (const volatile char *)vfrom;
195         to = (volatile char *)vto;
196         for (i = 0; i < sz; i++)
197                 if (*to++ != *from++)
198                         return (0);
199         return (1);
200 }
201
202 void
203 digi_delay(struct digi_softc *sc, const char *txt, u_long timo)
204 {
205         if (cold)
206                 DELAY(timo * 1000000 / hz);
207         else
208                 tsleep(sc, PUSER | PCATCH, txt, timo);
209 }
210
211 static int
212 digi_init(struct digi_softc *sc)
213 {
214         int i, cnt, resp;
215         u_char *ptr;
216         int lowwater;
217         struct digi_p *port;
218         volatile struct board_chan *bc;
219         struct tty *tp;
220
221         ptr = NULL;
222
223         if (sc->status == DIGI_STATUS_DISABLED) {
224                 log(LOG_ERR, "digi%d: Cannot init a disabled card\n",
225                     sc->res.unit);
226                 return (EIO);
227         }
228         if (sc->bios.data == NULL) {
229                 log(LOG_ERR, "digi%d: Cannot init without BIOS\n",
230                     sc->res.unit);
231                 return (EIO);
232         }
233 #if 0
234         if (sc->link.data == NULL && sc->model >= PCCX) {
235                 log(LOG_ERR, "digi%d: Cannot init without link info\n",
236                     sc->res.unit);
237                 return (EIO);
238         }
239 #endif
240         if (sc->fep.data == NULL) {
241                 log(LOG_ERR, "digi%d: Cannot init without fep code\n",
242                     sc->res.unit);
243                 return (EIO);
244         }
245         sc->status = DIGI_STATUS_NOTINIT;
246
247         if (sc->numports) {
248                 /*
249                  * We're re-initialising - maybe because someone's attached
250                  * another port module.  For now, we just re-initialise
251                  * everything.
252                  */
253                 if (digi_inuse(sc))
254                         return (EBUSY);
255
256                 digi_free_state(sc);
257         }
258
259         ptr = sc->setwin(sc, MISCGLOBAL);
260         for (i = 0; i < 16; i += 2)
261                 vW(ptr + i) = 0;
262
263         switch (sc->model) {
264         case PCXEVE:
265                 outb(sc->wport, 0xff);          /* window 7 */
266                 ptr = sc->vmem + (BIOSCODE & 0x1fff);
267
268                 if (!digi_bcopy(sc->bios.data, ptr, sc->bios.size)) {
269                         device_printf(sc->dev, "BIOS upload failed\n");
270                         return (EIO);
271                 }
272
273                 outb(sc->port, FEPCLR);
274                 break;
275
276         case PCXE:
277         case PCXI:
278         case PCCX:
279                 ptr = sc->setwin(sc, BIOSCODE + ((0xf000 - sc->mem_seg) << 4));
280                 if (!digi_bcopy(sc->bios.data, ptr, sc->bios.size)) {
281                         device_printf(sc->dev, "BIOS upload failed\n");
282                         return (EIO);
283                 }
284                 break;
285
286         case PCXEM:
287         case PCIEPCX:
288         case PCIXR:
289                 if (sc->pcibus)
290                         PCIPORT = FEPRST;
291                 else
292                         outb(sc->port, FEPRST | FEPMEM);
293
294                 for (i = 0; ((sc->pcibus ? PCIPORT : inb(sc->port)) &
295                     FEPMASK) != FEPRST; i++) {
296                         if (i > hz) {
297                                 log(LOG_ERR, "digi%d: %s init reset failed\n",
298                                     sc->res.unit, sc->name);
299                                 return (EIO);
300                         }
301                         digi_delay(sc, "digiinit0", 5);
302                 }
303                 DLOG(DIGIDB_INIT, (sc->dev, "Got init reset after %d us\n", i));
304
305                 /* Now upload the BIOS */
306                 cnt = (sc->bios.size < sc->win_size - BIOSOFFSET) ?
307                     sc->bios.size : sc->win_size - BIOSOFFSET;
308
309                 ptr = sc->setwin(sc, BIOSOFFSET);
310                 if (!digi_bcopy(sc->bios.data, ptr, cnt)) {
311                         device_printf(sc->dev, "BIOS upload (1) failed\n");
312                         return (EIO);
313                 }
314
315                 if (cnt != sc->bios.size) {
316                         /* and the second part */
317                         ptr = sc->setwin(sc, sc->win_size);
318                         if (!digi_bcopy(sc->bios.data + cnt, ptr,
319                             sc->bios.size - cnt)) {
320                                 device_printf(sc->dev, "BIOS upload failed\n");
321                                 return (EIO);
322                         }
323                 }
324
325                 ptr = sc->setwin(sc, 0);
326                 vW(ptr + 0) = 0x0401;
327                 vW(ptr + 2) = 0x0bf0;
328                 vW(ptr + 4) = 0x0000;
329                 vW(ptr + 6) = 0x0000;
330
331                 break;
332         }
333
334         DLOG(DIGIDB_INIT, (sc->dev, "BIOS uploaded\n"));
335
336         ptr = sc->setwin(sc, MISCGLOBAL);
337         W(ptr) = 0;
338
339         if (sc->pcibus) {
340                 PCIPORT = FEPCLR;
341                 resp = FEPRST;
342         } else if (sc->model == PCXEVE) {
343                 outb(sc->port, FEPCLR);
344                 resp = FEPRST;
345         } else {
346                 outb(sc->port, FEPCLR | FEPMEM);
347                 resp = FEPRST | FEPMEM;
348         }
349
350         for (i = 0; ((sc->pcibus ? PCIPORT : inb(sc->port)) & FEPMASK)
351             == resp; i++) {
352                 if (i > hz) {
353                         log(LOG_ERR, "digi%d: BIOS start failed\n",
354                             sc->res.unit);
355                         return (EIO);
356                 }
357                 digi_delay(sc, "digibios0", 5);
358         }
359
360         DLOG(DIGIDB_INIT, (sc->dev, "BIOS started after %d us\n", i));
361
362         for (i = 0; vW(ptr) != *(u_short *)"GD"; i++) {
363                 if (i > 2*hz) {
364                         log(LOG_ERR, "digi%d: BIOS boot failed "
365                             "(0x%02x != 0x%02x)\n",
366                             sc->res.unit, vW(ptr), *(u_short *)"GD");
367                         return (EIO);
368                 }
369                 digi_delay(sc, "digibios1", 5);
370         }
371
372         DLOG(DIGIDB_INIT, (sc->dev, "BIOS booted after %d iterations\n", i));
373
374         if (sc->link.data != NULL) {
375                 DLOG(DIGIDB_INIT, (sc->dev, "Loading link data\n"));
376                 ptr = sc->setwin(sc, 0xcd0);
377                 digi_bcopy(sc->link.data, ptr, 21);     /* XXX 21 ? */
378         }
379
380         /* load FEP/OS */
381
382         switch (sc->model) {
383         case PCXE:
384         case PCXEVE:
385         case PCXI:
386                 ptr = sc->setwin(sc, sc->model == PCXI ? 0x2000 : 0x0);
387                 digi_bcopy(sc->fep.data, ptr, sc->fep.size);
388
389                 /* A BIOS request to move our data to 0x2000 */
390                 ptr = sc->setwin(sc, MBOX);
391                 vW(ptr + 0) = 2;
392                 vW(ptr + 2) = sc->mem_seg + FEPCODESEG;
393                 vW(ptr + 4) = 0;
394                 vW(ptr + 6) = FEPCODESEG;
395                 vW(ptr + 8) = 0;
396                 vW(ptr + 10) = sc->fep.size;
397
398                 /* Run the BIOS request */
399                 outb(sc->port, FEPREQ | FEPMEM);
400                 outb(sc->port, FEPCLR | FEPMEM);
401
402                 for (i = 0; W(ptr); i++) {
403                         if (i > hz) {
404                                 log(LOG_ERR, "digi%d: FEP/OS move failed\n",
405                                     sc->res.unit);
406                                 sc->hidewin(sc);
407                                 return (EIO);
408                         }
409                         digi_delay(sc, "digifep0", 5);
410                 }
411                 DLOG(DIGIDB_INIT,
412                     (sc->dev, "FEP/OS moved after %d iterations\n", i));
413
414                 /* Clear the confirm word */
415                 ptr = sc->setwin(sc, FEPSTAT);
416                 vW(ptr + 0) = 0;
417
418                 /* A BIOS request to execute the FEP/OS */
419                 ptr = sc->setwin(sc, MBOX);
420                 vW(ptr + 0) = 0x01;
421                 vW(ptr + 2) = FEPCODESEG;
422                 vW(ptr + 4) = 0x04;
423
424                 /* Run the BIOS request */
425                 outb(sc->port, FEPREQ);
426                 outb(sc->port, FEPCLR);
427
428                 ptr = sc->setwin(sc, FEPSTAT);
429
430                 break;
431
432         case PCXEM:
433         case PCIEPCX:
434         case PCIXR:
435                 DLOG(DIGIDB_INIT, (sc->dev, "Loading FEP/OS\n"));
436
437                 cnt = (sc->fep.size < sc->win_size - BIOSOFFSET) ?
438                     sc->fep.size : sc->win_size - BIOSOFFSET;
439
440                 ptr = sc->setwin(sc, BIOSOFFSET);
441                 digi_bcopy(sc->fep.data, ptr, cnt);
442
443                 if (cnt != sc->fep.size) {
444                         ptr = sc->setwin(sc, BIOSOFFSET + cnt);
445                         digi_bcopy(sc->fep.data + cnt, ptr,
446                             sc->fep.size - cnt);
447                 }
448
449                 DLOG(DIGIDB_INIT, (sc->dev, "FEP/OS loaded\n"));
450
451                 ptr = sc->setwin(sc, 0xc30);
452                 W(ptr + 4) = 0x1004;
453                 W(ptr + 6) = 0xbfc0;
454                 W(ptr + 0) = 0x03;
455                 W(ptr + 2) = 0x00;
456
457                 /* Clear the confirm word */
458                 ptr = sc->setwin(sc, FEPSTAT);
459                 W(ptr + 0) = 0;
460
461                 if (sc->port)
462                         outb(sc->port, 0);              /* XXX necessary ? */
463
464                 break;
465
466         case PCCX:
467                 ptr = sc->setwin(sc, 0xd000);
468                 digi_bcopy(sc->fep.data, ptr, sc->fep.size);
469
470                 /* A BIOS request to execute the FEP/OS */
471                 ptr = sc->setwin(sc, 0xc40);
472                 W(ptr + 0) = 1;
473                 W(ptr + 2) = FEPCODE >> 4;
474                 W(ptr + 4) = 4;
475
476                 /* Clear the confirm word */
477                 ptr = sc->setwin(sc, FEPSTAT);
478                 W(ptr + 0) = 0;
479
480                 /* Run the BIOS request */
481                 outb(sc->port, FEPREQ | FEPMEM); /* send interrupt to BIOS */
482                 outb(sc->port, FEPCLR | FEPMEM);
483                 break;
484         }
485
486         /* Now wait 'till the FEP/OS has booted */
487         for (i = 0; vW(ptr) != *(u_short *)"OS"; i++) {
488                 if (i > 2*hz) {
489                         log(LOG_ERR, "digi%d: FEP/OS start failed "
490                             "(0x%02x != 0x%02x)\n",
491                             sc->res.unit, vW(ptr), *(u_short *)"OS");
492                         sc->hidewin(sc);
493                         return (EIO);
494                 }
495                 digi_delay(sc, "digifep1", 5);
496         }
497
498         DLOG(DIGIDB_INIT, (sc->dev, "FEP/OS started after %d iterations\n", i));
499
500         if (sc->model >= PCXEM) {
501                 ptr = sc->setwin(sc, 0xe04);
502                 vW(ptr) = 2;
503                 ptr = sc->setwin(sc, 0xc02);
504                 sc->numports = vW(ptr);
505         } else {
506                 ptr = sc->setwin(sc, 0xc22);
507                 sc->numports = vW(ptr);
508         }
509
510         if (sc->numports == 0) {
511                 device_printf(sc->dev, "%s, 0 ports found\n", sc->name);
512                 sc->hidewin(sc);
513                 return (0);
514         }
515
516         device_printf(sc->dev, "%s, %d ports found\n", sc->name, sc->numports);
517
518         if (sc->ports)
519                 free(sc->ports, M_TTYS);
520         sc->ports = malloc(sizeof(struct digi_p) * sc->numports,
521             M_TTYS, M_WAITOK | M_ZERO);
522
523         /*
524          * XXX Should read port 0xc90 for an array of 2byte values, 1 per
525          * port.  If the value is 0, the port is broken....
526          */
527
528         ptr = sc->setwin(sc, 0);
529
530         /* We should now init per-port structures */
531         bc = (volatile struct board_chan *)(ptr + CHANSTRUCT);
532         sc->gdata = (volatile struct global_data *)(ptr + FEP_GLOBAL);
533
534         sc->memcmd = ptr + sc->gdata->cstart;
535         sc->memevent = ptr + sc->gdata->istart;
536
537         for (i = 0; i < sc->numports; i++, bc++) {
538                 port = sc->ports + i;
539                 port->pnum = i;
540                 port->sc = sc;
541                 port->status = ENABLED;
542                 port->bc = bc;
543                 tp = port->tp = ttyalloc();
544                 tp->t_oproc = digistart;
545                 tp->t_param = digiparam;
546                 tp->t_modem = digimodem;
547                 tp->t_break = digibreak;
548                 tp->t_stop = digistop;
549                 tp->t_cioctl = digisioctl;
550                 tp->t_ioctl = digiioctl;
551                 tp->t_open = digiopen;
552                 tp->t_close = digiclose;
553                 tp->t_sc = port;
554
555                 if (sc->model == PCXEVE) {
556                         port->txbuf = ptr +
557                             (((bc->tseg - sc->mem_seg) << 4) & 0x1fff);
558                         port->rxbuf = ptr +
559                             (((bc->rseg - sc->mem_seg) << 4) & 0x1fff);
560                         port->txwin = FEPWIN | ((bc->tseg - sc->mem_seg) >> 9);
561                         port->rxwin = FEPWIN | ((bc->rseg - sc->mem_seg) >> 9);
562                 } else if (sc->model == PCXI || sc->model == PCXE) {
563                         port->txbuf = ptr + ((bc->tseg - sc->mem_seg) << 4);
564                         port->rxbuf = ptr + ((bc->rseg - sc->mem_seg) << 4);
565                         port->txwin = port->rxwin = 0;
566                 } else {
567                         port->txbuf = ptr +
568                             (((bc->tseg - sc->mem_seg) << 4) % sc->win_size);
569                         port->rxbuf = ptr +
570                             (((bc->rseg - sc->mem_seg) << 4) % sc->win_size);
571                         port->txwin = FEPWIN |
572                             (((bc->tseg - sc->mem_seg) << 4) / sc->win_size);
573                         port->rxwin = FEPWIN |
574                             (((bc->rseg - sc->mem_seg) << 4) / sc->win_size);
575                 }
576                 port->txbufsize = bc->tmax + 1;
577                 port->rxbufsize = bc->rmax + 1;
578
579                 lowwater = port->txbufsize >> 2;
580                 if (lowwater > 1024)
581                         lowwater = 1024;
582                 sc->setwin(sc, 0);
583                 fepcmd_w(port, STXLWATER, lowwater, 10);
584                 fepcmd_w(port, SRXLWATER, port->rxbufsize >> 2, 10);
585                 fepcmd_w(port, SRXHWATER, (3 * port->rxbufsize) >> 2, 10);
586
587                 bc->edelay = 100;
588
589                 ttyinitmode(tp, 0, 0);
590                 port->send_ring = 1;    /* Default action on signal RI */
591                 ttycreate(tp, NULL, 0, MINOR_CALLOUT, "D%r%r", sc->res.unit, i);
592         }
593
594         sc->hidewin(sc);
595         sc->inttest = timeout(digi_int_test, sc, hz);
596         /* fepcmd_w(&sc->ports[0], 0xff, 0, 0); */
597         sc->status = DIGI_STATUS_ENABLED;
598
599         return (0);
600 }
601
602 static int
603 digimodem(struct tty *tp, int sigon, int sigoff)
604 {
605         struct digi_softc *sc;
606         struct digi_p *port;
607         int bitand, bitor, mstat;
608
609         port = tp->t_sc;
610         sc = port->sc;
611
612         if (sigon == 0 && sigoff == 0) {
613                 port->sc->setwin(port->sc, 0);
614                 mstat = port->bc->mstat;
615                 port->sc->hidewin(port->sc);
616                 if (mstat & port->sc->csigs->rts)
617                         sigon |= SER_RTS;
618                 if (mstat & port->cd)
619                         sigon |= SER_DCD;
620                 if (mstat & port->dsr)
621                         sigon |= SER_DSR;
622                 if (mstat & port->sc->csigs->cts)
623                         sigon |= SER_CTS;
624                 if (mstat & port->sc->csigs->ri)
625                         sigon |= SER_RI;
626                 if (mstat & port->sc->csigs->dtr)
627                         sigon |= SER_DTR;
628                 return (sigon);
629         }
630
631         bitand = 0;
632         bitor = 0;
633
634         if (sigoff & SER_DTR)
635                 bitand |= port->sc->csigs->dtr;
636         if (sigoff & SER_RTS)
637                 bitand |= port->sc->csigs->rts;
638         if (sigon & SER_DTR)
639                 bitor |= port->sc->csigs->dtr;
640         if (sigon & SER_RTS)
641                 bitor |= port->sc->csigs->rts;
642         fepcmd_b(port, SETMODEM, bitor, ~bitand, 0);
643         return (0);
644 }
645
646 static int
647 digicopen(struct cdev *dev, int flag, int mode, struct thread *td)
648 {
649         struct digi_softc *sc;
650
651         sc = dev->si_drv1;
652         if (sc->status != DIGI_STATUS_ENABLED) {
653                 DLOG(DIGIDB_OPEN, (sc->dev, "Cannot open a disabled card\n"));
654                 return (ENXIO);
655         }
656         sc->opencnt++;
657         return (0);
658 }
659
660 static int
661 digiopen(struct tty *tp, struct cdev *dev)
662 {
663         int error;
664         struct digi_softc *sc;
665         struct digi_p *port;
666         volatile struct board_chan *bc;
667
668         port = tp->t_sc;
669         sc = port->sc;
670
671         if (sc->status != DIGI_STATUS_ENABLED) {
672                 DLOG(DIGIDB_OPEN, (sc->dev, "Cannot open a disabled card\n"));
673                 return (ENXIO);
674         }
675         bc = port->bc;
676
677         /*
678          * The device isn't open, so there are no conflicts.
679          * Initialize it.  Initialization is done twice in many
680          * cases: to preempt sleeping callin opens if we are callout,
681          * and to complete a callin open after DCD rises.
682          */
683         sc->setwin(sc, 0);
684
685         bc->rout = bc->rin;     /* clear input queue */
686         bc->idata = 1;
687         bc->iempty = 1;
688         bc->ilow = 1;
689         bc->mint = port->cd | port->sc->csigs->ri;
690         bc->tin = bc->tout;
691         if (port->ialtpin) {
692                 port->cd = sc->csigs->dsr;
693                 port->dsr = sc->csigs->cd;
694         } else {
695                 port->cd = sc->csigs->cd;
696                 port->dsr = sc->csigs->dsr;
697         }
698         tp->t_wopeners++;                       /* XXX required ? */
699         error = digiparam(tp, &tp->t_termios);
700         tp->t_wopeners--;
701
702         return (error);
703 }
704
705 static int
706 digicclose(struct cdev *dev, int flag, int mode, struct thread *td)
707 {
708         struct digi_softc *sc;
709
710         sc = dev->si_drv1;
711         sc->opencnt--;
712         return (0);
713 }
714
715 static void
716 digidtrwakeup(void *chan)
717 {
718         struct digi_p *port = chan;
719
720         port->status &= ~DIGI_DTR_OFF;
721         wakeup(&port->tp->t_dtr_wait);
722         port->tp->t_wopeners--;
723 }
724
725 static void
726 digiclose(struct tty *tp)
727 {
728         volatile struct board_chan *bc;
729         struct digi_p *port;
730         int s;
731
732         port = tp->t_sc;
733         bc = port->bc;
734
735         s = spltty();
736         port->sc->setwin(port->sc, 0);
737         bc->idata = 0;
738         bc->iempty = 0;
739         bc->ilow = 0;
740         bc->mint = 0;
741         if ((tp->t_cflag & HUPCL) ||
742             (!tp->t_actout && !(bc->mstat & port->cd) &&
743             !(tp->t_init_in.c_cflag & CLOCAL)) ||
744             !(tp->t_state & TS_ISOPEN)) {
745                 digimodem(tp, 0, SER_DTR | SER_RTS);
746                 if (tp->t_dtr_wait != 0) {
747                         /* Schedule a wakeup of any callin devices */
748                         tp->t_wopeners++;
749                         timeout(&digidtrwakeup, port, tp->t_dtr_wait);
750                         port->status |= DIGI_DTR_OFF;
751                 }
752         }
753         tp->t_actout = FALSE;
754         wakeup(&tp->t_actout);
755         wakeup(TSA_CARR_ON(tp));
756         splx(s);
757 }
758
759 /*
760  * Load module "digi_<mod>.ko" and look for a symbol called digi_mod_<mod>.
761  *
762  * Populate sc->bios, sc->fep, and sc->link from this data.
763  *
764  * sc->fep.data, sc->bios.data and sc->link.data are malloc()d according
765  * to their respective sizes.
766  *
767  * The module is unloaded when we're done.
768  */
769 static int
770 digi_loadmoduledata(struct digi_softc *sc)
771 {
772         struct digi_mod *digi_mod;
773         linker_file_t lf;
774         char *modfile, *sym;
775         caddr_t symptr;
776         int modlen, res;
777
778         KASSERT(sc->bios.data == NULL, ("Uninitialised BIOS variable"));
779         KASSERT(sc->fep.data == NULL, ("Uninitialised FEP variable"));
780         KASSERT(sc->link.data == NULL, ("Uninitialised LINK variable"));
781         KASSERT(sc->module != NULL, ("Uninitialised module name"));
782
783         modlen = strlen(sc->module);
784         modfile = malloc(modlen + 6, M_TEMP, M_WAITOK);
785         snprintf(modfile, modlen + 6, "digi_%s", sc->module);
786         res = linker_reference_module(modfile, NULL, &lf);
787         if ((res = linker_reference_module(modfile, NULL, &lf)) != 0)
788                 printf("%s: Failed %d to autoload module\n", modfile, res);
789         free(modfile, M_TEMP);
790         if (res != 0)
791                 return (res);
792
793         sym = malloc(modlen + 10, M_TEMP, M_WAITOK);
794         snprintf(sym, modlen + 10, "digi_mod_%s", sc->module);
795         if ((symptr = linker_file_lookup_symbol(lf, sym, 0)) == NULL)
796                 printf("digi_%s.ko: Symbol `%s' not found\n", sc->module, sym);
797         free(sym, M_TEMP);
798
799         digi_mod = (struct digi_mod *)symptr;
800         if (digi_mod->dm_version != DIGI_MOD_VERSION) {
801                 printf("digi_%s.ko: Invalid version %d (need %d)\n",
802                     sc->module, digi_mod->dm_version, DIGI_MOD_VERSION);
803                 linker_file_unload(lf, LINKER_UNLOAD_FORCE);
804                 return (EINVAL);
805         }
806
807         sc->bios.size = digi_mod->dm_bios.size;
808         if (sc->bios.size != 0 && digi_mod->dm_bios.data != NULL) {
809                 sc->bios.data = malloc(sc->bios.size, M_TTYS, M_WAITOK);
810                 bcopy(digi_mod->dm_bios.data, sc->bios.data, sc->bios.size);
811         }
812
813         sc->fep.size = digi_mod->dm_fep.size;
814         if (sc->fep.size != 0 && digi_mod->dm_fep.data != NULL) {
815                 sc->fep.data = malloc(sc->fep.size, M_TTYS, M_WAITOK);
816                 bcopy(digi_mod->dm_fep.data, sc->fep.data, sc->fep.size);
817         }
818
819         sc->link.size = digi_mod->dm_link.size;
820         if (sc->link.size != 0 && digi_mod->dm_link.data != NULL) {
821                 sc->link.data = malloc(sc->link.size, M_TTYS, M_WAITOK);
822                 bcopy(digi_mod->dm_link.data, sc->link.data, sc->link.size);
823         }
824
825         linker_file_unload(lf, LINKER_UNLOAD_FORCE);
826
827         return (0);
828 }
829
830 static int
831 digisioctl(struct cdev *dev, u_long cmd, caddr_t data, int fflag, struct thread *td)
832 {
833         struct digi_p *port;
834         struct digi_softc *sc;
835
836         port = dev->si_drv1;
837         sc = port->sc;
838
839         switch (cmd) {
840         case DIGIIO_GETALTPIN:
841                 if (ISINIT(dev))
842                         *(int *)data = port->ialtpin;
843                 else if (ISLOCK(dev))
844                         *(int *)data = port->laltpin;
845                 else
846                         return (ENOTTY);
847                 break;
848         case DIGIIO_SETALTPIN:
849                 if (ISINIT(dev)) {
850                         if (!port->laltpin) {
851                                 port->ialtpin = !!*(int *)data;
852                                 DLOG(DIGIDB_SET, (sc->dev,
853                                     "port%d: initial ALTPIN %s\n", port->pnum,
854                                     port->ialtpin ? "set" : "cleared"));
855                         }
856                 } else if (ISLOCK(dev)) {
857                         port->laltpin = !!*(int *)data;
858                         DLOG(DIGIDB_SET, (sc->dev,
859                             "port%d: ALTPIN %slocked\n",
860                             port->pnum, port->laltpin ? "" : "un"));
861                 } else
862                         return (ENOTTY);
863                 break;
864         default:
865                 return (ENOTTY);
866         }
867         return (0);
868 }
869
870 static int
871 digicioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
872 {
873         int error;
874         struct digi_softc *sc;
875
876         sc = dev->si_drv1;
877
878         if (sc->status == DIGI_STATUS_DISABLED)
879                 return (ENXIO);
880
881         switch (cmd) {
882         case DIGIIO_DEBUG:
883 #ifdef DEBUG
884                 digi_debug = *(int *)data;
885                 return (0);
886 #else
887                 device_printf(sc->dev, "DEBUG not defined\n");
888                 return (ENXIO);
889 #endif
890         case DIGIIO_REINIT:
891                 digi_loadmoduledata(sc);
892                 error = digi_init(sc);
893                 digi_freemoduledata(sc);
894                 return (error);
895
896         case DIGIIO_MODEL:
897                 *(enum digi_model *)data = sc->model;
898                 return (0);
899
900         case DIGIIO_IDENT:
901                 return (copyout(sc->name, *(char **)data,
902                     strlen(sc->name) + 1));
903         default:
904                 return (ENOIOCTL);
905         }
906 }
907
908 static int
909 digiioctl(struct tty *tp, u_long cmd, void *data, int flag, struct thread *td)
910 {
911         struct digi_softc *sc;
912         struct digi_p *port;
913
914         port = tp->t_sc;
915         sc = port->sc;
916         if (sc->status == DIGI_STATUS_DISABLED)
917                 return (ENXIO);
918
919         if (!(port->status & ENABLED))
920                 return (ENXIO);
921
922         switch (cmd) {
923         case DIGIIO_GETALTPIN:
924                 *(int *)data = !!(port->dsr == sc->csigs->cd);
925                 return (0);
926
927         case DIGIIO_SETALTPIN:
928                 if (!port->laltpin) {
929                         if (*(int *)data) {
930                                 DLOG(DIGIDB_SET, (sc->dev,
931                                     "port%d: ALTPIN set\n", port->pnum));
932                                 port->cd = sc->csigs->dsr;
933                                 port->dsr = sc->csigs->cd;
934                         } else {
935                                 DLOG(DIGIDB_SET, (sc->dev,
936                                     "port%d: ALTPIN cleared\n", port->pnum));
937                                 port->cd = sc->csigs->cd;
938                                 port->dsr = sc->csigs->dsr;
939                         }
940                 }
941                 return (0);
942         case DIGIIO_RING:
943                 port->send_ring = *(u_char *)data;
944                 break;
945         default:
946                 return (ENOTTY);
947         }
948         return (0);
949 }
950
951 static void
952 digibreak(struct tty *tp, int brk)
953 {
954         struct digi_p *port;
955
956         port = tp->t_sc;
957
958         /*
959          * now it sends 400 millisecond break because I don't know
960          * how to send an infinite break
961          */
962         if (brk)
963                 fepcmd_w(port, SENDBREAK, 400, 10);
964 }
965
966 static int
967 digiparam(struct tty *tp, struct termios *t)
968 {
969         struct digi_softc *sc;
970         struct digi_p *port;
971         int cflag;
972         int iflag;
973         int hflow;
974         int s;
975         int window;
976
977         port = tp->t_sc;
978         sc = port->sc;
979         DLOG(DIGIDB_SET, (sc->dev, "port%d: setting parameters\n", port->pnum));
980
981         if (t->c_ispeed == 0)
982                 t->c_ispeed = t->c_ospeed;
983
984         cflag = ttspeedtab(t->c_ospeed, digispeedtab);
985
986         if (cflag < 0 || (cflag > 0 && t->c_ispeed != t->c_ospeed))
987                 return (EINVAL);
988
989         s = splclock();
990
991         window = sc->window;
992         sc->setwin(sc, 0);
993
994         if (cflag == 0) {                               /* hangup */
995                 DLOG(DIGIDB_SET, (sc->dev, "port%d: hangup\n", port->pnum));
996                 digimodem(port->tp, 0, SER_DTR | SER_RTS);
997         } else {
998                 digimodem(port->tp, SER_DTR | SER_RTS, 0);
999
1000                 DLOG(DIGIDB_SET, (sc->dev, "port%d: CBAUD = %d\n", port->pnum,
1001                     cflag));
1002
1003 #if 0
1004                 /* convert flags to sysV-style values */
1005                 if (t->c_cflag & PARODD)
1006                         cflag |= 0x0200;
1007                 if (t->c_cflag & PARENB)
1008                         cflag |= 0x0100;
1009                 if (t->c_cflag & CSTOPB)
1010                         cflag |= 0x0080;
1011 #else
1012                 /* convert flags to sysV-style values */
1013                 if (t->c_cflag & PARODD)
1014                         cflag |= FEP_PARODD;
1015                 if (t->c_cflag & PARENB)
1016                         cflag |= FEP_PARENB;
1017                 if (t->c_cflag & CSTOPB)
1018                         cflag |= FEP_CSTOPB;
1019                 if (t->c_cflag & CLOCAL)
1020                         cflag |= FEP_CLOCAL;
1021 #endif
1022
1023                 cflag |= (t->c_cflag & CSIZE) >> 4;
1024                 DLOG(DIGIDB_SET, (sc->dev, "port%d: CFLAG = 0x%x\n", port->pnum,
1025                     cflag));
1026                 fepcmd_w(port, SETCFLAGS, (unsigned)cflag, 0);
1027         }
1028
1029         iflag =
1030             t->c_iflag & (IGNBRK | BRKINT | IGNPAR | PARMRK | INPCK | ISTRIP);
1031         if (port->c_iflag & IXON)
1032                 iflag |= 0x400;
1033         if (port->c_iflag & IXANY)
1034                 iflag |= 0x800;
1035         if (port->c_iflag & IXOFF)
1036                 iflag |= 0x1000;
1037
1038         DLOG(DIGIDB_SET, (sc->dev, "port%d: set iflag = 0x%x\n", port->pnum, iflag));
1039         fepcmd_w(port, SETIFLAGS, (unsigned)iflag, 0);
1040
1041         hflow = 0;
1042         if (t->c_cflag & CDTR_IFLOW)
1043                 hflow |= sc->csigs->dtr;
1044         if (t->c_cflag & CRTS_IFLOW)
1045                 hflow |= sc->csigs->rts;
1046         if (t->c_cflag & CCTS_OFLOW)
1047                 hflow |= sc->csigs->cts;
1048         if (t->c_cflag & CDSR_OFLOW)
1049                 hflow |= port->dsr;
1050         if (t->c_cflag & CCAR_OFLOW)
1051                 hflow |= port->cd;
1052
1053         DLOG(DIGIDB_SET, (sc->dev, "port%d: set hflow = 0x%x\n", port->pnum, hflow));
1054         fepcmd_w(port, SETHFLOW, 0xff00 | (unsigned)hflow, 0);
1055
1056         DLOG(DIGIDB_SET, (sc->dev, "port%d: set startc(0x%x), stopc(0x%x)\n",
1057             port->pnum, t->c_cc[VSTART], t->c_cc[VSTOP]));
1058         fepcmd_b(port, SONOFFC, t->c_cc[VSTART], t->c_cc[VSTOP], 0);
1059
1060         if (sc->window != 0)
1061                 sc->towin(sc, 0);
1062         if (window != 0)
1063                 sc->towin(sc, window);
1064         splx(s);
1065
1066         return (0);
1067 }
1068
1069 static void
1070 digi_intr(void *vp)
1071 {
1072         struct digi_p *port;
1073         char *cxcon;
1074         struct digi_softc *sc;
1075         int ehead, etail;
1076         volatile struct board_chan *bc;
1077         struct tty *tp;
1078         int head, tail;
1079         int wrapmask;
1080         int size, window;
1081         struct event {
1082                 u_char pnum;
1083                 u_char event;
1084                 u_char mstat;
1085                 u_char lstat;
1086         } event;
1087
1088         sc = vp;
1089
1090         if (sc->status != DIGI_STATUS_ENABLED) {
1091                 DLOG(DIGIDB_IRQ, (sc->dev, "interrupt on disabled board !\n"));
1092                 return;
1093         }
1094
1095 #ifdef DIGI_INTERRUPT
1096         microtime(&sc->intr_timestamp);
1097 #endif
1098
1099         window = sc->window;
1100         sc->setwin(sc, 0);
1101
1102         if (sc->model >= PCXEM && W(sc->vmem + 0xd00)) {
1103                 struct con_bios *con = con_bios_list;
1104                 register u_char *ptr;
1105
1106                 ptr = sc->vmem + W(sc->vmem + 0xd00);
1107                 while (con) {
1108                         if (ptr[1] && W(ptr + 2) == W(con->bios + 2))
1109                                 /* Not first block -- exact match */
1110                                 break;
1111
1112                         if (W(ptr + 4) >= W(con->bios + 4) &&
1113                             W(ptr + 4) <= W(con->bios + 6))
1114                                 /* Initial search concetrator BIOS */
1115                                 break;
1116                 }
1117
1118                 if (con == NULL) {
1119                         log(LOG_ERR, "digi%d: wanted bios LREV = 0x%04x"
1120                             " not found!\n", sc->res.unit, W(ptr + 4));
1121                         W(ptr + 10) = 0;
1122                         W(sc->vmem + 0xd00) = 0;
1123                         goto eoi;
1124                 }
1125                 cxcon = con->bios;
1126                 W(ptr + 4) = W(cxcon + 4);
1127                 W(ptr + 6) = W(cxcon + 6);
1128                 if (ptr[1] == 0)
1129                         W(ptr + 2) = W(cxcon + 2);
1130                 W(ptr + 8) = (ptr[1] << 6) + W(cxcon + 8);
1131                 size = W(cxcon + 10) - (ptr[1] << 10);
1132                 if (size <= 0) {
1133                         W(ptr + 8) = W(cxcon + 8);
1134                         W(ptr + 10) = 0;
1135                 } else {
1136                         if (size > 1024)
1137                                 size = 1024;
1138                         W(ptr + 10) = size;
1139                         bcopy(cxcon + (ptr[1] << 10), ptr + 12, size);
1140                 }
1141                 W(sc->vmem + 0xd00) = 0;
1142                 goto eoi;
1143         }
1144
1145         ehead = sc->gdata->ein;
1146         etail = sc->gdata->eout;
1147         if (ehead == etail) {
1148 #ifdef DEBUG
1149                 sc->intr_count++;
1150                 if (sc->intr_count % 6000 == 0) {
1151                         DLOG(DIGIDB_IRQ, (sc->dev,
1152                             "6000 useless polls %x %x\n", ehead, etail));
1153                         sc->intr_count = 0;
1154                 }
1155 #endif
1156                 goto eoi;
1157         }
1158         while (ehead != etail) {
1159                 event = *(volatile struct event *)(sc->memevent + etail);
1160
1161                 etail = (etail + 4) & sc->gdata->imax;
1162
1163                 if (event.pnum >= sc->numports) {
1164                         log(LOG_ERR, "digi%d: port %d: got event"
1165                             " on nonexisting port\n", sc->res.unit,
1166                             event.pnum);
1167                         continue;
1168                 }
1169                 port = &sc->ports[event.pnum];
1170                 bc = port->bc;
1171                 tp = port->tp;
1172
1173                 if (!(tp->t_state & TS_ISOPEN) && !tp->t_wopeners) {
1174                         DLOG(DIGIDB_IRQ, (sc->dev,
1175                             "port %d: event 0x%x on closed port\n",
1176                             event.pnum, event.event));
1177                         bc->rout = bc->rin;
1178                         bc->idata = 0;
1179                         bc->iempty = 0;
1180                         bc->ilow = 0;
1181                         bc->mint = 0;
1182                         continue;
1183                 }
1184                 if (event.event & ~ALL_IND)
1185                         log(LOG_ERR, "digi%d: port%d: ? event 0x%x mstat 0x%x"
1186                             " lstat 0x%x\n", sc->res.unit, event.pnum,
1187                             event.event, event.mstat, event.lstat);
1188
1189                 if (event.event & DATA_IND) {
1190                         DLOG(DIGIDB_IRQ, (sc->dev, "port %d: DATA_IND\n",
1191                             event.pnum));
1192                         wrapmask = port->rxbufsize - 1;
1193                         head = bc->rin;
1194                         tail = bc->rout;
1195
1196                         size = 0;
1197                         if (!(tp->t_state & TS_ISOPEN)) {
1198                                 bc->rout = head;
1199                                 goto end_of_data;
1200                         }
1201                         while (head != tail) {
1202                                 int top;
1203
1204                                 DLOG(DIGIDB_INT, (sc->dev,
1205                                     "port %d: p rx head = %d tail = %d\n",
1206                                     event.pnum, head, tail));
1207                                 top = (head > tail) ? head : wrapmask + 1;
1208                                 sc->towin(sc, port->rxwin);
1209                                 size = top - tail;
1210                                 if (tp->t_state & TS_CAN_BYPASS_L_RINT) {
1211                                         size = b_to_q((char *)port->rxbuf +
1212                                             tail, size, &tp->t_rawq);
1213                                         tail = top - size;
1214                                         ttwakeup(tp);
1215                                 } else for (; tail < top;) {
1216                                         ttyld_rint(tp, port->rxbuf[tail]);
1217                                         sc->towin(sc, port->rxwin);
1218                                         size--;
1219                                         tail++;
1220                                         if (tp->t_state & TS_TBLOCK)
1221                                                 break;
1222                                 }
1223                                 tail &= wrapmask;
1224                                 sc->setwin(sc, 0);
1225                                 bc->rout = tail;
1226                                 head = bc->rin;
1227                                 if (size)
1228                                         break;
1229                         }
1230
1231                         if (bc->orun) {
1232                                 CE_RECORD(port, CE_OVERRUN);
1233                                 log(LOG_ERR, "digi%d: port%d: %s\n",
1234                                     sc->res.unit, event.pnum,
1235                                     digi_errortxt(CE_OVERRUN));
1236                                 bc->orun = 0;
1237                         }
1238 end_of_data:
1239                         if (size) {
1240                                 tp->t_state |= TS_TBLOCK;
1241                                 port->status |= PAUSE_RX;
1242                                 DLOG(DIGIDB_RX, (sc->dev, "port %d: pause RX\n",
1243                                     event.pnum));
1244                         } else {
1245                                 bc->idata = 1;
1246                         }
1247                 }
1248
1249                 if (event.event & MODEMCHG_IND) {
1250                         DLOG(DIGIDB_MODEM, (sc->dev, "port %d: MODEMCHG_IND\n",
1251                             event.pnum));
1252
1253                         if ((event.mstat ^ event.lstat) & port->cd) {
1254                                 sc->hidewin(sc);
1255                                 ttyld_modem(tp, event.mstat & port->cd);
1256                                 sc->setwin(sc, 0);
1257                                 wakeup(TSA_CARR_ON(tp));
1258                         }
1259
1260                         if (event.mstat & sc->csigs->ri) {
1261                                 DLOG(DIGIDB_RI, (sc->dev, "port %d: RING\n",
1262                                     event.pnum));
1263                                 if (port->send_ring) {
1264                                         ttyld_rint(tp, 'R');
1265                                         ttyld_rint(tp, 'I');
1266                                         ttyld_rint(tp, 'N');
1267                                         ttyld_rint(tp, 'G');
1268                                         ttyld_rint(tp, '\r');
1269                                         ttyld_rint(tp, '\n');
1270                                 }
1271                         }
1272                 }
1273                 if (event.event & BREAK_IND) {
1274                         DLOG(DIGIDB_MODEM, (sc->dev, "port %d: BREAK_IND\n",
1275                             event.pnum));
1276                         ttyld_rint(tp, TTY_BI);
1277                 }
1278                 if (event.event & (LOWTX_IND | EMPTYTX_IND)) {
1279                         DLOG(DIGIDB_IRQ, (sc->dev, "port %d:%s%s\n",
1280                             event.pnum,
1281                             event.event & LOWTX_IND ? " LOWTX" : "",
1282                             event.event & EMPTYTX_IND ?  " EMPTYTX" : ""));
1283                         ttyld_start(tp);
1284                 }
1285         }
1286         sc->gdata->eout = etail;
1287 eoi:
1288         if (sc->window != 0)
1289                 sc->towin(sc, 0);
1290         if (window != 0)
1291                 sc->towin(sc, window);
1292 }
1293
1294 static void
1295 digistart(struct tty *tp)
1296 {
1297         struct digi_p *port;
1298         struct digi_softc *sc;
1299         volatile struct board_chan *bc;
1300         int head, tail;
1301         int size, ocount, totcnt = 0;
1302         int s;
1303         int wmask;
1304
1305         port = tp->t_sc;
1306         sc = port->sc;
1307         bc = port->bc;
1308
1309         wmask = port->txbufsize - 1;
1310
1311         s = spltty();
1312         port->lcc = tp->t_outq.c_cc;
1313         sc->setwin(sc, 0);
1314         if (!(tp->t_state & TS_TBLOCK)) {
1315                 if (port->status & PAUSE_RX) {
1316                         DLOG(DIGIDB_RX, (sc->dev, "port %d: resume RX\n",
1317                             port->pnum));
1318                         /*
1319                          * CAREFUL - braces are needed here if the DLOG is
1320                          * optimised out!
1321                          */
1322                 }
1323                 port->status &= ~PAUSE_RX;
1324                 bc->idata = 1;
1325         }
1326         if (!(tp->t_state & TS_TTSTOP) && port->status & PAUSE_TX) {
1327                 DLOG(DIGIDB_TX, (sc->dev, "port %d: resume TX\n", port->pnum));
1328                 port->status &= ~PAUSE_TX;
1329                 fepcmd_w(port, RESUMETX, 0, 10);
1330         }
1331         if (tp->t_outq.c_cc == 0)
1332                 tp->t_state &= ~TS_BUSY;
1333         else
1334                 tp->t_state |= TS_BUSY;
1335
1336         head = bc->tin;
1337         while (tp->t_outq.c_cc != 0) {
1338                 tail = bc->tout;
1339                 DLOG(DIGIDB_INT, (sc->dev, "port%d: s tx head = %d tail = %d\n",
1340                     port->pnum, head, tail));
1341
1342                 if (head < tail)
1343                         size = tail - head - 1;
1344                 else {
1345                         size = port->txbufsize - head;
1346                         if (tail == 0)
1347                                 size--;
1348                 }
1349
1350                 if (size == 0)
1351                         break;
1352                 sc->towin(sc, port->txwin);
1353                 ocount = q_to_b(&tp->t_outq, port->txbuf + head, size);
1354                 totcnt += ocount;
1355                 head += ocount;
1356                 head &= wmask;
1357                 sc->setwin(sc, 0);
1358                 bc->tin = head;
1359                 bc->iempty = 1;
1360                 bc->ilow = 1;
1361         }
1362         port->lostcc = tp->t_outq.c_cc;
1363         tail = bc->tout;
1364         if (head < tail)
1365                 size = port->txbufsize - tail + head;
1366         else
1367                 size = head - tail;
1368
1369         port->lbuf = size;
1370         DLOG(DIGIDB_INT, (sc->dev, "port%d: s total cnt = %d\n", port->pnum, totcnt));
1371         ttwwakeup(tp);
1372         splx(s);
1373 }
1374
1375 static void
1376 digistop(struct tty *tp, int rw)
1377 {
1378         struct digi_softc *sc;
1379         struct digi_p *port;
1380
1381         port = tp->t_sc;
1382         sc = port->sc;
1383
1384         DLOG(DIGIDB_TX, (sc->dev, "port %d: pause TX\n", port->pnum));
1385         port->status |= PAUSE_TX;
1386         fepcmd_w(port, PAUSETX, 0, 10);
1387 }
1388
1389 static void
1390 fepcmd(struct digi_p *port, int cmd, int op1, int ncmds)
1391 {
1392         u_char *mem;
1393         unsigned tail, head;
1394         int count, n;
1395
1396         mem = port->sc->memcmd;
1397
1398         port->sc->setwin(port->sc, 0);
1399
1400         head = port->sc->gdata->cin;
1401         mem[head + 0] = cmd;
1402         mem[head + 1] = port->pnum;
1403         *(u_short *)(mem + head + 2) = op1;
1404
1405         head = (head + 4) & port->sc->gdata->cmax;
1406         port->sc->gdata->cin = head;
1407
1408         for (count = FEPTIMEOUT; count > 0; count--) {
1409                 head = port->sc->gdata->cin;
1410                 tail = port->sc->gdata->cout;
1411                 n = (head - tail) & port->sc->gdata->cmax;
1412
1413                 if (n <= ncmds * sizeof(short) * 4)
1414                         break;
1415         }
1416         if (count == 0)
1417                 log(LOG_ERR, "digi%d: port%d: timeout on FEP command\n",
1418                     port->sc->res.unit, port->pnum);
1419 }
1420
1421 const char *
1422 digi_errortxt(int id)
1423 {
1424         static const char *error_desc[] = {
1425                 "silo overflow",
1426                 "interrupt-level buffer overflow",
1427                 "tty-level buffer overflow",
1428         };
1429
1430         KASSERT(id >= 0 && id < sizeof(error_desc) / sizeof(error_desc[0]),
1431             ("Unexpected digi error id %d\n", id));
1432
1433         return (error_desc[id]);
1434 }
1435
1436 int
1437 digi_attach(struct digi_softc *sc)
1438 {
1439         sc->res.ctldev = make_dev(&digi_csw,
1440             sc->res.unit << 16, UID_ROOT, GID_WHEEL,
1441             0600, "digi%r.ctl", sc->res.unit);
1442         sc->res.ctldev->si_drv1 = sc;
1443
1444         digi_loadmoduledata(sc);
1445         digi_init(sc);
1446         digi_freemoduledata(sc);
1447
1448         return (0);
1449 }
1450
1451 static int
1452 digi_inuse(struct digi_softc *sc)
1453 {
1454         int i;
1455         struct digi_p *port;
1456
1457         port = &sc->ports[0];
1458         for (i = 0; i < sc->numports; i++, port++)
1459                 if (port->tp->t_state & TS_ISOPEN) {
1460                         DLOG(DIGIDB_INIT, (sc->dev, "port%d: busy\n", i));
1461                         return (1);
1462                 } else if (port->tp->t_wopeners || port->opencnt) {
1463                         DLOG(DIGIDB_INIT, (sc->dev, "port%d: blocked in open\n",
1464                             i));
1465                         return (1);
1466                 }
1467         return (0);
1468 }
1469
1470 static void
1471 digi_free_state(struct digi_softc *sc)
1472 {
1473         int i;
1474
1475         /* Blow it all away */
1476
1477         for (i = 0; i < sc->numports; i++)
1478                 ttygone(sc->ports[i].tp);
1479
1480         /* XXX: this might be better done as a ttypurge method */
1481         untimeout(digi_poll, sc, sc->callout);
1482         callout_handle_init(&sc->callout);
1483         untimeout(digi_int_test, sc, sc->inttest);
1484         callout_handle_init(&sc->inttest);
1485
1486         for (i = 0; i < sc->numports; i++)
1487                 ttyfree(sc->ports[i].tp);
1488
1489         bus_teardown_intr(sc->dev, sc->res.irq, sc->res.irqHandler);
1490 #ifdef DIGI_INTERRUPT
1491         if (sc->res.irq != NULL) {
1492                 bus_release_resource(dev, SYS_RES_IRQ, sc->res.irqrid,
1493                     sc->res.irq);
1494                 sc->res.irq = NULL;
1495         }
1496 #endif
1497         if (sc->numports) {
1498                 KASSERT(sc->ports, ("digi%d: Lost my ports ?", sc->res.unit));
1499                 free(sc->ports, M_TTYS);
1500                 sc->ports = NULL;
1501                 sc->numports = 0;
1502         }
1503
1504         sc->status = DIGI_STATUS_NOTINIT;
1505 }
1506
1507 int
1508 digi_detach(device_t dev)
1509 {
1510         struct digi_softc *sc = device_get_softc(dev);
1511
1512         DLOG(DIGIDB_INIT, (sc->dev, "detaching\n"));
1513
1514         /* If we're INIT'd, numports must be 0 */
1515         KASSERT(sc->numports == 0 || sc->status != DIGI_STATUS_NOTINIT,
1516             ("digi%d: numports(%d) & status(%d) are out of sync",
1517             sc->res.unit, sc->numports, (int)sc->status));
1518
1519         if (digi_inuse(sc))
1520                 return (EBUSY);
1521
1522         digi_free_state(sc);
1523
1524         destroy_dev(sc->res.ctldev);
1525
1526         if (sc->res.mem != NULL) {
1527                 bus_release_resource(dev, SYS_RES_MEMORY, sc->res.mrid,
1528                     sc->res.mem);
1529                 sc->res.mem = NULL;
1530         }
1531         if (sc->res.io != NULL) {
1532                 bus_release_resource(dev, SYS_RES_IOPORT, sc->res.iorid,
1533                     sc->res.io);
1534                 sc->res.io = NULL;
1535         }
1536
1537         return (0);
1538 }
1539
1540 int
1541 digi_shutdown(device_t dev)
1542 {
1543         return (0);
1544 }
1545
1546 MODULE_VERSION(digi, 1);