| 1 | /* |
|---|
| 2 | * I2O user space accessible structures/APIs |
|---|
| 3 | * |
|---|
| 4 | * (c) Copyright 1999, 2000 Red Hat Software |
|---|
| 5 | * |
|---|
| 6 | * This program is free software; you can redistribute it and/or |
|---|
| 7 | * modify it under the terms of the GNU General Public License |
|---|
| 8 | * as published by the Free Software Foundation; either version |
|---|
| 9 | * 2 of the License, or (at your option) any later version. |
|---|
| 10 | * |
|---|
| 11 | ************************************************************************* |
|---|
| 12 | * |
|---|
| 13 | * This header file defines the I2O APIs that are available to both |
|---|
| 14 | * the kernel and user level applications. Kernel specific structures |
|---|
| 15 | * are defined in i2o_osm. OSMs should include _only_ i2o_osm.h which |
|---|
| 16 | * automatically includs this file. |
|---|
| 17 | * |
|---|
| 18 | */ |
|---|
| 19 | |
|---|
| 20 | #ifndef _I2O_DEV_H |
|---|
| 21 | #define _I2O_DEV_H |
|---|
| 22 | |
|---|
| 23 | #include <linux/types.h> |
|---|
| 24 | |
|---|
| 25 | /* How many controllers are we allowing */ |
|---|
| 26 | #define MAX_I2O_CONTROLLERS 32 |
|---|
| 27 | |
|---|
| 28 | //#include <linux/ioctl.h> |
|---|
| 29 | |
|---|
| 30 | /* |
|---|
| 31 | * I2O Control IOCTLs and structures |
|---|
| 32 | */ |
|---|
| 33 | #define I2O_MAGIC_NUMBER 'i' |
|---|
| 34 | #define I2OGETIOPS _IOR(I2O_MAGIC_NUMBER,0,__u8[MAX_I2O_CONTROLLERS]) |
|---|
| 35 | #define I2OHRTGET _IOWR(I2O_MAGIC_NUMBER,1,struct i2o_cmd_hrtlct) |
|---|
| 36 | #define I2OLCTGET _IOWR(I2O_MAGIC_NUMBER,2,struct i2o_cmd_hrtlct) |
|---|
| 37 | #define I2OPARMSET _IOWR(I2O_MAGIC_NUMBER,3,struct i2o_cmd_psetget) |
|---|
| 38 | #define I2OPARMGET _IOWR(I2O_MAGIC_NUMBER,4,struct i2o_cmd_psetget) |
|---|
| 39 | #define I2OSWDL _IOWR(I2O_MAGIC_NUMBER,5,struct i2o_sw_xfer) |
|---|
| 40 | #define I2OSWUL _IOWR(I2O_MAGIC_NUMBER,6,struct i2o_sw_xfer) |
|---|
| 41 | #define I2OSWDEL _IOWR(I2O_MAGIC_NUMBER,7,struct i2o_sw_xfer) |
|---|
| 42 | #define I2OVALIDATE _IOR(I2O_MAGIC_NUMBER,8,__u32) |
|---|
| 43 | #define I2OHTML _IOWR(I2O_MAGIC_NUMBER,9,struct i2o_html) |
|---|
| 44 | #define I2OEVTREG _IOW(I2O_MAGIC_NUMBER,10,struct i2o_evt_id) |
|---|
| 45 | #define I2OEVTGET _IOR(I2O_MAGIC_NUMBER,11,struct i2o_evt_info) |
|---|
| 46 | #define I2OPASSTHRU _IOR(I2O_MAGIC_NUMBER,12,struct i2o_cmd_passthru) |
|---|
| 47 | #define I2OPASSTHRU32 _IOR(I2O_MAGIC_NUMBER,12,struct i2o_cmd_passthru32) |
|---|
| 48 | |
|---|
| 49 | struct i2o_cmd_passthru32 { |
|---|
| 50 | unsigned int iop; /* IOP unit number */ |
|---|
| 51 | __u32 msg; /* message */ |
|---|
| 52 | }; |
|---|
| 53 | |
|---|
| 54 | struct i2o_cmd_passthru { |
|---|
| 55 | unsigned int iop; /* IOP unit number */ |
|---|
| 56 | void *msg; /* message */ |
|---|
| 57 | }; |
|---|
| 58 | |
|---|
| 59 | struct i2o_cmd_hrtlct { |
|---|
| 60 | unsigned int iop; /* IOP unit number */ |
|---|
| 61 | void *resbuf; /* Buffer for result */ |
|---|
| 62 | unsigned int *reslen; /* Buffer length in bytes */ |
|---|
| 63 | }; |
|---|
| 64 | |
|---|
| 65 | struct i2o_cmd_psetget { |
|---|
| 66 | unsigned int iop; /* IOP unit number */ |
|---|
| 67 | unsigned int tid; /* Target device TID */ |
|---|
| 68 | void *opbuf; /* Operation List buffer */ |
|---|
| 69 | unsigned int oplen; /* Operation List buffer length in bytes */ |
|---|
| 70 | void *resbuf; /* Result List buffer */ |
|---|
| 71 | unsigned int *reslen; /* Result List buffer length in bytes */ |
|---|
| 72 | }; |
|---|
| 73 | |
|---|
| 74 | struct i2o_sw_xfer { |
|---|
| 75 | unsigned int iop; /* IOP unit number */ |
|---|
| 76 | unsigned char flags; /* Flags field */ |
|---|
| 77 | unsigned char sw_type; /* Software type */ |
|---|
| 78 | unsigned int sw_id; /* Software ID */ |
|---|
| 79 | void *buf; /* Pointer to software buffer */ |
|---|
| 80 | unsigned int *swlen; /* Length of software data */ |
|---|
| 81 | unsigned int *maxfrag; /* Maximum fragment count */ |
|---|
| 82 | unsigned int *curfrag; /* Current fragment count */ |
|---|
| 83 | }; |
|---|
| 84 | |
|---|
| 85 | struct i2o_html { |
|---|
| 86 | unsigned int iop; /* IOP unit number */ |
|---|
| 87 | unsigned int tid; /* Target device ID */ |
|---|
| 88 | unsigned int page; /* HTML page */ |
|---|
| 89 | void *resbuf; /* Buffer for reply HTML page */ |
|---|
| 90 | unsigned int *reslen; /* Length in bytes of reply buffer */ |
|---|
| 91 | void *qbuf; /* Pointer to HTTP query string */ |
|---|
| 92 | unsigned int qlen; /* Length in bytes of query string buffer */ |
|---|
| 93 | }; |
|---|
| 94 | |
|---|
| 95 | #define I2O_EVT_Q_LEN 32 |
|---|
| 96 | |
|---|
| 97 | struct i2o_evt_id { |
|---|
| 98 | unsigned int iop; |
|---|
| 99 | unsigned int tid; |
|---|
| 100 | unsigned int evt_mask; |
|---|
| 101 | }; |
|---|
| 102 | |
|---|
| 103 | /* Event data size = frame size - message header + evt indicator */ |
|---|
| 104 | #define I2O_EVT_DATA_SIZE 88 |
|---|
| 105 | |
|---|
| 106 | struct i2o_evt_info { |
|---|
| 107 | struct i2o_evt_id id; |
|---|
| 108 | unsigned char evt_data[I2O_EVT_DATA_SIZE]; |
|---|
| 109 | unsigned int data_size; |
|---|
| 110 | }; |
|---|
| 111 | |
|---|
| 112 | struct i2o_evt_get { |
|---|
| 113 | struct i2o_evt_info info; |
|---|
| 114 | int pending; |
|---|
| 115 | int lost; |
|---|
| 116 | }; |
|---|
| 117 | |
|---|
| 118 | /************************************************************************** |
|---|
| 119 | * HRT related constants and structures |
|---|
| 120 | **************************************************************************/ |
|---|
| 121 | #define I2O_BUS_LOCAL 0 |
|---|
| 122 | #define I2O_BUS_ISA 1 |
|---|
| 123 | #define I2O_BUS_EISA 2 |
|---|
| 124 | #define I2O_BUS_MCA 3 |
|---|
| 125 | #define I2O_BUS_PCI 4 |
|---|
| 126 | #define I2O_BUS_PCMCIA 5 |
|---|
| 127 | #define I2O_BUS_NUBUS 6 |
|---|
| 128 | #define I2O_BUS_CARDBUS 7 |
|---|
| 129 | #define I2O_BUS_UNKNOWN 0x80 |
|---|
| 130 | |
|---|
| 131 | typedef struct _i2o_pci_bus { |
|---|
| 132 | __u8 PciFunctionNumber; |
|---|
| 133 | __u8 PciDeviceNumber; |
|---|
| 134 | __u8 PciBusNumber; |
|---|
| 135 | __u8 reserved; |
|---|
| 136 | __u16 PciVendorID; |
|---|
| 137 | __u16 PciDeviceID; |
|---|
| 138 | } i2o_pci_bus; |
|---|
| 139 | |
|---|
| 140 | typedef struct _i2o_local_bus { |
|---|
| 141 | __u16 LbBaseIOPort; |
|---|
| 142 | __u16 reserved; |
|---|
| 143 | __u32 LbBaseMemoryAddress; |
|---|
| 144 | } i2o_local_bus; |
|---|
| 145 | |
|---|
| 146 | typedef struct _i2o_isa_bus { |
|---|
| 147 | __u16 IsaBaseIOPort; |
|---|
| 148 | __u8 CSN; |
|---|
| 149 | __u8 reserved; |
|---|
| 150 | __u32 IsaBaseMemoryAddress; |
|---|
| 151 | } i2o_isa_bus; |
|---|
| 152 | |
|---|
| 153 | typedef struct _i2o_eisa_bus_info { |
|---|
| 154 | __u16 EisaBaseIOPort; |
|---|
| 155 | __u8 reserved; |
|---|
| 156 | __u8 EisaSlotNumber; |
|---|
| 157 | __u32 EisaBaseMemoryAddress; |
|---|
| 158 | } i2o_eisa_bus; |
|---|
| 159 | |
|---|
| 160 | typedef struct _i2o_mca_bus { |
|---|
| 161 | __u16 McaBaseIOPort; |
|---|
| 162 | __u8 reserved; |
|---|
| 163 | __u8 McaSlotNumber; |
|---|
| 164 | __u32 McaBaseMemoryAddress; |
|---|
| 165 | } i2o_mca_bus; |
|---|
| 166 | |
|---|
| 167 | typedef struct _i2o_other_bus { |
|---|
| 168 | __u16 BaseIOPort; |
|---|
| 169 | __u16 reserved; |
|---|
| 170 | __u32 BaseMemoryAddress; |
|---|
| 171 | } i2o_other_bus; |
|---|
| 172 | |
|---|
| 173 | typedef struct _i2o_hrt_entry { |
|---|
| 174 | __u32 adapter_id; |
|---|
| 175 | __u32 parent_tid:12; |
|---|
| 176 | __u32 state:4; |
|---|
| 177 | __u32 bus_num:8; |
|---|
| 178 | __u32 bus_type:8; |
|---|
| 179 | union { |
|---|
| 180 | i2o_pci_bus pci_bus; |
|---|
| 181 | i2o_local_bus local_bus; |
|---|
| 182 | i2o_isa_bus isa_bus; |
|---|
| 183 | i2o_eisa_bus eisa_bus; |
|---|
| 184 | i2o_mca_bus mca_bus; |
|---|
| 185 | i2o_other_bus other_bus; |
|---|
| 186 | } bus; |
|---|
| 187 | } i2o_hrt_entry; |
|---|
| 188 | |
|---|
| 189 | typedef struct _i2o_hrt { |
|---|
| 190 | __u16 num_entries; |
|---|
| 191 | __u8 entry_len; |
|---|
| 192 | __u8 hrt_version; |
|---|
| 193 | __u32 change_ind; |
|---|
| 194 | i2o_hrt_entry hrt_entry[1]; |
|---|
| 195 | } i2o_hrt; |
|---|
| 196 | |
|---|
| 197 | typedef struct _i2o_lct_entry { |
|---|
| 198 | __u32 entry_size:16; |
|---|
| 199 | __u32 tid:12; |
|---|
| 200 | __u32 reserved:4; |
|---|
| 201 | __u32 change_ind; |
|---|
| 202 | __u32 device_flags; |
|---|
| 203 | __u32 class_id:12; |
|---|
| 204 | __u32 version:4; |
|---|
| 205 | __u32 vendor_id:16; |
|---|
| 206 | __u32 sub_class; |
|---|
| 207 | __u32 user_tid:12; |
|---|
| 208 | __u32 parent_tid:12; |
|---|
| 209 | __u32 bios_info:8; |
|---|
| 210 | __u8 identity_tag[8]; |
|---|
| 211 | __u32 event_capabilities; |
|---|
| 212 | } i2o_lct_entry; |
|---|
| 213 | |
|---|
| 214 | typedef struct _i2o_lct { |
|---|
| 215 | __u32 table_size:16; |
|---|
| 216 | __u32 boot_tid:12; |
|---|
| 217 | __u32 lct_ver:4; |
|---|
| 218 | __u32 iop_flags; |
|---|
| 219 | __u32 change_ind; |
|---|
| 220 | i2o_lct_entry lct_entry[1]; |
|---|
| 221 | } i2o_lct; |
|---|
| 222 | |
|---|
| 223 | typedef struct _i2o_status_block { |
|---|
| 224 | __u16 org_id; |
|---|
| 225 | __u16 reserved; |
|---|
| 226 | __u16 iop_id:12; |
|---|
| 227 | __u16 reserved1:4; |
|---|
| 228 | __u16 host_unit_id; |
|---|
| 229 | __u16 segment_number:12; |
|---|
| 230 | __u16 i2o_version:4; |
|---|
| 231 | __u8 iop_state; |
|---|
| 232 | __u8 msg_type; |
|---|
| 233 | __u16 inbound_frame_size; |
|---|
| 234 | __u8 init_code; |
|---|
| 235 | __u8 reserved2; |
|---|
| 236 | __u32 max_inbound_frames; |
|---|
| 237 | __u32 cur_inbound_frames; |
|---|
| 238 | __u32 max_outbound_frames; |
|---|
| 239 | char product_id[24]; |
|---|
| 240 | __u32 expected_lct_size; |
|---|
| 241 | __u32 iop_capabilities; |
|---|
| 242 | __u32 desired_mem_size; |
|---|
| 243 | __u32 current_mem_size; |
|---|
| 244 | __u32 current_mem_base; |
|---|
| 245 | __u32 desired_io_size; |
|---|
| 246 | __u32 current_io_size; |
|---|
| 247 | __u32 current_io_base; |
|---|
| 248 | __u32 reserved3:24; |
|---|
| 249 | __u32 cmd_status:8; |
|---|
| 250 | } i2o_status_block; |
|---|
| 251 | |
|---|
| 252 | /* Event indicator mask flags */ |
|---|
| 253 | #define I2O_EVT_IND_STATE_CHANGE 0x80000000 |
|---|
| 254 | #define I2O_EVT_IND_GENERAL_WARNING 0x40000000 |
|---|
| 255 | #define I2O_EVT_IND_CONFIGURATION_FLAG 0x20000000 |
|---|
| 256 | #define I2O_EVT_IND_LOCK_RELEASE 0x10000000 |
|---|
| 257 | #define I2O_EVT_IND_CAPABILITY_CHANGE 0x08000000 |
|---|
| 258 | #define I2O_EVT_IND_DEVICE_RESET 0x04000000 |
|---|
| 259 | #define I2O_EVT_IND_EVT_MASK_MODIFIED 0x02000000 |
|---|
| 260 | #define I2O_EVT_IND_FIELD_MODIFIED 0x01000000 |
|---|
| 261 | #define I2O_EVT_IND_VENDOR_EVT 0x00800000 |
|---|
| 262 | #define I2O_EVT_IND_DEVICE_STATE 0x00400000 |
|---|
| 263 | |
|---|
| 264 | /* Executive event indicitors */ |
|---|
| 265 | #define I2O_EVT_IND_EXEC_RESOURCE_LIMITS 0x00000001 |
|---|
| 266 | #define I2O_EVT_IND_EXEC_CONNECTION_FAIL 0x00000002 |
|---|
| 267 | #define I2O_EVT_IND_EXEC_ADAPTER_FAULT 0x00000004 |
|---|
| 268 | #define I2O_EVT_IND_EXEC_POWER_FAIL 0x00000008 |
|---|
| 269 | #define I2O_EVT_IND_EXEC_RESET_PENDING 0x00000010 |
|---|
| 270 | #define I2O_EVT_IND_EXEC_RESET_IMMINENT 0x00000020 |
|---|
| 271 | #define I2O_EVT_IND_EXEC_HW_FAIL 0x00000040 |
|---|
| 272 | #define I2O_EVT_IND_EXEC_XCT_CHANGE 0x00000080 |
|---|
| 273 | #define I2O_EVT_IND_EXEC_NEW_LCT_ENTRY 0x00000100 |
|---|
| 274 | #define I2O_EVT_IND_EXEC_MODIFIED_LCT 0x00000200 |
|---|
| 275 | #define I2O_EVT_IND_EXEC_DDM_AVAILABILITY 0x00000400 |
|---|
| 276 | |
|---|
| 277 | /* Random Block Storage Event Indicators */ |
|---|
| 278 | #define I2O_EVT_IND_BSA_VOLUME_LOAD 0x00000001 |
|---|
| 279 | #define I2O_EVT_IND_BSA_VOLUME_UNLOAD 0x00000002 |
|---|
| 280 | #define I2O_EVT_IND_BSA_VOLUME_UNLOAD_REQ 0x00000004 |
|---|
| 281 | #define I2O_EVT_IND_BSA_CAPACITY_CHANGE 0x00000008 |
|---|
| 282 | #define I2O_EVT_IND_BSA_SCSI_SMART 0x00000010 |
|---|
| 283 | |
|---|
| 284 | /* Event data for generic events */ |
|---|
| 285 | #define I2O_EVT_STATE_CHANGE_NORMAL 0x00 |
|---|
| 286 | #define I2O_EVT_STATE_CHANGE_SUSPENDED 0x01 |
|---|
| 287 | #define I2O_EVT_STATE_CHANGE_RESTART 0x02 |
|---|
| 288 | #define I2O_EVT_STATE_CHANGE_NA_RECOVER 0x03 |
|---|
| 289 | #define I2O_EVT_STATE_CHANGE_NA_NO_RECOVER 0x04 |
|---|
| 290 | #define I2O_EVT_STATE_CHANGE_QUIESCE_REQUEST 0x05 |
|---|
| 291 | #define I2O_EVT_STATE_CHANGE_FAILED 0x10 |
|---|
| 292 | #define I2O_EVT_STATE_CHANGE_FAULTED 0x11 |
|---|
| 293 | |
|---|
| 294 | #define I2O_EVT_GEN_WARNING_NORMAL 0x00 |
|---|
| 295 | #define I2O_EVT_GEN_WARNING_ERROR_THRESHOLD 0x01 |
|---|
| 296 | #define I2O_EVT_GEN_WARNING_MEDIA_FAULT 0x02 |
|---|
| 297 | |
|---|
| 298 | #define I2O_EVT_CAPABILITY_OTHER 0x01 |
|---|
| 299 | #define I2O_EVT_CAPABILITY_CHANGED 0x02 |
|---|
| 300 | |
|---|
| 301 | #define I2O_EVT_SENSOR_STATE_CHANGED 0x01 |
|---|
| 302 | |
|---|
| 303 | /* |
|---|
| 304 | * I2O classes / subclasses |
|---|
| 305 | */ |
|---|
| 306 | |
|---|
| 307 | /* Class ID and Code Assignments |
|---|
| 308 | * (LCT.ClassID.Version field) |
|---|
| 309 | */ |
|---|
| 310 | #define I2O_CLASS_VERSION_10 0x00 |
|---|
| 311 | #define I2O_CLASS_VERSION_11 0x01 |
|---|
| 312 | |
|---|
| 313 | /* Class code names |
|---|
| 314 | * (from v1.5 Table 6-1 Class Code Assignments.) |
|---|
| 315 | */ |
|---|
| 316 | |
|---|
| 317 | #define I2O_CLASS_EXECUTIVE 0x000 |
|---|
| 318 | #define I2O_CLASS_DDM 0x001 |
|---|
| 319 | #define I2O_CLASS_RANDOM_BLOCK_STORAGE 0x010 |
|---|
| 320 | #define I2O_CLASS_SEQUENTIAL_STORAGE 0x011 |
|---|
| 321 | #define I2O_CLASS_LAN 0x020 |
|---|
| 322 | #define I2O_CLASS_WAN 0x030 |
|---|
| 323 | #define I2O_CLASS_FIBRE_CHANNEL_PORT 0x040 |
|---|
| 324 | #define I2O_CLASS_FIBRE_CHANNEL_PERIPHERAL 0x041 |
|---|
| 325 | #define I2O_CLASS_SCSI_PERIPHERAL 0x051 |
|---|
| 326 | #define I2O_CLASS_ATE_PORT 0x060 |
|---|
| 327 | #define I2O_CLASS_ATE_PERIPHERAL 0x061 |
|---|
| 328 | #define I2O_CLASS_FLOPPY_CONTROLLER 0x070 |
|---|
| 329 | #define I2O_CLASS_FLOPPY_DEVICE 0x071 |
|---|
| 330 | #define I2O_CLASS_BUS_ADAPTER_PORT 0x080 |
|---|
| 331 | #define I2O_CLASS_PEER_TRANSPORT_AGENT 0x090 |
|---|
| 332 | #define I2O_CLASS_PEER_TRANSPORT 0x091 |
|---|
| 333 | #define I2O_CLASS_END 0xfff |
|---|
| 334 | |
|---|
| 335 | /* |
|---|
| 336 | * Rest of 0x092 - 0x09f reserved for peer-to-peer classes |
|---|
| 337 | */ |
|---|
| 338 | |
|---|
| 339 | #define I2O_CLASS_MATCH_ANYCLASS 0xffffffff |
|---|
| 340 | |
|---|
| 341 | /* |
|---|
| 342 | * Subclasses |
|---|
| 343 | */ |
|---|
| 344 | |
|---|
| 345 | #define I2O_SUBCLASS_i960 0x001 |
|---|
| 346 | #define I2O_SUBCLASS_HDM 0x020 |
|---|
| 347 | #define I2O_SUBCLASS_ISM 0x021 |
|---|
| 348 | |
|---|
| 349 | /* Operation functions */ |
|---|
| 350 | |
|---|
| 351 | #define I2O_PARAMS_FIELD_GET 0x0001 |
|---|
| 352 | #define I2O_PARAMS_LIST_GET 0x0002 |
|---|
| 353 | #define I2O_PARAMS_MORE_GET 0x0003 |
|---|
| 354 | #define I2O_PARAMS_SIZE_GET 0x0004 |
|---|
| 355 | #define I2O_PARAMS_TABLE_GET 0x0005 |
|---|
| 356 | #define I2O_PARAMS_FIELD_SET 0x0006 |
|---|
| 357 | #define I2O_PARAMS_LIST_SET 0x0007 |
|---|
| 358 | #define I2O_PARAMS_ROW_ADD 0x0008 |
|---|
| 359 | #define I2O_PARAMS_ROW_DELETE 0x0009 |
|---|
| 360 | #define I2O_PARAMS_TABLE_CLEAR 0x000A |
|---|
| 361 | |
|---|
| 362 | /* |
|---|
| 363 | * I2O serial number conventions / formats |
|---|
| 364 | * (circa v1.5) |
|---|
| 365 | */ |
|---|
| 366 | |
|---|
| 367 | #define I2O_SNFORMAT_UNKNOWN 0 |
|---|
| 368 | #define I2O_SNFORMAT_BINARY 1 |
|---|
| 369 | #define I2O_SNFORMAT_ASCII 2 |
|---|
| 370 | #define I2O_SNFORMAT_UNICODE 3 |
|---|
| 371 | #define I2O_SNFORMAT_LAN48_MAC 4 |
|---|
| 372 | #define I2O_SNFORMAT_WAN 5 |
|---|
| 373 | |
|---|
| 374 | /* |
|---|
| 375 | * Plus new in v2.0 (Yellowstone pdf doc) |
|---|
| 376 | */ |
|---|
| 377 | |
|---|
| 378 | #define I2O_SNFORMAT_LAN64_MAC 6 |
|---|
| 379 | #define I2O_SNFORMAT_DDM 7 |
|---|
| 380 | #define I2O_SNFORMAT_IEEE_REG64 8 |
|---|
| 381 | #define I2O_SNFORMAT_IEEE_REG128 9 |
|---|
| 382 | #define I2O_SNFORMAT_UNKNOWN2 0xff |
|---|
| 383 | |
|---|
| 384 | /* |
|---|
| 385 | * I2O Get Status State values |
|---|
| 386 | */ |
|---|
| 387 | |
|---|
| 388 | #define ADAPTER_STATE_INITIALIZING 0x01 |
|---|
| 389 | #define ADAPTER_STATE_RESET 0x02 |
|---|
| 390 | #define ADAPTER_STATE_HOLD 0x04 |
|---|
| 391 | #define ADAPTER_STATE_READY 0x05 |
|---|
| 392 | #define ADAPTER_STATE_OPERATIONAL 0x08 |
|---|
| 393 | #define ADAPTER_STATE_FAILED 0x10 |
|---|
| 394 | #define ADAPTER_STATE_FAULTED 0x11 |
|---|
| 395 | |
|---|
| 396 | #endif /* _I2O_DEV_H */ |
|---|