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
|
/****************************************************************************
All software on this website is made available under the following terms and
conditions. By downloading this software, you agree to abide by these terms
and conditions with respect to this software.
I2O SIG All rights reserved.
These header files are provided, pursuant to your I2O SIG membership agreement,
free of charge on an as-is basis without warranty of any kind, either express
or implied, including but not limited to, implied warranties or merchantability
and fitness for a particular purpose. I2O SIG does not warrant that this
program will meet the user's requirements or that the operation of these
programs will be uninterrupted or error-free. Acceptance and use of this
program constitutes the user's understanding that he will have no recourse
to I2O SIG for any actual or consequential damages including, but not limited
to, loss profits arising out of use or inability to use this program.
Member is permitted to create derivative works to this header-file program.
However, all copies of the program and its derivative works must contain the
I2O SIG copyright notice.
**************************************************************************/
/*
* This template provides place holders for architecture and compiler
* dependencies. It should be filled in and renamed as i2odep.h.
* i2odep.h is included by i2otypes.h. <xxx> marks the places to fill.
*/
#ifndef __INCi2odeph
#define __INCi2odeph
#define I2ODEP_REV 1_5_4
/*
* Pragma macros. These are to assure appropriate alignment between
* host/IOP as defined by the I2O Specification. Each one of the shared
* header files includes these macros.
*/
#define PRAGMA_ALIGN_PUSH
#define PRAGMA_ALIGN_POP
#define PRAGMA_PACK_PUSH
#define PRAGMA_PACK_POP
/* Setup the basics */
typedef signed char S8;
typedef signed short S16;
typedef unsigned char U8;
typedef unsigned short U16;
typedef unsigned long U32;
typedef unsigned short S32;
#if defined(WIN32) || defined(__UNIX__) || defined(__SPARC__)
typedef char CHAR;
typedef char *pCHAR;
typedef char INT8;
typedef char *pINT8;
typedef unsigned char UINT8;
typedef unsigned char *pUINT8;
typedef short INT16;
typedef short *pINT16;
typedef unsigned short UINT16;
typedef unsigned short *pUINT16;
#ifdef _MSC_VER
#if (_MSC_VER < 1200) // if less than VC++ 6.0
typedef long INT32;
typedef unsigned long UINT32;
#endif
#else
typedef long INT32;
typedef unsigned long UINT32;
#endif
typedef long *pINT32;
typedef unsigned long *pUINT32;
#if (!defined STATIC)
# define STATIC static
#endif
#if (!defined pVOID)
# define pVOID void *
#endif
#if (!defined pBOOLEAN)
# define pBOOLEAN BOOLEAN *
#endif
#endif //WIN32
#if (defined(__SPARC__))
//typedef SCSI_REQUEST_BLOCK OS_REQUEST_T;
//typedef PSCSI_REQUEST_BLOCK pOS_REQUEST_T;
# define STATIC static
# define pVOID void *
# define pBOOLEAN BOOLEAN *
#endif
/* Bitfields */
#if (defined(__BORLANDC__))
typedef U16 BF;
#else
typedef U32 BF;
#endif
/* VOID */
#ifndef __VOID
#if (defined(_DPT_ARC))
# define VOID void
#else
#if !defined(WIN32)
typedef void VOID;
#endif
#endif
#define __VOID
#endif
/* Boolean */
#ifndef __BOOL
#define __BOOL
#if !defined(WIN32)
typedef unsigned char BOOL;
#endif
#endif
#if (!defined(__FAR__))
# if (defined(__BORLANDC__))
# define __FAR__ far
# else
# define __FAR__
# endif
#endif
/* NULL */
#if (!defined(NULL))
# define NULL ((VOID __FAR__ *)0L)
#endif
/*
* Define some generalized portability macros
* These macros follow the following parameterization:
* _F_getXXX(pointer,primaryElement<,offset>,referredElement)
* _F_setXXX(pointer,primaryElement<,offset>,referredElement,newValue)
* These parameters are shortened to u, w, x, y and z to reduce clutter.
*/
#if (defined(__BORLANDC__))
# define I2O_TID_MASK ((U16)((1L<<I2O_TID_SZ)-1))
/* First 12 bits */
# define _F_getTID(w,x,y) (*((U16 __FAR__ *)(&((w)->x))) & I2O_TID_MASK)
# define _F_setTID(w,x,y,z) (*((U16 __FAR__ *)(&((w)->x)))\
&= 0xFFFF - I2O_TID_MASK);\
(*((U16 __FAR__ *)(&((w)->x)))\
|=(U16)(z)&I2O_TID_MASK)
/* Seconds 12 bits (optimized with the assumption of 12 & 12) */
# define _F_getTID1(w,x,y) ((*(U16 __FAR__ *)(((U8 __FAR__ *)(&((w)->x)))\
+ (I2O_TID_SZ/8)))\
>> (I2O_TID_SZ-((I2O_TID_SZ/8)*8)))
# define _F_setTID1(w,x,y,z) ((*((U16 __FAR__ *)(((U8 __FAR__ *)(&((w)->x)))\
+ (I2O_TID_SZ/8)))) &= (0xFFFF >> I2O_TID_SZ));\
((*((U16 __FAR__ *)(((U8 __FAR__ *)(&((w)->x)))\
+ (I2O_TID_SZ/8)))) |= (z)\
<< (I2O_TID_SZ-((I2O_TID_SZ/8)*8)))
/* Last 8 bits */
# define _F_getFunc(w,x,y) (*(((U8 __FAR__ *)(&((w)->x)))\
+ ((I2O_TID_SZ+I2O_TID_SZ)/8)))
# define _F_setFunc(w,x,y,z) (_F_getFunc(w,x,y) = (z))
# define I2O_SG_COUNT_MASK ((U32)((1L<<I2O_SG_COUNT_SZ)-1))
/* First 24 bits */
# define _F_getCount(w,x,y) (*((U32 __FAR__ *)(&((w)->x)))&I2O_SG_COUNT_MASK)
# define _F_setCount(w,x,y,z) (*((U32 __FAR__ *)(&((w)->x)))\
&= 0xFFFFFFFFL - I2O_SG_COUNT_MASK);\
(*((U32 __FAR__ *)(&((w)->x)))\
|= (z) & I2O_SG_COUNT_MASK)
/* Last 8 bits */
# define _F_getFlags(w,x,y) (*(((U8 __FAR__ *)(&((w)->x)))\
+ (I2O_SG_COUNT_SZ/8)))
# define _F_setFlags(w,x,y,z) (_F_getFlags(w,x,y) = (z))
/* Other accesses that are simpler */
# define _F_get1bit(w,x,y,z) ((U8)((w)->z))
# define _F_set1bit(w,x,y,z,u) ((w)->z = (u))
# define _F_get1bit1(w,x,y,z) ((U8)((w)->z))
# define _F_set1bit1(w,x,y,z,u) ((w)->z = (u))
# define _F_get4bit4(w,x,y,z) ((U8)((w)->z))
# define _F_set4bit4(w,x,y,z,u) ((w)->z = (u))
# define _F_get8bit(w,x,y,z) ((U8)((w)->z))
# define _F_set8bit(w,x,y,z,u) ((w)->z = (u))
# define _F_get12bit(w,x,y,z) ((U16)((w)->z))
# define _F_set12bit(w,x,y,z,u) ((w)->z = (u))
# define _F_get12bit4(w,x,y,z) ((U16)((w)->z))
# define _F_set12bit4(w,x,y,z,u) ((w)->z = (u))
# define _F_get16bit(w,x,y,z) ((U16)((w)->z))
# define _F_set16bit(w,x,y,z,u) ((w)->z = (u))
#elif (defined(_DPT_BIG_ENDIAN) || defined(sparc))
/* First 12 bits */
# define _F_getTID(w,x,y) getL12bit(w,x,0)
# define _F_setTID(w,x,y,z) setL12bit(w,x,0,z)
# define _F_getTID1(w,x,y) getL12bit1(w,x,0)
# define _F_setTID1(w,x,y,z) setL12bit1(w,x,0,z)
# define _F_getFunc(w,x,y) getL8bit(w,x,3)
# define _F_setFunc(w,x,y,z) setL8bit(w,x,3,z)
# define _F_getCount(w,x,y) getL24bit1(w,x,0)
# define _F_setCount(w,x,y,z) setL24bit1(w,x,0,z)
# define _F_getFlags(w,x,y) getL8bit(w,x,3)
# define _F_setFlags(w,x,y,z) setL8bit(w,x,3,z)
/* Other accesses that are simpler */
# define _F_get1bit(w,x,y,z) getL1bit(w,x,y)
# define _F_set1bit(w,x,y,z,u) setL1bit(w,x,y,u)
# define _F_get1bit1(w,x,y,z) getL1bit1(w,x,y)
# define _F_set1bit1(w,x,y,z,u) setL1bit1(w,x,y,u)
# define _F_get4bit4(w,x,y,z) getL4bit(w,x,y)
# define _F_set4bit4(w,x,y,z,u) setL4bit(w,x,y,u)
# define _F_get8bit(w,x,y,z) getL8bit(w,x,y)
# define _F_set8bit(w,x,y,z,u) setL8bit(w,x,y,u)
# define _F_get12bit(w,x,y,z) getL12bit(w,x,y)
# define _F_set12bit(w,x,y,z,u) setL12bit(w,x,y,z)
# define _F_get12bit4(w,x,y,z) getL12bit1(w,x,(y)-1)
# define _F_set12bit4(w,x,y,z,u) setL12bit1(w,x,(y)-1,u)
# define _F_get16bit(w,x,y,z) getL16bit(w,x,y)
# define _F_set16bit(w,x,y,z,u) setL16bit(w,x,y,u)
#else
# define _F_getTID(w,x,y) ((U16)((w)->y))
# define _F_setTID(w,x,y,z) ((w)->y = (z))
# define _F_getTID1(w,x,y) ((U16)((w)->y))
# define _F_setTID1(w,x,y,z) ((w)->y = (z))
# define _F_getFunc(w,x,y) ((U8)((w)->y))
# define _F_setFunc(w,x,y,z) ((w)->y = (z))
# define _F_getCount(w,x,y) ((U32)((w)->y))
# define _F_setCount(w,x,y,z) ((w)->y = (z))
# define _F_getFlags(w,x,y) ((U8)((w)->y))
# define _F_setFlags(w,x,y,z) ((w)->y = (z))
# define _F_get1bit(w,x,y,z) ((U8)((w)->z))
# define _F_set1bit(w,x,y,z,u) ((w)->z = (u))
# define _F_get1bit1(w,x,y,z) ((U8)((w)->z))
# define _F_set1bit1(w,x,y,z,u) ((w)->z = (u))
# define _F_get4bit4(w,x,y,z) ((U8)((w)->z))
# define _F_set4bit4(w,x,y,z,u) ((w)->z = (u))
# define _F_get8bit(w,x,y,z) ((U8)((w)->z))
# define _F_set8bit(w,x,y,z,u) ((w)->z = (u))
# define _F_get12bit(w,x,y,z) ((U16)((w)->z))
# define _F_set12bit(w,x,y,z,u) ((w)->z = (u))
# define _F_get12bit4(w,x,y,z) ((U16)((w)->z))
# define _F_set12bit4(w,x,y,z,u) ((w)->z = (u))
# define _F_get16bit(w,x,y,z) ((U16)((w)->z))
# define _F_set16bit(w,x,y,z,u) ((w)->z = (u))
#endif
/*
* Define some specific portability macros
* These macros follow the following parameterization:
* XXX_getYYY (pointer)
* XXX_setYYY (pointer, newValue)
* These parameters are shortened to x and y to reduce clutter.
*/
//
// General SGE
//
#define I2O_FLAGS_COUNT_getCount(x) _F_getCount(x,Count,Count)
#define I2O_FLAGS_COUNT_setCount(x,y) _F_setCount(x,Count,Count,y)
#define I2O_FLAGS_COUNT_getFlags(x) _F_getFlags(x,Count,Flags)
#define I2O_FLAGS_COUNT_setFlags(x,y) _F_setFlags(x,Count,Flags,y)
//
// I2O_SGE_SIMPLE_ELEMENT
//
#define I2O_SGE_SIMPLE_ELEMENT_getPhysicalAddress(x) \
getLU4((&(x)->PhysicalAddress),0)
#define I2O_SGE_SIMPLE_ELEMENT_setPhysicalAddress(x,y) \
setLU4((&(x)->PhysicalAddress),0,y)
//
// I2O_SGE_LONG_TRANSACTION_ELEMENT
//
#define I2O_SGE_LONG_TRANSACTION_ELEMENT_getLongElementLength(x)\
_F_getCount(x,LongElementLength,LongElementLength)
#define I2O_SGE_LONG_TRANSACTION_ELEMENT_setLongElementLength(x,y)\
_F_setCount(x,LongElementLength,LongElementLength,y)
#define I2O_SGE_LONG_TRANSACTION_ELEMENT_getFlags(x)\
_F_getFlags(x,LongElementLength,Flags)
#define I2O_SGE_LONG_TRANSACTION_ELEMENT_setFlags(x,y)\
_F_setFlags(x,LongElementLength,Flags,y)
//
// I2O_SGE_LONG_TRANSPORT_ELEMENT
//
#define I2O_SGE_LONG_TRANSPORT_ELEMENT_getLongElementLength(x)\
_F_getCount(x,LongElementLength,LongElementLength)
#define I2O_SGE_LONG_TRANSPORT_ELEMENT_setLongElementLength(x,y)\
_F_setCount(x,LongElementLength,LongElementLength,y)
#define I2O_SGE_LONG_TRANSPORT_ELEMENT_getFlags(x)\
_F_getFlags(x,LongElementLength,Flags)
#define I2O_SGE_LONG_TRANSPORT_ELEMENT_setFlags(x,y)\
_F_setFlags(x,LongElementLength,Flags,y)
//
// I2O_EXEC_ADAPTER_ASSIGN_MESSAGE
//
#define I2O_EXEC_ADAPTER_ASSIGN_MESSAGE_getDdmTID(x)\
_F_getTID(x,DdmTID,DdmTID)
#define I2O_EXEC_ADAPTER_ASSIGN_MESSAGE_setDdmTID(x,y)\
_F_setTID(x,DDdmTID,DdmTID,y)
#define I2O_EXEC_ADAPTER_ASSIGN_MESSAGE_getOperationFlags(x)\
_F_getFunc(x,DdmTID,OperationFlags)
#define I2O_EXEC_ADAPTER_ASSIGN_MESSAGE_setOperationFlags(x,y)\
_F_setFunc(x,DdmTID,OperationFlags,y)
//
// I2O_EXEC_BIOS_INFO_SET_MESSAGE
//
#define I2O_EXEC_BIOS_INFO_SET_MESSAGE_getDeviceTID(x)\
_F_getTID(x,DeviceTID,DeviceTID)
#define I2O_EXEC_BIOS_INFO_SET_MESSAGE_setDeviceTID(x,y)\
_F_setTID(x,DeviceTID,DeviceTID,y)
#define I2O_EXEC_BIOS_INFO_SET_MESSAGE_getBiosInfo(x)\
_F_getFunc(x,DeviceTID,BiosInfo)
#define I2O_EXEC_BIOS_INFO_SET_MESSAGE_setBiosInfo(x,y) \
_F_setFunc(x,DeviceTID,BiosInfo,y)
//
// I2O_ALIAS_CONNECT_SETUP
//
#define I2O_ALIAS_CONNECT_SETUP_getIOP1AliasForTargetDevice(x)\
_F_getTID(x,IOP1AliasForTargetDevice,IOP1AliasForTargetDevice)
#define I2O_ALIAS_CONNECT_SETUP_setIOP1AliasForTargetDevice(x,y)\
_F_setTID(x,IOP1AliasForTargetDevice,IOP1AliasForTargetDevice,y)
#define I2O_ALIAS_CONNECT_SETUP_getIOP2AliasForInitiatorDevice(x)\
_F_getTID1(x,IOP1AliasForTargetDevice,IOP2AliasForInitiatorDevice)
#define I2O_ALIAS_CONNECT_SETUP_setIOP2AliasForInitiatorDevice(x,y)\
_F_setTID1(x,IOP1AliasForTargetDevice,IOP2AliasForInitiatorDevice,y)
//
// I2O_OBJECT_CONNECT_SETUP
//
#define I2O_OBJECT_CONNECT_SETUP_getTargetDevice(x)\
_F_getTID(x,TargetDevice,TargetDevice)
#define I2O_OBJECT_CONNECT_SETUP_setTargetDevice(x,y)\
_F_setTID(x,TargetDevice,TargetDevice,y)
#define I2O_OBJECT_CONNECT_SETUP_getInitiatorDevice(x)\
_F_getTID1(x,TargetDevice,InitiatorDevice)
#define I2O_OBJECT_CONNECT_SETUP_setInitiatorDevice(x,y)\
_F_setTID1(x,TargetDevice,InitiatorDevice,y)
#define I2O_OBJECT_CONNECT_SETUP_getOperationFlags(x)\
_F_getFunc(x,TargetDevice,OperationFlags)
#define I2O_OBJECT_CONNECT_SETUP_setOperationFlags(x,y)\
_F_setFunc(x,TargetDevice,OperationFlags,y)
//
// I2O_OBJECT_CONNECT_REPLY
//
#define I2O_OBJECT_CONNECT_REPLY_getTargetDevice(x)\
_F_getTID(x,TargetDevice,TargetDevice)
#define I2O_OBJECT_CONNECT_REPLY_setTargetDevice(x,y)\
_F_setTID(x,TargetDevice,TargetDevice,y)
#define I2O_OBJECT_CONNECT_REPLY_getInitiatorDevice(x)\
_F_getTID1(x,TargetDevice,InitiatorDevice)
#define I2O_OBJECT_CONNECT_REPLY_setInitiatorDevice(x,y)\
_F_setTID1(x,TargetDevice,InitiatorDevice,y)
#define I2O_OBJECT_CONNECT_REPLY_getReplyStatusCode(x)\
_F_getFunc(x,TargetDevice,ReplyStatusCode)
#define I2O_OBJECT_CONNECT_REPLY_setReplyStatusCode(x,y)\
_F_setFunc(x,TargetDevice,ReplyStatusCode,y)
//
// I2O_EXEC_DEVICE_ASSIGN_MESSAGE
//
#define I2O_EXEC_DEVICE_ASSIGN_MESSAGE_getDeviceTID(x)\
_F_getTID(x,Object.DeviceTID,Object.DeviceTID)
#define I2O_EXEC_DEVICE_ASSIGN_MESSAGE_setDeviceTID(x,y)\
_F_setTID(x,Object.DeviceTID,Object.DeviceTID,y)
#define I2O_EXEC_DEVICE_ASSIGN_MESSAGE_getIOP_ID(x)\
_F_getTID1(x,Object.DeviceTID,Object.IOP_ID)
#define I2O_EXEC_DEVICE_ASSIGN_MESSAGE_setIOP_ID(x,y)\
_F_setTID1(x,Object.DeviceTID,Object.IOP_ID,y)
#define I2O_EXEC_DEVICE_ASSIGN_MESSAGE_getOperationFlags(x)\
_F_getFunc(x,Object.DeviceTID,Object.OperationFlags)
#define I2O_EXEC_DEVICE_ASSIGN_MESSAGE_setOperationFlags(x,y)\
_F_setFunc(x,Object.DeviceTID,Object.OperationFlags,y)
//
// I2O_EXEC_DEVICE_RELEASE_MESSAGE
//
#define I2O_EXEC_DEVICE_RELEASE_MESSAGE_getDeviceTID(x)\
_F_getTID(x,Object.DeviceTID,Object.DeviceTID)
#define I2O_EXEC_DEVICE_RELEASE_MESSAGE_setDeviceTID(x,y)\
_F_setTID(x,Object.DeviceTID,Object.DeviceTID,y)
#define I2O_EXEC_DEVICE_RELEASE_MESSAGE_getIOP_ID(x)\
_F_getTID1(x,Object.DeviceTID,Object.IOP_ID)
#define I2O_EXEC_DEVICE_RELEASE_MESSAGE_setIOP_ID(x,y)\
_F_setTID1(x,Object.DeviceTID,Object.IOP_ID,y)
#define I2O_EXEC_DEVICE_RELEASE_MESSAGE_getOperationFlags(x)\
_F_getFunc(x,Object.DeviceTID,Object.OperationFlags)
#define I2O_EXEC_DEVICE_RELEASE_MESSAGE_setOperationFlags(x,y)\
_F_setFunc(x,Object.DeviceTID,Object.OperationFlags,y)
//
// I2O_EXEC_IOP_RESET_MESSAGE
//
#define I2O_EXEC_IOP_RESET_MESSAGE_getTargetAddress(x)\
_F_getTID(x,TargetAddress,TargetAddress)
#define I2O_EXEC_IOP_RESET_MESSAGE_setTargetAddress(x,y)\
_F_setTID(x,TargetAddress,TargetAddress,y)
#define I2O_EXEC_IOP_RESET_MESSAGE_getInitiatorAddress(x)\
_F_getTID1(x,TargetAddress,InitiatorAddress)
#define I2O_EXEC_IOP_RESET_MESSAGE_setInitiatorAddress(x,y)\
_F_setTID1(x,TargetAddress,InitiatorAddress,y)
#define I2O_EXEC_IOP_RESET_MESSAGE_getFunction(x)\
_F_getFunc(x,TargetAddress,Function)
#define I2O_EXEC_IOP_RESET_MESSAGE_setFunction(x,y)\
_F_setFunc(x,TargetAddress,Function,y)
//
//I2O_EXEC_IOP_HARDWARE_SCALAR
//
#define I2O_EXEC_IOP_HARDWARE_SCALAR_getI2oVendorID(x)\
getLU2((&(x)->I2oVendorID),0)
//
// I2O_EXEC_STATUS_GET_MESSAGE
//
#define I2O_EXEC_STATUS_GET_MESSAGE_getVersionOffset(x)\
getU1((&(x)->VersionOffset),0)
#define I2O_EXEC_STATUS_GET_MESSAGE_setVersionOffset(x,y)\
setU1((&(x)->VersionOffset),0,y)
#define I2O_EXEC_STATUS_GET_MESSAGE_getMsgFlags(x)\
getU1((&(x)->VersionOffset),1)
#define I2O_EXEC_STATUS_GET_MESSAGE_setMsgFlags(x,y)\
setU1((&(x)->VersionOffset),1,y)
#define I2O_EXEC_STATUS_GET_MESSAGE_getMessageSize(x)\
getLU2((&(x)->VersionOffset),2)
#define I2O_EXEC_STATUS_GET_MESSAGE_setMessageSize(x,y)\
setLU2((&(x)->VersionOffset),2,y)
#define I2O_EXEC_STATUS_GET_MESSAGE_getReplyBufferAddressLow(x)\
getLU4((&(x)->ReplyBufferAddressLow),0)
#define I2O_EXEC_STATUS_GET_MESSAGE_setReplyBufferAddressLow(x,y)\
setLU4((&(x)->ReplyBufferAddressLow),0,y)
#define I2O_EXEC_STATUS_GET_MESSAGE_getReplyBufferAddressHigh(x)\
getLU4((&(x)->ReplyBufferAddressHigh),0)
#define I2O_EXEC_STATUS_GET_MESSAGE_setReplyBufferAddressHigh(x,y)\
setLU4((&(x)->ReplyBufferAddressHigh),0,y)
#define I2O_EXEC_STATUS_GET_MESSAGE_getReplyBufferLength(x)\
getLU4((&(x)->ReplyBufferLength),0)
#define I2O_EXEC_STATUS_GET_MESSAGE_setReplyBufferLength(x,y)\
setLU4((&(x)->ReplyBufferLength),0,y)
#define I2O_EXEC_STATUS_GET_MESSAGE_getTargetAddress(x)\
_F_getTID(x,TargetAddress,TargetAddress)
#define I2O_EXEC_STATUS_GET_MESSAGE_setTargetAddress(x,y)\
_F_setTID(x,TargetAddress,TargetAddress,y)
#define I2O_EXEC_STATUS_GET_MESSAGE_getInitiatorAddress(x)\
_F_getTID1(x,TargetAddress,InitiatorAddress)
#define I2O_EXEC_STATUS_GET_MESSAGE_setInitiatorAddress(x,y)\
_F_setTID1(x,TargetAddress,InitiatorAddress,y)
#define I2O_EXEC_STATUS_GET_MESSAGE_getFunction(x)\
_F_getFunc(x,TargetAddress,Function)
#define I2O_EXEC_STATUS_GET_MESSAGE_setFunction(x,y)\
_F_setFunc(x,TargetAddress,Function,y)
//
// I2O_MESSAGE_FRAME
//
#define I2O_MESSAGE_FRAME_getVersionOffset(x)\
getU1((&((x)->VersionOffset)),0)
#define I2O_MESSAGE_FRAME_setVersionOffset(x,y)\
setU1(((&(x)->VersionOffset)),0,y)
#define I2O_MESSAGE_FRAME_getMsgFlags(x)\
getU1((&((x)->VersionOffset)),1)
#define I2O_MESSAGE_FRAME_setMsgFlags(x,y)\
setU1((&((x)->VersionOffset)),1,y)
#define I2O_MESSAGE_FRAME_getMessageSize(x)\
getLU2((&((x)->VersionOffset)),2)
#define I2O_MESSAGE_FRAME_setMessageSize(x,y)\
setLU2((&((x)->VersionOffset)),2,y)
#define I2O_MESSAGE_FRAME_getTargetAddress(x)\
_F_getTID(x,TargetAddress,TargetAddress)
#define I2O_MESSAGE_FRAME_setTargetAddress(x,y)\
_F_setTID(x,TargetAddress,TargetAddress,y)
#define I2O_MESSAGE_FRAME_getInitiatorAddress(x)\
_F_getTID1(x,TargetAddress,InitiatorAddress)
#define I2O_MESSAGE_FRAME_setInitiatorAddress(x,y)\
_F_setTID1(x,TargetAddress,InitiatorAddress,y)
#define I2O_MESSAGE_FRAME_getFunction(x)\
_F_getFunc(x,TargetAddress,Function)
#define I2O_MESSAGE_FRAME_setFunction(x,y)\
_F_setFunc(x,TargetAddress,Function,y)
// 32 bit only for now
#define I2O_MESSAGE_FRAME_getInitiatorContext(x)\
(x)->InitiatorContext
#define I2O_MESSAGE_FRAME_setInitiatorContext(x,y)\
((x)->InitiatorContext = (y))
/*
* We are spilling the 64 bit Context field into the Transaction
* context of the specific frames. Synchronous commands (resetIop
* et al) do not have this field, so beware. Also, Failed Reply frames
* can not contain the 64 bit context, the software must reference
* the PreservedMFA and pick up the 64 bit context from the incoming
* message frame. The software must make no reference to the
* TransactionContext field at all.
*/
#if defined(_MSC_VER) && _MSC_VER >= 800
#ifndef uint64_t
#define uint64_t unsigned __int64
#endif
#endif
#define I2O_MESSAGE_FRAME_getInitiatorContext64(x)\
(*((uint64_t *)(&((x)->InitiatorContext))))
#define I2O_MESSAGE_FRAME_setInitiatorContext64(x,y)\
((*((uint64_t *)(&((x)->InitiatorContext))))=(y))
//
// I2O_EXEC_OUTBOUND_INIT_MESSAGE
//
#define I2O_EXEC_OUTBOUND_INIT_MESSAGE_getHostPageFrameSize(x)\
getLU4((&(x)->HostPageFrameSize),0)
#define I2O_EXEC_OUTBOUND_INIT_MESSAGE_setHostPageFrameSize(x,y)\
setLU4((&(x)->HostPageFrameSize),0,y)
#define I2O_EXEC_OUTBOUND_INIT_MESSAGE_getInitCode(x)\
getU1((&(x)->InitCode),0)
#define I2O_EXEC_OUTBOUND_INIT_MESSAGE_setInitCode(x,y)\
setU1((&(x)->InitCode),0,y)
#define I2O_EXEC_OUTBOUND_INIT_MESSAGE_getreserved(x)\
getU1((&(x)->reserved),0)
#define I2O_EXEC_OUTBOUND_INIT_MESSAGE_setreserved(x,y)\
setU1((&(x)->reserved),0,y)
#define I2O_EXEC_OUTBOUND_INIT_MESSAGE_getOutboundMFrameSize(x)\
getLU2((&(x)->OutboundMFrameSize),0)
#define I2O_EXEC_OUTBOUND_INIT_MESSAGE_setOutboundMFrameSize(x,y)\
setLU2((&(x)->OutboundMFrameSize),0,y)
//
// I2O_EXEC_SYS_TAB_SET_MESSAGE
//
#define I2O_EXEC_SYS_TAB_SET_MESSAGE_getIOP_ID(x)\
_F_get12bit(x,IOP_ID,IOP_ID)
#define I2O_EXEC_SYS_TAB_SET_MESSAGE_setIOP_ID(x,y)\
_F_set12bit(x,IOP_ID,IOP_ID,y)
//#define I2O_EXEC_SYS_TAB_SET_MESSAGE_getreserved1(x)
#define I2O_EXEC_SYS_TAB_SET_MESSAGE_getHostUnitID(x)\
_F_get16bit(x,IOP_ID,2,HostUnitID)
#define I2O_EXEC_SYS_TAB_SET_MESSAGE_setHostUnitID(x,y)\
_F_set16bit(x,IOP_ID,2,HostUnitID,y)
#define I2O_EXEC_SYS_TAB_SET_MESSAGE_getSegmentNumber(x)\
_F_get12bit(x,SegmentNumber,SegmentNumber)
#define I2O_EXEC_SYS_TAB_SET_MESSAGE_setSegmentNumber(x,y)\
_F_get12bit(x,SegmentNumber,SegmentNumber,y)
// later
// I2O_EXEC_SYS_ENABLE_MESSAGE
//
//
// I2O_CLASS_ID
//
#define I2O_CLASS_ID_getClass(x)\
_F_get12bit(x,Class,0,Class)
#define I2O_CLASS_ID_setClass(x,y)\
_F_set12bit(x,Class,0,Class,y)
#define I2O_CLASS_ID_getVersion(x)\
_F_get4bit4(x,Class,1,Version)
#define I2O_CLASS_ID_setVersion(x,y)\
_F_set4bit4(x,Class,1,Version,y)
#define I2O_CLASS_ID_getOrganizationID(x)\
_F_get16bit(x,Class,2,OrganizationID)
#define I2O_CLASS_ID_setOrganizationID(x,y)\
_F_set16bit(x,Class,2,OrganizationID,y)
//
// I2O_SET_SYSTAB_HEADER
//
#define I2O_SET_SYSTAB_HEADER_getNumberEntries(x)\
getU1((&((x)->NumberEntries)),0)
#define I2O_SET_SYSTAB_HEADER_setNumberEntries(x,y)\
setU1((&(x)->NumberEntries),0,y)
#define I2O_SET_SYSTAB_HEADER_getSysTabVersion(x)\
getU1((&((x)->SysTabVersion)),0)
#define I2O_SET_SYSTAB_HEADER_setSysTabVersion(x,y)\
setU1((&(x)->SysTabVersion),0,y)
// U16 reserved
// U32 CurrentChangeIndicator
//
// I2O_IOP_ENTRY
//
#define I2O_IOP_ENTRY_getOrganizationID(x)\
getLU2((&((x)->OrganizationID)),0)
#define I2O_IOP_ENTRY_setOrganizationID(x,y)\
setLU2((&((x)->OrganizationID)),0,y)
//#define I2O_IOP_ENTRY_getreserved U16;
#define I2O_IOP_ENTRY_getIOP_ID(x)\
_F_get12bit(x,IOP_ID,IOP_ID)
#define I2O_IOP_ENTRY_setIOP_ID(x,y)\
_F_set12bit(x,IOP_ID,IOP_ID,y)
// BF reserved3:I2O_RESERVED_4BITS;
// BF reserved1:I2O_RESERVED_16BITS;
#define I2O_IOP_ENTRY_getSegmentNumber(x)\
_F_get12bit(x,SegmentNumber,SegmentNumber)
#define I2O_IOP_ENTRY_setSegmentNumber(x,y)\
_F_set12bit(x,SegmentNumber,SegmentNumber,y)
#define I2O_IOP_ENTRY_getI2oVersion(x)\
_F_get4bit4(x,SegmentNumber,1,I2oVersion)
#define I2O_IOP_ENTRY_setI2oVersion(x,y)\
_F_set4bit4(x,SegmentNumber,1,I2oVersion,y)
#define I2O_IOP_ENTRY_getIopState(x)\
_F_get8bit(x,SegmentNumber,2,IopState)
#define I2O_IOP_ENTRY_setIopState(x,y)\
_F_set8bit(x,SegmentNumber,2,IopState,y)
#define I2O_IOP_ENTRY_getMessengerType(x)\
_F_get8bit(x,SegmentNumber,3,MessengerType)
#define I2O_IOP_ENTRY_setMessengerType(x,y)\
_F_set8bit(x,SegmentNumber,3,MessengerType,y)
#define I2O_IOP_ENTRY_getInboundMessageFrameSize(x)\
getLU2((&((x)->InboundMessageFrameSize)),0)
#define I2O_IOP_ENTRY_setInboundMessageFrameSize(x,y)\
setLU2((&((x)->InboundMessageFrameSize)),0,y)
#define I2O_IOP_ENTRY_getreserved2(x)\
getLU2((&((x)->reserved2)),0)
#define I2O_IOP_ENTRY_setreserved2(x,y)\
setLU2((&((x)->reserved2)),0,y)
#define I2O_IOP_ENTRY_getLastChanged(x)\
getLU4((&((x)->LastChanged)),0)
#define I2O_IOP_ENTRY_setLastChanged(x,y)\
setLU4((&((x)->LastChanged)),0,y)
#define I2O_IOP_ENTRY_getIopCapabilities(x)\
getLU4((&((x)->IopCapabilities)),0)
#define I2O_IOP_ENTRY_setIopCapabilities(x,y)\
setLU4((&((x)->IopCapabilities)),0,y)
// might want to declare I2O_MESSENGER_INFO struct
#define I2O_IOP_ENTRY_getInboundMessagePortAddressLow(x)\
getLU4((&((x)->MessengerInfo.InboundMessagePortAddressLow)),0)
#define I2O_IOP_ENTRY_setInboundMessagePortAddressLow(x,y)\
setLU4((&((x)->MessengerInfo.InboundMessagePortAddressLow)),0,y)
#define I2O_IOP_ENTRY_getInboundMessagePortAddressHigh(x)\
getLU4((&((x)->MessengerInfo.InboundMessagePortAddressHigh)),0)
#define I2O_IOP_ENTRY_setInboundMessagePortAddressHigh(x,y)\
setLU4((&((x)->MessengerInfo.InboundMessagePortAddressHigh)),0,y)
//
// I2O_HRT
//
#define I2O_HRT_getNumberEntries(x)\
getLU2((&((x)->NumberEntries)),0)
#define I2O_HRT_setNumberEntries(x,y)\
setLU2((&(x)->NumberEntries),0,y)
#define I2O_HRT_getEntryLength(x)\
getU1((&(x)->EntryLength),0)
#define I2O_HRT_setEntryLength(x,y)\
setU1((&(x)->EntryLength),0,y)
#define I2O_HRT_getHRTVersion(x)\
getU1((&(x)->HRTVersion),0)
#define I2O_HRT_setHRTVersion(x,y)\
setU1((&(x)->HRTVersion),0,y)
#define I2O_HRT_getCurrentChangeIndicator(x)\
getLU4((&(x)->CurrentChangeIndicator),0)
#define I2O_HRT_setCurrentChangeIndicator(x,y)\
setLU4((&(x)->CurrentChangeIndicator),0,y)
#define I2O_HRT_getHRTEntryPtr(x,y)\
((&((x)->HRTEntry[0+y])))
//
// I2O_HRT_ENTRY
//
#define I2O_HRT_ENTRY_getAdapterID(x)\
getLU4((&((x)->AdapterID)),0)
#define I2O_HRT_ENTRY_setAdapterID(x,y)\
setLU4((&(x)->AdapterID),0,y)
#define I2O_HRT_ENTRY_getControllingTID(x)\
_F_get12bit(x,ControllingTID,ControllingTID)
#define I2O_HRT_ENTRY_setControllingTID(x,y)\
_F_set12bit(x,ControllingTID,ControllingTID,y)
#define I2O_HRT_ENTRY_getAdapterState(x)\
_F_get4bit4(x,ControllingTID,1,AdapterState)
#define I2O_HRT_ENTRY_setIAdapterState(x,y)\
_F_set4bit4(x,ControllingTID,1,AdapterState,y)
#define I2O_HRT_ENTRY_getBusNumber(x)\
_F_get8bit(x,ControllingTID,2,BusNumber)
#define I2O_HRT_ENTRY_setBusNumber(x,y)\
_F_set8bit(x,ControllingTID,2,BusNumber,y)
#define I2O_HRT_ENTRY_getBusType(x)\
_F_get8bit(x,ControllingTID,3,BusType)
#define I2O_HRT_ENTRY_setBusType(x,y)\
_F_set8bit(x,ControllingTID,3,BusType,y)
#define I2O_HRT_ENTRY_getPCIBusPtr(x,y)\
(&((x)->uBus.PCIBus))
//
// I2O_LCT
//
#define I2O_LCT_getTableSize(x)\
_F_get16bit(x,TableSize,0,TableSize)
#define I2O_LCT_setTableSize(x,y)\
_F_set16bit(x,TableSize,0,TableSize,y)
#define I2O_LCT_getBootDeviceTID(x)\
_F_get12bit(x,TableSize,2,BootDeviceTID)
#define I2O_LCT_setBootDeviceTID(x,y)\
_F_set12bit(x,TableSize,2,BootDeviceTID,y)
#define I2O_LCT_getLctVer(x)\
_F_get4bit4(x,TableSize,3,LctVer)
#define I2O_LCT_setLctVer(x,y)\
_F_set4bit4(x,TableSize,3,LctVer,y)
#define I2O_LCT_getIopFlags(x)\
getLU4((&(x)->IopFlags),0)
#define I2O_LCT_setIopFlags(x,y)\
setLU4((&(x)->IopFlags),0,y)
#define I2O_LCT_getCurrentChangeIndicator(x)\
getLU4((&(x)->CurrentChangeIndicator),0)
#define I2O_LCT_setCurrentChangeIndicator(x,y)\
setLU4((&(x)->CurrentChangeIndicator),0,y)
#define I2O_LCT_getLCTEntryPtr(x,y)\
(&((x)->LCTEntry[0+y]))
//
// I2O_LCT_ENTRY
//
#define I2O_LCT_ENTRY_getTableEntrySize(x)\
_F_get16bit(x,TableEntrySize,0,TableEntrySize)
#define I2O_LCT_ENTRY_setTableEntrySize(x,y)\
_F_set16bit(x,TableEntrySize,0,TableEntrySize,y)
#define I2O_LCT_ENTRY_getLocalTID(x)\
_F_get12bit(x,TableEntrySize,2,LocalTID)
#define I2O_LCT_ENTRY_setLocalTID(x,y)\
_F_set12bit(x,TableEntrySize,2,LocalTID,y)
// BF 4 reserved:I2O_4BIT_VERSION_SZ;
#define I2O_LCT_ENTRY_getChangeIndicator(x)\
getLU4((&(x)->ChangeIndicator),0)
#define I2O_LCT_ENTRY_setChangeIndicator(x,y)\
setLU4((&(x)->ChangeIndicator),0,y)
#define I2O_LCT_ENTRY_getDeviceFlags(x)\
getLU4((&(x)->DeviceFlags),0)
#define I2O_LCT_ENTRY_setDeviceFlags(x,y)\
setLU4((&(x)->DeviceFlags),0,y)
#define I2O_LCT_ENTRY_getClassIDPtr(x)\
(&((x)->ClassID))
#define I2O_LCT_ENTRY_getSubClassInfo(x)\
getLU4((&(x)->SubClassInfo),0)
#define I2O_LCT_ENTRY_setSubClassInfo(x,y)\
setLU4((&(x)->SubClassInfo),0,y)
#define I2O_LCT_ENTRY_getUserTID(x)\
_F_getTID(x,UserTID,UserTID)
#define I2O_LCT_ENTRY_setUserTID(x,y)\
_F_setTID(x,UserTID,UserTID,y)
#define I2O_LCT_ENTRY_getParentTID(x)\
_F_getTID1(x,UserTID,ParentTID)
#define I2O_LCT_ENTRY_setParentTID(x,y)\
_F_getTID1(x,UserTID,ParentTID,y)
#define I2O_LCT_ENTRY_getBiosInfo(x)\
_F_getFunc(x,UserTID,BiosInfo)
#define I2O_LCT_ENTRY_setBiosInfo(x,y)\
_F_setFunc(x,UserTID,BiosInfo,y)
// 2 ulong U8 8 IdentityTag[I2O_IDENTITY_TAG_SZ];
#define I2O_LCT_ENTRY_getEventCapabilities(x)\
getLU4((&(x)->EventCapabilities),0)
#define I2O_LCT_ENTRY_setEventCapabilities(x,y)\
setLU4((&(x)->EventCapabilities),0,y)
//
// I2O_PARAM_OPERATIONS_LIST_HEADER
//
#define I2O_PARAM_OPERATIONS_LIST_HEADER_getOperationCount(x)\
getLU2((&(x)->OperationCount),0)
#define I2O_PARAM_OPERATIONS_LIST_HEADER_setOperationCount(x,y)\
setLU2((&(x)->OperationCount),0,y)
#define I2O_PARAM_OPERATIONS_LIST_HEADER_getReserved(x)\
getLU2((&(x)->Reserved),0)
#define I2O_PARAM_OPERATIONS_LIST_HEADER_setReserved(x,y)\
setLU2((&(x)->Reserved),0,y)
//
// I2O_PARAM_OPERATION_ALL_TEMPLATE
//
#define I2O_PARAM_OPERATION_ALL_TEMPLATE_getOperation(x)\
getLU2((&(x)->Operation),0)
#define I2O_PARAM_OPERATION_ALL_TEMPLATE_setOperation(x,y)\
setLU2((&(x)->Operation),0,y)
#define I2O_PARAM_OPERATION_ALL_TEMPLATE_getGroupNumber(x)\
getLU2((&(x)->GroupNumber),0)
#define I2O_PARAM_OPERATION_ALL_TEMPLATE_setGroupNumber(x,y)\
setLU2((&(x)->GroupNumber),0,y)
#define I2O_PARAM_OPERATION_ALL_TEMPLATE_getFieldCount(x)\
getLU2((&(x)->FieldCount),0)
#define I2O_PARAM_OPERATION_ALL_TEMPLATE_setFieldCount(x,y)\
setLU2((&(x)->FieldCount),0,y)
//
// I2O_PARAM_RESULTS_LIST_HEADER
//
#define I2O_PARAM_RESULTS_LIST_HEADER_getResultCount(x)\
getLU2((&(x)->ResultCount),0)
#define I2O_PARAM_RESULTS_LIST_HEADER_setResultCount(x,y)\
setLU2((&(x)->ResultCount),0,y)
#define I2O_PARAM_RESULTS_LIST_HEADER_getReserved(x)\
getLU2((&(x)->Reserved),0)
#define I2O_PARAM_RESULTS_LIST_HEADER_setReserved(x,y)\
setLU2((&(x)->Reserved),0,y)
#define I2O_PARAM_RESULTS_LIST_HEADER_getBlockStatus(x)\
getU1((&(x)->BlockStatus),0)
//
//I2O_PARAM_READ_OPERATION_RESULT
//
#define I2O_PARAM_READ_OPERATION_RESULT_getBlockStatus(x)\
getU1((&(x)->BlockStatus),0)
// later
// I2O_HBA_ADAPTER_RESET_MESSAGE
//
// LATER
// I2O_SCSI_DEVICE_RESET_MESSAGE
//
// LATER
// I2O_HBA_BUS_RESET_MESSAGE
//
//
// I2O_EXEC_LCT_NOTIFY_MESSAGE
//
// I2O_MESSAGE_FRAME StdMessageFrame;
// I2O_TRANSACTION_CONTEXT TransactionContext;
#define I2O_EXEC_LCT_NOTIFY_MESSAGE_getClassIdentifier(x)\
getLU4((&(x)->ClassIdentifier),0)
#define I2O_EXEC_LCT_NOTIFY_MESSAGE_setClassIdentifier(x,y)\
setLU4((&(x)->ClassIdentifier),0,y)
#define I2O_EXEC_LCT_NOTIFY_MESSAGE_getLastReportedChangeIndicator(x)\
getLU4((&(x)->LastReportedChangeIndicator),0)
#define I2O_EXEC_LCT_NOTIFY_MESSAGE_setLastReportedChangeIndicator(x,y)\
setLU4((&(x)->LastReportedChangeIndicator),0,y)
// I2O_SG_ELEMENT SGL;
//
// I2O_UTIL_PARAMS_GET_MESSAGE
//
// I2O_MESSAGE_FRAME StdMessageFrame;
// I2O_TRANSACTION_CONTEXT TransactionContext;
#define I2O_UTIL_PARAMS_GET_MESSAGE_getOperationFlags(x)\
getLU4((&(x)->OperationFlags),0)
#define I2O_UTIL_PARAMS_GET_MESSAGE_setOperationFlags(x,y)\
setLU4((&(x)->OperationFlags),0,y)
#define I2O_UTIL_PARAMS_GET_MESSAGE_setTransactionContext(x,y)\
((x)->TransactionContext = (y))
// I2O_SG_ELEMENT SGL;
//
// I2O_SCSI_SCB_ABORT_MESSAGE
//
#define I2O_SCSI_SCB_ABORT_MESSAGE_getStdMessageFramePtr(x)\
(&((x)->StdMessageFrame))
#define I2O_SCSI_SCB_ABORT_MESSAGE_getTransactionContext(x)\
(x)->TransactionContext
#define I2O_SCSI_SCB_ABORT_MESSAGE_setTransactionContext(x,y)\
((x)->TransactionContext = (y))
#define I2O_SCSI_SCB_ABORT_MESSAGE_getTransactionContextToAbort(x)\
(x)->TransactionContextToAbort
#define I2O_SCSI_SCB_ABORT_MESSAGE_setTransactionContextToAbort(x,y)\
((x)->TransactionContextToAbort = (y))
//
// I2O_DPT_DEVICE_INFO_SCALAR
//
#define I2O_DPT_DEVICE_INFO_SCALAR_getDeviceType(x)\
getU1((&(x)->DeviceType),0)
#define I2O_DPT_DEVICE_INFO_SCALAR_setDeviceType(x,y)\
setU1((&(x)->DeviceType),0,y)
#define I2O_DPT_DEVICE_INFO_SCALAR_getFlags(x)\
getU1((&(x)->Flags),0)
#define I2O_DPT_DEVICE_INFO_SCALAR_setFlags(x,y)\
setU1((&(x)->Flags),0,y)
#define I2O_DPT_DEVICE_INFO_SCALAR_getBus(x)\
getLU2((&(x)->Bus),0)
#define I2O_DPT_DEVICE_INFO_SCALAR_setBus(x,y)\
setLU2((&(x)->Bus),0,y)
#define I2O_DPT_DEVICE_INFO_SCALAR_getIdentifier(x)\
getLU4((&(x)->Identifier),0)
#define I2O_DPT_DEVICE_INFO_SCALAR_setIdentifier(x,y)\
setLU4((&(x)->Identifier),0,y)
// U8 LunInfo[8]; /* SCSI-2 8-bit scalar LUN goes into offset 1 */
#define I2O_DPT_DEVICE_INFO_SCALAR_getLunInfo(x)\
getU1((&(x)->LunInfo[0]),1)
#define I2O_DPT_DEVICE_INFO_SCALAR_setLunInfo(x,y)\
setU1((&(x)->LunInfo[0]),1,y)
//
// I2O_PRIVATE_MESSAGE_FRAME
//
//typedef struct _I2O_PRIVATE_MESSAGE_FRAME {
// I2O_MESSAGE_FRAME StdMessageFrame;
// I2O_TRANSACTION_CONTEXT TransactionContext;
// U16 XFunctionCode;
// U16 OrganizationID;
// PrivatePayload[];
//} I2O_PRIVATE_MESSAGE_FRAME, *PI2O_PRIVATE_MESSAGE_FRAME;
#define I2O_PRIVATE_MESSAGE_FRAME_getTransactionContext(x) \
(x)->TransactionContext
#define I2O_PRIVATE_MESSAGE_FRAME_setTransactionContext(x,y) \
((x)->TransactionContext = (y))
#define I2O_PRIVATE_MESSAGE_FRAME_getXFunctionCode(x) \
getLU2((&(x)->XFunctionCode),0)
#define I2O_PRIVATE_MESSAGE_FRAME_setXFunctionCode(x,y) \
setLU2((&(x)->XFunctionCode),0,y)
#define I2O_PRIVATE_MESSAGE_FRAME_getOrganizationID(x) \
getLU2((&(x)->OrganizationID),0)
#define I2O_PRIVATE_MESSAGE_FRAME_setOrganizationID(x,y) \
setLU2((&(x)->OrganizationID),0,y)
//typedef struct _PRIVATE_SCSI_SCB_EXECUTE_MESSAGE {
// I2O_PRIVATE_MESSAGE_FRAME PRIVATE_SCSI_SCB_EXECUTE_MESSAGE;
// BF TID:16; /* Upper four bits currently are zero */
// /* Command is interpreted by the host */
// BF Interpret:1;
// /* if TRUE, deal with Physical Firmware Array information */
// BF Physical:1;
// BF Reserved1:14;
// U8 CDBLength;
// U8 Reserved;
// I2O_SCB_FLAGS SCBFlags;
// U8 CDB[ I2O_SCSI_CDB_LENGTH=16 ];
// U32 ByteCount;
// I2O_SG_ELEMENT SGL;
//} PRIVATE_SCSI_SCB_EXECUTE_MESSAGE, * PPRIVATE_SCSI_SCB_EXECUTE_MESSAGE;
//
// PRIVATE_SCSI_SCB_EXECUTE_MESSAGE
//
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_getPRIVATE_SCSI_SCB_EXECUTE_MESSAGEPtr(x)\
(&((x)->PRIVATE_SCSI_SCB_EXECUTE_MESSAGE))
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_getCDBLength(x)\
getU1((&(x)->CDBLength),0)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_setCDBLength(x,y)\
setU1((&(x)->CDBLength),0,y)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_getReserved(x)\
getU1((&(x)->Reserved),0)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_setReserved(x,y)\
setU1((&(x)->Reserved),0,y)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_getSCBFlags(x)\
getLU2((&(x)->SCBFlags),0)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_setSCBFlags(x,y)\
setLU2((&(x)->SCBFlags),0,y)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_getByteCount(x)\
getLU4((&((x)->ByteCount)),0)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_setByteCount(x,y)\
setLU4((&((x)->ByteCount)),0,y)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_getTID(x)\
_F_get16bit(x,TID,0,TID)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_setTID(x,y)\
_F_set16bit(x,TID,0,TID,y)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_getInterpret(x)\
_F_get1bit(x,TID,2,Interpret)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_setInterpret(x,y)\
_F_set1bit(x,TID,2,Interpret,y)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_getPhysical(x)\
_F_get1bit1(x,TID,2,Physical)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_setPhysical(x,y)\
_F_set1bit1(x,TID,2,Physical,y)
#define PRIVATE_SCSI_SCB_EXECUTE_MESSAGE_getCDBPtr(x)\
(&((x)->CDB[0]))
//
// PRIVATE_FLASH_REGION_MESSAGE
//
#define PRIVATE_FLASH_REGION_MESSAGE_getFlashRegion(x) \
getLU4((&((x)->FlashRegion)),0)
#define PRIVATE_FLASH_REGION_MESSAGE_setFlashRegion(x,y) \
setLU4((&((x)->FlashRegion)),0,y)
#define PRIVATE_FLASH_REGION_MESSAGE_getRegionOffset(x) \
getLU4((&((x)->RegionOffset)),0)
#define PRIVATE_FLASH_REGION_MESSAGE_setRegionOffset(x,y) \
setLU4((&((x)->RegionOffset)),0,y)
#define PRIVATE_FLASH_REGION_MESSAGE_getByteCount(x) \
getLU4((&((x)->ByteCount)),0)
#define PRIVATE_FLASH_REGION_MESSAGE_setByteCount(x,y) \
setLU4((&((x)->ByteCount)),0,y)
//
// I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR
//
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_getSCSIType(x)\
getU1((&(x)->SCSIType),0)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_setSCSIType(x,y)\
setU1((&(x)->SCSIType),0,y)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_getProtectionManagement(x)\
getU1((&(x)->ProtectionManagement),0)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_setProtectionManagement(x,y)\
setU1((&(x)->ProtectionManagement),0,y)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_getSettings(x)\
getU1((&(x)->Settings),0)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_setSettings(x,y)\
setU1((&(x)->Settings),0,y)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_getReserved1(x)\
getU1((&(x)->Reserved1),0)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_setReserved1(x,y)\
setU1((&(x)->Reserved1),0,y)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_getInitiatorID(x)\
getLU4((&(x)->InitiatorID),0)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_setInitiatorID(x,y)\
setLU4((&(x)->InitiatorID),0,y)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_getScanLun0Only(x)\
getLU4((&(x)->ScanLun0Only),0)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_setScanLun0Only(x,y)\
setLU4((&(x)->ScanLun0Only),0,y)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_getDisableDevice(x)\
getLU2((&(x)->DisableDevice),0)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_setDisableDevice(x,y)\
setLU2((&(x)->DisableDevice),0,y)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_getMaxOffset(x)\
getU1((&(x)->MaxOffset),0)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_setMaxOffset(x,y)\
setU1((&(x)->MaxOffset),0,y)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_getMaxDataWidth(x)\
getU1((&(x)->MaxDataWidth),0)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_setMaxDataWidth(x,y)\
setU1((&(x)->MaxDataWidth),0,y)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_getMaxSyncRate(x)\
getLU4((&(x)->MaxSyncRate),0)
#define I2O_HBA_SCSI_CONTROLLER_INFO_SCALAR_setMaxSyncRate(x,y)\
setLU4((&(x)->MaxSyncRate),0,y)
//
// I2O_SCSI_ERROR_REPLY_MESSAGE_FRAME
//
#define I2O_SCSI_ERROR_REPLY_MESSAGE_FRAME_getStdReplyFramePtr(x)\
(&((x)->StdReplyFrame))
#define I2O_SCSI_ERROR_REPLY_MESSAGE_FRAME_getTransferCount(x)\
getLU4((&(x)->TransferCount),0)
#define I2O_SCSI_ERROR_REPLY_MESSAGE_FRAME_setTransferCount(x,y)\
setLU4((&(x)->TransferCount),0,y)
#define I2O_SCSI_ERROR_REPLY_MESSAGE_FRAME_getAutoSenseTransferCount(x)\
getLU4((&(x)->AutoSenseTransferCount),0)
#define I2O_SCSI_ERROR_REPLY_MESSAGE_FRAME_setAutoSenseTransferCount(x,y)\
setLU4((&(x)->AutoSenseTransferCount),0,y)
//
// I2O_SINGLE_REPLY_MESSAGE_FRAME
//
#define I2O_SINGLE_REPLY_MESSAGE_FRAME_getStdMessageFramePtr(x)\
(&((x)->StdMessageFrame))
#define I2O_SINGLE_REPLY_MESSAGE_FRAME_getTransactionContext(x)\
(x)->TransactionContext
#define I2O_SINGLE_REPLY_MESSAGE_FRAME_setTransactionContext(x,y)\
((x)->TransactionContext = (y))
#define I2O_SINGLE_REPLY_MESSAGE_FRAME_getDetailedStatusCode(x)\
getLU2((&((x)->DetailedStatusCode)),0)
#define I2O_SINGLE_REPLY_MESSAGE_FRAME_setDetailedStatusCode(x,y)\
setLU2((&((x)->DetailedStatusCode)),0,y)
#define I2O_SINGLE_REPLY_MESSAGE_FRAME_getreserved(x)\
getU1((&((x)->reserved)),0)
#define I2O_SINGLE_REPLY_MESSAGE_FRAME_setreserved(x,y)\
setU1((&((x)->reserved)),0,y)
#define I2O_SINGLE_REPLY_MESSAGE_FRAME_getReqStatus(x)\
getU1((&((x)->ReqStatus)),0)
#define I2O_SINGLE_REPLY_MESSAGE_FRAME_setReqStatus(x,y)\
setU1((&((x)->ReqStatus)),0,y)
//
// I2O_SCSI_SCB_EXECUTE_MESSAGE
//
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_getStdMessageFramePtr(x)\
(&((x)->StdMessageFrame))
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_getTransactionContext(x)\
(x)->TransactionContext
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_setTransactionContext(x,y)\
((x)->TransactionContext = (y))
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_getCDBLength(x)\
getU1((&((x)->CDBLength)),0)
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_setCDBLength(x,y)\
setU1((&((x)->CDBLength)),0,y)
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_getReserved(x)\
getU1((&((x)->Reserved)),0)
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_setReserved(x,y)\
setU1((&((x)->Reserved)),0,y)
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_getSCBFlags(x)\
getLU2((&((x)->SCBFlags)),0)
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_setSCBFlags(x,y)\
setLU2((&((x)->SCBFlags)),0,y)
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_getByteCount(x)\
getLU2((&((x)->ByteCount)),0)
#define I2O_SCSI_SCB_EXECUTE_MESSAGE_setByteCount(x,y)\
setLU2((&((x)->ByteCount)),0,y)
// define for these
// U8 CDB[16];
// I2O_SG_ELEMENT SGL;
//
// I2O_FAILURE_REPLY_MESSAGE_FRAME
//
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_getStdMessageFramePtr(x)\
(&((x)->StdMessageFrame))
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_getTransactionContext(x)\
(x)->TransactionContext
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_setTransactionContext(x,y)\
((x)->TransactionContext = (y))
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_getLowestVersion(x)\
getU1((&((x)->LowestVersion)),0)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_setLowestVersion(x,y)\
setU1((&((x)->LowestVersion)),0,y)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_getHighestVersion(x)\
getU1((&((x)->HighestVersion)),0)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_setHighestVersion(x,y)\
setU1((&((x)->HighestVersion)),0,y)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_getAgeLimit(x)\
getLU4((&((x)->AgeLimit)),0)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_setAgeLimit(x,y)\
setLU4((&((x)->AgeLimit)),0,y)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_getSeverity(x)\
_F_get8bit(x,Severity,0,Severity)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_setSeverity(x,y)\
_F_set8bit(x,Severity,0,Severity,y)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_getFailureCode(x)\
_F_get8bit(x,Severity,1,FailureCode)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_setFailureCode(x,y)\
_F_get8bit(x,Severity,1,FailureCode,y)
//#define I2O_FAILURE_REPLY_MESSAGE_FRAME_getFailingHostUnitID(x)\
// _F_get16bit(x,reserved,1,FailingHostUnitID)
//#define I2O_FAILURE_REPLY_MESSAGE_FRAME_setFailingHostUnitID(x,y)\
// _F_set16bit(x,reserved,1,FailingHostUnitID,y)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_getPreservedMFA(x)\
getLU4((&((x)->PreservedMFA)),0)
#define I2O_FAILURE_REPLY_MESSAGE_FRAME_setPreservedMFA(x,y)\
setLU4((&((x)->PreservedMFA)),0,y)
//
// I2O_EXEC_STATUS_GET_REPLY
//
#define I2O_EXEC_STATUS_GET_REPLY_getOrganizationID(x)\
getLU2((&(x)->OrganizationID),0)
#define I2O_EXEC_STATUS_GET_REPLY_setOrganizationID(x,y)\
setLU2((&(x)->OrganizationID),0,y)
//#define I2O_EXEC_STATUS_GET_REPLY_getreserved;
#define I2O_EXEC_STATUS_GET_REPLY_getIOP_ID(x)\
_F_get12bit(x,IOP_ID,IOP_ID)
#define I2O_EXEC_STATUS_GET_REPLY_setIOP_ID(x,y)\
_F_set12bit(x,IOP_ID,IOP_ID,y)
//#define I2O_EXEC_STATUS_GET_REPLY_getreserved1(x)
#define I2O_EXEC_STATUS_GET_REPLY_getHostUnitID(x)\
_F_get16bit(x,IOP_ID,2,HostUnitID)
#define I2O_EXEC_STATUS_GET_REPLY_setHostUnitID(x,y)\
_F_set16bit(x,IOP_ID,2,HostUnitID,y)
#define I2O_EXEC_STATUS_GET_REPLY_getSegmentNumber(x)\
_F_get12bit(x,SegmentNumber,0,SegmentNumber)
#define I2O_EXEC_STATUS_GET_REPLY_setSegmentNumber(x,y)\
_F_set12bit(x,SegmentNumber,0,SegmentNumber,y)
#define I2O_EXEC_STATUS_GET_REPLY_getI2oVersion(x)\
_F_get4bit4(x,SegmentNumber,1,I2oVersion)
#define I2O_EXEC_STATUS_GET_REPLY_setI2oVersion(x,y)\
_F_set4bit4(x,SegmentNumber,1,I2oVersion,y)
#define I2O_EXEC_STATUS_GET_REPLY_getIopState(x)\
_F_get8bit(x,SegmentNumver,2,IopState)
#define I2O_EXEC_STATUS_GET_REPLY_setIopState(x,y)\
_F_set8bit(x,SegmentNumver,2,IopState,y)
#define I2O_EXEC_STATUS_GET_REPLY_getMessengerType(x)\
_F_get8bit(x,SegmentNumber,3,MessengerType)
#define I2O_EXEC_STATUS_GET_REPLY_setMessengerType(x,y)\
_F_get8bit(x,SegmentNumber,3,MessengerType,y)
#define I2O_EXEC_STATUS_GET_REPLY_getInboundMFrameSize(x)\
getLU2((&(x)->InboundMFrameSize),0)
#define I2O_EXEC_STATUS_GET_REPLY_setInboundMFrameSize(x,y)\
setLU2((&(x)->InboundMFrameSize),0,y)
#define I2O_EXEC_STATUS_GET_REPLY_getInitCode(x)\
getU1((&(x)->InitCode),0)
#define I2O_EXEC_STATUS_GET_REPLY_setInitCode(x,y)\
setU1((&(x)->InitCode),0,y)
//#define I2O_EXEC_STATUS_GET_REPLY_getreserved2(x)
#define I2O_EXEC_STATUS_GET_REPLY_getMaxInboundMFrames(x)\
getLU4((&(x)->MaxInboundMFrames),0)
#define I2O_EXEC_STATUS_GET_REPLY_setMaxInboundMFrames(x,y)\
setLU4((&(x)->MaxInboundMFrames),0,y)
#define I2O_EXEC_STATUS_GET_REPLY_getCurrentInboundMFrames(x)\
getLU4((&(x)->CurrentInboundMFrames),0)
#define I2O_EXEC_STATUS_GET_REPLY_setCurrentInboundMFrames(x,y)\
setLU4((&(x)->CurrentInboundMFrames),0,y)
#define I2O_EXEC_STATUS_GET_REPLY_getMaxOutboundMFrames(x)\
getLU4((&(x)->MaxOutboundMFrames),0)
#define I2O_EXEC_STATUS_GET_REPLY_setMaxOutboundMFrames(x,y)\
setLU4((&(x)->MaxOutboundMFrames),0,y)
//#define I2O_EXEC_STATUS_GET_REPLY_getProductIDString(x)
#define I2O_EXEC_STATUS_GET_REPLY_getExpectedLCTSize(x)\
getLU4((&(x)->ExpectedLCTSize),0)
#define I2O_EXEC_STATUS_GET_REPLY_setExpectedLCTSize(x,y)\
setLU4((&(x)->ExpectedLCTSize),0,y)
#define I2O_EXEC_STATUS_GET_REPLY_getIopCapabilities(x)\
getLU4((&(x)->IopCapabilities),0)
#define I2O_EXEC_STATUS_GET_REPLY_setIopCapabilities(x,y)\
setLU4((&(x)->IopCapabilities),0,y)
#define I2O_EXEC_STATUS_GET_REPLY_getDesiredPrivateMemSize(x)\
getLU4((&(x)->DesiredPrivateMemSize),0)
#define I2O_EXEC_STATUS_GET_REPLY_setDesiredPrivateMemSize(x,y)\
setLU4((&(x)->DesiredPrivateMemSize),0,y)
#define I2O_EXEC_STATUS_GET_REPLY_getCurrentPrivateMemSize(x)\
getLU4((&(x)->CurrentPrivateMemSize),0)
#define I2O_EXEC_STATUS_GET_REPLY_setCurrentPrivateMemSize(x,y)\
setLU4((&(x)->CurrentPrivateMemSize),0,y)
#define I2O_EXEC_STATUS_GET_REPLY_getCurrentPrivateMemBase(x)\
getLU4((&(x)->CurrentPrivateMemBase),0)
#define I2O_EXEC_STATUS_GET_REPLY_setCurrentPrivateMemBase(x,y)\
setLU4((&(x)->CurrentPrivateMemBase),0,y)
#define I2O_EXEC_STATUS_GET_REPLY_getDesiredPrivateIOSize(x)\
getLU4((&(x)->DesiredPrivateIOSize),0)
#define I2O_EXEC_STATUS_GET_REPLY_setDesiredPrivateIOSize(x,y)\
setLU4((&(x)->DesiredPrivateIOSize),0,y)
#define I2O_EXEC_STATUS_GET_REPLY_getCurrentPrivateIOSize(x)\
getLU4((&(x)->CurrentPrivateIOSize),0)
#define I2O_EXEC_STATUS_GET_REPLY_setCurrentPrivateIOSize(x,y)\
setLU4((&(x)->CurrentPrivateIOSize),0,y)
#define I2O_EXEC_STATUS_GET_REPLY_getCurrentPrivateIOBase(x)\
getLU4((&(x)->CurrentPrivateIOBase),0)
#define I2O_EXEC_STATUS_GET_REPLY_setCurrentPrivateIOBase(x,y)\
setLU4((&(x)->CurrentPrivateIOBase),0,y)
//#define I2O_EXEC_STATUS_GET_REPLY_getreserved3(x)
#define I2O_EXEC_STATUS_GET_REPLY_getSyncByte(x)\
getU1((&(x)->SyncByte),0)
#define I2O_EXEC_STATUS_GET_REPLY_setSyncByte(x,y)\
setU1((&(x)->SyncByte),0,y)
#endif /* __INCi2odeph */
|