summaryrefslogtreecommitdiff
path: root/ndb/src/external/LINUX.x86/sci/include/sisci_api.h
blob: 38fdf54125fe2ea7a5a4c000b2d32889e969a9c0 (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
/* $Id: sisci_api.h,v 1.1 2002/12/13 12:17:21 hin Exp $  */
/*******************************************************************************
 *                                                                             *
 * Copyright (C) 1993 - 2001                                                   * 
 *         Dolphin Interconnect Solutions AS                                   *
 *                                                                             *
 * This program is free software; you can redistribute it and/or modify        * 
 * it under the terms of the GNU Lesser General Public License as published by *
 * the Free Software Foundation; either version 2.1 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 Lesser General Public License    *
 * along with this program; if not, write to the Free Software                 *
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. *
 *                                                                             *
 *                                                                             *
 *******************************************************************************/ 

#ifndef _SISCI_API_H
#define _SISCI_API_H

#include "sisci_types.h"
#include "sisci_error.h"

 
#ifdef WIN32
#ifdef API_DLL
#define DLL __declspec(dllexport)
#elif CLIENT_DLL
#define DLL __declspec(dllimport) 
#endif
#endif /* WIN32 */


#ifndef DLL
#define DLL 
#endif

#if defined(_REENTRANT)
#define _SISCI_EXPANDE_FUNCTION_NAME(name)  _SISCI_PUBLIC_FUNC_MT_ ## name
#define _SISCI_EXPANDE_VARIABLE_NAME(name)  _SISCI_PUBLIC_VAR_MT_ ## name
#else
#define _SISCI_EXPANDE_FUNCTION_NAME(name)  _SISCI_PUBLIC_FUNC_ST_ ## name
#define _SISCI_EXPANDE_VARIABLE_NAME(name)  _SISCI_PUBLIC_VAR_ST_ ## name
#endif
#define _SISCI_EXPANDE_CONSTANT_NAME(name)  _SISCI_PUBLIC_CONST_ ## name

#if defined(CPLUSPLUS) || defined(__cplusplus)
extern "C" {
#endif


/*********************************************************************************/
/*                         FLAG VALUES                                           */
/*********************************************************************************/

#define SCI_FLAG_FIXED_INTNO                               _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_FIXED_INTNO)
extern const unsigned int SCI_FLAG_FIXED_INTNO;

#define SCI_FLAG_SHARED_INT                               _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_SHARED_INT)
extern const unsigned int SCI_FLAG_SHARED_INT;

#define SCI_FLAG_FIXED_MAP_ADDR                            _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_FIXED_MAP_ADDR)
extern const unsigned int SCI_FLAG_FIXED_MAP_ADDR;

#define SCI_FLAG_READONLY_MAP                              _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_READONLY_MAP)
extern const unsigned int SCI_FLAG_READONLY_MAP; 

#define SCI_FLAG_USE_CALLBACK                              _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_USE_CALLBACK)
extern const unsigned int SCI_FLAG_USE_CALLBACK; 

#define SCI_FLAG_BLOCK_READ                                _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_BLOCK_READ)
extern const unsigned int SCI_FLAG_BLOCK_READ;

#define SCI_FLAG_THREAD_SAFE                               _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_THREAD_SAFE)
extern const unsigned int SCI_FLAG_THREAD_SAFE;

#define SCI_FLAG_ASYNCHRONOUS_CONNECT                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_ASYNCHRONOUS_CONNECT)
extern const unsigned int SCI_FLAG_ASYNCHRONOUS_CONNECT;

#define SCI_FLAG_EMPTY                                     _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_EMPTY)
extern const unsigned int SCI_FLAG_EMPTY;

#define SCI_FLAG_PRIVATE                                   _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_PRIVATE)
extern const unsigned int SCI_FLAG_PRIVATE;

#define SCI_FLAG_FORCE_DISCONNECT                          _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_FORCE_DISCONNECT)
extern const unsigned int SCI_FLAG_FORCE_DISCONNECT;

#define SCI_FLAG_NOTIFY                                    _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_NOTIFY)
extern const unsigned int SCI_FLAG_NOTIFY;

#define SCI_FLAG_DMA_READ                                  _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_DMA_READ)
extern const unsigned int SCI_FLAG_DMA_READ;

#define SCI_FLAG_DMA_POST                                  _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_DMA_POST)
extern const unsigned int SCI_FLAG_DMA_POST;

#define SCI_FLAG_DMA_WAIT                                  _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_DMA_WAIT)
extern const unsigned int SCI_FLAG_DMA_WAIT;

#define SCI_FLAG_DMA_RESET                                 _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_DMA_RESET)
extern const unsigned int SCI_FLAG_DMA_RESET;

#define SCI_FLAG_NO_FLUSH                                  _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_NO_FLUSH)
extern const unsigned int SCI_FLAG_NO_FLUSH;

#define SCI_FLAG_NO_STORE_BARRIER                          _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_NO_STORE_BARRIER)
extern const unsigned int SCI_FLAG_NO_STORE_BARRIER;

#define SCI_FLAG_FAST_BARRIER                              _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_FAST_BARRIER)
extern const unsigned int SCI_FLAG_FAST_BARRIER;

#define SCI_FLAG_ERROR_CHECK                               _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_ERROR_CHECK)
extern const unsigned int SCI_FLAG_ERROR_CHECK;

#define SCI_FLAG_FLUSH_CPU_BUFFERS_ONLY                     _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_FLUSH_CPU_BUFFERS_ONLY)
extern const unsigned int SCI_FLAG_FLUSH_CPU_BUFFERS_ONLY;

/* the FLUSH_CPU_BUFFERS_ONLY flag is for backwards compabillity only and should never be used */
#define FLUSH_CPU_BUFFERS_ONLY                             _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_FLUSH_CPU_BUFFERS_ONLY) 

#define SCI_FLAG_LOCK_OPERATION                            _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_LOCK_OPERATION)
extern const unsigned int SCI_FLAG_LOCK_OPERATION;

#define SCI_FLAG_READ_PREFETCH_AGGR_HOLD_MAP                    _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_READ_PREFETCH_AGGR_HOLD_MAP)
extern const unsigned int SCI_FLAG_READ_PREFETCH_AGGR_HOLD_MAP;

#define SCI_FLAG_READ_PREFETCH_NO_HOLD_MAP                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_READ_PREFETCH_NO_HOLD_MAP)
extern const unsigned int SCI_FLAG_READ_PREFETCH_NO_HOLD_MAP;

#define SCI_FLAG_IO_MAP_IOSPACE                                 _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_IO_MAP_IOSPACE)
extern const unsigned int SCI_FLAG_IO_MAP_IOSPACE;

#define SCI_FLAG_DMOVE_MAP                                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_DMOVE_MAP)
extern const unsigned int SCI_FLAG_DMOVE_MAP;

#define SCI_FLAG_WRITES_DISABLE_GATHER_MAP                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_WRITES_DISABLE_GATHER_MAP)
extern const unsigned int SCI_FLAG_WRITES_DISABLE_GATHER_MAP;

#define SCI_FLAG_DISABLE_128_BYTES_PACKETS                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_DISABLE_128_BYTES_PACKETS)
extern const unsigned int SCI_FLAG_DISABLE_128_BYTES_PACKETS;

#define SCI_FLAG_SHARED_MAP                                     _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_SHARED_MAP)
extern const unsigned int SCI_FLAG_SHARED_MAP;

#define SCI_FLAG_DMA_SOURCE_ONLY                                _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_DMA_SOURCE_ONLY)
extern const unsigned int SCI_FLAG_DMA_SOURCE_ONLY;

#define SCI_FLAG_CONDITIONAL_INTERRUPT                          _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_CONDITIONAL_INTERRUPT)
extern const unsigned int SCI_FLAG_CONDITIONAL_INTERRUPT;

#define SCI_FLAG_CONDITIONAL_INTERRUPT_MAP                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_CONDITIONAL_INTERRUPT_MAP)
extern const unsigned int SCI_FLAG_CONDITIONAL_INTERRUPT_MAP;

#define SCI_FLAG_UNCONDITIONAL_DATA_INTERRUPT_MAP               _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_UNCONDITIONAL_DATA_INTERRUPT_MAP)
extern const unsigned int SCI_FLAG_UNCONDITIONAL_DATA_INTERRUPT_MAP;

#define SCI_FLAG_NO_MEMORY_LOOPBACK_MAP                         _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_NO_MEMORY_LOOPBACK_MAP)
extern const unsigned int SCI_FLAG_NO_MEMORY_LOOPBACK_MAP;

#if defined(OS_IS_LYNXOS) || defined(OS_IS_VXWORKS)
#define SCI_FLAG_WRITE_BACK_CACHE_MAP                           _SISCI_EXPANDE_CONSTANT_NAME(WRITE_BACK_CACHE_MAP)
extern const unsigned int SCI_FLAG_WRITE_BACK_CACHE_MAP;
#endif

#define SCI_FLAG_DMA_PHDMA                                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_FLAG_DMA_PHDMA)
extern const unsigned int SCI_FLAG_DMA_PHDMA;

/*********************************************************************************/
/*                         GENERAL VALUES                                        */
/*********************************************************************************/
#define SCI_LOCAL_HOST                                     _SISCI_EXPANDE_CONSTANT_NAME(SCI_LOCAL_HOST)
extern const unsigned int SCI_LOCAL_HOST;        

#define SCI_INFINITE_TIMEOUT                               _SISCI_EXPANDE_CONSTANT_NAME(SCI_INFINITE_TIMEOUT)
extern const unsigned int SCI_INFINITE_TIMEOUT;    

/*********************************************************************************/
/*                       GENERAL ERROR CODES                                     */
/*                                                                               */
/*  SCI_ERR_ILLEGAL_FLAG          - Illegal flag value.                          */ 
/*  SCI_ERR_FLAG_NOT_IMPLEMENTED  - Flag legal but flag feature not implemented. */
/*  SCI_ERR_NOT_IMPLEMENTED       - Function not implemented.                    */
/*  SCI_ERR_SYSTEM                - A system error. Check errno.                 */
/*  SCI_ERR_NOSPC                 - Unable to allocate OS resources.             */
/*  SCI_ERR_API_NOSPC             - Unable to allocate API resources.            */
/*  SCI_ERR_HW_NOSPC              - Unable to allocate HW resources (Hardware)   */
/*                                                                               */
/*********************************************************************************/


/*********************************************************************************/
/*                    GENERAL "ADAPTER" ERROR CODES                              */
/*                                                                               */
/*  SCI_ERR_NO_SUCH_ADAPTERNO     - Adapter number is legal but does not exist.  */
/*  SCI_ERR_ILLEGAL_ADAPTERNO     - Illegal local adapter number  (i.e. outside  */
/*                                  legal range).                                */
/*                                                                               */
/*********************************************************************************/


/*********************************************************************************/
/*                     GENERAL "NODEID" ERROR CODES                              */
/*                                                                               */
/*  SCI_ERR_NO_SUCH_NODEID        - The remote adapter identified by nodeId does */
/*                                  not respond, but the intermediate link(s)    */
/*                                  seem(s) to be operational.                   */
/*  SCI_ERR_ILLEGAL_NODEID        - Illegal NodeId.                              */
/*                                                                               */
/*********************************************************************************/



/*********************************************************************************
 *                                                                               *
 * S C I   I N I T I A L I Z E                                                   *
 *                                                                               *
 * This function initializes the SISCI library.                                  *
 * The function must be called before SCIOpen().                                 *
 *                                                                               *
 *  Flags:                                                                       *
 *    None                                                                       *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *    None                                                                       *
 *                                                                               *
 *********************************************************************************/
#define SCIInitialize                            _SISCI_EXPANDE_FUNCTION_NAME(SCIInitialize)
DLL void SCIInitialize(unsigned int flags,
                       sci_error_t *error);
#if 0
unsigned int __Internal_SISCI_version_var;
#endif

/*********************************************************************************
 *                                                                               *
 * S C I   T E R M I N A T E                                                     *
 *                                                                               *
 * This function terminates the SISCI library.                                   *
 * The function must be called after SCIClose().                                 *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCITerminate                             _SISCI_EXPANDE_FUNCTION_NAME(SCITerminate)
DLL void SCITerminate(void);

/*********************************************************************************
 *                                                                               *
 * S C I   O P E N                                                               *
 *                                                                               *
 *                                                                               *
 * Opens a SCI virtual device.                                                   *
 * Caller must supply a pointer to a variable of type sci_desc_t to be           *
 * initialized.                                                                  *
 *                                                                               *
 *  Flags                                                                        *
 *  SCI_FLAG_THREAD_SAFE  - Operations on resources associated with this         *
 *                          descriptor will be performed in a multithread-safe   *
 *                          manner.                                              *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_INCONSISTENT_VERSIONS    - Inconsistency between the SISCI library   *
 *                                     and the SISCI driver versions.            *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCIOpen                                  _SISCI_EXPANDE_FUNCTION_NAME(SCIOpen)
DLL void SCIOpen(sci_desc_t   *sd,
                 unsigned int flags,
                 sci_error_t  *error);




/*********************************************************************************
 *                                                                               *
 * S C I  C L O S E                                                              *
 *                                                                               *
 * This function closes an open SCI virtual device.                              *
 *                                                                               *
 *  Flags:                                                                       *
 *    None                                                                       *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_BUSY 		             - All resources are not deallocated.        *
 *                                                                               *
 *********************************************************************************/
#define SCIClose                                 _SISCI_EXPANDE_FUNCTION_NAME(SCIClose)
DLL void SCIClose(sci_desc_t sd,
                  unsigned int flags,
                  sci_error_t *error);




/*********************************************************************************
 *                                                                               *
 * S C I   C O N N E C T   S  E G M E N T                                        *
 *                                                                               *
 * Connects to a remote shared memory segment located at <nodeId> with the       *
 * identifier <segmentId>.                                                       *
 * The user may then call SCIMapRemoteSegment() to map shared memory             *
 * into user space.                                                              *
 *                                                                               *
 *  Flags                                                                        *
 *  SCI_FLAG_USE_CALLBACK                                                        *
 *  SCI_FLAG_ASYNCHRONOUS_CONNECT                                                *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_NO_SUCH_SEGMENT       - Could not find the remote segment with the   *
 *                                  given segmentId.                             *
 *  SCI_ERR_CONNECTION_REFUSED    - Connection attempt refused by remote node.   *
 *  SCI_ERR_TIMEOUT               - The function timed out after specified       *
 *                                  timeout value.                               *
 *  SCI_ERR_NO_LINK_ACCESS        - It was not possible to communicate via the   *
 *                                  local adapter.                               *
 *  SCI_ERR_NO_REMOTE_LINK_ACCESS - It was not possible to communicate via a     *
 *                                  remote switch port.                          *
 *                                                                               *
 *********************************************************************************/
#define SCIConnectSegment                        _SISCI_EXPANDE_FUNCTION_NAME(SCIConnectSegment)
DLL void SCIConnectSegment(sci_desc_t              sd,
                           sci_remote_segment_t    *segment,
                           unsigned int            nodeId,
                           unsigned int            segmentId,
                           unsigned int            localAdapterNo,
                           sci_cb_remote_segment_t callback, 
                           void                    *callbackArg,
                           unsigned int            timeout,
                           unsigned int            flags,
                           sci_error_t             *error);


/*********************************************************************************
 *                                                                               *
 * S C I   D I S C O N N E C T   S E G M E N T                                   *
 *                                                                               *
 * Disconnects from the give mapped shared memory segment                        *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_BUSY		          - The segment is currently mapped or in use.   *
 *                                                                               *
 *********************************************************************************/
#define SCIDisconnectSegment                     _SISCI_EXPANDE_FUNCTION_NAME(SCIDisconnectSegment)
DLL void SCIDisconnectSegment(sci_remote_segment_t segment,
                              unsigned int         flags,
                              sci_error_t          *error);



/*********************************************************************************
 *                                                                               *
 * S C I   G E T  R E M O T E  S E G M E N T  S I Z E                            *
 *                                                                               *
 *********************************************************************************/
#define SCIGetRemoteSegmentSize                  _SISCI_EXPANDE_FUNCTION_NAME(SCIGetRemoteSegmentSize)
DLL unsigned int SCIGetRemoteSegmentSize(sci_remote_segment_t segment);



/*********************************************************************************
 *                                                                               *
 * S C I  W A I T   F O R   R E M O T E  S E G M E N T  E V E N T                *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_TIMEOUT               - The function timed out after specified       *
 *                                  timeout value.                               *
 *  SCI_ERR_ILLEGAL_OPERATION     - Illegal operation.                           *
 *  SCI_ERR_CANCELLED             - The wait operation has been cancelled du     *
 *                                  to a SCIDisconnectSegment() on the same      *
 *                                  handle. The handle is invalid when this      *
 *                                  error is returned.                           *
 *                                                                               *
 *********************************************************************************/
#define SCIWaitForRemoteSegmentEvent             _SISCI_EXPANDE_FUNCTION_NAME(SCIWaitForRemoteSegmentEvent)
DLL sci_segment_cb_reason_t SCIWaitForRemoteSegmentEvent(
                                            sci_remote_segment_t segment,
                                            sci_error_t          *status,
                                            unsigned int         timeout,
                                            unsigned int         flags,
                                            sci_error_t          *error);




/*********************************************************************************
 *                                                                               *
 * S C I   M A P   R E M O T E   S E G M E N T                                   *
 *                                                                               *
 * This function is used to include a shared memory segment in the virtual       *
 * address space of the application.                                             *
 *                                                                               *
 *  Flags:                                                                       *
 *                                                                               *
 *  SCI_FLAG_SHARED_MAP           - The low level physical map may be shared by  * 
 *                                  other applications.                          *
 *                                                                               *
 *  SCI_FLAG_FIXED_MAP_ADDR       - Map at the suggested virtual address         *
 *  SCI_FLAG_READONLY_MAP         - The segment is mapped in read-only mode      *
 *  SCI_FLAG_LOCK_OPERATION       - Enable Lock operations (fetch and add)       *
 *  SCI_FLAG_READ_PREFETCH_AGGR_HOLD_MAP                                         *
 *                                - Enable aggressive prefetch with speculative  *
 *                                  hold.                                        *
 *                                                                               *
 *  SCI_FLAG_READ_PREFETCH_NO_HOLD_MAP                                            * 
 *                                - The PSB66 will prefetch 64 bytes. As soon    *
 *                                  as the PCI read retry has been accepted,     *
 *                                  the stream will change state to FREE, even   *
 *                                  if less than 64 bytes were actually read.    *
 *                                                                               *
 *  SCI_FLAG_IO_MAP_IOSPACE       - Enable No Prefetch, no speculative hold.     *
 *                                                                               *
 *  SCI_FLAG_DMOVE_MAP            - Enable DMOVE packet type. The stream will be *
 *                                  set into FREE state immediately.             *
 *                                                                               *
 *  SCI_FLAG_WRITES_DISABLE_GATHER_MAP                                           *
 *                                - Disable use of gather.                       *
 *                                                                               *
 *  SCI_FLAG_DISABLE_128_BYTES_PACKETS                                           * 
 *                                - Disable use of 128-Byte packets              *
 *                                                                               *
 *  SCI_FLAG_CONDITIONAL_INTERRUPT_MAP                                           *
 *                                - Write operations through this map will cause *
 *                                  an atomic "fetch-and-add-one" operation on   *
 *                                  remote memory, but in addition an interrupt  *
 *                                  will be generated if the target memory       *
 *                                  location contained a "null value" before the *
 *                                  add operation was carried out.               *
 *                                  The conditional interrupt flag must also be  *
 *                                  specified in the SCIRegisterInterruptFlag()  *
 *                                  function.                                    *
 *                                                                               *
 *  SCI_FLAG_UNCONDITIONAL_INTERRUPT_MAP                                         *
 *                                - Write operations through this map will cause *
 *                                  an interrupt for the remote adapter          *
 *                                  "in addition to" updating the corresponding  *
 *                                  remote memory location with the data being   *
 *                                  written.                                     *
 *                                  The unconditional interrupt flag must also   *
 *                                  be specified in the                          *
 *                                  SCIRegisterInterruptFlag() function.         *
 *                                                                               *
 *  SCI_FLAG_WRITE_BACK_CACHE_MAP                                                *
 *                                - Enable cacheing of the mapped region.        *
 *                                  Writes through this map will be written to a *
 *                                  write back cache, hence no remote SCI updates*
 *                                  until the cache line is flushed. The         *
 *                                  application is responsible for the cache     *
 *                                  flush operation.                             *
 *                                  The SCImemCopy() function will handle this   *
 *                                  correctly by doing cache flushes internally. *
 *                                  This feature is architechture dependent and  *
 *                                  not be available on all plattforms.          *
 *                                                                               *
 *  SCI_FLAG_NO_MEMORY_LOOPBACK_MAP                                              *
 *                                - Forces a map to a remote segment located     *
 *                                  in the local machine to be mapped using      *
 *                                  SCI loopback. This is useful i.e. if you     *
 *                                  want to use a regular map access to be       *
 *                                  serialized with lock operations.             *
 *                                  The default behaviour is to access a remte   *
 *                                  segment located in the local machine as a    *
 *                                  local MMU operation.                         *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_OUT_OF_RANGE          - The sum of the offset and size is            *
 *                                  larger than the segment size.                *
 *  SCI_ERR_SIZE_ALIGNMENT        - Size is not correctly aligned as             *
 *                                  required by the implementation.              *
 *  SCI_ERR_OFFSET_ALIGNMENT      - Offset is not correctly aligned as           *
 *                                  required by the implementation.              *
 *                                                                               *
 *********************************************************************************/
#define SCIMapRemoteSegment                      _SISCI_EXPANDE_FUNCTION_NAME(SCIMapRemoteSegment)
DLL volatile void *SCIMapRemoteSegment(
                              sci_remote_segment_t segment,
                              sci_map_t            *map,
                              unsigned int         offset,
                              unsigned int         size,
                              void                *addr,
                              unsigned int         flags,
                              sci_error_t          *error);




/*********************************************************************************
 *                                                                               *
 * S C I   M A P   L O C A L   S E G M E N T                                     *
 *                                                                               *
 *  Flags                                                                        *
 *                                                                               *
 *  SCI_FLAG_FIXED_MAP_ADDR                                                      *
 *  SCI_FLAG_READONLY_MAP                                                        *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_OUT_OF_RANGE          - The sum of the offset and size is            *
 *                                  larger than the segment size.                *
 *  SCI_ERR_SIZE_ALIGNMENT        - Size is not correctly aligned as             *
 *                                  required by the implementation.              *
 *  SCI_ERR_OFFSET_ALIGNMENT      - Offset is not correctly aligned as           *
 *                                  required by the implementation.              *
 *                                                                               *
 *********************************************************************************/
#define SCIMapLocalSegment                       _SISCI_EXPANDE_FUNCTION_NAME(SCIMapLocalSegment)
DLL void *SCIMapLocalSegment(sci_local_segment_t segment,
                             sci_map_t           *map,
                             unsigned int        offset,
                             unsigned int        size,
                             void                *addr,
                             unsigned int        flags,
                             sci_error_t         *error);



/*********************************************************************************
 *                                                                               *
 * S C I   U N M A P  S E G M E N T                                              *
 *                                                                               *
 * This function unmaps pages of shared memory from the callers virtual          *
 * address space.                                                                *
 *                                                                               *
 *  Flags                                                                        *
 *    None.                                                                      *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_BUSY		          - The map is currently in use.                 *
 *                                                                               *
 *********************************************************************************/
#define SCIUnmapSegment                          _SISCI_EXPANDE_FUNCTION_NAME(SCIUnmapSegment)
DLL void SCIUnmapSegment(sci_map_t    map,
                         unsigned int flags,
                         sci_error_t  *error);




/*********************************************************************************
 *                                                                               *
 * S C I   C R E A T E   S E G M E N T                                           *
 *                                                                               *
 * Make the specified segment available for connections via the specified        *
 * adapter. If successful, the segment can be accessed from remote nodes         *
 * via the specified adapter.                                                    *
 *                                                                               *
 *  Flags:                                                                       *
 *                                                                               *
 *  SCI_FLAG_USE_CALLBACK  - The callback function will be invoked for events    *
 *                           on this segment.                                    *
 *  SCI_FLAG_EMPTY         - No memory will be allocated for the segment.        *
 *  SCI_FLAG_PRIVATE       - The segment will be private meaning it will never   *
 *                           be any connections to it.                           *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_SEGMENTID_USED - The segment with this segmentId is already used     *
 *  SCI_ERR_SIZE_ALIGNMENT - Size is not correctly aligned as required           *
 *                           by the implementation.                              *
 *                                                                               *
 *********************************************************************************/
#define SCICreateSegment                         _SISCI_EXPANDE_FUNCTION_NAME(SCICreateSegment)
DLL void SCICreateSegment(sci_desc_t             sd,
                          sci_local_segment_t    *segment,
                          unsigned int           segmentId,
                          unsigned int           size,
                          sci_cb_local_segment_t callback,
                          void                   *callbackArg, 
                          unsigned int           flags,
                          sci_error_t            *error);



/*********************************************************************************
 *                                                                               *
 * S C I  W A I T   F O R   L O C A L   S E G M E N T  E V E N T                 *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_TIMEOUT      - The function timed out after specified timeout value. *
 *  SCI_ERR_CANCELLED    - The wait operation has been cancelled du to a         *
 *                         SCIRemoveSegment() on the same handle.                *
 *                         The handle is invalid when this error is returned.    *
 *                                                                               *
 *********************************************************************************/
#define SCIWaitForLocalSegmentEvent              _SISCI_EXPANDE_FUNCTION_NAME(SCIWaitForLocalSegmentEvent)
DLL sci_segment_cb_reason_t SCIWaitForLocalSegmentEvent(
                                                sci_local_segment_t segment,     
                                                unsigned int *sourcenodeId,
                                                unsigned int *localAdapterNo,
                                                unsigned int timeout,
                                                unsigned int flags,
                                                sci_error_t  *error);



/*********************************************************************************
 *                                                                               *
 * S C I   P R E P A R E   S E G M E N T                                         *
 *                                                                               *
 *  Flags                                                                        *
 *                                                                               *
 *  SCI_FLAG_DMA_SOURCE_ONLY - The segment will be used as a source segment      *
 *                             for DMA operations. On some system types this     *
 *                             will enable the SISCI driver to use performance   *
 *                             improving features.                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCIPrepareSegment                        _SISCI_EXPANDE_FUNCTION_NAME(SCIPrepareSegment)
DLL void SCIPrepareSegment(sci_local_segment_t segment,
                           unsigned int        localAdapterNo,
                           unsigned int        flags,
                           sci_error_t         *error);



/*********************************************************************************
 *                                                                               *
 * S C I   R E M O V E   S E G M E N T                                           *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_BUSY  - Unable to remove the segment. The segment is currently       *
 *                  in use.                                                      *
 *                                                                               *
 *********************************************************************************/
#define SCIRemoveSegment                         _SISCI_EXPANDE_FUNCTION_NAME(SCIRemoveSegment)
DLL void SCIRemoveSegment(sci_local_segment_t segment,
                          unsigned int        flags, 
                          sci_error_t         *error);




/*********************************************************************************
 *                                                                               *
 * S C I   S E T   S E G M E N T   A V A I L A B L E                             *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  SCI_ERR_SEGMENT_NOT_PREPARED  - The segment has not been prepared for access *
 *                                  from this adapter.                           *
 *  SCI_ERR_ILLEGAL_OPERATION     - The segment is created with the              *
 *                                  SCI_FLAG_PRIVATE flag specified and          *
 *                                  therefore has no segmentId.                  *
 *                                                                               *
 *********************************************************************************/
#define SCISetSegmentAvailable                   _SISCI_EXPANDE_FUNCTION_NAME(SCISetSegmentAvailable)
DLL void SCISetSegmentAvailable(sci_local_segment_t segment,
                                unsigned int        localAdapterNo,
                                unsigned int        flags,
                                sci_error_t         *error);



/*********************************************************************************
 *                                                                               *
 * S C I   S E T   S E G M E N T   U N A V A I L A B L E                         *
 *                                                                               *
 *  Flags                                                                        *
 *                                                                               *
 *  SCI_FLAG_FORCE_DISCONNECT                                                    *
 *  SCI_FLAG_NOTIFY                                                              *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_ILLEGAL_OPERATION     - Illegal operation.                           *
 *                                                                               *
 *********************************************************************************/
#define SCISetSegmentUnavailable                 _SISCI_EXPANDE_FUNCTION_NAME(SCISetSegmentUnavailable)
DLL void SCISetSegmentUnavailable(sci_local_segment_t segment,
                                  unsigned int        localAdapterNo,
                                  unsigned int        flags,
                                  sci_error_t         *error);




/*********************************************************************************
 *                                                                               *
 * S C I  C R E A T E   M A P   S E Q U E N C E                                  *
 *                                                                               *
 *  Flags:                                                                       *
 *                                                                               *
 *  SCI_FLAG_FAST_BARRIER                                                        *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *********************************************************************************/
#define SCICreateMapSequence                     _SISCI_EXPANDE_FUNCTION_NAME(SCICreateMapSequence)
DLL void SCICreateMapSequence(sci_map_t   map, 
                           sci_sequence_t *sequence, 
                           unsigned int   flags, 
                           sci_error_t    *error);



/*********************************************************************************
 *                                                                               *
 * S C I   R E M O V E   S E Q U E N C E                                         *
 *                                                                               *
 *  Flags:                                                                       *
 *   None                                                                        *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *********************************************************************************/
#define SCIRemoveSequence                        _SISCI_EXPANDE_FUNCTION_NAME(SCIRemoveSequence)
DLL void SCIRemoveSequence(sci_sequence_t sequence, 
                           unsigned int   flags, 
                           sci_error_t    *error);



/*********************************************************************************
 *                                                                               *
 * S C I   S T A R T   S E Q U E N C E                                           *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCIStartSequence                         _SISCI_EXPANDE_FUNCTION_NAME(SCIStartSequence)
DLL sci_sequence_status_t SCIStartSequence(sci_sequence_t sequence,
                                           unsigned int   flags,
                                           sci_error_t    *error);



/*********************************************************************************
 *                                                                               *
 * S C I   C H E C K   S E Q U E N CE                                            *
 *                                                                               *
 *  Flags                                                                        *
 *                                                                               *
 *  SCI_FLAG_NO_FLUSH                                                            *
 *  SCI_FLAG_NO_STORE_BARRIER                                                    *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *********************************************************************************/
#define SCICheckSequence                         _SISCI_EXPANDE_FUNCTION_NAME(SCICheckSequence)
DLL sci_sequence_status_t SCICheckSequence(sci_sequence_t sequence, 
                                           unsigned int   flags,
                                           sci_error_t    *error);



/*********************************************************************************
 *                                                                               *
 * S C I   S T O R E   B A R R I E R                                             *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCIStoreBarrier                          _SISCI_EXPANDE_FUNCTION_NAME(SCIStoreBarrier)
DLL void SCIStoreBarrier(sci_sequence_t sequence,
                         unsigned int   flags);




/*********************************************************************************
 *                                                                               *
 * S C I   F L U S H   R E A D   B U F F E R S                                   *
 *                                                                               *
 *********************************************************************************/
#define SCIFlushReadBuffers                      _SISCI_EXPANDE_FUNCTION_NAME(SCIFlushReadBuffers)
DLL void SCIFlushReadBuffers(sci_sequence_t sequence);




/*********************************************************************************
 *                                                                               *
 * S C I   P R O B E   N O D E                                                   *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_NO_LINK_ACCESS        - It was not possible to communicate via the   *
 *                                  local adapter.                               *
 *  SCI_ERR_NO_REMOTE_LINK_ACCESS - It was not possible to communicate via a     *
 *                                  remote switch port.                          *
 *                                                                               *
 *********************************************************************************/
#define SCIProbeNode                             _SISCI_EXPANDE_FUNCTION_NAME(SCIProbeNode)
DLL int SCIProbeNode(sci_desc_t   sd,
                     unsigned int localAdapterNo,
                     unsigned int nodeId,
                     unsigned int flags,
                     sci_error_t  *error);



/*********************************************************************************
 *                                                                               *
 * S C I   G E T   C S R   R E G I S T E R                                       *
 *                                                                               *
 *  SISCI Priveleged function                                                    *
 *                                                                               *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_NO_LINK_ACCESS        - It was not possible to communicate via the   *
 *                                  local adapter.                               *
 *  SCI_ERR_NO_REMOTE_LINK_ACCESS - It was not possible to communicate via a     *
 *                                  remote switch port.                          *
 *                                                                               *
 *********************************************************************************/
#define SCIGetCSRRegister                        _SISCI_EXPANDE_FUNCTION_NAME(SCIGetCSRRegister)
DLL unsigned int SCIGetCSRRegister(sci_desc_t   sd,
                                   unsigned int localAdapterNo,
                                   unsigned int SCINodeId,
                                   unsigned int CSROffset,
                                   unsigned int flags,
                                   sci_error_t  *error);



/*********************************************************************************
 *                                                                               *
 * S C I   S E T   C S R   R E G I S T E R                                       *
 *                                                                               *
 *  SISCI Priveleged function                                                    *
 *                                                                               *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_NO_LINK_ACCESS        - It was not possible to communicate via the   *
 *                                  local adapter.                               *
 *  SCI_ERR_NO_REMOTE_LINK_ACCESS - It was not possible to communicate via a     *
 *                                  remote switch port.                          *
 *                                                                               *
 *********************************************************************************/
#define SCISetCSRRegister                        _SISCI_EXPANDE_FUNCTION_NAME(SCISetCSRRegister)
DLL void SCISetCSRRegister(sci_desc_t   sd,
                           unsigned int localAdapterNo,
                           unsigned int SCINodeId,
                           unsigned int CSROffset,
                           unsigned int CSRValue,
                           unsigned int flags,
                           sci_error_t  *error);


/*********************************************************************************
 *                                                                               *
 * S C I   G E T   L O C A L   C S R                                             *
 *                                                                               *
 *  SISCI Priveleged function                                                    *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCIGetLocalCSR                           _SISCI_EXPANDE_FUNCTION_NAME(SCIGetLocalCSR)
DLL unsigned int SCIGetLocalCSR(sci_desc_t   sd,
                                unsigned int localAdapterNo,
                                unsigned int CSROffset,
                                unsigned int flags,
                                sci_error_t  *error);



/*********************************************************************************
 *                                                                               *
 * S C I   S E T   L O C A L   C S R                                             *
 *                                                                               *
 *  SISCI Priveleged function
 *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCISetLocalCSR                           _SISCI_EXPANDE_FUNCTION_NAME(SCISetLocalCSR)
DLL void SCISetLocalCSR(sci_desc_t        sd,
                        unsigned int      localAdapterNo,
                        unsigned int      CSROffset,
                        unsigned int      CSRValue,
                        unsigned int      flags,
                        sci_error_t       *error);



/*********************************************************************************
 *                                                                               *
 * S C I   A T T A C H   P H Y S I C A L   M E M O R Y                           *
 *                                                                               *
 *  SISCI Priveleged function                                                    *
 *                                                                               *
 *  Description:                                                                 *
 *                                                                               *
 *  This function enables usage of physical devices and memory regions where the *
 *  Physical PCI bus address ( and mapped CPU address ) are already known.       *
 *  The function will register the physical memory as a SISCI segment which can  *
 *  be connected and mapped as a regular SISCI segment.                          *
 *                                                                               *
 *  Requirements:                                                                *
 *                                                                               *
 *  SCICreateSegment() with flag SCI_FLAG_EMPTY must have been called in advance *                  
 *                                                                               *                 
 *  Parameter description:                                                       *  
 *  sci_ioaddr_t ioaddress : This is the address on the PCI bus that a PCI bus   *
 *                           master has to use to write to the specified memory  *
 *  void * address         : This is the (mapped) virtual address that the       *
 *                           application has to use to access the device.        *
 *                           This means that the device has to be mapped in      *
 *                           advance bye the devices own driver.                 *
 *                           If the device is not to be accessed by the local    *
 *                           CPU, the address pointer shold be set to NULL       *
 *   Flags                                                                       *
 *                                                                               *
 *   None                                                                        *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCIAttachPhysicalMemory                  _SISCI_EXPANDE_FUNCTION_NAME(SCIAttachPhysicalMemory)
DLL void SCIAttachPhysicalMemory(sci_ioaddr_t         ioaddress,
                                 void                *address,
                                 unsigned int         busNo,
                                 unsigned int         size,
                                 sci_local_segment_t  segment,
                                 unsigned int         flags,
                                 sci_error_t         *error);



/*********************************************************************************
 *                                                                               *
 * S C I   Q U E R Y                                                             *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_ILLEGAL_QUERY         - Unrecognized command.                        *
 *                                                                               *
 *********************************************************************************/
#define SCIQuery                                 _SISCI_EXPANDE_FUNCTION_NAME(SCIQuery)
DLL void SCIQuery(unsigned int command,
                  void         *data,
                  unsigned int flags,
                  sci_error_t  *error);


/* MAJOR QUERY COMMANDS                                             */

/* This command requires a pointer to a structure of type           */
/* "sci_query_string". The string will be filled in by the query.   */
#define SCI_Q_VENDORID                                     _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_VENDORID)
extern const unsigned int SCI_Q_VENDORID; 


/* Same as for SCI_VENDOR_ID                                        */
#define SCI_Q_API                                          _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_API)
extern const unsigned int SCI_Q_API;       


/* User passes a pointer to an allocated object of the              */
/* "sci_query_adapter" struct.                                      */
#define SCI_Q_ADAPTER                                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER)
extern const unsigned int SCI_Q_ADAPTER;


/* User passes a pointer to an allocated object of the              */
/* "sci_query_system" struct.                                       */
#define SCI_Q_SYSTEM                                       _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_SYSTEM)
extern const unsigned int SCI_Q_SYSTEM; 

#define SCI_Q_LOCAL_SEGMENT                                _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_LOCAL_SEGMENT)
extern const unsigned int SCI_Q_LOCAL_SEGMENT; 

#define SCI_Q_REMOTE_SEGMENT                                _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_REMOTE_SEGMENT)
extern const unsigned int SCI_Q_REMOTE_SEGMENT; 

#define SCI_Q_MAP                                           _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_MAP)
extern const unsigned int SCI_Q_MAP; 

typedef struct {
    char         *str;                     /* Pointer to a string of minimum "length" characters */
    unsigned int length;
} sci_query_string_t;


typedef struct {
    unsigned int localAdapterNo;           /* The adapter no. that the query concern.          */
    unsigned int portNo;                   /* The SCI Link port number that the query concern. */
    unsigned int subcommand;               /* A subcommand as specified below.                 */
    void         *data;                    /* A pointer to an unsigned int that will return    */
                                           /* the response to the query.                       */
} sci_query_adapter_t;


typedef struct {
    unsigned int subcommand;               /* A subcommand as specified below.                 */
    void         *data;                    /* A pointer to an unsigned int that will return    */
                                           /* the response to the query.                       */
} sci_query_system_t;

typedef struct {
    sci_local_segment_t  segment;
    unsigned int         subcommand;
    union {
        sci_ioaddr_t     ioaddr;
    }                    data;
} sci_query_local_segment_t;

typedef struct {
    sci_remote_segment_t segment;
    unsigned int         subcommand;
    union {
        sci_ioaddr_t     ioaddr;
    }                    data;
} sci_query_remote_segment_t;

typedef struct {
    sci_map_t            map;
    unsigned int         subcommand;
    unsigned int         data;
} sci_query_map_t;

/* Minor query commands (sub-commands) for adapter specific information SCI_ADAPTER */
#define SCI_Q_ADAPTER_DMA_SIZE_ALIGNMENT                   _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_DMA_SIZE_ALIGNMENT)
extern const unsigned int SCI_Q_ADAPTER_DMA_SIZE_ALIGNMENT;

#define SCI_Q_ADAPTER_DMA_OFFSET_ALIGNMENT                 _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_DMA_OFFSET_ALIGNMENT)
extern const unsigned int SCI_Q_ADAPTER_DMA_OFFSET_ALIGNMENT;

#define SCI_Q_ADAPTER_DMA_MTU                              _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_DMA_MTU)
extern const unsigned int SCI_Q_ADAPTER_DMA_MTU;

#define SCI_Q_ADAPTER_SUGGESTED_MIN_DMA_SIZE               _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_SUGGESTED_MIN_DMA_SIZE)
extern const unsigned int SCI_Q_ADAPTER_SUGGESTED_MIN_DMA_SIZE;

#define SCI_Q_ADAPTER_SUGGESTED_MIN_BLOCK_SIZE             _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_SUGGESTED_MIN_BLOCK_SIZE)
extern const unsigned int SCI_Q_ADAPTER_SUGGESTED_MIN_BLOCK_SIZE;

#define SCI_Q_ADAPTER_NODEID                               _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_NODEID)
extern const unsigned int SCI_Q_ADAPTER_NODEID;

#define SCI_Q_ADAPTER_SERIAL_NUMBER                        _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_SERIAL_NUMBER)
extern const unsigned int SCI_Q_ADAPTER_SERIAL_NUMBER;

#define SCI_Q_ADAPTER_CARD_TYPE                            _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_CARD_TYPE)
extern const unsigned int SCI_Q_ADAPTER_CARD_TYPE;

#define SCI_Q_ADAPTER_NUMBER_OF_STREAMS                    _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_NUMBER_OF_STREAMS)
extern const unsigned int SCI_Q_ADAPTER_NUMBER_OF_STREAMS;

#define SCI_Q_ADAPTER_STREAM_BUFFER_SIZE                   _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_STREAM_BUFFER_SIZE)
extern const unsigned int SCI_Q_ADAPTER_STREAM_BUFFER_SIZE;

#define SCI_Q_ADAPTER_CONFIGURED                           _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_CONFIGURED)
extern const unsigned int SCI_Q_ADAPTER_CONFIGURED;

#define SCI_Q_ADAPTER_LINK_OPERATIONAL                     _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_LINK_OPERATIONAL)
extern const unsigned int SCI_Q_ADAPTER_LINK_OPERATIONAL;

#define SCI_Q_ADAPTER_HW_LINK_STATUS_IS_OK                 _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_HW_LINK_STATUS_IS_OK)
extern const unsigned int SCI_Q_ADAPTER_HW_LINK_STATUS_IS_OK;

#define SCI_Q_ADAPTER_NUMBER                               _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_NUMBER)
extern const unsigned int SCI_Q_ADAPTER_NUMBER;

#define SCI_Q_ADAPTER_INSTANCE_NUMBER                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_INSTANCE_NUMBER)
extern const unsigned int SCI_Q_ADAPTER_INSTANCE_NUMBER;

#define SCI_Q_ADAPTER_FIRMWARE_OK                          _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_FIRMWARE_OK)
extern const unsigned int SCI_Q_ADAPTER_FIRMWARE_OK;

#define SCI_Q_ADAPTER_CONNECTED_TO_SWITCH                  _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_CONNECTED_TO_SWITCH)
extern const unsigned int SCI_Q_ADAPTER_CONNECTED_TO_SWITCH;

#define SCI_Q_ADAPTER_LOCAL_SWITCH_TYPE                    _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_LOCAL_SWITCH_TYPE)
extern const unsigned int SCI_Q_ADAPTER_LOCAL_SWITCH_TYPE;

#define SCI_Q_ADAPTER_LOCAL_SWITCH_PORT_NUMBER             _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_LOCAL_SWITCH_PORT_NUMBER)
extern const unsigned int SCI_Q_ADAPTER_LOCAL_SWITCH_PORT_NUMBER;

#define SCI_Q_ADAPTER_CONNECTED_TO_EXPECTED_SWITCH_PORT    _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_CONNECTED_TO_EXPECTED_SWITCH_PORT)
extern const unsigned int SCI_Q_ADAPTER_CONNECTED_TO_EXPECTED_SWITCH_PORT;

#define SCI_Q_ADAPTER_ATT_PAGE_SIZE                        _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_ATT_PAGE_SIZE)
extern const unsigned int SCI_Q_ADAPTER_ATT_PAGE_SIZE;

#define SCI_Q_ADAPTER_ATT_NUMBER_OF_ENTRIES                _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_ATT_NUMBER_OF_ENTRIES)
extern const unsigned int SCI_Q_ADAPTER_ATT_NUMBER_OF_ENTRIES;

#define SCI_Q_ADAPTER_ATT_AVAILABLE_ENTRIES                _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_ATT_AVAILABLE_ENTRIES)
extern const unsigned int SCI_Q_ADAPTER_ATT_AVAILABLE_ENTRIES;

#define SCI_Q_ADAPTER_PHYS_MEM_NODEID                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_SCI_Q_ADAPTER_PHYS_MEM_NODEID)
extern const unsigned int SCI_Q_ADAPTER_PHYS_MEM_NODEID;

#define SCI_Q_ADAPTER_PHYS_MBX_NODEID                      _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_SCI_Q_ADAPTER_PHYS_MBX_NODEID)
extern const unsigned int SCI_Q_ADAPTER_PHYS_MBX_NODEID;

#define SCI_Q_ADAPTER_PHYS_LINK_PORT_NODEID                _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_PHYS_LINK_PORT_NODEID)
extern const unsigned int SCI_Q_ADAPTER_PHYS_LINK_PORT_NODEID;

#define SCI_Q_ADAPTER_SCI_LINK_FREQUENCY                   _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_SCI_LINK_FREQUENCY)
extern const unsigned int SCI_Q_ADAPTER_SCI_LINK_FREQUENCY;

#define SCI_Q_ADAPTER_B_LINK_FREQUENCY                     _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_B_LINK_FREQUENCY)
extern const unsigned int SCI_Q_ADAPTER_B_LINK_FREQUENCY;

#define SCI_Q_ADAPTER_IO_BUS_FREQUENCY                     _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_ADAPTER_IO_BUS_FREQUENCY)
extern const unsigned int SCI_Q_ADAPTER_IO_BUS_FREQUENCY;

/* Minor query commands (sub-commands) for adapter specific information SCI_SYSTEM */
#define SCI_Q_SYSTEM_HOSTBRIDGE                            _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_SYSTEM_HOSTBRIDGE)
extern const unsigned int SCI_Q_SYSTEM_HOSTBRIDGE;

#define SCI_Q_SYSTEM_WRITE_POSTING_ENABLED                 _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_SYSTEM_WRITE_POSTING_ENABLED)
extern const unsigned int SCI_Q_SYSTEM_WRITE_POSTING_ENABLED;

#define SCI_Q_SYSTEM_WRITE_COMBINING_ENABLED               _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_SYSTEM_WRITE_COMBINING_ENABLED)
extern const unsigned int SCI_Q_SYSTEM_WRITE_COMBINING_ENABLED;

#define SCI_Q_LOCAL_SEGMENT_IOADDR                         _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_LOCAL_SEGMENT_IOADDR)
extern const unsigned int SCI_Q_LOCAL_SEGMENT_IOADDR;

#define SCI_Q_REMOTE_SEGMENT_IOADDR                         _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_REMOTE_SEGMENT_IOADDR)
extern const unsigned int SCI_Q_REMOTE_SEGMENT_IOADDR;

#define SCI_Q_MAP_MAPPED_TO_LOCAL_TARGET                    _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_MAP_MAPPED_TO_LOCAL_TARGET)
extern const unsigned int SCI_Q_MAP_MAPPED_TO_LOCAL_TARGET;

#define SCI_Q_MAP_QUERY_REMOTE_MAPPED_TO_LOCAL_TARGET       _SISCI_EXPANDE_CONSTANT_NAME(SCI_Q_MAP_QUERY_REMOTE_MAPPED_TO_LOCAL_TARGET)
extern const unsigned int SCI_Q_MAP_QUERY_REMOTE_MAPPED_TO_LOCAL_TARGET;

#define HOSTBRIDGE_NOT_AVAILABLE                           _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_NOT_AVAILABLE)
extern const unsigned int HOSTBRIDGE_NOT_AVAILABLE; 

#define HOSTBRIDGE_UNKNOWN                                 _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_UNKNOWN)
extern const unsigned int HOSTBRIDGE_UNKNOWN; 

#define HOSTBRIDGE_440FX                                   _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_440FX)
extern const unsigned int HOSTBRIDGE_440FX;  

#define HOSTBRIDGE_440LX                                   _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_440LX)
extern const unsigned int HOSTBRIDGE_440LX;   

#define HOSTBRIDGE_440BX_A                                 _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_440BX_A)
extern const unsigned int HOSTBRIDGE_440BX_A;

#define HOSTBRIDGE_440BX_B                                 _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_440BX_B)
extern const unsigned int HOSTBRIDGE_440BX_B;

#define HOSTBRIDGE_440GX                                   _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_440GX)
extern const unsigned int HOSTBRIDGE_440GX; 

#define HOSTBRIDGE_450KX                                   _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_450KX)
extern const unsigned int HOSTBRIDGE_450KX; 

#define HOSTBRIDGE_430NX                                   _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_430NX)
extern const unsigned int HOSTBRIDGE_430NX;

#define HOSTBRIDGE_450NX                                   _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_450NX)
extern const unsigned int HOSTBRIDGE_450NX;

#define HOSTBRIDGE_450NX_MICO                              _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_450NX_MICO)
extern const unsigned int HOSTBRIDGE_450NX_MICO;

#define HOSTBRIDGE_450NX_PXB                               _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_450NX_PXB)
extern const unsigned int HOSTBRIDGE_450NX_PXB;

#define HOSTBRIDGE_I810                                    _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_I810)
extern const unsigned int HOSTBRIDGE_I810;

#define HOSTBRIDGE_I810_DC100                              _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_I810_DC100)
extern const unsigned int HOSTBRIDGE_I810_DC100;

#define HOSTBRIDGE_I810E                                   _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_I810E)
extern const unsigned int HOSTBRIDGE_I810E;

#define HOSTBRIDGE_I815                                    _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_I815)
extern const unsigned int HOSTBRIDGE_I815;

#define HOSTBRIDGE_I840                                    _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_I840)
extern const unsigned int HOSTBRIDGE_I840;

#define HOSTBRIDGE_I850                                    _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_I850)
extern const unsigned int HOSTBRIDGE_I850;

#define HOSTBRIDGE_I860                                    _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_I860)
extern const unsigned int HOSTBRIDGE_I860;

#define HOSTBRIDGE_INTEL_E7500                             _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_INTEL_E7500)
extern const unsigned int HOSTBRIDGE_INTEL_E7500;

#define HOSTBRIDGE_VIA_KT133                               _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_VIA_KT133)
extern const unsigned int HOSTBRIDGE_VIA_KT133;

#define HOSTBRIDGE_VIA_KX133                               _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_VIA_KX133)
extern const unsigned int HOSTBRIDGE_VIA_KX133;

#define HOSTBRIDGE_VIA_APOLLO_PRO_133A                     _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_VIA_APOLLO_PRO_133A)
extern const unsigned int HOSTBRIDGE_VIA_APOLLO_PRO_133A;

#define HOSTBRIDGE_VIA_APOLLO_PRO_266                       _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_VIA_APOLLO_PRO_266)
extern const unsigned int HOSTBRIDGE_VIA_APOLLO_PRO_266;

#define HOSTBRIDGE_AMD_760_MP                              _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_AMD_760_MP)
extern const unsigned int HOSTBRIDGE_AMD_760_MP;

#define HOSTBRIDGE_AMD_HAMMER                              _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_AMD_HAMMER)
extern const unsigned int HOSTBRIDGE_AMD_HAMMER;

#define HOSTBRIDGE_SERVERWORKS_HE                          _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_SERVERWORKS_HE)
extern const unsigned int HOSTBRIDGE_SERVERWORKS_HE;

#define HOSTBRIDGE_SERVERWORKS_HE_B                        _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_SERVERWORKS_HE_B)
extern const unsigned int HOSTBRIDGE_SERVERWORKS_HE_B;

#define HOSTBRIDGE_SERVERWORKS_LE                          _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_SERVERWORKS_LE)
extern const unsigned int HOSTBRIDGE_SERVERWORKS_LE;

#define HOSTBRIDGE_SERVERWORKS_GC_HE                       _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_SERVERWORKS_GC_HE)
extern const unsigned int HOSTBRIDGE_SERVERWORKS_GC_HE;

#define HOSTBRIDGE_SERVERWORKS_GC_LE                       _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_SERVERWORKS_GC_LE)
extern const unsigned int HOSTBRIDGE_SERVERWORKS_GC_LE;

#define HOSTBRIDGE_SERVERWORKS_GC_WS                       _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_SERVERWORKS_GC_WS)
extern const unsigned int HOSTBRIDGE_SERVERWORKS_GC_WS;

#define HOSTBRIDGE_SERVERWORKS_GC_SL                       _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_SERVERWORKS_GC_SL)
extern const unsigned int HOSTBRIDGE_SERVERWORKS_GC_SL;


#define HOSTBRIDGE_WRITE_POSTING_DISABLED                  _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_WRITE_POSTING_DISABLED)
extern const unsigned int HOSTBRIDGE_WRITE_POSTING_DISABLED;

#define HOSTBRIDGE_WRITE_POSTING_ENABLED                   _SISCI_EXPANDE_CONSTANT_NAME(HOSTBRIDGE_WRITE_POSTING_ENABLED)
extern const unsigned int HOSTBRIDGE_WRITE_POSTING_ENABLED;




/*********************************************************************************
 *                                                                               *
 * S C I   C R E A T E   D M A   Q U E U E                                       *
 *                                                                               *
 *  Flags                                                                        *
 *                                                                               *
 *   SCI_FLAG_DMA_PHDMA : Create physical DMA queue. Please note that this is an *
 *                        priveleged operation.                                  *
 *                                                                               *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *********************************************************************************/
#define SCICreateDMAQueue                        _SISCI_EXPANDE_FUNCTION_NAME(SCICreateDMAQueue)
DLL void SCICreateDMAQueue(sci_desc_t      sd,
                           sci_dma_queue_t *dq,
                           unsigned int    localAdapterNo,
                           unsigned int    maxEntries,
                           unsigned int    flags,
                           sci_error_t     *error);



/*********************************************************************************
 *                                                                               *
 * S C I   R E M O V E   D M A   Q U E U E                                       *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *                                                                               *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_ILLEGAL_OPERATION     - Not allowed in this queue state.             *
 *                                                                               *
 *********************************************************************************/
#define SCIRemoveDMAQueue                        _SISCI_EXPANDE_FUNCTION_NAME(SCIRemoveDMAQueue)
DLL void SCIRemoveDMAQueue(sci_dma_queue_t dq,
                           unsigned int    flags,
                           sci_error_t     *error);



/*********************************************************************************
 *                                                                               *
 * S C I   E N Q U E U E   D M A   T R A N S F E R                               *
 *                                                                               *
 *  Flags:                                                                       *
 *                                                                               *
 *  SCI_FLAG_DMA_READ             - The DMA will be remote --> local             *
 *                                  (default is local --> remote)                *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_OUT_OF_RANGE          - The sum of the offset and size is larger     *
 *                                  than the segment size or larger than max     *
 *                                  DMA size.                                    *
 *  SCI_ERR_MAX_ENTRIES	          - The DMA queue is full                        *
 *  SCI_ERR_ILLEGAL_OPERATION     - Illegal operation                            *
 *  SCI_ERR_SIZE_ALIGNMENT        - Size is not correctly aligned as required    *
 *                                  by the implementation.                       *
 *  SCI_ERR_OFFSET_ALIGNMENT      - Offset is not correctly aligned as required  *
 *                                  by the implementation.                       *
 *  SCI_ERR_SEGMENT_NOT_PREPARED  - The local segment has not been prepared for  *
 *                                  access from the adapter associated with the  *
 *                                  queue.                                       *
 *  SCI_ERR_SEGMENT_NOT_CONNECTED - The remote segment is not connected through  *
 *                                  the adapter associated with the queue.       *   
 *********************************************************************************/
#define SCIEnqueueDMATransfer                    _SISCI_EXPANDE_FUNCTION_NAME(SCIEnqueueDMATransfer)
DLL sci_dma_queue_state_t SCIEnqueueDMATransfer(sci_dma_queue_t      dq,
                               sci_local_segment_t  localSegment,
                               sci_remote_segment_t remoteSegment,
                               unsigned int         localOffset,
                               unsigned int         remoteOffset,
                               unsigned int         size,
                               unsigned int         flags,
                               sci_error_t          *error);



/*********************************************************************************
 *                                                                               *
 * S C I   P O S T   D M A   Q U E U E                                           *
 *                                                                               *
 *  Flags:                                                                       *
 *                                                                               *
 *  SCI_FLAG_USE_CALLBACK      - The end of the transfer will cause the callback *
 *                               function to be invoked.                         *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_ILLEGAL_OPERATION  - Illegal operation                               *
 *                                                                               *
 *********************************************************************************/
#define SCIPostDMAQueue                          _SISCI_EXPANDE_FUNCTION_NAME(SCIPostDMAQueue)
DLL void SCIPostDMAQueue(sci_dma_queue_t dq, 
                         sci_cb_dma_t    callback, 
                         void            *callbackArg,
                         unsigned int    flags,
                         sci_error_t     *error);



/*********************************************************************************
 *                                                                               *
 * S C I   A B O R T   D M A   Q U E U E                                         *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_ILLEGAL_OPERATION     - Illegal operation                            *
 *                                                                               *
 *********************************************************************************/
#define SCIAbortDMAQueue                         _SISCI_EXPANDE_FUNCTION_NAME(SCIAbortDMAQueue)
DLL void SCIAbortDMAQueue(sci_dma_queue_t dq,
                          unsigned int    flags,
                          sci_error_t     *error);


/*********************************************************************************
 *                                                                               *
 * S C I   R E S E T   D M A   Q U E U E                                         *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *                                                                               *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCIResetDMAQueue                         _SISCI_EXPANDE_FUNCTION_NAME(SCIResetDMAQueue)
DLL void SCIResetDMAQueue(sci_dma_queue_t dq,
                          unsigned int    flags,
                          sci_error_t     *error);



/*********************************************************************************
 *                                                                               *
 * S C I   D M A   Q U E U E   S T A T E                                         *
 *                                                                               *
 *********************************************************************************/
#define SCIDMAQueueState                         _SISCI_EXPANDE_FUNCTION_NAME(SCIDMAQueueState)
DLL sci_dma_queue_state_t SCIDMAQueueState(sci_dma_queue_t dq);



/*********************************************************************************
 *                                                                               *
 * S C I   W A I T   F O R   D M A   Q U E U E                                   *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_ILLEGAL_OPERATION     - Illegal operation                            *
 *  SCI_ERR_TIMEOUT               - The function timed out after specified       *
 *                                  timeout value.                               * 
 *                                                                               *
 *********************************************************************************/
#define SCIWaitForDMAQueue                       _SISCI_EXPANDE_FUNCTION_NAME(SCIWaitForDMAQueue)
DLL sci_dma_queue_state_t SCIWaitForDMAQueue(sci_dma_queue_t dq,
                                             unsigned int    timeout,
                                             unsigned int    flags,
                                             sci_error_t     *error);




/*********************************************************************************
 *                                                                               *
 *    S C I   P H   D M A   E N Q U E U E                                        *
 *                                                                               *
 *  SISCI Priveleged function                                                    *
 *                                                                               *
 *  Flags                                                                        *
 *                                                                               *
 *   SCI_FLAG_DMA_READ                                                           *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *********************************************************************************/
#define SCIphDmaEnqueue _SISCI_EXPANDE_FUNCTION_NAME(SCIphDmaEnqueue)
DLL void SCIphDmaEnqueue(sci_dma_queue_t  dmaqueue,
                         unsigned int     size,
                         sci_ioaddr_t     localBusAddr,
                         unsigned int     remote_nodeid,
                         unsigned int     remote_highaddr,
                         unsigned int     remote_lowaddr,
                         unsigned int     flags,
                         sci_error_t     *error);

/*********************************************************************************
 *                                                                               *
 *    S C I   P H   D M A   S T A R T                                            *
 *                                                                               *
 *  Flags                                                                        *
 *                                                                               *
 *  SCI_FLAG_DMA_WAIT                                                            *
 *  SCI_FLAG_USE_CALLBACK                                                        *
 *  SCI_FLAG_DMA_RESET                                                           *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *********************************************************************************/
#define SCIphDmaStart _SISCI_EXPANDE_FUNCTION_NAME(SCIphDmaStart)
DLL sci_dma_queue_state_t SCIphDmaStart(sci_dma_queue_t  dmaqueue,
                                        sci_cb_dma_t     callback,
                                        void            *callbackArg,
                                        unsigned int     flags,
                                        sci_error_t     *error);

/*********************************************************************************
 *                                                                               *
 * S C I   C R E A T E   I N T E R R U P T                                       *
 *                                                                               *
 *  Flags                                                                        *
 *                                                                               *
 *  SCI_FLAG_USE_CALLBACK                                                        *
 *  SCI_FLAG_FIXED_INTNO                                                         *
 *  SCI_FLAG_SHARED_INT                                                          *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_INTNO_USED     - This interrupt number is already used.              *
 *                                                                               *
 *********************************************************************************/
#define SCICreateInterrupt                       _SISCI_EXPANDE_FUNCTION_NAME(SCICreateInterrupt)
DLL void SCICreateInterrupt(sci_desc_t            sd,
                            sci_local_interrupt_t *interrupt,
                            unsigned int          localAdapterNo,
                            unsigned int          *interruptNo,
                            sci_cb_interrupt_t    callback,
                            void                  *callbackArg,
                            unsigned int          flags,
                            sci_error_t           *error);



/*********************************************************************************
 *                                                                               *
 * S C I   R E M O V E   I N T E R R U P T                                       *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *********************************************************************************/
#define SCIRemoveInterrupt                       _SISCI_EXPANDE_FUNCTION_NAME(SCIRemoveInterrupt)
DLL void SCIRemoveInterrupt(sci_local_interrupt_t interrupt,
                            unsigned int          flags,
                            sci_error_t           *error);




/*********************************************************************************
 *                                                                               *
 * S C I   W A I T   F O R   I N T E R R U P T                                   *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_TIMEOUT     - The function timed out after specified timeout value.  *
 *  SCI_ERR_CANCELLED   - The wait was interrupted by a call to                  *
 *                        SCIRemoveInterrupt.                                    *
 *                        The handle is invalid when this error code is returned.*
 *                                                                               *
 *********************************************************************************/
#define SCIWaitForInterrupt                      _SISCI_EXPANDE_FUNCTION_NAME(SCIWaitForInterrupt)
DLL void SCIWaitForInterrupt(sci_local_interrupt_t interrupt, 
                             unsigned int          timeout,
                             unsigned int          flags, 
                             sci_error_t           *error);




/*********************************************************************************
 *                                                                               *
 * S C I   C O N N E C T  I N T E R R U P T                                      *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_NO_SUCH_INTNO	    - No such interrupt number.                      *
 *  SCI_ERR_CONNECTION_REFUSED  - Connection attempt refused by remote node.     *
 *  SCI_ERR_TIMEOUT             - The function timed out after specified         *
 *                                timeout value.                                 *
 *                                                                               *
 *********************************************************************************/
#define SCIConnectInterrupt                      _SISCI_EXPANDE_FUNCTION_NAME(SCIConnectInterrupt)
DLL void SCIConnectInterrupt(sci_desc_t             sd,
                             sci_remote_interrupt_t *interrupt,
                             unsigned int           nodeId,
                             unsigned int           localAdapterNo,
                             unsigned int           interruptNo,
                             unsigned int           timeout,
                             unsigned int           flags,
                             sci_error_t            *error);


/*********************************************************************************
 *                                                                               *
 * S C I   D I S C O N N E C T   I N T E R R U P T                               *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCIDisconnectInterrupt                   _SISCI_EXPANDE_FUNCTION_NAME(SCIDisconnectInterrupt)
DLL void SCIDisconnectInterrupt(sci_remote_interrupt_t interrupt,
                                unsigned int           flags,
                                sci_error_t            *error);




/*********************************************************************************
 *                                                                               *
 * S C I   T R I G G E R   I N T E R R U P T                                     *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCITriggerInterrupt                      _SISCI_EXPANDE_FUNCTION_NAME(SCITriggerInterrupt)
DLL void SCITriggerInterrupt(sci_remote_interrupt_t interrupt,
                             unsigned int           flags,
                             sci_error_t            *error);




/*********************************************************************************
 *                                                                               *
 *  S C I   R E G I S T E R   I N T E R R U P T  F L A G                         *
 *                                                                               *
 *                                                                               *
 *  This function register an "interrupt flag" that is identified as an unique   *
 *  location within a local segment. If successful, the resulting interrupt      *
 *  handle will have been associated with the specified local segment.           *
 *                                                                               *
 *  It is up to the (remote) client(s) to set up an "interrupt mapping" for the  *
 *  corresponding segment offset using either the                                *
 *                                                                               *
 *  - SCI_FLAG_CONDITIONAL_INTERRUPT_MAP                                         *
 *                                                                               *
 *     or the                                                                    *
 *                                                                               *
 *  -  SCI_FLAG_UNCONDITIONAL_DATA_INTERRUPT_MAP                                 *
 *                                                                               *
 *  option to "SCIMapRemoteSegment()". - I.e. after having established a         *
 *  connection to the corresponding segment. A trigger operation can then        *
 *  be implemented using a store operation via the relevant "interrupt map".     *
 *                                                                               *
 *                                                                               *
 *                                                                               *
 *                                                                               *
 *                                                                               *
 *  Flags:                                                                       *
 *                                                                               *
 *  SCI_FLAG_CONDITIONAL_INTERRUPT - Triggering is to take place using           *
 *                                   "conditional interrupts".                   *
 *                                                                               *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *     None.                                                                     *
 *                                                                               *
 *********************************************************************************/
#define SCIRegisterInterruptFlag                 _SISCI_EXPANDE_FUNCTION_NAME(SCIRegisterInterruptFlag)
DLL void SCIRegisterInterruptFlag(
                            unsigned int           localAdapterNo,
                            sci_local_interrupt_t *interrupt,
                            sci_local_segment_t    segment,
                            unsigned int           offset,
                            sci_cb_interrupt_t     callback,
                            void                  *callbackArg,
                            unsigned int           flags,
                            sci_error_t           *error);




/*********************************************************************************
 *                                                                               *
 *  S C I   E N A B L E   C O N D I T I O N A L   I N T E R R U P T              *
 *                                                                               *
 *                                                                               *
 *  This function make sure that another HW interrupt will take place the next   *
 *  time the corresponding interrupt flag is triggered by a                      *
 *  "conditional interrupt" operation.                                           *
 *                                                                               *
 *  Default semantics:                                                           *
 *                                                                               *
 *  When successful, the client can rely on that the first subsequent trigger    *
 *  operation will cause a HW interrupt and subsequently cause the client        *
 *  handler function to be invoked.                                              *
 *                                                                               *
 *  If an interrupt was triggered in parallell with the enable operation, then   *
 *  the operation will fail (SCI_ERR_COND_INT_RACE_PROBLEM), and the client can  *
 *  not rely on another trigger operation will lead to handler invocation.       *
 *  Hence, any state checking normally associated with handling the              *
 *  corresponding interrupt should take place before attempting to enable        *
 *  again.                                                                       *
 *                                                                               *              
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_COND_INT_RACE_PROBLEM - The enable operation failed because an       *
 *                                  incomming trigger operation happened         *
 *                                  concurrently.                                *
 *                                                                               *
 *********************************************************************************/
#define SCIEnableConditionalInterrupt            _SISCI_EXPANDE_FUNCTION_NAME(SCIEnableConditionalInterrupt)
DLL void SCIEnableConditionalInterrupt(
                            sci_local_interrupt_t interrupt,
                            unsigned int          flags,
                            sci_error_t           *error);




/*********************************************************************************
 *                                                                               *
 *  S C I   D I S A B L E   C O N D I T I O N A L   I N T E R R U P T            *
 *                                                                               *
 *                                                                               *  
 *  Prevent subsequent "conditional interrupt"trigger operations for             *
 *  the specified interupt flag from causing HW interrupt and handler            *
 *  invocations.                                                                 * 
 *                                                                               *
 *                                                                               *
 *  Default semantics:                                                           *
 *                                                                               *
 *  If successful, no subsequent HW interrupts will take place, but handler      *
 *  invocations that have already been scheduled may still take place.           *
 *                                                                               *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *                                                                               *
 *********************************************************************************/
#define SCIDisableConditionalInterrupt           _SISCI_EXPANDE_FUNCTION_NAME(SCIDisableConditionalInterrupt)
DLL void SCIDisableConditionalInterrupt(
                             sci_local_interrupt_t interrupt,
                             unsigned int          flags,
                             sci_error_t           *error);



/*********************************************************************************
 *                                                                               *
 *  S C I   G E T   C O N D I T I O N A L   I N T E R R U P T   C O U N T E R    *
 *                                                                               *
 *                                                                               *
 *  Returns a value that indicates the number of times this flag has             *
 *  been trigged since the last time it was enabled or disabled.                 *
 *  Calling the SCIEnableConditionalInterrupt / SCIDisableConditionalInterrupt   *
 *  functions will reset the counter value.                                      *
 *                                                                               *
 *  Default semantics:                                                           *
 *                                                                               *
 *  If successful, the current trig count is returned in the                     *
 *  interruptTrigCounter parameter.                                              *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_OVERFLOW  - The number of trig operations have exceeded the range    *
 *                   that can be counted.                                        *
 *********************************************************************************/
#define SCIGetConditionalInterruptTrigCounter    _SISCI_EXPANDE_FUNCTION_NAME(SCIGetConditionalInterruptTrigCounter)
DLL void SCIGetConditionalInterruptTrigCounter(
                            sci_local_interrupt_t interrupt,
                            unsigned int          *interruptTrigCounter,
                            unsigned int          flags,
                            sci_error_t           *error);




/*********************************************************************************
 *                                                                               *
 *  S C I   T R A N S F E R  B L O C K                                           *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_OUT_OF_RANGE          - The sum of the size and offset is larger     *
 *                                  than the corresponding map size.             *
 *  SCI_ERR_SIZE_ALIGNMENT        - Size is not correctly aligned as required    *
 *                                  by the implementation.                       *
 *  SCI_ERR_OFFSET_ALIGNMENT      - Offset is not correctly aligned as required  *
 *                                  by the implementation.                       *
 *  SCI_ERR_TRANSFER_FAILED       - The data transfer failed.                    *
 *                                                                               *
 *********************************************************************************/
#define SCITransferBlock                         _SISCI_EXPANDE_FUNCTION_NAME(SCITransferBlock)
DLL void SCITransferBlock(sci_map_t    sourceMap,
                          unsigned int sourceOffset,
                          sci_map_t    destinationMap,
                          unsigned int destinationOffset,
                          unsigned int size,
                          unsigned int flags,
                          sci_error_t  *error);




/*********************************************************************************
 *                                                                               *
 * S C I   T R A N S F E R  B L O C K   A S Y N C                                *
 *                                                                               *
 *  Flags                                                                        *
 *                                                                               *
 *  SCI_FLAG_BLOCK_READ                                                          *
 *  SCI_FLAG_USE_CALLBACK                                                        *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_OUT_OF_RANGE      - The sum of the size and offset is larger than    *
 *                              the corresponding map size.                      *
 *  SCI_ERR_SIZE_ALIGNMENT    - Size is not correctly aligned as required by     *
 *                              the implementation.                              *
 *  SCI_ERR_OFFSET_ALIGNMENT  - Offset is not correctly aligned as required      *
 *                              by the implementation.                           *
 *  SCI_ERR_TRANSFER_FAILED   - The data transfer failed.                        *
 *                                                                               *
 *********************************************************************************/
#define SCITransferBlockAsync                    _SISCI_EXPANDE_FUNCTION_NAME(SCITransferBlockAsync)
DLL void SCITransferBlockAsync(sci_map_t               sourceMap,
                               unsigned int            sourceOffset,
                               sci_map_t               destinationMap,
                               unsigned int            destinationOffset,
                               unsigned int            size,
                               sci_block_transfer_t    *block,
                               sci_cb_block_transfer_t callback,
                               void                    *callbackArg,
                               unsigned int            flags,
                               sci_error_t             *error);




/*********************************************************************************
 *                                                                               *
 * S C I   W A I T   F O R   B L O C K   T R A N S F E R                         *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_ILLEGAL_OPERATION     - Illegal operation                            *
 *  SCI_ERR_TIMEOUT               - The function timed out after specified       *
 *                                  timeout value.                               *
 *                                                                               *
 *********************************************************************************/
#define SCIWaitForBlockTransfer                  _SISCI_EXPANDE_FUNCTION_NAME(SCIWaitForBlockTransfer)
DLL void SCIWaitForBlockTransfer(sci_block_transfer_t block,
                                 unsigned int         timeout,
                                 unsigned int         flags,
                                 sci_error_t          *error);



/*********************************************************************************
 *                                                                               * 
 * S C I   A B O R T   B L O C K   T R A N S F E R                               *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_ILLEGAL_OPERATION     - Illegal operation                            *
 *                                                                               *
 *********************************************************************************/
#define SCIAbortBlockTransfer                    _SISCI_EXPANDE_FUNCTION_NAME(SCIAbortBlockTransfer)
DLL void SCIAbortBlockTransfer(sci_block_transfer_t block,
                               unsigned int         flags,
                               sci_error_t          *error);




/*********************************************************************************
 *                                                                               *
 * S C I   M E M   C P Y                                                         *
 *                                                                               *
 *  Flags:                                                                       *
 *    SCI_FLAG_BLOCK_READ                                                        *
 *    SCI_FLAG_ERROR_CHECK                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_OUT_OF_RANGE          - The sum of the size and offset is larger     *
 *                                  than the corresponding map size.             *
 *  SCI_ERR_SIZE_ALIGNMENT        - Size is not correctly aligned as required    *
 *                                  by the implementation.                       *
 *  SCI_ERR_OFFSET_ALIGNMENT      - Offset is not correctly aligned as required  *
 *                                  by the implementation.                       *
 *  SCI_ERR_TRANSFER_FAILED       - The data transfer failed.                    *
 *                                                                               *
 *********************************************************************************/

#define SCIMemCpy                                _SISCI_EXPANDE_FUNCTION_NAME(SCIMemCpy)
DLL void SCIMemCpy(sci_sequence_t sequence,
                   void           *memAddr,
                   sci_map_t      remoteMap,
                   unsigned int   remoteOffset,
                   unsigned int   size,
                   unsigned int   flags,
                   sci_error_t    *error);



/*********************************************************************************
 *                                                                               *
 * S C I   M E M   C O P Y                                                       *
 *                                                                               *
 *  Flags:                                                                       *
 *    SCI_FLAG_BLOCK_READ                                                        *
 *    SCI_FLAG_ERROR_CHECK                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_OUT_OF_RANGE          - The sum of the size and offset is larger     *
 *                                  than the corresponding map size.             *
 *  SCI_ERR_SIZE_ALIGNMENT        - Size is not correctly aligned as required    *
 *                                  by the implementation.                       *
 *  SCI_ERR_OFFSET_ALIGNMENT      - Offset is not correctly aligned as required  *
 *                                  by the implementation.                       *
 *  SCI_ERR_TRANSFER_FAILED       - The data transfer failed.                    *
 *                                                                               *
 *********************************************************************************/


#define SCIMemCopy                               _SISCI_EXPANDE_FUNCTION_NAME(SCIMemCopy)
DLL void SCIMemCopy(void         *memAddr,
                    sci_map_t    remoteMap,
                    unsigned int remoteOffset,
                    unsigned int size,
                    unsigned int flags,
                    sci_error_t  *error);



/*********************************************************************************
 *                                                                               * 
 * S C I   R E G I S T E R   S E G M E N T   M E M O R Y                         *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_SIZE_ALIGNMENT   - Size is not correctly aligned as required by      *
 *                             the implementation.                               *
 *  SCI_ERR_ILLEGAL_ADDRESS  - Illegal address.                                  *
 *  SCI_ERR_OUT_OF_RANGE     - Size is larger than the maximum size for the      *
 *                             local segment.                                    *
 *                                                                               *
 *********************************************************************************/
#define SCIRegisterSegmentMemory                 _SISCI_EXPANDE_FUNCTION_NAME(SCIRegisterSegmentMemory)
DLL void SCIRegisterSegmentMemory(void                *address,
                                  unsigned int        size,
                                  sci_local_segment_t segment,
                                  unsigned int        flags,
                                  sci_error_t         *error);





/*********************************************************************************
 *                                                                               *
 * S C I   C O N N E C T   S C I   S P A C E                                     *
 *                                                                               *
 *  SISCI Priveleged function                                                    *
 *                                                                               *
 *                                                                               *
 *  Flags                                                                        *
 *   None.                                                                       *
 *                                                                               *
 *                                                                               *
 *  Specific error codes for this function:                                      *
 *                                                                               *
 *  SCI_ERR_SIZE_ALIGNMENT        - Size is not correctly aligned as required    *
 *                                  by the implementation.                       *
 *  SCI_ERR_CONNECTION_REFUSED    - Connection attempt refused by remote node.   *
 *                                                                               *
 *********************************************************************************/
#define SCIConnectSCISpace                       _SISCI_EXPANDE_FUNCTION_NAME(SCIConnectSCISpace)
DLL void SCIConnectSCISpace(sci_desc_t           sd,
                            unsigned int         localAdapterNo,
                            sci_remote_segment_t *segment,
                            sci_address_t        address,
                            unsigned int         size,
                            unsigned int         flags,
                            sci_error_t          *error);



/*
 * =====================================================================================
 *
 *    S C I   A T T A C H   L O C A L   S E G M E N T
 *   Description:
 *
 *     SCIAttachLocalSegment() permits an application to "attach" to an already existing
 *     local segment, implying that two or more application want
 *     share the same local segment. The prerequest, is  that the
 *     application which originally created the segment ("owner") has
 *     preformed a SCIShareSegment() in order to mark the segment
 *     "shareable".
 *
 *
 *   Flags:
 *  
 *     SCI_FLAG_USE_CALLBACK  - The callback function will be invoked for events 
 *                              on this segment.     
 *
 *
 *   Specific error codes for this function:  
 * 
 *     SCI_ERR_ACCESS          - No such shared segment 
 *     SCI_ERR_NO_SUCH_SEGMENT - No such segment 
 *     Note: Current implenentation will return SCI_ERR_ACCESS for both cases. This will
 *           change from next release. Application should handle both cases.   
 *
 * =====================================================================================
 */
#define SCIAttachLocalSegment                    _SISCI_EXPANDE_FUNCTION_NAME(SCIAttachLocalSegment)

DLL void
SCIAttachLocalSegment(sci_desc_t              sd,
                      sci_local_segment_t    *segment,
                      unsigned int            segmentId,
                      unsigned int           *size,
                      sci_cb_local_segment_t callback,
                      void                   *callbackArg,
                      unsigned int           flags,
                      sci_error_t            *error);
/*
 * =====================================================================================
 *
 *    S C I   S H A R E   S E G M E N T
 * 
 *   Description:
 *
 *     SCIShareSegment() permits other application to "attach" to an already existing
 *     local segment, implying that two or more application want
 *     share the same local segment. The prerequest, is  that the
 *     application which originally created the segment ("owner") has
 *     preformed a SCIShareSegment() in order to mark the segment
 *     "shareable".
 *
 *
 *   Flags:
 *     none
 *
 *   Specific error codes for this function:  
 *
 *
 *
 * =====================================================================================
 */
#define SCIShareSegment                          _SISCI_EXPANDE_FUNCTION_NAME(SCIShareSegment)

DLL void
SCIShareSegment(sci_local_segment_t segment,
                unsigned int flags,
                sci_error_t *error);


/*********************************************************************************
 *                                                                               *
 * S C I   F L U S H                                                             *
 *                                                                               *
 *  This function will flush the CPU buffers and the PSB buffers.                *
 *                                                                               *
 *  Flags                                                                        *
 *   SCI_FLAG_FLUSH_CPU_BUFFERS_ONLY :                                           *
 *                                    Only flush CPU buffers ( Write combining   *
 *                                    etc buffers).                              *
 *                                                                               *
 *********************************************************************************/

#define SCIFlush                   _SISCI_EXPANDE_FUNCTION_NAME(SCIFlush)
DLL void SCIFlush(sci_sequence_t sequence,
                         unsigned int   flags);

#if defined(CPLUSPLUS) || defined(__cplusplus)
}
#endif


#endif