[SCSI] cxgb4i: connection and ddp setting update
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / scsi / cxgbi / cxgb4i / cxgb4i.h
blob1096026ba241ad2bd41f0ee643d18f091982422d
1 /*
2 * cxgb4i.h: Chelsio T4 iSCSI driver.
4 * Copyright (c) 2010 Chelsio Communications, Inc.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation.
10 * Written by: Karen Xie (kxie@chelsio.com)
11 * Written by: Rakesh Ranjan (rranjan@chelsio.com)
14 #ifndef __CXGB4I_H__
15 #define __CXGB4I_H__
17 #define CXGB4I_SCSI_HOST_QDEPTH 1024
18 #define CXGB4I_MAX_CONN 16384
19 #define CXGB4I_MAX_TARGET CXGB4I_MAX_CONN
20 #define CXGB4I_MAX_LUN 0x1000
22 /* for TX: a skb must have a headroom of at least TX_HEADER_LEN bytes */
23 #define CXGB4I_TX_HEADER_LEN \
24 (sizeof(struct fw_ofld_tx_data_wr) + sizeof(struct sge_opaque_hdr))
26 struct ulptx_idata {
27 __be32 cmd_more;
28 __be32 len;
31 struct cpl_rx_data_ddp {
32 union opcode_tid ot;
33 __be16 urg;
34 __be16 len;
35 __be32 seq;
36 union {
37 __be32 nxt_seq;
38 __be32 ddp_report;
40 __be32 ulp_crc;
41 __be32 ddpvld;
43 #endif /* __CXGB4I_H__ */