i2o-dev.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

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