2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2005 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
9 static inline struct ct_sns_req
*
10 qla2x00_prep_ct_req(struct ct_sns_req
*, uint16_t, uint16_t);
12 static inline struct sns_cmd_pkt
*
13 qla2x00_prep_sns_cmd(scsi_qla_host_t
*, uint16_t, uint16_t, uint16_t);
15 static int qla2x00_sns_ga_nxt(scsi_qla_host_t
*, fc_port_t
*);
16 static int qla2x00_sns_gid_pt(scsi_qla_host_t
*, sw_info_t
*);
17 static int qla2x00_sns_gpn_id(scsi_qla_host_t
*, sw_info_t
*);
18 static int qla2x00_sns_gnn_id(scsi_qla_host_t
*, sw_info_t
*);
19 static int qla2x00_sns_rft_id(scsi_qla_host_t
*);
20 static int qla2x00_sns_rnn_id(scsi_qla_host_t
*);
23 * qla2x00_prep_ms_iocb() - Prepare common MS/CT IOCB fields for SNS CT query.
25 * @req_size: request size in bytes
26 * @rsp_size: response size in bytes
28 * Returns a pointer to the @ha's ms_iocb.
31 qla2x00_prep_ms_iocb(scsi_qla_host_t
*ha
, uint32_t req_size
, uint32_t rsp_size
)
33 ms_iocb_entry_t
*ms_pkt
;
36 memset(ms_pkt
, 0, sizeof(ms_iocb_entry_t
));
38 ms_pkt
->entry_type
= MS_IOCB_TYPE
;
39 ms_pkt
->entry_count
= 1;
40 SET_TARGET_ID(ha
, ms_pkt
->loop_id
, SIMPLE_NAME_SERVER
);
41 ms_pkt
->control_flags
= __constant_cpu_to_le16(CF_READ
| CF_HEAD_TAG
);
42 ms_pkt
->timeout
= __constant_cpu_to_le16(25);
43 ms_pkt
->cmd_dsd_count
= __constant_cpu_to_le16(1);
44 ms_pkt
->total_dsd_count
= __constant_cpu_to_le16(2);
45 ms_pkt
->rsp_bytecount
= cpu_to_le32(rsp_size
);
46 ms_pkt
->req_bytecount
= cpu_to_le32(req_size
);
48 ms_pkt
->dseg_req_address
[0] = cpu_to_le32(LSD(ha
->ct_sns_dma
));
49 ms_pkt
->dseg_req_address
[1] = cpu_to_le32(MSD(ha
->ct_sns_dma
));
50 ms_pkt
->dseg_req_length
= ms_pkt
->req_bytecount
;
52 ms_pkt
->dseg_rsp_address
[0] = cpu_to_le32(LSD(ha
->ct_sns_dma
));
53 ms_pkt
->dseg_rsp_address
[1] = cpu_to_le32(MSD(ha
->ct_sns_dma
));
54 ms_pkt
->dseg_rsp_length
= ms_pkt
->rsp_bytecount
;
60 * qla24xx_prep_ms_iocb() - Prepare common CT IOCB fields for SNS CT query.
62 * @req_size: request size in bytes
63 * @rsp_size: response size in bytes
65 * Returns a pointer to the @ha's ms_iocb.
68 qla24xx_prep_ms_iocb(scsi_qla_host_t
*ha
, uint32_t req_size
, uint32_t rsp_size
)
70 struct ct_entry_24xx
*ct_pkt
;
72 ct_pkt
= (struct ct_entry_24xx
*)ha
->ms_iocb
;
73 memset(ct_pkt
, 0, sizeof(struct ct_entry_24xx
));
75 ct_pkt
->entry_type
= CT_IOCB_TYPE
;
76 ct_pkt
->entry_count
= 1;
77 ct_pkt
->nport_handle
= __constant_cpu_to_le16(NPH_SNS
);
78 ct_pkt
->timeout
= __constant_cpu_to_le16(25);
79 ct_pkt
->cmd_dsd_count
= __constant_cpu_to_le16(1);
80 ct_pkt
->rsp_dsd_count
= __constant_cpu_to_le16(1);
81 ct_pkt
->rsp_byte_count
= cpu_to_le32(rsp_size
);
82 ct_pkt
->cmd_byte_count
= cpu_to_le32(req_size
);
84 ct_pkt
->dseg_0_address
[0] = cpu_to_le32(LSD(ha
->ct_sns_dma
));
85 ct_pkt
->dseg_0_address
[1] = cpu_to_le32(MSD(ha
->ct_sns_dma
));
86 ct_pkt
->dseg_0_len
= ct_pkt
->cmd_byte_count
;
88 ct_pkt
->dseg_1_address
[0] = cpu_to_le32(LSD(ha
->ct_sns_dma
));
89 ct_pkt
->dseg_1_address
[1] = cpu_to_le32(MSD(ha
->ct_sns_dma
));
90 ct_pkt
->dseg_1_len
= ct_pkt
->rsp_byte_count
;
91 ct_pkt
->vp_index
= ha
->vp_idx
;
97 * qla2x00_prep_ct_req() - Prepare common CT request fields for SNS query.
98 * @ct_req: CT request buffer
100 * @rsp_size: response size in bytes
102 * Returns a pointer to the intitialized @ct_req.
104 static inline struct ct_sns_req
*
105 qla2x00_prep_ct_req(struct ct_sns_req
*ct_req
, uint16_t cmd
, uint16_t rsp_size
)
107 memset(ct_req
, 0, sizeof(struct ct_sns_pkt
));
109 ct_req
->header
.revision
= 0x01;
110 ct_req
->header
.gs_type
= 0xFC;
111 ct_req
->header
.gs_subtype
= 0x02;
112 ct_req
->command
= cpu_to_be16(cmd
);
113 ct_req
->max_rsp_size
= cpu_to_be16((rsp_size
- 16) / 4);
119 qla2x00_chk_ms_status(scsi_qla_host_t
*ha
, ms_iocb_entry_t
*ms_pkt
,
120 struct ct_sns_rsp
*ct_rsp
, const char *routine
)
123 uint16_t comp_status
;
125 rval
= QLA_FUNCTION_FAILED
;
126 if (ms_pkt
->entry_status
!= 0) {
127 DEBUG2_3(printk("scsi(%ld): %s failed, error status (%x).\n",
128 ha
->host_no
, routine
, ms_pkt
->entry_status
));
130 if (IS_FWI2_CAPABLE(ha
))
131 comp_status
= le16_to_cpu(
132 ((struct ct_entry_24xx
*)ms_pkt
)->comp_status
);
134 comp_status
= le16_to_cpu(ms_pkt
->status
);
135 switch (comp_status
) {
137 case CS_DATA_UNDERRUN
:
138 case CS_DATA_OVERRUN
: /* Overrun? */
139 if (ct_rsp
->header
.response
!=
140 __constant_cpu_to_be16(CT_ACCEPT_RESPONSE
)) {
141 DEBUG2_3(printk("scsi(%ld): %s failed, "
142 "rejected request:\n", ha
->host_no
,
144 DEBUG2_3(qla2x00_dump_buffer(
145 (uint8_t *)&ct_rsp
->header
,
146 sizeof(struct ct_rsp_hdr
)));
147 rval
= QLA_INVALID_COMMAND
;
152 DEBUG2_3(printk("scsi(%ld): %s failed, completion "
153 "status (%x).\n", ha
->host_no
, routine
,
162 * qla2x00_ga_nxt() - SNS scan for fabric devices via GA_NXT command.
164 * @fcport: fcport entry to updated
166 * Returns 0 on success.
169 qla2x00_ga_nxt(scsi_qla_host_t
*ha
, fc_port_t
*fcport
)
173 ms_iocb_entry_t
*ms_pkt
;
174 struct ct_sns_req
*ct_req
;
175 struct ct_sns_rsp
*ct_rsp
;
177 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
178 return (qla2x00_sns_ga_nxt(ha
, fcport
));
182 /* Prepare common MS IOCB */
183 ms_pkt
= ha
->isp_ops
->prep_ms_iocb(ha
, GA_NXT_REQ_SIZE
,
186 /* Prepare CT request */
187 ct_req
= qla2x00_prep_ct_req(&ha
->ct_sns
->p
.req
, GA_NXT_CMD
,
189 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
191 /* Prepare CT arguments -- port_id */
192 ct_req
->req
.port_id
.port_id
[0] = fcport
->d_id
.b
.domain
;
193 ct_req
->req
.port_id
.port_id
[1] = fcport
->d_id
.b
.area
;
194 ct_req
->req
.port_id
.port_id
[2] = fcport
->d_id
.b
.al_pa
;
196 /* Execute MS IOCB */
197 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
198 sizeof(ms_iocb_entry_t
));
199 if (rval
!= QLA_SUCCESS
) {
201 DEBUG2_3(printk("scsi(%ld): GA_NXT issue IOCB failed (%d).\n",
203 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
, "GA_NXT") !=
205 rval
= QLA_FUNCTION_FAILED
;
207 /* Populate fc_port_t entry. */
208 fcport
->d_id
.b
.domain
= ct_rsp
->rsp
.ga_nxt
.port_id
[0];
209 fcport
->d_id
.b
.area
= ct_rsp
->rsp
.ga_nxt
.port_id
[1];
210 fcport
->d_id
.b
.al_pa
= ct_rsp
->rsp
.ga_nxt
.port_id
[2];
212 memcpy(fcport
->node_name
, ct_rsp
->rsp
.ga_nxt
.node_name
,
214 memcpy(fcport
->port_name
, ct_rsp
->rsp
.ga_nxt
.port_name
,
217 if (ct_rsp
->rsp
.ga_nxt
.port_type
!= NS_N_PORT_TYPE
&&
218 ct_rsp
->rsp
.ga_nxt
.port_type
!= NS_NL_PORT_TYPE
)
219 fcport
->d_id
.b
.domain
= 0xf0;
221 DEBUG2_3(printk("scsi(%ld): GA_NXT entry - "
222 "nn %02x%02x%02x%02x%02x%02x%02x%02x "
223 "pn %02x%02x%02x%02x%02x%02x%02x%02x "
224 "portid=%02x%02x%02x.\n",
226 fcport
->node_name
[0], fcport
->node_name
[1],
227 fcport
->node_name
[2], fcport
->node_name
[3],
228 fcport
->node_name
[4], fcport
->node_name
[5],
229 fcport
->node_name
[6], fcport
->node_name
[7],
230 fcport
->port_name
[0], fcport
->port_name
[1],
231 fcport
->port_name
[2], fcport
->port_name
[3],
232 fcport
->port_name
[4], fcport
->port_name
[5],
233 fcport
->port_name
[6], fcport
->port_name
[7],
234 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
235 fcport
->d_id
.b
.al_pa
));
242 * qla2x00_gid_pt() - SNS scan for fabric devices via GID_PT command.
244 * @list: switch info entries to populate
246 * NOTE: Non-Nx_Ports are not requested.
248 * Returns 0 on success.
251 qla2x00_gid_pt(scsi_qla_host_t
*ha
, sw_info_t
*list
)
256 ms_iocb_entry_t
*ms_pkt
;
257 struct ct_sns_req
*ct_req
;
258 struct ct_sns_rsp
*ct_rsp
;
260 struct ct_sns_gid_pt_data
*gid_data
;
262 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
263 return (qla2x00_sns_gid_pt(ha
, list
));
269 /* Prepare common MS IOCB */
270 ms_pkt
= ha
->isp_ops
->prep_ms_iocb(ha
, GID_PT_REQ_SIZE
,
273 /* Prepare CT request */
274 ct_req
= qla2x00_prep_ct_req(&ha
->ct_sns
->p
.req
, GID_PT_CMD
,
276 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
278 /* Prepare CT arguments -- port_type */
279 ct_req
->req
.gid_pt
.port_type
= NS_NX_PORT_TYPE
;
281 /* Execute MS IOCB */
282 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
283 sizeof(ms_iocb_entry_t
));
284 if (rval
!= QLA_SUCCESS
) {
286 DEBUG2_3(printk("scsi(%ld): GID_PT issue IOCB failed (%d).\n",
288 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
, "GID_PT") !=
290 rval
= QLA_FUNCTION_FAILED
;
292 /* Set port IDs in switch info list. */
293 for (i
= 0; i
< MAX_FIBRE_DEVICES
; i
++) {
294 gid_data
= &ct_rsp
->rsp
.gid_pt
.entries
[i
];
295 list
[i
].d_id
.b
.domain
= gid_data
->port_id
[0];
296 list
[i
].d_id
.b
.area
= gid_data
->port_id
[1];
297 list
[i
].d_id
.b
.al_pa
= gid_data
->port_id
[2];
300 if (gid_data
->control_byte
& BIT_7
) {
301 list
[i
].d_id
.b
.rsvd_1
= gid_data
->control_byte
;
307 * If we've used all available slots, then the switch is
308 * reporting back more devices than we can handle with this
309 * single call. Return a failed status, and let GA_NXT handle
312 if (i
== MAX_FIBRE_DEVICES
)
313 rval
= QLA_FUNCTION_FAILED
;
320 * qla2x00_gpn_id() - SNS Get Port Name (GPN_ID) query.
322 * @list: switch info entries to populate
324 * Returns 0 on success.
327 qla2x00_gpn_id(scsi_qla_host_t
*ha
, sw_info_t
*list
)
332 ms_iocb_entry_t
*ms_pkt
;
333 struct ct_sns_req
*ct_req
;
334 struct ct_sns_rsp
*ct_rsp
;
336 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
337 return (qla2x00_sns_gpn_id(ha
, list
));
340 for (i
= 0; i
< MAX_FIBRE_DEVICES
; i
++) {
342 /* Prepare common MS IOCB */
343 ms_pkt
= ha
->isp_ops
->prep_ms_iocb(ha
, GPN_ID_REQ_SIZE
,
346 /* Prepare CT request */
347 ct_req
= qla2x00_prep_ct_req(&ha
->ct_sns
->p
.req
, GPN_ID_CMD
,
349 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
351 /* Prepare CT arguments -- port_id */
352 ct_req
->req
.port_id
.port_id
[0] = list
[i
].d_id
.b
.domain
;
353 ct_req
->req
.port_id
.port_id
[1] = list
[i
].d_id
.b
.area
;
354 ct_req
->req
.port_id
.port_id
[2] = list
[i
].d_id
.b
.al_pa
;
356 /* Execute MS IOCB */
357 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
358 sizeof(ms_iocb_entry_t
));
359 if (rval
!= QLA_SUCCESS
) {
361 DEBUG2_3(printk("scsi(%ld): GPN_ID issue IOCB failed "
362 "(%d).\n", ha
->host_no
, rval
));
363 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
,
364 "GPN_ID") != QLA_SUCCESS
) {
365 rval
= QLA_FUNCTION_FAILED
;
368 memcpy(list
[i
].port_name
,
369 ct_rsp
->rsp
.gpn_id
.port_name
, WWN_SIZE
);
372 /* Last device exit. */
373 if (list
[i
].d_id
.b
.rsvd_1
!= 0)
381 * qla2x00_gnn_id() - SNS Get Node Name (GNN_ID) query.
383 * @list: switch info entries to populate
385 * Returns 0 on success.
388 qla2x00_gnn_id(scsi_qla_host_t
*ha
, sw_info_t
*list
)
393 ms_iocb_entry_t
*ms_pkt
;
394 struct ct_sns_req
*ct_req
;
395 struct ct_sns_rsp
*ct_rsp
;
397 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
398 return (qla2x00_sns_gnn_id(ha
, list
));
401 for (i
= 0; i
< MAX_FIBRE_DEVICES
; i
++) {
403 /* Prepare common MS IOCB */
404 ms_pkt
= ha
->isp_ops
->prep_ms_iocb(ha
, GNN_ID_REQ_SIZE
,
407 /* Prepare CT request */
408 ct_req
= qla2x00_prep_ct_req(&ha
->ct_sns
->p
.req
, GNN_ID_CMD
,
410 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
412 /* Prepare CT arguments -- port_id */
413 ct_req
->req
.port_id
.port_id
[0] = list
[i
].d_id
.b
.domain
;
414 ct_req
->req
.port_id
.port_id
[1] = list
[i
].d_id
.b
.area
;
415 ct_req
->req
.port_id
.port_id
[2] = list
[i
].d_id
.b
.al_pa
;
417 /* Execute MS IOCB */
418 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
419 sizeof(ms_iocb_entry_t
));
420 if (rval
!= QLA_SUCCESS
) {
422 DEBUG2_3(printk("scsi(%ld): GNN_ID issue IOCB failed "
423 "(%d).\n", ha
->host_no
, rval
));
424 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
,
425 "GNN_ID") != QLA_SUCCESS
) {
426 rval
= QLA_FUNCTION_FAILED
;
429 memcpy(list
[i
].node_name
,
430 ct_rsp
->rsp
.gnn_id
.node_name
, WWN_SIZE
);
432 DEBUG2_3(printk("scsi(%ld): GID_PT entry - "
433 "nn %02x%02x%02x%02x%02x%02x%02x%02x "
434 "pn %02x%02x%02x%02x%02x%02x%02x%02x "
435 "portid=%02x%02x%02x.\n",
437 list
[i
].node_name
[0], list
[i
].node_name
[1],
438 list
[i
].node_name
[2], list
[i
].node_name
[3],
439 list
[i
].node_name
[4], list
[i
].node_name
[5],
440 list
[i
].node_name
[6], list
[i
].node_name
[7],
441 list
[i
].port_name
[0], list
[i
].port_name
[1],
442 list
[i
].port_name
[2], list
[i
].port_name
[3],
443 list
[i
].port_name
[4], list
[i
].port_name
[5],
444 list
[i
].port_name
[6], list
[i
].port_name
[7],
445 list
[i
].d_id
.b
.domain
, list
[i
].d_id
.b
.area
,
446 list
[i
].d_id
.b
.al_pa
));
449 /* Last device exit. */
450 if (list
[i
].d_id
.b
.rsvd_1
!= 0)
458 * qla2x00_rft_id() - SNS Register FC-4 TYPEs (RFT_ID) supported by the HBA.
461 * Returns 0 on success.
464 qla2x00_rft_id(scsi_qla_host_t
*ha
)
468 ms_iocb_entry_t
*ms_pkt
;
469 struct ct_sns_req
*ct_req
;
470 struct ct_sns_rsp
*ct_rsp
;
472 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
473 return (qla2x00_sns_rft_id(ha
));
477 /* Prepare common MS IOCB */
478 ms_pkt
= ha
->isp_ops
->prep_ms_iocb(ha
, RFT_ID_REQ_SIZE
,
481 /* Prepare CT request */
482 ct_req
= qla2x00_prep_ct_req(&ha
->ct_sns
->p
.req
, RFT_ID_CMD
,
484 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
486 /* Prepare CT arguments -- port_id, FC-4 types */
487 ct_req
->req
.rft_id
.port_id
[0] = ha
->d_id
.b
.domain
;
488 ct_req
->req
.rft_id
.port_id
[1] = ha
->d_id
.b
.area
;
489 ct_req
->req
.rft_id
.port_id
[2] = ha
->d_id
.b
.al_pa
;
491 ct_req
->req
.rft_id
.fc4_types
[2] = 0x01; /* FCP-3 */
493 /* Execute MS IOCB */
494 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
495 sizeof(ms_iocb_entry_t
));
496 if (rval
!= QLA_SUCCESS
) {
498 DEBUG2_3(printk("scsi(%ld): RFT_ID issue IOCB failed (%d).\n",
500 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
, "RFT_ID") !=
502 rval
= QLA_FUNCTION_FAILED
;
504 DEBUG2(printk("scsi(%ld): RFT_ID exiting normally.\n",
512 * qla2x00_rff_id() - SNS Register FC-4 Features (RFF_ID) supported by the HBA.
515 * Returns 0 on success.
518 qla2x00_rff_id(scsi_qla_host_t
*ha
)
522 ms_iocb_entry_t
*ms_pkt
;
523 struct ct_sns_req
*ct_req
;
524 struct ct_sns_rsp
*ct_rsp
;
526 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
527 DEBUG2(printk("scsi(%ld): RFF_ID call unsupported on "
528 "ISP2100/ISP2200.\n", ha
->host_no
));
529 return (QLA_SUCCESS
);
533 /* Prepare common MS IOCB */
534 ms_pkt
= ha
->isp_ops
->prep_ms_iocb(ha
, RFF_ID_REQ_SIZE
,
537 /* Prepare CT request */
538 ct_req
= qla2x00_prep_ct_req(&ha
->ct_sns
->p
.req
, RFF_ID_CMD
,
540 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
542 /* Prepare CT arguments -- port_id, FC-4 feature, FC-4 type */
543 ct_req
->req
.rff_id
.port_id
[0] = ha
->d_id
.b
.domain
;
544 ct_req
->req
.rff_id
.port_id
[1] = ha
->d_id
.b
.area
;
545 ct_req
->req
.rff_id
.port_id
[2] = ha
->d_id
.b
.al_pa
;
547 ct_req
->req
.rff_id
.fc4_feature
= BIT_1
;
548 ct_req
->req
.rff_id
.fc4_type
= 0x08; /* SCSI - FCP */
550 /* Execute MS IOCB */
551 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
552 sizeof(ms_iocb_entry_t
));
553 if (rval
!= QLA_SUCCESS
) {
555 DEBUG2_3(printk("scsi(%ld): RFF_ID issue IOCB failed (%d).\n",
557 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
, "RFF_ID") !=
559 rval
= QLA_FUNCTION_FAILED
;
561 DEBUG2(printk("scsi(%ld): RFF_ID exiting normally.\n",
569 * qla2x00_rnn_id() - SNS Register Node Name (RNN_ID) of the HBA.
572 * Returns 0 on success.
575 qla2x00_rnn_id(scsi_qla_host_t
*ha
)
579 ms_iocb_entry_t
*ms_pkt
;
580 struct ct_sns_req
*ct_req
;
581 struct ct_sns_rsp
*ct_rsp
;
583 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
584 return (qla2x00_sns_rnn_id(ha
));
588 /* Prepare common MS IOCB */
589 ms_pkt
= ha
->isp_ops
->prep_ms_iocb(ha
, RNN_ID_REQ_SIZE
,
592 /* Prepare CT request */
593 ct_req
= qla2x00_prep_ct_req(&ha
->ct_sns
->p
.req
, RNN_ID_CMD
,
595 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
597 /* Prepare CT arguments -- port_id, node_name */
598 ct_req
->req
.rnn_id
.port_id
[0] = ha
->d_id
.b
.domain
;
599 ct_req
->req
.rnn_id
.port_id
[1] = ha
->d_id
.b
.area
;
600 ct_req
->req
.rnn_id
.port_id
[2] = ha
->d_id
.b
.al_pa
;
602 memcpy(ct_req
->req
.rnn_id
.node_name
, ha
->node_name
, WWN_SIZE
);
604 /* Execute MS IOCB */
605 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
606 sizeof(ms_iocb_entry_t
));
607 if (rval
!= QLA_SUCCESS
) {
609 DEBUG2_3(printk("scsi(%ld): RNN_ID issue IOCB failed (%d).\n",
611 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
, "RNN_ID") !=
613 rval
= QLA_FUNCTION_FAILED
;
615 DEBUG2(printk("scsi(%ld): RNN_ID exiting normally.\n",
623 qla2x00_get_sym_node_name(scsi_qla_host_t
*ha
, uint8_t *snn
)
625 sprintf(snn
, "%s FW:v%d.%02d.%02d DVR:v%s",ha
->model_number
,
626 ha
->fw_major_version
, ha
->fw_minor_version
,
627 ha
->fw_subminor_version
, qla2x00_version_str
);
631 * qla2x00_rsnn_nn() - SNS Register Symbolic Node Name (RSNN_NN) of the HBA.
634 * Returns 0 on success.
637 qla2x00_rsnn_nn(scsi_qla_host_t
*ha
)
640 ms_iocb_entry_t
*ms_pkt
;
641 struct ct_sns_req
*ct_req
;
642 struct ct_sns_rsp
*ct_rsp
;
644 if (IS_QLA2100(ha
) || IS_QLA2200(ha
)) {
645 DEBUG2(printk("scsi(%ld): RSNN_ID call unsupported on "
646 "ISP2100/ISP2200.\n", ha
->host_no
));
647 return (QLA_SUCCESS
);
651 /* Prepare common MS IOCB */
652 /* Request size adjusted after CT preparation */
653 ms_pkt
= ha
->isp_ops
->prep_ms_iocb(ha
, 0, RSNN_NN_RSP_SIZE
);
655 /* Prepare CT request */
656 ct_req
= qla2x00_prep_ct_req(&ha
->ct_sns
->p
.req
, RSNN_NN_CMD
,
658 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
660 /* Prepare CT arguments -- node_name, symbolic node_name, size */
661 memcpy(ct_req
->req
.rsnn_nn
.node_name
, ha
->node_name
, WWN_SIZE
);
663 /* Prepare the Symbolic Node Name */
664 qla2x00_get_sym_node_name(ha
, ct_req
->req
.rsnn_nn
.sym_node_name
);
666 /* Calculate SNN length */
667 ct_req
->req
.rsnn_nn
.name_len
=
668 (uint8_t)strlen(ct_req
->req
.rsnn_nn
.sym_node_name
);
670 /* Update MS IOCB request */
671 ms_pkt
->req_bytecount
=
672 cpu_to_le32(24 + 1 + ct_req
->req
.rsnn_nn
.name_len
);
673 ms_pkt
->dseg_req_length
= ms_pkt
->req_bytecount
;
675 /* Execute MS IOCB */
676 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
677 sizeof(ms_iocb_entry_t
));
678 if (rval
!= QLA_SUCCESS
) {
680 DEBUG2_3(printk("scsi(%ld): RSNN_NN issue IOCB failed (%d).\n",
682 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
, "RSNN_NN") !=
684 rval
= QLA_FUNCTION_FAILED
;
686 DEBUG2(printk("scsi(%ld): RSNN_NN exiting normally.\n",
694 * qla2x00_prep_sns_cmd() - Prepare common SNS command request fields for query.
697 * @scmd_len: Subcommand length
698 * @data_size: response size in bytes
700 * Returns a pointer to the @ha's sns_cmd.
702 static inline struct sns_cmd_pkt
*
703 qla2x00_prep_sns_cmd(scsi_qla_host_t
*ha
, uint16_t cmd
, uint16_t scmd_len
,
707 struct sns_cmd_pkt
*sns_cmd
;
709 sns_cmd
= ha
->sns_cmd
;
710 memset(sns_cmd
, 0, sizeof(struct sns_cmd_pkt
));
711 wc
= data_size
/ 2; /* Size in 16bit words. */
712 sns_cmd
->p
.cmd
.buffer_length
= cpu_to_le16(wc
);
713 sns_cmd
->p
.cmd
.buffer_address
[0] = cpu_to_le32(LSD(ha
->sns_cmd_dma
));
714 sns_cmd
->p
.cmd
.buffer_address
[1] = cpu_to_le32(MSD(ha
->sns_cmd_dma
));
715 sns_cmd
->p
.cmd
.subcommand_length
= cpu_to_le16(scmd_len
);
716 sns_cmd
->p
.cmd
.subcommand
= cpu_to_le16(cmd
);
717 wc
= (data_size
- 16) / 4; /* Size in 32bit words. */
718 sns_cmd
->p
.cmd
.size
= cpu_to_le16(wc
);
724 * qla2x00_sns_ga_nxt() - SNS scan for fabric devices via GA_NXT command.
726 * @fcport: fcport entry to updated
728 * This command uses the old Exectute SNS Command mailbox routine.
730 * Returns 0 on success.
733 qla2x00_sns_ga_nxt(scsi_qla_host_t
*ha
, fc_port_t
*fcport
)
737 struct sns_cmd_pkt
*sns_cmd
;
740 /* Prepare SNS command request. */
741 sns_cmd
= qla2x00_prep_sns_cmd(ha
, GA_NXT_CMD
, GA_NXT_SNS_SCMD_LEN
,
742 GA_NXT_SNS_DATA_SIZE
);
744 /* Prepare SNS command arguments -- port_id. */
745 sns_cmd
->p
.cmd
.param
[0] = fcport
->d_id
.b
.al_pa
;
746 sns_cmd
->p
.cmd
.param
[1] = fcport
->d_id
.b
.area
;
747 sns_cmd
->p
.cmd
.param
[2] = fcport
->d_id
.b
.domain
;
749 /* Execute SNS command. */
750 rval
= qla2x00_send_sns(ha
, ha
->sns_cmd_dma
, GA_NXT_SNS_CMD_SIZE
/ 2,
751 sizeof(struct sns_cmd_pkt
));
752 if (rval
!= QLA_SUCCESS
) {
754 DEBUG2_3(printk("scsi(%ld): GA_NXT Send SNS failed (%d).\n",
756 } else if (sns_cmd
->p
.gan_data
[8] != 0x80 ||
757 sns_cmd
->p
.gan_data
[9] != 0x02) {
758 DEBUG2_3(printk("scsi(%ld): GA_NXT failed, rejected request, "
759 "ga_nxt_rsp:\n", ha
->host_no
));
760 DEBUG2_3(qla2x00_dump_buffer(sns_cmd
->p
.gan_data
, 16));
761 rval
= QLA_FUNCTION_FAILED
;
763 /* Populate fc_port_t entry. */
764 fcport
->d_id
.b
.domain
= sns_cmd
->p
.gan_data
[17];
765 fcport
->d_id
.b
.area
= sns_cmd
->p
.gan_data
[18];
766 fcport
->d_id
.b
.al_pa
= sns_cmd
->p
.gan_data
[19];
768 memcpy(fcport
->node_name
, &sns_cmd
->p
.gan_data
[284], WWN_SIZE
);
769 memcpy(fcport
->port_name
, &sns_cmd
->p
.gan_data
[20], WWN_SIZE
);
771 if (sns_cmd
->p
.gan_data
[16] != NS_N_PORT_TYPE
&&
772 sns_cmd
->p
.gan_data
[16] != NS_NL_PORT_TYPE
)
773 fcport
->d_id
.b
.domain
= 0xf0;
775 DEBUG2_3(printk("scsi(%ld): GA_NXT entry - "
776 "nn %02x%02x%02x%02x%02x%02x%02x%02x "
777 "pn %02x%02x%02x%02x%02x%02x%02x%02x "
778 "portid=%02x%02x%02x.\n",
780 fcport
->node_name
[0], fcport
->node_name
[1],
781 fcport
->node_name
[2], fcport
->node_name
[3],
782 fcport
->node_name
[4], fcport
->node_name
[5],
783 fcport
->node_name
[6], fcport
->node_name
[7],
784 fcport
->port_name
[0], fcport
->port_name
[1],
785 fcport
->port_name
[2], fcport
->port_name
[3],
786 fcport
->port_name
[4], fcport
->port_name
[5],
787 fcport
->port_name
[6], fcport
->port_name
[7],
788 fcport
->d_id
.b
.domain
, fcport
->d_id
.b
.area
,
789 fcport
->d_id
.b
.al_pa
));
796 * qla2x00_sns_gid_pt() - SNS scan for fabric devices via GID_PT command.
798 * @list: switch info entries to populate
800 * This command uses the old Exectute SNS Command mailbox routine.
802 * NOTE: Non-Nx_Ports are not requested.
804 * Returns 0 on success.
807 qla2x00_sns_gid_pt(scsi_qla_host_t
*ha
, sw_info_t
*list
)
813 struct sns_cmd_pkt
*sns_cmd
;
816 /* Prepare SNS command request. */
817 sns_cmd
= qla2x00_prep_sns_cmd(ha
, GID_PT_CMD
, GID_PT_SNS_SCMD_LEN
,
818 GID_PT_SNS_DATA_SIZE
);
820 /* Prepare SNS command arguments -- port_type. */
821 sns_cmd
->p
.cmd
.param
[0] = NS_NX_PORT_TYPE
;
823 /* Execute SNS command. */
824 rval
= qla2x00_send_sns(ha
, ha
->sns_cmd_dma
, GID_PT_SNS_CMD_SIZE
/ 2,
825 sizeof(struct sns_cmd_pkt
));
826 if (rval
!= QLA_SUCCESS
) {
828 DEBUG2_3(printk("scsi(%ld): GID_PT Send SNS failed (%d).\n",
830 } else if (sns_cmd
->p
.gid_data
[8] != 0x80 ||
831 sns_cmd
->p
.gid_data
[9] != 0x02) {
832 DEBUG2_3(printk("scsi(%ld): GID_PT failed, rejected request, "
833 "gid_rsp:\n", ha
->host_no
));
834 DEBUG2_3(qla2x00_dump_buffer(sns_cmd
->p
.gid_data
, 16));
835 rval
= QLA_FUNCTION_FAILED
;
837 /* Set port IDs in switch info list. */
838 for (i
= 0; i
< MAX_FIBRE_DEVICES
; i
++) {
839 entry
= &sns_cmd
->p
.gid_data
[(i
* 4) + 16];
840 list
[i
].d_id
.b
.domain
= entry
[1];
841 list
[i
].d_id
.b
.area
= entry
[2];
842 list
[i
].d_id
.b
.al_pa
= entry
[3];
845 if (entry
[0] & BIT_7
) {
846 list
[i
].d_id
.b
.rsvd_1
= entry
[0];
852 * If we've used all available slots, then the switch is
853 * reporting back more devices that we can handle with this
854 * single call. Return a failed status, and let GA_NXT handle
857 if (i
== MAX_FIBRE_DEVICES
)
858 rval
= QLA_FUNCTION_FAILED
;
865 * qla2x00_sns_gpn_id() - SNS Get Port Name (GPN_ID) query.
867 * @list: switch info entries to populate
869 * This command uses the old Exectute SNS Command mailbox routine.
871 * Returns 0 on success.
874 qla2x00_sns_gpn_id(scsi_qla_host_t
*ha
, sw_info_t
*list
)
879 struct sns_cmd_pkt
*sns_cmd
;
881 for (i
= 0; i
< MAX_FIBRE_DEVICES
; i
++) {
883 /* Prepare SNS command request. */
884 sns_cmd
= qla2x00_prep_sns_cmd(ha
, GPN_ID_CMD
,
885 GPN_ID_SNS_SCMD_LEN
, GPN_ID_SNS_DATA_SIZE
);
887 /* Prepare SNS command arguments -- port_id. */
888 sns_cmd
->p
.cmd
.param
[0] = list
[i
].d_id
.b
.al_pa
;
889 sns_cmd
->p
.cmd
.param
[1] = list
[i
].d_id
.b
.area
;
890 sns_cmd
->p
.cmd
.param
[2] = list
[i
].d_id
.b
.domain
;
892 /* Execute SNS command. */
893 rval
= qla2x00_send_sns(ha
, ha
->sns_cmd_dma
,
894 GPN_ID_SNS_CMD_SIZE
/ 2, sizeof(struct sns_cmd_pkt
));
895 if (rval
!= QLA_SUCCESS
) {
897 DEBUG2_3(printk("scsi(%ld): GPN_ID Send SNS failed "
898 "(%d).\n", ha
->host_no
, rval
));
899 } else if (sns_cmd
->p
.gpn_data
[8] != 0x80 ||
900 sns_cmd
->p
.gpn_data
[9] != 0x02) {
901 DEBUG2_3(printk("scsi(%ld): GPN_ID failed, rejected "
902 "request, gpn_rsp:\n", ha
->host_no
));
903 DEBUG2_3(qla2x00_dump_buffer(sns_cmd
->p
.gpn_data
, 16));
904 rval
= QLA_FUNCTION_FAILED
;
907 memcpy(list
[i
].port_name
, &sns_cmd
->p
.gpn_data
[16],
911 /* Last device exit. */
912 if (list
[i
].d_id
.b
.rsvd_1
!= 0)
920 * qla2x00_sns_gnn_id() - SNS Get Node Name (GNN_ID) query.
922 * @list: switch info entries to populate
924 * This command uses the old Exectute SNS Command mailbox routine.
926 * Returns 0 on success.
929 qla2x00_sns_gnn_id(scsi_qla_host_t
*ha
, sw_info_t
*list
)
934 struct sns_cmd_pkt
*sns_cmd
;
936 for (i
= 0; i
< MAX_FIBRE_DEVICES
; i
++) {
938 /* Prepare SNS command request. */
939 sns_cmd
= qla2x00_prep_sns_cmd(ha
, GNN_ID_CMD
,
940 GNN_ID_SNS_SCMD_LEN
, GNN_ID_SNS_DATA_SIZE
);
942 /* Prepare SNS command arguments -- port_id. */
943 sns_cmd
->p
.cmd
.param
[0] = list
[i
].d_id
.b
.al_pa
;
944 sns_cmd
->p
.cmd
.param
[1] = list
[i
].d_id
.b
.area
;
945 sns_cmd
->p
.cmd
.param
[2] = list
[i
].d_id
.b
.domain
;
947 /* Execute SNS command. */
948 rval
= qla2x00_send_sns(ha
, ha
->sns_cmd_dma
,
949 GNN_ID_SNS_CMD_SIZE
/ 2, sizeof(struct sns_cmd_pkt
));
950 if (rval
!= QLA_SUCCESS
) {
952 DEBUG2_3(printk("scsi(%ld): GNN_ID Send SNS failed "
953 "(%d).\n", ha
->host_no
, rval
));
954 } else if (sns_cmd
->p
.gnn_data
[8] != 0x80 ||
955 sns_cmd
->p
.gnn_data
[9] != 0x02) {
956 DEBUG2_3(printk("scsi(%ld): GNN_ID failed, rejected "
957 "request, gnn_rsp:\n", ha
->host_no
));
958 DEBUG2_3(qla2x00_dump_buffer(sns_cmd
->p
.gnn_data
, 16));
959 rval
= QLA_FUNCTION_FAILED
;
962 memcpy(list
[i
].node_name
, &sns_cmd
->p
.gnn_data
[16],
965 DEBUG2_3(printk("scsi(%ld): GID_PT entry - "
966 "nn %02x%02x%02x%02x%02x%02x%02x%02x "
967 "pn %02x%02x%02x%02x%02x%02x%02x%02x "
968 "portid=%02x%02x%02x.\n",
970 list
[i
].node_name
[0], list
[i
].node_name
[1],
971 list
[i
].node_name
[2], list
[i
].node_name
[3],
972 list
[i
].node_name
[4], list
[i
].node_name
[5],
973 list
[i
].node_name
[6], list
[i
].node_name
[7],
974 list
[i
].port_name
[0], list
[i
].port_name
[1],
975 list
[i
].port_name
[2], list
[i
].port_name
[3],
976 list
[i
].port_name
[4], list
[i
].port_name
[5],
977 list
[i
].port_name
[6], list
[i
].port_name
[7],
978 list
[i
].d_id
.b
.domain
, list
[i
].d_id
.b
.area
,
979 list
[i
].d_id
.b
.al_pa
));
982 /* Last device exit. */
983 if (list
[i
].d_id
.b
.rsvd_1
!= 0)
991 * qla2x00_snd_rft_id() - SNS Register FC-4 TYPEs (RFT_ID) supported by the HBA.
994 * This command uses the old Exectute SNS Command mailbox routine.
996 * Returns 0 on success.
999 qla2x00_sns_rft_id(scsi_qla_host_t
*ha
)
1003 struct sns_cmd_pkt
*sns_cmd
;
1006 /* Prepare SNS command request. */
1007 sns_cmd
= qla2x00_prep_sns_cmd(ha
, RFT_ID_CMD
, RFT_ID_SNS_SCMD_LEN
,
1008 RFT_ID_SNS_DATA_SIZE
);
1010 /* Prepare SNS command arguments -- port_id, FC-4 types */
1011 sns_cmd
->p
.cmd
.param
[0] = ha
->d_id
.b
.al_pa
;
1012 sns_cmd
->p
.cmd
.param
[1] = ha
->d_id
.b
.area
;
1013 sns_cmd
->p
.cmd
.param
[2] = ha
->d_id
.b
.domain
;
1015 sns_cmd
->p
.cmd
.param
[5] = 0x01; /* FCP-3 */
1017 /* Execute SNS command. */
1018 rval
= qla2x00_send_sns(ha
, ha
->sns_cmd_dma
, RFT_ID_SNS_CMD_SIZE
/ 2,
1019 sizeof(struct sns_cmd_pkt
));
1020 if (rval
!= QLA_SUCCESS
) {
1022 DEBUG2_3(printk("scsi(%ld): RFT_ID Send SNS failed (%d).\n",
1023 ha
->host_no
, rval
));
1024 } else if (sns_cmd
->p
.rft_data
[8] != 0x80 ||
1025 sns_cmd
->p
.rft_data
[9] != 0x02) {
1026 DEBUG2_3(printk("scsi(%ld): RFT_ID failed, rejected request, "
1027 "rft_rsp:\n", ha
->host_no
));
1028 DEBUG2_3(qla2x00_dump_buffer(sns_cmd
->p
.rft_data
, 16));
1029 rval
= QLA_FUNCTION_FAILED
;
1031 DEBUG2(printk("scsi(%ld): RFT_ID exiting normally.\n",
1039 * qla2x00_sns_rnn_id() - SNS Register Node Name (RNN_ID) of the HBA.
1043 * This command uses the old Exectute SNS Command mailbox routine.
1045 * Returns 0 on success.
1048 qla2x00_sns_rnn_id(scsi_qla_host_t
*ha
)
1052 struct sns_cmd_pkt
*sns_cmd
;
1055 /* Prepare SNS command request. */
1056 sns_cmd
= qla2x00_prep_sns_cmd(ha
, RNN_ID_CMD
, RNN_ID_SNS_SCMD_LEN
,
1057 RNN_ID_SNS_DATA_SIZE
);
1059 /* Prepare SNS command arguments -- port_id, nodename. */
1060 sns_cmd
->p
.cmd
.param
[0] = ha
->d_id
.b
.al_pa
;
1061 sns_cmd
->p
.cmd
.param
[1] = ha
->d_id
.b
.area
;
1062 sns_cmd
->p
.cmd
.param
[2] = ha
->d_id
.b
.domain
;
1064 sns_cmd
->p
.cmd
.param
[4] = ha
->node_name
[7];
1065 sns_cmd
->p
.cmd
.param
[5] = ha
->node_name
[6];
1066 sns_cmd
->p
.cmd
.param
[6] = ha
->node_name
[5];
1067 sns_cmd
->p
.cmd
.param
[7] = ha
->node_name
[4];
1068 sns_cmd
->p
.cmd
.param
[8] = ha
->node_name
[3];
1069 sns_cmd
->p
.cmd
.param
[9] = ha
->node_name
[2];
1070 sns_cmd
->p
.cmd
.param
[10] = ha
->node_name
[1];
1071 sns_cmd
->p
.cmd
.param
[11] = ha
->node_name
[0];
1073 /* Execute SNS command. */
1074 rval
= qla2x00_send_sns(ha
, ha
->sns_cmd_dma
, RNN_ID_SNS_CMD_SIZE
/ 2,
1075 sizeof(struct sns_cmd_pkt
));
1076 if (rval
!= QLA_SUCCESS
) {
1078 DEBUG2_3(printk("scsi(%ld): RNN_ID Send SNS failed (%d).\n",
1079 ha
->host_no
, rval
));
1080 } else if (sns_cmd
->p
.rnn_data
[8] != 0x80 ||
1081 sns_cmd
->p
.rnn_data
[9] != 0x02) {
1082 DEBUG2_3(printk("scsi(%ld): RNN_ID failed, rejected request, "
1083 "rnn_rsp:\n", ha
->host_no
));
1084 DEBUG2_3(qla2x00_dump_buffer(sns_cmd
->p
.rnn_data
, 16));
1085 rval
= QLA_FUNCTION_FAILED
;
1087 DEBUG2(printk("scsi(%ld): RNN_ID exiting normally.\n",
1095 * qla2x00_mgmt_svr_login() - Login to fabric Managment Service.
1098 * Returns 0 on success.
1101 qla2x00_mgmt_svr_login(scsi_qla_host_t
*ha
)
1104 uint16_t mb
[MAILBOX_REGISTER_COUNT
];
1107 if (ha
->flags
.management_server_logged_in
)
1110 ha
->isp_ops
->fabric_login(ha
, ha
->mgmt_svr_loop_id
, 0xff, 0xff, 0xfa,
1112 if (mb
[0] != MBS_COMMAND_COMPLETE
) {
1113 DEBUG2_13(printk("%s(%ld): Failed MANAGEMENT_SERVER login: "
1114 "loop_id=%x mb[0]=%x mb[1]=%x mb[2]=%x mb[6]=%x mb[7]=%x\n",
1115 __func__
, ha
->host_no
, ha
->mgmt_svr_loop_id
, mb
[0], mb
[1],
1116 mb
[2], mb
[6], mb
[7]));
1117 ret
= QLA_FUNCTION_FAILED
;
1119 ha
->flags
.management_server_logged_in
= 1;
1125 * qla2x00_prep_ms_fdmi_iocb() - Prepare common MS IOCB fields for FDMI query.
1127 * @req_size: request size in bytes
1128 * @rsp_size: response size in bytes
1130 * Returns a pointer to the @ha's ms_iocb.
1133 qla2x00_prep_ms_fdmi_iocb(scsi_qla_host_t
*ha
, uint32_t req_size
,
1136 ms_iocb_entry_t
*ms_pkt
;
1138 ms_pkt
= ha
->ms_iocb
;
1139 memset(ms_pkt
, 0, sizeof(ms_iocb_entry_t
));
1141 ms_pkt
->entry_type
= MS_IOCB_TYPE
;
1142 ms_pkt
->entry_count
= 1;
1143 SET_TARGET_ID(ha
, ms_pkt
->loop_id
, ha
->mgmt_svr_loop_id
);
1144 ms_pkt
->control_flags
= __constant_cpu_to_le16(CF_READ
| CF_HEAD_TAG
);
1145 ms_pkt
->timeout
= __constant_cpu_to_le16(59);
1146 ms_pkt
->cmd_dsd_count
= __constant_cpu_to_le16(1);
1147 ms_pkt
->total_dsd_count
= __constant_cpu_to_le16(2);
1148 ms_pkt
->rsp_bytecount
= cpu_to_le32(rsp_size
);
1149 ms_pkt
->req_bytecount
= cpu_to_le32(req_size
);
1151 ms_pkt
->dseg_req_address
[0] = cpu_to_le32(LSD(ha
->ct_sns_dma
));
1152 ms_pkt
->dseg_req_address
[1] = cpu_to_le32(MSD(ha
->ct_sns_dma
));
1153 ms_pkt
->dseg_req_length
= ms_pkt
->req_bytecount
;
1155 ms_pkt
->dseg_rsp_address
[0] = cpu_to_le32(LSD(ha
->ct_sns_dma
));
1156 ms_pkt
->dseg_rsp_address
[1] = cpu_to_le32(MSD(ha
->ct_sns_dma
));
1157 ms_pkt
->dseg_rsp_length
= ms_pkt
->rsp_bytecount
;
1163 * qla24xx_prep_ms_fdmi_iocb() - Prepare common MS IOCB fields for FDMI query.
1165 * @req_size: request size in bytes
1166 * @rsp_size: response size in bytes
1168 * Returns a pointer to the @ha's ms_iocb.
1171 qla24xx_prep_ms_fdmi_iocb(scsi_qla_host_t
*ha
, uint32_t req_size
,
1174 struct ct_entry_24xx
*ct_pkt
;
1176 ct_pkt
= (struct ct_entry_24xx
*)ha
->ms_iocb
;
1177 memset(ct_pkt
, 0, sizeof(struct ct_entry_24xx
));
1179 ct_pkt
->entry_type
= CT_IOCB_TYPE
;
1180 ct_pkt
->entry_count
= 1;
1181 ct_pkt
->nport_handle
= cpu_to_le16(ha
->mgmt_svr_loop_id
);
1182 ct_pkt
->timeout
= __constant_cpu_to_le16(59);
1183 ct_pkt
->cmd_dsd_count
= __constant_cpu_to_le16(1);
1184 ct_pkt
->rsp_dsd_count
= __constant_cpu_to_le16(1);
1185 ct_pkt
->rsp_byte_count
= cpu_to_le32(rsp_size
);
1186 ct_pkt
->cmd_byte_count
= cpu_to_le32(req_size
);
1188 ct_pkt
->dseg_0_address
[0] = cpu_to_le32(LSD(ha
->ct_sns_dma
));
1189 ct_pkt
->dseg_0_address
[1] = cpu_to_le32(MSD(ha
->ct_sns_dma
));
1190 ct_pkt
->dseg_0_len
= ct_pkt
->cmd_byte_count
;
1192 ct_pkt
->dseg_1_address
[0] = cpu_to_le32(LSD(ha
->ct_sns_dma
));
1193 ct_pkt
->dseg_1_address
[1] = cpu_to_le32(MSD(ha
->ct_sns_dma
));
1194 ct_pkt
->dseg_1_len
= ct_pkt
->rsp_byte_count
;
1195 ct_pkt
->vp_index
= ha
->vp_idx
;
1200 static inline ms_iocb_entry_t
*
1201 qla2x00_update_ms_fdmi_iocb(scsi_qla_host_t
*ha
, uint32_t req_size
)
1203 ms_iocb_entry_t
*ms_pkt
= ha
->ms_iocb
;
1204 struct ct_entry_24xx
*ct_pkt
= (struct ct_entry_24xx
*)ha
->ms_iocb
;
1206 if (IS_FWI2_CAPABLE(ha
)) {
1207 ct_pkt
->cmd_byte_count
= cpu_to_le32(req_size
);
1208 ct_pkt
->dseg_0_len
= ct_pkt
->cmd_byte_count
;
1210 ms_pkt
->req_bytecount
= cpu_to_le32(req_size
);
1211 ms_pkt
->dseg_req_length
= ms_pkt
->req_bytecount
;
1218 * qla2x00_prep_ct_req() - Prepare common CT request fields for SNS query.
1219 * @ct_req: CT request buffer
1221 * @rsp_size: response size in bytes
1223 * Returns a pointer to the intitialized @ct_req.
1225 static inline struct ct_sns_req
*
1226 qla2x00_prep_ct_fdmi_req(struct ct_sns_req
*ct_req
, uint16_t cmd
,
1229 memset(ct_req
, 0, sizeof(struct ct_sns_pkt
));
1231 ct_req
->header
.revision
= 0x01;
1232 ct_req
->header
.gs_type
= 0xFA;
1233 ct_req
->header
.gs_subtype
= 0x10;
1234 ct_req
->command
= cpu_to_be16(cmd
);
1235 ct_req
->max_rsp_size
= cpu_to_be16((rsp_size
- 16) / 4);
1241 * qla2x00_fdmi_rhba() -
1244 * Returns 0 on success.
1247 qla2x00_fdmi_rhba(scsi_qla_host_t
*ha
)
1252 ms_iocb_entry_t
*ms_pkt
;
1253 struct ct_sns_req
*ct_req
;
1254 struct ct_sns_rsp
*ct_rsp
;
1256 struct ct_fdmi_hba_attr
*eiter
;
1259 /* Prepare common MS IOCB */
1260 /* Request size adjusted after CT preparation */
1261 ms_pkt
= ha
->isp_ops
->prep_ms_fdmi_iocb(ha
, 0, RHBA_RSP_SIZE
);
1263 /* Prepare CT request */
1264 ct_req
= qla2x00_prep_ct_fdmi_req(&ha
->ct_sns
->p
.req
, RHBA_CMD
,
1266 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
1268 /* Prepare FDMI command arguments -- attribute block, attributes. */
1269 memcpy(ct_req
->req
.rhba
.hba_identifier
, ha
->port_name
, WWN_SIZE
);
1270 ct_req
->req
.rhba
.entry_count
= __constant_cpu_to_be32(1);
1271 memcpy(ct_req
->req
.rhba
.port_name
, ha
->port_name
, WWN_SIZE
);
1272 size
= 2 * WWN_SIZE
+ 4 + 4;
1275 ct_req
->req
.rhba
.attrs
.count
=
1276 __constant_cpu_to_be32(FDMI_HBA_ATTR_COUNT
);
1277 entries
= ct_req
->req
.rhba
.hba_identifier
;
1280 eiter
= (struct ct_fdmi_hba_attr
*) (entries
+ size
);
1281 eiter
->type
= __constant_cpu_to_be16(FDMI_HBA_NODE_NAME
);
1282 eiter
->len
= __constant_cpu_to_be16(4 + WWN_SIZE
);
1283 memcpy(eiter
->a
.node_name
, ha
->node_name
, WWN_SIZE
);
1284 size
+= 4 + WWN_SIZE
;
1286 DEBUG13(printk("%s(%ld): NODENAME=%02x%02x%02x%02x%02x%02x%02x%02x.\n",
1287 __func__
, ha
->host_no
,
1288 eiter
->a
.node_name
[0], eiter
->a
.node_name
[1], eiter
->a
.node_name
[2],
1289 eiter
->a
.node_name
[3], eiter
->a
.node_name
[4], eiter
->a
.node_name
[5],
1290 eiter
->a
.node_name
[6], eiter
->a
.node_name
[7]));
1293 eiter
= (struct ct_fdmi_hba_attr
*) (entries
+ size
);
1294 eiter
->type
= __constant_cpu_to_be16(FDMI_HBA_MANUFACTURER
);
1295 strcpy(eiter
->a
.manufacturer
, "QLogic Corporation");
1296 alen
= strlen(eiter
->a
.manufacturer
);
1297 alen
+= (alen
& 3) ? (4 - (alen
& 3)) : 4;
1298 eiter
->len
= cpu_to_be16(4 + alen
);
1301 DEBUG13(printk("%s(%ld): MANUFACTURER=%s.\n", __func__
, ha
->host_no
,
1302 eiter
->a
.manufacturer
));
1304 /* Serial number. */
1305 eiter
= (struct ct_fdmi_hba_attr
*) (entries
+ size
);
1306 eiter
->type
= __constant_cpu_to_be16(FDMI_HBA_SERIAL_NUMBER
);
1307 sn
= ((ha
->serial0
& 0x1f) << 16) | (ha
->serial2
<< 8) | ha
->serial1
;
1308 sprintf(eiter
->a
.serial_num
, "%c%05d", 'A' + sn
/ 100000, sn
% 100000);
1309 alen
= strlen(eiter
->a
.serial_num
);
1310 alen
+= (alen
& 3) ? (4 - (alen
& 3)) : 4;
1311 eiter
->len
= cpu_to_be16(4 + alen
);
1314 DEBUG13(printk("%s(%ld): SERIALNO=%s.\n", __func__
, ha
->host_no
,
1315 eiter
->a
.serial_num
));
1318 eiter
= (struct ct_fdmi_hba_attr
*) (entries
+ size
);
1319 eiter
->type
= __constant_cpu_to_be16(FDMI_HBA_MODEL
);
1320 strcpy(eiter
->a
.model
, ha
->model_number
);
1321 alen
= strlen(eiter
->a
.model
);
1322 alen
+= (alen
& 3) ? (4 - (alen
& 3)) : 4;
1323 eiter
->len
= cpu_to_be16(4 + alen
);
1326 DEBUG13(printk("%s(%ld): MODEL_NAME=%s.\n", __func__
, ha
->host_no
,
1329 /* Model description. */
1330 eiter
= (struct ct_fdmi_hba_attr
*) (entries
+ size
);
1331 eiter
->type
= __constant_cpu_to_be16(FDMI_HBA_MODEL_DESCRIPTION
);
1333 strncpy(eiter
->a
.model_desc
, ha
->model_desc
, 80);
1334 alen
= strlen(eiter
->a
.model_desc
);
1335 alen
+= (alen
& 3) ? (4 - (alen
& 3)) : 4;
1336 eiter
->len
= cpu_to_be16(4 + alen
);
1339 DEBUG13(printk("%s(%ld): MODEL_DESC=%s.\n", __func__
, ha
->host_no
,
1340 eiter
->a
.model_desc
));
1342 /* Hardware version. */
1343 eiter
= (struct ct_fdmi_hba_attr
*) (entries
+ size
);
1344 eiter
->type
= __constant_cpu_to_be16(FDMI_HBA_HARDWARE_VERSION
);
1345 strcpy(eiter
->a
.hw_version
, ha
->adapter_id
);
1346 alen
= strlen(eiter
->a
.hw_version
);
1347 alen
+= (alen
& 3) ? (4 - (alen
& 3)) : 4;
1348 eiter
->len
= cpu_to_be16(4 + alen
);
1351 DEBUG13(printk("%s(%ld): HARDWAREVER=%s.\n", __func__
, ha
->host_no
,
1352 eiter
->a
.hw_version
));
1354 /* Driver version. */
1355 eiter
= (struct ct_fdmi_hba_attr
*) (entries
+ size
);
1356 eiter
->type
= __constant_cpu_to_be16(FDMI_HBA_DRIVER_VERSION
);
1357 strcpy(eiter
->a
.driver_version
, qla2x00_version_str
);
1358 alen
= strlen(eiter
->a
.driver_version
);
1359 alen
+= (alen
& 3) ? (4 - (alen
& 3)) : 4;
1360 eiter
->len
= cpu_to_be16(4 + alen
);
1363 DEBUG13(printk("%s(%ld): DRIVERVER=%s.\n", __func__
, ha
->host_no
,
1364 eiter
->a
.driver_version
));
1366 /* Option ROM version. */
1367 eiter
= (struct ct_fdmi_hba_attr
*) (entries
+ size
);
1368 eiter
->type
= __constant_cpu_to_be16(FDMI_HBA_OPTION_ROM_VERSION
);
1369 strcpy(eiter
->a
.orom_version
, "0.00");
1370 alen
= strlen(eiter
->a
.orom_version
);
1371 alen
+= (alen
& 3) ? (4 - (alen
& 3)) : 4;
1372 eiter
->len
= cpu_to_be16(4 + alen
);
1375 DEBUG13(printk("%s(%ld): OPTROMVER=%s.\n", __func__
, ha
->host_no
,
1376 eiter
->a
.orom_version
));
1378 /* Firmware version */
1379 eiter
= (struct ct_fdmi_hba_attr
*) (entries
+ size
);
1380 eiter
->type
= __constant_cpu_to_be16(FDMI_HBA_FIRMWARE_VERSION
);
1381 ha
->isp_ops
->fw_version_str(ha
, eiter
->a
.fw_version
);
1382 alen
= strlen(eiter
->a
.fw_version
);
1383 alen
+= (alen
& 3) ? (4 - (alen
& 3)) : 4;
1384 eiter
->len
= cpu_to_be16(4 + alen
);
1387 DEBUG13(printk("%s(%ld): FIRMWAREVER=%s.\n", __func__
, ha
->host_no
,
1388 eiter
->a
.fw_version
));
1390 /* Update MS request size. */
1391 qla2x00_update_ms_fdmi_iocb(ha
, size
+ 16);
1393 DEBUG13(printk("%s(%ld): RHBA identifier="
1394 "%02x%02x%02x%02x%02x%02x%02x%02x size=%d.\n", __func__
,
1395 ha
->host_no
, ct_req
->req
.rhba
.hba_identifier
[0],
1396 ct_req
->req
.rhba
.hba_identifier
[1],
1397 ct_req
->req
.rhba
.hba_identifier
[2],
1398 ct_req
->req
.rhba
.hba_identifier
[3],
1399 ct_req
->req
.rhba
.hba_identifier
[4],
1400 ct_req
->req
.rhba
.hba_identifier
[5],
1401 ct_req
->req
.rhba
.hba_identifier
[6],
1402 ct_req
->req
.rhba
.hba_identifier
[7], size
));
1403 DEBUG13(qla2x00_dump_buffer(entries
, size
));
1405 /* Execute MS IOCB */
1406 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
1407 sizeof(ms_iocb_entry_t
));
1408 if (rval
!= QLA_SUCCESS
) {
1410 DEBUG2_3(printk("scsi(%ld): RHBA issue IOCB failed (%d).\n",
1411 ha
->host_no
, rval
));
1412 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
, "RHBA") !=
1414 rval
= QLA_FUNCTION_FAILED
;
1415 if (ct_rsp
->header
.reason_code
== CT_REASON_CANNOT_PERFORM
&&
1416 ct_rsp
->header
.explanation_code
==
1417 CT_EXPL_ALREADY_REGISTERED
) {
1418 DEBUG2_13(printk("%s(%ld): HBA already registered.\n",
1419 __func__
, ha
->host_no
));
1420 rval
= QLA_ALREADY_REGISTERED
;
1423 DEBUG2(printk("scsi(%ld): RHBA exiting normally.\n",
1431 * qla2x00_fdmi_dhba() -
1434 * Returns 0 on success.
1437 qla2x00_fdmi_dhba(scsi_qla_host_t
*ha
)
1441 ms_iocb_entry_t
*ms_pkt
;
1442 struct ct_sns_req
*ct_req
;
1443 struct ct_sns_rsp
*ct_rsp
;
1446 /* Prepare common MS IOCB */
1447 ms_pkt
= ha
->isp_ops
->prep_ms_fdmi_iocb(ha
, DHBA_REQ_SIZE
,
1450 /* Prepare CT request */
1451 ct_req
= qla2x00_prep_ct_fdmi_req(&ha
->ct_sns
->p
.req
, DHBA_CMD
,
1453 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
1455 /* Prepare FDMI command arguments -- portname. */
1456 memcpy(ct_req
->req
.dhba
.port_name
, ha
->port_name
, WWN_SIZE
);
1458 DEBUG13(printk("%s(%ld): DHBA portname="
1459 "%02x%02x%02x%02x%02x%02x%02x%02x.\n", __func__
, ha
->host_no
,
1460 ct_req
->req
.dhba
.port_name
[0], ct_req
->req
.dhba
.port_name
[1],
1461 ct_req
->req
.dhba
.port_name
[2], ct_req
->req
.dhba
.port_name
[3],
1462 ct_req
->req
.dhba
.port_name
[4], ct_req
->req
.dhba
.port_name
[5],
1463 ct_req
->req
.dhba
.port_name
[6], ct_req
->req
.dhba
.port_name
[7]));
1465 /* Execute MS IOCB */
1466 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
1467 sizeof(ms_iocb_entry_t
));
1468 if (rval
!= QLA_SUCCESS
) {
1470 DEBUG2_3(printk("scsi(%ld): DHBA issue IOCB failed (%d).\n",
1471 ha
->host_no
, rval
));
1472 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
, "DHBA") !=
1474 rval
= QLA_FUNCTION_FAILED
;
1476 DEBUG2(printk("scsi(%ld): DHBA exiting normally.\n",
1484 * qla2x00_fdmi_rpa() -
1487 * Returns 0 on success.
1490 qla2x00_fdmi_rpa(scsi_qla_host_t
*ha
)
1493 uint32_t size
, max_frame_size
;
1495 ms_iocb_entry_t
*ms_pkt
;
1496 struct ct_sns_req
*ct_req
;
1497 struct ct_sns_rsp
*ct_rsp
;
1499 struct ct_fdmi_port_attr
*eiter
;
1500 struct init_cb_24xx
*icb24
= (struct init_cb_24xx
*)ha
->init_cb
;
1503 /* Prepare common MS IOCB */
1504 /* Request size adjusted after CT preparation */
1505 ms_pkt
= ha
->isp_ops
->prep_ms_fdmi_iocb(ha
, 0, RPA_RSP_SIZE
);
1507 /* Prepare CT request */
1508 ct_req
= qla2x00_prep_ct_fdmi_req(&ha
->ct_sns
->p
.req
, RPA_CMD
,
1510 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
1512 /* Prepare FDMI command arguments -- attribute block, attributes. */
1513 memcpy(ct_req
->req
.rpa
.port_name
, ha
->port_name
, WWN_SIZE
);
1514 size
= WWN_SIZE
+ 4;
1517 ct_req
->req
.rpa
.attrs
.count
=
1518 __constant_cpu_to_be32(FDMI_PORT_ATTR_COUNT
);
1519 entries
= ct_req
->req
.rpa
.port_name
;
1522 eiter
= (struct ct_fdmi_port_attr
*) (entries
+ size
);
1523 eiter
->type
= __constant_cpu_to_be16(FDMI_PORT_FC4_TYPES
);
1524 eiter
->len
= __constant_cpu_to_be16(4 + 32);
1525 eiter
->a
.fc4_types
[2] = 0x01;
1528 DEBUG13(printk("%s(%ld): FC4_TYPES=%02x %02x.\n", __func__
, ha
->host_no
,
1529 eiter
->a
.fc4_types
[2], eiter
->a
.fc4_types
[1]));
1531 /* Supported speed. */
1532 eiter
= (struct ct_fdmi_port_attr
*) (entries
+ size
);
1533 eiter
->type
= __constant_cpu_to_be16(FDMI_PORT_SUPPORT_SPEED
);
1534 eiter
->len
= __constant_cpu_to_be16(4 + 4);
1536 eiter
->a
.sup_speed
= __constant_cpu_to_be32(
1537 FDMI_PORT_SPEED_1GB
|FDMI_PORT_SPEED_2GB
|
1538 FDMI_PORT_SPEED_4GB
|FDMI_PORT_SPEED_8GB
);
1539 else if (IS_QLA24XX(ha
) || IS_QLA54XX(ha
))
1540 eiter
->a
.sup_speed
= __constant_cpu_to_be32(
1541 FDMI_PORT_SPEED_1GB
|FDMI_PORT_SPEED_2GB
|
1542 FDMI_PORT_SPEED_4GB
);
1543 else if (IS_QLA23XX(ha
))
1544 eiter
->a
.sup_speed
=__constant_cpu_to_be32(
1545 FDMI_PORT_SPEED_1GB
|FDMI_PORT_SPEED_2GB
);
1547 eiter
->a
.sup_speed
= __constant_cpu_to_be32(
1548 FDMI_PORT_SPEED_1GB
);
1551 DEBUG13(printk("%s(%ld): SUPPORTED_SPEED=%x.\n", __func__
, ha
->host_no
,
1552 eiter
->a
.sup_speed
));
1554 /* Current speed. */
1555 eiter
= (struct ct_fdmi_port_attr
*) (entries
+ size
);
1556 eiter
->type
= __constant_cpu_to_be16(FDMI_PORT_CURRENT_SPEED
);
1557 eiter
->len
= __constant_cpu_to_be16(4 + 4);
1558 switch (ha
->link_data_rate
) {
1559 case PORT_SPEED_1GB
:
1560 eiter
->a
.cur_speed
=
1561 __constant_cpu_to_be32(FDMI_PORT_SPEED_1GB
);
1563 case PORT_SPEED_2GB
:
1564 eiter
->a
.cur_speed
=
1565 __constant_cpu_to_be32(FDMI_PORT_SPEED_2GB
);
1567 case PORT_SPEED_4GB
:
1568 eiter
->a
.cur_speed
=
1569 __constant_cpu_to_be32(FDMI_PORT_SPEED_4GB
);
1571 case PORT_SPEED_8GB
:
1572 eiter
->a
.cur_speed
=
1573 __constant_cpu_to_be32(FDMI_PORT_SPEED_8GB
);
1576 eiter
->a
.cur_speed
=
1577 __constant_cpu_to_be32(FDMI_PORT_SPEED_UNKNOWN
);
1582 DEBUG13(printk("%s(%ld): CURRENT_SPEED=%x.\n", __func__
, ha
->host_no
,
1583 eiter
->a
.cur_speed
));
1585 /* Max frame size. */
1586 eiter
= (struct ct_fdmi_port_attr
*) (entries
+ size
);
1587 eiter
->type
= __constant_cpu_to_be16(FDMI_PORT_MAX_FRAME_SIZE
);
1588 eiter
->len
= __constant_cpu_to_be16(4 + 4);
1589 max_frame_size
= IS_FWI2_CAPABLE(ha
) ?
1590 (uint32_t) icb24
->frame_payload_size
:
1591 (uint32_t) ha
->init_cb
->frame_payload_size
;
1592 eiter
->a
.max_frame_size
= cpu_to_be32(max_frame_size
);
1595 DEBUG13(printk("%s(%ld): MAX_FRAME_SIZE=%x.\n", __func__
, ha
->host_no
,
1596 eiter
->a
.max_frame_size
));
1598 /* OS device name. */
1599 eiter
= (struct ct_fdmi_port_attr
*) (entries
+ size
);
1600 eiter
->type
= __constant_cpu_to_be16(FDMI_PORT_OS_DEVICE_NAME
);
1601 sprintf(eiter
->a
.os_dev_name
, "/proc/scsi/qla2xxx/%ld", ha
->host_no
);
1602 alen
= strlen(eiter
->a
.os_dev_name
);
1603 alen
+= (alen
& 3) ? (4 - (alen
& 3)) : 4;
1604 eiter
->len
= cpu_to_be16(4 + alen
);
1607 DEBUG13(printk("%s(%ld): OS_DEVICE_NAME=%s.\n", __func__
, ha
->host_no
,
1608 eiter
->a
.os_dev_name
));
1611 if (strlen(fc_host_system_hostname(ha
->host
))) {
1612 eiter
= (struct ct_fdmi_port_attr
*) (entries
+ size
);
1613 eiter
->type
= __constant_cpu_to_be16(FDMI_PORT_HOST_NAME
);
1614 snprintf(eiter
->a
.host_name
, sizeof(eiter
->a
.host_name
),
1615 "%s", fc_host_system_hostname(ha
->host
));
1616 alen
= strlen(eiter
->a
.host_name
);
1617 alen
+= (alen
& 3) ? (4 - (alen
& 3)) : 4;
1618 eiter
->len
= cpu_to_be16(4 + alen
);
1621 DEBUG13(printk("%s(%ld): HOSTNAME=%s.\n", __func__
,
1622 ha
->host_no
, eiter
->a
.host_name
));
1625 /* Update MS request size. */
1626 qla2x00_update_ms_fdmi_iocb(ha
, size
+ 16);
1628 DEBUG13(printk("%s(%ld): RPA portname="
1629 "%02x%02x%02x%02x%02x%02x%02x%02x size=%d.\n", __func__
,
1630 ha
->host_no
, ct_req
->req
.rpa
.port_name
[0],
1631 ct_req
->req
.rpa
.port_name
[1], ct_req
->req
.rpa
.port_name
[2],
1632 ct_req
->req
.rpa
.port_name
[3], ct_req
->req
.rpa
.port_name
[4],
1633 ct_req
->req
.rpa
.port_name
[5], ct_req
->req
.rpa
.port_name
[6],
1634 ct_req
->req
.rpa
.port_name
[7], size
));
1635 DEBUG13(qla2x00_dump_buffer(entries
, size
));
1637 /* Execute MS IOCB */
1638 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
1639 sizeof(ms_iocb_entry_t
));
1640 if (rval
!= QLA_SUCCESS
) {
1642 DEBUG2_3(printk("scsi(%ld): RPA issue IOCB failed (%d).\n",
1643 ha
->host_no
, rval
));
1644 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
, "RPA") !=
1646 rval
= QLA_FUNCTION_FAILED
;
1648 DEBUG2(printk("scsi(%ld): RPA exiting normally.\n",
1656 * qla2x00_fdmi_register() -
1659 * Returns 0 on success.
1662 qla2x00_fdmi_register(scsi_qla_host_t
*ha
)
1666 rval
= qla2x00_mgmt_svr_login(ha
);
1670 rval
= qla2x00_fdmi_rhba(ha
);
1672 if (rval
!= QLA_ALREADY_REGISTERED
)
1675 rval
= qla2x00_fdmi_dhba(ha
);
1679 rval
= qla2x00_fdmi_rhba(ha
);
1683 rval
= qla2x00_fdmi_rpa(ha
);
1689 * qla2x00_gfpn_id() - SNS Get Fabric Port Name (GFPN_ID) query.
1691 * @list: switch info entries to populate
1693 * Returns 0 on success.
1696 qla2x00_gfpn_id(scsi_qla_host_t
*ha
, sw_info_t
*list
)
1701 ms_iocb_entry_t
*ms_pkt
;
1702 struct ct_sns_req
*ct_req
;
1703 struct ct_sns_rsp
*ct_rsp
;
1705 if (!IS_IIDMA_CAPABLE(ha
))
1706 return QLA_FUNCTION_FAILED
;
1708 for (i
= 0; i
< MAX_FIBRE_DEVICES
; i
++) {
1710 memset(list
[i
].fabric_port_name
, 0, WWN_SIZE
);
1712 /* Prepare common MS IOCB */
1713 ms_pkt
= ha
->isp_ops
->prep_ms_iocb(ha
, GFPN_ID_REQ_SIZE
,
1716 /* Prepare CT request */
1717 ct_req
= qla2x00_prep_ct_req(&ha
->ct_sns
->p
.req
, GFPN_ID_CMD
,
1719 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
1721 /* Prepare CT arguments -- port_id */
1722 ct_req
->req
.port_id
.port_id
[0] = list
[i
].d_id
.b
.domain
;
1723 ct_req
->req
.port_id
.port_id
[1] = list
[i
].d_id
.b
.area
;
1724 ct_req
->req
.port_id
.port_id
[2] = list
[i
].d_id
.b
.al_pa
;
1726 /* Execute MS IOCB */
1727 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
1728 sizeof(ms_iocb_entry_t
));
1729 if (rval
!= QLA_SUCCESS
) {
1731 DEBUG2_3(printk("scsi(%ld): GFPN_ID issue IOCB "
1732 "failed (%d).\n", ha
->host_no
, rval
));
1733 } else if (qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
,
1734 "GFPN_ID") != QLA_SUCCESS
) {
1735 rval
= QLA_FUNCTION_FAILED
;
1737 /* Save fabric portname */
1738 memcpy(list
[i
].fabric_port_name
,
1739 ct_rsp
->rsp
.gfpn_id
.port_name
, WWN_SIZE
);
1742 /* Last device exit. */
1743 if (list
[i
].d_id
.b
.rsvd_1
!= 0)
1750 static inline void *
1751 qla24xx_prep_ms_fm_iocb(scsi_qla_host_t
*ha
, uint32_t req_size
,
1754 struct ct_entry_24xx
*ct_pkt
;
1756 ct_pkt
= (struct ct_entry_24xx
*)ha
->ms_iocb
;
1757 memset(ct_pkt
, 0, sizeof(struct ct_entry_24xx
));
1759 ct_pkt
->entry_type
= CT_IOCB_TYPE
;
1760 ct_pkt
->entry_count
= 1;
1761 ct_pkt
->nport_handle
= cpu_to_le16(ha
->mgmt_svr_loop_id
);
1762 ct_pkt
->timeout
= __constant_cpu_to_le16(59);
1763 ct_pkt
->cmd_dsd_count
= __constant_cpu_to_le16(1);
1764 ct_pkt
->rsp_dsd_count
= __constant_cpu_to_le16(1);
1765 ct_pkt
->rsp_byte_count
= cpu_to_le32(rsp_size
);
1766 ct_pkt
->cmd_byte_count
= cpu_to_le32(req_size
);
1768 ct_pkt
->dseg_0_address
[0] = cpu_to_le32(LSD(ha
->ct_sns_dma
));
1769 ct_pkt
->dseg_0_address
[1] = cpu_to_le32(MSD(ha
->ct_sns_dma
));
1770 ct_pkt
->dseg_0_len
= ct_pkt
->cmd_byte_count
;
1772 ct_pkt
->dseg_1_address
[0] = cpu_to_le32(LSD(ha
->ct_sns_dma
));
1773 ct_pkt
->dseg_1_address
[1] = cpu_to_le32(MSD(ha
->ct_sns_dma
));
1774 ct_pkt
->dseg_1_len
= ct_pkt
->rsp_byte_count
;
1775 ct_pkt
->vp_index
= ha
->vp_idx
;
1781 static inline struct ct_sns_req
*
1782 qla24xx_prep_ct_fm_req(struct ct_sns_req
*ct_req
, uint16_t cmd
,
1785 memset(ct_req
, 0, sizeof(struct ct_sns_pkt
));
1787 ct_req
->header
.revision
= 0x01;
1788 ct_req
->header
.gs_type
= 0xFA;
1789 ct_req
->header
.gs_subtype
= 0x01;
1790 ct_req
->command
= cpu_to_be16(cmd
);
1791 ct_req
->max_rsp_size
= cpu_to_be16((rsp_size
- 16) / 4);
1797 * qla2x00_gpsc() - FCS Get Port Speed Capabilities (GPSC) query.
1799 * @list: switch info entries to populate
1801 * Returns 0 on success.
1804 qla2x00_gpsc(scsi_qla_host_t
*ha
, sw_info_t
*list
)
1809 ms_iocb_entry_t
*ms_pkt
;
1810 struct ct_sns_req
*ct_req
;
1811 struct ct_sns_rsp
*ct_rsp
;
1813 if (!IS_IIDMA_CAPABLE(ha
))
1814 return QLA_FUNCTION_FAILED
;
1815 if (!ha
->flags
.gpsc_supported
)
1816 return QLA_FUNCTION_FAILED
;
1818 rval
= qla2x00_mgmt_svr_login(ha
);
1822 for (i
= 0; i
< MAX_FIBRE_DEVICES
; i
++) {
1824 list
[i
].fp_speeds
= list
[i
].fp_speed
= 0;
1826 /* Prepare common MS IOCB */
1827 ms_pkt
= qla24xx_prep_ms_fm_iocb(ha
, GPSC_REQ_SIZE
,
1830 /* Prepare CT request */
1831 ct_req
= qla24xx_prep_ct_fm_req(&ha
->ct_sns
->p
.req
,
1832 GPSC_CMD
, GPSC_RSP_SIZE
);
1833 ct_rsp
= &ha
->ct_sns
->p
.rsp
;
1835 /* Prepare CT arguments -- port_name */
1836 memcpy(ct_req
->req
.gpsc
.port_name
, list
[i
].fabric_port_name
,
1839 /* Execute MS IOCB */
1840 rval
= qla2x00_issue_iocb(ha
, ha
->ms_iocb
, ha
->ms_iocb_dma
,
1841 sizeof(ms_iocb_entry_t
));
1842 if (rval
!= QLA_SUCCESS
) {
1844 DEBUG2_3(printk("scsi(%ld): GPSC issue IOCB "
1845 "failed (%d).\n", ha
->host_no
, rval
));
1846 } else if ((rval
= qla2x00_chk_ms_status(ha
, ms_pkt
, ct_rsp
,
1847 "GPSC")) != QLA_SUCCESS
) {
1848 /* FM command unsupported? */
1849 if (rval
== QLA_INVALID_COMMAND
&&
1850 ct_rsp
->header
.reason_code
==
1851 CT_REASON_INVALID_COMMAND_CODE
) {
1852 DEBUG2(printk("scsi(%ld): GPSC command "
1853 "unsupported, disabling query...\n",
1855 ha
->flags
.gpsc_supported
= 0;
1856 rval
= QLA_FUNCTION_FAILED
;
1859 rval
= QLA_FUNCTION_FAILED
;
1862 list
[i
].fp_speeds
= ct_rsp
->rsp
.gpsc
.speeds
;
1863 list
[i
].fp_speed
= ct_rsp
->rsp
.gpsc
.speed
;
1865 DEBUG2_3(printk("scsi(%ld): GPSC ext entry - "
1866 "fpn %02x%02x%02x%02x%02x%02x%02x%02x speeds=%04x "
1867 "speed=%04x.\n", ha
->host_no
,
1868 list
[i
].fabric_port_name
[0],
1869 list
[i
].fabric_port_name
[1],
1870 list
[i
].fabric_port_name
[2],
1871 list
[i
].fabric_port_name
[3],
1872 list
[i
].fabric_port_name
[4],
1873 list
[i
].fabric_port_name
[5],
1874 list
[i
].fabric_port_name
[6],
1875 list
[i
].fabric_port_name
[7],
1876 be16_to_cpu(list
[i
].fp_speeds
),
1877 be16_to_cpu(list
[i
].fp_speed
)));
1880 /* Last device exit. */
1881 if (list
[i
].d_id
.b
.rsvd_1
!= 0)