aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ctau/if_ct.c
blob: a3df2a8c5d24dcd34e868968da4c836391b251e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
/*-
 * Cronyx-Tau adapter driver for FreeBSD.
 * Supports PPP/HDLC and Cisco/HDLC protocol in synchronous mode,
 * and asynchronous channels with full modem control.
 * Keepalive protocol implemented in both Cisco and PPP modes.
 *
 * Copyright (C) 1994-2002 Cronyx Engineering.
 * Author: Serge Vakulenko, <vak@cronyx.ru>
 *
 * Copyright (C) 1999-2004 Cronyx Engineering.
 * Author: Roman Kurakin, <rik@cronyx.ru>
 *
 * This software is distributed with NO WARRANTIES, not even the implied
 * warranties for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 * Authors grant any other persons or organisations a permission to use,
 * modify and redistribute this software in source and binary forms,
 * as long as this message is kept with the software, all derivative
 * works or modified versions.
 *
 * Cronyx Id: if_ct.c,v 1.1.2.31 2004/06/23 17:09:13 rik Exp $
 */

#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");

#include <sys/param.h>
#include <sys/proc.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <sys/mbuf.h>
#include <sys/sockio.h>
#include <sys/malloc.h>
#include <sys/priv.h>
#include <sys/socket.h>
#include <sys/sysctl.h>
#include <sys/conf.h>
#include <sys/errno.h>
#include <sys/tty.h>
#include <sys/bus.h>
#include <machine/bus.h>
#include <sys/rman.h>
#include <isa/isavar.h>
#include <sys/interrupt.h>
#include <vm/vm.h>
#include <vm/pmap.h>
#include <net/if.h>
#include <net/if_var.h>
#include <machine/cpufunc.h>
#include <machine/cserial.h>
#include <machine/resource.h>
#include <dev/cx/machdep.h>
#include <dev/ctau/ctddk.h>
#include <dev/cx/cronyxfw.h>
#include "opt_ng_cronyx.h"
#ifdef NETGRAPH_CRONYX
#   include "opt_netgraph.h"
#   include <netgraph/ng_message.h>
#   include <netgraph/netgraph.h>
#   include <dev/ctau/ng_ct.h>
#else
#   include <net/if_types.h>
#   include <net/if_sppp.h>
#   define PP_CISCO IFF_LINK2
#   include <net/bpf.h>
#endif
 
#define NCTAU 1

/* If we don't have Cronyx's sppp version, we don't have fr support via sppp */
#ifndef PP_FR
#define PP_FR 0
#endif

#define CT_DEBUG(d,s)	({if (d->chan->debug) {\
				printf ("%s: ", d->name); printf s;}})
#define CT_DEBUG2(d,s)	({if (d->chan->debug>1) {\
				printf ("%s: ", d->name); printf s;}})

#define CT_LOCK_NAME	"ctX"

#define CT_LOCK(_bd)		mtx_lock (&(_bd)->ct_mtx)
#define CT_UNLOCK(_bd)		mtx_unlock (&(_bd)->ct_mtx)
#define CT_LOCK_ASSERT(_bd)	mtx_assert (&(_bd)->ct_mtx, MA_OWNED)

static void ct_identify		__P((driver_t *, device_t));
static int ct_probe		__P((device_t));
static int ct_attach		__P((device_t));
static int ct_detach		__P((device_t));

static device_method_t ct_isa_methods [] = {
	DEVMETHOD(device_identify,	ct_identify),
	DEVMETHOD(device_probe,		ct_probe),
	DEVMETHOD(device_attach,	ct_attach),
	DEVMETHOD(device_detach,	ct_detach),

	DEVMETHOD_END
};

typedef struct _ct_dma_mem_t {
	unsigned long	phys;
	void		*virt;
	size_t		size;
	bus_dma_tag_t	dmat;
	bus_dmamap_t	mapp;
} ct_dma_mem_t;

typedef struct _drv_t {
	char name [8];
	ct_chan_t *chan;
	ct_board_t *board;
	struct _bdrv_t *bd;
	ct_dma_mem_t dmamem;
	int running;
#ifdef NETGRAPH
	char	nodename [NG_NODESIZ];
	hook_p	hook;
	hook_p	debug_hook;
	node_p	node;
	struct	ifqueue queue;
	struct	ifqueue hi_queue;
#else
	struct	ifqueue queue;
	struct	ifnet *ifp;
#endif
	short	timeout;
	struct	callout timeout_handle;
	struct	cdev *devt;
} drv_t;

typedef struct _bdrv_t {
	ct_board_t	*board;
	struct resource	*base_res;
	struct resource	*drq_res;
	struct resource	*irq_res;
	int		base_rid;
	int		drq_rid;
	int		irq_rid;
	void		*intrhand;
	drv_t		channel [NCHAN];
	struct mtx	ct_mtx;
} bdrv_t;

static driver_t ct_isa_driver = {
	"ct",
	ct_isa_methods,
	sizeof (bdrv_t),
};

static devclass_t ct_devclass;

static void ct_receive (ct_chan_t *c, char *data, int len);
static void ct_transmit (ct_chan_t *c, void *attachment, int len);
static void ct_error (ct_chan_t *c, int data);
static void ct_up (drv_t *d);
static void ct_start (drv_t *d);
static void ct_down (drv_t *d);
static void ct_watchdog (drv_t *d);
static void ct_watchdog_timer (void *arg);
#ifdef NETGRAPH
extern struct ng_type typestruct;
#else
static void ct_ifstart (struct ifnet *ifp);
static void ct_tlf (struct sppp *sp);
static void ct_tls (struct sppp *sp);
static int ct_sioctl (struct ifnet *ifp, u_long cmd, caddr_t data);
static void ct_initialize (void *softc);
#endif

static ct_board_t *adapter [NCTAU];
static drv_t *channel [NCTAU*NCHAN];
static struct callout led_timo [NCTAU];
static struct callout timeout_handle;

static int ct_open (struct cdev *dev, int oflags, int devtype, struct thread *td);
static int ct_close (struct cdev *dev, int fflag, int devtype, struct thread *td);
static int ct_ioctl (struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td);
static struct cdevsw ct_cdevsw = {
	.d_version  = D_VERSION,
	.d_open     = ct_open,
	.d_close    = ct_close,
	.d_ioctl    = ct_ioctl,
	.d_name     = "ct",
};

/*
 * Make an mbuf from data.
 */
static struct mbuf *makembuf (void *buf, u_int len)
{
	struct mbuf *m;

	MGETHDR (m, M_NOWAIT, MT_DATA);
	if (! m)
		return 0;
	if (!(MCLGET(m, M_NOWAIT))) {
		m_freem (m);
		return 0;
	}
	m->m_pkthdr.len = m->m_len = len;
	bcopy (buf, mtod (m, caddr_t), len);
	return m;
}

static void ct_timeout (void *arg)
{
	drv_t *d;
	int s, i, k;

	for (i = 0; i < NCTAU; ++i) {
		if (adapter[i] == NULL)
			continue;
		for (k = 0; k < NCHAN; k++) {
			d = channel[i * NCHAN + k];
			if (! d)
				continue;
			if (d->chan->mode != M_G703)
				continue;
			s = splimp ();
			CT_LOCK ((bdrv_t *)d->bd);
			ct_g703_timer (d->chan);
			CT_UNLOCK ((bdrv_t *)d->bd);
			splx (s);
		}
	}
	
	callout_reset (&timeout_handle, hz, ct_timeout, 0);
}

static void ct_led_off (void *arg)
{
	ct_board_t *b = arg;
	bdrv_t *bd = ((drv_t *)b->chan->sys)->bd;
	int s = splimp ();

	CT_LOCK (bd);
	ct_led (b, 0);
	CT_UNLOCK (bd);
	splx (s);
}

/*
 * Activate interrupt handler from DDK.
 */
static void ct_intr (void *arg)
{
	bdrv_t *bd = arg;
	ct_board_t *b = bd->board;
#ifndef NETGRAPH
	int i;
#endif
	int s = splimp ();

	CT_LOCK (bd);
	/* Turn LED on. */
	ct_led (b, 1);

	ct_int_handler (b);

	/* Turn LED off 50 msec later. */
	callout_reset (&led_timo[b->num], hz/20, ct_led_off, b);
	CT_UNLOCK (bd);
	splx (s);

#ifndef NETGRAPH
	/* Pass packets in a lock-free state */
	for (i = 0; i < NCHAN && b->chan[i].type; i++) {
		drv_t *d = b->chan[i].sys;
		struct mbuf *m;
		if (!d || !d->running)
			continue;
		while (_IF_QLEN(&d->queue)) {
			IF_DEQUEUE (&d->queue,m);
			if (!m)
				continue;
			sppp_input (d->ifp, m);	
		}
	}
#endif
}

static int probe_irq (ct_board_t *b, int irq)
{
	int mask, busy, cnt;

	/* Clear pending irq, if any. */
	ct_probe_irq (b, -irq);
	DELAY (100);
	for (cnt=0; cnt<5; ++cnt) {
		/* Get the mask of pending irqs, assuming they are busy.
		 * Activate the adapter on given irq. */
		busy = ct_probe_irq (b, irq);
		DELAY (1000);

		/* Get the mask of active irqs.
		 * Deactivate our irq. */
		mask = ct_probe_irq (b, -irq);
		DELAY (100);
		if ((mask & ~busy) == 1 << irq) {
			ct_probe_irq (b, 0);
			/* printf ("ct%d: irq %d ok, mask=0x%04x, busy=0x%04x\n",
				b->num, irq, mask, busy); */
			return 1;
		}
	}
	/* printf ("ct%d: irq %d not functional, mask=0x%04x, busy=0x%04x\n",
		b->num, irq, mask, busy); */
	ct_probe_irq (b, 0);
	return 0;
}

static	short porttab [] = {
		0x200, 0x220, 0x240, 0x260, 0x280, 0x2a0, 0x2c0, 0x2e0,
		0x300, 0x320, 0x340, 0x360, 0x380, 0x3a0, 0x3c0, 0x3e0, 0
	};
static	char dmatab [] = { 7, 6, 5, 0 };
static	char irqtab [] = { 5, 10, 11, 7, 3, 15, 12, 0 };

static int ct_is_free_res (device_t dev, int rid, int type, rman_res_t start,
	rman_res_t end, rman_res_t count)
{
	struct resource *res;
	
	if (!(res = bus_alloc_resource (dev, type, &rid, start, end, count, 0)))
		return 0;
		
	bus_release_resource (dev, type, rid, res);
	
	return 1;
}

static void ct_identify (driver_t *driver, device_t dev)
{
	rman_res_t iobase, rescount;
	int devcount;
	device_t *devices;
	device_t child;
	devclass_t my_devclass;
	int i, k;

	if ((my_devclass = devclass_find ("ct")) == NULL)
		return;

	devclass_get_devices (my_devclass, &devices, &devcount);

	if (devcount == 0) {
		/* We should find all devices by our self. We could alter other
		 * devices, but we don't have a choise
		 */
		for (i = 0; (iobase = porttab [i]) != 0; i++) {
			if (!ct_is_free_res (dev, 0, SYS_RES_IOPORT,
			    iobase, iobase + NPORT, NPORT))
				continue;
			if (ct_probe_board (iobase, -1, -1) == 0)
				continue;
			
			devcount++;
			child = BUS_ADD_CHILD (dev, ISA_ORDER_SPECULATIVE, "ct",
			    -1);

			if (child == NULL)
				return;

			device_set_desc_copy (child, "Cronyx Tau-ISA");
			device_set_driver (child, driver);
			bus_set_resource (child, SYS_RES_IOPORT, 0,
			    iobase, NPORT);

			if (devcount >= NCTAU)
				break;
		}
	} else {
		static	short porttab [] = {
			0x200, 0x220, 0x240, 0x260, 0x280, 0x2a0, 0x2c0, 0x2e0,
			0x300, 0x320, 0x340, 0x360, 0x380, 0x3a0, 0x3c0, 0x3e0, 0
		};
		/* Lets check user choise.
		 */
		for (k = 0; k < devcount; k++) {
			if (bus_get_resource (devices[k], SYS_RES_IOPORT, 0,
			    &iobase, &rescount) != 0)
				continue;

			for (i = 0; porttab [i] != 0; i++) {
				if (porttab [i] != iobase)
					continue;
					
				if (!ct_is_free_res (devices[k], 0, SYS_RES_IOPORT,
				    iobase, iobase + NPORT, NPORT))
					continue;

				if (ct_probe_board (iobase, -1, -1) == 0)
					continue;
				porttab [i] = -1;
				device_set_desc_copy (devices[k], "Cronyx Tau-ISA");
				break;
			}
			if (porttab [i] == 0) {
				device_delete_child (
				    device_get_parent (devices[k]),
				    devices [k]);
				devices[k] = 0;
				continue;
			}
		}
		for (k = 0; k < devcount; k++) {
			if (devices[k] == 0)
				continue;
			if (bus_get_resource (devices[k], SYS_RES_IOPORT, 0,
			    &iobase, &rescount) == 0)
				continue;
			for (i = 0; (iobase = porttab [i]) != 0; i++) {
				if (porttab [i] == -1)
					continue;
				if (!ct_is_free_res (devices[k], 0, SYS_RES_IOPORT,
				    iobase, iobase + NPORT, NPORT))
					continue;
				if (ct_probe_board (iobase, -1, -1) == 0)
					continue;
			
				bus_set_resource (devices[k], SYS_RES_IOPORT, 0,
				    iobase, NPORT);
				porttab [i] = -1;
				device_set_desc_copy (devices[k], "Cronyx Tau-ISA");
				break;
			}
			if (porttab [i] == 0) {
				device_delete_child (
				    device_get_parent (devices[k]),
				    devices [k]);
			}
		}		
		free (devices, M_TEMP);
	}
	
	return;
}

static int ct_probe (device_t dev)
{
	int unit = device_get_unit (dev);
	rman_res_t iobase, rescount;

	if (!device_get_desc (dev) ||
	    strcmp (device_get_desc (dev), "Cronyx Tau-ISA"))
		return ENXIO;

/*	KASSERT ((bd != NULL), ("ct%d: NULL device softc\n", unit));*/
	if (bus_get_resource (dev, SYS_RES_IOPORT, 0, &iobase, &rescount) != 0) {
		printf ("ct%d: Couldn't get IOPORT\n", unit);
		return ENXIO;
	}

	if (!ct_is_free_res (dev, 0, SYS_RES_IOPORT,
	    iobase, iobase + NPORT, NPORT)) {
		printf ("ct%d: Resource IOPORT isn't free\n", unit);
		return ENXIO;
	}
		
	if (!ct_probe_board (iobase, -1, -1)) {
		printf ("ct%d: probing for Tau-ISA at %jx faild\n", unit, iobase);
		return ENXIO;
	}
	
	return 0;
}

static void
ct_bus_dmamap_addr (void *arg, bus_dma_segment_t *segs, int nseg, int error)
{
	unsigned long *addr;

	if (error)
		return;

	KASSERT(nseg == 1, ("too many DMA segments, %d should be 1", nseg));
	addr = arg;
	*addr = segs->ds_addr;
}

static int
ct_bus_dma_mem_alloc (int bnum, int cnum, ct_dma_mem_t *dmem)
{
	int error;

	error = bus_dma_tag_create (NULL, 16, 0, BUS_SPACE_MAXADDR_24BIT,
		BUS_SPACE_MAXADDR, NULL, NULL, dmem->size, 1,
		dmem->size, 0, NULL, NULL, &dmem->dmat);
	if (error) {
		if (cnum >= 0)	printf ("ct%d-%d: ", bnum, cnum);
		else		printf ("ct%d: ", bnum);
		printf ("couldn't allocate tag for dma memory\n");
 		return 0;
	}
	error = bus_dmamem_alloc (dmem->dmat, (void **)&dmem->virt,
		BUS_DMA_NOWAIT | BUS_DMA_ZERO, &dmem->mapp);
	if (error) {
		if (cnum >= 0)	printf ("ct%d-%d: ", bnum, cnum);
		else		printf ("ct%d: ", bnum);
		printf ("couldn't allocate mem for dma memory\n");
		bus_dma_tag_destroy (dmem->dmat);
 		return 0;
	}
	error = bus_dmamap_load (dmem->dmat, dmem->mapp, dmem->virt,
		dmem->size, ct_bus_dmamap_addr, &dmem->phys, 0);
	if (error) {
		if (cnum >= 0)	printf ("ct%d-%d: ", bnum, cnum);
		else		printf ("ct%d: ", bnum);
		printf ("couldn't load mem map for dma memory\n");
		bus_dmamem_free (dmem->dmat, dmem->virt, dmem->mapp);
		bus_dma_tag_destroy (dmem->dmat);
 		return 0;
	}
	return 1;
}

static void
ct_bus_dma_mem_free (ct_dma_mem_t *dmem)
{
	bus_dmamap_unload (dmem->dmat, dmem->mapp);
	bus_dmamem_free (dmem->dmat, dmem->virt, dmem->mapp);
	bus_dma_tag_destroy (dmem->dmat);
}

/*
 * The adapter is present, initialize the driver structures.
 */
static int ct_attach (device_t dev)
{
	bdrv_t *bd = device_get_softc (dev);
	rman_res_t iobase, drq, irq, rescount;
	int unit = device_get_unit (dev);
	char *ct_ln = CT_LOCK_NAME;
	ct_board_t *b;
	ct_chan_t *c;
	drv_t *d;
	int i;
	int s;

	KASSERT ((bd != NULL), ("ct%d: NULL device softc\n", unit));
	
	bus_get_resource (dev, SYS_RES_IOPORT, 0, &iobase, &rescount);
	bd->base_rid = 0;
	bd->base_res = bus_alloc_resource (dev, SYS_RES_IOPORT, &bd->base_rid,
		iobase, iobase + NPORT, NPORT, RF_ACTIVE);
	if (! bd->base_res) {
		printf ("ct%d: cannot alloc base address\n", unit);
		return ENXIO;
	}
	
	if (bus_get_resource (dev, SYS_RES_DRQ, 0, &drq, &rescount) != 0) {
		for (i = 0; (drq = dmatab [i]) != 0; i++) {
			if (!ct_is_free_res (dev, 0, SYS_RES_DRQ,
			    drq, drq + 1, 1))
				continue;
			bus_set_resource (dev, SYS_RES_DRQ, 0, drq, 1);
			break;
		}
		
		if (dmatab[i] == 0) {	
			bus_release_resource (dev, SYS_RES_IOPORT, bd->base_rid,
				bd->base_res);
			printf ("ct%d: Couldn't get DRQ\n", unit);
			return ENXIO;
		}
	}
	
	bd->drq_rid = 0;
	bd->drq_res = bus_alloc_resource (dev, SYS_RES_DRQ, &bd->drq_rid,
		drq, drq + 1, 1, RF_ACTIVE);
	if (! bd->drq_res) {
		printf ("ct%d: cannot allocate drq\n", unit);
		bus_release_resource (dev, SYS_RES_IOPORT, bd->base_rid,
			bd->base_res);
		return ENXIO;
	}	
	
	if (bus_get_resource (dev, SYS_RES_IRQ, 0, &irq, &rescount) != 0) {
		for (i = 0; (irq = irqtab [i]) != 0; i++) {
			if (!ct_is_free_res (dev, 0, SYS_RES_IRQ,
			    irq, irq + 1, 1))
				continue;
			bus_set_resource (dev, SYS_RES_IRQ, 0, irq, 1);
			break;
		}
		
		if (irqtab[i] == 0) {	
			bus_release_resource (dev, SYS_RES_DRQ, bd->drq_rid,
				bd->drq_res);
			bus_release_resource (dev, SYS_RES_IOPORT, bd->base_rid,
				bd->base_res);
			printf ("ct%d: Couldn't get IRQ\n", unit);
			return ENXIO;
		}
	}
	
	bd->irq_rid = 0;
	bd->irq_res = bus_alloc_resource (dev, SYS_RES_IRQ, &bd->irq_rid,
		irq, irq + 1, 1, RF_ACTIVE);
	if (! bd->irq_res) {
		printf ("ct%d: Couldn't allocate irq\n", unit);
		bus_release_resource (dev, SYS_RES_DRQ, bd->drq_rid,
			bd->drq_res);
		bus_release_resource (dev, SYS_RES_IOPORT, bd->base_rid,
			bd->base_res);
		return ENXIO;
	}
	
	b = malloc (sizeof (ct_board_t), M_DEVBUF, M_WAITOK);
	if (!b) {
		printf ("ct:%d: Couldn't allocate memory\n", unit);
		return (ENXIO);
	}
	adapter[unit] = b;
	bzero (b, sizeof(ct_board_t));
	
	if (! ct_open_board (b, unit, iobase, irq, drq)) {
		printf ("ct%d: error loading firmware\n", unit);
		free (b, M_DEVBUF);
		bus_release_resource (dev, SYS_RES_IRQ, bd->irq_rid,
			bd->irq_res);
		bus_release_resource (dev, SYS_RES_DRQ, bd->drq_rid,
			bd->drq_res);
		bus_release_resource (dev, SYS_RES_IOPORT, bd->base_rid,
			bd->base_res);
 		return ENXIO;
	}

	bd->board = b;
	
	ct_ln[2] = '0' + unit;
	mtx_init (&bd->ct_mtx, ct_ln, MTX_NETWORK_LOCK, MTX_DEF|MTX_RECURSE);
	if (! probe_irq (b, irq)) {
		printf ("ct%d: irq %jd not functional\n", unit, irq);
		bd->board = 0;
		adapter [unit] = 0;
		free (b, M_DEVBUF);
		bus_release_resource (dev, SYS_RES_IRQ, bd->irq_rid,
			bd->irq_res);
		bus_release_resource (dev, SYS_RES_DRQ, bd->drq_rid,
			bd->drq_res);
		bus_release_resource (dev, SYS_RES_IOPORT, bd->base_rid,
			bd->base_res);
		mtx_destroy (&bd->ct_mtx);
 		return ENXIO;
	}
	
	callout_init (&led_timo[unit], 1);
	s = splimp ();
	if (bus_setup_intr (dev, bd->irq_res,
			   INTR_TYPE_NET|INTR_MPSAFE,
			   NULL, ct_intr, bd, &bd->intrhand)) {
		printf ("ct%d: Can't setup irq %jd\n", unit, irq);
		bd->board = 0;
		adapter [unit] = 0;
		free (b, M_DEVBUF);
		bus_release_resource (dev, SYS_RES_IRQ, bd->irq_rid,
			bd->irq_res);
		bus_release_resource (dev, SYS_RES_DRQ, bd->drq_rid,
			bd->drq_res);
		bus_release_resource (dev, SYS_RES_IOPORT, bd->base_rid,
			bd->base_res);
		mtx_destroy (&bd->ct_mtx);
		splx (s);
 		return ENXIO;		
	}

	CT_LOCK (bd);
	ct_init_board (b, b->num, b->port, irq, drq, b->type, b->osc);
	ct_setup_board (b, 0, 0, 0);
	CT_UNLOCK (bd);

	printf ("ct%d: <Cronyx-%s>, clock %s MHz\n", b->num, b->name,
		b->osc == 20000000 ? "20" : "16.384");

	for (c = b->chan; c < b->chan + NCHAN; ++c) {
		d = &bd->channel[c->num];
		d->dmamem.size = sizeof(ct_buf_t);
		if (! ct_bus_dma_mem_alloc (unit, c->num, &d->dmamem))
			continue;
		d->board = b;
		d->chan = c;
		d->bd = bd;
		c->sys = d;
		channel [b->num*NCHAN + c->num] = d;
		sprintf (d->name, "ct%d.%d", b->num, c->num);
		callout_init (&d->timeout_handle, 1);

#ifdef NETGRAPH
		if (ng_make_node_common (&typestruct, &d->node) != 0) {
			printf ("%s: cannot make common node\n", d->name);
			channel [b->num*NCHAN + c->num] = 0;
			c->sys = 0;		
			ct_bus_dma_mem_free (&d->dmamem);
			continue;
		}
		NG_NODE_SET_PRIVATE (d->node, d);
		sprintf (d->nodename, "%s%d", NG_CT_NODE_TYPE,
			 c->board->num*NCHAN + c->num);
		if (ng_name_node (d->node, d->nodename)) {
			printf ("%s: cannot name node\n", d->nodename);
			NG_NODE_UNREF (d->node);
			channel [b->num*NCHAN + c->num] = 0;
			c->sys = 0;		
			ct_bus_dma_mem_free (&d->dmamem);
			continue;
		}
		d->queue.ifq_maxlen = ifqmaxlen;
		d->hi_queue.ifq_maxlen = ifqmaxlen;
		mtx_init (&d->queue.ifq_mtx, "ct_queue", NULL, MTX_DEF);
		mtx_init (&d->hi_queue.ifq_mtx, "ct_queue_hi", NULL, MTX_DEF);
#else /*NETGRAPH*/
		d->ifp = if_alloc(IFT_PPP);
		if (d->ifp == NULL) {
			printf ("%s: cannot if_alloc common interface\n",
			    d->name);
			channel [b->num*NCHAN + c->num] = 0;
			c->sys = 0;		
			ct_bus_dma_mem_free (&d->dmamem);
			continue;
		}
		d->ifp->if_softc	= d;
		if_initname (d->ifp, "ct", b->num * NCHAN + c->num);
		d->ifp->if_mtu		= PP_MTU;
		d->ifp->if_flags	= IFF_POINTOPOINT | IFF_MULTICAST;
		d->ifp->if_ioctl	= ct_sioctl;
		d->ifp->if_start	= ct_ifstart;
		d->ifp->if_init		= ct_initialize;
		d->queue.ifq_maxlen	= NBUF;
		mtx_init (&d->queue.ifq_mtx, "ct_queue", NULL, MTX_DEF);
		sppp_attach (d->ifp);
		if_attach (d->ifp);
		IFP2SP(d->ifp)->pp_tlf	= ct_tlf;
		IFP2SP(d->ifp)->pp_tls	= ct_tls;
		/* If BPF is in the kernel, call the attach for it.
		 * Header size is 4 bytes. */
		bpfattach (d->ifp, DLT_PPP, 4);
#endif /*NETGRAPH*/
		CT_LOCK (bd);
		ct_start_chan (c, d->dmamem.virt, d->dmamem.phys);
		ct_register_receive (c, &ct_receive);
		ct_register_transmit (c, &ct_transmit);
		ct_register_error (c, &ct_error);
		CT_UNLOCK (bd);
		d->devt = make_dev (&ct_cdevsw, b->num*NCHAN+c->num, UID_ROOT,
				GID_WHEEL, 0600, "ct%d", b->num*NCHAN+c->num);
	}
	splx (s);
	
	return 0;
}

static int ct_detach (device_t dev)
{
	bdrv_t *bd = device_get_softc (dev);
	ct_board_t *b = bd->board;
	ct_chan_t *c;
	int s;
	
	KASSERT (mtx_initialized (&bd->ct_mtx), ("ct mutex not initialized"));

	s = splimp ();
	CT_LOCK (bd);
	/* Check if the device is busy (open). */
	for (c = b->chan; c < b->chan + NCHAN; ++c) {
		drv_t *d = (drv_t*) c->sys;

		if (!d || !d->chan->type)
			continue;

		if (d->running) {
			CT_UNLOCK (bd);
			splx (s);
			return EBUSY;
		}
	}

	/* Deactivate the timeout routine. */
	callout_stop (&led_timo[b->num]);

	CT_UNLOCK (bd);
	
	bus_teardown_intr (dev, bd->irq_res, bd->intrhand);
	bus_release_resource (dev, SYS_RES_IRQ, bd->irq_rid, bd->irq_res);
	
	bus_release_resource (dev, SYS_RES_DRQ, bd->drq_rid, bd->drq_res);
	
	bus_release_resource (dev, SYS_RES_IOPORT, bd->base_rid, bd->base_res);

	CT_LOCK (bd);
	ct_close_board (b);
	CT_UNLOCK (bd);

	/* Detach the interfaces, free buffer memory. */
	for (c = b->chan; c < b->chan + NCHAN; ++c) {
		drv_t *d = (drv_t*) c->sys;

		if (!d || !d->chan->type)
			continue;

		callout_stop (&d->timeout_handle);
#ifdef NETGRAPH
		if (d->node) {
			ng_rmnode_self (d->node);
			NG_NODE_UNREF (d->node);
			d->node = NULL;
		}
		mtx_destroy (&d->queue.ifq_mtx);
		mtx_destroy (&d->hi_queue.ifq_mtx);
#else
		/* Detach from the packet filter list of interfaces. */
		bpfdetach (d->ifp);

		/* Detach from the sync PPP list. */
		sppp_detach (d->ifp);

		if_detach (d->ifp);
		if_free (d->ifp);
		IF_DRAIN (&d->queue);
		mtx_destroy (&d->queue.ifq_mtx);
#endif		
		destroy_dev (d->devt);
	}

	CT_LOCK (bd);
	ct_led_off (b);
	CT_UNLOCK (bd);
	callout_drain (&led_timo[b->num]);
	splx (s);
	
	for (c = b->chan; c < b->chan + NCHAN; ++c) {
		drv_t *d = (drv_t*) c->sys;

		if (!d || !d->chan->type)
			continue;
		callout_drain(&d->timeout_handle);
		
		/* Deallocate buffers. */
		ct_bus_dma_mem_free (&d->dmamem);
	}
	bd->board = 0;
	adapter [b->num] = 0;
	free (b, M_DEVBUF);
	
	mtx_destroy (&bd->ct_mtx);

	return 0;	
}

#ifndef NETGRAPH
static void ct_ifstart (struct ifnet *ifp)
{
	drv_t *d = ifp->if_softc;
	bdrv_t *bd = d->bd;
	
	CT_LOCK (bd);
	ct_start (d);
	CT_UNLOCK (bd);
}

static void ct_tlf (struct sppp *sp)
{
	drv_t *d = SP2IFP(sp)->if_softc;

	CT_DEBUG (d, ("ct_tlf\n"));
/*	ct_set_dtr (d->chan, 0);*/
/*	ct_set_rts (d->chan, 0);*/
	if (!(sp->pp_flags & PP_FR) && !(d->ifp->if_flags & PP_CISCO))
		sp->pp_down (sp);
}

static void ct_tls (struct sppp *sp)
{
	drv_t *d = SP2IFP(sp)->if_softc;

	CT_DEBUG (d, ("ct_tls\n"));
	if (!(sp->pp_flags & PP_FR) && !(d->ifp->if_flags & PP_CISCO))
		sp->pp_up (sp);
}

/*
 * Initialization of interface.
 * Ii seems to be never called by upper level.
 */
static void ct_initialize (void *softc)
{
	drv_t *d = softc;

	CT_DEBUG (d, ("ct_initialize\n"));
}

/*
 * Process an ioctl request.
 */
static int ct_sioctl (struct ifnet *ifp, u_long cmd, caddr_t data)
{
	drv_t *d = ifp->if_softc;
	bdrv_t *bd = d->bd;
	int error, s, was_up, should_be_up;

	was_up = (ifp->if_drv_flags & IFF_DRV_RUNNING) != 0;
	error = sppp_ioctl (ifp, cmd, data);
	if (error)
		return error;

	if (! (ifp->if_flags & IFF_DEBUG))
		d->chan->debug = 0;
	else
		d->chan->debug = d->chan->debug_shadow;

	switch (cmd) {
	default:	   CT_DEBUG2 (d, ("ioctl 0x%lx\n", cmd)); return 0;
	case SIOCADDMULTI: CT_DEBUG2 (d, ("SIOCADDMULTI\n"));     return 0;
	case SIOCDELMULTI: CT_DEBUG2 (d, ("SIOCDELMULTI\n"));     return 0;
	case SIOCSIFFLAGS: CT_DEBUG2 (d, ("SIOCSIFFLAGS\n"));     break;
	case SIOCSIFADDR:  CT_DEBUG2 (d, ("SIOCSIFADDR\n"));      break;
	}

	/* We get here only in case of SIFFLAGS or SIFADDR. */
	s = splimp ();
	CT_LOCK (bd);
	should_be_up = (ifp->if_drv_flags & IFF_DRV_RUNNING) != 0;
	if (! was_up && should_be_up) {
		/* Interface goes up -- start it. */
		ct_up (d);
		ct_start (d);
	} else if (was_up && ! should_be_up) {
		/* Interface is going down -- stop it. */
		/* if ((IFP2SP(d->ifp)->pp_flags & PP_FR) || (ifp->if_flags & PP_CISCO))*/
		ct_down (d);
	}
	CT_UNLOCK (bd);
	splx (s);
	return 0;
}
#endif /*NETGRAPH*/

/*
 * Stop the interface.  Called on splimp().
 */
static void ct_down (drv_t *d)
{
	int s = splimp ();
	CT_DEBUG (d, ("ct_down\n"));
	ct_set_dtr (d->chan, 0);
	ct_set_rts (d->chan, 0);
	d->running = 0;
	callout_stop (&d->timeout_handle);
	splx (s);
}

/*
 * Start the interface.  Called on splimp().
 */
static void ct_up (drv_t *d)
{
	int s = splimp ();
	CT_DEBUG (d, ("ct_up\n"));
	ct_set_dtr (d->chan, 1);
	ct_set_rts (d->chan, 1);
	d->running = 1;
	splx (s);
}

/*
 * Start output on the (slave) interface.  Get another datagram to send
 * off of the interface queue, and copy it to the interface
 * before starting the output.
 */
static void ct_send (drv_t *d)
{
	struct mbuf *m;
	u_short len;

	CT_DEBUG2 (d, ("ct_send, tn=%d\n", d->chan->tn));

	/* No output if the interface is down. */
	if (! d->running)
		return;

	/* No output if the modem is off. */
	if (! ct_get_dsr (d->chan) && !ct_get_loop (d->chan))
		return;

	while (ct_buf_free (d->chan)) {
		/* Get the packet to send. */
#ifdef NETGRAPH
		IF_DEQUEUE (&d->hi_queue, m);
		if (! m)
			IF_DEQUEUE (&d->queue, m);
#else
		m = sppp_dequeue (d->ifp);
#endif
		if (! m)
			return;
#ifndef NETGRAPH
		BPF_MTAP (d->ifp, m);
#endif
		len = m_length (m, NULL);
		if (! m->m_next)
			ct_send_packet (d->chan, (u_char*)mtod (m, caddr_t),
				len, 0);
		else {
			m_copydata (m, 0, len, d->chan->tbuf[d->chan->te]);
			ct_send_packet (d->chan, d->chan->tbuf[d->chan->te],
				len, 0);
		}
		m_freem (m);

		/* Set up transmit timeout, if the transmit ring is not empty.
		 * Transmit timeout is 10 seconds. */
		d->timeout = 10;
	}
#ifndef NETGRAPH
	d->ifp->if_drv_flags |= IFF_DRV_OACTIVE;
#endif
}

/*
 * Start output on the interface.
 * Always called on splimp().
 */
static void ct_start (drv_t *d)
{
	int s = splimp ();

	if (d->running) {
		if (! d->chan->dtr)
			ct_set_dtr (d->chan, 1);
		if (! d->chan->rts)
			ct_set_rts (d->chan, 1);
		ct_send (d);
		callout_reset (&d->timeout_handle, hz, ct_watchdog_timer, d);
	}

	splx (s);
}

/*
 * Handle transmit timeouts.
 * Recover after lost transmit interrupts.
 * Always called on splimp().
 */
static void ct_watchdog (drv_t *d)
{

	CT_DEBUG (d, ("device timeout\n"));
	if (d->running) {
		ct_setup_chan (d->chan);
		ct_start_chan (d->chan, 0, 0);
		ct_set_dtr (d->chan, 1);
		ct_set_rts (d->chan, 1);
		ct_start (d);
	}
}

static void ct_watchdog_timer (void *arg)
{
	drv_t *d = arg;
	bdrv_t *bd = d->bd;

	CT_LOCK (bd);
	if (d->timeout == 1)
		ct_watchdog (d);
	if (d->timeout)
		d->timeout--;
	callout_reset (&d->timeout_handle, hz, ct_watchdog_timer, d);
	CT_UNLOCK (bd);
}

/*
 * Transmit callback function.
 */
static void ct_transmit (ct_chan_t *c, void *attachment, int len)
{
	drv_t *d = c->sys;

	if (!d)
		return;
	d->timeout = 0;
#ifndef NETGRAPH
	if_inc_counter(d->ifp, IFCOUNTER_OPACKETS, 1);
	d->ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
#endif
	ct_start (d);
}

/*
 * Process the received packet.
 */
static void ct_receive (ct_chan_t *c, char *data, int len)
{
	drv_t *d = c->sys;
	struct mbuf *m;
#ifdef NETGRAPH
	int error;
#endif

	if (!d || !d->running)
		return;

	m = makembuf (data, len);
	if (! m) {
		CT_DEBUG (d, ("no memory for packet\n"));
#ifndef NETGRAPH
		if_inc_counter(d->ifp, IFCOUNTER_IQDROPS, 1);
#endif
		return;
	}
	if (c->debug > 1)
		m_print (m, 0);
#ifdef NETGRAPH
	m->m_pkthdr.rcvif = 0;
	NG_SEND_DATA_ONLY (error, d->hook, m);
#else
	if_inc_counter(d->ifp, IFCOUNTER_IPACKETS, 1);
	m->m_pkthdr.rcvif = d->ifp;
	/* Check if there's a BPF listener on this interface.
	 * If so, hand off the raw packet to bpf. */
	BPF_MTAP(d->ifp, m);
	IF_ENQUEUE (&d->queue, m);
#endif
}

/*
 * Error callback function.
 */
static void ct_error (ct_chan_t *c, int data)
{
	drv_t *d = c->sys;

	if (!d)
		return;

	switch (data) {
	case CT_FRAME:
		CT_DEBUG (d, ("frame error\n"));
#ifndef NETGRAPH
		if_inc_counter(d->ifp, IFCOUNTER_IERRORS, 1);
#endif
		break;
	case CT_CRC:
		CT_DEBUG (d, ("crc error\n"));
#ifndef NETGRAPH
		if_inc_counter(d->ifp, IFCOUNTER_IERRORS, 1);
#endif
		break;
	case CT_OVERRUN:
		CT_DEBUG (d, ("overrun error\n"));
#ifndef NETGRAPH
		if_inc_counter(d->ifp, IFCOUNTER_COLLISIONS, 1);
		if_inc_counter(d->ifp, IFCOUNTER_IERRORS, 1);
#endif
		break;
	case CT_OVERFLOW:
		CT_DEBUG (d, ("overflow error\n"));
#ifndef NETGRAPH
		if_inc_counter(d->ifp, IFCOUNTER_IERRORS, 1);
#endif
		break;
	case CT_UNDERRUN:
		CT_DEBUG (d, ("underrun error\n"));
		d->timeout = 0;
#ifndef NETGRAPH
		if_inc_counter(d->ifp, IFCOUNTER_OERRORS, 1);
		d->ifp->if_drv_flags &= ~IFF_DRV_OACTIVE;
#endif
		ct_start (d);
		break;
	default:
		CT_DEBUG (d, ("error #%d\n", data));
	}
}

static int ct_open (struct cdev *dev, int oflags, int devtype, struct thread *td)
{
	drv_t *d;

	if (dev2unit(dev) >= NCTAU*NCHAN || ! (d = channel[dev2unit(dev)]))
		return ENXIO;
		
	CT_DEBUG2 (d, ("ct_open\n"));
	return 0;
}

static int ct_close (struct cdev *dev, int fflag, int devtype, struct thread *td)
{
	drv_t *d = channel [dev2unit(dev)];

	if (!d)
		return 0;

	CT_DEBUG2 (d, ("ct_close\n"));
	return 0;
}

static int ct_modem_status (ct_chan_t *c)
{
	drv_t *d = c->sys;
	bdrv_t *bd;
	int status, s;

	if (!d)
		return 0;

	bd = d->bd;
	
	status = d->running ? TIOCM_LE : 0;
	s = splimp ();
	CT_LOCK (bd);
	if (ct_get_cd  (c)) status |= TIOCM_CD;
	if (ct_get_cts (c)) status |= TIOCM_CTS;
	if (ct_get_dsr (c)) status |= TIOCM_DSR;
	if (c->dtr)	    status |= TIOCM_DTR;
	if (c->rts)	    status |= TIOCM_RTS;
	CT_UNLOCK (bd);
	splx (s);
	return status;
}

/*
 * Process an ioctl request on /dev/cronyx/ctauN.
 */
static int ct_ioctl (struct cdev *dev, u_long cmd, caddr_t data, int flag, struct thread *td)
{
	drv_t *d = channel [dev2unit (dev)];
	bdrv_t *bd;
	ct_chan_t *c;
	struct serial_statistics *st;
	struct e1_statistics *opte1;
	int error, s;
	char mask[16];

	if (!d || !d->chan)
		return 0;

	bd = d->bd;
	c = d->chan;

	switch (cmd) {
	case SERIAL_GETREGISTERED:
		bzero (mask, sizeof(mask));
		for (s=0; s<NCTAU*NCHAN; ++s)
			if (channel [s])
				mask [s/8] |= 1 << (s & 7);
		bcopy (mask, data, sizeof (mask));
		return 0;

#ifndef NETGRAPH
	case SERIAL_GETPROTO:
		strcpy ((char*)data, (IFP2SP(d->ifp)->pp_flags & PP_FR) ? "fr" :
			(d->ifp->if_flags & PP_CISCO) ? "cisco" : "ppp");
		return 0;

	case SERIAL_SETPROTO:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		if (d->ifp->if_drv_flags & IFF_DRV_RUNNING)
			return EBUSY;
		if (! strcmp ("cisco", (char*)data)) {
			IFP2SP(d->ifp)->pp_flags &= ~(PP_FR);
			IFP2SP(d->ifp)->pp_flags |= PP_KEEPALIVE;
			d->ifp->if_flags |= PP_CISCO;
		} else if (! strcmp ("fr", (char*)data)) {
			d->ifp->if_flags &= ~(PP_CISCO);
			IFP2SP(d->ifp)->pp_flags |= PP_FR | PP_KEEPALIVE;
		} else if (! strcmp ("ppp", (char*)data)) {
			IFP2SP(d->ifp)->pp_flags &= ~(PP_FR | PP_KEEPALIVE);
			d->ifp->if_flags &= ~(PP_CISCO);
		} else
			return EINVAL;
		return 0;

	case SERIAL_GETKEEPALIVE:
		if ((IFP2SP(d->ifp)->pp_flags & PP_FR) ||
			(d->ifp->if_flags & PP_CISCO))
			return EINVAL;
		*(int*)data = (IFP2SP(d->ifp)->pp_flags & PP_KEEPALIVE) ? 1 : 0;
		return 0;

	case SERIAL_SETKEEPALIVE:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		if ((IFP2SP(d->ifp)->pp_flags & PP_FR) ||
			(d->ifp->if_flags & PP_CISCO))
			return EINVAL;
		if (*(int*)data)
			IFP2SP(d->ifp)->pp_flags |= PP_KEEPALIVE;
		else
			IFP2SP(d->ifp)->pp_flags &= ~PP_KEEPALIVE;
		return 0;
#endif /*NETGRAPH*/

	case SERIAL_GETMODE:
		*(int*)data = SERIAL_HDLC;
		return 0;

	case SERIAL_GETCFG:
		if (c->mode == M_HDLC)
			return EINVAL;
		switch (ct_get_config (c->board)) {
		default:    *(char*)data = 'a'; break;
		case CFG_B: *(char*)data = 'b'; break;
		case CFG_C: *(char*)data = 'c'; break;
		}
		return 0;

	case SERIAL_SETCFG:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		if (c->mode == M_HDLC)
			return EINVAL;
		s = splimp ();
		CT_LOCK (bd);
		switch (*(char*)data) {
		case 'a': ct_set_config (c->board, CFG_A); break;
		case 'b': ct_set_config (c->board, CFG_B); break;
		case 'c': ct_set_config (c->board, CFG_C); break;
		}
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETSTAT:
		st = (struct serial_statistics*) data;
		st->rintr  = c->rintr;
		st->tintr  = c->tintr;
		st->mintr  = c->mintr;
		st->ibytes = c->ibytes;
		st->ipkts  = c->ipkts;
		st->ierrs  = c->ierrs;
		st->obytes = c->obytes;
		st->opkts  = c->opkts;
		st->oerrs  = c->oerrs;
		return 0;

	case SERIAL_GETESTAT:
		opte1 = (struct e1_statistics*)data;
		opte1->status	   = c->status;
		opte1->cursec	   = c->cursec;
		opte1->totsec	   = c->totsec + c->cursec;

		opte1->currnt.bpv   = c->currnt.bpv;
		opte1->currnt.fse   = c->currnt.fse;
		opte1->currnt.crce  = c->currnt.crce;
		opte1->currnt.rcrce = c->currnt.rcrce;
		opte1->currnt.uas   = c->currnt.uas;
		opte1->currnt.les   = c->currnt.les;
		opte1->currnt.es    = c->currnt.es;
		opte1->currnt.bes   = c->currnt.bes;
		opte1->currnt.ses   = c->currnt.ses;
		opte1->currnt.oofs  = c->currnt.oofs;
		opte1->currnt.css   = c->currnt.css;
		opte1->currnt.dm    = c->currnt.dm;

		opte1->total.bpv   = c->total.bpv   + c->currnt.bpv;
		opte1->total.fse   = c->total.fse   + c->currnt.fse;
		opte1->total.crce  = c->total.crce  + c->currnt.crce;
		opte1->total.rcrce = c->total.rcrce + c->currnt.rcrce;
		opte1->total.uas   = c->total.uas   + c->currnt.uas;
		opte1->total.les   = c->total.les   + c->currnt.les;
		opte1->total.es	   = c->total.es    + c->currnt.es;
		opte1->total.bes   = c->total.bes   + c->currnt.bes;
		opte1->total.ses   = c->total.ses   + c->currnt.ses;
		opte1->total.oofs  = c->total.oofs  + c->currnt.oofs;
		opte1->total.css   = c->total.css   + c->currnt.css;
		opte1->total.dm	   = c->total.dm    + c->currnt.dm;
		for (s=0; s<48; ++s) {
			opte1->interval[s].bpv   = c->interval[s].bpv;
			opte1->interval[s].fse   = c->interval[s].fse;
			opte1->interval[s].crce  = c->interval[s].crce;
			opte1->interval[s].rcrce = c->interval[s].rcrce;
			opte1->interval[s].uas   = c->interval[s].uas;
			opte1->interval[s].les   = c->interval[s].les;
			opte1->interval[s].es	 = c->interval[s].es;
			opte1->interval[s].bes   = c->interval[s].bes;
			opte1->interval[s].ses   = c->interval[s].ses;
			opte1->interval[s].oofs  = c->interval[s].oofs;
			opte1->interval[s].css   = c->interval[s].css;
			opte1->interval[s].dm	 = c->interval[s].dm;
		}
		return 0;

	case SERIAL_CLRSTAT:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		c->rintr = 0;
		c->tintr = 0;
		c->mintr = 0;
		c->ibytes = 0;
		c->ipkts = 0;
		c->ierrs = 0;
		c->obytes = 0;
		c->opkts = 0;
		c->oerrs = 0;
		bzero (&c->currnt, sizeof (c->currnt));
		bzero (&c->total, sizeof (c->total));
		bzero (c->interval, sizeof (c->interval));
		return 0;

	case SERIAL_GETBAUD:
		*(long*)data = ct_get_baud(c);
		return 0;

	case SERIAL_SETBAUD:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		s = splimp ();
		CT_LOCK (bd);
		ct_set_baud (c, *(long*)data);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETLOOP:
		*(int*)data = ct_get_loop (c);
		return 0;

	case SERIAL_SETLOOP:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		s = splimp ();
		CT_LOCK (bd);
		ct_set_loop (c, *(int*)data);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETDPLL:
		if (c->mode == M_E1 || c->mode == M_G703)
			return EINVAL;
		*(int*)data = ct_get_dpll (c);
		return 0;

	case SERIAL_SETDPLL:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		if (c->mode == M_E1 || c->mode == M_G703)
			return EINVAL;
		s = splimp ();
		CT_LOCK (bd);
		ct_set_dpll (c, *(int*)data);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETNRZI:
		if (c->mode == M_E1 || c->mode == M_G703)
			return EINVAL;
		*(int*)data = ct_get_nrzi (c);
		return 0;

	case SERIAL_SETNRZI:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		if (c->mode == M_E1 || c->mode == M_G703)
			return EINVAL;
		s = splimp ();
		CT_LOCK (bd);
		ct_set_nrzi (c, *(int*)data);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETDEBUG:
		*(int*)data = c->debug;
		return 0;

	case SERIAL_SETDEBUG:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
#ifndef	NETGRAPH
		/*
		 * The debug_shadow is always greater than zero for logic 
		 * simplicity.  For switching debug off the IFF_DEBUG is
		 * responsible.
		 */
		c->debug_shadow = (*(int*)data) ? (*(int*)data) : 1;
		if (d->ifp->if_flags & IFF_DEBUG)
			c->debug = c->debug_shadow;
#else
		c->debug = *(int*)data;
#endif
		return 0;

	case SERIAL_GETHIGAIN:
		if (c->mode != M_E1)
			return EINVAL;
		*(int*)data = ct_get_higain (c);
		return 0;

	case SERIAL_SETHIGAIN:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		s = splimp ();
		CT_LOCK (bd);
		ct_set_higain (c, *(int*)data);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETPHONY:
		CT_DEBUG2 (d, ("ioctl: getphony\n"));
		if (c->mode != M_E1)
			return EINVAL;
		*(int*)data = c->gopt.phony;
		return 0;

	case SERIAL_SETPHONY:
		CT_DEBUG2 (d, ("ioctl: setphony\n"));
		if (c->mode != M_E1)
			return EINVAL;
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		s = splimp ();
		CT_LOCK (bd);
		ct_set_phony (c, *(int*)data);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETCLK:
		if (c->mode != M_E1 && c->mode != M_G703)
			return EINVAL;
		switch (ct_get_clk(c)) {
		default:	 *(int*)data = E1CLK_INTERNAL;		break;
		case GCLK_RCV:   *(int*)data = E1CLK_RECEIVE;		break;
		case GCLK_RCLKO: *(int*)data = c->num ?
			E1CLK_RECEIVE_CHAN0 : E1CLK_RECEIVE_CHAN1;	break;
		}
		return 0;

	case SERIAL_SETCLK:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		s = splimp ();
		CT_LOCK (bd);
		switch (*(int*)data) {
		default:		    ct_set_clk (c, GCLK_INT);   break;
		case E1CLK_RECEIVE:	    ct_set_clk (c, GCLK_RCV);   break;
		case E1CLK_RECEIVE_CHAN0:
		case E1CLK_RECEIVE_CHAN1:
					    ct_set_clk (c, GCLK_RCLKO); break;
		}
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETTIMESLOTS:
		if (c->mode != M_E1)
			return EINVAL;
		*(long*)data = ct_get_ts (c);
		return 0;

	case SERIAL_SETTIMESLOTS:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		s = splimp ();
		CT_LOCK (bd);
		ct_set_ts (c, *(long*)data);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETSUBCHAN:
		if (c->mode != M_E1)
			return EINVAL;
		*(long*)data = ct_get_subchan (c->board);
		return 0;

	case SERIAL_SETSUBCHAN:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		s = splimp ();
		CT_LOCK (bd);
		ct_set_subchan (c->board, *(long*)data);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETINVCLK:
	case SERIAL_GETINVTCLK:
		if (c->mode == M_E1 || c->mode == M_G703)
			return EINVAL;
		*(int*)data = ct_get_invtxc (c);
		return 0;

	case SERIAL_GETINVRCLK:
		if (c->mode == M_E1 || c->mode == M_G703)
			return EINVAL;
		*(int*)data = ct_get_invrxc (c);
		return 0;

	case SERIAL_SETINVCLK:
	case SERIAL_SETINVTCLK:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		if (c->mode == M_E1 || c->mode == M_G703)
			return EINVAL;
		s = splimp ();
		CT_LOCK (bd);
		ct_set_invtxc (c, *(int*)data);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_SETINVRCLK:
		/* Only for superuser! */
		error = priv_check (td, PRIV_DRIVER);
		if (error)
			return error;
		if (c->mode == M_E1 || c->mode == M_G703)
			return EINVAL;
		s = splimp ();
		CT_LOCK (bd);
		ct_set_invrxc (c, *(int*)data);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case SERIAL_GETLEVEL:
		if (c->mode != M_G703)
			return EINVAL;
		s = splimp ();
		CT_LOCK (bd);
		*(int*)data = ct_get_lq (c);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case TIOCSDTR:	/* Set DTR */
		s = splimp ();
		CT_LOCK (bd);
		ct_set_dtr (c, 1);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case TIOCCDTR:	/* Clear DTR */
		s = splimp ();
		CT_LOCK (bd);
		ct_set_dtr (c, 0);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case TIOCMSET:	/* Set DTR/RTS */
		s = splimp ();
		CT_LOCK (bd);
		ct_set_dtr (c, (*(int*)data & TIOCM_DTR) ? 1 : 0);
		ct_set_rts (c, (*(int*)data & TIOCM_RTS) ? 1 : 0);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case TIOCMBIS:	/* Add DTR/RTS */
		s = splimp ();
		CT_LOCK (bd);
		if (*(int*)data & TIOCM_DTR) ct_set_dtr (c, 1);
		if (*(int*)data & TIOCM_RTS) ct_set_rts (c, 1);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case TIOCMBIC:	/* Clear DTR/RTS */
		s = splimp ();
		CT_LOCK (bd);
		if (*(int*)data & TIOCM_DTR) ct_set_dtr (c, 0);
		if (*(int*)data & TIOCM_RTS) ct_set_rts (c, 0);
		CT_UNLOCK (bd);
		splx (s);
		return 0;

	case TIOCMGET:	/* Get modem status */
		*(int*)data = ct_modem_status (c);
		return 0;
	}
	return ENOTTY;
}

#ifdef NETGRAPH
static int ng_ct_constructor (node_p node)
{
	drv_t *d = NG_NODE_PRIVATE (node);
	CT_DEBUG (d, ("Constructor\n"));
	return EINVAL;
}

static int ng_ct_newhook (node_p node, hook_p hook, const char *name)
{
	int s;
	drv_t *d = NG_NODE_PRIVATE (node);

	if (!d)
		return EINVAL;
		
	bdrv_t *bd = d->bd;
	
	/* Attach debug hook */
	if (strcmp (name, NG_CT_HOOK_DEBUG) == 0) {
		NG_HOOK_SET_PRIVATE (hook, NULL);
		d->debug_hook = hook;
		return 0;
	}

	/* Check for raw hook */
	if (strcmp (name, NG_CT_HOOK_RAW) != 0)
		return EINVAL;

	NG_HOOK_SET_PRIVATE (hook, d);
	d->hook = hook;
	s = splimp ();
	CT_LOCK (bd);
	ct_up (d);
	CT_UNLOCK (bd);
	splx (s);
	return 0;
}

static char *format_timeslots (u_long s)
{
	static char buf [100];
	char *p = buf;
	int i;

	for (i=1; i<32; ++i)
		if ((s >> i) & 1) {
			int prev = (i > 1)  & (s >> (i-1));
			int next = (i < 31) & (s >> (i+1));

			if (prev) {
				if (next)
					continue;
				*p++ = '-';
			} else if (p > buf)
				*p++ = ',';

			if (i >= 10)
				*p++ = '0' + i / 10;
			*p++ = '0' + i % 10;
		}
	*p = 0;
	return buf;
}

static int print_modems (char *s, ct_chan_t *c, int need_header)
{
	int status = ct_modem_status (c);
	int length = 0;

	if (need_header)
		length += sprintf (s + length, "  LE   DTR  DSR  RTS  CTS  CD\n");
	length += sprintf (s + length, "%4s %4s %4s %4s %4s %4s\n",
		status & TIOCM_LE  ? "On" : "-",
		status & TIOCM_DTR ? "On" : "-",
		status & TIOCM_DSR ? "On" : "-",
		status & TIOCM_RTS ? "On" : "-",
		status & TIOCM_CTS ? "On" : "-",
		status & TIOCM_CD  ? "On" : "-");
	return length;
}

static int print_stats (char *s, ct_chan_t *c, int need_header)
{
	struct serial_statistics st;
	int length = 0;

	st.rintr  = c->rintr;
	st.tintr  = c->tintr;
	st.mintr  = c->mintr;
	st.ibytes = c->ibytes;
	st.ipkts  = c->ipkts;
	st.ierrs  = c->ierrs;
	st.obytes = c->obytes;
	st.opkts  = c->opkts;
	st.oerrs  = c->oerrs;
	if (need_header)
		length += sprintf (s + length, "  Rintr   Tintr   Mintr   Ibytes   Ipkts   Ierrs   Obytes   Opkts   Oerrs\n");
	length += sprintf (s + length, "%7ld %7ld %7ld %8ld %7ld %7ld %8ld %7ld %7ld\n",
		st.rintr, st.tintr, st.mintr, st.ibytes, st.ipkts,
		st.ierrs, st.obytes, st.opkts, st.oerrs);
	return length;
}

static char *format_e1_status (u_char status)
{
	static char buf [80];

	if (status & E1_NOALARM)
		return "Ok";
	buf[0] = 0;
	if (status & E1_LOS)     strcat (buf, ",LOS");
	if (status & E1_AIS)     strcat (buf, ",AIS");
	if (status & E1_LOF)     strcat (buf, ",LOF");
	if (status & E1_LOMF)    strcat (buf, ",LOMF");
	if (status & E1_FARLOF)  strcat (buf, ",FARLOF");
	if (status & E1_AIS16)   strcat (buf, ",AIS16");
	if (status & E1_FARLOMF) strcat (buf, ",FARLOMF");
	if (status & E1_TSTREQ)  strcat (buf, ",TSTREQ");
	if (status & E1_TSTERR)  strcat (buf, ",TSTERR");
	if (buf[0] == ',')
		return buf+1;
	return "Unknown";
}

static int print_frac (char *s, int leftalign, u_long numerator, u_long divider)
{
	int n, length = 0;

	if (numerator < 1 || divider < 1) {
		length += sprintf (s+length, leftalign ? "/-   " : "    -");
		return length;
	}
	n = (int) (0.5 + 1000.0 * numerator / divider);
	if (n < 1000) {
		length += sprintf (s+length, leftalign ? "/.%-3d" : " .%03d", n);
		return length;
	}
	*(s + length) = leftalign ? '/' : ' ';
	length ++;

	if     (n >= 1000000) n = (n+500) / 1000 * 1000;
	else if (n >= 100000)  n = (n+50)  / 100 * 100;
	else if (n >= 10000)   n = (n+5)   / 10 * 10;

	switch (n) {
	case 1000:    length += printf (s+length, ".999"); return length;
	case 10000:   n = 9990;   break;
	case 100000:  n = 99900;  break;
	case 1000000: n = 999000; break;
	}
	if (n < 10000)	      length += sprintf (s+length, "%d.%d", n/1000, n/10%100);
	else if (n < 100000)  length += sprintf (s+length, "%d.%d", n/1000, n/100%10);
	else if (n < 1000000) length += sprintf (s+length, "%d.", n/1000);
	else		      length += sprintf (s+length, "%d", n/1000);

	return length;
}

static int print_e1_stats (char *s, ct_chan_t *c)
{
	struct e1_counters total;
	u_long totsec;
	int length = 0;

	totsec		= c->totsec + c->cursec;
	total.bpv	= c->total.bpv   + c->currnt.bpv;
	total.fse	= c->total.fse   + c->currnt.fse;
	total.crce	= c->total.crce  + c->currnt.crce;
	total.rcrce	= c->total.rcrce + c->currnt.rcrce;
	total.uas	= c->total.uas   + c->currnt.uas;
	total.les	= c->total.les   + c->currnt.les;
	total.es	= c->total.es    + c->currnt.es;
	total.bes	= c->total.bes   + c->currnt.bes;
	total.ses	= c->total.ses   + c->currnt.ses;
	total.oofs	= c->total.oofs  + c->currnt.oofs;
	total.css	= c->total.css   + c->currnt.css;
	total.dm	= c->total.dm    + c->currnt.dm;

	length += sprintf (s + length, " Unav/Degr  Bpv/Fsyn  CRC/RCRC  Err/Lerr  Sev/Bur   Oof/Slp  Status\n");

	/* Unavailable seconds, degraded minutes */
	length += print_frac (s + length, 0, c->currnt.uas, c->cursec);
	length += print_frac (s + length, 1, 60 * c->currnt.dm, c->cursec);

	/* Bipolar violations, frame sync errors */
	length += print_frac (s + length, 0, c->currnt.bpv, c->cursec);
	length += print_frac (s + length, 1, c->currnt.fse, c->cursec);

	/* CRC errors, remote CRC errors (E-bit) */
	length += print_frac (s + length, 0, c->currnt.crce, c->cursec);
	length += print_frac (s + length, 1, c->currnt.rcrce, c->cursec);

	/* Errored seconds, line errored seconds */
	length += print_frac (s + length, 0, c->currnt.es, c->cursec);
	length += print_frac (s + length, 1, c->currnt.les, c->cursec);

	/* Severely errored seconds, burst errored seconds */
	length += print_frac (s + length, 0, c->currnt.ses, c->cursec);
	length += print_frac (s + length, 1, c->currnt.bes, c->cursec);

	/* Out of frame seconds, controlled slip seconds */
	length += print_frac (s + length, 0, c->currnt.oofs, c->cursec);
	length += print_frac (s + length, 1, c->currnt.css, c->cursec);

	length += sprintf (s + length, " %s\n", format_e1_status (c->status));

	/* Print total statistics. */
	length += print_frac (s + length, 0, total.uas, totsec);
	length += print_frac (s + length, 1, 60 * total.dm, totsec);

	length += print_frac (s + length, 0, total.bpv, totsec);
	length += print_frac (s + length, 1, total.fse, totsec);

	length += print_frac (s + length, 0, total.crce, totsec);
	length += print_frac (s + length, 1, total.rcrce, totsec);

	length += print_frac (s + length, 0, total.es, totsec);
	length += print_frac (s + length, 1, total.les, totsec);

	length += print_frac (s + length, 0, total.ses, totsec);
	length += print_frac (s + length, 1, total.bes, totsec);

	length += print_frac (s + length, 0, total.oofs, totsec);
	length += print_frac (s + length, 1, total.css, totsec);

	length += sprintf (s + length, " -- Total\n");
	return length;
}

static int print_chan (char *s, ct_chan_t *c)
{
	drv_t *d = c->sys;
	bdrv_t *bd = d->bd;
	int length = 0;

	length += sprintf (s + length, "ct%d", c->board->num * NCHAN + c->num);
	if (d->chan->debug)
		length += sprintf (s + length, " debug=%d", d->chan->debug);

	switch (ct_get_config (c->board)) {
	case CFG_A:	length += sprintf (s + length, " cfg=A");	break;
	case CFG_B:	length += sprintf (s + length, " cfg=B");	break;
	case CFG_C:	length += sprintf (s + length, " cfg=C");	break;
	default:	length += sprintf (s + length, " cfg=unknown"); break;
	}

	if (ct_get_baud (c))
		length += sprintf (s + length, " %ld", ct_get_baud (c));
	else
		length += sprintf (s + length, " extclock");

	if (c->mode == M_E1 || c->mode == M_G703)
		switch (ct_get_clk(c)) {
		case GCLK_INT   : length += sprintf (s + length, " syn=int");     break;
		case GCLK_RCV   : length += sprintf (s + length, " syn=rcv");     break;
		case GCLK_RCLKO  : length += sprintf (s + length, " syn=xrcv");    break;
		}
	if (c->mode == M_HDLC) {
		length += sprintf (s + length, " dpll=%s",   ct_get_dpll (c)   ? "on" : "off");
		length += sprintf (s + length, " nrzi=%s",   ct_get_nrzi (c)   ? "on" : "off");
		length += sprintf (s + length, " invtclk=%s", ct_get_invtxc (c) ? "on" : "off");
		length += sprintf (s + length, " invrclk=%s", ct_get_invrxc (c) ? "on" : "off");
	}
	if (c->mode == M_E1)
		length += sprintf (s + length, " higain=%s", ct_get_higain (c)? "on" : "off");

	length += sprintf (s + length, " loop=%s", ct_get_loop (c) ? "on" : "off");

	if (c->mode == M_E1)
		length += sprintf (s + length, " ts=%s", format_timeslots (ct_get_ts(c)));
	if (c->mode == M_E1 && ct_get_config (c->board) != CFG_A)
		length += sprintf (s + length, " pass=%s", format_timeslots (ct_get_subchan(c->board)));
	if (c->mode == M_G703) {
		int lq, x;

		x = splimp ();
		CT_LOCK (bd);
		lq = ct_get_lq (c);
		CT_UNLOCK (bd);
		splx (x);
		length += sprintf (s + length, " (level=-%.1fdB)", lq / 10.0);
	}
	length += sprintf (s + length, "\n");
	return length;
}

static int ng_ct_rcvmsg (node_p node, item_p item, hook_p lasthook)
{
	drv_t *d = NG_NODE_PRIVATE (node);
	struct ng_mesg *msg;
	struct ng_mesg *resp = NULL;
	int error = 0;

	if (!d)
		return EINVAL;
		
	CT_DEBUG (d, ("Rcvmsg\n"));
	NGI_GET_MSG (item, msg);
	switch (msg->header.typecookie) {
	default:
		error = EINVAL;
		break;

	case NGM_CT_COOKIE:
		printf ("Don't forget to implement\n");
		error = EINVAL;
		break;

	case NGM_GENERIC_COOKIE:
		switch (msg->header.cmd) {
		default:
			error = EINVAL;
			break;

		case NGM_TEXT_STATUS: {
			char *s;
			int l = 0;
			int dl = sizeof (struct ng_mesg) + 730;

			NG_MKRESPONSE (resp, msg, dl, M_NOWAIT);
			if (! resp) {
				error = ENOMEM;
				break;
			}
			s = (resp)->data;
			l += print_chan (s + l, d->chan);
			l += print_stats (s + l, d->chan, 1);
			l += print_modems (s + l, d->chan, 1);
			l += print_e1_stats (s + l, d->chan);
			strncpy ((resp)->header.cmdstr, "status", NG_CMDSTRSIZ);
			}
			break;
		}
		break;
	}
	NG_RESPOND_MSG (error, node, item, resp);
	NG_FREE_MSG (msg);
	return error;
}

static int ng_ct_rcvdata (hook_p hook, item_p item)
{
	drv_t *d = NG_NODE_PRIVATE (NG_HOOK_NODE(hook));
	struct mbuf *m;
	struct ng_tag_prio *ptag;
	bdrv_t *bd;
	struct ifqueue *q;
	int s;

	if (!d)
		return ENETDOWN;
		
	bd = d->bd;
	NGI_GET_M (item, m);
	NG_FREE_ITEM (item);
	if (! NG_HOOK_PRIVATE (hook) || ! d) {
		NG_FREE_M (m);
		return ENETDOWN;
	}

	/* Check for high priority data */
	if ((ptag = (struct ng_tag_prio *)m_tag_locate(m, NGM_GENERIC_COOKIE,
	    NG_TAG_PRIO, NULL)) != NULL && (ptag->priority > NG_PRIO_CUTOFF) )
		q = &d->hi_queue;
	else
		q = &d->queue;

	s = splimp ();
	CT_LOCK (bd);
	IF_LOCK (q);
	if (_IF_QFULL (q)) {
		IF_UNLOCK (q);
		CT_UNLOCK (bd);
		splx (s);
		NG_FREE_M (m);
		return ENOBUFS;
	}
	_IF_ENQUEUE (q, m);
	IF_UNLOCK (q);
	ct_start (d);
	CT_UNLOCK (bd);
	splx (s);
	return 0;
}

static int ng_ct_rmnode (node_p node)
{
	drv_t *d = NG_NODE_PRIVATE (node);
	bdrv_t *bd;

	CT_DEBUG (d, ("Rmnode\n"));
	if (d && d->running) {
		bd = d->bd;
		int s = splimp ();
		CT_LOCK (bd);
		ct_down (d);
		CT_UNLOCK (bd);
		splx (s);
	}
#ifdef	KLD_MODULE
	if (node->nd_flags & NGF_REALLY_DIE) {
		NG_NODE_SET_PRIVATE (node, NULL);
		NG_NODE_UNREF (node);
	}
	NG_NODE_REVIVE(node);		/* Persistant node */
#endif
	return 0;
}

static int ng_ct_connect (hook_p hook)
{
	drv_t *d = NG_NODE_PRIVATE (NG_HOOK_NODE (hook));

	if (!d)
		return 0;
		
	callout_reset (&d->timeout_handle, hz, ct_watchdog_timer, d);
	return 0;
}

static int ng_ct_disconnect (hook_p hook)
{
	drv_t *d = NG_NODE_PRIVATE (NG_HOOK_NODE (hook));
	bdrv_t *bd;
	
	if (!d)
		return 0;
	
	bd = d->bd;
	
	CT_LOCK (bd);
	if (NG_HOOK_PRIVATE (hook))
		ct_down (d);
	CT_UNLOCK (bd);
	/* If we were wait it than it reasserted now, just stop it. */
	if (!callout_drain (&d->timeout_handle))
		callout_stop (&d->timeout_handle);
	return 0;
}
#endif

static int ct_modevent (module_t mod, int type, void *unused)
{
	static int load_count = 0;

	switch (type) {
	case MOD_LOAD:
#ifdef NETGRAPH
		if (ng_newtype (&typestruct))
			printf ("Failed to register ng_ct\n");
#endif
		++load_count;
		callout_init (&timeout_handle, 1);
		callout_reset (&timeout_handle, hz*5, ct_timeout, 0);
		break;
	case MOD_UNLOAD:
		if (load_count == 1) {
			printf ("Removing device entry for Tau-ISA\n");
#ifdef NETGRAPH
			ng_rmtype (&typestruct);
#endif			
		}
		/* If we were wait it than it reasserted now, just stop it. */
		if (!callout_drain (&timeout_handle))
			callout_stop (&timeout_handle);
		--load_count;
		break;
	case MOD_SHUTDOWN:
		break;
	}
	return 0;
}

#ifdef NETGRAPH
static struct ng_type typestruct = {
	.version	= NG_ABI_VERSION,
	.name		= NG_CT_NODE_TYPE,
	.constructor	= ng_ct_constructor,
	.rcvmsg		= ng_ct_rcvmsg,
	.shutdown	= ng_ct_rmnode,
	.newhook	= ng_ct_newhook,
	.connect	= ng_ct_connect,
	.rcvdata	= ng_ct_rcvdata,
	.disconnect	= ng_ct_disconnect,
};
#endif /*NETGRAPH*/

#ifdef NETGRAPH
MODULE_DEPEND (ng_ct, netgraph, NG_ABI_VERSION, NG_ABI_VERSION, NG_ABI_VERSION);
#else
MODULE_DEPEND (ct, sppp, 1, 1, 1);
#endif
DRIVER_MODULE (ct, isa, ct_isa_driver, ct_devclass, ct_modevent, NULL);
MODULE_VERSION (ct, 1);