i2o.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:20k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * I2O kernel 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 defined the I2O APIs/structures for use by 
  14.  * the I2O kernel modules.
  15.  *
  16.  */
  17. #ifndef _I2O_H
  18. #define _I2O_H
  19. #ifdef __KERNEL__ /* This file to be included by kernel only */
  20. #include <linux/i2o-dev.h>
  21. /* How many different OSM's are we allowing */
  22. #define MAX_I2O_MODULES 64
  23. /* How many OSMs can register themselves for device status updates? */
  24. #define I2O_MAX_MANAGERS 4
  25. #include <asm/semaphore.h> /* Needed for MUTEX init macros */
  26. #include <linux/config.h>
  27. #include <linux/notifier.h>
  28. #include <asm/atomic.h>
  29. /*
  30.  * Message structures
  31.  */
  32. struct i2o_message
  33. {
  34. u8 version_offset;
  35. u8 flags;
  36. u16 size;
  37. u32 target_tid:12;
  38. u32 init_tid:12;
  39. u32 function:8;
  40. u32 initiator_context;
  41. /* List follows */
  42. };
  43. /*
  44.  * Each I2O device entity has one or more of these. There is one
  45.  * per device.
  46.  */
  47. struct i2o_device
  48. {
  49. i2o_lct_entry lct_data; /* Device LCT information */
  50. u32 flags;
  51. int i2oversion; /* I2O version supported. Actually
  52.  * there should be high and low
  53.  * version */
  54. struct proc_dir_entry *proc_entry; /* /proc dir */
  55. /* Primary user */
  56. struct i2o_handler *owner;
  57. /* Management users */
  58. struct i2o_handler *managers[I2O_MAX_MANAGERS];
  59. int num_managers;
  60. struct i2o_controller *controller; /* Controlling IOP */
  61. struct i2o_device *next; /* Chain */
  62. struct i2o_device *prev;
  63. char dev_name[8]; /* linux /dev name if available */
  64. };
  65. /*
  66.  * Resource data for each PCI I2O controller
  67.  */
  68. struct i2o_pci
  69. {
  70. int irq;
  71. int short_req:1; /* Use small block sizes        */
  72. int dpt:1; /* Don't quiesce                */
  73. int promise:1; /* Promise controller */
  74. #ifdef CONFIG_MTRR
  75. int mtrr_reg0;
  76. int mtrr_reg1;
  77. #endif
  78. };
  79. /*
  80.  * Transport types supported by I2O stack
  81.  */
  82. #define I2O_TYPE_PCI 0x01 /* PCI I2O controller */
  83. /*
  84.  * Each I2O controller has one of these objects
  85.  */
  86. struct i2o_controller
  87. {
  88. struct pci_dev *pdev; /* PCI device */
  89. char name[16];
  90. int unit;
  91. int type;
  92. int enabled;
  93. struct notifier_block *event_notifer; /* Events */
  94. atomic_t users;
  95. struct i2o_device *devices; /* I2O device chain */
  96. struct i2o_controller *next; /* Controller chain */
  97. unsigned long post_port; /* Inbout port address */
  98. unsigned long reply_port; /* Outbound port address */
  99. unsigned long irq_mask; /* Interrupt register address */
  100. /* Dynamic LCT related data */
  101. struct semaphore lct_sem;
  102. int lct_pid;
  103. int lct_running;
  104. i2o_status_block *status_block; /* IOP status block */
  105. i2o_lct *lct; /* Logical Config Table */
  106. i2o_lct *dlct; /* Temp LCT */
  107. i2o_hrt *hrt; /* HW Resource Table */
  108. unsigned long mem_offset; /* MFA offset */
  109. unsigned long mem_phys; /* MFA physical */
  110. int battery:1; /* Has a battery backup */
  111. int io_alloc:1; /* An I/O resource was allocated */
  112. int mem_alloc:1; /* A memory resource was allocated */
  113. struct resource io_resource; /* I/O resource allocated to the IOP */
  114. struct resource mem_resource; /* Mem resource allocated to the IOP */
  115. struct proc_dir_entry *proc_entry; /* /proc dir */
  116. union { /* Bus information */
  117. struct i2o_pci pci;
  118. } bus;
  119. /* Bus specific destructor */
  120. void (*destructor)(struct i2o_controller *);
  121. /* Bus specific attach/detach */
  122. int (*bind)(struct i2o_controller *, struct i2o_device *);
  123. /* Bus specific initiator */
  124. int (*unbind)(struct i2o_controller *, struct i2o_device *);
  125. /* Bus specific enable/disable */
  126. void (*bus_enable)(struct i2o_controller *);
  127. void (*bus_disable)(struct i2o_controller *);
  128. void *page_frame; /* Message buffers */
  129. dma_addr_t page_frame_map; /* Cache map */
  130. };
  131. /*
  132.  * OSM resgistration block
  133.  *
  134.  * Each OSM creates at least one of these and registers it with the
  135.  * I2O core through i2o_register_handler.  An OSM may want to
  136.  * register more than one if it wants a fast path to a reply
  137.  * handler by having a separate initiator context for each 
  138.  * class function.
  139.  */
  140. struct i2o_handler
  141. {
  142. /* Message reply handler */
  143. void (*reply)(struct i2o_handler *, struct i2o_controller *,
  144.       struct i2o_message *);
  145. /* New device notification handler */
  146. void (*new_dev_notify)(struct i2o_controller *, struct i2o_device *);
  147. /* Device deltion handler */
  148. void (*dev_del_notify)(struct i2o_controller *, struct i2o_device *);
  149. /* Reboot notification handler */
  150. void (*reboot_notify)(void);
  151. char *name; /* OSM name */
  152. int context; /* Low 8 bits of the transaction info */
  153. u32 class; /* I2O classes that this driver handles */
  154. /* User data follows */
  155. };
  156. #ifdef MODULE
  157. /*
  158.  * Used by bus specific modules to communicate with the core
  159.  *
  160.  * This is needed because the bus modules cannot make direct
  161.  * calls to the core as this results in the i2o_bus_specific_module
  162.  * being dependent on the core, not the otherway around.
  163.  * In that case, a 'modprobe i2o_lan' loads i2o_core & i2o_lan,
  164.  * but _not_ i2o_pci...which makes the whole thing pretty useless :)
  165.  *
  166.  */
  167. struct i2o_core_func_table
  168. {
  169. int (*install)(struct i2o_controller *);
  170. int (*activate)(struct i2o_controller *);
  171. struct i2o_controller *(*find)(int);
  172. void (*unlock)(struct i2o_controller *);
  173. void (*run_queue)(struct i2o_controller * c);
  174. int (*delete)(struct i2o_controller *);
  175. };
  176. #endif /* MODULE */
  177. /*
  178.  * I2O System table entry
  179.  *
  180.  * The system table contains information about all the IOPs in the
  181.  * system.  It is sent to all IOPs so that they can create peer2peer
  182.  * connections between them.
  183.  */
  184. struct i2o_sys_tbl_entry
  185. {
  186. u16 org_id;
  187. u16 reserved1;
  188. u32 iop_id:12;
  189. u32 reserved2:20;
  190. u16 seg_num:12;
  191. u16 i2o_version:4;
  192. u8 iop_state;
  193. u8 msg_type;
  194. u16 frame_size;
  195. u16 reserved3;
  196. u32 last_changed;
  197. u32 iop_capabilities;
  198. u32 inbound_low;
  199. u32 inbound_high;
  200. };
  201. struct i2o_sys_tbl
  202. {
  203. u8 num_entries;
  204. u8 version;
  205. u16 reserved1;
  206. u32 change_ind;
  207. u32 reserved2;
  208. u32 reserved3;
  209. struct i2o_sys_tbl_entry iops[0];
  210. };
  211. /*
  212.  * Messenger inlines
  213.  */
  214. static inline u32 I2O_POST_READ32(struct i2o_controller *c)
  215. {
  216. return readl(c->post_port);
  217. }
  218. static inline void I2O_POST_WRITE32(struct i2o_controller *c, u32 val)
  219. {
  220. writel(val, c->post_port);
  221. }
  222. static inline u32 I2O_REPLY_READ32(struct i2o_controller *c)
  223. {
  224. return readl(c->reply_port);
  225. }
  226. static inline void I2O_REPLY_WRITE32(struct i2o_controller *c, u32 val)
  227. {
  228. writel(val, c->reply_port);
  229. }
  230. static inline u32 I2O_IRQ_READ32(struct i2o_controller *c)
  231. {
  232. return readl(c->irq_mask);
  233. }
  234. static inline void I2O_IRQ_WRITE32(struct i2o_controller *c, u32 val)
  235. {
  236. writel(val, c->irq_mask);
  237. }
  238. static inline void i2o_post_message(struct i2o_controller *c, u32 m)
  239. {
  240. /* The second line isnt spurious - thats forcing PCI posting */
  241. I2O_POST_WRITE32(c, m);
  242. (void) I2O_IRQ_READ32(c);
  243. }
  244. static inline void i2o_flush_reply(struct i2o_controller *c, u32 m)
  245. {
  246. I2O_REPLY_WRITE32(c, m);
  247. }
  248. /*
  249.  * Endian handling wrapped into the macro - keeps the core code
  250.  * cleaner.
  251.  */
  252.  
  253. #define i2o_raw_writel(val, mem) __raw_writel(cpu_to_le32(val), mem)
  254. extern struct i2o_controller *i2o_find_controller(int);
  255. extern void i2o_unlock_controller(struct i2o_controller *);
  256. extern struct i2o_controller *i2o_controller_chain;
  257. extern int i2o_num_controllers;
  258. extern int i2o_status_get(struct i2o_controller *);
  259. extern int i2o_install_handler(struct i2o_handler *);
  260. extern int i2o_remove_handler(struct i2o_handler *);
  261. extern int i2o_claim_device(struct i2o_device *, struct i2o_handler *);
  262. extern int i2o_release_device(struct i2o_device *, struct i2o_handler *);
  263. extern int i2o_device_notify_on(struct i2o_device *, struct i2o_handler *);
  264. extern int i2o_device_notify_off(struct i2o_device *,
  265.  struct i2o_handler *);
  266. extern int i2o_post_this(struct i2o_controller *, u32 *, int);
  267. extern int i2o_post_wait(struct i2o_controller *, u32 *, int, int);
  268. extern int i2o_post_wait_mem(struct i2o_controller *, u32 *, int, int,
  269.      void *, void *);
  270. extern int i2o_query_scalar(struct i2o_controller *, int, int, int, void *,
  271.     int);
  272. extern int i2o_set_scalar(struct i2o_controller *, int, int, int, void *,
  273.   int);
  274. extern int i2o_query_table(int, struct i2o_controller *, int, int, int,
  275.    void *, int, void *, int);
  276. extern int i2o_clear_table(struct i2o_controller *, int, int);
  277. extern int i2o_row_add_table(struct i2o_controller *, int, int, int,
  278.      void *, int);
  279. extern int i2o_issue_params(int, struct i2o_controller *, int, void *, int,
  280.     void *, int);
  281. extern int i2o_event_register(struct i2o_controller *, u32, u32, u32, u32);
  282. extern int i2o_event_ack(struct i2o_controller *, u32 *);
  283. extern void i2o_report_status(const char *, const char *, u32 *);
  284. extern void i2o_dump_message(u32 *);
  285. extern const char *i2o_get_class_name(int);
  286. extern int i2o_install_controller(struct i2o_controller *);
  287. extern int i2o_activate_controller(struct i2o_controller *);
  288. extern void i2o_run_queue(struct i2o_controller *);
  289. extern int i2o_delete_controller(struct i2o_controller *);
  290. /*
  291.  * Cache strategies
  292.  */
  293.  
  294.  
  295. /* The NULL strategy leaves everything up to the controller. This tends to be a
  296.  * pessimal but functional choice.
  297.  */
  298. #define CACHE_NULL 0
  299. /* Prefetch data when reading. We continually attempt to load the next 32 sectors
  300.  * into the controller cache. 
  301.  */
  302. #define CACHE_PREFETCH 1
  303. /* Prefetch data when reading. We sometimes attempt to load the next 32 sectors
  304.  * into the controller cache. When an I/O is less <= 8K we assume its probably
  305.  * not sequential and don't prefetch (default)
  306.  */
  307. #define CACHE_SMARTFETCH 2
  308. /* Data is written to the cache and then out on to the disk. The I/O must be
  309.  * physically on the medium before the write is acknowledged (default without
  310.  * NVRAM)
  311.  */
  312. #define CACHE_WRITETHROUGH 17
  313. /* Data is written to the cache and then out on to the disk. The controller
  314.  * is permitted to write back the cache any way it wants. (default if battery
  315.  * backed NVRAM is present). It can be useful to set this for swap regardless of
  316.  * battery state.
  317.  */
  318. #define CACHE_WRITEBACK 18
  319. /* Optimise for under powered controllers, especially on RAID1 and RAID0. We
  320.  * write large I/O's directly to disk bypassing the cache to avoid the extra
  321.  * memory copy hits. Small writes are writeback cached
  322.  */
  323. #define CACHE_SMARTBACK 19
  324. /* Optimise for under powered controllers, especially on RAID1 and RAID0. We
  325.  * write large I/O's directly to disk bypassing the cache to avoid the extra
  326.  * memory copy hits. Small writes are writethrough cached. Suitable for devices
  327.  * lacking battery backup
  328.  */
  329. #define CACHE_SMARTTHROUGH 20
  330. /*
  331.  * Ioctl structures
  332.  */
  333.  
  334. #define  BLKI2OGRSTRAT _IOR('2', 1, int) 
  335. #define  BLKI2OGWSTRAT _IOR('2', 2, int) 
  336. #define  BLKI2OSRSTRAT _IOW('2', 3, int) 
  337. #define  BLKI2OSWSTRAT _IOW('2', 4, int) 
  338. /*
  339.  * I2O Function codes
  340.  */
  341. /*
  342.  * Executive Class
  343.  */
  344. #define I2O_CMD_ADAPTER_ASSIGN 0xB3
  345. #define I2O_CMD_ADAPTER_READ 0xB2
  346. #define I2O_CMD_ADAPTER_RELEASE 0xB5
  347. #define I2O_CMD_BIOS_INFO_SET 0xA5
  348. #define I2O_CMD_BOOT_DEVICE_SET 0xA7
  349. #define I2O_CMD_CONFIG_VALIDATE 0xBB
  350. #define I2O_CMD_CONN_SETUP 0xCA
  351. #define I2O_CMD_DDM_DESTROY 0xB1
  352. #define I2O_CMD_DDM_ENABLE 0xD5
  353. #define I2O_CMD_DDM_QUIESCE 0xC7
  354. #define I2O_CMD_DDM_RESET 0xD9
  355. #define I2O_CMD_DDM_SUSPEND 0xAF
  356. #define I2O_CMD_DEVICE_ASSIGN 0xB7
  357. #define I2O_CMD_DEVICE_RELEASE 0xB9
  358. #define I2O_CMD_HRT_GET 0xA8
  359. #define I2O_CMD_ADAPTER_CLEAR 0xBE
  360. #define I2O_CMD_ADAPTER_CONNECT 0xC9
  361. #define I2O_CMD_ADAPTER_RESET 0xBD
  362. #define I2O_CMD_LCT_NOTIFY 0xA2
  363. #define I2O_CMD_OUTBOUND_INIT 0xA1
  364. #define I2O_CMD_PATH_ENABLE 0xD3
  365. #define I2O_CMD_PATH_QUIESCE 0xC5
  366. #define I2O_CMD_PATH_RESET 0xD7
  367. #define I2O_CMD_STATIC_MF_CREATE 0xDD
  368. #define I2O_CMD_STATIC_MF_RELEASE 0xDF
  369. #define I2O_CMD_STATUS_GET 0xA0
  370. #define I2O_CMD_SW_DOWNLOAD 0xA9
  371. #define I2O_CMD_SW_UPLOAD 0xAB
  372. #define I2O_CMD_SW_REMOVE 0xAD
  373. #define I2O_CMD_SYS_ENABLE 0xD1
  374. #define I2O_CMD_SYS_MODIFY 0xC1
  375. #define I2O_CMD_SYS_QUIESCE 0xC3
  376. #define I2O_CMD_SYS_TAB_SET 0xA3
  377. /*
  378.  * Utility Class
  379.  */
  380. #define I2O_CMD_UTIL_NOP 0x00
  381. #define I2O_CMD_UTIL_ABORT 0x01
  382. #define I2O_CMD_UTIL_CLAIM 0x09
  383. #define I2O_CMD_UTIL_RELEASE 0x0B
  384. #define I2O_CMD_UTIL_PARAMS_GET 0x06
  385. #define I2O_CMD_UTIL_PARAMS_SET 0x05
  386. #define I2O_CMD_UTIL_EVT_REGISTER 0x13
  387. #define I2O_CMD_UTIL_EVT_ACK 0x14
  388. #define I2O_CMD_UTIL_CONFIG_DIALOG 0x10
  389. #define I2O_CMD_UTIL_DEVICE_RESERVE 0x0D
  390. #define I2O_CMD_UTIL_DEVICE_RELEASE 0x0F
  391. #define I2O_CMD_UTIL_LOCK 0x17
  392. #define I2O_CMD_UTIL_LOCK_RELEASE 0x19
  393. #define I2O_CMD_UTIL_REPLY_FAULT_NOTIFY 0x15
  394. /*
  395.  * SCSI Host Bus Adapter Class
  396.  */
  397. #define I2O_CMD_SCSI_EXEC 0x81
  398. #define I2O_CMD_SCSI_ABORT 0x83
  399. #define I2O_CMD_SCSI_BUSRESET 0x27
  400. /*
  401.  * Random Block Storage Class
  402.  */
  403. #define I2O_CMD_BLOCK_READ 0x30
  404. #define I2O_CMD_BLOCK_WRITE 0x31
  405. #define I2O_CMD_BLOCK_CFLUSH 0x37
  406. #define I2O_CMD_BLOCK_MLOCK 0x49
  407. #define I2O_CMD_BLOCK_MUNLOCK 0x4B
  408. #define I2O_CMD_BLOCK_MMOUNT 0x41
  409. #define I2O_CMD_BLOCK_MEJECT 0x43
  410. #define I2O_CMD_BLOCK_POWER 0x70
  411. #define I2O_PRIVATE_MSG 0xFF
  412. /* Command status values  */
  413. #define I2O_CMD_IN_PROGRESS 0x01
  414. #define I2O_CMD_REJECTED 0x02
  415. #define I2O_CMD_FAILED 0x03
  416. #define I2O_CMD_COMPLETED 0x04
  417. /* I2O API function return values */
  418. #define I2O_RTN_NO_ERROR 0
  419. #define I2O_RTN_NOT_INIT 1
  420. #define I2O_RTN_FREE_Q_EMPTY 2
  421. #define I2O_RTN_TCB_ERROR 3
  422. #define I2O_RTN_TRANSACTION_ERROR 4
  423. #define I2O_RTN_ADAPTER_ALREADY_INIT 5
  424. #define I2O_RTN_MALLOC_ERROR 6
  425. #define I2O_RTN_ADPTR_NOT_REGISTERED 7
  426. #define I2O_RTN_MSG_REPLY_TIMEOUT 8
  427. #define I2O_RTN_NO_STATUS 9
  428. #define I2O_RTN_NO_FIRM_VER 10
  429. #define I2O_RTN_NO_LINK_SPEED 11
  430. /* Reply message status defines for all messages */
  431. #define I2O_REPLY_STATUS_SUCCESS                     0x00
  432. #define I2O_REPLY_STATUS_ABORT_DIRTY                 0x01
  433. #define I2O_REPLY_STATUS_ABORT_NO_DATA_TRANSFER      0x02
  434. #define I2O_REPLY_STATUS_ABORT_PARTIAL_TRANSFER 0x03
  435. #define I2O_REPLY_STATUS_ERROR_DIRTY 0x04
  436. #define I2O_REPLY_STATUS_ERROR_NO_DATA_TRANSFER 0x05
  437. #define I2O_REPLY_STATUS_ERROR_PARTIAL_TRANSFER 0x06
  438. #define I2O_REPLY_STATUS_PROCESS_ABORT_DIRTY 0x08
  439. #define I2O_REPLY_STATUS_PROCESS_ABORT_NO_DATA_TRANSFER 0x09
  440. #define I2O_REPLY_STATUS_PROCESS_ABORT_PARTIAL_TRANSFER 0x0A
  441. #define I2O_REPLY_STATUS_TRANSACTION_ERROR 0x0B
  442. #define I2O_REPLY_STATUS_PROGRESS_REPORT 0x80
  443. /* Status codes and Error Information for Parameter functions */
  444. #define I2O_PARAMS_STATUS_SUCCESS 0x00
  445. #define I2O_PARAMS_STATUS_BAD_KEY_ABORT 0x01
  446. #define I2O_PARAMS_STATUS_BAD_KEY_CONTINUE    0x02
  447. #define I2O_PARAMS_STATUS_BUFFER_FULL 0x03
  448. #define I2O_PARAMS_STATUS_BUFFER_TOO_SMALL 0x04
  449. #define I2O_PARAMS_STATUS_FIELD_UNREADABLE 0x05
  450. #define I2O_PARAMS_STATUS_FIELD_UNWRITEABLE 0x06
  451. #define I2O_PARAMS_STATUS_INSUFFICIENT_FIELDS 0x07
  452. #define I2O_PARAMS_STATUS_INVALID_GROUP_ID 0x08
  453. #define I2O_PARAMS_STATUS_INVALID_OPERATION 0x09
  454. #define I2O_PARAMS_STATUS_NO_KEY_FIELD 0x0A
  455. #define I2O_PARAMS_STATUS_NO_SUCH_FIELD 0x0B
  456. #define I2O_PARAMS_STATUS_NON_DYNAMIC_GROUP 0x0C
  457. #define I2O_PARAMS_STATUS_OPERATION_ERROR 0x0D
  458. #define I2O_PARAMS_STATUS_SCALAR_ERROR 0x0E
  459. #define I2O_PARAMS_STATUS_TABLE_ERROR 0x0F
  460. #define I2O_PARAMS_STATUS_WRONG_GROUP_TYPE 0x10
  461. /* DetailedStatusCode defines for Executive, DDM, Util and Transaction error
  462.  * messages: Table 3-2 Detailed Status Codes.*/
  463. #define I2O_DSC_SUCCESS                        0x0000
  464. #define I2O_DSC_BAD_KEY                        0x0002
  465. #define I2O_DSC_TCL_ERROR                      0x0003
  466. #define I2O_DSC_REPLY_BUFFER_FULL              0x0004
  467. #define I2O_DSC_NO_SUCH_PAGE                   0x0005
  468. #define I2O_DSC_INSUFFICIENT_RESOURCE_SOFT     0x0006
  469. #define I2O_DSC_INSUFFICIENT_RESOURCE_HARD     0x0007
  470. #define I2O_DSC_CHAIN_BUFFER_TOO_LARGE         0x0009
  471. #define I2O_DSC_UNSUPPORTED_FUNCTION           0x000A
  472. #define I2O_DSC_DEVICE_LOCKED                  0x000B
  473. #define I2O_DSC_DEVICE_RESET                   0x000C
  474. #define I2O_DSC_INAPPROPRIATE_FUNCTION         0x000D
  475. #define I2O_DSC_INVALID_INITIATOR_ADDRESS      0x000E
  476. #define I2O_DSC_INVALID_MESSAGE_FLAGS          0x000F
  477. #define I2O_DSC_INVALID_OFFSET                 0x0010
  478. #define I2O_DSC_INVALID_PARAMETER              0x0011
  479. #define I2O_DSC_INVALID_REQUEST                0x0012
  480. #define I2O_DSC_INVALID_TARGET_ADDRESS         0x0013
  481. #define I2O_DSC_MESSAGE_TOO_LARGE              0x0014
  482. #define I2O_DSC_MESSAGE_TOO_SMALL              0x0015
  483. #define I2O_DSC_MISSING_PARAMETER              0x0016
  484. #define I2O_DSC_TIMEOUT                        0x0017
  485. #define I2O_DSC_UNKNOWN_ERROR                  0x0018
  486. #define I2O_DSC_UNKNOWN_FUNCTION               0x0019
  487. #define I2O_DSC_UNSUPPORTED_VERSION            0x001A
  488. #define I2O_DSC_DEVICE_BUSY                    0x001B
  489. #define I2O_DSC_DEVICE_NOT_AVAILABLE           0x001C
  490. /* FailureStatusCodes, Table 3-3 Message Failure Codes */
  491. #define I2O_FSC_TRANSPORT_SERVICE_SUSPENDED             0x81
  492. #define I2O_FSC_TRANSPORT_SERVICE_TERMINATED            0x82
  493. #define I2O_FSC_TRANSPORT_CONGESTION                    0x83
  494. #define I2O_FSC_TRANSPORT_FAILURE                       0x84
  495. #define I2O_FSC_TRANSPORT_STATE_ERROR                   0x85
  496. #define I2O_FSC_TRANSPORT_TIME_OUT                      0x86
  497. #define I2O_FSC_TRANSPORT_ROUTING_FAILURE               0x87
  498. #define I2O_FSC_TRANSPORT_INVALID_VERSION               0x88
  499. #define I2O_FSC_TRANSPORT_INVALID_OFFSET                0x89
  500. #define I2O_FSC_TRANSPORT_INVALID_MSG_FLAGS             0x8A
  501. #define I2O_FSC_TRANSPORT_FRAME_TOO_SMALL               0x8B
  502. #define I2O_FSC_TRANSPORT_FRAME_TOO_LARGE               0x8C
  503. #define I2O_FSC_TRANSPORT_INVALID_TARGET_ID             0x8D
  504. #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_ID          0x8E
  505. #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_CONTEXT     0x8F
  506. #define I2O_FSC_TRANSPORT_UNKNOWN_FAILURE               0xFF
  507. /* Device Claim Types */
  508. #define I2O_CLAIM_PRIMARY 0x01000000
  509. #define I2O_CLAIM_MANAGEMENT 0x02000000
  510. #define I2O_CLAIM_AUTHORIZED 0x03000000
  511. #define I2O_CLAIM_SECONDARY 0x04000000
  512. /* Message header defines for VersionOffset */
  513. #define I2OVER15 0x0001
  514. #define I2OVER20 0x0002
  515. /* Default is 1.5, FIXME: Need support for both 1.5 and 2.0 */
  516. #define I2OVERSION I2OVER15
  517. #define SGL_OFFSET_0    I2OVERSION
  518. #define SGL_OFFSET_4    (0x0040 | I2OVERSION)
  519. #define SGL_OFFSET_5    (0x0050 | I2OVERSION)
  520. #define SGL_OFFSET_6    (0x0060 | I2OVERSION)
  521. #define SGL_OFFSET_7    (0x0070 | I2OVERSION)
  522. #define SGL_OFFSET_8    (0x0080 | I2OVERSION)
  523. #define SGL_OFFSET_9    (0x0090 | I2OVERSION)
  524. #define SGL_OFFSET_10   (0x00A0 | I2OVERSION)
  525. #define TRL_OFFSET_5    (0x0050 | I2OVERSION)
  526. #define TRL_OFFSET_6    (0x0060 | I2OVERSION)
  527. /* Transaction Reply Lists (TRL) Control Word structure */
  528. #define TRL_SINGLE_FIXED_LENGTH 0x00
  529. #define TRL_SINGLE_VARIABLE_LENGTH 0x40
  530. #define TRL_MULTIPLE_FIXED_LENGTH 0x80
  531.  /* msg header defines for MsgFlags */
  532. #define MSG_STATIC 0x0100
  533. #define MSG_64BIT_CNTXT 0x0200
  534. #define MSG_MULTI_TRANS 0x1000
  535. #define MSG_FAIL 0x2000
  536. #define MSG_FINAL 0x4000
  537. #define MSG_REPLY 0x8000
  538.  /* minimum size msg */
  539. #define THREE_WORD_MSG_SIZE 0x00030000
  540. #define FOUR_WORD_MSG_SIZE 0x00040000
  541. #define FIVE_WORD_MSG_SIZE 0x00050000
  542. #define SIX_WORD_MSG_SIZE 0x00060000
  543. #define SEVEN_WORD_MSG_SIZE 0x00070000
  544. #define EIGHT_WORD_MSG_SIZE 0x00080000
  545. #define NINE_WORD_MSG_SIZE 0x00090000
  546. #define TEN_WORD_MSG_SIZE 0x000A0000
  547. #define ELEVEN_WORD_MSG_SIZE 0x000B0000
  548. #define I2O_MESSAGE_SIZE(x) ((x)<<16)
  549. /* Special TID Assignments */
  550. #define ADAPTER_TID 0
  551. #define HOST_TID 1
  552. #define MSG_FRAME_SIZE 64 /* i2o_scsi assumes >= 32 */
  553. #define NMBR_MSG_FRAMES 128
  554. #define MSG_POOL_SIZE (MSG_FRAME_SIZE*NMBR_MSG_FRAMES*sizeof(u32))
  555. #define I2O_POST_WAIT_OK 0
  556. #define I2O_POST_WAIT_TIMEOUT -ETIMEDOUT
  557. #endif /* __KERNEL__ */
  558. #endif /* _I2O_H */