i2o.h 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126
  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 I2O_MAX_DRIVERS 8
  23. #include <asm/io.h>
  24. #include <asm/semaphore.h> /* Needed for MUTEX init macros */
  25. #include <linux/pci.h>
  26. #include <linux/dma-mapping.h>
  27. /* message queue empty */
  28. #define I2O_QUEUE_EMPTY 0xffffffff
  29. /*
  30. * Message structures
  31. */
  32. struct i2o_message {
  33. union {
  34. struct {
  35. u8 version_offset;
  36. u8 flags;
  37. u16 size;
  38. u32 target_tid:12;
  39. u32 init_tid:12;
  40. u32 function:8;
  41. u32 icntxt; /* initiator context */
  42. u32 tcntxt; /* transaction context */
  43. } s;
  44. u32 head[4];
  45. } u;
  46. /* List follows */
  47. u32 body[0];
  48. };
  49. /*
  50. * Each I2O device entity has one of these. There is one per device.
  51. */
  52. struct i2o_device {
  53. i2o_lct_entry lct_data; /* Device LCT information */
  54. struct i2o_controller *iop; /* Controlling IOP */
  55. struct list_head list; /* node in IOP devices list */
  56. struct device device;
  57. struct semaphore lock; /* device lock */
  58. struct class_device classdev; /* i2o device class */
  59. };
  60. /*
  61. * Event structure provided to the event handling function
  62. */
  63. struct i2o_event {
  64. struct work_struct work;
  65. struct i2o_device *i2o_dev; /* I2O device pointer from which the
  66. event reply was initiated */
  67. u16 size; /* Size of data in 32-bit words */
  68. u32 tcntxt; /* Transaction context used at
  69. registration */
  70. u32 event_indicator; /* Event indicator from reply */
  71. u32 data[0]; /* Event data from reply */
  72. };
  73. /*
  74. * I2O classes which could be handled by the OSM
  75. */
  76. struct i2o_class_id {
  77. u16 class_id:12;
  78. };
  79. /*
  80. * I2O driver structure for OSMs
  81. */
  82. struct i2o_driver {
  83. char *name; /* OSM name */
  84. int context; /* Low 8 bits of the transaction info */
  85. struct i2o_class_id *classes; /* I2O classes that this OSM handles */
  86. /* Message reply handler */
  87. int (*reply) (struct i2o_controller *, u32, struct i2o_message *);
  88. /* Event handler */
  89. void (*event) (struct i2o_event *);
  90. struct workqueue_struct *event_queue; /* Event queue */
  91. struct device_driver driver;
  92. /* notification of changes */
  93. void (*notify_controller_add) (struct i2o_controller *);
  94. void (*notify_controller_remove) (struct i2o_controller *);
  95. void (*notify_device_add) (struct i2o_device *);
  96. void (*notify_device_remove) (struct i2o_device *);
  97. struct semaphore lock;
  98. };
  99. /*
  100. * Contains DMA mapped address information
  101. */
  102. struct i2o_dma {
  103. void *virt;
  104. dma_addr_t phys;
  105. size_t len;
  106. };
  107. /*
  108. * Contains IO mapped address information
  109. */
  110. struct i2o_io {
  111. void __iomem *virt;
  112. unsigned long phys;
  113. unsigned long len;
  114. };
  115. /*
  116. * Context queue entry, used for 32-bit context on 64-bit systems
  117. */
  118. struct i2o_context_list_element {
  119. struct list_head list;
  120. u32 context;
  121. void *ptr;
  122. unsigned long timestamp;
  123. };
  124. /*
  125. * Each I2O controller has one of these objects
  126. */
  127. struct i2o_controller {
  128. char name[16];
  129. int unit;
  130. int type;
  131. struct pci_dev *pdev; /* PCI device */
  132. unsigned int promise:1; /* Promise controller */
  133. unsigned int adaptec:1; /* DPT / Adaptec controller */
  134. unsigned int raptor:1; /* split bar */
  135. unsigned int no_quiesce:1; /* dont quiesce before reset */
  136. unsigned int short_req:1; /* use small block sizes */
  137. unsigned int limit_sectors:1; /* limit number of sectors / request */
  138. unsigned int pae_support:1; /* controller has 64-bit SGL support */
  139. struct list_head devices; /* list of I2O devices */
  140. struct list_head list; /* Controller list */
  141. void __iomem *in_port; /* Inbout port address */
  142. void __iomem *out_port; /* Outbound port address */
  143. void __iomem *irq_status; /* Interrupt status register address */
  144. void __iomem *irq_mask; /* Interrupt mask register address */
  145. /* Dynamic LCT related data */
  146. struct i2o_dma status; /* IOP status block */
  147. struct i2o_dma hrt; /* HW Resource Table */
  148. i2o_lct *lct; /* Logical Config Table */
  149. struct i2o_dma dlct; /* Temp LCT */
  150. struct semaphore lct_lock; /* Lock for LCT updates */
  151. struct i2o_dma status_block; /* IOP status block */
  152. struct i2o_io base; /* controller messaging unit */
  153. struct i2o_io in_queue; /* inbound message queue Host->IOP */
  154. struct i2o_dma out_queue; /* outbound message queue IOP->Host */
  155. unsigned int battery:1; /* Has a battery backup */
  156. unsigned int io_alloc:1; /* An I/O resource was allocated */
  157. unsigned int mem_alloc:1; /* A memory resource was allocated */
  158. struct resource io_resource; /* I/O resource allocated to the IOP */
  159. struct resource mem_resource; /* Mem resource allocated to the IOP */
  160. struct device device;
  161. struct class_device classdev; /* I2O controller class */
  162. struct i2o_device *exec; /* Executive */
  163. #if BITS_PER_LONG == 64
  164. spinlock_t context_list_lock; /* lock for context_list */
  165. atomic_t context_list_counter; /* needed for unique contexts */
  166. struct list_head context_list; /* list of context id's
  167. and pointers */
  168. #endif
  169. spinlock_t lock; /* lock for controller
  170. configuration */
  171. void *driver_data[I2O_MAX_DRIVERS]; /* storage for drivers */
  172. };
  173. /*
  174. * I2O System table entry
  175. *
  176. * The system table contains information about all the IOPs in the
  177. * system. It is sent to all IOPs so that they can create peer2peer
  178. * connections between them.
  179. */
  180. struct i2o_sys_tbl_entry {
  181. u16 org_id;
  182. u16 reserved1;
  183. u32 iop_id:12;
  184. u32 reserved2:20;
  185. u16 seg_num:12;
  186. u16 i2o_version:4;
  187. u8 iop_state;
  188. u8 msg_type;
  189. u16 frame_size;
  190. u16 reserved3;
  191. u32 last_changed;
  192. u32 iop_capabilities;
  193. u32 inbound_low;
  194. u32 inbound_high;
  195. };
  196. struct i2o_sys_tbl {
  197. u8 num_entries;
  198. u8 version;
  199. u16 reserved1;
  200. u32 change_ind;
  201. u32 reserved2;
  202. u32 reserved3;
  203. struct i2o_sys_tbl_entry iops[0];
  204. };
  205. extern struct list_head i2o_controllers;
  206. /* Message functions */
  207. static inline u32 i2o_msg_get(struct i2o_controller *,
  208. struct i2o_message __iomem **);
  209. extern u32 i2o_msg_get_wait(struct i2o_controller *,
  210. struct i2o_message __iomem **, int);
  211. static inline void i2o_msg_post(struct i2o_controller *, u32);
  212. static inline int i2o_msg_post_wait(struct i2o_controller *, u32,
  213. unsigned long);
  214. extern int i2o_msg_post_wait_mem(struct i2o_controller *, u32, unsigned long,
  215. struct i2o_dma *);
  216. extern void i2o_msg_nop(struct i2o_controller *, u32);
  217. static inline void i2o_flush_reply(struct i2o_controller *, u32);
  218. /* IOP functions */
  219. extern int i2o_status_get(struct i2o_controller *);
  220. extern int i2o_event_register(struct i2o_device *, struct i2o_driver *, int,
  221. u32);
  222. extern struct i2o_device *i2o_iop_find_device(struct i2o_controller *, u16);
  223. extern struct i2o_controller *i2o_find_iop(int);
  224. /* Functions needed for handling 64-bit pointers in 32-bit context */
  225. #if BITS_PER_LONG == 64
  226. extern u32 i2o_cntxt_list_add(struct i2o_controller *, void *);
  227. extern void *i2o_cntxt_list_get(struct i2o_controller *, u32);
  228. extern u32 i2o_cntxt_list_remove(struct i2o_controller *, void *);
  229. extern u32 i2o_cntxt_list_get_ptr(struct i2o_controller *, void *);
  230. static inline u32 i2o_ptr_low(void *ptr)
  231. {
  232. return (u32) (u64) ptr;
  233. };
  234. static inline u32 i2o_ptr_high(void *ptr)
  235. {
  236. return (u32) ((u64) ptr >> 32);
  237. };
  238. static inline u32 i2o_dma_low(dma_addr_t dma_addr)
  239. {
  240. return (u32) (u64) dma_addr;
  241. };
  242. static inline u32 i2o_dma_high(dma_addr_t dma_addr)
  243. {
  244. return (u32) ((u64) dma_addr >> 32);
  245. };
  246. #else
  247. static inline u32 i2o_cntxt_list_add(struct i2o_controller *c, void *ptr)
  248. {
  249. return (u32) ptr;
  250. };
  251. static inline void *i2o_cntxt_list_get(struct i2o_controller *c, u32 context)
  252. {
  253. return (void *)context;
  254. };
  255. static inline u32 i2o_cntxt_list_remove(struct i2o_controller *c, void *ptr)
  256. {
  257. return (u32) ptr;
  258. };
  259. static inline u32 i2o_cntxt_list_get_ptr(struct i2o_controller *c, void *ptr)
  260. {
  261. return (u32) ptr;
  262. };
  263. static inline u32 i2o_ptr_low(void *ptr)
  264. {
  265. return (u32) ptr;
  266. };
  267. static inline u32 i2o_ptr_high(void *ptr)
  268. {
  269. return 0;
  270. };
  271. static inline u32 i2o_dma_low(dma_addr_t dma_addr)
  272. {
  273. return (u32) dma_addr;
  274. };
  275. static inline u32 i2o_dma_high(dma_addr_t dma_addr)
  276. {
  277. return 0;
  278. };
  279. #endif
  280. /**
  281. * i2o_sg_tablesize - Calculate the maximum number of elements in a SGL
  282. * @c: I2O controller for which the calculation should be done
  283. * @body_size: maximum body size used for message in 32-bit words.
  284. *
  285. * Return the maximum number of SG elements in a SG list.
  286. */
  287. static inline u16 i2o_sg_tablesize(struct i2o_controller *c, u16 body_size)
  288. {
  289. i2o_status_block *sb = c->status_block.virt;
  290. u16 sg_count =
  291. (sb->inbound_frame_size - sizeof(struct i2o_message) / 4) -
  292. body_size;
  293. if (c->pae_support) {
  294. /*
  295. * for 64-bit a SG attribute element must be added and each
  296. * SG element needs 12 bytes instead of 8.
  297. */
  298. sg_count -= 2;
  299. sg_count /= 3;
  300. } else
  301. sg_count /= 2;
  302. if (c->short_req && (sg_count > 8))
  303. sg_count = 8;
  304. return sg_count;
  305. };
  306. /**
  307. * i2o_dma_map_single - Map pointer to controller and fill in I2O message.
  308. * @c: I2O controller
  309. * @ptr: pointer to the data which should be mapped
  310. * @size: size of data in bytes
  311. * @direction: DMA_TO_DEVICE / DMA_FROM_DEVICE
  312. * @sg_ptr: pointer to the SG list inside the I2O message
  313. *
  314. * This function does all necessary DMA handling and also writes the I2O
  315. * SGL elements into the I2O message. For details on DMA handling see also
  316. * dma_map_single(). The pointer sg_ptr will only be set to the end of the
  317. * SG list if the allocation was successful.
  318. *
  319. * Returns DMA address which must be checked for failures using
  320. * dma_mapping_error().
  321. */
  322. static inline dma_addr_t i2o_dma_map_single(struct i2o_controller *c, void *ptr,
  323. size_t size,
  324. enum dma_data_direction direction,
  325. u32 __iomem ** sg_ptr)
  326. {
  327. u32 sg_flags;
  328. u32 __iomem *mptr = *sg_ptr;
  329. dma_addr_t dma_addr;
  330. switch (direction) {
  331. case DMA_TO_DEVICE:
  332. sg_flags = 0xd4000000;
  333. break;
  334. case DMA_FROM_DEVICE:
  335. sg_flags = 0xd0000000;
  336. break;
  337. default:
  338. return 0;
  339. }
  340. dma_addr = dma_map_single(&c->pdev->dev, ptr, size, direction);
  341. if (!dma_mapping_error(dma_addr)) {
  342. #ifdef CONFIG_I2O_EXT_ADAPTEC_DMA64
  343. if ((sizeof(dma_addr_t) > 4) && c->pae_support) {
  344. writel(0x7C020002, mptr++);
  345. writel(PAGE_SIZE, mptr++);
  346. }
  347. #endif
  348. writel(sg_flags | size, mptr++);
  349. writel(i2o_dma_low(dma_addr), mptr++);
  350. #ifdef CONFIG_I2O_EXT_ADAPTEC_DMA64
  351. if ((sizeof(dma_addr_t) > 4) && c->pae_support)
  352. writel(i2o_dma_high(dma_addr), mptr++);
  353. #endif
  354. *sg_ptr = mptr;
  355. }
  356. return dma_addr;
  357. };
  358. /**
  359. * i2o_dma_map_sg - Map a SG List to controller and fill in I2O message.
  360. * @c: I2O controller
  361. * @sg: SG list to be mapped
  362. * @sg_count: number of elements in the SG list
  363. * @direction: DMA_TO_DEVICE / DMA_FROM_DEVICE
  364. * @sg_ptr: pointer to the SG list inside the I2O message
  365. *
  366. * This function does all necessary DMA handling and also writes the I2O
  367. * SGL elements into the I2O message. For details on DMA handling see also
  368. * dma_map_sg(). The pointer sg_ptr will only be set to the end of the SG
  369. * list if the allocation was successful.
  370. *
  371. * Returns 0 on failure or 1 on success.
  372. */
  373. static inline int i2o_dma_map_sg(struct i2o_controller *c,
  374. struct scatterlist *sg, int sg_count,
  375. enum dma_data_direction direction,
  376. u32 __iomem ** sg_ptr)
  377. {
  378. u32 sg_flags;
  379. u32 __iomem *mptr = *sg_ptr;
  380. switch (direction) {
  381. case DMA_TO_DEVICE:
  382. sg_flags = 0x14000000;
  383. break;
  384. case DMA_FROM_DEVICE:
  385. sg_flags = 0x10000000;
  386. break;
  387. default:
  388. return 0;
  389. }
  390. sg_count = dma_map_sg(&c->pdev->dev, sg, sg_count, direction);
  391. if (!sg_count)
  392. return 0;
  393. #ifdef CONFIG_I2O_EXT_ADAPTEC_DMA64
  394. if ((sizeof(dma_addr_t) > 4) && c->pae_support) {
  395. writel(0x7C020002, mptr++);
  396. writel(PAGE_SIZE, mptr++);
  397. }
  398. #endif
  399. while (sg_count-- > 0) {
  400. if (!sg_count)
  401. sg_flags |= 0xC0000000;
  402. writel(sg_flags | sg_dma_len(sg), mptr++);
  403. writel(i2o_dma_low(sg_dma_address(sg)), mptr++);
  404. #ifdef CONFIG_I2O_EXT_ADAPTEC_DMA64
  405. if ((sizeof(dma_addr_t) > 4) && c->pae_support)
  406. writel(i2o_dma_high(sg_dma_address(sg)), mptr++);
  407. #endif
  408. sg++;
  409. }
  410. *sg_ptr = mptr;
  411. return 1;
  412. };
  413. /**
  414. * i2o_dma_alloc - Allocate DMA memory
  415. * @dev: struct device pointer to the PCI device of the I2O controller
  416. * @addr: i2o_dma struct which should get the DMA buffer
  417. * @len: length of the new DMA memory
  418. * @gfp_mask: GFP mask
  419. *
  420. * Allocate a coherent DMA memory and write the pointers into addr.
  421. *
  422. * Returns 0 on success or -ENOMEM on failure.
  423. */
  424. static inline int i2o_dma_alloc(struct device *dev, struct i2o_dma *addr,
  425. size_t len, unsigned int gfp_mask)
  426. {
  427. struct pci_dev *pdev = to_pci_dev(dev);
  428. int dma_64 = 0;
  429. if ((sizeof(dma_addr_t) > 4) && (pdev->dma_mask == DMA_64BIT_MASK)) {
  430. dma_64 = 1;
  431. if (pci_set_dma_mask(pdev, DMA_32BIT_MASK))
  432. return -ENOMEM;
  433. }
  434. addr->virt = dma_alloc_coherent(dev, len, &addr->phys, gfp_mask);
  435. if ((sizeof(dma_addr_t) > 4) && dma_64)
  436. if (pci_set_dma_mask(pdev, DMA_64BIT_MASK))
  437. printk(KERN_WARNING "i2o: unable to set 64-bit DMA");
  438. if (!addr->virt)
  439. return -ENOMEM;
  440. memset(addr->virt, 0, len);
  441. addr->len = len;
  442. return 0;
  443. };
  444. /**
  445. * i2o_dma_free - Free DMA memory
  446. * @dev: struct device pointer to the PCI device of the I2O controller
  447. * @addr: i2o_dma struct which contains the DMA buffer
  448. *
  449. * Free a coherent DMA memory and set virtual address of addr to NULL.
  450. */
  451. static inline void i2o_dma_free(struct device *dev, struct i2o_dma *addr)
  452. {
  453. if (addr->virt) {
  454. if (addr->phys)
  455. dma_free_coherent(dev, addr->len, addr->virt,
  456. addr->phys);
  457. else
  458. kfree(addr->virt);
  459. addr->virt = NULL;
  460. }
  461. };
  462. /**
  463. * i2o_dma_realloc - Realloc DMA memory
  464. * @dev: struct device pointer to the PCI device of the I2O controller
  465. * @addr: pointer to a i2o_dma struct DMA buffer
  466. * @len: new length of memory
  467. * @gfp_mask: GFP mask
  468. *
  469. * If there was something allocated in the addr, free it first. If len > 0
  470. * than try to allocate it and write the addresses back to the addr
  471. * structure. If len == 0 set the virtual address to NULL.
  472. *
  473. * Returns the 0 on success or negative error code on failure.
  474. */
  475. static inline int i2o_dma_realloc(struct device *dev, struct i2o_dma *addr,
  476. size_t len, unsigned int gfp_mask)
  477. {
  478. i2o_dma_free(dev, addr);
  479. if (len)
  480. return i2o_dma_alloc(dev, addr, len, gfp_mask);
  481. return 0;
  482. };
  483. /* I2O driver (OSM) functions */
  484. extern int i2o_driver_register(struct i2o_driver *);
  485. extern void i2o_driver_unregister(struct i2o_driver *);
  486. /**
  487. * i2o_driver_notify_controller_add - Send notification of added controller
  488. * to a single I2O driver
  489. *
  490. * Send notification of added controller to a single registered driver.
  491. */
  492. static inline void i2o_driver_notify_controller_add(struct i2o_driver *drv,
  493. struct i2o_controller *c)
  494. {
  495. if (drv->notify_controller_add)
  496. drv->notify_controller_add(c);
  497. };
  498. /**
  499. * i2o_driver_notify_controller_remove - Send notification of removed
  500. * controller to a single I2O driver
  501. *
  502. * Send notification of removed controller to a single registered driver.
  503. */
  504. static inline void i2o_driver_notify_controller_remove(struct i2o_driver *drv,
  505. struct i2o_controller *c)
  506. {
  507. if (drv->notify_controller_remove)
  508. drv->notify_controller_remove(c);
  509. };
  510. /**
  511. * i2o_driver_notify_device_add - Send notification of added device to a
  512. * single I2O driver
  513. *
  514. * Send notification of added device to a single registered driver.
  515. */
  516. static inline void i2o_driver_notify_device_add(struct i2o_driver *drv,
  517. struct i2o_device *i2o_dev)
  518. {
  519. if (drv->notify_device_add)
  520. drv->notify_device_add(i2o_dev);
  521. };
  522. /**
  523. * i2o_driver_notify_device_remove - Send notification of removed device
  524. * to a single I2O driver
  525. *
  526. * Send notification of removed device to a single registered driver.
  527. */
  528. static inline void i2o_driver_notify_device_remove(struct i2o_driver *drv,
  529. struct i2o_device *i2o_dev)
  530. {
  531. if (drv->notify_device_remove)
  532. drv->notify_device_remove(i2o_dev);
  533. };
  534. extern void i2o_driver_notify_controller_add_all(struct i2o_controller *);
  535. extern void i2o_driver_notify_controller_remove_all(struct i2o_controller *);
  536. extern void i2o_driver_notify_device_add_all(struct i2o_device *);
  537. extern void i2o_driver_notify_device_remove_all(struct i2o_device *);
  538. /* I2O device functions */
  539. extern int i2o_device_claim(struct i2o_device *);
  540. extern int i2o_device_claim_release(struct i2o_device *);
  541. /* Exec OSM functions */
  542. extern int i2o_exec_lct_get(struct i2o_controller *);
  543. /* device / driver / kobject conversion functions */
  544. #define to_i2o_driver(drv) container_of(drv,struct i2o_driver, driver)
  545. #define to_i2o_device(dev) container_of(dev, struct i2o_device, device)
  546. #define to_i2o_controller(dev) container_of(dev, struct i2o_controller, device)
  547. #define kobj_to_i2o_device(kobj) to_i2o_device(container_of(kobj, struct device, kobj))
  548. /**
  549. * i2o_msg_get - obtain an I2O message from the IOP
  550. * @c: I2O controller
  551. * @msg: pointer to a I2O message pointer
  552. *
  553. * This function tries to get a message slot. If no message slot is
  554. * available do not wait until one is availabe (see also i2o_msg_get_wait).
  555. *
  556. * On a success the message is returned and the pointer to the message is
  557. * set in msg. The returned message is the physical page frame offset
  558. * address from the read port (see the i2o spec). If no message is
  559. * available returns I2O_QUEUE_EMPTY and msg is leaved untouched.
  560. */
  561. static inline u32 i2o_msg_get(struct i2o_controller *c,
  562. struct i2o_message __iomem ** msg)
  563. {
  564. u32 m = readl(c->in_port);
  565. if (m != I2O_QUEUE_EMPTY)
  566. *msg = c->in_queue.virt + m;
  567. return m;
  568. };
  569. /**
  570. * i2o_msg_post - Post I2O message to I2O controller
  571. * @c: I2O controller to which the message should be send
  572. * @m: the message identifier
  573. *
  574. * Post the message to the I2O controller.
  575. */
  576. static inline void i2o_msg_post(struct i2o_controller *c, u32 m)
  577. {
  578. writel(m, c->in_port);
  579. };
  580. /**
  581. * i2o_msg_post_wait - Post and wait a message and wait until return
  582. * @c: controller
  583. * @m: message to post
  584. * @timeout: time in seconds to wait
  585. *
  586. * This API allows an OSM to post a message and then be told whether or
  587. * not the system received a successful reply. If the message times out
  588. * then the value '-ETIMEDOUT' is returned.
  589. *
  590. * Returns 0 on success or negative error code on failure.
  591. */
  592. static inline int i2o_msg_post_wait(struct i2o_controller *c, u32 m,
  593. unsigned long timeout)
  594. {
  595. return i2o_msg_post_wait_mem(c, m, timeout, NULL);
  596. };
  597. /**
  598. * i2o_flush_reply - Flush reply from I2O controller
  599. * @c: I2O controller
  600. * @m: the message identifier
  601. *
  602. * The I2O controller must be informed that the reply message is not needed
  603. * anymore. If you forget to flush the reply, the message frame can't be
  604. * used by the controller anymore and is therefore lost.
  605. */
  606. static inline void i2o_flush_reply(struct i2o_controller *c, u32 m)
  607. {
  608. writel(m, c->out_port);
  609. };
  610. /**
  611. * i2o_out_to_virt - Turn an I2O message to a virtual address
  612. * @c: controller
  613. * @m: message engine value
  614. *
  615. * Turn a receive message from an I2O controller bus address into
  616. * a Linux virtual address. The shared page frame is a linear block
  617. * so we simply have to shift the offset. This function does not
  618. * work for sender side messages as they are ioremap objects
  619. * provided by the I2O controller.
  620. */
  621. static inline struct i2o_message *i2o_msg_out_to_virt(struct i2o_controller *c,
  622. u32 m)
  623. {
  624. BUG_ON(m < c->out_queue.phys
  625. || m >= c->out_queue.phys + c->out_queue.len);
  626. return c->out_queue.virt + (m - c->out_queue.phys);
  627. };
  628. /**
  629. * i2o_msg_in_to_virt - Turn an I2O message to a virtual address
  630. * @c: controller
  631. * @m: message engine value
  632. *
  633. * Turn a send message from an I2O controller bus address into
  634. * a Linux virtual address. The shared page frame is a linear block
  635. * so we simply have to shift the offset. This function does not
  636. * work for receive side messages as they are kmalloc objects
  637. * in a different pool.
  638. */
  639. static inline struct i2o_message __iomem *i2o_msg_in_to_virt(struct
  640. i2o_controller *c,
  641. u32 m)
  642. {
  643. return c->in_queue.virt + m;
  644. };
  645. /*
  646. * Endian handling wrapped into the macro - keeps the core code
  647. * cleaner.
  648. */
  649. #define i2o_raw_writel(val, mem) __raw_writel(cpu_to_le32(val), mem)
  650. extern int i2o_parm_field_get(struct i2o_device *, int, int, void *, int);
  651. extern int i2o_parm_table_get(struct i2o_device *, int, int, int, void *, int,
  652. void *, int);
  653. /* debugging and troubleshooting/diagnostic helpers. */
  654. #define osm_printk(level, format, arg...) \
  655. printk(level "%s: " format, OSM_NAME , ## arg)
  656. #ifdef DEBUG
  657. #define osm_debug(format, arg...) \
  658. osm_printk(KERN_DEBUG, format , ## arg)
  659. #else
  660. #define osm_debug(format, arg...) \
  661. do { } while (0)
  662. #endif
  663. #define osm_err(format, arg...) \
  664. osm_printk(KERN_ERR, format , ## arg)
  665. #define osm_info(format, arg...) \
  666. osm_printk(KERN_INFO, format , ## arg)
  667. #define osm_warn(format, arg...) \
  668. osm_printk(KERN_WARNING, format , ## arg)
  669. /* debugging functions */
  670. extern void i2o_report_status(const char *, const char *, struct i2o_message *);
  671. extern void i2o_dump_message(struct i2o_message *);
  672. extern void i2o_dump_hrt(struct i2o_controller *c);
  673. extern void i2o_debug_state(struct i2o_controller *c);
  674. /*
  675. * Cache strategies
  676. */
  677. /* The NULL strategy leaves everything up to the controller. This tends to be a
  678. * pessimal but functional choice.
  679. */
  680. #define CACHE_NULL 0
  681. /* Prefetch data when reading. We continually attempt to load the next 32 sectors
  682. * into the controller cache.
  683. */
  684. #define CACHE_PREFETCH 1
  685. /* Prefetch data when reading. We sometimes attempt to load the next 32 sectors
  686. * into the controller cache. When an I/O is less <= 8K we assume its probably
  687. * not sequential and don't prefetch (default)
  688. */
  689. #define CACHE_SMARTFETCH 2
  690. /* Data is written to the cache and then out on to the disk. The I/O must be
  691. * physically on the medium before the write is acknowledged (default without
  692. * NVRAM)
  693. */
  694. #define CACHE_WRITETHROUGH 17
  695. /* Data is written to the cache and then out on to the disk. The controller
  696. * is permitted to write back the cache any way it wants. (default if battery
  697. * backed NVRAM is present). It can be useful to set this for swap regardless of
  698. * battery state.
  699. */
  700. #define CACHE_WRITEBACK 18
  701. /* Optimise for under powered controllers, especially on RAID1 and RAID0. We
  702. * write large I/O's directly to disk bypassing the cache to avoid the extra
  703. * memory copy hits. Small writes are writeback cached
  704. */
  705. #define CACHE_SMARTBACK 19
  706. /* Optimise for under powered controllers, especially on RAID1 and RAID0. We
  707. * write large I/O's directly to disk bypassing the cache to avoid the extra
  708. * memory copy hits. Small writes are writethrough cached. Suitable for devices
  709. * lacking battery backup
  710. */
  711. #define CACHE_SMARTTHROUGH 20
  712. /*
  713. * Ioctl structures
  714. */
  715. #define BLKI2OGRSTRAT _IOR('2', 1, int)
  716. #define BLKI2OGWSTRAT _IOR('2', 2, int)
  717. #define BLKI2OSRSTRAT _IOW('2', 3, int)
  718. #define BLKI2OSWSTRAT _IOW('2', 4, int)
  719. /*
  720. * I2O Function codes
  721. */
  722. /*
  723. * Executive Class
  724. */
  725. #define I2O_CMD_ADAPTER_ASSIGN 0xB3
  726. #define I2O_CMD_ADAPTER_READ 0xB2
  727. #define I2O_CMD_ADAPTER_RELEASE 0xB5
  728. #define I2O_CMD_BIOS_INFO_SET 0xA5
  729. #define I2O_CMD_BOOT_DEVICE_SET 0xA7
  730. #define I2O_CMD_CONFIG_VALIDATE 0xBB
  731. #define I2O_CMD_CONN_SETUP 0xCA
  732. #define I2O_CMD_DDM_DESTROY 0xB1
  733. #define I2O_CMD_DDM_ENABLE 0xD5
  734. #define I2O_CMD_DDM_QUIESCE 0xC7
  735. #define I2O_CMD_DDM_RESET 0xD9
  736. #define I2O_CMD_DDM_SUSPEND 0xAF
  737. #define I2O_CMD_DEVICE_ASSIGN 0xB7
  738. #define I2O_CMD_DEVICE_RELEASE 0xB9
  739. #define I2O_CMD_HRT_GET 0xA8
  740. #define I2O_CMD_ADAPTER_CLEAR 0xBE
  741. #define I2O_CMD_ADAPTER_CONNECT 0xC9
  742. #define I2O_CMD_ADAPTER_RESET 0xBD
  743. #define I2O_CMD_LCT_NOTIFY 0xA2
  744. #define I2O_CMD_OUTBOUND_INIT 0xA1
  745. #define I2O_CMD_PATH_ENABLE 0xD3
  746. #define I2O_CMD_PATH_QUIESCE 0xC5
  747. #define I2O_CMD_PATH_RESET 0xD7
  748. #define I2O_CMD_STATIC_MF_CREATE 0xDD
  749. #define I2O_CMD_STATIC_MF_RELEASE 0xDF
  750. #define I2O_CMD_STATUS_GET 0xA0
  751. #define I2O_CMD_SW_DOWNLOAD 0xA9
  752. #define I2O_CMD_SW_UPLOAD 0xAB
  753. #define I2O_CMD_SW_REMOVE 0xAD
  754. #define I2O_CMD_SYS_ENABLE 0xD1
  755. #define I2O_CMD_SYS_MODIFY 0xC1
  756. #define I2O_CMD_SYS_QUIESCE 0xC3
  757. #define I2O_CMD_SYS_TAB_SET 0xA3
  758. /*
  759. * Utility Class
  760. */
  761. #define I2O_CMD_UTIL_NOP 0x00
  762. #define I2O_CMD_UTIL_ABORT 0x01
  763. #define I2O_CMD_UTIL_CLAIM 0x09
  764. #define I2O_CMD_UTIL_RELEASE 0x0B
  765. #define I2O_CMD_UTIL_PARAMS_GET 0x06
  766. #define I2O_CMD_UTIL_PARAMS_SET 0x05
  767. #define I2O_CMD_UTIL_EVT_REGISTER 0x13
  768. #define I2O_CMD_UTIL_EVT_ACK 0x14
  769. #define I2O_CMD_UTIL_CONFIG_DIALOG 0x10
  770. #define I2O_CMD_UTIL_DEVICE_RESERVE 0x0D
  771. #define I2O_CMD_UTIL_DEVICE_RELEASE 0x0F
  772. #define I2O_CMD_UTIL_LOCK 0x17
  773. #define I2O_CMD_UTIL_LOCK_RELEASE 0x19
  774. #define I2O_CMD_UTIL_REPLY_FAULT_NOTIFY 0x15
  775. /*
  776. * SCSI Host Bus Adapter Class
  777. */
  778. #define I2O_CMD_SCSI_EXEC 0x81
  779. #define I2O_CMD_SCSI_ABORT 0x83
  780. #define I2O_CMD_SCSI_BUSRESET 0x27
  781. /*
  782. * Bus Adapter Class
  783. */
  784. #define I2O_CMD_BUS_ADAPTER_RESET 0x85
  785. #define I2O_CMD_BUS_RESET 0x87
  786. #define I2O_CMD_BUS_SCAN 0x89
  787. #define I2O_CMD_BUS_QUIESCE 0x8b
  788. /*
  789. * Random Block Storage Class
  790. */
  791. #define I2O_CMD_BLOCK_READ 0x30
  792. #define I2O_CMD_BLOCK_WRITE 0x31
  793. #define I2O_CMD_BLOCK_CFLUSH 0x37
  794. #define I2O_CMD_BLOCK_MLOCK 0x49
  795. #define I2O_CMD_BLOCK_MUNLOCK 0x4B
  796. #define I2O_CMD_BLOCK_MMOUNT 0x41
  797. #define I2O_CMD_BLOCK_MEJECT 0x43
  798. #define I2O_CMD_BLOCK_POWER 0x70
  799. #define I2O_CMD_PRIVATE 0xFF
  800. /* Command status values */
  801. #define I2O_CMD_IN_PROGRESS 0x01
  802. #define I2O_CMD_REJECTED 0x02
  803. #define I2O_CMD_FAILED 0x03
  804. #define I2O_CMD_COMPLETED 0x04
  805. /* I2O API function return values */
  806. #define I2O_RTN_NO_ERROR 0
  807. #define I2O_RTN_NOT_INIT 1
  808. #define I2O_RTN_FREE_Q_EMPTY 2
  809. #define I2O_RTN_TCB_ERROR 3
  810. #define I2O_RTN_TRANSACTION_ERROR 4
  811. #define I2O_RTN_ADAPTER_ALREADY_INIT 5
  812. #define I2O_RTN_MALLOC_ERROR 6
  813. #define I2O_RTN_ADPTR_NOT_REGISTERED 7
  814. #define I2O_RTN_MSG_REPLY_TIMEOUT 8
  815. #define I2O_RTN_NO_STATUS 9
  816. #define I2O_RTN_NO_FIRM_VER 10
  817. #define I2O_RTN_NO_LINK_SPEED 11
  818. /* Reply message status defines for all messages */
  819. #define I2O_REPLY_STATUS_SUCCESS 0x00
  820. #define I2O_REPLY_STATUS_ABORT_DIRTY 0x01
  821. #define I2O_REPLY_STATUS_ABORT_NO_DATA_TRANSFER 0x02
  822. #define I2O_REPLY_STATUS_ABORT_PARTIAL_TRANSFER 0x03
  823. #define I2O_REPLY_STATUS_ERROR_DIRTY 0x04
  824. #define I2O_REPLY_STATUS_ERROR_NO_DATA_TRANSFER 0x05
  825. #define I2O_REPLY_STATUS_ERROR_PARTIAL_TRANSFER 0x06
  826. #define I2O_REPLY_STATUS_PROCESS_ABORT_DIRTY 0x08
  827. #define I2O_REPLY_STATUS_PROCESS_ABORT_NO_DATA_TRANSFER 0x09
  828. #define I2O_REPLY_STATUS_PROCESS_ABORT_PARTIAL_TRANSFER 0x0A
  829. #define I2O_REPLY_STATUS_TRANSACTION_ERROR 0x0B
  830. #define I2O_REPLY_STATUS_PROGRESS_REPORT 0x80
  831. /* Status codes and Error Information for Parameter functions */
  832. #define I2O_PARAMS_STATUS_SUCCESS 0x00
  833. #define I2O_PARAMS_STATUS_BAD_KEY_ABORT 0x01
  834. #define I2O_PARAMS_STATUS_BAD_KEY_CONTINUE 0x02
  835. #define I2O_PARAMS_STATUS_BUFFER_FULL 0x03
  836. #define I2O_PARAMS_STATUS_BUFFER_TOO_SMALL 0x04
  837. #define I2O_PARAMS_STATUS_FIELD_UNREADABLE 0x05
  838. #define I2O_PARAMS_STATUS_FIELD_UNWRITEABLE 0x06
  839. #define I2O_PARAMS_STATUS_INSUFFICIENT_FIELDS 0x07
  840. #define I2O_PARAMS_STATUS_INVALID_GROUP_ID 0x08
  841. #define I2O_PARAMS_STATUS_INVALID_OPERATION 0x09
  842. #define I2O_PARAMS_STATUS_NO_KEY_FIELD 0x0A
  843. #define I2O_PARAMS_STATUS_NO_SUCH_FIELD 0x0B
  844. #define I2O_PARAMS_STATUS_NON_DYNAMIC_GROUP 0x0C
  845. #define I2O_PARAMS_STATUS_OPERATION_ERROR 0x0D
  846. #define I2O_PARAMS_STATUS_SCALAR_ERROR 0x0E
  847. #define I2O_PARAMS_STATUS_TABLE_ERROR 0x0F
  848. #define I2O_PARAMS_STATUS_WRONG_GROUP_TYPE 0x10
  849. /* DetailedStatusCode defines for Executive, DDM, Util and Transaction error
  850. * messages: Table 3-2 Detailed Status Codes.*/
  851. #define I2O_DSC_SUCCESS 0x0000
  852. #define I2O_DSC_BAD_KEY 0x0002
  853. #define I2O_DSC_TCL_ERROR 0x0003
  854. #define I2O_DSC_REPLY_BUFFER_FULL 0x0004
  855. #define I2O_DSC_NO_SUCH_PAGE 0x0005
  856. #define I2O_DSC_INSUFFICIENT_RESOURCE_SOFT 0x0006
  857. #define I2O_DSC_INSUFFICIENT_RESOURCE_HARD 0x0007
  858. #define I2O_DSC_CHAIN_BUFFER_TOO_LARGE 0x0009
  859. #define I2O_DSC_UNSUPPORTED_FUNCTION 0x000A
  860. #define I2O_DSC_DEVICE_LOCKED 0x000B
  861. #define I2O_DSC_DEVICE_RESET 0x000C
  862. #define I2O_DSC_INAPPROPRIATE_FUNCTION 0x000D
  863. #define I2O_DSC_INVALID_INITIATOR_ADDRESS 0x000E
  864. #define I2O_DSC_INVALID_MESSAGE_FLAGS 0x000F
  865. #define I2O_DSC_INVALID_OFFSET 0x0010
  866. #define I2O_DSC_INVALID_PARAMETER 0x0011
  867. #define I2O_DSC_INVALID_REQUEST 0x0012
  868. #define I2O_DSC_INVALID_TARGET_ADDRESS 0x0013
  869. #define I2O_DSC_MESSAGE_TOO_LARGE 0x0014
  870. #define I2O_DSC_MESSAGE_TOO_SMALL 0x0015
  871. #define I2O_DSC_MISSING_PARAMETER 0x0016
  872. #define I2O_DSC_TIMEOUT 0x0017
  873. #define I2O_DSC_UNKNOWN_ERROR 0x0018
  874. #define I2O_DSC_UNKNOWN_FUNCTION 0x0019
  875. #define I2O_DSC_UNSUPPORTED_VERSION 0x001A
  876. #define I2O_DSC_DEVICE_BUSY 0x001B
  877. #define I2O_DSC_DEVICE_NOT_AVAILABLE 0x001C
  878. /* DetailedStatusCode defines for Block Storage Operation: Table 6-7 Detailed
  879. Status Codes.*/
  880. #define I2O_BSA_DSC_SUCCESS 0x0000
  881. #define I2O_BSA_DSC_MEDIA_ERROR 0x0001
  882. #define I2O_BSA_DSC_ACCESS_ERROR 0x0002
  883. #define I2O_BSA_DSC_DEVICE_FAILURE 0x0003
  884. #define I2O_BSA_DSC_DEVICE_NOT_READY 0x0004
  885. #define I2O_BSA_DSC_MEDIA_NOT_PRESENT 0x0005
  886. #define I2O_BSA_DSC_MEDIA_LOCKED 0x0006
  887. #define I2O_BSA_DSC_MEDIA_FAILURE 0x0007
  888. #define I2O_BSA_DSC_PROTOCOL_FAILURE 0x0008
  889. #define I2O_BSA_DSC_BUS_FAILURE 0x0009
  890. #define I2O_BSA_DSC_ACCESS_VIOLATION 0x000A
  891. #define I2O_BSA_DSC_WRITE_PROTECTED 0x000B
  892. #define I2O_BSA_DSC_DEVICE_RESET 0x000C
  893. #define I2O_BSA_DSC_VOLUME_CHANGED 0x000D
  894. #define I2O_BSA_DSC_TIMEOUT 0x000E
  895. /* FailureStatusCodes, Table 3-3 Message Failure Codes */
  896. #define I2O_FSC_TRANSPORT_SERVICE_SUSPENDED 0x81
  897. #define I2O_FSC_TRANSPORT_SERVICE_TERMINATED 0x82
  898. #define I2O_FSC_TRANSPORT_CONGESTION 0x83
  899. #define I2O_FSC_TRANSPORT_FAILURE 0x84
  900. #define I2O_FSC_TRANSPORT_STATE_ERROR 0x85
  901. #define I2O_FSC_TRANSPORT_TIME_OUT 0x86
  902. #define I2O_FSC_TRANSPORT_ROUTING_FAILURE 0x87
  903. #define I2O_FSC_TRANSPORT_INVALID_VERSION 0x88
  904. #define I2O_FSC_TRANSPORT_INVALID_OFFSET 0x89
  905. #define I2O_FSC_TRANSPORT_INVALID_MSG_FLAGS 0x8A
  906. #define I2O_FSC_TRANSPORT_FRAME_TOO_SMALL 0x8B
  907. #define I2O_FSC_TRANSPORT_FRAME_TOO_LARGE 0x8C
  908. #define I2O_FSC_TRANSPORT_INVALID_TARGET_ID 0x8D
  909. #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_ID 0x8E
  910. #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_CONTEXT 0x8F
  911. #define I2O_FSC_TRANSPORT_UNKNOWN_FAILURE 0xFF
  912. /* Device Claim Types */
  913. #define I2O_CLAIM_PRIMARY 0x01000000
  914. #define I2O_CLAIM_MANAGEMENT 0x02000000
  915. #define I2O_CLAIM_AUTHORIZED 0x03000000
  916. #define I2O_CLAIM_SECONDARY 0x04000000
  917. /* Message header defines for VersionOffset */
  918. #define I2OVER15 0x0001
  919. #define I2OVER20 0x0002
  920. /* Default is 1.5 */
  921. #define I2OVERSION I2OVER15
  922. #define SGL_OFFSET_0 I2OVERSION
  923. #define SGL_OFFSET_4 (0x0040 | I2OVERSION)
  924. #define SGL_OFFSET_5 (0x0050 | I2OVERSION)
  925. #define SGL_OFFSET_6 (0x0060 | I2OVERSION)
  926. #define SGL_OFFSET_7 (0x0070 | I2OVERSION)
  927. #define SGL_OFFSET_8 (0x0080 | I2OVERSION)
  928. #define SGL_OFFSET_9 (0x0090 | I2OVERSION)
  929. #define SGL_OFFSET_10 (0x00A0 | I2OVERSION)
  930. #define SGL_OFFSET_11 (0x00B0 | I2OVERSION)
  931. #define SGL_OFFSET_12 (0x00C0 | I2OVERSION)
  932. #define SGL_OFFSET(x) (((x)<<4) | I2OVERSION)
  933. /* Transaction Reply Lists (TRL) Control Word structure */
  934. #define TRL_SINGLE_FIXED_LENGTH 0x00
  935. #define TRL_SINGLE_VARIABLE_LENGTH 0x40
  936. #define TRL_MULTIPLE_FIXED_LENGTH 0x80
  937. /* msg header defines for MsgFlags */
  938. #define MSG_STATIC 0x0100
  939. #define MSG_64BIT_CNTXT 0x0200
  940. #define MSG_MULTI_TRANS 0x1000
  941. #define MSG_FAIL 0x2000
  942. #define MSG_FINAL 0x4000
  943. #define MSG_REPLY 0x8000
  944. /* minimum size msg */
  945. #define THREE_WORD_MSG_SIZE 0x00030000
  946. #define FOUR_WORD_MSG_SIZE 0x00040000
  947. #define FIVE_WORD_MSG_SIZE 0x00050000
  948. #define SIX_WORD_MSG_SIZE 0x00060000
  949. #define SEVEN_WORD_MSG_SIZE 0x00070000
  950. #define EIGHT_WORD_MSG_SIZE 0x00080000
  951. #define NINE_WORD_MSG_SIZE 0x00090000
  952. #define TEN_WORD_MSG_SIZE 0x000A0000
  953. #define ELEVEN_WORD_MSG_SIZE 0x000B0000
  954. #define I2O_MESSAGE_SIZE(x) ((x)<<16)
  955. /* special TID assignments */
  956. #define ADAPTER_TID 0
  957. #define HOST_TID 1
  958. /* outbound queue defines */
  959. #define I2O_MAX_OUTBOUND_MSG_FRAMES 128
  960. #define I2O_OUTBOUND_MSG_FRAME_SIZE 128 /* in 32-bit words */
  961. #define I2O_POST_WAIT_OK 0
  962. #define I2O_POST_WAIT_TIMEOUT -ETIMEDOUT
  963. #define I2O_CONTEXT_LIST_MIN_LENGTH 15
  964. #define I2O_CONTEXT_LIST_USED 0x01
  965. #define I2O_CONTEXT_LIST_DELETED 0x02
  966. /* timeouts */
  967. #define I2O_TIMEOUT_INIT_OUTBOUND_QUEUE 15
  968. #define I2O_TIMEOUT_MESSAGE_GET 5
  969. #define I2O_TIMEOUT_RESET 30
  970. #define I2O_TIMEOUT_STATUS_GET 5
  971. #define I2O_TIMEOUT_LCT_GET 360
  972. #define I2O_TIMEOUT_SCSI_SCB_ABORT 240
  973. /* retries */
  974. #define I2O_HRT_GET_TRIES 3
  975. #define I2O_LCT_GET_TRIES 3
  976. /* defines for max_sectors and max_phys_segments */
  977. #define I2O_MAX_SECTORS 1024
  978. #define I2O_MAX_SECTORS_LIMITED 256
  979. #define I2O_MAX_PHYS_SEGMENTS MAX_PHYS_SEGMENTS
  980. #endif /* __KERNEL__ */
  981. #endif /* _I2O_H */