This file is indexed.

/usr/src/dahdi-2.11.1~dfsg-1ubuntu4/drivers/dahdi/wcte43x-base.c is in dahdi-dkms 1:2.11.1~dfsg-1ubuntu4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
/*
 * Digium, Inc.  Wildcard te43x T1/E1 card Driver
 *
 * Written by Russ Meyerriecks <rmeyerriecks@digium.com>
 * Copyright (C) 2012 - 2013, Digium, Inc.
 * All rights reserved.
 *
 */

/*
 * See http://www.asterisk.org for more information about
 * the Asterisk project. Please do not directly contact
 * any of the maintainers of this project for assistance;
 * the project provides a web site, mailing lists and IRC
 * channels for your use.
 *
 * This program is free software, distributed under the terms of
 * the GNU General Public License Version 2 as published by the
 * Free Software Foundation. See the LICENSE file included with
 * this program for more details.
 */

#define pr_fmt(fmt)             KBUILD_MODNAME ": " fmt

#include <linux/version.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/proc_fs.h>
#include <linux/moduleparam.h>
#include <linux/interrupt.h>
#include <linux/workqueue.h>
#include <linux/delay.h>
#include <linux/sched.h>
#include <linux/crc32.h>
#include <linux/slab.h>

#include <linux/vmalloc.h>
#include <linux/string.h>
#include <linux/time.h>
#include <linux/version.h>
#include <linux/firmware.h>
#include <oct612x.h>

#include <stdbool.h>
#include <dahdi/kernel.h>

#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 11, 0)
/* For fatal_signal_pending() */
#include <linux/sched/signal.h>
#endif

#include "wct4xxp/wct4xxp.h"	/* For certain definitions */
#include "wcxb.h"
#include "wcxb_spi.h"
#include "wcxb_flash.h"

#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
#  ifdef RHEL_RELEASE_VERSION
#    if RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(5, 6)
#      define T43X_HAVE_CANCEL_WORK_SYNC
#    endif
#  else
static inline int delayed_work_pending(struct work_struct *work)
{
	return test_bit(0, &work->pending);
}
#  endif
#endif

static const char *TE435_FW_FILENAME = "dahdi-fw-te435.bin";
static const char *TE436_FW_FILENAME = "dahdi-fw-te436.bin";
static const u32 TE435_VERSION = 0x13001e;
static const u32 TE436_VERSION = 0x10017;

/* #define RPC_RCLK */

enum linemode {
	T1 = 1,
	E1,
	J1,
};

#define STATUS_LED_GREEN	(1 << 9)
#define STATUS_LED_RED		(1 << 10)
#define STATUS_LED_YELLOW	(STATUS_LED_RED | STATUS_LED_GREEN)
#define LED_MASK		 0x7f8
#define FALC_CPU_RESET		(1 << 11)

/* Interrupt definitions */
#define FALC_INT		(1<<3)
#define SPI_INT			(1<<4)
#define DMA_STOPPED		(1<<5)

struct t43x;

struct t43x_span {
	struct t43x *owner;
	struct dahdi_span span;
#define NMF_FLAGBIT			1
#define SENDINGYELLOW_FLAGBIT		2
#define HAVE_OPEN_CHANNELS_FLAGBIT	3
	unsigned long bit_flags;
	unsigned char txsigs[16];	/* Copy of tx sig registers */
	unsigned long lofalarmtimer;
	unsigned long losalarmtimer;
	unsigned long aisalarmtimer;
	unsigned long yelalarmtimer;
	unsigned long recoverytimer;
	unsigned long loopuptimer;
	unsigned long loopdntimer;

	struct dahdi_chan *chans[32];		/* Channels */
	struct dahdi_echocan_state *ec[32];	/* Echocan state for channels */

	bool debounce;
	int syncpos;
	int sync;
	u32 lineconfig_fingerprint;
};

struct t43x_clksrc_work {
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
	struct work_struct work;
#else
	struct delayed_work work;
#endif
	spinlock_t lock;
	enum wcxb_clock_sources clksrc;
	bool is_timing_master;
};

/* One structure per card */
struct t43x {
	spinlock_t reglock;

	const struct t43x_desc *devtype;
	unsigned long blinktimer;
	bool blink;
	struct dahdi_device *ddev;
	struct t43x_span *tspans[4];
	int numspans;			/* Number of spans on the card */
	int spansstarted;		/* Number of spans started */

	/* protected by t1.reglock */
	struct timer_list timer;
	struct work_struct timer_work;
	struct workqueue_struct *wq;
	struct t43x_clksrc_work clksrc_work;
	unsigned int not_ready;		/* 0 when entire card is ready to go */
	struct vpm450m *vpm;
	char *vpm_name;
	struct mutex lock;
	bool latency_locked;
	int syncsrc;
	int num;			/* card index */
	int intr_span;			/* span to service next interrupt */

	struct wcxb xb;
	struct list_head		card_node;
};

static void t43x_handle_transmit(struct wcxb *xb, void *vfp);
static void t43x_handle_receive(struct wcxb *xb, void *vfp);
static void t43x_handle_interrupt(struct wcxb *xb, u32 pending);

static void t43x_handle_error(struct wcxb *xb)
{
	struct t43x *wc = container_of(xb, struct t43x, xb);
	wc->ddev->irqmisses++;
}

static struct wcxb_operations xb_ops = {
	.handle_receive = t43x_handle_receive,
	.handle_transmit = t43x_handle_transmit,
	.handle_interrupt = t43x_handle_interrupt,
	.handle_error = t43x_handle_error,
};

/* Maintenance Mode Registers */
#define LIM0		0x36
#define LIM0_LL		(1<<1)
#define LIM1		0x37
#define LIM1_RL		(1<<1)
#define LIM1_JATT	(1<<2)

/* Clear Channel Registers */
#define CCB1		0x2f
#define CCB2		0x30
#define CCB3		0x31

#define FECL_T		0x50	/* Framing Error Counter Lower Byte */
#define FECH_T		0x51	/* Framing Error Counter Higher Byte */
#define CVCL_T		0x52	/* Code Violation Counter Lower Byte */
#define CVCH_T		0x53	/* Code Violation Counter Higher Byte */
#define CEC1L_T		0x54	/* CRC Error Counter 1 Lower Byte */
#define CEC1H_T		0x55	/* CRC Error Counter 1 Higher Byte */
#define EBCL_T		0x56	/* E-Bit Error Counter Lower Byte */
#define EBCH_T		0x57	/* E-Bit Error Counter Higher Byte */
#define BECL_T		0x58	/* Bit Error Counter Lower Byte */
#define BECH_T		0x59	/* Bit Error Counter Higher Byte */
#define COEC_T		0x5A	/* COFA Event Counter */
#define PRBSSTA_T	0xDA	/* PRBS Status Register */
#define FRS1_T		0x4D	/* Framer Receive Status Reg 1 */

#define ISR3_SEC (1 << 6)	/* Internal one-second interrupt bit mask */
#define ISR3_ES (1 << 7)	/* Errored Second interrupt bit mask */

#define IMR0		0x14

/* pci memory map offsets */
#define DMA1		0x00	/* dma addresses */
#define DMA2		0x04
#define DMA3		0x08
#define CNTL		0x0C	/* fpga control register */
#define INT_MASK	0x10	/* interrupt vectors from oct and framer */
#define INT_STAT	0x14
#define FRAMER_BASE	0x00000800	/* framer's address space */

#define NOSYNC_ALARMS (DAHDI_ALARM_RED | DAHDI_ALARM_BLUE | \
		       DAHDI_ALARM_LOOPBACK)

static int debug;
static int timingcable;
static int force_firmware;
static int alarmdebounce	= 2500; /* LOF/LFA def to 2.5s AT&T TR54016*/
static int losalarmdebounce	= 2500; /* LOS def to 2.5s AT&T TR54016*/
static int aisalarmdebounce	= 2500; /* AIS(blue) def to 2.5s AT&T TR54016*/
static int yelalarmdebounce	= 500;  /* RAI(yellow) def to 0.5s AT&T guide */
static char *default_linemode	= "t1"; /* 'e1', 't1', or 'j1' */
static int latency		= WCXB_DEFAULT_LATENCY;
static int max_latency		= WCXB_DEFAULT_MAXLATENCY;

struct t43x_firm_header {
	u8	header[6];
	__le32	chksum;
	u8	pad[18];
	__le32	version;
} __packed;

static int t43x_check_for_interrupts(struct t43x *wc);
static void t43x_check_alarms(struct t43x *wc, int span_idx);
static void t43x_check_sigbits(struct t43x *wc, int span_idx);
static const struct dahdi_span_ops t43x_span_ops;
static void __t43x_set_timing_source_auto(struct t43x *wc);

static int vpmsupport = 1;

#include "oct6100api/oct6100_api.h"

#define ECHOCAN_NUM_CHANS 128

#define FLAGBIT_DTMF	1
#define FLAGBIT_MUTE	2
#define FLAGBIT_ECHO	3
#define FLAGBIT_ALAW	4

#define OCT_CHIP_ID			0
#define OCT_MAX_TDM_STREAMS		4
#define OCT_TONEEVENT_BUFFER_SIZE	128
#define SOUT_STREAM			1
#define RIN_STREAM			0
#define SIN_STREAM			2

static void t43x_vpm_init(struct t43x *wc);
static void echocan_free(struct dahdi_chan *chan,
		struct dahdi_echocan_state *ec);
static const struct dahdi_echocan_features vpm_ec_features = {
	.NLP_automatic = 1,
	.CED_tx_detect = 1,
	.CED_rx_detect = 1,
};
static const struct dahdi_echocan_ops vpm_ec_ops = {
	.echocan_free = echocan_free,
};

struct vpm450m {
	tPOCT6100_INSTANCE_API pApiInstance;
	struct oct612x_context context;
	UINT32 aulEchoChanHndl[ECHOCAN_NUM_CHANS];
	int ecmode[ECHOCAN_NUM_CHANS];
	unsigned long chanflags[ECHOCAN_NUM_CHANS];
};

static int t43x_oct612x_write(struct oct612x_context *context,
			      u32 address, u16 value)
{
	struct t43x *wc = dev_get_drvdata(context->dev);
	wcxb_set_echocan_reg(&wc->xb, address, value);
	return 0;
}

static int t43x_oct612x_read(struct oct612x_context *context, u32 address,
			     u16 *value)
{
	struct t43x *wc = dev_get_drvdata(context->dev);
	*value = wcxb_get_echocan_reg(&wc->xb, address);
	return 0;
}

static int t43x_oct612x_write_smear(struct oct612x_context *context,
				    u32 address, u16 value, size_t count)
{
	unsigned int i;
	struct t43x *wc = dev_get_drvdata(context->dev);
	for (i = 0; i < count; ++i)
		wcxb_set_echocan_reg(&wc->xb, address + (i << 1), value);
	return 0;
}

static int t43x_oct612x_write_burst(struct oct612x_context *context,
				    u32 address, const u16 *buffer,
				    size_t count)
{
	unsigned int i;
	struct t43x *wc = dev_get_drvdata(context->dev);
	for (i = 0; i < count; ++i)
		wcxb_set_echocan_reg(&wc->xb, address + (i << 1), buffer[i]);
	return 0;
}

static int t43x_oct612x_read_burst(struct oct612x_context *context,
				   u32 address, u16 *buffer, size_t count)
{
	unsigned int i;
	struct t43x *wc = dev_get_drvdata(context->dev);
	for (i = 0; i < count; ++i)
		buffer[i] = wcxb_get_echocan_reg(&wc->xb, address + (i << 1));
	return 0;
}

static const struct oct612x_ops t43x_oct612x_ops = {
	.write = t43x_oct612x_write,
	.read = t43x_oct612x_read,
	.write_smear = t43x_oct612x_write_smear,
	.write_burst = t43x_oct612x_write_burst,
	.read_burst = t43x_oct612x_read_burst,
};

static void vpm450m_setecmode(struct vpm450m *vpm450m, int channel, int mode)
{
	tOCT6100_CHANNEL_MODIFY *modify;
	UINT32 ulResult;

	if (vpm450m->ecmode[channel] == mode)
		return;
	modify = kzalloc(sizeof(tOCT6100_CHANNEL_MODIFY), GFP_ATOMIC);
	if (!modify) {
		pr_notice("Unable to allocate memory for setec!\n");
		return;
	}
	Oct6100ChannelModifyDef(modify);
	modify->ulEchoOperationMode = mode;
	modify->ulChannelHndl = vpm450m->aulEchoChanHndl[channel];
	ulResult = Oct6100ChannelModify(vpm450m->pApiInstance, modify);
	if (ulResult != GENERIC_OK) {
		pr_notice("Failed to apply echo can changes on channel %d %d %08x!\n",
			  vpm450m->aulEchoChanHndl[channel], channel, ulResult);
	} else {
#ifdef OCTASIC_DEBUG
		pr_debug("Echo can on channel %d set to %d\n", channel, mode);
#endif
		vpm450m->ecmode[channel] = mode;
	}
	kfree(modify);
}

static void vpm450m_set_alaw_companding(struct vpm450m *vpm450m, int channel,
					bool alaw)
{
	tOCT6100_CHANNEL_MODIFY *modify;
	UINT32 ulResult;
	UINT32		law_to_use = (alaw) ? cOCT6100_PCM_A_LAW :
					      cOCT6100_PCM_U_LAW;

	/* If we're already in this companding mode, no need to do anything. */
	if (alaw == (test_bit(FLAGBIT_ALAW, &vpm450m->chanflags[channel]) > 0))
		return;

	modify = kzalloc(sizeof(tOCT6100_CHANNEL_MODIFY), GFP_ATOMIC);
	if (!modify) {
		pr_notice("Unable to allocate memory for setec!\n");
		return;
	}

	Oct6100ChannelModifyDef(modify);
	modify->ulChannelHndl =		      vpm450m->aulEchoChanHndl[channel];
	modify->fTdmConfigModified =		TRUE;
	modify->TdmConfig.ulSinPcmLaw =		law_to_use;
	modify->TdmConfig.ulRinPcmLaw =		law_to_use;
	modify->TdmConfig.ulSoutPcmLaw =	law_to_use;
	modify->TdmConfig.ulRoutPcmLaw =	law_to_use;
	ulResult = Oct6100ChannelModify(vpm450m->pApiInstance, modify);
	if (ulResult != GENERIC_OK) {
		pr_notice("Failed to apply echo can changes on channel %d %d %08x!\n",
			  vpm450m->aulEchoChanHndl[channel], channel, ulResult);
	} else {
		if (debug) {
			pr_info("Changed companding on channel %d to %s.\n",
				channel, (alaw) ? "alaw" : "ulaw");
		}
		if (alaw)
			set_bit(FLAGBIT_ALAW, &vpm450m->chanflags[channel]);
		else
			clear_bit(FLAGBIT_ALAW, &vpm450m->chanflags[channel]);
	}
	kfree(modify);
}

static void vpm450m_setec(struct vpm450m *vpm450m, int channel, int eclen)
{
	if (eclen) {
		set_bit(FLAGBIT_ECHO, &vpm450m->chanflags[channel]);
		vpm450m_setecmode(vpm450m, channel,
				cOCT6100_ECHO_OP_MODE_NORMAL);
	} else {
		unsigned long *flags = &vpm450m->chanflags[channel];
		clear_bit(FLAGBIT_ECHO, &vpm450m->chanflags[channel]);
		if (test_bit(FLAGBIT_DTMF, flags) ||
		    test_bit(FLAGBIT_MUTE, flags)) {
			vpm450m_setecmode(vpm450m, channel,
					cOCT6100_ECHO_OP_MODE_HT_RESET);
		} else {
			vpm450m_setecmode(vpm450m, channel,
					cOCT6100_ECHO_OP_MODE_POWER_DOWN);
		}
	}
}

static UINT32 tdmmode_chan_to_slot_map(int channel)
{
	/* Four phases on the tdm bus, skip three of them per channel */
	/* Due to a bug in the octasic, we had to move the data onto phase 2 */
	return  1 + ((channel % 32) * 4) + (channel / 32);
}

static int echocan_initialize_channel(
		struct vpm450m *vpm, int channel, int mode)
{
	tOCT6100_CHANNEL_OPEN	ChannelOpen;
	UINT32		law_to_use = (mode) ? cOCT6100_PCM_A_LAW :
					      cOCT6100_PCM_U_LAW;
	UINT32		tdmslot_setting;
	UINT32		ulResult;

	tdmslot_setting = tdmmode_chan_to_slot_map(channel);

	/* Fill Open channel structure with defaults */
	Oct6100ChannelOpenDef(&ChannelOpen);

	/* Assign the handle memory.*/
	ChannelOpen.pulChannelHndl = &vpm->aulEchoChanHndl[channel];
	ChannelOpen.ulUserChanId = channel;
	/* Enable Tone disabling for Fax and Modems */
	ChannelOpen.fEnableToneDisabler = TRUE;

	/* Passthrough TDM data by default, no echocan */
	ChannelOpen.ulEchoOperationMode = cOCT6100_ECHO_OP_MODE_POWER_DOWN;

	/* Configure the TDM settings.*/
	/* Input from the framer */
	ChannelOpen.TdmConfig.ulSinStream		= SIN_STREAM;
	ChannelOpen.TdmConfig.ulSinTimeslot		= tdmslot_setting;
	ChannelOpen.TdmConfig.ulSinPcmLaw		= law_to_use;

	/* Input from the Host (pre-framer) */
	ChannelOpen.TdmConfig.ulRinStream		= RIN_STREAM;
	ChannelOpen.TdmConfig.ulRinTimeslot		= tdmslot_setting;
	ChannelOpen.TdmConfig.ulRinPcmLaw		= law_to_use;

	/* Output to the Host */
	ChannelOpen.TdmConfig.ulSoutStream		= SOUT_STREAM;
	ChannelOpen.TdmConfig.ulSoutTimeslot		= tdmslot_setting;
	ChannelOpen.TdmConfig.ulSoutPcmLaw		= law_to_use;

	/* From asterisk after echo-cancellation - goes nowhere */
	ChannelOpen.TdmConfig.ulRoutStream		= cOCT6100_UNASSIGNED;
	ChannelOpen.TdmConfig.ulRoutTimeslot		= cOCT6100_UNASSIGNED;
	ChannelOpen.TdmConfig.ulRoutPcmLaw		= law_to_use;

	/* Set the desired VQE features.*/
	ChannelOpen.VqeConfig.fEnableNlp		= TRUE;
	ChannelOpen.VqeConfig.fRinDcOffsetRemoval	= TRUE;
	ChannelOpen.VqeConfig.fSinDcOffsetRemoval	= TRUE;
	ChannelOpen.VqeConfig.ulComfortNoiseMode =
						cOCT6100_COMFORT_NOISE_NORMAL;

	/* Open the channel.*/
	ulResult = Oct6100ChannelOpen(vpm->pApiInstance, &ChannelOpen);

	return ulResult;
}

static struct vpm450m *init_vpm450m(struct t43x *wc, int *laws, int numspans,
					const struct firmware *firmware)
{
	tOCT6100_CHIP_OPEN *ChipOpen;
	tOCT6100_GET_INSTANCE_SIZE InstanceSize;
	tOCT6100_CHANNEL_OPEN *ChannelOpen;
	UINT32 ulResult;
	struct vpm450m *vpm450m;
	int x, i;

	vpm450m = kzalloc(sizeof(struct vpm450m), GFP_KERNEL);
	if (!vpm450m) {
		dev_info(&wc->xb.pdev->dev,
			 "Unable to allocate vpm450m struct\n");
		return NULL;
	}

	vpm450m->context.dev = &wc->xb.pdev->dev;
	vpm450m->context.ops = &t43x_oct612x_ops;

	ChipOpen = kzalloc(sizeof(tOCT6100_CHIP_OPEN), GFP_KERNEL);
	if (!ChipOpen) {
		dev_info(&wc->xb.pdev->dev, "Unable to allocate ChipOpen\n");
		kfree(vpm450m);
		return NULL;
	}

	ChannelOpen = kzalloc(sizeof(tOCT6100_CHANNEL_OPEN), GFP_KERNEL);
	if (!ChannelOpen) {
		dev_info(&wc->xb.pdev->dev, "Unable to allocate ChannelOpen\n");
		kfree(vpm450m);
		kfree(ChipOpen);
		return NULL;
	}

	for (x = 0; x < ARRAY_SIZE(vpm450m->ecmode); x++)
		vpm450m->ecmode[x] = -1;

	dev_info(&wc->xb.pdev->dev, "Echo cancellation for %d channels\n",
		wc->numspans * 32);

	Oct6100ChipOpenDef(ChipOpen);
	ChipOpen->pProcessContext = &vpm450m->context;

	/* Change default parameters as needed */
	/* upclk oscillator is at 33.33 Mhz */
	ChipOpen->ulUpclkFreq = cOCT6100_UPCLK_FREQ_33_33_MHZ;

	/* mclk will be generated by internal PLL at 133 Mhz */
	ChipOpen->fEnableMemClkOut	= TRUE;
	ChipOpen->ulMemClkFreq		= cOCT6100_MCLK_FREQ_133_MHZ;

	/* User defined Chip ID.*/
	ChipOpen->ulUserChipId		= OCT_CHIP_ID;

	/* Set the maximums that the chip needs to support */
	ChipOpen->ulMaxChannels		= wc->numspans * 32;
	ChipOpen->ulMaxTdmStreams	= OCT_MAX_TDM_STREAMS;

	/* External Memory Settings */
	/* Use DDR memory.*/
	ChipOpen->ulMemoryType		= cOCT6100_MEM_TYPE_DDR;
	ChipOpen->ulNumMemoryChips	= 1;
	ChipOpen->ulMemoryChipSize	= cOCT6100_MEMORY_CHIP_SIZE_32MB;

	ChipOpen->pbyImageFile = (PUINT8) firmware->data;
	ChipOpen->ulImageSize = firmware->size;

	/* Set TDM data stream frequency */
	for (i = 0; i < ChipOpen->ulMaxTdmStreams; i++)
		ChipOpen->aulTdmStreamFreqs[i] = cOCT6100_TDM_STREAM_FREQ_8MHZ;

	/* Configure TDM sampling */
	ChipOpen->ulTdmSampling = cOCT6100_TDM_SAMPLE_AT_FALLING_EDGE;
	/* Disable to save RAM footprint space */
	ChipOpen->fEnableChannelRecording = false;

	/* In this example we will maintain the API using polling so
	   interrupts must be disabled */
	ChipOpen->InterruptConfig.ulErrorH100Config =
						cOCT6100_INTERRUPT_DISABLE;
	ChipOpen->InterruptConfig.ulErrorMemoryConfig =
						cOCT6100_INTERRUPT_DISABLE;
	ChipOpen->InterruptConfig.ulFatalGeneralConfig =
						cOCT6100_INTERRUPT_DISABLE;
	ChipOpen->InterruptConfig.ulFatalMemoryConfig =
						cOCT6100_INTERRUPT_DISABLE;

	ChipOpen->ulSoftToneEventsBufSize = OCT_TONEEVENT_BUFFER_SIZE;

	/* Inserting default values into tOCT6100_GET_INSTANCE_SIZE
	   structure parameters. */
	Oct6100GetInstanceSizeDef(&InstanceSize);

	/* Reset octasic device */
	wcxb_reset_echocan(&wc->xb);

	/* Get the size of the OCT6100 instance structure. */
	ulResult = Oct6100GetInstanceSize(ChipOpen, &InstanceSize);
	if (ulResult != cOCT6100_ERR_OK) {
		dev_info(&wc->xb.pdev->dev, "Unable to get instance size: %x\n",
				ulResult);
		return NULL;
	}

	vpm450m->pApiInstance = vmalloc(InstanceSize.ulApiInstanceSize);
	if (!vpm450m->pApiInstance) {
		dev_info(&wc->xb.pdev->dev,
			"Out of memory (can't allocate %d bytes)!\n",
			InstanceSize.ulApiInstanceSize);
		return NULL;
	}

	/* Perform the actual configuration of the chip. */
	wcxb_enable_echocan_dram(&wc->xb);
	ulResult = Oct6100ChipOpen(vpm450m->pApiInstance, ChipOpen);
	if (ulResult != cOCT6100_ERR_OK) {
		dev_info(&wc->xb.pdev->dev, "Unable to Oct6100ChipOpen: %x\n",
				ulResult);
		return NULL;
	}

	/* OCT6100 is now booted and channels can be opened */
	/* Open 31 channels/span since we're skipping the first on the VPM */
	for (x = 0; x < numspans; x++) {
		for (i = 0; i < 31; i++) {
			ulResult = echocan_initialize_channel(vpm450m,
							      (x*32)+i,
							      laws[x]);
			if (0 != ulResult) {
				dev_info(&wc->xb.pdev->dev,
					"Unable to echocan_initialize_channel: %d %x\n",
					(x*32)+i, ulResult);
				return NULL;
			} else if (laws[x]) {
				set_bit(FLAGBIT_ALAW,
					&vpm450m->chanflags[(x*32)+i]);
			}
		}
	}

	if (vpmsupport != 0)
		wcxb_enable_echocan(&wc->xb);

	kfree(ChipOpen);
	kfree(ChannelOpen);
	return vpm450m;
}

static void release_vpm450m(struct vpm450m *vpm450m)
{
	UINT32 ulResult;
	tOCT6100_CHIP_CLOSE ChipClose;

	Oct6100ChipCloseDef(&ChipClose);
	ulResult = Oct6100ChipClose(vpm450m->pApiInstance, &ChipClose);
	if (ulResult != cOCT6100_ERR_OK)
		pr_notice("Failed to close chip, code %08x!\n", ulResult);
	vfree(vpm450m->pApiInstance);
	kfree(vpm450m);
}

static const char *__t43x_echocan_name(struct t43x *wc)
{
	if (wc->vpm)
		return wc->vpm_name;
	else
		return NULL;
}

static const char *t43x_echocan_name(const struct dahdi_chan *chan)
{
	struct t43x *wc = chan->pvt;
	return __t43x_echocan_name(wc);
}

static int t43x_echocan_create(struct dahdi_chan *chan,
			     struct dahdi_echocanparams *ecp,
			     struct dahdi_echocanparam *p,
			     struct dahdi_echocan_state **ec)
{
	struct t43x *wc = chan->pvt;
	struct t43x_span *ts = container_of(chan->span, struct t43x_span, span);
	int channel = chan->chanpos - 1;
	const bool alaw = (chan->span->deflaw == 2);

	if (!vpmsupport || !wc->vpm)
		return -ENODEV;

	if (ecp->param_count > 0) {
		dev_warn(&wc->xb.pdev->dev,
			 "%s echo canceller does not support parameters; failing request\n",
			 chan->ec_factory->get_name(chan));
		return -EINVAL;
	}

	*ec = ts->ec[channel];
	(*ec)->ops = &vpm_ec_ops;
	(*ec)->features = vpm_ec_features;

	channel += (32*chan->span->offset);
	vpm450m_set_alaw_companding(wc->vpm, channel, alaw);
	vpm450m_setec(wc->vpm, channel, ecp->tap_length);
	return 0;
}

static void echocan_free(struct dahdi_chan *chan,
			struct dahdi_echocan_state *ec)
{
	struct t43x *wc = chan->pvt;
	int channel = chan->chanpos - 1;
	if (!wc->vpm)
		return;
	memset(ec, 0, sizeof(*ec));
	channel += (32*chan->span->offset);
	vpm450m_setec(wc->vpm, channel, 0);
}

static void t43x_vpm_init(struct t43x *wc)
{
	int laws[8] = {0, };
	int x;

	struct firmware embedded_firmware;
	const struct firmware *firmware = &embedded_firmware;
#if !defined(HOTPLUG_FIRMWARE)
	extern void _binary_dahdi_fw_oct6114_064_bin_size;
	extern u8 _binary_dahdi_fw_oct6114_064_bin_start[];
	extern void _binary_dahdi_fw_oct6114_128_bin_size;
	extern u8 _binary_dahdi_fw_oct6114_128_bin_start[];
#else
	static const char oct064_firmware[] = "dahdi-fw-oct6114-064.bin";
	static const char oct128_firmware[] = "dahdi-fw-oct6114-128.bin";
	const char *oct_firmware;
#endif

	if (!vpmsupport) {
		dev_info(&wc->xb.pdev->dev, "VPM450: Support Disabled\n");
		return;
	}

#if defined(HOTPLUG_FIRMWARE)
	if (wc->numspans == 2) {
		wc->vpm_name = "VPMOCT064";
		oct_firmware = oct064_firmware;
	} else {
		wc->vpm_name = "VPMOCT128";
		oct_firmware = oct128_firmware;
	}
	if ((request_firmware(&firmware, oct_firmware, &wc->xb.pdev->dev) != 0)
			|| !firmware) {
		dev_notice(&wc->xb.pdev->dev,
			   "VPM450: firmware %s not available from userspace\n",
			   oct_firmware);
		return;
	}
#else
	/* Yes... this is weird. objcopy gives us a symbol containing
	   the size of the firmware, not a pointer a variable containing
	   the size. The only way we can get the value of the symbol
	   is to take its address, so we define it as a pointer and
	   then cast that value to the proper type.
	*/
	if (wc->numspans == 2) {
		embedded_firmware.data = _binary_dahdi_fw_oct6114_064_bin_start;
		embedded_firmware.size =
				(size_t)&_binary_dahdi_fw_oct6114_064_bin_size;
	} else {
		embedded_firmware.size =
				(size_t)&_binary_dahdi_fw_oct6114_128_bin_size;
		embedded_firmware.data = _binary_dahdi_fw_oct6114_128_bin_start;
	}
#endif

	/* Setup alaw vs ulaw rules */
	for (x = 0; x < wc->numspans; x++) {
		if (wc->tspans[x]->span.channels > 24)
			laws[x] = 1;
	}

	wc->vpm = init_vpm450m(wc, laws, wc->numspans, firmware);

	if (!wc->vpm) {
		dev_notice(&wc->xb.pdev->dev, "VPM450: Failed to initialize\n");
		if (firmware != &embedded_firmware)
			release_firmware(firmware);
		return;
	}

	if (firmware != &embedded_firmware)
		release_firmware(firmware);

	dev_info(&wc->xb.pdev->dev,
		"VPM450: Present and operational servicing %d span(s)\n",
		wc->numspans);

}

static int t43x_clear_maint(struct dahdi_span *span);

static DEFINE_MUTEX(card_list_lock);
static LIST_HEAD(card_list);

struct t43x_desc {
	const char *name;
};

static const struct t43x_desc te435 = {"Wildcard TE435"}; /* pci express quad */
static const struct t43x_desc te235 = {"Wildcard TE235"}; /* pci express dual */
static const struct t43x_desc te436 = {"Wildcard TE436"}; /* pci quad */
static const struct t43x_desc te236 = {"Wildcard TE236"}; /* pci dual */

static int __t43x_pci_get(struct t43x *wc, unsigned int addr)
{
	unsigned int res = ioread8(wc->xb.membase + addr);
	return res;
}

static inline int __t43x_pci_set(struct t43x *wc, unsigned int addr, int val)
{
	iowrite8(val, wc->xb.membase + addr);
	__t43x_pci_get(wc, 0);
	return 0;
}

static inline int t43x_pci_get(struct t43x *wc, int addr)
{
	unsigned int ret;
	unsigned long flags;

	spin_lock_irqsave(&wc->reglock, flags);
	ret = __t43x_pci_get(wc, addr);
	spin_unlock_irqrestore(&wc->reglock, flags);
	return ret;
}

static inline int t43x_pci_set(struct t43x *wc, int addr, int val)
{
	unsigned long flags;
	unsigned int ret;
	spin_lock_irqsave(&wc->reglock, flags);
	ret = __t43x_pci_set(wc, addr, val);
	spin_unlock_irqrestore(&wc->reglock, flags);
	return ret;
}

static inline int
__t43x_framer_set(struct t43x *wc, int unit, int addr, int val)
{
	return __t43x_pci_set(wc, FRAMER_BASE + (unit << 8) + addr, val);
}

static inline int t43x_framer_set(struct t43x *wc, int unit, int addr, int val)
{
	return t43x_pci_set(wc, FRAMER_BASE + (unit << 8) + addr, val);
}

static inline int __t43x_framer_get(struct t43x *wc, int unit, int addr)
{
	return __t43x_pci_get(wc, FRAMER_BASE + (unit << 8) + addr);
}

static inline int t43x_framer_get(struct t43x *wc, int unit, int addr)
{
	return t43x_pci_get(wc, FRAMER_BASE + (unit << 8) + addr);
}

static void t43x_framer_reset(struct t43x *wc)
{
	/*
	 * When the framer is reset, RCLK will stop. The FPGA must be switched
	 * to it's internal clock when this happens, but it's only safe to
	 * switch the clock source on the FPGA when the DMA engine is stopped.
	 *
	 */
	wcxb_stop_dma(&wc->xb);
	wcxb_wait_for_stop(&wc->xb, 50);
	wcxb_set_clksrc(&wc->xb, WCXB_CLOCK_SELF);
	wcxb_gpio_clear(&wc->xb, FALC_CPU_RESET);
	msleep_interruptible(100);
	wcxb_gpio_set(&wc->xb, FALC_CPU_RESET);
}

static void t43x_setleds(struct t43x *wc, u32 leds)
{
	wcxb_gpio_set(&wc->xb, leds & LED_MASK);
	wcxb_gpio_clear(&wc->xb, ~leds & LED_MASK);
}

static void t43x_set_cas_mode(struct t43x *wc, int span_idx)
{
	struct t43x_span *ts = wc->tspans[span_idx];
	int fidx = (wc->numspans == 2) ? span_idx+1 : span_idx;
	int i, offset;
	int reg;
	unsigned long flags;
	bool span_has_cas_channel = false;

	if (debug)
		dev_info(&wc->xb.pdev->dev, "%s span: %d\n", __func__,
				span_idx);

	if (dahdi_is_e1_span(&ts->span)) {
		span_has_cas_channel = !(ts->span.lineconfig&DAHDI_CONFIG_CCS);
	} else {
		unsigned char ccb[3] = {0, 0, 0};
		/* Sort out channels that use CAS signalling */
		for (i = 0; i < ts->span.channels; i++) {
			offset = i/8;
			if (offset >= ARRAY_SIZE(ccb)) {
				WARN_ON(1);
				break;
			}
			if (ts->span.chans[i]->flags & DAHDI_FLAG_CLEAR)
				ccb[offset] |= 1 << (7 - (i % 8));
			else
				ccb[offset] &= ~(1 << (7 - (i % 8)));
		}

		spin_lock_irqsave(&wc->reglock, flags);
		__t43x_framer_set(wc, fidx, CCB1, ccb[0]);
		__t43x_framer_set(wc, fidx, CCB2, ccb[1]);
		__t43x_framer_set(wc, fidx, CCB3, ccb[2]);
		spin_unlock_irqrestore(&wc->reglock, flags);

		if ((~ccb[0]) | (~ccb[1]) | (~ccb[2]))
			span_has_cas_channel = true;
	}

	/* Unmask CAS RX interrupt if any single channel is in CAS mode */
	/* This interrupt is called RSC in T1 and CASC in E1 */
	spin_lock_irqsave(&wc->reglock, flags);
	reg = __t43x_framer_get(wc, fidx, IMR0);
	if (span_has_cas_channel)
		__t43x_framer_set(wc, fidx, IMR0, reg & ~0x08);
	else
		__t43x_framer_set(wc, fidx, IMR0, reg | 0x08);
	spin_unlock_irqrestore(&wc->reglock, flags);
}

/**
 * _t43x_free_channels - Free the memory allocated for the channels.
 *
 * Must be called with wc->reglock held.
 *
 */
static void _t43x_free_channels(struct t43x *wc)
{
	unsigned int x, y;

	for (x = 0; x < ARRAY_SIZE(wc->tspans); x++) {
		if (!wc->tspans[x])
			continue;
		for (y = 0; y < ARRAY_SIZE(wc->tspans[x]->chans); y++) {
			kfree(wc->tspans[x]->chans[y]);
			kfree(wc->tspans[x]->ec[y]);
		}
		kfree(wc->tspans[x]);
	}
}

static void free_wc(struct t43x *wc)
{
	unsigned long flags;
	LIST_HEAD(list);

	mutex_lock(&card_list_lock);
	list_del(&wc->card_node);
	mutex_unlock(&card_list_lock);

	spin_lock_irqsave(&wc->reglock, flags);
	_t43x_free_channels(wc);
	spin_unlock_irqrestore(&wc->reglock, flags);

	if (wc->wq)
		destroy_workqueue(wc->wq);
	kfree(wc->ddev->location);
	kfree(wc->ddev->devicetype);
	kfree(wc->ddev->hardware_id);
	if (wc->ddev)
		dahdi_free_device(wc->ddev);
	kfree(wc);
}

static void t43x_serial_setup(struct t43x *wc)
{
	unsigned long flags;
	int slot, fidx;

	dev_info(&wc->xb.pdev->dev,
		 "Setting up global serial parameters for card %d\n", wc->num);

	t43x_framer_reset(wc);

	spin_lock_irqsave(&wc->reglock, flags);
	/* GPC1: Multiplex mode enabled, FSC is output, active low, RCLK from
	 * channel 0 */
	__t43x_framer_set(wc, 0, 0x85, 0xe0);
	/* GPC3: Enable Multi Purpose Switches */
	__t43x_framer_set(wc, 0, 0xd3, 0xa1);
	/* GPC4: Enable Multi Purpose Switches */
	__t43x_framer_set(wc, 0, 0xd4, 0x83);
	/* GPC5: Enable Multi Purpose Switches */
	__t43x_framer_set(wc, 0, 0xd5, 0xe5);
	/* GPC4: Enable Multi Purpose Switches */
	__t43x_framer_set(wc, 0, 0xd6, 0x87);
	/* IPC: Interrupt push/pull active low, 8KHz ref clk */
	__t43x_framer_set(wc, 0, 0x08, 0x05);

	/* Global clocks (8.192 Mhz CLK) */
	__t43x_framer_set(wc, 0, 0x92, 0x00);
	__t43x_framer_set(wc, 0, 0x93, 0x18);
	__t43x_framer_set(wc, 0, 0x94, 0xfb);
	__t43x_framer_set(wc, 0, 0x95, 0x0b);
	__t43x_framer_set(wc, 0, 0x96, 0x00);
	__t43x_framer_set(wc, 0, 0x97, 0x0b);
	__t43x_framer_set(wc, 0, 0x98, 0xdb);
	__t43x_framer_set(wc, 0, 0x99, 0xdf);

	spin_unlock_irqrestore(&wc->reglock, flags);

	for (fidx = 0; fidx < 4; fidx++) {
		/* For dual-span, put the second and third framers
		 * onto the first and second timeslots */
		if (wc->numspans == 2)
			slot = (fidx - 1) & 3;
		else
			slot = fidx;
		spin_lock_irqsave(&wc->reglock, flags);

		/* Configure interrupts */

		/* GCR: Interrupt on Activation/Deactivation of AIX, LOS */
		__t43x_framer_set(wc, fidx, 0x46, 0xc0);

		/* Configure system interface */

		/* SIC1: 8.192 Mhz clock/bus, double buffer receive /
		 * transmit, byte interleaved */
		__t43x_framer_set(wc, fidx, 0x3e, 0xc2);
		/* SIC2: No FFS, no CRB, SSC2 = 0, phase = unit */
		__t43x_framer_set(wc, fidx, 0x3f, (slot << 1));

		/* SIC3: Edges for capture - original rx rising edge */
		__t43x_framer_set(wc, fidx, 0x40, 0x04);
		/* SIC4: CES high, SYPR opposite edge */
		__t43x_framer_set(wc, fidx, 0x2a, 0x06);

#ifndef RPC_RCLK
		/* CMR1: RCLK is at 8.192 Mhz dejittered */
		__t43x_framer_set(wc, fidx, 0x44, 0x30);
#else
		/* CMR1: RCLK is at 8.192 Mhz dejittered, ref clock is this
		 * channel */
		__t43x_framer_set(wc, fidx, 0x44, 0x38 | (fidx << 6));
#endif

		/* CMR2: We provide sync and clock for tx and rx. */
		__t43x_framer_set(wc, fidx, 0x45, 0x00);

		/* XC0: Normal operation of Sa-bits */
		__t43x_framer_set(wc, fidx, 0x22, 0x07);
		__t43x_framer_set(wc, fidx, 0x23, 0xfa);	/* XC1 */

		__t43x_framer_set(wc, fidx, 0x24, 0x07);	/* RC0 */
		__t43x_framer_set(wc, fidx, 0x25, 0xfa);	/* RC1 */

		/* Configure ports */
		/* PC1: SPYR/SPYX input on RPA/XPA */
		__t43x_framer_set(wc, fidx, 0x80, 0x00);
		/* PC2: Unused stuff */
		__t43x_framer_set(wc, fidx, 0x81, 0xBB);
#ifndef RPC_RCLK
		/* PC3: Unused stuff */
		__t43x_framer_set(wc, fidx, 0x82, 0xBB);
#else
		/* PC3: RPC is RCLK, XPC is low output */
		__t43x_framer_set(wc, fidx, 0x82, 0xFB);
#endif
		/* PC4: Unused stuff */
		__t43x_framer_set(wc, fidx, 0x83, 0xBB);
		/* PC5: XMFS active low, SCLKR is input, RCLK is output */
		__t43x_framer_set(wc, fidx, 0x84, 0x01);
		__t43x_framer_set(wc, fidx, 0x3b, 0x00);	/* Clear LCR1 */

		/* Make sure unused ports are set to T1 configuration as a
		 * default. This is required in order to make clock recovery
		 * works on spans that are actually configured. */

		__t43x_framer_set(wc, fidx, 0x1c, 0xf0);
		__t43x_framer_set(wc, fidx, 0x1d, 0x9c);
		__t43x_framer_set(wc, fidx, 0x1e, 0x20);
		__t43x_framer_set(wc, fidx, 0x20, 0x0c);
		/* FMR5: Enable RBS mode */
		__t43x_framer_set(wc, fidx, 0x21, 0x40);

		__t43x_framer_set(wc, fidx, 0x36, 0x08);
		__t43x_framer_set(wc, fidx, 0x37, 0xf0);
		__t43x_framer_set(wc, fidx, 0x3a, 0x21);

		__t43x_framer_set(wc, fidx, 0x02, 0x50);
		__t43x_framer_set(wc, fidx, 0x02, 0x00);

		__t43x_framer_set(wc, fidx, 0x38, 0x0a);
		__t43x_framer_set(wc, fidx, 0x39, 0x15);
		/* Tri-state the TX output for the port */
		__t43x_framer_set(wc, fidx, 0x28, 0x40);

		spin_unlock_irqrestore(&wc->reglock, flags);
	}
}

/**
 * t43x_span_assigned - Called when the span is assigned by DAHDI.
 * @span:	Span that has been assigned.
 *
 * When this function is called, the span has a valid spanno and all the
 * channels on the span have valid channel numbers assigned.
 *
 * This function is necessary because a device may be registered, and
 * then user space may then later decide to assign span numbers and the
 * channel numbers.
 *
 */
static void t43x_span_assigned(struct dahdi_span *span)
{
	struct t43x_span *tspan = container_of(span, struct t43x_span, span);
	struct t43x *wc  = tspan->owner;
	struct dahdi_span *pos;
	unsigned int unassigned_spans = 0;

	if (debug)
		dev_info(&wc->xb.pdev->dev, "%s\n", __func__);

	span->alarms = DAHDI_ALARM_NONE;

	/* We use this to make sure all the spans are assigned before
	 * running the serial setup. */
	list_for_each_entry(pos, &wc->ddev->spans, device_node) {
		if (!test_bit(DAHDI_FLAGBIT_REGISTERED, &pos->flags))
			++unassigned_spans;
	}

	if (0 == unassigned_spans) {
		/* Now all the spans are assigned so we can go ahead and start
		 * things up. */
		t43x_serial_setup(wc);
	}
}

static int syncsrc;
static int syncnum;
static int syncspan;
static DEFINE_SPINLOCK(synclock);

static void __t43x_set_rclk_src(struct t43x *wc, int span)
{
#ifndef RPC_RCLK
	int cmr1 = 0x38;	/* Clock Mode: RCLK sourced by DCO-R1
				   by default, Disable Clock-Switching */
	int fidx;

	if (2 == wc->numspans) {
		u8 reg;

		/* Since the clock always comes from the first span (which is
		 * not connected to a physical port on the dual span) we can
		 * always set the framer mode register to match whatever span
		 * we're currently sourcing the timing from. This ensures that
		 * the DCO-R is always expecting the right clock speed from the
		 * line. */

		fidx = span+1;

		reg = __t43x_framer_get(wc, fidx, 0x1d);
		__t43x_framer_set(wc, 0, 0x1d, reg);

		reg = __t43x_framer_get(wc, fidx, 0x1e);
		__t43x_framer_set(wc, 0, 0x1e, reg);

	} else {
		fidx = span;
	}

	cmr1 |= (fidx) << 6;
	__t43x_framer_set(wc, 0, 0x44, cmr1);
#else
	int fidx = (2 == wc->numspans) ? span+1 : span;
	int gpc1 = __t43x_framer_get(wc, 0, 0x85);

	gpc1 &= ~3;
	gpc1 |= fidx & 3;

	t43x_framer_set(wc, 0, 0x85, gpc1);
#endif
	dev_info(&wc->xb.pdev->dev, "RCLK source set to span %d\n", span+1);
}

/* This is called from the workqueue to wait for the TDM engine stop */

#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
static void t43x_clksrc_work_fn(void *data)
{
	struct t43x_clksrc_work  *work = data;
#else
static void t43x_clksrc_work_fn(struct work_struct *data)
{
	struct t43x_clksrc_work  *work = container_of(to_delayed_work(data),
						struct t43x_clksrc_work, work);
#endif
	struct t43x *wc = container_of(work, struct t43x, clksrc_work);

	if (debug) {
		dev_info(&wc->xb.pdev->dev,
			 "t43x_clksrc_work() called from queue\n");
	}

	if (wcxb_is_stopped(&wc->xb)) {

		/* Set new clock select */
		if (work->is_timing_master)
			wcxb_enable_timing_header_driver(&wc->xb);
		else
			wcxb_disable_timing_header_driver(&wc->xb);
		wcxb_set_clksrc(&wc->xb, work->clksrc);

		/* Restart DMA processing */
		wcxb_start(&wc->xb);
	} else {
		/* Stop DMA again in case DMA underrun int restarted it */
		wcxb_stop_dma(&wc->xb);
		queue_delayed_work(wc->wq, &work->work, msecs_to_jiffies(10));
	}
}

/**
 * __t43x_set_sclk_src - Change the current source of the source clock.
 * @wc:		The board to change the clock source on.
 * @mode:	The clock mode that we would like to move to.
 * @master:	If true, drive the clock on the timing header.
 *
 * The clock source cannot be changed while DMA is active, so this function
 * will stop the DMA, then queue a delayed work item in order to come back and
 * check that DMA was actually stopped before changing the source of the clock.
 *
 */
static void
__t43x_set_sclk_src(struct t43x *wc, enum wcxb_clock_sources mode, bool master)
{
	struct t43x_clksrc_work *const work = &wc->clksrc_work;
	unsigned long flags;
	bool changed = false;

	/* Cannot drive the clock on the header while also slaving from it. */
	WARN_ON(master && (mode == WCXB_CLOCK_SLAVE));

	spin_lock_irqsave(&work->lock, flags);
	if (!delayed_work_pending(&work->work)) {
		/* We want to check the actual settings. */
		changed = (wcxb_get_clksrc(&wc->xb) != mode) ||
		    (wcxb_is_timing_header_driver_enabled(&wc->xb) != master);
	} else {
		/* Otherwise, we'll check if delayed work is going to set it to
		 * the same value. */

		 changed = (work->clksrc != mode) ||
			   (work->is_timing_master != master);
	}
	if (changed) {
		work->clksrc = mode;
		work->is_timing_master = master;
	}
	spin_unlock_irqrestore(&work->lock, flags);

	if (!changed) {
		if (debug)
			dev_info(&wc->xb.pdev->dev, "Clock source is unchanged\n");
		return;
	}

	wcxb_stop_dma(&wc->xb);

	dev_dbg(&wc->xb.pdev->dev,
		"Queueing delayed work for clock source change\n");

	queue_delayed_work(wc->wq, &work->work, msecs_to_jiffies(10));
}

static ssize_t t43x_timing_master_show(struct device *dev,
				     struct device_attribute *attr,
				     char *buf)
{
	struct t43x *wc = dev_get_drvdata(dev);

	if (wcxb_is_timing_header_driver_enabled(&wc->xb))
		return sprintf(buf, "%d\n", wc->syncsrc);
	else
		return sprintf(buf, "%d\n", -1);
}

static DEVICE_ATTR(timing_master, 0400, t43x_timing_master_show, NULL);

static void create_sysfs_files(struct t43x *wc)
{
	int ret;
	ret = device_create_file(&wc->xb.pdev->dev,
				 &dev_attr_timing_master);
	if (ret) {
		dev_info(&wc->xb.pdev->dev,
			"Failed to create device attributes.\n");
	}
}

static void remove_sysfs_files(struct t43x *wc)
{
	device_remove_file(&wc->xb.pdev->dev, &dev_attr_timing_master);
}

static inline void __t43x_update_timing(struct t43x *wc)
{
	int i;

	/* update sync src info */
	if (wc->syncsrc != syncsrc) {
		dev_info(&wc->xb.pdev->dev, "Swapping card %d from %d to %d\n",
			 wc->num, wc->syncsrc, syncsrc);
		wc->syncsrc = syncsrc;
		/* Update sync sources */
		for (i = 0; i < wc->numspans; i++)
			wc->tspans[i]->span.syncsrc = wc->syncsrc;
		if (syncnum == wc->num) {
			__t43x_set_rclk_src(wc, syncspan-1);
			__t43x_set_sclk_src(wc, WCXB_CLOCK_RECOVER, 1);
			if (debug) {
				dev_notice(&wc->xb.pdev->dev,
					   "Card %d, using sync span %d, master\n",
					   wc->num, syncspan);
			}
		} else {
			__t43x_set_sclk_src(wc, WCXB_CLOCK_SLAVE, 0);
			if (debug) {
				dev_notice(&wc->xb.pdev->dev,
					   "Card %d, using Timing Bus, NOT master\n",
					   wc->num);
			}
		}
	}
}

static int __t43x_findsync(struct t43x *wc)
{
	int i;
	unsigned long flags;
	int p;
	int nonzero;
	int newsyncsrc = 0;		/* DAHDI span number */
	int newsyncnum = 0;		/* wct4xxp card number */
	int newsyncspan = 0;		/* span on given wct4xxp card */
	struct t43x *cur;

	spin_lock_irqsave(&synclock, flags);
	if (!wc->num) {
		/* If we're the first card, go through all the motions, up to 8
		 * levels of sync source */
		p = 1;
		while (p < 8) {
			nonzero = 0;
			list_for_each_entry(cur, &card_list, card_node) {
				for (i = 0; i < cur->numspans; i++) {
					struct t43x_span *const ts =
							cur->tspans[i];
					struct dahdi_span *const s =
							&cur->tspans[i]->span;
					if (!ts->syncpos)
						continue;
					nonzero = 1;
					if ((ts->syncpos == p) &&
					    !(s->alarms & NOSYNC_ALARMS) &&
					    (s->flags & DAHDI_FLAG_RUNNING)) {
						/* This makes a good sync
						 * source */
						newsyncsrc = s->spanno;
						newsyncnum = cur->num;
						newsyncspan = i + 1;
						/* Jump out */
						goto found;
					}
				}
			}
			if (nonzero)
				p++;
			else
				break;
		}
found:
		if ((syncnum != newsyncnum) ||
		    (syncsrc != newsyncsrc) ||
		    (newsyncspan != syncspan)) {
			if (debug) {
				dev_notice(&wc->xb.pdev->dev,
					   "New syncnum: %d (was %d), syncsrc: %d (was %d), syncspan: %d (was %d)\n",
					   newsyncnum, syncnum, newsyncsrc,
					   syncsrc, newsyncspan, syncspan);
			}
			syncnum = newsyncnum;
			syncsrc = newsyncsrc;
			syncspan = newsyncspan;
			nonzero = 0;
			list_for_each_entry(cur, &card_list, card_node)
				__t43x_update_timing(cur);
		}
	}
	__t43x_update_timing(wc);
	spin_unlock_irqrestore(&synclock, flags);
	return 0;
}

static void __t43x_set_timing_source_auto(struct t43x *wc)
{
	int x, i;
	int firstprio, secondprio;
	firstprio = secondprio = 4;

	if (debug)
		dev_info(&wc->xb.pdev->dev, "timing source auto\n");

	if (timingcable) {
		__t43x_findsync(wc);
	} else {
		if (debug)
			dev_info(&wc->xb.pdev->dev,
				 "Evaluating spans for timing source\n");
		for (x = 0; x < wc->numspans; x++) {
			if ((wc->tspans[x]->span.flags & DAHDI_FLAG_RUNNING) &&
			   !(wc->tspans[x]->span.alarms & (DAHDI_ALARM_RED |
							   DAHDI_ALARM_BLUE))) {
				if (debug) {
					dev_info(&wc->xb.pdev->dev,
						 "span %d is green : syncpos %d\n",
						 x+1, wc->tspans[x]->syncpos);
				}
				if (wc->tspans[x]->syncpos) {
					/* Valid rsync source in recovered
					   timing mode */
					if (firstprio == 4)
						firstprio = x;
					else if (wc->tspans[x]->syncpos <
						wc->tspans[firstprio]->syncpos)
						firstprio = x;
				} else {
					/* Valid rsync source in system timing
					   mode */
					if (secondprio == 4)
						secondprio = x;
				}
			}
		}
		if (firstprio != 4) {
			wc->syncsrc = firstprio;
			__t43x_set_rclk_src(wc, firstprio);
			__t43x_set_sclk_src(wc, WCXB_CLOCK_RECOVER, 0);
			dev_info(&wc->xb.pdev->dev,
				 "Recovered timing mode, RCLK set to span %d\n",
				 firstprio+1);
		} else if (secondprio != 4) {
			wc->syncsrc = -1;
			__t43x_set_rclk_src(wc, secondprio);
			__t43x_set_sclk_src(wc, WCXB_CLOCK_SELF, 0);
			dev_info(&wc->xb.pdev->dev,
				 "System timing mode, RCLK set to span %d\n",
				secondprio+1);
		} else {
			wc->syncsrc = -1;
			dev_info(&wc->xb.pdev->dev,
				 "All spans in alarm : No valid span to source RCLK from\n");
			/* Default rclk to lock with span 1 */
			__t43x_set_rclk_src(wc, 0);
			__t43x_set_sclk_src(wc, WCXB_CLOCK_SELF, 0);
		}

		/* Propagate sync selection to dahdi_span struct
		 * this is read by dahdi_tool to display the span's
		 * master/slave sync information */
		for (i = 0; i < wc->numspans; i++)
			wc->tspans[i]->span.syncsrc = wc->syncsrc + 1;
	}
}

static void
t43x_configure_t1(struct t43x *wc, int span_idx, int lineconfig, int txlevel)
{
	struct t43x_span *ts = wc->tspans[span_idx];
	int fidx = (wc->numspans == 2) ? span_idx+1 : span_idx;
	unsigned int fmr4, fmr2, fmr1, fmr0, lim2;
	char *framing, *line;
	int mytxlevel, reg;
	unsigned long flags;

	if ((txlevel > 7) || (txlevel < 4))
		mytxlevel = 0;
	else
		mytxlevel = txlevel - 4;

	/* FMR1: Mode 0, T1 mode, CRC on for ESF, 8.192 Mhz system data rate,
	 * no XAIS */
	fmr1 = 0x9c;
	/* FMR2: no payload loopback, don't auto yellow alarm */
	fmr2 = 0x20;

	if (SPANTYPE_DIGITAL_J1 == ts->span.spantype) {
		fmr4 = 0x1c;
	} else {
		/* FMR4: Lose sync on 2 out of 5 framing bits, auto resync */
		fmr4 = 0x0c;
	}

	/* LIM2: 50% peak is a "1", Advanced Loss Recovery, Multi Purpose
	 * Analog Switch enabled */
	lim2 = 0x23;
	/* LIM2: Add line buildout */
	lim2 |= (mytxlevel << 6);

	spin_lock_irqsave(&wc->reglock, flags);

	__t43x_framer_set(wc, fidx, 0x1d, fmr1);
	__t43x_framer_set(wc, fidx, 0x1e, fmr2);

	/* Configure line interface */
	if (lineconfig & DAHDI_CONFIG_AMI) {
		line = "AMI";
		/* WCT4XX has workaround for errata fmr0 = 0xb0 */
		/* was fmr0 = 0xa0; */
		fmr0 = 0xb0;
	} else {
		line = "B8ZS";
		fmr0 = 0xf0;
	}
	if (lineconfig & DAHDI_CONFIG_D4) {
		framing = "D4";
	} else {
		framing = "ESF";
		fmr4 |= 0x2;
		fmr2 |= 0xc0;
	}

	/* Suppress RSC interrupt for cleared channels */
	__t43x_framer_set(wc, fidx, 0x09, 0x80);
	__t43x_framer_set(wc, fidx, 0x1c, fmr0);

	__t43x_framer_set(wc, fidx, 0x20, fmr4);
	/* FMR5: Enable RBS mode */
	__t43x_framer_set(wc, fidx, 0x21, 0x40);

	/* LIM1: Clear data in case of LOS, Set receiver threshold (0.5V), No
	 * remote loop, no DRS */
	__t43x_framer_set(wc, fidx, 0x37, 0xf0);
	/* LIM0: Enable auto long haul mode, no local loop (set after LIM1) */
	__t43x_framer_set(wc, fidx, 0x36, 0x08);

	/* CMDR: Reset the receiver and transmitter line interface */
	__t43x_framer_set(wc, fidx, 0x02, 0x50);
	/* CMDR: Reset the receiver and transmitter line interface */
	__t43x_framer_set(wc, fidx, 0x02, 0x00);
	if (debug) {
		dev_info(&wc->xb.pdev->dev,
			 "card %d span %d: setting Rtx to 0ohm for T1\n",
			 wc->num, span_idx);
	}
	/* PC6: set Rtx to 0ohm for T1 */
	__t43x_framer_set(wc, fidx, 0x86, 0x00);

	/* Bugfix register for errata #3 */
	__t43x_framer_set(wc, fidx, 0xbd, 0x05);

	/* LIM2: 50% peak amplitude is a "1" */
	__t43x_framer_set(wc, fidx, 0x3a, lim2);
	/* PCD: LOS after 176 consecutive "zeros" */
	__t43x_framer_set(wc, fidx, 0x38, 0x0a);
	/* PCR: 22 "ones" clear LOS */
	__t43x_framer_set(wc, fidx, 0x39, 0x15);

	reg = __t43x_framer_get(wc, fidx, 0x24);
	if (SPANTYPE_DIGITAL_J1 == ts->span.spantype) {
		/* set J1 overide */
		__t43x_framer_set(wc, fidx, 0x24, reg | 0x80);
	} else {
		/* clear J1 overide */
		__t43x_framer_set(wc, fidx, 0x24, reg & ~0x80);
	}

	/* Generate pulse mask for T1 */
	switch (mytxlevel) {
	case 3:
		__t43x_framer_set(wc, fidx, 0x26, 0x07);	/* XPM0 */
		__t43x_framer_set(wc, fidx, 0x27, 0x01);	/* XPM1 */
		__t43x_framer_set(wc, fidx, 0x28, 0x00);	/* XPM2 */
		break;
	case 2:
		__t43x_framer_set(wc, fidx, 0x26, 0x8c);	/* XPM0 */
		__t43x_framer_set(wc, fidx, 0x27, 0x11);	/* XPM1 */
		__t43x_framer_set(wc, fidx, 0x28, 0x01);	/* XPM2 */
		break;
	case 1:
		__t43x_framer_set(wc, fidx, 0x26, 0x8c);	/* XPM0 */
		__t43x_framer_set(wc, fidx, 0x27, 0x01);	/* XPM1 */
		__t43x_framer_set(wc, fidx, 0x28, 0x00);	/* XPM2 */
		break;
	case 0:
	default:
		__t43x_framer_set(wc, fidx, 0x26, 0x1a);	/* XPM0 */
		__t43x_framer_set(wc, fidx, 0x27, 0x27);	/* XPM1 */
		__t43x_framer_set(wc, fidx, 0x28, 0x01);	/* XPM2 */
		break;
	}

	__t43x_framer_set(wc, fidx, 0x14, 0xff);	/* IMR0 */
	__t43x_framer_set(wc, fidx, 0x15, 0xff);	/* IMR1 */

	/* IMR2: All the alarms */
	__t43x_framer_set(wc, fidx, 0x16, 0x00);
	/* IMR3: ES, SEC, LLBSC, rx slips */
	__t43x_framer_set(wc, fidx, 0x17, 0x34);
	/* IMR4: Slips on transmit */
	__t43x_framer_set(wc, fidx, 0x18, 0x3f);

	spin_unlock_irqrestore(&wc->reglock, flags);
	dev_info(&wc->xb.pdev->dev, "Span %d configured for %s/%s\n",
			span_idx, framing, line);
}

static void t43x_configure_e1(struct t43x *wc, int span_idx, int lineconfig)
{
	int fidx = (wc->numspans == 2) ? span_idx+1 : span_idx;
	unsigned int fmr2, fmr1, fmr0;
	unsigned int cas = 0;
	unsigned int imr3extra = 0;
	char *crc4 = "";
	char *framing, *line;
	unsigned long flags;

	fmr1 = 0x44; /* FMR1: E1 mode, Automatic force resync, PCM30 mode,
			8.192 Mhz backplane, no XAIS */
	fmr2 = 0x03; /* FMR2: Auto transmit remote alarm, auto loss of
			multiframe recovery, no payload loopback */

	if (lineconfig & DAHDI_CONFIG_CRC4) {
		fmr1 |= 0x08;	/* CRC4 transmit */
		fmr2 |= 0xc0;	/* CRC4 receive */
		crc4 = "/CRC4";
	}

	spin_lock_irqsave(&wc->reglock, flags);

	__t43x_framer_set(wc, fidx, 0x1d, fmr1);
	__t43x_framer_set(wc, fidx, 0x1e, fmr2);

	/* Configure line interface */
	if (lineconfig & DAHDI_CONFIG_AMI) {
		line = "AMI";
		/* workaround for errata #2 in ES v3 09-10-16 */
		fmr0 = 0xb0;
	} else {
		line = "HDB3";
		fmr0 = 0xf0;
	}

	if (lineconfig & DAHDI_CONFIG_CCS) {
		framing = "CCS";
		imr3extra = 0x28;
	} else {
		framing = "CAS";
		cas = 0x40;
	}

	__t43x_framer_set(wc, fidx, 0x1c, fmr0);

	/* LIM1: Clear data in case of LOS, Set receiver threshold (0.5V), No
	 * remote loop, no DRS */
	__t43x_framer_set(wc, fidx, 0x37, 0xf0);
	/* LIM0: Enable auto long haul mode, no local loop (must be after
	 * LIM1) */
	__t43x_framer_set(wc, fidx, 0x36, 0x08);

	/* CMDR: Reset the receiver and transmitter line interface */
	__t43x_framer_set(wc, fidx, 0x02, 0x50);
	/* CMDR: Reset the receiver and transmitter line interface */
	__t43x_framer_set(wc, fidx, 0x02, 0x00);
	if (debug)
		dev_info(&wc->xb.pdev->dev,
				"setting Rtx to 7.5ohm for E1\n");
	/* PC6: turn on 7.5ohm Rtx for E1 */
	__t43x_framer_set(wc, fidx, 0x86, 0x40);

	/* Condition receive line interface for E1 after reset */
	__t43x_framer_set(wc, fidx, 0xbb, 0x17);
	__t43x_framer_set(wc, fidx, 0xbc, 0x55);
	__t43x_framer_set(wc, fidx, 0xbb, 0x97);
	__t43x_framer_set(wc, fidx, 0xbb, 0x11);
	__t43x_framer_set(wc, fidx, 0xbc, 0xaa);
	__t43x_framer_set(wc, fidx, 0xbb, 0x91);
	__t43x_framer_set(wc, fidx, 0xbb, 0x12);
	__t43x_framer_set(wc, fidx, 0xbc, 0x55);
	__t43x_framer_set(wc, fidx, 0xbb, 0x92);
	__t43x_framer_set(wc, fidx, 0xbb, 0x0c);
	__t43x_framer_set(wc, fidx, 0xbb, 0x00);
	__t43x_framer_set(wc, fidx, 0xbb, 0x8c);

	/* LIM2: 50% peak amplitude isa "1", Multi Purpose Analog Switch
	 * enabled */
	__t43x_framer_set(wc, fidx, 0x3a, 0x22);

	/* PCD: LOS after 176 consecutive "zeros" */
	__t43x_framer_set(wc, fidx, 0x38, 0x0a);
	/* PCR: 22 "ones" clear LOS */
	__t43x_framer_set(wc, fidx, 0x39, 0x15);

	/* XSW: Spare bits all to 1 */
	__t43x_framer_set(wc, fidx, 0x20, 0x9f);
	/* XSP: E-bit set when async. AXS auto, XSIF to 1 */
	__t43x_framer_set(wc, fidx, 0x21, 0x1c|cas);

	/* Generate pulse mask for E1 */
	__t43x_framer_set(wc, fidx, 0x26, 0xb5);	/* XPM0 */
	__t43x_framer_set(wc, fidx, 0x27, 0x02);	/* XPM1 */
	__t43x_framer_set(wc, fidx, 0x28, 0x00);	/* XPM2 */

	__t43x_framer_set(wc, fidx, 0x14, 0xff);	/* IMR0 */
	__t43x_framer_set(wc, fidx, 0x15, 0xff);	/* IMR1 */

	__t43x_framer_set(wc, fidx, 0x16, 0x00); /* IMR2: the alarm stuff! */
	__t43x_framer_set(wc, fidx, 0x17, 0x04 | imr3extra);	/* IMR3: AIS */
	__t43x_framer_set(wc, fidx, 0x18, 0x3f); /* IMR4: slips on transmit */

	spin_unlock_irqrestore(&wc->reglock, flags);
	dev_info(&wc->xb.pdev->dev, "Span configured for %s/%s%s\n",
			framing, line, crc4);
}

static bool have_open_channels(const struct t43x_span *ts)
{
	int x, j;
	for (x = 0, j = 0; x < ts->span.channels; x++) {
		const struct dahdi_chan *chan = ts->span.chans[x];
		if (test_bit(DAHDI_FLAGBIT_OPEN, &chan->flags) ||
		    dahdi_have_netdev(chan))
			return true;
	}
	return false;
}

static void t43x_framer_start(struct t43x *wc)
{
	int unit;
	unsigned long flags;
	int res;

	if (debug)
		dev_info(&wc->xb.pdev->dev, "%s\n", __func__);

	/* Disable fpga hardware interrupts */
	wcxb_disable_interrupts(&wc->xb);

	/* Disable DMA */
	wcxb_stop_dma(&wc->xb);
	res = wcxb_wait_for_stop(&wc->xb, 50);
	if (res)
		dev_warn(&wc->xb.pdev->dev, "DMA engine did not stop.\n");

	for (unit = 0; unit < wc->numspans; unit++) {
		struct t43x_span *ts = wc->tspans[unit];
		if (dahdi_is_e1_span(&ts->span)) {
			t43x_configure_e1(wc, unit, ts->span.lineconfig);
		} else { /* is a T1 card */
			t43x_configure_t1(wc, unit, ts->span.lineconfig,
					ts->span.txlevel);
		}
		t43x_set_cas_mode(wc, unit);

		set_bit(DAHDI_FLAGBIT_RUNNING, &ts->span.flags);

		/* Reset span alarm state to RED to prevent false
		 * temporary GREEN state on span bringup */
		ts->span.alarms |= DAHDI_ALARM_RED;
	}

	for (unit = 0; unit < wc->numspans; unit++) {
		/* Get this party started */
		struct t43x_span *ts = wc->tspans[unit];

		/* Check for "open channels" here in case some channels have
		 * netdev. */
		if (have_open_channels(ts))
			clear_bit(HAVE_OPEN_CHANNELS_FLAGBIT, &ts->bit_flags);
		else
			set_bit(HAVE_OPEN_CHANNELS_FLAGBIT, &ts->bit_flags);

		local_irq_save(flags);
		t43x_check_alarms(wc, unit);
		t43x_check_sigbits(wc, unit);
		local_irq_restore(flags);
	}

	dev_info(&wc->xb.pdev->dev, "Enabling DMA controller and interrupts\n");

	/* start interrupts and DMA processing */
	wcxb_start(&wc->xb);

	t43x_check_for_interrupts(wc);

	/* force re-evaluation of timing source */
	wc->syncsrc = -1;
	spin_lock_irqsave(&wc->reglock, flags);
	__t43x_set_timing_source_auto(wc);
	spin_unlock_irqrestore(&wc->reglock, flags);

	/* Clear all counters */
	for (unit = 0; unit < wc->numspans; unit++) {
		struct t43x_span *ts = wc->tspans[unit];
		memset(&ts->span.count, 0, sizeof(ts->span.count));
	}

	/* Invoke timer function to set leds */
	mod_timer(&wc->timer, jiffies);
}

#ifndef RPC_RCLK
/**
 * t43x_check_spanconfig - Return 0 if the span configuration is valid.
 * @wc - The card to check.
 *
 * The TE435 cannot sync timing from a span in a different line mode than the
 * first span. This function should be called after the spans are configured to
 * ensure that the are not configured in this mode.
 *
 */
static int t43x_check_spanconfig(const struct t43x *wc)
{
	unsigned int i;
	bool span_1_is_e1;

	if (&te435 != wc->devtype)
		return 0;

	span_1_is_e1 = dahdi_is_e1_span(&wc->tspans[0]->span);

	for (i = 1; i < wc->numspans; ++i) {
		struct t43x_span *ts = wc->tspans[i];

		/* We only need to check spans that we could be a sync source */
		if (!ts->syncpos)
			continue;

		if ((bool)dahdi_is_e1_span(&ts->span) == span_1_is_e1)
			continue;

		dev_warn(&wc->xb.pdev->dev,
			 "Local span %d is configured as a sync source but the line mode does not match local span 1.\n",
			 ts->span.offset + 1);
		dev_warn(&wc->xb.pdev->dev,
			 "Please configure local span 1 as a sync src and ensure all other local sync sources match the line config of span 1.\n");

		return -EINVAL;
	}

	return 0;
}
#endif

static int t43x_startup(struct file *file, struct dahdi_span *span)
{
	struct t43x_span *ts = container_of(span, struct t43x_span, span);
	struct t43x *wc = ts->owner;

	if (debug)
		dev_info(&wc->xb.pdev->dev, "%s\n", __func__);

#ifndef RPC_RCLK
	if (t43x_check_spanconfig(wc))
		return -EINVAL;
#endif

	/* Reset framer with proper parameters and start */
	dev_info(&wc->xb.pdev->dev,
			"Calling startup (flags is %lu)\n", span->flags);
	t43x_framer_start(wc);

	return 0;
}

static inline bool is_initialized(struct t43x *wc)
{
	WARN_ON(wc->not_ready < 0);
	return (wc->not_ready == 0);
}

/**
 * t43x_wait_for_ready
 *
 * Check if the board has finished any setup and is ready to start processing
 * calls.
 */
static int t43x_wait_for_ready(struct t43x *wc)
{
	while (!is_initialized(wc)) {
		if (fatal_signal_pending(current))
			return -EIO;
		msleep_interruptible(250);
	}
	return 0;
}

static int t43x_chanconfig(struct file *file,
			    struct dahdi_chan *chan, int sigtype)
{
	struct t43x *wc = chan->pvt;

	if (file->f_flags & O_NONBLOCK && !is_initialized(wc))
		return -EAGAIN;
	else
		t43x_wait_for_ready(wc);

	if (test_bit(DAHDI_FLAGBIT_RUNNING, &chan->span->flags))
		t43x_set_cas_mode(wc, chan->span->offset);
	return 0;
}

static int t43x_rbsbits(struct dahdi_chan *chan, int bits)
{
	u_char m, c;
	int n, b;
	struct t43x *wc = chan->pvt;
	struct t43x_span *ts = container_of(chan->span, struct t43x_span, span);
	int fidx = (2 == wc->numspans) ?
				chan->span->offset+1 : chan->span->offset;
	unsigned long flags;

	if (dahdi_is_e1_span(&ts->span)) { /* do it E1 way */
		if (chan->chanpos == 16)
			return 0;

		n = chan->chanpos - 1;
		if (chan->chanpos > 15)
			n--;
		b = (n % 15);
		spin_lock_irqsave(&wc->reglock, flags);
		c = ts->txsigs[b];
		m = (n / 15) << 2; /* nibble selector */
		c &= (0xf << m); /* keep the other nibble */
		c |= (bits & 0xf) << (4 - m); /* put our new nibble here */
		ts->txsigs[b] = c;
		/* output them to the chip */
		__t43x_framer_set(wc, fidx, 0x71 + b, c);
		spin_unlock_irqrestore(&wc->reglock, flags);
	} else if (ts->span.lineconfig & DAHDI_CONFIG_D4) {
		n = chan->chanpos - 1;
		b = (n / 4);
		spin_lock_irqsave(&wc->reglock, flags);
		c = ts->txsigs[b];
		m = ((3 - (n % 4)) << 1); /* nibble selector */
		c &= ~(0x3 << m); /* keep the other nibble */
		c |= ((bits >> 2) & 0x3) << m; /* put our new nibble here */
		ts->txsigs[b] = c;
		/* output them to the chip */
		__t43x_framer_set(wc, fidx, 0x70 + b, c);
		__t43x_framer_set(wc, fidx, 0x70 + b + 6, c);
		spin_unlock_irqrestore(&wc->reglock, flags);
	} else if (ts->span.lineconfig & DAHDI_CONFIG_ESF) {
		n = chan->chanpos - 1;
		b = (n / 2);
		spin_lock_irqsave(&wc->reglock, flags);
		c = ts->txsigs[b];
		m = ((n % 2) << 2); /* nibble selector */
		c &= (0xf << m); /* keep the other nibble */
		c |= (bits & 0xf) << (4 - m); /* put our new nibble here */
		ts->txsigs[b] = c;
		/* output them to the chip */
		__t43x_framer_set(wc, fidx, 0x70 + b, c);
		spin_unlock_irqrestore(&wc->reglock, flags);
	}

	return 0;
}

static inline void t43x_dahdi_rbsbits(struct dahdi_chan *c, const int rxs)
{
	if (!(c->sig & DAHDI_SIG_CLEAR) && (c->rxsig != rxs))
		dahdi_rbsbits(c, rxs);
}

static void t43x_check_sigbits(struct t43x *wc, int span_idx)
{
	int a, i, rxs;
	struct t43x_span *ts = wc->tspans[span_idx];
	int fidx = (wc->numspans == 2) ? span_idx+1 : span_idx;

	if (dahdi_is_e1_span(&ts->span)) {
		for (i = 0; i < 15; i++) {
			a = t43x_framer_get(wc, fidx, 0x71 + i);
			rxs = (a & 0xf);
			t43x_dahdi_rbsbits(ts->span.chans[i+16], rxs);

			rxs = (a >> 4) & 0xf;
			t43x_dahdi_rbsbits(ts->span.chans[i], rxs);
		}
	} else if (ts->span.lineconfig & DAHDI_CONFIG_D4) {
		for (i = 0; i < 24; i += 4) {
			a = t43x_framer_get(wc, fidx, 0x70 + (i>>2));
			rxs = (a & 0x3) << 2;
			t43x_dahdi_rbsbits(ts->span.chans[i+3], rxs);

			rxs = (a & 0xc);
			t43x_dahdi_rbsbits(ts->span.chans[i+2], rxs);

			rxs = (a >> 2) & 0xc;
			t43x_dahdi_rbsbits(ts->span.chans[i+1], rxs);

			rxs = (a >> 4) & 0xc;
			t43x_dahdi_rbsbits(ts->span.chans[i], rxs);
		}
	} else {
		for (i = 0; i < 24; i += 2) {
			a = t43x_framer_get(wc, fidx, 0x70 + (i>>1));
			rxs = (a & 0xf);
			t43x_dahdi_rbsbits(ts->span.chans[i+1], rxs);

			rxs = (a >> 4) & 0xf;
			t43x_dahdi_rbsbits(ts->span.chans[i], rxs);
		}
	}
}

struct maint_work_struct {
	struct work_struct work;
	struct t43x *wc;
	int cmd;
	struct dahdi_span *span;
};

#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
static void t43x_maint_work(void *data)
{
	struct maint_work_struct *w = data;
#else
static void t43x_maint_work(struct work_struct *work)
{
	struct maint_work_struct *w = container_of(work,
					struct maint_work_struct, work);
#endif

	struct t43x *wc = w->wc;
	struct dahdi_span *span = w->span;
	int reg = 0;
	int cmd = w->cmd;
	unsigned long flags;
	int fidx = (wc->numspans == 2) ? span->offset+1 : span->offset;

	if (dahdi_is_e1_span(span)) {
		switch (cmd) {
		case DAHDI_MAINT_NONE:
			dev_info(&wc->xb.pdev->dev,
				 "Clearing all maint modes\n");
			t43x_clear_maint(span);
			break;
		case DAHDI_MAINT_LOCALLOOP:
			dev_info(&wc->xb.pdev->dev,
				 "Turning on local loopback\n");
			t43x_clear_maint(span);
			spin_lock_irqsave(&wc->reglock, flags);
			reg = __t43x_framer_get(wc, fidx, LIM0);
			if (reg < 0) {
				spin_unlock_irqrestore(&wc->reglock, flags);
				goto cleanup;
			}
			__t43x_framer_set(wc, fidx, LIM0, reg | LIM0_LL);
			spin_unlock_irqrestore(&wc->reglock, flags);
			break;
		case DAHDI_MAINT_NETWORKLINELOOP:
			dev_info(&wc->xb.pdev->dev,
					"Turning on network line loopback\n");
			t43x_clear_maint(span);
			spin_lock_irqsave(&wc->reglock, flags);
			reg = __t43x_framer_get(wc, fidx, LIM1);
			if (reg < 0) {
				spin_unlock_irqrestore(&wc->reglock, flags);
				goto cleanup;
			}
			__t43x_framer_set(wc, fidx, LIM1, reg | LIM1_RL);
			spin_unlock_irqrestore(&wc->reglock, flags);
			break;
		case DAHDI_MAINT_NETWORKPAYLOADLOOP:
			dev_info(&wc->xb.pdev->dev,
				"Turning on network payload loopback\n");
			t43x_clear_maint(span);
			spin_lock_irqsave(&wc->reglock, flags);
			reg = __t43x_framer_get(wc, fidx, LIM1);
			if (reg < 0) {
				spin_unlock_irqrestore(&wc->reglock, flags);
				goto cleanup;
			}
			__t43x_framer_set(wc, fidx, LIM1,
					  reg | (LIM1_RL | LIM1_JATT));
			spin_unlock_irqrestore(&wc->reglock, flags);
			break;
		case DAHDI_MAINT_FAS_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 5));
			break;
		case DAHDI_MAINT_MULTI_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 4));
			break;
		case DAHDI_MAINT_CRC_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 3));
			break;
		case DAHDI_MAINT_CAS_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 2));
			break;
		case DAHDI_MAINT_PRBS_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 1));
			break;
		case DAHDI_MAINT_BIPOLAR_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 0));
			break;
		default:
			dev_info(&wc->xb.pdev->dev,
					"Unknown E1 maint command: %d\n", cmd);
			goto cleanup;
		}
	} else {
		switch (cmd) {
		case DAHDI_MAINT_NONE:
			dev_info(&wc->xb.pdev->dev,
				 "Clearing all maint modes\n");
			t43x_clear_maint(span);
			break;
		case DAHDI_MAINT_LOCALLOOP:
			dev_info(&wc->xb.pdev->dev,
				 "Turning on local loopback\n");
			t43x_clear_maint(span);
			spin_lock_irqsave(&wc->reglock, flags);
			reg = __t43x_framer_get(wc, fidx, LIM0);
			if (reg < 0) {
				spin_unlock_irqrestore(&wc->reglock, flags);
				goto cleanup;
			}
			__t43x_framer_set(wc, fidx, LIM0, reg | LIM0_LL);
			spin_unlock_irqrestore(&wc->reglock, flags);
			break;
		case DAHDI_MAINT_NETWORKLINELOOP:
			dev_info(&wc->xb.pdev->dev,
					"Turning on network line loopback\n");
			t43x_clear_maint(span);
			spin_lock_irqsave(&wc->reglock, flags);
			reg = __t43x_framer_get(wc, fidx, LIM1);
			if (reg < 0) {
				spin_unlock_irqrestore(&wc->reglock, flags);
				goto cleanup;
			}
			__t43x_framer_set(wc, fidx, LIM1, reg | LIM1_RL);
			spin_unlock_irqrestore(&wc->reglock, flags);
			break;
		case DAHDI_MAINT_NETWORKPAYLOADLOOP:
			dev_info(&wc->xb.pdev->dev,
				"Turning on network payload loopback\n");
			t43x_clear_maint(span);
			spin_lock_irqsave(&wc->reglock, flags);
			reg = __t43x_framer_get(wc, fidx, LIM1);
			if (reg < 0) {
				spin_unlock_irqrestore(&wc->reglock, flags);
				goto cleanup;
			}
			__t43x_framer_set(wc, fidx, LIM1,
					  reg | (LIM1_RL | LIM1_JATT));
			spin_unlock_irqrestore(&wc->reglock, flags);
			break;
		case DAHDI_MAINT_LOOPUP:
			dev_info(&wc->xb.pdev->dev,
				 "Transmitting loopup code\n");
			t43x_clear_maint(span);
			t43x_framer_set(wc, fidx, 0x21, 0x50);
			break;
		case DAHDI_MAINT_LOOPDOWN:
			dev_info(&wc->xb.pdev->dev,
				 "Transmitting loopdown code\n");
			t43x_clear_maint(span);
			t43x_framer_set(wc, fidx, 0x21, 0x60);
			break;
		case DAHDI_MAINT_FAS_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 5));
			break;
		case DAHDI_MAINT_MULTI_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 4));
			break;
		case DAHDI_MAINT_CRC_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 3));
			break;
		case DAHDI_MAINT_CAS_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 2));
			break;
		case DAHDI_MAINT_PRBS_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 1));
			break;
		case DAHDI_MAINT_BIPOLAR_DEFECT:
			t43x_framer_set(wc, fidx, 0x1b, (1 << 0));
			break;
		default:
			dev_info(&wc->xb.pdev->dev,
					"Unknown T1 maint command: %d\n", cmd);
			return;
		}
	}

	/* update DAHDI_ALARM_LOOPBACK status bit and check timing source */
	spin_lock_irqsave(&wc->reglock, flags);
	if (!span->maintstat)
		span->alarms &= ~DAHDI_ALARM_LOOPBACK;
	dahdi_alarm_notify(span);
	__t43x_set_timing_source_auto(wc);
	spin_unlock_irqrestore(&wc->reglock, flags);

cleanup:
	kfree(w);
	return;
}

static int t43x_reset_counters(struct dahdi_span *span)
{
	struct t43x_span *ts = container_of(span, struct t43x_span, span);
	memset(&ts->span.count, 0, sizeof(ts->span.count));
	return 0;
}

static int t43x_maint(struct dahdi_span *span, int cmd)
{
	struct maint_work_struct *work;
	struct t43x_span *ts = container_of(span, struct t43x_span, span);
	struct t43x *wc = ts->owner;

	if (dahdi_is_e1_span(span)) {
		switch (cmd) {
		case DAHDI_MAINT_NONE:
		case DAHDI_MAINT_LOCALLOOP:
		case DAHDI_MAINT_NETWORKLINELOOP:
		case DAHDI_MAINT_NETWORKPAYLOADLOOP:
		case DAHDI_MAINT_FAS_DEFECT:
		case DAHDI_MAINT_MULTI_DEFECT:
		case DAHDI_MAINT_CRC_DEFECT:
		case DAHDI_MAINT_CAS_DEFECT:
		case DAHDI_MAINT_PRBS_DEFECT:
		case DAHDI_MAINT_BIPOLAR_DEFECT:
			break;
		case DAHDI_MAINT_LOOPUP:
		case DAHDI_MAINT_LOOPDOWN:
			dev_info(&wc->xb.pdev->dev,
				"Only local loop supported in E1 mode\n");
			return -ENOSYS;
		case DAHDI_RESET_COUNTERS:
			t43x_reset_counters(span);
			return 0;
		default:
			dev_info(&wc->xb.pdev->dev,
					"Unknown E1 maint command: %d\n", cmd);
			return -ENOSYS;
		}
	} else {
		switch (cmd) {
		case DAHDI_MAINT_NONE:
		case DAHDI_MAINT_LOCALLOOP:
		case DAHDI_MAINT_NETWORKLINELOOP:
		case DAHDI_MAINT_NETWORKPAYLOADLOOP:
		case DAHDI_MAINT_LOOPUP:
		case DAHDI_MAINT_LOOPDOWN:
		case DAHDI_MAINT_FAS_DEFECT:
		case DAHDI_MAINT_MULTI_DEFECT:
		case DAHDI_MAINT_CRC_DEFECT:
		case DAHDI_MAINT_CAS_DEFECT:
		case DAHDI_MAINT_PRBS_DEFECT:
		case DAHDI_MAINT_BIPOLAR_DEFECT:
			break;
		case DAHDI_RESET_COUNTERS:
			t43x_reset_counters(span);
			return 0;
		default:
			dev_info(&wc->xb.pdev->dev,
					"Unknown T1 maint command: %d\n", cmd);
			return -ENOSYS;
		}
	}

	work = kzalloc(sizeof(*work), GFP_ATOMIC);
	if (!work) {
		dev_info(&wc->xb.pdev->dev,
				"Failed to allocate memory for workqueue\n");
		return -ENOMEM;
	}

	work->span = span;
	work->wc = wc;
	work->cmd = cmd;

#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
	INIT_WORK(&work->work, t43x_maint_work, work);
#else
	INIT_WORK(&work->work, t43x_maint_work);
#endif
	queue_work(wc->wq, &work->work);
	return 0;
}

static int t43x_clear_maint(struct dahdi_span *span)
{
	struct t43x_span *ts = container_of(span, struct t43x_span, span);
	struct t43x *wc = ts->owner;
	int reg = 0;
	unsigned long flags;
	int fidx = (wc->numspans == 2) ? span->offset+1 : span->offset;

	/* Turn off local loop */
	spin_lock_irqsave(&wc->reglock, flags);
	reg = __t43x_framer_get(wc, fidx, LIM0);
	if (reg < 0) {
		spin_unlock_irqrestore(&wc->reglock, flags);
		return -EIO;
	}
	__t43x_framer_set(wc, fidx, LIM0, reg & ~LIM0_LL);

	/* Turn off remote loop & jitter attenuator */
	reg = __t43x_framer_get(wc, fidx, LIM1);
	if (reg < 0) {
		spin_unlock_irqrestore(&wc->reglock, flags);
		return -EIO;
	}
	__t43x_framer_set(wc, fidx, LIM1, reg & ~(LIM1_RL | LIM1_JATT));

	/* Clear loopup/loopdown signals on the line */
	__t43x_framer_set(wc, fidx, 0x21, 0x40);
	spin_unlock_irqrestore(&wc->reglock, flags);
	return 0;
}

static int t43x_ioctl(struct dahdi_chan *chan, unsigned int cmd,
			unsigned long data)
{
	struct t4_regs regs;
	unsigned int x;
	struct t43x *wc;
	int fidx;

	switch (cmd) {
	case WCT4_GET_REGS:
		wc = chan->pvt;
		fidx = (wc->numspans == 2) ? chan->span->offset+1 :
				chan->span->offset;
		for (x = 0; x < sizeof(regs.regs) / sizeof(regs.regs[0]); x++)
			regs.regs[x] = t43x_framer_get(wc, fidx, x);

		if (copy_to_user((void __user *) data, &regs, sizeof(regs)))
			return -EFAULT;
		break;
	default:
		return -ENOTTY;
	}
	return 0;
}

static void t43x_chan_set_sigcap(struct dahdi_span *span, int x)
{
	struct t43x_span *ts = container_of(span, struct t43x_span, span);
	struct dahdi_chan *chan = ts->chans[x];

	chan->sigcap = DAHDI_SIG_CLEAR;
	/* E&M variant supported depends on span type */
	if (dahdi_is_e1_span(span)) {
		/* E1 sigcap setup */
		if (span->lineconfig & DAHDI_CONFIG_CCS) {
			/* CCS setup */
			chan->sigcap |= DAHDI_SIG_MTP2 | DAHDI_SIG_SF;
			return;
		}
		/* clear out sig and sigcap for channel 16 on E1 CAS
		 * lines, otherwise, set it correctly */
		if (x == 15) {
			/* CAS signaling channel setup */
			ts->chans[15]->sigcap = 0;
			ts->chans[15]->sig = 0;
			return;
		}
		/* normal CAS setup */
		chan->sigcap |= DAHDI_SIG_EM_E1 | DAHDI_SIG_FXSLS |
			DAHDI_SIG_FXSGS | DAHDI_SIG_FXSKS | DAHDI_SIG_SF |
			DAHDI_SIG_FXOLS | DAHDI_SIG_FXOGS | DAHDI_SIG_FXOKS |
			DAHDI_SIG_CAS | DAHDI_SIG_DACS_RBS;
	} else {
		/* T1 sigcap setup */
		chan->sigcap |= DAHDI_SIG_EM | DAHDI_SIG_FXSLS |
			DAHDI_SIG_FXSGS | DAHDI_SIG_FXSKS | DAHDI_SIG_MTP2 |
			DAHDI_SIG_SF | DAHDI_SIG_FXOLS | DAHDI_SIG_FXOGS |
			DAHDI_SIG_FXOKS | DAHDI_SIG_CAS | DAHDI_SIG_DACS_RBS;
	}
}

static bool t43x_lineconfig_changed(struct t43x_span *ts,
				    const struct dahdi_lineconfig *lc)
{
	unsigned long flags;
	bool result;
	u32 crc = crc32(~0, lc, sizeof(*lc));

	spin_lock_irqsave(&ts->owner->reglock, flags);
	result = (crc != ts->lineconfig_fingerprint);
	spin_unlock_irqrestore(&ts->owner->reglock, flags);
	return result;
}

static void t43x_save_lineconfig(struct t43x_span *ts,
				 const struct dahdi_lineconfig *lc)
{
	unsigned long flags;
	u32 crc = crc32(~0, lc, sizeof(*lc));

	spin_lock_irqsave(&ts->owner->reglock, flags);
	ts->lineconfig_fingerprint = crc;
	spin_unlock_irqrestore(&ts->owner->reglock, flags);
}

static int
t43x_spanconfig(struct file *file, struct dahdi_span *span,
		 struct dahdi_lineconfig *lc)
{
	struct t43x_span *ts = container_of(span, struct t43x_span, span);
	struct t43x *wc = ts->owner;
	int i;
	int res = 0;

	if (debug)
		dev_info(&wc->xb.pdev->dev, "%s\n", __func__);

	if (file->f_flags & O_NONBLOCK) {
		if (!is_initialized(wc))
			return -EAGAIN;
	} else {
		t43x_wait_for_ready(wc);
	}

	if (lc->sync < 0)
		lc->sync = 0;
	if (lc->sync > wc->numspans) {
		dev_warn(&wc->xb.pdev->dev,
			 "WARNING: Cannot set priority on span %d to %d. Please set to a number between 1 and %d\n",
			 span->spanno, lc->sync, wc->numspans);
		lc->sync = 0;
	}

	/* remove this span number from the current sync sources, if there */
	for (i = 0; i < wc->numspans; i++) {
		if (wc->tspans[i]->sync == span->spanno)
			wc->tspans[i]->sync = 0;
	}

	wc->tspans[span->offset]->syncpos = lc->sync;
	/* if a sync src, put it in proper place */
	if (lc->sync)
		wc->tspans[lc->sync - 1]->sync = span->spanno;

	/* make sure that sigcaps gets updated if necessary */
	for (i = 0; i < span->channels; i++)
		t43x_chan_set_sigcap(span, i);

	/* If already running, apply changes immediately */
	if (test_bit(DAHDI_FLAGBIT_RUNNING, &span->flags) &&
	    t43x_lineconfig_changed(ts, lc)) {
		res = t43x_startup(file, span);
		if (!res)
			t43x_save_lineconfig(ts, lc);
	}
	return res;
}

/*
 * Initialize a span
 *
 */
static int
t43x_init_one_span(struct t43x *wc, struct t43x_span *ts, enum linemode type)
{
	int x;
	struct dahdi_chan *chans[32] = {NULL,};
	struct dahdi_echocan_state *ec[32] = {NULL,};
	unsigned long flags;
	int res = 0;

	if (debug)
		dev_info(&wc->xb.pdev->dev, "%s\n", __func__);

	for (x = 0; x < ((E1 == type) ? 31 : 24); x++) {
		chans[x] = kzalloc(sizeof(*chans[x]), GFP_KERNEL);
		ec[x] = kzalloc(sizeof(*ec[x]), GFP_KERNEL);
		if (!chans[x] || !ec[x])
			goto error_exit;
	}

	/* Stop the interrupt handler so that we may swap the channel array. */
	disable_irq(wc->xb.pdev->irq);

	spin_lock_irqsave(&wc->reglock, flags);
	for (x = 0; x < ARRAY_SIZE(ts->chans); x++) {
		kfree(ts->chans[x]);
		kfree(ts->ec[x]);
		ts->chans[x] = NULL;
		ts->ec[x] = NULL;
	}
	memcpy(ts->chans, chans, sizeof(ts->chans));
	memcpy(ts->ec, ec, sizeof(ts->ec));

	switch (type) {
	case E1:
		ts->span.channels = 31;
		ts->span.spantype = SPANTYPE_DIGITAL_E1;
		ts->span.linecompat = DAHDI_CONFIG_AMI | DAHDI_CONFIG_HDB3 |
			DAHDI_CONFIG_CCS | DAHDI_CONFIG_CRC4;
		ts->span.deflaw = DAHDI_LAW_ALAW;
		break;
	case T1:
		ts->span.channels = 24;
		ts->span.spantype = SPANTYPE_DIGITAL_T1;
		ts->span.linecompat = DAHDI_CONFIG_AMI | DAHDI_CONFIG_B8ZS |
			DAHDI_CONFIG_D4 | DAHDI_CONFIG_ESF;
		ts->span.deflaw = DAHDI_LAW_MULAW;
		break;
	case J1:
		ts->span.channels = 24;
		ts->span.spantype = SPANTYPE_DIGITAL_J1;
		ts->span.linecompat = DAHDI_CONFIG_AMI | DAHDI_CONFIG_B8ZS |
			DAHDI_CONFIG_D4 | DAHDI_CONFIG_ESF;
		ts->span.deflaw = DAHDI_LAW_MULAW;
		break;
	default:
		spin_unlock_irqrestore(&wc->reglock, flags);
		res = -EINVAL;
		enable_irq(wc->xb.pdev->irq);
		goto error_exit;
	}

	spin_unlock_irqrestore(&wc->reglock, flags);

	set_bit(DAHDI_FLAGBIT_RBS, &ts->span.flags);
	for (x = 0; x < ts->span.channels; x++) {
		sprintf(ts->chans[x]->name, "%s/%d", ts->span.name, x + 1);
		t43x_chan_set_sigcap(&ts->span, x);
		ts->chans[x]->pvt = wc;
		ts->chans[x]->chanpos = x + 1;
	}

	t43x_reset_counters(&ts->span);

	/* Span is in red alarm by default ? */
	ts->span.alarms = DAHDI_ALARM_NONE;

	enable_irq(wc->xb.pdev->irq);
	return 0;

error_exit:

	for (x = 0; x < ARRAY_SIZE(chans); ++x) {
		kfree(chans[x]);
		kfree(ec[x]);
	}
	return res;
}

/*
 * Initialize all spans (one time)
 */

static void t43x_init_spans(struct t43x *wc, enum linemode type)
{
	struct t43x_span *ts;
	int x;

	if (debug)
		dev_info(&wc->xb.pdev->dev, "%s\n", __func__);

	for (x = 0; x < wc->numspans; x++) {
		ts = wc->tspans[x];
		sprintf(ts->span.name,
			"WCTE%d/%d/%d", wc->numspans, wc->num, x + 1);
		snprintf(ts->span.desc, sizeof(ts->span.desc) - 1,
			 "WCTE%d3X (PCI) Card %d Span %d",
			 wc->numspans, wc->num, x + 1);

		ts->span.chans = ts->chans;
		ts->span.flags = DAHDI_FLAG_RBS;
		ts->span.ops = &t43x_span_ops;
		ts->span.offset = x;

		ts->owner = wc;

		t43x_init_one_span(wc, ts, type);

		list_add_tail(&ts->span.device_node, &wc->ddev->spans);
	}
}

/**
 * t1xx_set_linemode - Change the type of span before assignment.
 * @span:		The span to change.
 * @linemode:		Text string for the line mode.
 *
 * This function may be called after the dahdi_device is registered but
 * before the spans are assigned numbers (and are visible to the rest of
 * DAHDI).
 *
 */
static int t43x_set_linemode(struct dahdi_span *span, enum spantypes linemode)
{
	int res;
	struct t43x_span *ts = container_of(span, struct t43x_span, span);
	struct t43x *wc = ts->owner;

	if (debug)
		dev_info(&wc->xb.pdev->dev, "%s\n", __func__);

	/* We may already be set to the requested type. */
	if (span->spantype == linemode) {
		ts->span.alarms = DAHDI_ALARM_NONE;
		return 0;
	}

	res = t43x_wait_for_ready(wc);
	if (res)
		return res;

	mutex_lock(&wc->lock);

	switch (linemode) {
	case SPANTYPE_DIGITAL_T1:
		dev_info(&wc->xb.pdev->dev,
			 "Changing from %s to T1 line mode.\n",
			 dahdi_spantype2str(span->spantype));
		res = t43x_init_one_span(wc, ts, T1);
		break;
	case SPANTYPE_DIGITAL_E1:
		dev_info(&wc->xb.pdev->dev,
			 "Changing from %s to E1 line mode.\n",
			 dahdi_spantype2str(span->spantype));
		res = t43x_init_one_span(wc, ts, E1);
		break;
	case SPANTYPE_DIGITAL_J1:
		dev_info(&wc->xb.pdev->dev,
			 "Changing from %s to J1 line mode.\n",
			 dahdi_spantype2str(span->spantype));
		res = t43x_init_one_span(wc, ts, J1);
		break;
	default:
		dev_err(&wc->xb.pdev->dev,
			"Got invalid linemode '%s' from dahdi\n",
			dahdi_spantype2str(linemode));
		res = -EINVAL;
	}

	/* Since we probably reallocated the channels we need to make
	 * sure they are configured before setting INITIALIZED again. */
	if (!res)
		dahdi_init_span(span);

	mutex_unlock(&wc->lock);
	return res;
}

static int t43x_hardware_post_init(struct t43x *wc, enum linemode *type)
{
	int reg;
	int x;

	if (!strcasecmp(default_linemode, "e1")) {
		*type = E1;
	} else if (!strcasecmp(default_linemode, "t1")) {
		*type = T1;
	} else if (!strcasecmp(default_linemode, "j1")) {
		*type = J1;
	} else {
		dev_warn(&wc->xb.pdev->dev,
			 "'%s' is an unknown linemode. Defaulting to 't1'\n",
			 default_linemode);
		*type = T1;
	}

	if (debug) {
		dev_info(&wc->xb.pdev->dev, "linemode: %s\n",
			 (*type == T1) ? "T1" : ((J1 == *type) ? "J1" : "E1"));
	}

	/* what version of the FALC are we using? */
	wcxb_gpio_set(&wc->xb, FALC_CPU_RESET);
	reg = t43x_framer_get(wc, 0, 0x4a);
	if (reg < 0) {
		dev_info(&wc->xb.pdev->dev,
				"Failed to read FALC version (%x)\n", reg);
		return -EIO;
	}
	dev_info(&wc->xb.pdev->dev, "FALC version: %1x\n", reg);

	/* make sure reads and writes work */
	for (x = 0; x < 256; x++) {
		t43x_framer_set(wc, 0, 0x14, x);
		reg = t43x_framer_get(wc, 0, 0x14);
		if (reg < 0) {
			dev_info(&wc->xb.pdev->dev,
					"Failed register read (%d)\n", reg);
			return -EIO;
		}
		if (reg != x) {
			dev_info(&wc->xb.pdev->dev,
				"Register test failed. Wrote '%x' but read '%x'\n",
				x, reg);
			return -EIO;
		}
	}

	/* Enable all the GPIO outputs. */
	t43x_setleds(wc, -1);

	return 0;
}

static void t43x_check_alarms(struct t43x *wc, int span_idx)
{
	struct t43x_span *ts = wc->tspans[span_idx];
	unsigned char c, d;
	int alarms;
	int fidx = (wc->numspans == 2) ? span_idx+1 : span_idx;

	if (!(test_bit(DAHDI_FLAGBIT_RUNNING, &ts->span.flags)))
		return;

	spin_lock(&wc->reglock);

	c = __t43x_framer_get(wc, fidx, 0x4c);
	d = __t43x_framer_get(wc, fidx, 0x4d);

	/* start with existing span alarms */
	alarms = ts->span.alarms;

	if (dahdi_is_e1_span(&ts->span)) {
		if (c & 0x04) {
			/* No multiframe found, force RAI high after 400ms only
			 * if we haven't found a multiframe since last loss of
			 * frame */
			if (!test_and_set_bit(NMF_FLAGBIT, &ts->bit_flags)) {
				/* LIM0: Force RAI High */
				__t43x_framer_set(wc, fidx, 0x20, 0x9f | 0x20);
				dev_info(&wc->xb.pdev->dev,
					 "NMF workaround on!\n");
			}
			/* Reset to CRC4 mode */
			__t43x_framer_set(wc, fidx, 0x1e, 0xc3);
			/* Force Resync */
			__t43x_framer_set(wc, fidx, 0x1c, 0xf2);
			/* Force Resync */
			__t43x_framer_set(wc, fidx, 0x1c, 0xf0);
		} else if (!(c & 0x02)) {
			if (test_and_clear_bit(NMF_FLAGBIT, &ts->bit_flags)) {
				/* LIM0: Clear forced RAI */
				__t43x_framer_set(wc, fidx, 0x20, 0x9f);
				dev_info(&wc->xb.pdev->dev,
						"NMF workaround off!\n");
			}
		}
	}

	if (ts->span.lineconfig & DAHDI_CONFIG_NOTOPEN) {
		if (!test_bit(HAVE_OPEN_CHANNELS_FLAGBIT, &ts->bit_flags))
			alarms |= DAHDI_ALARM_NOTOPEN;
		else
			alarms &= ~DAHDI_ALARM_NOTOPEN;
	}

	if (c & 0x20) { /* LOF/LFA */
		if (!(alarms & DAHDI_ALARM_RED) && (0 == ts->lofalarmtimer)) {
			ts->lofalarmtimer = (jiffies +
				msecs_to_jiffies(alarmdebounce)) ?: 1;
		}
	} else {
		ts->lofalarmtimer = 0;
	}

	if (c & 0x80) { /* LOS */
		if (!(alarms & DAHDI_ALARM_RED) && (0 == ts->losalarmtimer)) {
			ts->losalarmtimer = (jiffies +
				msecs_to_jiffies(losalarmdebounce)) ?: 1;
		}
	} else {
		ts->losalarmtimer = 0;
	}

	if (!(c & (0x80|0x20)))
		alarms &= ~DAHDI_ALARM_RED;

	if (c & 0x40) { /* AIS */
		if (!(alarms & DAHDI_ALARM_BLUE) && (0 == ts->aisalarmtimer))
			ts->aisalarmtimer = (jiffies +
				      msecs_to_jiffies(aisalarmdebounce)) ?: 1;
	} else {
		ts->aisalarmtimer = 0;
		alarms &= ~DAHDI_ALARM_BLUE;
	}

	/* Keep track of recovering */
	if (alarms & (DAHDI_ALARM_RED|DAHDI_ALARM_BLUE|DAHDI_ALARM_NOTOPEN)) {
		ts->recoverytimer = 0;
		alarms &= ~DAHDI_ALARM_RECOVER;
	} else if (ts->span.alarms & (DAHDI_ALARM_RED|DAHDI_ALARM_BLUE)) {
		if (0 == ts->recoverytimer) {
			ts->recoverytimer = (jiffies + 5*HZ) ?: 1;
			alarms |= DAHDI_ALARM_RECOVER;
		}
	}

	if (c & 0x10) { /* receiving yellow (RAI) */
		if (!(alarms & DAHDI_ALARM_YELLOW) && !ts->yelalarmtimer) {
			ts->yelalarmtimer = (jiffies +
				msecs_to_jiffies(yelalarmdebounce)) ?: 1;
		}
	} else {
		ts->yelalarmtimer = 0;
		alarms &= ~DAHDI_ALARM_YELLOW;
	}

	if (ts->span.alarms != alarms) {
		/* re-evaluate timing source if alarm state is changed */
		if ((alarms ^ ts->span.alarms) & NOSYNC_ALARMS) {
			ts->span.alarms = alarms;
			__t43x_set_timing_source_auto(wc);
		} else {
			ts->span.alarms = alarms;
		}

		spin_unlock(&wc->reglock);

		dahdi_alarm_notify(&ts->span);
	} else {
		spin_unlock(&wc->reglock);
	}
}

static void t43x_check_loopcodes(struct t43x *wc, int span_idx)
{
	struct t43x_span *ts = wc->tspans[span_idx];
	unsigned char frs1;
	int fidx = (wc->numspans == 2) ? span_idx+1 : span_idx;

	frs1 = t43x_framer_get(wc, fidx, 0x4d);

	/* Detect loopup code if we're not sending one */
	if ((ts->span.maintstat != DAHDI_MAINT_LOOPUP) && (frs1 & 0x08)) {
		/* Loop-up code detected */
		if ((ts->span.maintstat != DAHDI_MAINT_REMOTELOOP) &&
				(0 == ts->loopuptimer))
			ts->loopuptimer = (jiffies + msecs_to_jiffies(800)) | 1;
	} else {
		ts->loopuptimer = 0;
	}

	/* Same for loopdown code */
	if ((ts->span.maintstat != DAHDI_MAINT_LOOPDOWN) && (frs1 & 0x10)) {
		/* Loop-down code detected */
		if ((ts->span.maintstat == DAHDI_MAINT_REMOTELOOP) &&
				(0 == ts->loopdntimer))
			ts->loopdntimer = (jiffies + msecs_to_jiffies(800)) | 1;
	} else {
		ts->loopdntimer = 0;
	}
}

static void t43x_debounce_alarms(struct t43x *wc, int span_idx)
{
	struct t43x_span *ts = wc->tspans[span_idx];
	int alarms;
	unsigned long flags;
	unsigned int fmr4;
	int fidx = (wc->numspans == 2) ? span_idx+1 : span_idx;

	spin_lock_irqsave(&wc->reglock, flags);
	alarms = ts->span.alarms;

	if (ts->lofalarmtimer && time_after(jiffies, ts->lofalarmtimer)) {
		alarms |= DAHDI_ALARM_RED;
		ts->lofalarmtimer = 0;
		dev_info(&wc->xb.pdev->dev, "LOF alarm detected\n");
	}

	if (ts->losalarmtimer && time_after(jiffies, ts->losalarmtimer)) {
		alarms |= DAHDI_ALARM_RED;
		ts->losalarmtimer = 0;
		dev_info(&wc->xb.pdev->dev, "LOS alarm detected\n");
	}

	if (ts->aisalarmtimer && time_after(jiffies, ts->aisalarmtimer)) {
		alarms |= DAHDI_ALARM_BLUE;
		ts->aisalarmtimer = 0;
		dev_info(&wc->xb.pdev->dev, "AIS alarm detected\n");
	}

	if (ts->yelalarmtimer && time_after(jiffies, ts->yelalarmtimer)) {
		alarms |= DAHDI_ALARM_YELLOW;
		ts->yelalarmtimer = 0;
		dev_info(&wc->xb.pdev->dev, "YEL alarm detected\n");
	}

	if (ts->recoverytimer && time_after(jiffies, ts->recoverytimer)) {
		alarms &= ~(DAHDI_ALARM_RECOVER);
		ts->recoverytimer = 0;
		memset(&ts->span.count, 0, sizeof(ts->span.count));
		dev_info(&wc->xb.pdev->dev, "Alarms cleared\n");
	}

	if (alarms != ts->span.alarms) {
		/* re-evaluate timing source if alarm state is changed */
		if ((alarms ^ ts->span.alarms) & NOSYNC_ALARMS) {
			ts->span.alarms = alarms;
			__t43x_set_timing_source_auto(wc);
		} else {
			ts->span.alarms = alarms;
		}

		spin_unlock_irqrestore(&wc->reglock, flags);
		dahdi_alarm_notify(&ts->span);
		spin_lock_irqsave(&wc->reglock, flags);
	}

	/* If receiving alarms (except Yellow), go into Yellow alarm state */
	if (alarms & (DAHDI_ALARM_RED|DAHDI_ALARM_BLUE|
				DAHDI_ALARM_NOTOPEN|DAHDI_ALARM_RECOVER)) {
		if (!test_and_set_bit(SENDINGYELLOW_FLAGBIT, &ts->bit_flags)) {
			dev_info(&wc->xb.pdev->dev, "Setting yellow alarm\n");
			/* We manually do yellow alarm to handle RECOVER
			 * and NOTOPEN, otherwise it's auto anyway */
			fmr4 = __t43x_framer_get(wc, fidx, 0x20);
			__t43x_framer_set(wc, fidx, 0x20, fmr4 | 0x20);
		}
	} else {
		if (test_and_clear_bit(SENDINGYELLOW_FLAGBIT, &ts->bit_flags)) {
			dev_info(&wc->xb.pdev->dev, "Clearing yellow alarm\n");
			/* We manually do yellow alarm to handle RECOVER  */
			fmr4 = __t43x_framer_get(wc, fidx, 0x20);
			__t43x_framer_set(wc, fidx, 0x20, fmr4 & ~0x20);
		}
	}

	spin_unlock_irqrestore(&wc->reglock, flags);
}

static void t43x_debounce_loopcodes(struct t43x *wc, int span_idx)
{
	struct t43x_span *ts = wc->tspans[span_idx];
	unsigned long flags;
	int fidx = (wc->numspans == 2) ? span_idx+1 : span_idx;

	spin_lock_irqsave(&wc->reglock, flags);
	if (ts->loopuptimer && time_after(jiffies, ts->loopuptimer)) {
		/* Loop-up code debounced */
		dev_info(&wc->xb.pdev->dev, "Loopup detected, enabling remote loop\n");
		__t43x_framer_set(wc, fidx, 0x36, 0x08);	/* LIM0: Disable
							   any local loop */
		__t43x_framer_set(wc, fidx, 0x37, 0xf6);	/* LIM1: Enable
							   remote loop */
		ts->span.maintstat = DAHDI_MAINT_REMOTELOOP;
		ts->loopuptimer = 0;
		dahdi_alarm_notify(&ts->span);
		__t43x_set_timing_source_auto(wc);
	}

	if (ts->loopdntimer && time_after(jiffies, ts->loopdntimer)) {
		/* Loop-down code debounced */
		dev_info(&wc->xb.pdev->dev, "Loopdown detected, disabling remote loop\n");
		__t43x_framer_set(wc, fidx, 0x36, 0x08);	/* LIM0: Disable
							   any local loop */
		__t43x_framer_set(wc, fidx, 0x37, 0xf0);	/* LIM1: Disable
							   remote loop */
		ts->span.maintstat = DAHDI_MAINT_NONE;
		ts->loopdntimer = 0;
		dahdi_alarm_notify(&ts->span);
		__t43x_set_timing_source_auto(wc);
	}
	spin_unlock_irqrestore(&wc->reglock, flags);
}

static void handle_leds(struct t43x *wc)
{
	u32 led = 0;
	struct t43x_span *ts;
	int span_idx;

	if (time_after(jiffies, wc->blinktimer)) {
		wc->blink = !wc->blink;
		wc->blinktimer = jiffies + HZ/2;
	}

	for (span_idx = wc->numspans-1; span_idx >= 0; span_idx--) {
		led >>= 2;
		ts = wc->tspans[span_idx];
		if ((ts->span.alarms & (DAHDI_ALARM_RED | DAHDI_ALARM_BLUE)) ||
				ts->losalarmtimer)  {
			/* When we're in red alarm, blink the led once a
			 * second. */
			if (wc->blink)
				led |=  STATUS_LED_RED;
		} else if (ts->span.alarms & DAHDI_ALARM_YELLOW) {
			led |= STATUS_LED_YELLOW;
		} else {
			if (test_bit(DAHDI_FLAGBIT_RUNNING, &ts->span.flags))
				led |= STATUS_LED_GREEN;
		}
	}

	if (wc->numspans == 2)
		led >>= 2;

	if (led != (ioread32be(wc->xb.membase) & LED_MASK))
		t43x_setleds(wc, led);
}

static void t43x_handle_receive(struct wcxb *xb, void *vfp)
{
	int i, j, s;
	u_char *frame = (u_char *) vfp;
	struct t43x *wc = container_of(xb, struct t43x, xb);
	struct t43x_span *ts;

	for (s = 0; s < wc->numspans; s++) {
		ts = wc->tspans[s];
		if (!test_bit(DAHDI_FLAGBIT_REGISTERED, &ts->span.flags))
			continue;

		for (j = 0; j < DAHDI_CHUNKSIZE; j++) {
			for (i = 0; i < ts->span.channels; i++) {
				ts->chans[i]->readchunk[j] =
					frame[j*WCXB_DMA_CHAN_SIZE+(s+1+i*4)];
			}
		}

		if (0 == vpmsupport) {
			for (i = 0; i < ts->span.channels; i++) {
				struct dahdi_chan *const c = ts->span.chans[i];
				__dahdi_ec_chunk(c, c->readchunk, c->readchunk,
						 c->writechunk);
			}
		}

		_dahdi_receive(&ts->span);
	}
}

static void t43x_handle_transmit(struct wcxb *xb, void *vfp)
{
	int i, j, s;
	u_char *frame = (u_char *) vfp;
	struct t43x *wc = container_of(xb, struct t43x, xb);
	struct t43x_span *ts;

	for (s = 0; s < wc->numspans; s++) {
		ts = wc->tspans[s];
		if (!test_bit(DAHDI_FLAGBIT_REGISTERED,
			      &ts->span.flags)) {
			continue;
		}

		_dahdi_transmit(&ts->span);

		for (j = 0; j < DAHDI_CHUNKSIZE; j++)
			for (i = 0; i < ts->span.channels; i++)
				frame[j*WCXB_DMA_CHAN_SIZE+(s+1+i*4)] =
					ts->chans[i]->writechunk[j];
	}
}

#define SPAN_DEBOUNCE \
	(ts->lofalarmtimer || ts->losalarmtimer || \
	 ts->aisalarmtimer || ts->yelalarmtimer || \
	 ts->recoverytimer || \
	 ts->loopuptimer   || ts->loopdntimer)

#define SPAN_ALARMS \
	(ts->span.alarms & ~DAHDI_ALARM_NOTOPEN)

#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
static void timer_work_func(void *param)
{
	struct t43x *wc = param;
#else
static void timer_work_func(struct work_struct *work)
{
	struct t43x *wc = container_of(work, struct t43x, timer_work);
#endif
	struct t43x_span *ts;
	int x;
	bool start_timer = false;

	for (x = 0; x < wc->numspans; x++) {
		ts = wc->tspans[x];
		if (ts->debounce) {
			/* Clear it now in case the interrupt needs to set it
			 * again */
			ts->debounce = false;
			t43x_debounce_alarms(wc, x);
			if (!dahdi_is_e1_span(&ts->span))
				t43x_debounce_loopcodes(wc, x);
			if (SPAN_DEBOUNCE || SPAN_ALARMS)
				ts->debounce = true;
			if (ts->debounce)
				start_timer = true;
		}
	}

	handle_leds(wc);
	if (start_timer)
		mod_timer(&wc->timer, jiffies + HZ/10);
}

static void handle_falc_int(struct t43x *wc, int unit)
{
	struct t43x_span *ts = wc->tspans[unit];
	unsigned char gis, isr0, isr1, isr2, isr3, isr4;
	static int intcount;
	bool start_timer;
	bool recheck_sigbits = false;
	int fidx = (wc->numspans == 2) ? unit+1 : unit;

	intcount++;
	start_timer = false;

	spin_lock(&wc->reglock);
	gis = __t43x_framer_get(wc, fidx, FRMR_GIS);
	isr0 = (gis&FRMR_GIS_ISR0) ? __t43x_framer_get(wc, fidx, FRMR_ISR0) : 0;
	isr1 = (gis&FRMR_GIS_ISR1) ? __t43x_framer_get(wc, fidx, FRMR_ISR1) : 0;
	isr2 = (gis&FRMR_GIS_ISR2) ? __t43x_framer_get(wc, fidx, FRMR_ISR2) : 0;
	isr3 = (gis&FRMR_GIS_ISR3) ? __t43x_framer_get(wc, fidx, FRMR_ISR3) : 0;
	isr4 = (gis&FRMR_GIS_ISR4) ? __t43x_framer_get(wc, fidx, FRMR_ISR4) : 0;

	if ((debug) && !(isr3 & ISR3_SEC)) {
		dev_info(&wc->xb.pdev->dev,
			 "span: %d gis: %02x, isr0: %02x, isr1: %02x, isr2: %02x, isr3: %02x, isr4: %02x, intcount=%u\n",
			 unit, gis, isr0, isr1, isr2, isr3, isr4, intcount);
	}

	/* Collect performance counters once per second */
	if (isr3 & ISR3_SEC) {
		ts->span.count.fe += __t43x_framer_get(wc, fidx, FECL_T);
		ts->span.count.crc4 += __t43x_framer_get(wc, fidx, CEC1L_T);
		ts->span.count.cv += __t43x_framer_get(wc, fidx, CVCL_T);
		ts->span.count.ebit += __t43x_framer_get(wc, fidx, EBCL_T);
		ts->span.count.be += __t43x_framer_get(wc, fidx, BECL_T);
		ts->span.count.prbs = __t43x_framer_get(wc, fidx, FRS1_T);

		if (DAHDI_RXSIG_INITIAL == ts->span.chans[0]->rxhooksig)
			recheck_sigbits = true;
	}
	spin_unlock(&wc->reglock);

	/* Collect errored second counter once per second */
	if (isr3 & ISR3_ES)
		ts->span.count.errsec += 1;

	/* RSC/CASC: Received Signaling Information Changed */
	/* This interrupt is enabled by set_cas_mode() for CAS channels */
	if (isr0 & 0x08 || recheck_sigbits)
		t43x_check_sigbits(wc, unit);

	if (dahdi_is_e1_span(&ts->span)) {
		/* E1 checks */
		if ((isr3 & 0x68) || isr2 || (isr1 & 0x7f)) {
			t43x_check_alarms(wc, unit);
			start_timer = true;
		}
	} else {
		/* T1 checks */
		if (isr2) {
			t43x_check_alarms(wc, unit);
			start_timer = true;
		}
		if (isr3 & 0x08) {	/* T1 LLBSC */
			t43x_check_loopcodes(wc, unit);
			start_timer = true;
		}
	}

	if (!ts->span.alarms) {
		if ((isr3 & 0x3) || (isr4 & 0xc0))
			ts->span.count.timingslips++;
	}

	if (start_timer) {
		ts->debounce = true;
		if (!timer_pending(&wc->timer))
			mod_timer(&wc->timer, jiffies + HZ/10);
	}
}

static void t43x_handle_interrupt(struct wcxb *xb, u32 pending)
{
	u32 status;
	struct t43x *wc = container_of(xb, struct t43x, xb);

	if (!(pending & FALC_INT))
		return;

	/* Service at most one framer per interrupt cycle */
	status = t43x_framer_get(wc, 0, FRMR_CIS);
	if (status & (1 << (wc->intr_span + ((wc->numspans == 2) ? 1 : 0))))
		handle_falc_int(wc, wc->intr_span);
	if (++wc->intr_span >= wc->numspans)
		wc->intr_span = 0;
}

#ifndef init_timer
static void t43x_timer(struct timer_list *t)
{
	struct t43x *wc = from_timer(wc, t, timer);
#else	/* Compatibility for pre 4.15 interface */
static void t43x_timer(unsigned long data)
{
	struct t43x *wc = (struct t43x *)data;
#endif

	if (!is_initialized(wc))
		return;

	queue_work(wc->wq, &wc->timer_work);
	return;
}

static int t43x_open(struct dahdi_chan *chan)
{
	struct t43x *wc = chan->pvt;
	struct t43x_span *ts = container_of(chan->span, struct t43x_span, span);
	unsigned long flags;

	if (!(ts->span.lineconfig & DAHDI_CONFIG_NOTOPEN))
		return 0;

	if (!test_and_set_bit(HAVE_OPEN_CHANNELS_FLAGBIT, &ts->bit_flags)) {
		local_irq_save(flags);
		t43x_check_alarms(wc, ts->span.offset);
		local_irq_restore(flags);
	}

	return 0;
}

static int t43x_close(struct dahdi_chan *chan)
{
	struct t43x *wc = chan->pvt;
	struct t43x_span *ts = container_of(chan->span, struct t43x_span, span);
	unsigned long flags;

	if (!(ts->span.lineconfig & DAHDI_CONFIG_NOTOPEN))
		return 0;

	if (have_open_channels(ts))
		return 0;

	if (!test_and_set_bit(HAVE_OPEN_CHANNELS_FLAGBIT, &ts->bit_flags)) {
		local_irq_save(flags);
		t43x_check_alarms(wc, ts->span.offset);
		local_irq_restore(flags);
	}

	return 0;
}

static const struct dahdi_span_ops t43x_span_ops = {
	.owner = THIS_MODULE,
	.spanconfig = t43x_spanconfig,
	.chanconfig = t43x_chanconfig,
	.startup = t43x_startup,
	.rbsbits = t43x_rbsbits,
	.maint = t43x_maint,
	.ioctl = t43x_ioctl,
	.assigned = t43x_span_assigned,
	.set_spantype = t43x_set_linemode,
	.echocan_create = t43x_echocan_create,
	.echocan_name = t43x_echocan_name,
	.open = t43x_open,
	.close = t43x_close,
};

/**
 * t43x_check_for_interrupts - Return 0 if the card is generating interrupts.
 * @wc:	The card to check.
 *
 * If the card is not generating interrupts, this function will also place all
 * the spans on the card into red alarm.
 *
 */
static int t43x_check_for_interrupts(struct t43x *wc)
{
	unsigned int starting_framecount = wc->xb.framecount;
	unsigned long stop_time = jiffies + HZ*2;
	unsigned long flags;
	int x;

	msleep(20);
	spin_lock_irqsave(&wc->reglock, flags);
	while (starting_framecount == wc->xb.framecount) {
		spin_unlock_irqrestore(&wc->reglock, flags);
		if (time_after(jiffies, stop_time)) {
			for (x = 0; x < wc->numspans; x++)
				wc->tspans[x]->span.alarms = DAHDI_ALARM_RED;
			dev_err(&wc->xb.pdev->dev, "Interrupts not detected.\n");
			return -EIO;
		}
		msleep(100);
		spin_lock_irqsave(&wc->reglock, flags);
	}
	spin_unlock_irqrestore(&wc->reglock, flags);

	return 0;
}

/**
 * t43x_read_serial - Returns the serial number of the board.
 * @wc: The board whos serial number we are reading.
 *
 * The buffer returned is dynamically allocated and must be kfree'd by the
 * caller. If memory could not be allocated, NULL is returned.
 *
 * Must be called in process context.
 *
 */
static char *t43x_read_serial(struct t43x *wc)
{
	int i;
	static const int MAX_SERIAL = 20*5;
	const unsigned int SERIAL_ADDRESS = 0x1f0000;
	unsigned char *serial = kzalloc(MAX_SERIAL + 1, GFP_KERNEL);
	struct wcxb const *xb = &wc->xb;
	struct wcxb_spi_master *flash_spi_master = NULL;
	struct wcxb_spi_device *flash_spi_device = NULL;
	const unsigned int FLASH_SPI_BASE = 0x200;

	if (!serial)
		return NULL;

	flash_spi_master = wcxb_spi_master_create(&xb->pdev->dev,
						  xb->membase + FLASH_SPI_BASE,
						  false);
	if (!flash_spi_master)
		return NULL;

	flash_spi_device = wcxb_spi_device_create(flash_spi_master, 0);
	if (!flash_spi_device)
		goto error_exit;

	wcxb_flash_read(flash_spi_device, SERIAL_ADDRESS,
			serial, MAX_SERIAL);

	for (i = 0; i < MAX_SERIAL; ++i) {
		if ((serial[i] < 0x20) || (serial[i] > 0x7e)) {
			serial[i] = '\0';
			break;
		}
	}

	if (!i) {
		kfree(serial);
		serial = NULL;
	} else {
		/* Limit the size of the buffer to just what is needed to
		 * actually hold the serial number. */
		unsigned char *new_serial;
		new_serial = kasprintf(GFP_KERNEL, "%s", serial);
		kfree(serial);
		serial = new_serial;
	}

error_exit:
	wcxb_spi_device_destroy(flash_spi_device);
	wcxb_spi_master_destroy(flash_spi_master);
	return serial;
}


/**
 * t43x_assign_num - Assign wc->num a unique value and place on card_list
 *
 */
static void t43x_assign_num(struct t43x *wc)
{
	mutex_lock(&card_list_lock);
	if (list_empty(&card_list)) {
		wc->num = 0;
		list_add(&wc->card_node, &card_list);
	} else {
		struct t43x *cur;
		struct list_head *insert_pos;
		int new_num = 0;

		insert_pos = &card_list;
		list_for_each_entry(cur, &card_list, card_node) {
			if (new_num != cur->num)
				break;
			new_num++;
			insert_pos = &cur->card_node;
		}

		wc->num = new_num;
		list_add_tail(&wc->card_node, insert_pos);
	}
	mutex_unlock(&card_list_lock);
}

/*
 * Initialize the card (one time)
 *
 */
static int __devinit t43x_init_one(struct pci_dev *pdev,
		const struct pci_device_id *ent)
{
	struct t43x *wc;
	struct t43x_span *ts;
	unsigned int x;
	int res;
	enum linemode type;

	wc = kzalloc(sizeof(*wc), GFP_KERNEL);
	if (!wc) {
		pci_disable_device(pdev);
		return -ENOMEM;
	}

	t43x_assign_num(wc);

	wc->blinktimer = jiffies;
	dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
	wc->not_ready = 1;

	spin_lock_init(&wc->reglock);

	pci_set_drvdata(pdev, wc);
	wc->xb.pdev = pdev;
	wc->xb.ops = &xb_ops;
	wc->xb.debug = &debug;

	res = wcxb_init(&wc->xb, KBUILD_MODNAME, 0);
	if (res)
		goto fail_exit;

	mutex_init(&wc->lock);
	timer_setup(&wc->timer, t43x_timer, 0);

#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
	INIT_WORK(&wc->timer_work, timer_work_func, wc);
#else
	INIT_WORK(&wc->timer_work, timer_work_func);
#endif

#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
	INIT_WORK(&wc->clksrc_work.work, t43x_clksrc_work_fn,
		  &wc->clksrc_work.work);
#else
	INIT_DELAYED_WORK(&wc->clksrc_work.work, t43x_clksrc_work_fn);
#endif
	spin_lock_init(&wc->clksrc_work.lock);

	wc->ddev = dahdi_create_device();
	if (!wc->ddev) {
		res = -ENOMEM;
		goto fail_exit;
	}
	wc->ddev->manufacturer = "Digium";
	wc->ddev->location = kasprintf(GFP_KERNEL, "PCI Bus %02d Slot %02d",
				      pdev->bus->number,
				      PCI_SLOT(pdev->devfn) + 1);
	if (!wc->ddev->location) {
		res = -ENOMEM;
		goto fail_exit;
	}

	wc->ddev->hardware_id = t43x_read_serial(wc);

	if (wc->ddev->hardware_id == NULL) {
		dev_info(&wc->xb.pdev->dev, "Unable to read valid serial number\n");
		res = -EIO;
		goto fail_exit;
	}

	if (strncmp(wc->ddev->hardware_id, "1TE435F", 7) == 0) {
		/* Quad-span PCIE */
		wc->numspans = 4;
		wc->devtype = &te435;
	} else if (strncmp(wc->ddev->hardware_id, "1TE235F", 7) == 0) {
		/* Dual-span PCIE */
		wc->numspans = 2;
		wc->devtype = &te235;
	} else if (strncmp(wc->ddev->hardware_id, "1TE436F", 7) == 0) {
		/* Quad-span PCI */
		wc->numspans = 4;
		wc->devtype = &te436;
	} else if (strncmp(wc->ddev->hardware_id, "1TE236F", 7) == 0) {
		/* Dual-span PCI */
		wc->numspans = 2;
		wc->devtype = &te236;
	} else {
		dev_info(&wc->xb.pdev->dev,
			"Unable to identify board type from serial number %s\n",
			wc->ddev->hardware_id);
		res = -EIO;
		goto fail_exit;
	}

	/* Check for field updatable firmware */
	if ((wc->devtype == &te435) || (wc->devtype == &te235)) {
		res = wcxb_check_firmware(&wc->xb, TE435_VERSION,
			TE435_FW_FILENAME, force_firmware, WCXB_RESET_NOW);
	} else if ((wc->devtype == &te436) || (wc->devtype == &te236)) {
		res = wcxb_check_firmware(&wc->xb, TE436_VERSION,
			TE436_FW_FILENAME, force_firmware, WCXB_RESET_NOW);
	} else {
		res = -EIO;
	}

	if (res)
		goto fail_exit;

	for (x = 0; x < wc->numspans; x++) {
		ts = kzalloc(sizeof(*wc->tspans[x]), GFP_KERNEL);
		if (!ts) {
			res = -ENOMEM;
			goto fail_exit;
		}
		wc->tspans[x] = ts;
	}

	wc->wq = create_singlethread_workqueue(KBUILD_MODNAME);
	if (!wc->wq) {
		res = -ENOMEM;
		goto fail_exit;
	}

	wcxb_set_minlatency(&wc->xb, latency);
	wcxb_set_maxlatency(&wc->xb, max_latency);

	create_sysfs_files(wc);

	res = t43x_hardware_post_init(wc, &type);
	if (res)
		goto fail_exit;

	t43x_init_spans(wc, type);

	if (!wc->vpm)
		t43x_vpm_init(wc);

	if (wc->vpm) {
		wc->ddev->devicetype = kasprintf(GFP_KERNEL,
					"%s (%s)", wc->devtype->name,
					wc->vpm_name);
	} else {
		wc->ddev->devicetype = kasprintf(GFP_KERNEL,
					"%s", wc->devtype->name);
	}

	res = dahdi_register_device(wc->ddev, &wc->xb.pdev->dev);
	if (res) {
		dev_info(&wc->xb.pdev->dev, "Unable to register with DAHDI\n");
		goto fail_exit;
	}

	if (wc->ddev->hardware_id) {
		dev_info(&wc->xb.pdev->dev, "Found a %s (SN: %s)\n",
				wc->devtype->name, wc->ddev->hardware_id);
	} else {
		dev_info(&wc->xb.pdev->dev, "Found a %s\n",
				wc->devtype->name);
	}

	wc->not_ready = 0;
	return 0;

fail_exit:
	if (&wc->xb)
		wcxb_release(&wc->xb);

	if (debug)
		dev_info(&wc->xb.pdev->dev, "***At fail_exit in init_one***\n");

	for (x = 0; x < wc->numspans; x++)
		kfree(wc->tspans[x]);

	free_wc(wc);
	return res;
}

static void __devexit t43x_remove_one(struct pci_dev *pdev)
{
	struct t43x *wc = pci_get_drvdata(pdev);
	dev_info(&wc->xb.pdev->dev, "Removing a Wildcard TE43x.\n");

	if (!wc)
		return;

	wc->not_ready = 1;
	smp_mb__after_atomic();

	/* Stop everything */
	wcxb_stop(&wc->xb);

	/* Leave framer in reset so it no longer transmits */
	wcxb_gpio_clear(&wc->xb, FALC_CPU_RESET);

	/* Turn off status LEDs */
	t43x_setleds(wc, 0);

	if (wc->vpm)
		release_vpm450m(wc->vpm);
	wc->vpm = NULL;

#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 20)
#  ifdef T43X_HAVE_CANCEL_WORK_SYNC 
	cancel_work_sync(&wc->clksrc_work.work);
#  else
	cancel_delayed_work(&wc->clksrc_work.work);
	flush_workqueue(wc->wq);
#  endif
#else
	cancel_delayed_work_sync(&wc->clksrc_work.work);
#endif

	del_timer_sync(&wc->timer);
	flush_workqueue(wc->wq);
	del_timer_sync(&wc->timer);

	dahdi_unregister_device(wc->ddev);

	remove_sysfs_files(wc);

	wcxb_release(&wc->xb);
	free_wc(wc);
}

static DEFINE_PCI_DEVICE_TABLE(t43x_pci_tbl) = {
	{ 0xd161, 0x800e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{ 0xd161, 0x8013, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
	{ 0 }
};

static void t43x_shutdown(struct pci_dev *pdev)
{
	struct t43x *wc = pci_get_drvdata(pdev);
	dev_info(&wc->xb.pdev->dev, "Quiescing a Wildcard TE43x.\n");
	if (!wc)
		return;

	/* Stop everything */
	wcxb_stop(&wc->xb);

}

static int t43x_suspend(struct pci_dev *pdev, pm_message_t state)
{
	return -ENOSYS;
}

MODULE_DEVICE_TABLE(pci, t43x_pci_tbl);

static struct pci_driver t43x_driver = {
	.name = "wcte43x",
	.probe = t43x_init_one,
	.remove = __devexit_p(t43x_remove_one),
	.shutdown = t43x_shutdown,
	.suspend = t43x_suspend,
	.id_table = t43x_pci_tbl,
};

static int __init t43x_init(void)
{
	int res;

	if (strcasecmp(default_linemode, "t1") &&
	    strcasecmp(default_linemode, "j1") &&
	    strcasecmp(default_linemode, "e1")) {
		pr_err("'%s' is an unknown span type.\n", default_linemode);
		default_linemode = "t1";
		return -EINVAL;
	}

	res = dahdi_pci_module(&t43x_driver);
	if (res)
		return -ENODEV;

	return 0;
}


static void __exit t43x_cleanup(void)
{
	pci_unregister_driver(&t43x_driver);
}

module_param(debug, int, S_IRUGO | S_IWUSR);
module_param(timingcable, int, 0600);
module_param(default_linemode, charp, S_IRUGO);
MODULE_PARM_DESC(default_linemode, "\"t1\"(default), \"e1\", or \"j1\".");
module_param(alarmdebounce, int, S_IRUGO | S_IWUSR);
module_param(losalarmdebounce, int, S_IRUGO | S_IWUSR);
module_param(aisalarmdebounce, int, S_IRUGO | S_IWUSR);
module_param(yelalarmdebounce, int, S_IRUGO | S_IWUSR);
module_param(vpmsupport, int, 0600);
module_param(force_firmware, int, S_IRUGO);
module_param(latency, int, S_IRUGO);
MODULE_PARM_DESC(latency, "How many milliseconds of audio to buffer between card and host (3ms default). This number will increase during runtime, dynamically, if dahdi detects that it is too small. This is commonly refered to as a \"latency bump\"");
module_param(max_latency, int, 0600);
MODULE_PARM_DESC(max_latency, "The maximum amount of latency that the driver will permit.");

MODULE_DESCRIPTION("Wildcard Digital Card Driver");
MODULE_AUTHOR("Digium Incorporated <support@digium.com>");
MODULE_LICENSE("GPL v2");

module_init(t43x_init);
module_exit(t43x_cleanup);