1 /* bnx2i_sysfs.c: Broadcom NetXtreme II iSCSI driver.
3 * Copyright (c) 2004 - 2009 Broadcom Corporation
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation.
9 * Written by: Anil Veerabhadrappa (anilgv@broadcom.com)
15 * bnx2i_dev_to_hba - maps dev pointer to adapter struct
16 * @dev: device pointer
18 * Map device to hba structure
20 static inline struct bnx2i_hba
*bnx2i_dev_to_hba(struct device
*dev
)
22 struct Scsi_Host
*shost
= class_to_shost(dev
);
23 return iscsi_host_priv(shost
);
28 * bnx2i_show_sq_info - return(s currently configured send queue (SQ) size
29 * @dev: device pointer
30 * @buf: buffer to return current SQ size parameter
32 * Returns current SQ size parameter, this paramater determines the number
33 * outstanding iSCSI commands supported on a connection
35 static ssize_t
bnx2i_show_sq_info(struct device
*dev
,
36 struct device_attribute
*attr
, char *buf
)
38 struct bnx2i_hba
*hba
= bnx2i_dev_to_hba(dev
);
40 return sprintf(buf
, "0x%x\n", hba
->max_sqes
);
45 * bnx2i_set_sq_info - update send queue (SQ) size parameter
46 * @dev: device pointer
47 * @buf: buffer to return current SQ size parameter
48 * @count: parameter buffer size
50 * Interface for user to change shared queue size allocated for each conn
51 * Must be within SQ limits and a power of 2. For the latter this is needed
52 * because of how libiscsi preallocates tasks.
54 static ssize_t
bnx2i_set_sq_info(struct device
*dev
,
55 struct device_attribute
*attr
,
56 const char *buf
, size_t count
)
58 struct bnx2i_hba
*hba
= bnx2i_dev_to_hba(dev
);
62 if (hba
->ofld_conns_active
)
65 if (test_bit(BNX2I_NX2_DEV_57710
, &hba
->cnic_dev_type
))
66 max_sq_size
= BNX2I_5770X_SQ_WQES_MAX
;
68 max_sq_size
= BNX2I_570X_SQ_WQES_MAX
;
70 if (sscanf(buf
, " 0x%x ", &val
) > 0) {
71 if ((val
>= BNX2I_SQ_WQES_MIN
) && (val
<= max_sq_size
) &&
79 printk(KERN_ERR
"bnx2i: device busy, cannot change SQ size\n");
85 * bnx2i_show_ccell_info - returns command cell (HQ) size
86 * @dev: device pointer
87 * @buf: buffer to return current SQ size parameter
89 * returns per-connection TCP history queue size parameter
91 static ssize_t
bnx2i_show_ccell_info(struct device
*dev
,
92 struct device_attribute
*attr
, char *buf
)
94 struct bnx2i_hba
*hba
= bnx2i_dev_to_hba(dev
);
96 return sprintf(buf
, "0x%x\n", hba
->num_ccell
);
101 * bnx2i_get_link_state - set command cell (HQ) size
102 * @dev: device pointer
103 * @buf: buffer to return current SQ size parameter
104 * @count: parameter buffer size
106 * updates per-connection TCP history queue size parameter
108 static ssize_t
bnx2i_set_ccell_info(struct device
*dev
,
109 struct device_attribute
*attr
,
110 const char *buf
, size_t count
)
113 struct bnx2i_hba
*hba
= bnx2i_dev_to_hba(dev
);
115 if (hba
->ofld_conns_active
)
118 if (sscanf(buf
, " 0x%x ", &val
) > 0) {
119 if ((val
>= BNX2I_CCELLS_MIN
) &&
120 (val
<= BNX2I_CCELLS_MAX
)) {
121 hba
->num_ccell
= val
;
128 printk(KERN_ERR
"bnx2i: device busy, cannot change CCELL size\n");
133 static DEVICE_ATTR(sq_size
, S_IRUGO
| S_IWUSR
,
134 bnx2i_show_sq_info
, bnx2i_set_sq_info
);
135 static DEVICE_ATTR(num_ccell
, S_IRUGO
| S_IWUSR
,
136 bnx2i_show_ccell_info
, bnx2i_set_ccell_info
);
138 struct device_attribute
*bnx2i_dev_attributes
[] = {