aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/linux/linux-mtx-1-2.4.27/40-option-hsdpa.patch
blob: 2055f72312aefe25a20378fdf5d0a7cb39531e82 (plain)
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
diff -uNr linux-org/Documentation/Configure.help linux/Documentation/Configure.help
--- linux-org/Documentation/Configure.help	2006-02-06 14:01:32.375955928 +0100
+++ linux/Documentation/Configure.help	2006-02-06 15:51:13.332498464 +0100
@@ -4057,6 +4057,9 @@
   The module will be called synclinkmp.o.  If you want to do that, say M
   here.
 
+Option HSDPA card support
+CONFIG_NOZOMI
+
 ACP Modem (Mwave) support
 CONFIG_MWAVE
   The ACP modem (Mwave) for Linux is a WinModem. It is composed of a
diff -uNr linux-org/drivers/char/Config.in linux/drivers/char/Config.in
--- linux-org/drivers/char/Config.in	2006-02-06 14:01:55.767399888 +0100
+++ linux/drivers/char/Config.in	2006-02-06 15:51:07.574373832 +0100
@@ -388,6 +388,8 @@
 
 endmenu
 
+tristate '  Option HSDPA card support' CONFIG_NOZOMI
+
 if [ "$CONFIG_HOTPLUG" = "y" -a "$CONFIG_PCMCIA" != "n" ]; then
    source drivers/char/pcmcia/Config.in
 fi
diff -uNr linux-org/drivers/char/Makefile linux/drivers/char/Makefile
--- linux-org/drivers/char/Makefile	2006-02-06 14:01:55.782397608 +0100
+++ linux/drivers/char/Makefile	2006-02-06 15:30:37.949305256 +0100
@@ -331,6 +331,11 @@
 obj-$(CONFIG_INDYDOG) += indydog.o
 obj-$(CONFIG_8xx_WDT) += mpc8xx_wdt.o
 
+subdir-$(CONFIG_NOZOMI) += nozomi
+ifeq ($(CONFIG_NOZOMI),y)
+  obj-y += nozomi/noz.o
+endif
+
 subdir-$(CONFIG_MWAVE) += mwave
 ifeq ($(CONFIG_MWAVE),y)
   obj-y += mwave/mwave.o
diff -uNr linux-org/drivers/char/nozomi/CHANGELOG linux/drivers/char/nozomi/CHANGELOG
--- linux-org/drivers/char/nozomi/CHANGELOG	1970-01-01 01:00:00.000000000 +0100
+++ linux/drivers/char/nozomi/CHANGELOG	2006-02-06 15:30:07.370953872 +0100
@@ -0,0 +1,7 @@
+/*
+ * Version 1.0
+ *
+ * First version of driver, only tested with card of type F32_2.
+ * Works fine with 2.4 and 2.6 kernels.
+ * Driver also support big endian architecture.
+ */
diff -uNr linux-org/drivers/char/nozomi/COPYING linux/drivers/char/nozomi/COPYING
--- linux-org/drivers/char/nozomi/COPYING	1970-01-01 01:00:00.000000000 +0100
+++ linux/drivers/char/nozomi/COPYING	2006-02-06 15:30:07.371953720 +0100
@@ -0,0 +1,340 @@
+		    GNU GENERAL PUBLIC LICENSE
+		       Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+                       51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+			    Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+		    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+  2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) You must cause the modified files to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    b) You must cause any work that you distribute or publish, that in
+    whole or in part contains or is derived from the Program or any
+    part thereof, to be licensed as a whole at no charge to all third
+    parties under the terms of this License.
+
+    c) If the modified program normally reads commands interactively
+    when run, you must cause it, when started running for such
+    interactive use in the most ordinary way, to print or display an
+    announcement including an appropriate copyright notice and a
+    notice that there is no warranty (or else, saying that you provide
+    a warranty) and that users may redistribute the program under
+    these conditions, and telling the user how to view a copy of this
+    License.  (Exception: if the Program itself is interactive but
+    does not normally print such an announcement, your work based on
+    the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+    a) Accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of Sections
+    1 and 2 above on a medium customarily used for software interchange; or,
+
+    b) Accompany it with a written offer, valid for at least three
+    years, to give any third party, for a charge no more than your
+    cost of physically performing source distribution, a complete
+    machine-readable copy of the corresponding source code, to be
+    distributed under the terms of Sections 1 and 2 above on a medium
+    customarily used for software interchange; or,
+
+    c) Accompany it with the information you received as to the offer
+    to distribute corresponding source code.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form with such
+    an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it.  For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable.  However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License.  Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+  5. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Program or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+  7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded.  In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+  9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+  10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+			    NO WARRANTY
+
+  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+		     END OF TERMS AND CONDITIONS
+
+	    How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) year name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here is a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+  `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs.  If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library.  If this is what you want to do, use the GNU Library General
+Public License instead of this License.
diff -uNr linux-org/drivers/char/nozomi/Makefile linux/drivers/char/nozomi/Makefile
--- linux-org/drivers/char/nozomi/Makefile	1970-01-01 01:00:00.000000000 +0100
+++ linux/drivers/char/nozomi/Makefile	2006-02-06 15:30:07.379952504 +0100
@@ -0,0 +1,25 @@
+#
+# Makefile for ACP Modem (Mwave).
+#
+# See the README file in this directory for more info. <paulsch@us.ibm.com>
+#
+# Note! Dependencies are done automagically by 'make dep', which also
+# removes any old dependencies. DON'T put your own dependencies here
+# unless it's something special (ie not a .c file).
+#
+# Note 2! The CFLAGS definitions are now inherited from the
+# parent makes..
+#
+
+# To compile in lots (~20 KiB) of run-time enablable printk()s for debugging:
+#EXTRA_CFLAGS += -DMW_TRACE
+
+# To have the mwave driver disable other uarts if necessary
+# EXTRA_CFLAGS += -DMWAVE_FUTZ_WITH_OTHER_DEVICES
+
+O_TARGET := noz.o
+
+obj-y	:= nozomi.o kfifo.o 
+obj-m	:= $(O_TARGET)
+
+include $(TOPDIR)/Rules.make
diff -uNr linux-org/drivers/char/nozomi/README linux/drivers/char/nozomi/README
--- linux-org/drivers/char/nozomi/README	1970-01-01 01:00:00.000000000 +0100
+++ linux/drivers/char/nozomi/README	2006-02-06 15:30:07.380952352 +0100
@@ -0,0 +1,17 @@
+To build this driver for your kernel, please check:
+
+For kernel 2.6
+---------------
+Check the Makefile and run 'make'.
+
+For kernel 2.4
+----------
+make HW=PC_24
+
+If you have troubles:
+1) Have proper kernel headers/source as your running kernel.
+2) Make sure this variable in Makefile is correct KERNELDIR	= -I/path/to/kernel
+3) If the /dev/noz[0-3] will not be created automatically, do:
+mknod /dev/noz0 c 241 0; mknod /dev/noz1 c 241 1; 
+mknod /dev/noz2 c 241 2; mknod /dev/noz3 c 241 3
+
diff -uNr linux-org/drivers/char/nozomi/TODO linux/drivers/char/nozomi/TODO
--- linux-org/drivers/char/nozomi/TODO	1970-01-01 01:00:00.000000000 +0100
+++ linux/drivers/char/nozomi/TODO	2006-02-06 15:30:07.361955240 +0100
@@ -0,0 +1,6 @@
+* When having a noz* open and rmmod module or removing card,
+  the driver core dumps.
+
+* Does not yet support multiple cards.
+
+* Add a helpful description.
diff -uNr linux-org/drivers/char/nozomi/kfifo.c linux/drivers/char/nozomi/kfifo.c
--- linux-org/drivers/char/nozomi/kfifo.c	1970-01-01 01:00:00.000000000 +0100
+++ linux/drivers/char/nozomi/kfifo.c	2006-02-06 15:30:07.361955240 +0100
@@ -0,0 +1,189 @@
+/*
+ * A simple kernel FIFO implementation.
+ *
+ * Copyright (C) 2004 Stelian Pop <stelian@popies.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/slab.h>
+#include <asm/uaccess.h>
+#include "kfifo.h"
+
+
+/**
+ * kfifo_init - allocates a new FIFO using a preallocated buffer
+ * @buffer: the preallocated buffer to be used.
+ * @size: the size of the internal buffer, this have to be a power of 2.
+ * @gfp_mask: get_free_pages mask, passed to kmalloc()
+ * @lock: the lock to be used to protect the fifo buffer
+ *
+ * Do NOT pass the kfifo to kfifo_free() after use ! Simply free the
+ * struct kfifo with kfree().
+ */
+struct kfifo *kfifo_init(unsigned char *buffer, unsigned int size,
+			 unsigned int  gfp_mask, void *lock)
+{
+	struct kfifo *fifo;
+
+	/* size must be a power of 2 */
+	BUG_ON(size & (size - 1));
+
+	fifo = kmalloc(sizeof(struct kfifo), gfp_mask);
+	if (!fifo)
+		return ERR_PTR(-ENOMEM);
+
+	fifo->buffer = buffer;
+	fifo->size = size;
+	fifo->in = fifo->out = 0;
+
+	return fifo;
+}
+
+/**
+ * kfifo_alloc - allocates a new FIFO and its internal buffer
+ * @size: the size of the internal buffer to be allocated.
+ * @gfp_mask: get_free_pages mask, passed to kmalloc()
+ * @lock: the lock to be used to protect the fifo buffer
+ *
+ * The size will be rounded-up to a power of 2.
+ */
+struct kfifo *kfifo_alloc(unsigned int size, unsigned int  gfp_mask, void *lock)
+{
+	unsigned char *buffer;
+	struct kfifo *ret;
+
+	/*
+	 * round up to the next power of 2, since our 'let the indices
+	 * wrap' tachnique works only in this case.
+	 */
+	if (size & (size - 1)) {
+		BUG_ON(size > 0x80000000);
+		printk("Do not support no power of two!\n");
+		//size = roundup_pow_of_two(size);
+	}
+
+	buffer = kmalloc(size, gfp_mask);
+	if (!buffer)
+		return ERR_PTR(-ENOMEM);
+
+	ret = kfifo_init(buffer, size, gfp_mask, lock);
+
+	if (IS_ERR(ret))
+		kfree(buffer);
+
+	return ret;
+}
+
+/**
+ * kfifo_free - frees the FIFO
+ * @fifo: the fifo to be freed.
+ */
+void kfifo_free(struct kfifo *fifo)
+{
+	kfree(fifo->buffer);
+	kfree(fifo);
+}
+
+/**
+ * __kfifo_put - puts some data into the FIFO, no locking version
+ * @fifo: the fifo to be used.
+ * @buffer: the data to be added.
+ * @len: the length of the data to be added.
+ *
+ * This function copies at most 'len' bytes from the 'buffer' into
+ * the FIFO depending on the free space, and returns the number of
+ * bytes copied.
+ *
+ * Note that with only one concurrent reader and one concurrent
+ * writer, you don't need extra locking to use these functions.
+ */
+unsigned int __kfifo_put(struct kfifo *fifo,
+			 unsigned char *buffer, unsigned int len)
+{
+	unsigned int l;
+
+	len = min(len, fifo->size - fifo->in + fifo->out);
+
+	/* first put the data starting from fifo->in to buffer end */
+	l = min(len, fifo->size - (fifo->in & (fifo->size - 1)));
+	memcpy(fifo->buffer + (fifo->in & (fifo->size - 1)), buffer, l);
+
+	/* then put the rest (if any) at the beginning of the buffer */
+	memcpy(fifo->buffer, buffer + l, len - l);
+
+	fifo->in += len;
+
+	return len;
+}
+
+/** __kfifio_put_user works like __kfifo_put, but copies data from 
+ *  user space.
+ */
+
+unsigned int __kfifo_put_user(struct kfifo *fifo,
+			 unsigned char *buffer, unsigned int len)
+{
+	unsigned int l;
+
+	len = min(len, fifo->size - fifo->in + fifo->out);
+
+	/* first put the data starting from fifo->in to buffer end */
+	l = min(len, fifo->size - (fifo->in & (fifo->size - 1)));
+	copy_from_user(fifo->buffer + (fifo->in & (fifo->size - 1)), buffer, l);
+
+	/* then put the rest (if any) at the beginning of the buffer */
+	copy_from_user(fifo->buffer, buffer + l, len - l);
+
+	fifo->in += len;
+
+	return len;
+}
+
+
+
+/**
+ * __kfifo_get - gets some data from the FIFO, no locking version
+ * @fifo: the fifo to be used.
+ * @buffer: where the data must be copied.
+ * @len: the size of the destination buffer.
+ *
+ * This function copies at most 'len' bytes from the FIFO into the
+ * 'buffer' and returns the number of copied bytes.
+ *
+ * Note that with only one concurrent reader and one concurrent
+ * writer, you don't need extra locking to use these functions.
+ */
+unsigned int __kfifo_get(struct kfifo *fifo,
+			 unsigned char *buffer, unsigned int len)
+{
+	unsigned int l;
+
+	len = min(len, fifo->in - fifo->out);
+
+	/* first get the data from fifo->out until the end of the buffer */
+	l = min(len, fifo->size - (fifo->out & (fifo->size - 1)));
+	memcpy(buffer, fifo->buffer + (fifo->out & (fifo->size - 1)), l);
+
+	/* then get the rest (if any) from the beginning of the buffer */
+	memcpy(buffer + l, fifo->buffer, len - l);
+
+	fifo->out += len;
+
+	return len;
+}
diff -uNr linux-org/drivers/char/nozomi/kfifo.h linux/drivers/char/nozomi/kfifo.h
--- linux-org/drivers/char/nozomi/kfifo.h	1970-01-01 01:00:00.000000000 +0100
+++ linux/drivers/char/nozomi/kfifo.h	2006-02-06 15:30:07.361955240 +0100
@@ -0,0 +1,67 @@
+/*
+ * A simple kernel FIFO implementation.
+ *
+ * Copyright (C) 2004 Stelian Pop <stelian@popies.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+#ifndef _LINUX_KFIFO_H
+#define _LINUX_KFIFO_H
+
+#ifdef __KERNEL__
+
+#include <linux/version.h>
+
+#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,0)
+#warning "Don't include this header in 2.6, use header supplied with kernel"
+#endif 
+
+struct kfifo {
+	unsigned char *buffer;	/* the buffer holding the data */
+	unsigned int size;	/* the size of the allocated buffer */
+	unsigned int in;	/* data is added at offset (in % size) */
+	unsigned int out;	/* data is extracted from off. (out % size) */
+};
+
+extern struct kfifo *kfifo_init(unsigned char *buffer, unsigned int size, unsigned int gfp_mask, void *lock);
+extern struct kfifo *kfifo_alloc(unsigned int size, unsigned int gfp_mask, void *lock);
+extern void kfifo_free(struct kfifo *fifo);
+extern unsigned int __kfifo_put(struct kfifo *fifo, unsigned char *buffer, unsigned int len);
+extern unsigned int __kfifo_put_user(struct kfifo *fifo, unsigned char *buffer, unsigned int len);
+extern unsigned int __kfifo_get(struct kfifo *fifo,	unsigned char *buffer, unsigned int len);
+
+/**
+ * __kfifo_reset - removes the entire FIFO contents, no locking version
+ * @fifo: the fifo to be emptied.
+ */
+static inline void __kfifo_reset(struct kfifo *fifo)
+{
+	fifo->in = fifo->out = 0;
+}
+
+/**
+ * __kfifo_len - returns the number of bytes available in the FIFO, no locking version
+ * @fifo: the fifo to be used.
+ */
+static inline unsigned int __kfifo_len(struct kfifo *fifo)
+{
+	return fifo->in - fifo->out;
+}
+
+#else
+#warning "don't include kernel headers in userspace"
+#endif /* __KERNEL__ */
+#endif
diff -uNr linux-org/drivers/char/nozomi/nozomi.c linux/drivers/char/nozomi/nozomi.c
--- linux-org/drivers/char/nozomi/nozomi.c	1970-01-01 01:00:00.000000000 +0100
+++ linux/drivers/char/nozomi/nozomi.c	2006-02-06 15:30:07.379952504 +0100
@@ -0,0 +1,2238 @@
+
+/* nozomi.c  -- HSDPA driver Broadband Wireless Data Card - Globe Trotter
+ *
+ * Written by: Ulf Jakobsson,
+ *			 Jan �kerfeldt,
+ *			 Stefan Thomasson,
+ *
+ * Maintained by: Paul Hardwick, p.hardwick@option.com
+ *
+ * Source has been ported from an implementation made by Filip Aben, f.aben@option.com
+ *
+ * --------------------------------------------------------------------------
+
+ Copyright (c) 2005 Option Wireless Sweden AB
+ All rights Reserved.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
+ * --------------------------------------------------------------------------
+ */
+
+/* CHANGELOG
+ *
+ * See CHANGELOG in this package
+ */
+
+/* TODO
+ *
+ * See TODO file in this package
+ */
+
+
+/*
+ * TODO2 fix the send_reset_token() routine not to use the fixed start address
+ */
+
+
+
+#include <linux/version.h>
+
+#if LINUX_VERSION_CODE > KERNEL_VERSION(2,6,0)
+#define KERNEL_2_6
+#elif LINUX_VERSION_CODE > KERNEL_VERSION(2,4,0)
+#define KERNEL_2_4
+#endif
+
+#include <linux/module.h>
+#include <linux/pci.h>
+#include <linux/ioport.h>
+#include <linux/tty.h>
+#include <linux/tty_driver.h>
+#include <linux/tty_flip.h>
+#include <linux/serial.h>
+#include <linux/interrupt.h>
+#include <linux/kmod.h>
+#include <linux/proc_fs.h>
+#include <asm/uaccess.h>
+
+#include <linux/init.h>
+
+#define VERSION_STRING DRIVER_DESC " (build date: " __DATE__ " " __TIME__ ")"
+
+#ifdef KERNEL_2_6
+#include <linux/kfifo.h>
+#else
+#include "kfifo.h"
+#endif
+
+#ifdef KERNEL_2_4
+#ifndef IRQ_NONE
+#define IRQ_NONE
+#endif
+#ifndef IRQ_HANDLED
+#define IRQ_HANDLED
+typedef void irqreturn_t;
+#endif
+#endif
+
+#ifndef CONFIG_PCI
+#error "This driver needs PCI support to be available"
+#endif
+
+/*	Macros definitions */
+
+/* Enable this to have a lot of debug printouts */
+/*#define NOZOMI_DEBUG */
+
+/* Default debug printout level */
+#define NOZOMI_DEBUG_LEVEL 0xffff
+
+#define P_BUF_SIZE 128
+#define NFO( _err_flag_, args...)											\
+  do{																		\
+	char t_m_p_[P_BUF_SIZE];												 \
+	  snprintf(t_m_p_, sizeof(t_m_p_), ##args);							  \
+	  printk( _err_flag_ "[%d] %s(): %s\n", __LINE__, __FUNCTION__, t_m_p_); \
+} while(0)
+
+#define INFO(args...) NFO(KERN_INFO, ##args)
+#define ERR(args...)  NFO( KERN_ERR, ##args)
+
+#define D1(args...) D_(0x01, ##args)
+#define D2(args...) D_(0x02, ##args)
+#define D3(args...) D_(0x04, ##args)
+#define D4(args...) D_(0x08, ##args)
+#define D5(args...) D_(0x10, ##args)
+#define D6(args...) D_(0x20, ##args)
+#define D7(args...) D_(0x40, ##args)
+#define D8(args...) D_(0x80, ##args)
+
+
+#ifdef NOZOMI_DEBUG
+#define D_(lvl, args...) D(lvl, ##args)
+  /* Do we need this settable at runtime? */
+static int nzdebug = NOZOMI_DEBUG_LEVEL;
+
+#define D(lvl, args...)  do{if(lvl & nzdebug) NFO(KERN_INFO, ##args );}while(0)
+#define D_(lvl, args...) D(lvl, ##args)
+
+/* These printouts are always printed */
+
+#else
+  static const int nzdebug = 0;
+#define D_(lvl, args...)
+#endif
+
+/* TODO: rewrite to optimize macros... */
+#define SET_FCR(value__) \
+  do {  \
+	writew((value__), (void*) (dc->REG_FCR )); \
+} while(0)
+
+#define SET_IER(value__, mask__) \
+  do {  \
+	dc->ier_last_written = (dc->ier_last_written & ~mask__) | (value__ & mask__ );\
+	writew( dc->ier_last_written, (void*) (dc->REG_IER));\
+} while(0)
+
+#define GET_IER(read_val__) \
+  do {  \
+	(read_val__) = readw((void*) (dc->REG_IER));\
+} while(0)
+
+#define GET_IIR(read_val__) \
+  do {  \
+	(read_val__) = readw((void*) (dc->REG_IIR));\
+} while(0)
+
+#define GET_MEM(value__, addr__, length__) \
+  do {  \
+	read_mem32( (u32*) (value__), (u32) (addr__), (length__));\
+} while(0)
+
+#define GET_MEM_BUF(value__, addr__, length__) \
+  do {  \
+	read_mem32_buf( (u32*) (value__), (u32) (addr__), (length__));\
+} while(0)
+
+#define SET_MEM(addr__, value__, length__) \
+  do {  \
+  write_mem32( (addr__),  (u32*) (value__), (length__));\
+} while(0)
+
+#define SET_MEM_BUF(addr__, value__, length__) \
+  do {  \
+  write_mem32_buf( (addr__),  (u32*) (value__), (length__));\
+} while(0)
+
+
+#define TMP_BUF_MAX 256
+
+#define DUMP(buf__,len__) \
+  do {  \
+	char tbuf[TMP_BUF_MAX]={0};\
+	if (len__>1) {\
+		snprintf(tbuf, len__ > TMP_BUF_MAX ? TMP_BUF_MAX : len__, "%s",buf__);\
+		if(tbuf[len__-2] == '\r') {\
+			tbuf[len__-2] = 'r';\
+		}\
+		D1( "SENDING: '%s' (%d+n)", tbuf, len__);\
+	} else {\
+		D1( "SENDING: '%s' (%d)", tbuf, len__);\
+	}\
+} while(0)
+
+#define RELEVANT_IFLAG(iflag) ((iflag) & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
+
+
+/*	Defines */
+#define NOZOMI_NAME	 "nozomi"
+#define NOZOMI_NAME_TTY "nozomi_tty"
+#define DRIVER_DESC	 "Nozomi driver"
+
+#define NTTY_TTY_MAJOR			241
+#define NTTY_TTY_MINORS			MAX_PORT
+#define NTTY_FIFO_BUFFER_SIZE	8192
+
+/* Must be power of 2 */
+#define FIFO_BUFFER_SIZE_UL 	8192
+
+/* Size of tmp send buffer to card */
+#define SEND_BUF_MAX 	1024
+#define RECEIVE_BUF_MAX 4
+
+/* Our fake UART values */
+#define MCR_DTR		0x01
+#define MCR_RTS		0x02
+#define MCR_LOOP	0x04
+#define MSR_CTS		0x08
+#define MSR_CD		0x10
+#define MSR_RI		0x20
+#define MSR_DSR		0x40
+
+/* Define all types of vendors and devices to support */
+#define VENDOR1		 0x1931 /* Vendor Option */
+#define DEVICE1		 0x000c /* HSDPA card */
+
+#define R_IIR		 0x0000  /* Interrupt Identity Register */
+#define R_FCR		 0x0000  /* Flow Control Register */
+#define R_IER		 0x0004  /* Interrupt Enable Register */
+
+#define CONFIG_MAGIC 0xEFEFFEFE
+#define TOGGLE_VALID 0x0000
+
+/* Definition of interrupt tokens */
+#define MDM_DL1  0x0001
+#define MDM_UL1  0x0002
+#define MDM_DL2  0x0004
+#define MDM_UL2  0x0008
+#define DIAG_DL1 0x0010
+#define DIAG_DL2 0x0020
+#define DIAG_UL  0x0040
+#define APP1_DL  0x0080
+#define APP1_UL  0x0100
+#define APP2_DL  0x0200
+#define APP2_UL  0x0400
+#define CTRL_DL  0x0800
+#define CTRL_UL  0x1000
+#define RESET	0x8000
+
+#define MDM_DL	(MDM_DL1  | MDM_DL2)
+#define MDM_UL	(MDM_UL1  | MDM_UL2)
+#define DIAG_DL (DIAG_DL1 | DIAG_DL2)
+
+/* modem signal definition */
+#define CTRL_DSR 0x0001
+#define CTRL_DCD 0x0002
+#define CTRL_RI	 0x0004
+#define CTRL_CTS 0x0008
+
+#define CTRL_DTR 0x0001
+#define CTRL_RTS 0x0002
+
+#define MAX_PORT 4
+#define NOZOMI_MAX_PORTS 5
+
+/*	Type definitions */
+
+/* There are two types of nozomi cards, one with 2048 memory and with 8192 memory */
+typedef enum {
+	F32_2 = 2048, /* Has 512 bytes downlink and uplink * 2			 -> 2048 */
+	F32_8 = 9192, /* Has 3072 bytes downlink and 1024 bytes uplink * 2 -> 8192 */
+} card_type_t;
+
+/* Two different toggle channels exist */
+typedef enum {
+	CH_A=0,
+	CH_B=1,
+} channel_t;
+
+/* Port definition for the card regarding flow control */
+typedef enum {
+	CTRL_CMD  = 0x00,
+	CTRL_MDM  = 0x01,
+	CTRL_DIAG = 0x02,
+	CTRL_APP1 = 0x03,
+	CTRL_APP2 = 0x04,
+	CTRL_ERROR = -1,
+} ctrl_port_t;
+
+/* Ports that the nozomi has */
+typedef enum {
+	PORT_MDM = 0,
+	PORT_DIAG= 1,
+	PORT_APP1= 2,
+	PORT_APP2= 3,
+	PORT_CTRL= 4,
+	PORT_ERROR=-1,
+} port_type_t;
+
+#ifdef __ARMEB__
+/* Big endian */
+
+typedef struct {
+	unsigned enabled : 5; /* Toggle fields are valid if enabled is 0, else A-channels
+							 must always be used. */
+	unsigned diag_dl : 1;
+	unsigned mdm_dl : 1;
+	unsigned mdm_ul : 1;
+} __attribute__ ((packed)) toggles_t;
+
+/* Configuration table to read at startup of card */
+/* Is for now only needed during initialization phase */
+typedef struct {
+	u32 signature;
+	u16 product_information;
+	u16 version;
+	u8 pad3[3];
+	toggles_t toggle;
+	u8 pad1[4];
+	u16 dl_mdm_len1; /* If this is 64, it can hold 60 bytes + 4 that is length field */
+	u16 dl_start;
+
+	u16 dl_diag_len1;
+	u16 dl_mdm_len2; /* If this is 64, it can hold 60 bytes + 4 that is length field */
+	u16 dl_app1_len;
+
+	u16 dl_diag_len2;
+	u16 dl_ctrl_len;
+	u16 dl_app2_len;
+	u8 pad2[16];
+	u16 ul_mdm_len1;
+	u16 ul_start;
+	u16 ul_diag_len;
+	u16 ul_mdm_len2;
+	u16 ul_app1_len;
+	u16 ul_app2_len;
+	u16 ul_ctrl_len;
+} __attribute__((packed)) config_table_t;
+
+/* This stores all control downlink flags */
+typedef struct {
+	u8 port;
+	unsigned reserved : 4;
+	unsigned CTS : 1;
+	unsigned RI  : 1;
+	unsigned DCD : 1;
+	unsigned DSR : 1;
+} __attribute__ ((packed)) ctrl_dl_t;
+
+/* This stores all control uplink flags */
+typedef struct {
+	u8 port;
+	unsigned reserved : 6;
+	unsigned RTS : 1;
+	unsigned DTR : 1;
+} __attribute__ ((packed)) ctrl_ul_t;
+
+#else
+/* Little endian */
+
+/* This represents the toggle information */
+typedef struct {
+	unsigned mdm_ul : 1;
+	unsigned mdm_dl : 1;
+	unsigned diag_dl : 1;
+	unsigned enabled : 5; /* Toggle fields are valid if enabled is 0, else A-channels
+							 must always be used. */
+} __attribute__ ((packed)) toggles_t;
+
+/* Configuration table to read at startup of card */
+typedef struct {
+	u32 signature;
+	u16 version;
+	u16 product_information;
+	toggles_t toggle;
+	u8 pad1[7];
+	u16 dl_start;
+	u16 dl_mdm_len1; /* If this is 64, it can hold 60 bytes + 4 that is length field */
+	u16 dl_mdm_len2;
+	u16 dl_diag_len1;
+	u16 dl_diag_len2;
+	u16 dl_app1_len;
+	u16 dl_app2_len;
+	u16 dl_ctrl_len;
+	u8 pad2[16];
+	u16 ul_start;
+	u16 ul_mdm_len2;
+	u16 ul_mdm_len1;
+	u16 ul_diag_len;
+	u16 ul_app1_len;
+	u16 ul_app2_len;
+	u16 ul_ctrl_len;
+} __attribute__((packed)) config_table_t;
+
+/* This stores all control downlink flags */
+typedef struct {
+	unsigned DSR : 1;
+	unsigned DCD : 1;
+	unsigned RI  : 1;
+	unsigned CTS : 1;
+	unsigned reserverd : 4;
+	u8 port;
+} __attribute__ ((packed)) ctrl_dl_t;
+
+/* This stores all control uplink flags */
+typedef struct {
+	unsigned DTR : 1;
+	unsigned RTS : 1;
+	unsigned reserved : 6;
+	u8 port;
+} __attribute__ ((packed)) ctrl_ul_t;
+#endif
+
+/* This holds all information that is needed regarding a port */
+typedef struct {
+	u8					 update_flow_control;
+	ctrl_ul_t			 ctrl_ul;
+	ctrl_dl_t			 ctrl_dl;
+	struct kfifo		*fifo_ul;
+	u32					 dl_addr[2];
+	u32					 dl_size[2];
+	u8					 toggle_dl;
+	u32					 ul_addr[2];
+	u32					 ul_size[2];
+	u8					 toggle_ul;
+	u16					 token_dl;
+
+	struct tty_struct	*tty;
+	int					 tty_open_count;
+	struct semaphore	 tty_sem;
+	wait_queue_head_t	 tty_wait;
+	struct async_icount	 tty_icount;
+	int				  tty_index;
+	u32					 rx_data, tx_data;
+	u8					 tty_dont_flip;
+
+} port_t;
+
+/* Private data one for each card in the system */
+typedef struct {
+	u32					 base_addr;
+	u8					 closing;
+
+	/* Register addresses */
+	u32					 REG_IIR;
+	u32					 REG_FCR;
+	u32					 REG_IER;
+
+	volatile u16		 ier_last_written;
+	card_type_t 		 card_type;
+	config_table_t 		 config_table; /* Configuration table */
+	struct pci_dev 		*pdev;
+	port_t 				 port[NOZOMI_MAX_PORTS];
+	u8				  *send_buf;
+
+	struct tty_driver	tty_driver;
+
+#ifdef KERNEL_2_4
+	struct tty_struct  	*tty_table[NTTY_TTY_MINORS];
+	struct tq_struct	 tty_flip_queue;
+	s32					 tty_refcount;
+#endif
+#ifdef KERNEL_2_6
+	struct workqueue_struct *tty_flip_wq;
+	struct work_struct	tty_flip_wq_struct;
+#endif
+
+	struct termios		*tty_termios[NTTY_TTY_MINORS];
+	struct termios		*tty_termios_locked[NTTY_TTY_MINORS];
+	spinlock_t			 spin_mutex;
+
+	u32					open_ttys;
+	struct proc_dir_entry *proc_entry;
+
+} dc_t;
+
+/* This is a data packet that is read or written to/from card */
+typedef struct {
+	u32 size; /* size is the length of the data buffer */
+	u8 *data;
+} __attribute__ ((packed)) buf_t;
+
+/*	Function declarations */
+static int ntty_tty_init(dc_t *dc);
+
+static void tty_flip_queue_function(void *tmp_dc);
+
+/*	Global variables */
+static struct pci_device_id nozomi_pci_tbl[] __devinitdata = {
+	{VENDOR1, DEVICE1},
+	{0, }
+};
+
+/* Used to store interrupt variables */
+typedef struct {
+	volatile u16 read_iir; /* Holds current interrupt tokens */
+} irq_t;
+
+MODULE_DEVICE_TABLE(pci, nozomi_pci_tbl);
+
+/* Representing the pci device of interest */
+static int cards_found = 0;
+static int cards_initialized = 0;
+dc_t* my_dev = NULL;
+struct pci_dev *my_pdev = NULL;
+irq_t my_irq;
+
+#define CARD_CHECK(rval) { \
+	if (cards_found == 0 || cards_found != cards_initialized) {   \
+		ERR("Operation requested on uninitialized nozomi card."); \
+		return rval; \
+	} }
+
+
+static inline dc_t* get_dc_by_pdev(struct pci_dev* pdev) {
+	return my_dev;
+}
+
+static inline dc_t* get_dc_by_index(s32 index ) {
+	return my_dev;
+}
+
+static inline s32 get_index(struct tty_struct *tty) {
+#ifdef KERNEL_2_6
+	return tty->index;
+#else
+	return MINOR(tty->device) - tty->driver.minor_start;
+#endif
+}
+
+static inline port_t* get_port_by_tty(struct tty_struct *tty) {
+	return &my_dev->port[ get_index(tty) ];
+}
+
+static inline dc_t* get_dc_by_tty(struct tty_struct *tty ) {
+	return my_dev;
+}
+
+
+/* TODO: */
+/* -Optimize */
+/* -Rewrite cleaner */
+static void read_mem32(u32 *buf, u32 mem_addr_start, u32 size_bytes) {
+	u32 i = 0;
+	u32* ptr =  (u32*) mem_addr_start;
+	u16* buf16;
+
+	/* 2 bytes */
+	if (size_bytes == 2) {
+		buf16 = (u16*) buf;
+		*buf16 = readw( ptr );
+		return;
+	}
+
+	while (i < size_bytes) {
+		if ( size_bytes - i == 2) {
+			/* Handle 2 bytes in the end */
+			buf16 = (u16*) buf;
+			*(buf16) = readw( ptr );
+			i+=2;
+		} else {
+			/* Read 4 bytes */
+			*(buf) = readl( ptr );
+			i+=4;
+		}
+		buf++; ptr++;
+	}
+}
+
+/* TODO: */
+/* - Rewrite cleaner */
+/* - merge with read_mem32() */
+static void read_mem32_buf(u32 *buf, u32 mem_addr_start, u32 size_bytes) {
+#ifdef __ARMEB__
+	u32 i = 0;
+	u32* ptr =  (u32*) mem_addr_start;
+	u16* buf16;
+
+	/* 2 bytes */
+	if (size_bytes == 2) {
+		buf16 = (u16*) buf;
+		*buf16 = __le16_to_cpu( readw( ptr ));
+		return;
+	}
+
+	while (i < size_bytes) {
+		if ( size_bytes - i == 2) {
+			/* Handle 2 bytes in the end */
+			buf16 = (u16*) buf;
+			*(buf16) = __le16_to_cpu( readw( ptr ));
+			i+=2;
+		} else {
+			/* Read 4 bytes */
+			*(buf) = __le32_to_cpu( readl( ptr ));
+			i+=4;
+		}
+		buf++; ptr++;
+	}
+#else
+	read_mem32(buf, mem_addr_start, size_bytes);
+#endif
+}
+
+/* TODO: */
+/* -Optimize */
+/* -Rewrite cleaner */
+static u32 write_mem32(u32 mem_addr_start, u32 *buf, u32 size_bytes) {
+	u32 i = 0;
+	u32* ptr = (u32*) mem_addr_start;
+	u16* buf16;
+
+	/* 2 bytes */
+	if (size_bytes == 2) {
+		buf16 = (u16*) buf;
+		writew( *buf16, ptr);
+		return 2;
+	}
+
+	while (i < size_bytes) {
+		if ( size_bytes - i == 2) {
+			/* 2 bytes */
+			buf16 = (u16*) buf;
+			writew( *buf16, ptr);
+			i+=2;
+		} else {
+			/* 4 bytes */
+			writel( *buf, ptr );
+			i += 4;
+		}
+		buf++; ptr++;
+	}
+	return size_bytes;
+}
+
+/* Todo: */
+/* - Merge with write_mem32() */
+static u32 write_mem32_buf(u32 mem_addr_start, u32 *buf, u32 size_bytes) {
+#ifdef __ARMEB__
+	u32 i = 0;
+	u32* ptr = (u32*) mem_addr_start;
+	u16* buf16;
+
+	/* 2 bytes */
+	if (size_bytes == 2) {
+		buf16 = (u16*) buf;
+			writew( __le16_to_cpu(*buf16), ptr);
+		return 2;
+	}
+
+	while (i < size_bytes) {
+		if ( size_bytes - i == 2) {
+			/* 2 bytes */
+			buf16 = (u16*) buf;
+			writew( __le16_to_cpu(*buf16), ptr);
+			i+=2;
+		} else {
+			/* 4 bytes */
+			writel( __cpu_to_le32( *buf ), ptr );
+			i += 4;
+		}
+		buf++; ptr++;
+	}
+	return size_bytes;
+#else
+	return write_mem32(mem_addr_start, buf, size_bytes);
+#endif
+}
+
+/* Setup pointers to different channels and also setup buffer sizes. */
+static void setup_memory(dc_t *dc) {
+
+	u32 offset = dc->base_addr + dc->config_table.dl_start;
+	/* The length reported is including the length field of 4 bytes, hence subtract with 4. */
+	u16 buff_offset = 4;
+
+	/* Modem port dl configuration */
+	dc->port[PORT_MDM].dl_addr[CH_A] = offset;
+	dc->port[PORT_MDM].dl_addr[CH_B] = (offset += dc->config_table.dl_mdm_len1);
+	dc->port[PORT_MDM].dl_size[CH_A] = dc->config_table.dl_mdm_len1 - buff_offset;
+	dc->port[PORT_MDM].dl_size[CH_B] = dc->config_table.dl_mdm_len2 - buff_offset;
+
+	/* Diag port dl configuration */
+	dc->port[PORT_DIAG].dl_addr[CH_A] = (offset += dc->config_table.dl_mdm_len2);
+	dc->port[PORT_DIAG].dl_size[CH_A] = dc->config_table.dl_diag_len1 - buff_offset;
+	dc->port[PORT_DIAG].dl_addr[CH_B] = (offset += dc->config_table.dl_diag_len1);
+	dc->port[PORT_DIAG].dl_size[CH_B] = dc->config_table.dl_diag_len2 - buff_offset;
+
+	/* App1 port dl configuration */
+	dc->port[PORT_APP1].dl_addr[CH_A] = (offset += dc->config_table.dl_diag_len2);
+	dc->port[PORT_APP1].dl_size[CH_A] = dc->config_table.dl_app1_len - buff_offset;
+
+	/* App2 port dl configuration */
+	dc->port[PORT_APP2].dl_addr[CH_A] = (offset += dc->config_table.dl_app1_len);
+	dc->port[PORT_APP2].dl_size[CH_A] = dc->config_table.dl_app2_len - buff_offset;
+
+	/* Ctrl dl configuration */
+	dc->port[PORT_CTRL].dl_addr[CH_A] = (offset += dc->config_table.dl_app2_len);
+	dc->port[PORT_CTRL].dl_size[CH_A] = dc->config_table.dl_ctrl_len - buff_offset;
+
+
+	/* Modem Port ul configuration */
+	dc->port[PORT_MDM].ul_addr[CH_A] = (offset = dc->base_addr + dc->config_table.ul_start);
+	dc->port[PORT_MDM].ul_size[CH_A] = dc->config_table.ul_mdm_len1 - buff_offset;
+	dc->port[PORT_MDM].ul_addr[CH_B] = (offset += dc->config_table.ul_mdm_len1);
+	dc->port[PORT_MDM].ul_size[CH_B] = dc->config_table.ul_mdm_len2 - buff_offset;
+
+	/* Diag port ul configuration */
+	dc->port[PORT_DIAG].ul_addr[CH_A] = (offset += dc->config_table.ul_mdm_len2);
+	dc->port[PORT_DIAG].ul_size[CH_A] = dc->config_table.ul_diag_len - buff_offset;
+
+	/* App1 port ul configuration */
+	dc->port[PORT_APP1].ul_addr[CH_A] = (offset += dc->config_table.ul_diag_len);
+	dc->port[PORT_APP1].ul_size[CH_A] = dc->config_table.ul_app1_len - buff_offset;
+
+	/* App2 port ul configuration */
+	dc->port[PORT_APP2].ul_addr[CH_A] = (offset += dc->config_table.ul_app1_len);
+	dc->port[PORT_APP2].ul_size[CH_A] = dc->config_table.ul_app2_len - buff_offset;
+
+	/* Ctrl ul configuration */
+	dc->port[PORT_CTRL].ul_addr[CH_A] = (offset += dc->config_table.ul_app2_len);
+	dc->port[PORT_CTRL].ul_size[CH_A] = dc->config_table.ul_ctrl_len - buff_offset;
+	offset = dc->config_table.ul_start;
+}
+
+/* Dump config table under initalization phase */
+#ifdef NOZOMI_DEBUG
+static void dump_table(dc_t *dc) {
+	D3("signature: 0x%08X", dc->config_table.signature);
+	D3("version: 0x%04X", dc->config_table.version);
+	D3("product_information: 0x%04X", dc->config_table.product_information);
+	D3("toggle enabled: %d", dc->config_table.toggle.enabled);
+	D3("toggle up_mdm: %d", dc->config_table.toggle.mdm_ul);
+	D3("toggle dl_mdm: %d", dc->config_table.toggle.mdm_dl);
+	D3("toggle dl_dbg: %d", dc->config_table.toggle.diag_dl);
+
+	D3("dl_start: 0x%04X", dc->config_table.dl_start);
+	D3("dl_mdm_len0: 0x%04X, %d", dc->config_table.dl_mdm_len1, dc->config_table.dl_mdm_len1);
+	D3("dl_mdm_len1: 0x%04X, %d", dc->config_table.dl_mdm_len2, dc->config_table.dl_mdm_len2);
+	D3("dl_diag_len0: 0x%04X, %d", dc->config_table.dl_diag_len1, dc->config_table.dl_diag_len1);
+	D3("dl_diag_len1: 0x%04X, %d", dc->config_table.dl_diag_len2, dc->config_table.dl_diag_len2);
+	D3("dl_app1_len: 0x%04X, %d", dc->config_table.dl_app1_len, dc->config_table.dl_app1_len);
+	D3("dl_app2_len: 0x%04X, %d", dc->config_table.dl_app2_len, dc->config_table.dl_app2_len);
+	D3("dl_ctrl_len: 0x%04X, %d", dc->config_table.dl_ctrl_len, dc->config_table.dl_ctrl_len);
+	D3("ul_start: 0x%04X, %d", dc->config_table.ul_start, dc->config_table.ul_start);
+	D3("ul_mdm_len[0]: 0x%04X, %d", dc->config_table.ul_mdm_len1, dc->config_table.ul_mdm_len1);
+	D3("ul_mdm_len[1]: 0x%04X, %d", dc->config_table.ul_mdm_len2, dc->config_table.ul_mdm_len2);
+	D3("ul_diag_len: 0x%04X, %d", dc->config_table.ul_diag_len, dc->config_table.ul_diag_len);
+	D3("ul_app1_len: 0x%04X, %d", dc->config_table.ul_app1_len, dc->config_table.ul_app1_len);
+	D3("ul_app2_len: 0x%04X, %d", dc->config_table.ul_app2_len, dc->config_table.ul_app2_len);
+	D3("ul_ctrl_len: 0x%04X, %d", dc->config_table.ul_ctrl_len, dc->config_table.ul_ctrl_len);
+}
+#endif
+
+/* Read configuration table from card under intalization phase */
+/* Returns 1 if ok, else 0 */
+static int nozomi_read_config_table(dc_t *dc) {
+
+	if (cards_found > 0 && cards_found == cards_initialized) {
+		return 1;
+	}
+
+	GET_MEM( &dc->config_table, dc->base_addr + 0, sizeof(config_table_t));
+
+	/* D1( "0x%08X == 0x%08X ", dc->config_table.signature, CONFIG_MAGIC); */
+
+	if( dc->config_table.signature != CONFIG_MAGIC ) {
+		ERR("ConfigTable Bad! 0x%08X != 0x%08X", dc->config_table.signature, CONFIG_MAGIC);
+		return 0;
+	}
+
+	if( (dc->config_table.version == 0) || (dc->config_table.toggle.enabled == TOGGLE_VALID) ) {
+		int i;
+		INFO( "Second phase, configuring card");
+
+		setup_memory(dc);
+
+		dc->port[PORT_MDM].toggle_ul = dc->config_table.toggle.mdm_ul;
+		dc->port[PORT_MDM].toggle_dl = dc->config_table.toggle.mdm_dl;
+		dc->port[PORT_DIAG].toggle_dl = dc->config_table.toggle.diag_dl;
+		D1( "toggle ports: MDM UL:%d MDM DL:%d, DIAG DL:%d",
+			dc->port[PORT_MDM].toggle_ul,
+			dc->port[PORT_MDM].toggle_dl,
+			dc->port[PORT_DIAG].toggle_dl);
+
+#ifdef NOZOMI_DEBUG
+		dump_table(dc);
+#endif
+		for (i=PORT_MDM; i< MAX_PORT;i++) {
+			dc->port[i].fifo_ul = kfifo_alloc( FIFO_BUFFER_SIZE_UL, GFP_ATOMIC , NULL);
+			memset( &dc->port[i].ctrl_dl, 0, sizeof (ctrl_dl_t));
+			memset( &dc->port[i].ctrl_ul, 0, sizeof (ctrl_ul_t));
+		}
+
+		/* Enable control channel */
+		SET_IER( CTRL_DL, CTRL_DL );
+
+		INFO("Initialization OK!");
+		cards_initialized++;
+		return 1;
+	}
+
+	if( (dc->config_table.version > 0) && (dc->config_table.toggle.enabled != TOGGLE_VALID ) ) {
+		u32 offset = 0;
+		INFO( "First phase: pushing upload buffers, clearing download");
+
+		INFO("Version of card: %d", dc->config_table.version);
+
+		/* Here we should disable all I/O over F32. */
+		setup_memory(dc);
+
+		/* We should send ALL channel pair tokens back along with reset token */
+
+		/* push upload modem buffers */
+		SET_MEM( dc->port[PORT_MDM].ul_addr[CH_A], &offset, 4);
+		SET_MEM( dc->port[PORT_MDM].ul_addr[CH_B], &offset, 4);
+
+		SET_FCR( MDM_UL | DIAG_DL | MDM_DL );
+
+		D1( "First phase done");
+	}
+
+	return 1;
+}
+
+/* Enable uplink interrupts  */
+static void enable_transmit_ul( port_type_t port , dc_t *dc ) {
+
+	switch( port ) {
+		case PORT_MDM:  SET_IER( MDM_UL , MDM_UL  ); break;
+		case PORT_DIAG: SET_IER( DIAG_UL, DIAG_UL ); break;
+		case PORT_APP1: SET_IER( APP1_UL, APP1_UL ); break;
+		case PORT_APP2: SET_IER( APP2_UL, APP2_UL ); break;
+		case PORT_CTRL: SET_IER( CTRL_UL, CTRL_UL ); break;
+	default:
+		ERR("Called with wrong port?");
+		break;
+	};
+}
+
+/* Disable uplink interrupts  */
+static void disable_transmit_ul( port_type_t port , dc_t *dc ) {
+
+	switch( port ) {
+		case PORT_MDM:  SET_IER( 0 ,MDM_UL  ); break;
+		case PORT_DIAG: SET_IER( 0, DIAG_UL ); break;
+		case PORT_APP1: SET_IER( 0, APP1_UL ); break;
+		case PORT_APP2: SET_IER( 0, APP2_UL ); break;
+		case PORT_CTRL: SET_IER( 0, CTRL_UL ); break;
+	default:
+		ERR("Called with wrong port?");
+		break;
+	};
+}
+
+/* Enable downlink interrupts */
+static void enable_transmit_dl( port_type_t port , dc_t *dc ) {
+
+	switch( port ) {
+		case PORT_MDM:  SET_IER( MDM_DL , MDM_DL  ); break;
+		case PORT_DIAG: SET_IER( DIAG_DL, DIAG_DL ); break;
+		case PORT_APP1: SET_IER( APP1_DL, APP1_DL ); break;
+		case PORT_APP2: SET_IER( APP2_DL, APP2_DL ); break;
+		case PORT_CTRL: SET_IER( CTRL_DL, CTRL_DL ); break;
+	default:
+		ERR("Called with wrong port?");
+		break;
+	};
+}
+
+/* Disable downlink interrupts */
+static void disable_transmit_dl( port_type_t port , dc_t *dc ) {
+
+	switch( port ) {
+		case PORT_MDM:  SET_IER( 0 ,MDM_DL  ); break;
+		case PORT_DIAG: SET_IER( 0, DIAG_DL ); break;
+		case PORT_APP1: SET_IER( 0, APP1_DL ); break;
+		case PORT_APP2: SET_IER( 0, APP2_DL ); break;
+		case PORT_CTRL: SET_IER( 0, CTRL_DL ); break;
+	default:
+		ERR("Called with wrong port?");
+		break;
+	};
+}
+
+/* Return 1 - send buffer to card and ack. */
+/* Return 0 - don't ack, don't send buffer to card. */
+int send_data( port_type_t index, dc_t *dc ) {
+	u32	 size				 = 0;
+	port_t *port			 = &dc->port[index];
+	u8	 toggle				 = port->toggle_ul;
+	u32	 addr				 = port->ul_addr[toggle];
+	u32	 ul_size			 = port->ul_size[toggle];
+	struct tty_struct *tty   = port->tty;
+
+	if (index >= NTTY_TTY_MINORS) {
+		ERR("Called with wrong index?");
+		return 0;
+	}
+
+	/* Get data from tty and place in buf for now */
+	size = __kfifo_get( port->fifo_ul,	dc->send_buf, ul_size < SEND_BUF_MAX ? ul_size : SEND_BUF_MAX );
+
+	if (size == 0) {
+		D4("No more data to send, disable link:");
+		return 0;
+	}
+
+	port->tx_data += size;
+
+	/* DUMP(buf, size); */
+
+	/* Write length + data */
+	SET_MEM( addr, &size, 4 );
+	SET_MEM_BUF( addr + 4, dc->send_buf, size);
+
+	if (port->tty) {
+		if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) && tty->ldisc.write_wakeup) {
+			tty->ldisc.write_wakeup(tty);
+		}
+		wake_up_interruptible(&tty->write_wait);
+	}
+
+	return 1;
+}
+
+/* If all data has been read, return 1, else 0 */
+static int receive_data( port_type_t index, dc_t* dc ) {
+	u8 buf[RECEIVE_BUF_MAX]			 = {0};
+	int				size;
+	u32				offset		= 4;
+	port_t			   *port		 = &dc->port[index];
+	u8				 toggle		= port->toggle_dl;
+	u32				addr		  = port->dl_addr[toggle];
+	struct tty_struct *tty		   = port->tty;
+	int				i;
+
+	if ( !tty ) {
+		D1("tty not open for port: %d?", index);
+		return 1;
+	}
+
+	if (test_bit(TTY_DONT_FLIP, &tty->flags)) {
+		D6("TTY_DONT_FLIP set!! %d", index);
+		/* Here we disable interrupt for that port and schedule */
+/* 		task. Task wakes up a little bit later and enables interrupt.. */
+		port->tty_dont_flip = 1;
+		disable_transmit_dl(index, dc);
+#ifdef KERNEL_2_4
+		schedule_task(&dc->tty_flip_queue);
+#endif
+#ifdef KERNEL_2_6
+		if (!queue_work(dc->tty_flip_wq, &dc->tty_flip_wq_struct)) {
+			ERR("Call to queue_work() failed.");
+		}
+#endif
+		return 0;
+	}
+
+	GET_MEM( &size, addr, 4 );
+	/*  D1( "%d bytes port: %d", size, index); */
+
+	if ( test_bit( TTY_THROTTLED, & tty->flags) ) {
+		D1("No room in tty, don't read data, don't ack interrupt, disable interrupt");
+
+		/* disable interrupt in downlink... */
+		disable_transmit_dl(index, dc);
+		return 0;
+	}
+
+	if (size == 0) {
+		ERR("size == 0?");
+		return 1;
+	}
+
+	while( size > 0 ) {
+		GET_MEM_BUF(buf, addr + offset, 4);
+
+		i = 0;
+		while (i < 4 && size > 0) {
+			if (tty->flip.count >= TTY_FLIPBUF_SIZE) {
+				tty_flip_buffer_push(tty);
+			}
+			tty_insert_flip_char(tty, buf[i], TTY_NORMAL);
+			port->rx_data++;
+			i++;
+			size--;
+		}
+
+		offset += 4;
+	}
+
+	tty_flip_buffer_push(tty);
+
+	return 1;
+}
+
+/* Debug for interrupts */
+#ifdef NOZOMI_DEBUG
+static char* interrupt2str( u16 interrupt) {
+	static char buf[TMP_BUF_MAX];
+	char *p = buf;
+
+	interrupt & MDM_DL1 ? p += snprintf(p, TMP_BUF_MAX, "MDM_DL1 "):0;
+	interrupt & MDM_DL2 ? p += snprintf(p, TMP_BUF_MAX, "MDM_DL2 "):0;
+
+	interrupt & MDM_UL1 ? p += snprintf(p, TMP_BUF_MAX, "MDM_UL1 "):0;
+	interrupt & MDM_UL2 ? p += snprintf(p, TMP_BUF_MAX, "MDM_UL2 "):0;
+
+	interrupt & DIAG_DL1 ? p += snprintf(p, TMP_BUF_MAX, "DIAG_DL1 "):0;
+	interrupt & DIAG_DL2 ? p += snprintf(p, TMP_BUF_MAX, "DIAG_DL2 "):0;
+
+	interrupt & DIAG_UL ? p += snprintf(p, TMP_BUF_MAX, "DIAG_UL "):0;
+
+	interrupt & APP1_DL ? p += snprintf(p, TMP_BUF_MAX, "APP1_DL "):0;
+	interrupt & APP2_DL ? p += snprintf(p, TMP_BUF_MAX, "APP2_DL "):0;
+
+	interrupt & APP1_UL ? p += snprintf(p, TMP_BUF_MAX, "APP1_UL "):0;
+	interrupt & APP2_UL ? p += snprintf(p, TMP_BUF_MAX, "APP2_UL "):0;
+
+	interrupt & CTRL_DL ? p += snprintf(p, TMP_BUF_MAX, "CTRL_DL "):0;
+	interrupt & CTRL_UL ? p += snprintf(p, TMP_BUF_MAX, "CTRL_UL "):0;
+
+	interrupt & RESET ? p += snprintf(p, TMP_BUF_MAX, "RESET "):0;
+
+	return buf;
+}
+#endif
+
+/* Receive flow control */
+/* Return 1 - If ok, else 0 */
+static int receive_flow_control( dc_t *dc, irq_t *m) {
+	port_type_t port = PORT_MDM;
+	ctrl_dl_t ctrl_dl;
+	ctrl_dl_t old_ctrl;
+	u16 enable_ier = 0;
+
+	GET_MEM( &ctrl_dl, dc->port[PORT_CTRL].dl_addr[CH_A], 2);
+
+	switch( ctrl_dl.port ) {
+	case CTRL_CMD:
+		D1( "The Base Band sends this value as a response to a request for IMSI detach sent"
+		  " over the control channel uplink (see section 7.6.1).");
+		break;
+	case CTRL_MDM:  port = PORT_MDM;  enable_ier = MDM_DL;  break;
+	case CTRL_DIAG: port = PORT_DIAG; enable_ier = DIAG_DL; break;
+	case CTRL_APP1: port = PORT_APP1; enable_ier = APP1_DL; break;
+	case CTRL_APP2: port = PORT_APP2; enable_ier = APP2_DL; break;
+	default:
+		ERR("ERROR: flow control received for non-existing port");
+		return 0;
+	};
+
+	D1( "0x%04X->0x%04X", *((u16*) &dc->port[port].ctrl_dl), *((u16*)&ctrl_dl));
+
+	old_ctrl = dc->port[port].ctrl_dl;
+	dc->port[port].ctrl_dl = ctrl_dl;
+
+	if ( old_ctrl.CTS == 1 && ctrl_dl.CTS == 0 ) {
+		D1( "Disable interrupt (0x%04X) on port: %d", enable_ier, port);
+		disable_transmit_ul(port, dc);
+
+	} else if ( old_ctrl.CTS == 0 && ctrl_dl.CTS == 1 ) {
+
+		if ( __kfifo_len(dc->port[port].fifo_ul) ) {
+			D1( "Enable interrupt (0x%04X) on port: %d", enable_ier, port);
+			D1( "Data in buffer [%d], enable transmit! ", __kfifo_len(dc->port[port].fifo_ul) );
+			enable_transmit_ul( port, dc );
+		} else {
+			D1( "No data in buffer...");
+		}
+	}
+
+	if(*(u16*)&old_ctrl == *(u16*)&ctrl_dl)
+	{
+		D1( " No change in mctrl");
+		return 1;
+	}
+	/* Update statistics */
+	if(old_ctrl.CTS != ctrl_dl.CTS) {
+		dc->port[port].tty_icount.cts++;
+	}
+	if(old_ctrl.DSR != ctrl_dl.DSR) {
+		dc->port[port].tty_icount.dsr++;
+	}
+	if(old_ctrl.RI != ctrl_dl.RI) {
+		dc->port[port].tty_icount.rng++;
+	}
+	if(old_ctrl.DCD != ctrl_dl.DCD) {
+		dc->port[port].tty_icount.dcd++;
+	}
+	D1("port: %d DCD(%d), CTS(%d), RI(%d), DSR(%d)",
+	  port,
+	  dc->port[port].tty_icount.dcd, dc->port[port].tty_icount.cts,
+	  dc->port[port].tty_icount.rng, dc->port[port].tty_icount.dsr);
+
+	return 1;
+}
+
+/* TODO:  */
+/* - return ctrl_port_t */
+static u8 port2ctrl(port_type_t port) {
+	switch( port ) {
+	case PORT_MDM:
+		return CTRL_MDM;
+	case PORT_DIAG:
+		return CTRL_DIAG;
+	case PORT_APP1:
+		return CTRL_APP1;
+	case PORT_APP2:
+		return CTRL_APP2;
+	default:
+		ERR("ERROR: send flow control received for non-existing port");
+		return -1;
+	};
+	return -1;
+}
+
+/* Send flow control, can only update one channel at a time */
+/* Return 0 - If we have updated all flow control */
+/* Return 1 - If we need to update more flow control, ack current enable more */
+static int send_flow_control( dc_t *dc ) {
+	u32 i, more_flow_control_to_be_updated = 0;
+	u16* ctrl;
+
+	for( i=PORT_MDM; i<MAX_PORT ; i++ ) {
+		if( dc->port[i].update_flow_control ) {
+			if ( more_flow_control_to_be_updated ) {
+				/* We have more flow control to be updated */
+				return 1;
+			}
+			dc->port[i].ctrl_ul.port = port2ctrl(i);
+			ctrl = (u16*) &dc->port[i].ctrl_ul;
+			/* D1( "sending flow control 0x%04X for port %d, %d", (u16) *ctrl, i, dc->port[i].ctrl_ul.port ); */
+			SET_MEM( dc->port[PORT_CTRL].ul_addr[0], (u32*) ctrl, 2 );
+			dc->port[i].update_flow_control = 0;
+			more_flow_control_to_be_updated = 1;
+		}
+	}
+	return 0;
+}
+
+/* Handle donlink data, ports that are handled are modem and diagnostics */
+/* Return 1 - ok */
+/* Return 0 - toggle fields are out of sync */
+static int handle_data_dl(dc_t *dc, irq_t *m, port_type_t port, u8 *toggle, u16 mask1, u16 mask2) {
+
+	if ( *toggle == 0 && m->read_iir & mask1 ) {
+		if (receive_data( port, dc )) {
+			SET_FCR( mask1 );
+			*toggle = !(*toggle);
+		}
+
+		if ( m->read_iir & mask2 ) {
+			if (receive_data( port, dc )) {
+				SET_FCR( mask2 );
+				*toggle = !(*toggle);
+			}
+		}
+	} else if ( *toggle == 1 && m->read_iir & mask2 ) {
+		if (receive_data( port, dc )) {
+			SET_FCR( mask2 );
+			*toggle = !(*toggle);
+		}
+
+		if ( m->read_iir & mask1 ) {
+			if (receive_data( port, dc )) {
+				SET_FCR( mask1 );
+				*toggle = !(*toggle);
+			}
+		}
+	} else {
+		ERR("port out of sync!, toggle:%d", *toggle);
+		return 0;
+	}
+	return 1;
+}
+
+/* Handle uplink data, this is currently for the modem port */
+/* Return 1 - ok */
+/* Return 0 - toggle field are out of sync */
+static int handle_data_ul(dc_t *dc, irq_t *m, port_type_t port) {
+
+	u8 *toggle = &(dc->port[port].toggle_ul);
+
+	if ( *toggle==0 && m->read_iir & MDM_UL1 ) {
+		SET_IER( 0, MDM_UL );
+		if (send_data(port, dc)) {
+			SET_FCR( MDM_UL1 );
+			SET_IER( MDM_UL, MDM_UL);
+			*toggle = !*toggle;
+		}
+
+		if ( m->read_iir & MDM_UL2 ) {
+			SET_IER( 0, MDM_UL );
+			if (send_data(port, dc)) {
+				SET_FCR( MDM_UL2 );
+				SET_IER( MDM_UL, MDM_UL);
+				*toggle = !*toggle;
+			}
+		}
+
+	} else if ( *toggle==1 && m->read_iir & MDM_UL2 ) {
+		SET_IER( 0, MDM_UL );
+		if (send_data(port, dc)) {
+			SET_FCR( MDM_UL2 );
+			SET_IER( MDM_UL, MDM_UL);
+			*toggle = !*toggle;
+		}
+
+		if ( m->read_iir & MDM_UL1 ) {
+			SET_IER( 0, MDM_UL );
+			if (send_data(port, dc)) {
+				SET_FCR( MDM_UL1 );
+				SET_IER( MDM_UL, MDM_UL);
+				*toggle = !*toggle;
+			}
+		}
+	} else {
+		SET_FCR( m->read_iir & MDM_UL );
+		ERR("port out of sync!");
+		return 0;
+	}
+	return 1;
+}
+
+static irqreturn_t interrupt_handler(int irq, void *dev_id, struct pt_regs *regs) {
+	dc_t *dc = NULL;
+	irq_t* m = &my_irq;
+
+	if (my_dev && my_dev->pdev != dev_id) {
+		return IRQ_NONE;
+	}
+
+	if ( !(dc = get_dc_by_pdev(dev_id)) )  {
+		ERR("Could not find device context from pci_dev: %d", (u32) dev_id);
+		return IRQ_NONE;
+	}
+
+	GET_IIR( m->read_iir );
+
+	/* Just handle interrupt enabled in IER (by masking with dc->ier_last_written) */
+	m->read_iir &= dc->ier_last_written;
+
+	if (m->read_iir == 0) {
+		return IRQ_NONE;
+	}
+
+	if (dc == NULL ) {
+		ERR("ERROR!!");
+		return IRQ_NONE;
+	}
+
+	spin_lock(&dc->spin_mutex);
+
+	D4( "%s irq:0x%04X, prev:0x%04X", interrupt2str(m->read_iir), m->read_iir, dc->ier_last_written);
+
+	if ( m->read_iir & RESET) {
+		if( !nozomi_read_config_table(dc) ) {
+			SET_IER( 0, 0xFFFF);
+			ERR("ERR: Could not read status from card, we should disable interface");
+		} else {
+			SET_FCR( RESET );
+		}
+		goto exit_handler;  /* No more useful info if this was the reset interrupt. */
+	}
+	if ( m->read_iir & CTRL_UL ) {
+		D1( "CTRL_UL");
+		SET_IER( 0, CTRL_UL );
+		if ( send_flow_control(dc) ) {
+			SET_FCR( CTRL_UL );
+			SET_IER( CTRL_UL, CTRL_UL );
+		}
+	}
+	if ( m->read_iir & CTRL_DL ) {
+		receive_flow_control(dc, m);
+		SET_FCR( CTRL_DL );
+	}
+	if ( m->read_iir & MDM_DL ) {
+		if ( !(handle_data_dl(dc, m, PORT_MDM, &(dc->port[PORT_MDM].toggle_dl), MDM_DL1, MDM_DL2)) ) {
+			ERR("MDM_DL out of sync!");
+			goto exit_handler;
+		}
+	}
+	if ( m->read_iir & MDM_UL ) {
+		if ( !handle_data_ul(dc, m, PORT_MDM ) ) {
+			ERR("MDM_UL out of sync!");
+			goto exit_handler;
+		}
+	}
+	if ( m->read_iir & DIAG_DL ) {
+		if ( !(handle_data_dl(dc, m, PORT_DIAG, &(dc->port[PORT_DIAG].toggle_dl), DIAG_DL1, DIAG_DL2)) ) {
+			ERR("DIAG_DL out of sync!");
+			goto exit_handler;
+		}
+	}
+	if ( m->read_iir & DIAG_UL ) {
+		SET_IER( 0, DIAG_UL );
+		if( send_data( PORT_DIAG, dc ) ) {
+			SET_FCR( DIAG_UL );
+			SET_IER( DIAG_UL, DIAG_UL );
+		}
+	}
+	if ( m->read_iir & APP1_DL )  {
+		if (receive_data( PORT_APP1, dc ) ) {
+			SET_FCR( APP1_DL );
+		}
+	}
+	if ( m->read_iir & APP1_UL )  {
+		SET_IER( 0, APP1_UL );
+		if(send_data( PORT_APP1, dc )) {
+			SET_FCR( APP1_UL );
+			SET_IER( APP1_UL, APP1_UL );
+		}
+	}
+	if ( m->read_iir & APP2_DL ) {
+		if (receive_data( PORT_APP2, dc )) {
+			SET_FCR( APP2_DL );
+		}
+	}
+	if ( m->read_iir & APP2_UL ) {
+		SET_IER( 0, APP2_UL );
+		if(send_data( PORT_APP2, dc )) {
+			SET_FCR( APP2_UL );
+			SET_IER( APP2_UL, APP2_UL );
+		}
+	}
+
+  exit_handler:
+	spin_unlock(&dc->spin_mutex);
+	return IRQ_HANDLED;
+}
+
+/* Request a shared IRQ from system */
+static int nozomi_setup_interrupt(struct pci_dev *pdev) {
+
+	int rval = 0;
+
+	if ( (rval = request_irq( pdev->irq, &interrupt_handler, SA_SHIRQ, NOZOMI_NAME, pdev )) ) {
+		ERR("Cannot open because IRQ %d is already in use.", pdev->irq );
+		return rval;
+	}
+
+	return rval;
+}
+
+static void nozomi_get_card_type(dc_t *dc) {
+	u32 i, size=0;
+	for(i=0;i<6;i++) {
+		size += pci_resource_len(dc->pdev, i);
+	}
+
+	/* Assume card type F32_8 if no match */
+	dc->card_type = size == 2048 ? F32_2 : F32_8;
+
+	INFO("Card type is: %d", dc->card_type );
+}
+
+void nozomi_setup_private_data(dc_t *dc) {
+	u32 offset = dc->base_addr + dc->card_type/2;
+	int i;
+
+	dc->REG_FCR = offset + R_FCR;
+	dc->REG_IIR = offset + R_IIR;
+	dc->REG_IER = offset + R_IER;
+	dc->ier_last_written = 0;
+	dc->closing = 0;
+
+	dc->port[PORT_MDM ].token_dl = MDM_DL;
+	dc->port[PORT_DIAG].token_dl = DIAG_DL;
+	dc->port[PORT_APP1].token_dl = APP1_DL;
+	dc->port[PORT_APP2].token_dl = APP2_DL;
+
+	for(i=PORT_MDM;i<MAX_PORT;i++) {
+		dc->port[i].rx_data = dc->port[i].tx_data = 0;
+		dc->port[i].tty_dont_flip = 0;
+	}
+}
+
+
+static void tty_flip_queue_function(void *tmp_dc) {
+	dc_t *dc = (dc_t*) tmp_dc;
+	int i;
+
+	/* Enable interrupt for that port */
+	for(i=0;i<MAX_PORT;i++) {
+		if (dc->port[i].tty_dont_flip) {
+			D6("Enable for port: %d", i);
+			dc->port[i].tty_dont_flip = 0;
+			enable_transmit_dl(dc->port[i].tty_index, dc);
+		}
+	}
+}
+
+static int read_proc_card_type(char *buf, char **start, off_t offset, int len) {
+	dc_t *dc = get_dc_by_index(0);
+	len = 0;
+
+	len += sprintf(buf+len,"%d\n", dc->card_type);
+	return len;
+}
+
+static int read_proc_open_ttys(char *buf, char **start, off_t offset, int len) {
+	dc_t *dc = get_dc_by_index(0);
+	len = 0;
+
+	len += sprintf(buf+len,"%d\n", dc->open_ttys);
+	return len;
+}
+
+static int read_proc_version(char *buf, char **start, off_t offset, int len) {
+	len = 0;
+
+	len += sprintf(buf+len, "%s\n", VERSION_STRING);
+	return len;
+}
+
+static int read_proc_rtx(char *buf, char **start, off_t offset, int len) {
+	dc_t *dc = get_dc_by_index(0);
+	int i;
+
+	len = 0;
+
+
+	for(i=PORT_MDM;i<MAX_PORT;i++) {
+		len += sprintf(buf+len,"noz%d rx: %d, tx: %d\n", i, dc->port[i].rx_data, dc->port[i].tx_data);
+	}
+	return len;
+}
+
+static void make_proc_dirs(void) {
+	dc_t *dc = get_dc_by_index(0);
+
+	dc->proc_entry = proc_mkdir("nozomi", &proc_root);
+
+	/* Register the read_proc */
+	if ( !create_proc_info_entry("card_type",0,dc->proc_entry,read_proc_card_type) ) {
+		ERR("ERROR: failed to register read_procmem");
+	}
+	if ( !create_proc_info_entry("open_ttys",0,dc->proc_entry,read_proc_open_ttys) ) {
+		ERR("ERROR: failed to register read_procmem");
+	}
+	if ( !create_proc_info_entry("rtx",0,dc->proc_entry,read_proc_rtx) ) {
+		ERR("ERROR: failed to register read_procmem");
+	}
+	if ( !create_proc_info_entry("version",0,dc->proc_entry,read_proc_version) ) {
+		ERR("ERROR: failed to register read_procmem");
+	}
+}
+
+static void remove_proc_dirs(void) {
+	dc_t *dc = get_dc_by_index(0);
+
+	remove_proc_entry("card_type", dc->proc_entry);
+	remove_proc_entry("open_ttys", dc->proc_entry);
+	remove_proc_entry("rtx", dc->proc_entry);
+	remove_proc_entry("version", dc->proc_entry);
+	remove_proc_entry("nozomi", &proc_root);
+}
+
+static void send_reset_token(dc_t *dc) {
+
+	ctrl_ul_t ctrl;
+
+	/* Send 0x0001, command card to resend the reset token. */
+	/* This is to get the reset when the module is reloaded. */
+	ctrl.port = 0x00; ctrl.reserved = 0; ctrl.RTS=0; ctrl.DTR=1;
+	D1( "sending flow control 0x%04X",  * ((u16*) &ctrl) );
+
+
+	/*SET_MEM( dc->port[PORT_CTRL].ul_addr[0], (u32*) &ctrl, 2 );*/
+	/* hack alert :D (fixed address determined experimentally) */
+	SET_MEM( dc->base_addr + 0x000002FC, (u32*) &ctrl, 2 );
+	SET_FCR( CTRL_UL );	 /* push the token to the card. */
+	D1( "sent flow control 0x%04X",  * ((u16*) &ctrl) );
+}
+
+/* Allocate memory for one device */
+static int __devinit nozomi_card_init(struct pci_dev *pdev,	const struct pci_device_id *ent) {
+	int ret = -EIO;
+	dc_t *dc=NULL;
+
+	cards_found++;
+	INFO("Init, cards_found: %d", cards_found);
+
+	if (!(my_dev = kmalloc(sizeof(dc_t), GFP_KERNEL))) {
+		D1( "Could not allocate memory");
+		return -EIO;
+	}
+
+	memset(my_dev, 0, sizeof( dc_t ));
+
+	if (cards_found > 1) {
+		ERR("This driver only supports 1 device");
+		return -ENODEV;
+	}
+
+	my_dev->pdev = pdev;
+	dc = my_dev;
+
+	/* Find out what card type it is */
+	nozomi_get_card_type(dc);
+
+	if (pci_enable_device(dc->pdev)) {
+		ERR("Not possible to enable PCI Device");
+		return -ENODEV;
+	}
+
+	if ( (dc->base_addr = pci_resource_start(dc->pdev, 0)) == 0x0000) {
+		ERR("No I/O-Address for card detected");
+		ret = -ENODEV;
+		goto err_disable_device;
+	}
+
+	if (!(dc->base_addr = (u32) ioremap(dc->base_addr, dc->card_type))) {
+		ERR("No I/O-Address for card detected");
+		ret = -ENODEV;
+		goto err_disable_device;
+	}
+
+	dc->open_ttys=0;
+
+	nozomi_setup_private_data(dc);
+
+	if (pci_request_regions(dc->pdev, NOZOMI_NAME)) {
+		ERR("I/O address 0x%04x already in use",
+			 (int) /* nozomi_private.io_addr */ 0);
+		ret = -EIO;
+		goto err_disable_regions;
+	}
+
+	if ( !(dc->send_buf = kmalloc(SEND_BUF_MAX, GFP_KERNEL))) {
+		ERR("Could not allocate send buffer?");
+		goto err_disable_regions;
+	}
+
+	/* Disable all interrupts */
+	SET_IER( 0 , 0xFFFF );
+
+	/* Setup interrupt handler */
+	if (nozomi_setup_interrupt(dc->pdev)) {
+		ret = -EIO;
+		goto err_disable_regions;
+	}
+
+	D1( "base_addr: 0x%08X", dc->base_addr);
+
+#ifdef KERNEL_2_4
+	dc->tty_flip_queue.list.next = NULL;
+	dc->tty_flip_queue.list.prev = NULL;
+	dc->tty_flip_queue.sync	  = 0;
+	dc->tty_flip_queue.data	  = dc;
+	dc->tty_flip_queue.routine   = tty_flip_queue_function;
+#endif
+#ifdef KERNEL_2_6
+	if ( !(dc->tty_flip_wq = create_singlethread_workqueue(NOZOMI_NAME )) ) {
+		ERR("Could not create workqueue?");
+		BUG_ON(!dc->tty_flip_wq);
+		return -ENOMEM;
+	}
+	INIT_WORK( &dc->tty_flip_wq_struct, tty_flip_queue_function, (void*) dc);
+#endif
+
+	spin_lock_init(&dc->spin_mutex);
+
+	make_proc_dirs();
+
+	ntty_tty_init(dc);
+#if 0
+	if (!nozomi_read_config_table(dc)) {
+		ERR("Could not read config table (pass 1)");
+		return -ENODEV;
+	}
+	if (!nozomi_read_config_table(dc)) {
+		ERR("Could not read config table (pass 2)");
+		return -ENODEV;
+	}
+#endif
+	send_reset_token(dc);
+
+	/* Enable  RESET interrupt. */
+	SET_IER( RESET, 0xFFFF );
+
+	return 0;
+
+err_disable_regions:
+	pci_release_regions(pdev);
+	iounmap((void *)dc->base_addr );
+	dc->base_addr = 0;
+
+err_disable_device:
+	pci_disable_device(pdev);
+	if(my_dev) {
+		kfree( my_dev );
+	}
+	return ret;
+}
+
+static void tty_do_close(dc_t *dc, port_t *port) {
+
+	down(&port->tty_sem);
+
+	if ( !port->tty_open_count ) {
+		goto exit;
+	}
+
+	dc->open_ttys--;
+	port->tty_open_count--;
+#ifdef KERNEL_2_4
+	MOD_DEC_USE_COUNT;
+#endif
+
+	if ( port->tty_open_count == 0) {
+		D1("close: %d", port->token_dl );
+		SET_IER( 0,  port->token_dl );
+	}
+
+exit:
+	up(&port->tty_sem);
+}
+
+static void __exit tty_exit(void) {
+	int	 i;
+	dc_t   *dc = my_dev;
+
+	D1( " ");
+
+#ifdef KERNEL_2_6
+	for (i = 0; i < NTTY_TTY_MINORS; ++i)
+		tty_unregister_device(&dc->tty_driver, i);
+#endif
+
+	tty_unregister_driver(&dc->tty_driver);
+
+	for (i = 0; i < NTTY_TTY_MINORS; i++) {
+		while (dc->port[i].tty_open_count) {
+			tty_do_close(dc, &dc->port[i]);
+		}
+
+		dc->port[i].tty = NULL;
+	}
+}
+
+/* Deallocate memory for one device */
+static void __devexit nozomi_card_exit(struct pci_dev *pdev) {
+	int i;
+	dc_t *dc = get_dc_by_pdev(pdev);
+
+	/* Disable all interrupts */
+	SET_IER( 0, 0xFFFF);
+
+	/* Setup dc->reg addresses to we can use defines here */
+	nozomi_setup_private_data(dc);
+	send_reset_token(dc);
+
+	D1( "pci_release_regions");
+	pci_release_regions(pdev);
+
+	if(dc->base_addr)
+		iounmap((void *)dc->base_addr);
+
+	D1( "pci_disable_device");
+	pci_disable_device(pdev);
+
+	free_irq( pdev->irq, pdev );
+
+	for (i=PORT_MDM; i< MAX_PORT;i++) {
+		kfree ( dc->port[i].fifo_ul );
+	}
+
+	kfree( dc->send_buf );
+
+	tty_exit();
+
+	remove_proc_dirs();
+
+#ifdef KERNEL_2_6
+	destroy_workqueue(dc->tty_flip_wq);
+#endif
+
+	if (my_dev) {
+		kfree( my_dev );
+	}
+
+	cards_found--;
+	cards_initialized--;
+}
+
+static void set_rts(int index, int rts) {
+	dc_t *dc = get_dc_by_index(index);
+
+	dc->port[index].ctrl_ul.RTS = rts;
+	dc->port[index].update_flow_control = 1;
+	enable_transmit_ul(PORT_CTRL, dc);
+}
+
+static void set_dtr(int index, int dtr) {
+	dc_t *dc = get_dc_by_index(index);
+
+	D1("SETTING DTR index: %d, dtr: %d", index, dtr);
+
+	dc->port[index].ctrl_ul.DTR = dtr;
+	dc->port[index].update_flow_control = 1;
+	enable_transmit_ul(PORT_CTRL, dc);
+}
+
+
+/* ---------------------------------------------------------------------------------------------------
+   TTY code
+   ---------------------------------------------------------------------------------------------------*/
+
+
+/* Called when the userspace process opens the tty, /dev/noz*. */
+static int ntty_open(struct tty_struct *tty, struct file *file) {
+
+	s32 index = get_index(tty);
+	port_t *port = get_port_by_tty(tty);
+	dc_t *dc = get_dc_by_tty(tty);
+
+	CARD_CHECK(-ENODEV);
+
+	down(&port->tty_sem);
+
+	tty->low_latency  = 1;
+	tty->driver_data  = port;
+	port->tty		 = tty;
+	port->tty_index   = index;
+
+	port->tty_open_count++;
+	dc->open_ttys++;
+
+#ifdef KERNEL_2_4
+	MOD_INC_USE_COUNT;
+#endif
+
+	/* Enable interrupt downlink for channel */
+	if ( port->tty_open_count == 1) {
+		port->rx_data = port->tx_data = 0;
+		D1("open: %d", port->token_dl );
+		SET_IER( port->token_dl,  port->token_dl );
+	}
+
+	up(&port->tty_sem);
+
+	return 0;
+}
+
+/* Called when the userspace process close the tty, /dev/noz*. */
+static void ntty_close(struct tty_struct *tty, struct file *file) {
+	dc_t *dc;
+	CARD_CHECK();
+	dc = get_dc_by_tty(tty);
+	tty_do_close(dc, (port_t *) tty->driver_data);
+}
+
+/* called when the userspace process writes to the tty (/dev/noz*).  */
+/* Data is inserted into a fifo, which is then read and transfered to the modem. */
+#ifdef KERNEL_2_6
+static int ntty_write(struct tty_struct *tty, const unsigned char *buffer, int count) {
+#else
+static s32 ntty_write(struct tty_struct *tty, s32 from_user, const u8 *buffer, s32 count) {
+#endif
+	int				  rval = -EINVAL;
+	dc_t				*dc = get_dc_by_tty(tty);
+	port_t			  *port = (port_t *) tty->driver_data;
+
+	CARD_CHECK(rval);
+
+	/* D1( "WRITEx: %d, index = %d", count, index); */
+
+	if (! port) {
+		return -ENODEV;
+	}
+
+	down(&port->tty_sem);
+
+	if (! port->tty_open_count) {
+		D1( " ");
+		goto exit;
+	}
+
+#ifdef KERNEL_2_4
+	if (from_user) {
+		rval = __kfifo_put_user(port->fifo_ul, (unsigned char *) buffer, count);
+	} else {
+		rval = __kfifo_put(port->fifo_ul, (unsigned char *) buffer, count);
+	}
+#else
+	rval = __kfifo_put(port->fifo_ul, (unsigned char *) buffer, count);
+#endif
+
+	/* notify card */
+	if ( dc == NULL) {
+		D1( "No device context?");
+		goto exit;
+	}
+
+	// CTS is only valid on the modem channel
+	if ( port == &(dc->port[PORT_MDM]) ) {
+		if ( port->ctrl_dl.CTS ) {
+			D4( "Enable interrupt");
+			enable_transmit_ul(port->tty_index, dc );
+		} else {
+			ERR("CTS not active on modem port?");
+		}
+	} else {
+		enable_transmit_ul(port->tty_index, dc );
+	}
+
+exit:
+	up(&port->tty_sem);
+	return rval;
+}
+
+/* Calculate how much is left in device */
+/* This method is called by the upper tty layer. */
+/*   #according to sources N_TTY.c it expects a value >= 0 and does not check for negative values. */
+static int ntty_write_room(struct tty_struct *tty) {
+	port_t  *port = (port_t *) tty->driver_data;
+	int	  room = 0;
+/*	u32	  flags = 0; */
+/*	dc_t *dc = get_dc_by_tty(tty); */
+
+	CARD_CHECK(-ENODEV);
+
+	if (! port) {
+		return 0;
+	}
+
+	down(&port->tty_sem);
+
+	if (! port->tty_open_count) {
+		goto exit;
+	}
+
+	room = port->fifo_ul->size - __kfifo_len(port->fifo_ul);
+
+exit:
+	up(&port->tty_sem);
+	return room;
+}
+
+/* Sets termios flags, called by the tty layer. */
+static void ntty_set_termios(struct tty_struct *tty, struct termios *old_termios) {
+	unsigned int cflag;
+
+	CARD_CHECK();
+
+	cflag = tty->termios->c_cflag;
+
+	if (old_termios) {
+		if ((cflag == old_termios->c_cflag) &&
+			(RELEVANT_IFLAG(tty->termios->c_iflag) == RELEVANT_IFLAG(old_termios->c_iflag))) {
+			D1( " - nothing to change...");
+			goto exit_termios;
+		}
+	}
+
+	/* get the byte size */
+	switch (cflag & CSIZE) {
+		case CS5:
+			D1( " - data bits = 5");
+			break;
+		case CS6:
+			D1( " - data bits = 6");
+			break;
+		case CS7:
+			D1( " - data bits = 7");
+			break;
+		default:
+		case CS8:
+			D1( " - data bits = 8");
+			break;
+	}
+
+	/* determine the parity */
+	if (cflag & PARENB) {
+		if (cflag & PARODD) {
+			D1( " - parity = odd");
+		} else {
+			D1( " - parity = even");
+		}
+	} else {
+		D1( " - parity = none");
+	}
+
+	/* figure out the stop bits requested */
+	if (cflag & CSTOPB) {
+		D1( " - stop bits = 2");
+	} else {
+		D1( " - stop bits = 1");
+	}
+
+	/* figure out the hardware flow control settings */
+	if (cflag & CRTSCTS) {
+		D1( " - RTS/CTS is enabled");
+	} else {
+		D1( " - RTS/CTS is disabled");
+	}
+
+	/* determine software flow control */
+	/* if we are implementing XON/XOFF, set the start and
+	 * stop character in the device */
+	if (I_IXOFF(tty) || I_IXON(tty)) {
+#ifdef NOZOMI_DEBUG
+		unsigned char stop_char  = STOP_CHAR(tty);
+		unsigned char start_char = START_CHAR(tty);
+#endif
+		/* if we are implementing INBOUND XON/XOFF */
+		if (I_IXOFF(tty)) {
+			D1( " - INBOUND XON/XOFF is enabled, "
+				"XON = %2x, XOFF = %2x", start_char, stop_char);
+		} else {
+			D1( " - INBOUND XON/XOFF is disabled");
+		}
+
+		/* if we are implementing OUTBOUND XON/XOFF */
+		if (I_IXON(tty)) {
+			D1( " - OUTBOUND XON/XOFF is enabled, "
+				"XON = %2x, XOFF = %2x", start_char, stop_char);
+		} else {
+			D1( " - OUTBOUND XON/XOFF is disabled");
+		}
+	}
+
+  exit_termios:
+	return;
+}
+
+/* Gets io control parameters */
+static int ntty_tiocmget(struct tty_struct *tty, struct file *file) {
+	port_t *port = (port_t *) tty->driver_data;
+	ctrl_dl_t *ctrl_dl = &port->ctrl_dl;
+	ctrl_ul_t *ctrl_ul = &port->ctrl_ul;
+
+	return 0
+		| (ctrl_ul->RTS ? TIOCM_RTS : 0)
+		| (ctrl_ul->DTR ? TIOCM_DTR : 0)
+		| (ctrl_dl->DCD ? TIOCM_CAR : 0)
+		| (ctrl_dl->RI  ? TIOCM_RNG : 0)
+		| (ctrl_dl->DSR ? TIOCM_DSR : 0)
+		| (ctrl_dl->CTS ? TIOCM_CTS : 0);
+}
+
+/* Sets io controls parameters */
+static int ntty_tiocmset(struct tty_struct *tty, struct file *file, u32 arg) {
+	port_t *port = (port_t *) tty->driver_data;
+
+	set_rts(port->tty_index, (arg & TIOCM_RTS) ? 1 : 0);
+	set_dtr(port->tty_index, (arg & TIOCM_DTR) ? 1 : 0);
+
+	return 0;
+}
+
+static int ntty_ioctl_tiocmiwait(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg) {
+	port_t *port = (port_t *) tty->driver_data;
+
+	if (cmd == TIOCMIWAIT) {
+		DECLARE_WAITQUEUE(wait, current);
+		struct async_icount cnow;
+		struct async_icount cprev;
+
+		cprev = port->tty_icount;
+		while (1) {
+			add_wait_queue(&port->tty_wait, &wait);
+			set_current_state(TASK_INTERRUPTIBLE);
+			schedule();
+			remove_wait_queue(&port->tty_wait, &wait);
+
+			/* see if a signal woke us up */
+			if (signal_pending(current))
+				return -ERESTARTSYS;
+
+			cnow = port->tty_icount;
+			if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
+				cnow.dcd == cprev.dcd && cnow.cts == cprev.cts)
+				return -EIO; /* no change => error */
+			if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
+				((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
+				((arg & TIOCM_CD)  && (cnow.dcd != cprev.dcd)) ||
+				((arg & TIOCM_CTS) && (cnow.cts != cprev.cts)) ) {
+				return 0;
+			}
+			cprev = cnow;
+		}
+
+	}
+	return -ENOIOCTLCMD;
+}
+
+static int ntty_ioctl_tiocgicount(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg) {
+	port_t *port = (port_t *) tty->driver_data;
+
+	if (cmd == TIOCGICOUNT) {
+		struct async_icount cnow = port->tty_icount;
+		struct serial_icounter_struct icount;
+
+		icount.cts	= cnow.cts;
+		icount.dsr	= cnow.dsr;
+		icount.rng	= cnow.rng;
+		icount.dcd	= cnow.dcd;
+		icount.rx	= cnow.rx;
+		icount.tx	= cnow.tx;
+		icount.frame	= cnow.frame;
+		icount.overrun	= cnow.overrun;
+		icount.parity	= cnow.parity;
+		icount.brk	= cnow.brk;
+		icount.buf_overrun = cnow.buf_overrun;
+
+		if (copy_to_user((void *)arg, &icount, sizeof(icount)))
+			return -EFAULT;
+		return 0;
+	}
+	return -ENOIOCTLCMD;
+}
+
+static int ntty_ioctl(struct tty_struct *tty, struct file *file, unsigned int cmd, unsigned long arg) {
+	port_t *port = (port_t *) tty->driver_data;
+	int mask;
+	int rval = -ENOIOCTLCMD;
+
+	CARD_CHECK(rval);
+
+	D1("******** IOCTL, cmd: %d", cmd);
+
+
+	switch (cmd) {
+	case TCGETS:
+		D1( "IOCTL TCGETS ...");
+		rval = -ENOIOCTLCMD;
+		break;
+	case TCSETS:
+		D1( "IOCTL TCSETS ...");
+		rval = -ENOIOCTLCMD;
+		break;
+	case TIOCMIWAIT:
+		rval = ntty_ioctl_tiocmiwait(tty, file, cmd, arg);
+		break;
+	case TIOCGICOUNT:
+		rval =  ntty_ioctl_tiocgicount(tty, file, cmd, arg);
+		break;
+	case TIOCMGET:
+		rval = ntty_tiocmget(tty, file);
+		break;
+	case TIOCMSET:
+		rval = ntty_tiocmset(tty, file, arg);
+		break;
+	case TIOCMBIC:
+		if (get_user(mask, (unsigned long *) arg))
+			return -EFAULT;
+
+		if (mask & TIOCM_RTS)
+			set_rts(port->tty_index, 0);
+		if (mask & TIOCM_DTR)
+			set_dtr(port->tty_index, 0);
+		rval = 0;
+		break;
+   	case TIOCMBIS:
+		if (get_user(mask, (unsigned long *) arg))
+			return -EFAULT;
+
+		if (mask & TIOCM_RTS)
+			set_rts(port->tty_index, 1);
+		if (mask & TIOCM_DTR)
+			set_dtr(port->tty_index, 1);
+		rval = 0;
+		break;
+	case TCFLSH:
+		D1( "IOCTL TCFLSH ...");
+		rval = -ENOIOCTLCMD;
+		break;
+
+	default:
+		D1( "ERR: 0x%08X, %d", cmd, cmd);
+		break;
+	};
+
+	return rval;
+}
+
+/* Called by the upper tty layer when tty buffers are ready */
+/* to receive data again after a call to throttle. */
+static void ntty_unthrottle(struct tty_struct *tty) {
+	port_t  *port = (port_t *) tty->driver_data;
+	dc_t	*dc = get_dc_by_tty(tty);
+	u32	  flags;
+
+	CARD_CHECK();
+
+	D1( "UNTHROTTLE");
+	spin_lock_irqsave(&dc->spin_mutex, flags);
+	enable_transmit_dl(port->tty_index, dc);
+	set_rts(port->tty_index, 1);
+
+	spin_unlock_irqrestore(&dc->spin_mutex, flags);
+}
+
+/* Called by the upper tty layer when the tty buffers are almost full. */
+/* The driver should stop send more data. */
+static void ntty_throttle(struct tty_struct *tty) {
+	port_t  *port = (port_t *) tty->driver_data;
+	dc_t	*dc = get_dc_by_tty(tty);
+	u32	  flags;
+
+	CARD_CHECK();
+
+	D1( "THROTTLE");
+	spin_lock_irqsave(&dc->spin_mutex, flags);
+	set_rts(port->tty_index, 0);
+	spin_unlock_irqrestore(&dc->spin_mutex, flags);
+}
+
+static void ntty_put_char(struct tty_struct *tty, unsigned char c) {
+	CARD_CHECK();
+	D2("PUT CHAR Function: %c", c);
+}
+
+/* Returns number of chars in buffer, called by tty layer */
+static s32 ntty_chars_in_buffer(struct tty_struct *tty) {
+	port_t *port = (port_t *) tty->driver_data;
+	s32 rval;
+
+	CARD_CHECK(-ENODEV);
+
+	if (! port) {
+		rval = -ENODEV;
+		goto exit_in_buffer;
+	}
+
+	if (! port->tty_open_count) {
+		ERR("No tty open?");
+		rval = -ENODEV;
+		goto exit_in_buffer;
+	}
+
+	rval = __kfifo_len(port->fifo_ul);
+
+  exit_in_buffer:
+	return rval;
+}
+
+/* Initializes the tty */
+static int ntty_tty_init(dc_t *dc) {
+	struct tty_driver  *td = &dc->tty_driver;
+	int				 rval;
+	int				 i;
+
+	memset(td, 0, sizeof(struct tty_driver));
+
+	td->magic				 = TTY_DRIVER_MAGIC;
+	td->driver_name		   = NOZOMI_NAME_TTY;
+	td->name				  = "noz";
+	td->major				 = NTTY_TTY_MAJOR,
+	td->type				  = TTY_DRIVER_TYPE_SERIAL,
+	td->subtype			   = SERIAL_TYPE_NORMAL,
+	td->flags				 = TTY_DRIVER_REAL_RAW | TTY_DRIVER_NO_DEVFS,
+	td->init_termios		  = tty_std_termios;
+	td->init_termios.c_cflag  = B115200 | CS8 | CREAD | HUPCL | CLOCAL;
+
+	td->num				   = MAX_PORT;
+	td->name_base			 = 0;
+	td->minor_start		   = 0;
+
+#ifdef KERNEL_2_4
+	td->table				 = dc->tty_table;
+	td->refcount			  = &dc->tty_refcount;
+#endif
+
+	td->termios			   = dc->tty_termios;
+	td->termios_locked		= dc->tty_termios_locked;
+
+	td->ioctl				 = ntty_ioctl;
+	td->open				  = ntty_open;
+	td->close				 = ntty_close;
+	td->write				 = ntty_write;
+	td->write_room			= ntty_write_room;
+	td->unthrottle			= ntty_unthrottle;
+	td->throttle			  = ntty_throttle;
+	td->set_termios		   = ntty_set_termios;
+	td->chars_in_buffer	   = ntty_chars_in_buffer;
+	td->put_char			  = ntty_put_char;
+
+	rval = tty_register_driver(td);
+
+	if (rval) {
+		printk(KERN_ERR "failed to register ntty tty driver");
+		D1( "failed to register ntty tty driver");
+		return rval;
+	}
+
+	for (i = 0; i < NTTY_TTY_MINORS; i++) {
+		init_MUTEX(&dc->port[i].tty_sem);
+		dc->port[i].tty_open_count = 0;
+		dc->port[i].tty = NULL;
+
+#ifdef KERNEL_2_6
+		tty_register_device(td, i, NULL);
+#endif
+	}
+
+	printk(KERN_INFO DRIVER_DESC " " NOZOMI_NAME_TTY);
+	D1( " ");
+	return rval;
+}
+
+/* Module initialization */
+static struct pci_driver nozomi_driver = {
+	.name		= NOZOMI_NAME,
+	.id_table	= nozomi_pci_tbl,
+	.probe		= nozomi_card_init,
+	.remove		= __devexit_p(nozomi_card_exit),
+};
+
+static int __init nozomi_init(void) {
+	int rval = 0;
+
+	rval = pci_module_init(&nozomi_driver);
+	printk(KERN_INFO "Initializing %s\n", VERSION_STRING);
+	return rval;
+}
+
+static void nozomi_exit(void) {
+	printk(KERN_INFO "Unloading %s", DRIVER_DESC);
+
+	pci_unregister_driver(&nozomi_driver);
+}
+
+module_init(nozomi_init);
+module_exit(nozomi_exit);
+
+#ifdef NOZOMI_DEBUG
+  MODULE_PARM(nzdebug, "i");
+#endif
+
+MODULE_LICENSE("Dual BSD/GPL");
+MODULE_DESCRIPTION( DRIVER_DESC );