2 * Copyright (c) 2005-2010 Brocade Communications Systems, Inc.
6 * Linux driver for Brocade Fibre Channel Host Bus Adapter.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License (GPL) Version 2 as
10 * published by the Free Software Foundation
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
18 * fcbuild.c - FC link service frame building and parsing routines
22 #include "bfa_fcbuild.h"
25 * static build functions
27 static void fc_els_rsp_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
,
29 static void fc_bls_rsp_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
,
31 static struct fchs_s fc_els_req_tmpl
;
32 static struct fchs_s fc_els_rsp_tmpl
;
33 static struct fchs_s fc_bls_req_tmpl
;
34 static struct fchs_s fc_bls_rsp_tmpl
;
35 static struct fc_ba_acc_s ba_acc_tmpl
;
36 static struct fc_logi_s plogi_tmpl
;
37 static struct fc_prli_s prli_tmpl
;
38 static struct fc_rrq_s rrq_tmpl
;
39 static struct fchs_s fcp_fchs_tmpl
;
47 fc_els_req_tmpl
.routing
= FC_RTG_EXT_LINK
;
48 fc_els_req_tmpl
.cat_info
= FC_CAT_LD_REQUEST
;
49 fc_els_req_tmpl
.type
= FC_TYPE_ELS
;
50 fc_els_req_tmpl
.f_ctl
=
51 bfa_hton3b(FCTL_SEQ_INI
| FCTL_FS_EXCH
| FCTL_END_SEQ
|
53 fc_els_req_tmpl
.rx_id
= FC_RXID_ANY
;
58 fc_els_rsp_tmpl
.routing
= FC_RTG_EXT_LINK
;
59 fc_els_rsp_tmpl
.cat_info
= FC_CAT_LD_REPLY
;
60 fc_els_rsp_tmpl
.type
= FC_TYPE_ELS
;
61 fc_els_rsp_tmpl
.f_ctl
=
62 bfa_hton3b(FCTL_EC_RESP
| FCTL_SEQ_INI
| FCTL_LS_EXCH
|
63 FCTL_END_SEQ
| FCTL_SI_XFER
);
64 fc_els_rsp_tmpl
.rx_id
= FC_RXID_ANY
;
69 fc_bls_req_tmpl
.routing
= FC_RTG_BASIC_LINK
;
70 fc_bls_req_tmpl
.type
= FC_TYPE_BLS
;
71 fc_bls_req_tmpl
.f_ctl
= bfa_hton3b(FCTL_END_SEQ
| FCTL_SI_XFER
);
72 fc_bls_req_tmpl
.rx_id
= FC_RXID_ANY
;
77 fc_bls_rsp_tmpl
.routing
= FC_RTG_BASIC_LINK
;
78 fc_bls_rsp_tmpl
.cat_info
= FC_CAT_BA_ACC
;
79 fc_bls_rsp_tmpl
.type
= FC_TYPE_BLS
;
80 fc_bls_rsp_tmpl
.f_ctl
=
81 bfa_hton3b(FCTL_EC_RESP
| FCTL_SEQ_INI
| FCTL_LS_EXCH
|
82 FCTL_END_SEQ
| FCTL_SI_XFER
);
83 fc_bls_rsp_tmpl
.rx_id
= FC_RXID_ANY
;
88 ba_acc_tmpl
.seq_id_valid
= 0;
89 ba_acc_tmpl
.low_seq_cnt
= 0;
90 ba_acc_tmpl
.high_seq_cnt
= 0xFFFF;
95 plogi_tmpl
.csp
.verhi
= FC_PH_VER_PH_3
;
96 plogi_tmpl
.csp
.verlo
= FC_PH_VER_4_3
;
97 plogi_tmpl
.csp
.ciro
= 0x1;
98 plogi_tmpl
.csp
.cisc
= 0x0;
99 plogi_tmpl
.csp
.altbbcred
= 0x0;
100 plogi_tmpl
.csp
.conseq
= cpu_to_be16(0x00FF);
101 plogi_tmpl
.csp
.ro_bitmap
= cpu_to_be16(0x0002);
102 plogi_tmpl
.csp
.e_d_tov
= cpu_to_be32(2000);
104 plogi_tmpl
.class3
.class_valid
= 1;
105 plogi_tmpl
.class3
.sequential
= 1;
106 plogi_tmpl
.class3
.conseq
= 0xFF;
107 plogi_tmpl
.class3
.ospx
= 1;
112 prli_tmpl
.command
= FC_ELS_PRLI
;
113 prli_tmpl
.pglen
= 0x10;
114 prli_tmpl
.pagebytes
= cpu_to_be16(0x0014);
115 prli_tmpl
.parampage
.type
= FC_TYPE_FCP
;
116 prli_tmpl
.parampage
.imagepair
= 1;
117 prli_tmpl
.parampage
.servparams
.rxrdisab
= 1;
122 rrq_tmpl
.els_cmd
.els_code
= FC_ELS_RRQ
;
125 * fcp_struct fchs_s mpl
127 fcp_fchs_tmpl
.routing
= FC_RTG_FC4_DEV_DATA
;
128 fcp_fchs_tmpl
.cat_info
= FC_CAT_UNSOLICIT_CMD
;
129 fcp_fchs_tmpl
.type
= FC_TYPE_FCP
;
130 fcp_fchs_tmpl
.f_ctl
=
131 bfa_hton3b(FCTL_FS_EXCH
| FCTL_END_SEQ
| FCTL_SI_XFER
);
132 fcp_fchs_tmpl
.seq_id
= 1;
133 fcp_fchs_tmpl
.rx_id
= FC_RXID_ANY
;
137 fc_gs_fchdr_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
, u32 ox_id
)
139 memset(fchs
, 0, sizeof(struct fchs_s
));
141 fchs
->routing
= FC_RTG_FC4_DEV_DATA
;
142 fchs
->cat_info
= FC_CAT_UNSOLICIT_CTRL
;
143 fchs
->type
= FC_TYPE_SERVICES
;
145 bfa_hton3b(FCTL_SEQ_INI
| FCTL_FS_EXCH
| FCTL_END_SEQ
|
147 fchs
->rx_id
= FC_RXID_ANY
;
150 fchs
->ox_id
= cpu_to_be16(ox_id
);
153 * @todo no need to set ox_id for request
154 * no need to set rx_id for response
159 fc_gsresp_fchdr_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
, u16 ox_id
)
161 memset(fchs
, 0, sizeof(struct fchs_s
));
163 fchs
->routing
= FC_RTG_FC4_DEV_DATA
;
164 fchs
->cat_info
= FC_CAT_SOLICIT_CTRL
;
165 fchs
->type
= FC_TYPE_SERVICES
;
167 bfa_hton3b(FCTL_EC_RESP
| FCTL_SEQ_INI
| FCTL_LS_EXCH
|
168 FCTL_END_SEQ
| FCTL_SI_XFER
);
175 fc_els_req_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
, __be16 ox_id
)
177 memcpy(fchs
, &fc_els_req_tmpl
, sizeof(struct fchs_s
));
180 fchs
->ox_id
= cpu_to_be16(ox_id
);
184 fc_els_rsp_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
, __be16 ox_id
)
186 memcpy(fchs
, &fc_els_rsp_tmpl
, sizeof(struct fchs_s
));
193 fc_els_rsp_parse(struct fchs_s
*fchs
, int len
)
195 struct fc_els_cmd_s
*els_cmd
= (struct fc_els_cmd_s
*) (fchs
+ 1);
196 struct fc_ls_rjt_s
*ls_rjt
= (struct fc_ls_rjt_s
*) els_cmd
;
200 switch (els_cmd
->els_code
) {
202 if (ls_rjt
->reason_code
== FC_LS_RJT_RSN_LOGICAL_BUSY
)
203 return FC_PARSE_BUSY
;
205 return FC_PARSE_FAILURE
;
214 fc_bls_rsp_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
, __be16 ox_id
)
216 memcpy(fchs
, &fc_bls_rsp_tmpl
, sizeof(struct fchs_s
));
223 fc_plogi_x_build(struct fchs_s
*fchs
, void *pld
, u32 d_id
, u32 s_id
,
224 __be16 ox_id
, wwn_t port_name
, wwn_t node_name
,
225 u16 pdu_size
, u16 bb_cr
, u8 els_code
)
227 struct fc_logi_s
*plogi
= (struct fc_logi_s
*) (pld
);
229 memcpy(plogi
, &plogi_tmpl
, sizeof(struct fc_logi_s
));
231 /* For FC AL bb_cr is 0 and altbbcred is 1 */
233 plogi
->csp
.altbbcred
= 1;
235 plogi
->els_cmd
.els_code
= els_code
;
236 if (els_code
== FC_ELS_PLOGI
)
237 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
239 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
241 plogi
->csp
.rxsz
= plogi
->class3
.rxsz
= cpu_to_be16(pdu_size
);
242 plogi
->csp
.bbcred
= cpu_to_be16(bb_cr
);
244 memcpy(&plogi
->port_name
, &port_name
, sizeof(wwn_t
));
245 memcpy(&plogi
->node_name
, &node_name
, sizeof(wwn_t
));
247 return sizeof(struct fc_logi_s
);
251 fc_flogi_build(struct fchs_s
*fchs
, struct fc_logi_s
*flogi
, u32 s_id
,
252 u16 ox_id
, wwn_t port_name
, wwn_t node_name
, u16 pdu_size
,
253 u8 set_npiv
, u8 set_auth
, u16 local_bb_credits
)
255 u32 d_id
= bfa_hton3b(FC_FABRIC_PORT
);
258 memcpy(flogi
, &plogi_tmpl
, sizeof(struct fc_logi_s
));
260 flogi
->els_cmd
.els_code
= FC_ELS_FLOGI
;
261 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
263 flogi
->csp
.rxsz
= flogi
->class3
.rxsz
= cpu_to_be16(pdu_size
);
264 flogi
->port_name
= port_name
;
265 flogi
->node_name
= node_name
;
268 * Set the NPIV Capability Bit ( word 1, bit 31) of Common
269 * Service Parameters.
271 flogi
->csp
.ciro
= set_npiv
;
273 /* set AUTH capability */
274 flogi
->csp
.security
= set_auth
;
276 flogi
->csp
.bbcred
= cpu_to_be16(local_bb_credits
);
278 /* Set brcd token in VVL */
279 vvl_info
= (u32
*)&flogi
->vvl
[0];
281 /* set the flag to indicate the presence of VVL */
282 flogi
->csp
.npiv_supp
= 1; /* @todo. field name is not correct */
283 vvl_info
[0] = cpu_to_be32(FLOGI_VVL_BRCD
);
285 return sizeof(struct fc_logi_s
);
289 fc_flogi_acc_build(struct fchs_s
*fchs
, struct fc_logi_s
*flogi
, u32 s_id
,
290 __be16 ox_id
, wwn_t port_name
, wwn_t node_name
,
291 u16 pdu_size
, u16 local_bb_credits
, u8 bb_scn
)
294 u16 bbscn_rxsz
= (bb_scn
<< 12) | pdu_size
;
296 memcpy(flogi
, &plogi_tmpl
, sizeof(struct fc_logi_s
));
297 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
299 flogi
->els_cmd
.els_code
= FC_ELS_ACC
;
300 flogi
->class3
.rxsz
= cpu_to_be16(pdu_size
);
301 flogi
->csp
.rxsz
= cpu_to_be16(bbscn_rxsz
); /* bb_scn/rxsz */
302 flogi
->port_name
= port_name
;
303 flogi
->node_name
= node_name
;
305 flogi
->csp
.bbcred
= cpu_to_be16(local_bb_credits
);
307 return sizeof(struct fc_logi_s
);
311 fc_fdisc_build(struct fchs_s
*fchs
, struct fc_logi_s
*flogi
, u32 s_id
,
312 u16 ox_id
, wwn_t port_name
, wwn_t node_name
, u16 pdu_size
)
314 u32 d_id
= bfa_hton3b(FC_FABRIC_PORT
);
316 memcpy(flogi
, &plogi_tmpl
, sizeof(struct fc_logi_s
));
318 flogi
->els_cmd
.els_code
= FC_ELS_FDISC
;
319 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
321 flogi
->csp
.rxsz
= flogi
->class3
.rxsz
= cpu_to_be16(pdu_size
);
322 flogi
->port_name
= port_name
;
323 flogi
->node_name
= node_name
;
325 return sizeof(struct fc_logi_s
);
329 fc_plogi_build(struct fchs_s
*fchs
, void *pld
, u32 d_id
, u32 s_id
,
330 u16 ox_id
, wwn_t port_name
, wwn_t node_name
,
331 u16 pdu_size
, u16 bb_cr
)
333 return fc_plogi_x_build(fchs
, pld
, d_id
, s_id
, ox_id
, port_name
,
334 node_name
, pdu_size
, bb_cr
, FC_ELS_PLOGI
);
338 fc_plogi_acc_build(struct fchs_s
*fchs
, void *pld
, u32 d_id
, u32 s_id
,
339 u16 ox_id
, wwn_t port_name
, wwn_t node_name
,
340 u16 pdu_size
, u16 bb_cr
)
342 return fc_plogi_x_build(fchs
, pld
, d_id
, s_id
, ox_id
, port_name
,
343 node_name
, pdu_size
, bb_cr
, FC_ELS_ACC
);
347 fc_plogi_rsp_parse(struct fchs_s
*fchs
, int len
, wwn_t port_name
)
349 struct fc_els_cmd_s
*els_cmd
= (struct fc_els_cmd_s
*) (fchs
+ 1);
350 struct fc_logi_s
*plogi
;
351 struct fc_ls_rjt_s
*ls_rjt
;
353 switch (els_cmd
->els_code
) {
355 ls_rjt
= (struct fc_ls_rjt_s
*) (fchs
+ 1);
356 if (ls_rjt
->reason_code
== FC_LS_RJT_RSN_LOGICAL_BUSY
)
357 return FC_PARSE_BUSY
;
359 return FC_PARSE_FAILURE
;
361 plogi
= (struct fc_logi_s
*) (fchs
+ 1);
362 if (len
< sizeof(struct fc_logi_s
))
363 return FC_PARSE_FAILURE
;
365 if (!wwn_is_equal(plogi
->port_name
, port_name
))
366 return FC_PARSE_FAILURE
;
368 if (!plogi
->class3
.class_valid
)
369 return FC_PARSE_FAILURE
;
371 if (be16_to_cpu(plogi
->class3
.rxsz
) < (FC_MIN_PDUSZ
))
372 return FC_PARSE_FAILURE
;
376 return FC_PARSE_FAILURE
;
381 fc_plogi_parse(struct fchs_s
*fchs
)
383 struct fc_logi_s
*plogi
= (struct fc_logi_s
*) (fchs
+ 1);
385 if (plogi
->class3
.class_valid
!= 1)
386 return FC_PARSE_FAILURE
;
388 if ((be16_to_cpu(plogi
->class3
.rxsz
) < FC_MIN_PDUSZ
)
389 || (be16_to_cpu(plogi
->class3
.rxsz
) > FC_MAX_PDUSZ
)
390 || (plogi
->class3
.rxsz
== 0))
391 return FC_PARSE_FAILURE
;
397 fc_prli_build(struct fchs_s
*fchs
, void *pld
, u32 d_id
, u32 s_id
,
400 struct fc_prli_s
*prli
= (struct fc_prli_s
*) (pld
);
402 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
403 memcpy(prli
, &prli_tmpl
, sizeof(struct fc_prli_s
));
405 prli
->command
= FC_ELS_PRLI
;
406 prli
->parampage
.servparams
.initiator
= 1;
407 prli
->parampage
.servparams
.retry
= 1;
408 prli
->parampage
.servparams
.rec_support
= 1;
409 prli
->parampage
.servparams
.task_retry_id
= 0;
410 prli
->parampage
.servparams
.confirm
= 1;
412 return sizeof(struct fc_prli_s
);
416 fc_prli_acc_build(struct fchs_s
*fchs
, void *pld
, u32 d_id
, u32 s_id
,
417 __be16 ox_id
, enum bfa_lport_role role
)
419 struct fc_prli_s
*prli
= (struct fc_prli_s
*) (pld
);
421 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
422 memcpy(prli
, &prli_tmpl
, sizeof(struct fc_prli_s
));
424 prli
->command
= FC_ELS_ACC
;
426 prli
->parampage
.servparams
.initiator
= 1;
428 prli
->parampage
.rspcode
= FC_PRLI_ACC_XQTD
;
430 return sizeof(struct fc_prli_s
);
434 fc_prli_rsp_parse(struct fc_prli_s
*prli
, int len
)
436 if (len
< sizeof(struct fc_prli_s
))
437 return FC_PARSE_FAILURE
;
439 if (prli
->command
!= FC_ELS_ACC
)
440 return FC_PARSE_FAILURE
;
442 if ((prli
->parampage
.rspcode
!= FC_PRLI_ACC_XQTD
)
443 && (prli
->parampage
.rspcode
!= FC_PRLI_ACC_PREDEF_IMG
))
444 return FC_PARSE_FAILURE
;
446 if (prli
->parampage
.servparams
.target
!= 1)
447 return FC_PARSE_FAILURE
;
453 fc_prli_parse(struct fc_prli_s
*prli
)
455 if (prli
->parampage
.type
!= FC_TYPE_FCP
)
456 return FC_PARSE_FAILURE
;
458 if (!prli
->parampage
.imagepair
)
459 return FC_PARSE_FAILURE
;
461 if (!prli
->parampage
.servparams
.initiator
)
462 return FC_PARSE_FAILURE
;
468 fc_logo_build(struct fchs_s
*fchs
, struct fc_logo_s
*logo
, u32 d_id
, u32 s_id
,
469 u16 ox_id
, wwn_t port_name
)
471 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
473 memset(logo
, '\0', sizeof(struct fc_logo_s
));
474 logo
->els_cmd
.els_code
= FC_ELS_LOGO
;
475 logo
->nport_id
= (s_id
);
476 logo
->orig_port_name
= port_name
;
478 return sizeof(struct fc_logo_s
);
482 fc_adisc_x_build(struct fchs_s
*fchs
, struct fc_adisc_s
*adisc
, u32 d_id
,
483 u32 s_id
, __be16 ox_id
, wwn_t port_name
,
484 wwn_t node_name
, u8 els_code
)
486 memset(adisc
, '\0', sizeof(struct fc_adisc_s
));
488 adisc
->els_cmd
.els_code
= els_code
;
490 if (els_code
== FC_ELS_ADISC
)
491 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
493 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
496 adisc
->orig_port_name
= port_name
;
497 adisc
->orig_node_name
= node_name
;
498 adisc
->nport_id
= (s_id
);
500 return sizeof(struct fc_adisc_s
);
504 fc_adisc_build(struct fchs_s
*fchs
, struct fc_adisc_s
*adisc
, u32 d_id
,
505 u32 s_id
, __be16 ox_id
, wwn_t port_name
, wwn_t node_name
)
507 return fc_adisc_x_build(fchs
, adisc
, d_id
, s_id
, ox_id
, port_name
,
508 node_name
, FC_ELS_ADISC
);
512 fc_adisc_acc_build(struct fchs_s
*fchs
, struct fc_adisc_s
*adisc
, u32 d_id
,
513 u32 s_id
, __be16 ox_id
, wwn_t port_name
,
516 return fc_adisc_x_build(fchs
, adisc
, d_id
, s_id
, ox_id
, port_name
,
517 node_name
, FC_ELS_ACC
);
521 fc_adisc_rsp_parse(struct fc_adisc_s
*adisc
, int len
, wwn_t port_name
,
525 if (len
< sizeof(struct fc_adisc_s
))
526 return FC_PARSE_FAILURE
;
528 if (adisc
->els_cmd
.els_code
!= FC_ELS_ACC
)
529 return FC_PARSE_FAILURE
;
531 if (!wwn_is_equal(adisc
->orig_port_name
, port_name
))
532 return FC_PARSE_FAILURE
;
538 fc_adisc_parse(struct fchs_s
*fchs
, void *pld
, u32 host_dap
, wwn_t node_name
,
541 struct fc_adisc_s
*adisc
= (struct fc_adisc_s
*) pld
;
543 if (adisc
->els_cmd
.els_code
!= FC_ELS_ACC
)
544 return FC_PARSE_FAILURE
;
546 if ((adisc
->nport_id
== (host_dap
))
547 && wwn_is_equal(adisc
->orig_port_name
, port_name
)
548 && wwn_is_equal(adisc
->orig_node_name
, node_name
))
551 return FC_PARSE_FAILURE
;
555 fc_pdisc_parse(struct fchs_s
*fchs
, wwn_t node_name
, wwn_t port_name
)
557 struct fc_logi_s
*pdisc
= (struct fc_logi_s
*) (fchs
+ 1);
559 if (pdisc
->class3
.class_valid
!= 1)
560 return FC_PARSE_FAILURE
;
562 if ((be16_to_cpu(pdisc
->class3
.rxsz
) <
563 (FC_MIN_PDUSZ
- sizeof(struct fchs_s
)))
564 || (pdisc
->class3
.rxsz
== 0))
565 return FC_PARSE_FAILURE
;
567 if (!wwn_is_equal(pdisc
->port_name
, port_name
))
568 return FC_PARSE_FAILURE
;
570 if (!wwn_is_equal(pdisc
->node_name
, node_name
))
571 return FC_PARSE_FAILURE
;
577 fc_abts_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
, u16 ox_id
)
579 memcpy(fchs
, &fc_bls_req_tmpl
, sizeof(struct fchs_s
));
580 fchs
->cat_info
= FC_CAT_ABTS
;
583 fchs
->ox_id
= cpu_to_be16(ox_id
);
585 return sizeof(struct fchs_s
);
589 fc_abts_rsp_parse(struct fchs_s
*fchs
, int len
)
591 if ((fchs
->cat_info
== FC_CAT_BA_ACC
)
592 || (fchs
->cat_info
== FC_CAT_BA_RJT
))
595 return FC_PARSE_FAILURE
;
599 fc_rrq_build(struct fchs_s
*fchs
, struct fc_rrq_s
*rrq
, u32 d_id
, u32 s_id
,
600 u16 ox_id
, u16 rrq_oxid
)
602 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
607 memcpy(rrq
, &rrq_tmpl
, sizeof(struct fc_rrq_s
));
609 rrq
->ox_id
= cpu_to_be16(rrq_oxid
);
610 rrq
->rx_id
= FC_RXID_ANY
;
612 return sizeof(struct fc_rrq_s
);
616 fc_logo_acc_build(struct fchs_s
*fchs
, void *pld
, u32 d_id
, u32 s_id
,
619 struct fc_els_cmd_s
*acc
= pld
;
621 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
623 memset(acc
, 0, sizeof(struct fc_els_cmd_s
));
624 acc
->els_code
= FC_ELS_ACC
;
626 return sizeof(struct fc_els_cmd_s
);
630 fc_ls_rjt_build(struct fchs_s
*fchs
, struct fc_ls_rjt_s
*ls_rjt
, u32 d_id
,
631 u32 s_id
, __be16 ox_id
, u8 reason_code
,
634 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
635 memset(ls_rjt
, 0, sizeof(struct fc_ls_rjt_s
));
637 ls_rjt
->els_cmd
.els_code
= FC_ELS_LS_RJT
;
638 ls_rjt
->reason_code
= reason_code
;
639 ls_rjt
->reason_code_expl
= reason_code_expl
;
640 ls_rjt
->vendor_unique
= 0x00;
642 return sizeof(struct fc_ls_rjt_s
);
646 fc_ba_acc_build(struct fchs_s
*fchs
, struct fc_ba_acc_s
*ba_acc
, u32 d_id
,
647 u32 s_id
, __be16 ox_id
, u16 rx_id
)
649 fc_bls_rsp_build(fchs
, d_id
, s_id
, ox_id
);
651 memcpy(ba_acc
, &ba_acc_tmpl
, sizeof(struct fc_ba_acc_s
));
655 ba_acc
->ox_id
= fchs
->ox_id
;
656 ba_acc
->rx_id
= fchs
->rx_id
;
658 return sizeof(struct fc_ba_acc_s
);
662 fc_ls_acc_build(struct fchs_s
*fchs
, struct fc_els_cmd_s
*els_cmd
, u32 d_id
,
663 u32 s_id
, __be16 ox_id
)
665 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
666 memset(els_cmd
, 0, sizeof(struct fc_els_cmd_s
));
667 els_cmd
->els_code
= FC_ELS_ACC
;
669 return sizeof(struct fc_els_cmd_s
);
673 fc_logout_params_pages(struct fchs_s
*fc_frame
, u8 els_code
)
676 struct fc_prlo_s
*prlo
;
677 struct fc_tprlo_s
*tprlo
;
679 if (els_code
== FC_ELS_PRLO
) {
680 prlo
= (struct fc_prlo_s
*) (fc_frame
+ 1);
681 num_pages
= (be16_to_cpu(prlo
->payload_len
) - 4) / 16;
683 tprlo
= (struct fc_tprlo_s
*) (fc_frame
+ 1);
684 num_pages
= (be16_to_cpu(tprlo
->payload_len
) - 4) / 16;
690 fc_tprlo_acc_build(struct fchs_s
*fchs
, struct fc_tprlo_acc_s
*tprlo_acc
,
691 u32 d_id
, u32 s_id
, __be16 ox_id
, int num_pages
)
695 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
697 memset(tprlo_acc
, 0, (num_pages
* 16) + 4);
698 tprlo_acc
->command
= FC_ELS_ACC
;
700 tprlo_acc
->page_len
= 0x10;
701 tprlo_acc
->payload_len
= cpu_to_be16((num_pages
* 16) + 4);
703 for (page
= 0; page
< num_pages
; page
++) {
704 tprlo_acc
->tprlo_acc_params
[page
].opa_valid
= 0;
705 tprlo_acc
->tprlo_acc_params
[page
].rpa_valid
= 0;
706 tprlo_acc
->tprlo_acc_params
[page
].fc4type_csp
= FC_TYPE_FCP
;
707 tprlo_acc
->tprlo_acc_params
[page
].orig_process_assc
= 0;
708 tprlo_acc
->tprlo_acc_params
[page
].resp_process_assc
= 0;
710 return be16_to_cpu(tprlo_acc
->payload_len
);
714 fc_prlo_acc_build(struct fchs_s
*fchs
, struct fc_prlo_acc_s
*prlo_acc
, u32 d_id
,
715 u32 s_id
, __be16 ox_id
, int num_pages
)
719 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
721 memset(prlo_acc
, 0, (num_pages
* 16) + 4);
722 prlo_acc
->command
= FC_ELS_ACC
;
723 prlo_acc
->page_len
= 0x10;
724 prlo_acc
->payload_len
= cpu_to_be16((num_pages
* 16) + 4);
726 for (page
= 0; page
< num_pages
; page
++) {
727 prlo_acc
->prlo_acc_params
[page
].opa_valid
= 0;
728 prlo_acc
->prlo_acc_params
[page
].rpa_valid
= 0;
729 prlo_acc
->prlo_acc_params
[page
].fc4type_csp
= FC_TYPE_FCP
;
730 prlo_acc
->prlo_acc_params
[page
].orig_process_assc
= 0;
731 prlo_acc
->prlo_acc_params
[page
].resp_process_assc
= 0;
734 return be16_to_cpu(prlo_acc
->payload_len
);
738 fc_rnid_build(struct fchs_s
*fchs
, struct fc_rnid_cmd_s
*rnid
, u32 d_id
,
739 u32 s_id
, u16 ox_id
, u32 data_format
)
741 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
743 memset(rnid
, 0, sizeof(struct fc_rnid_cmd_s
));
745 rnid
->els_cmd
.els_code
= FC_ELS_RNID
;
746 rnid
->node_id_data_format
= data_format
;
748 return sizeof(struct fc_rnid_cmd_s
);
752 fc_rnid_acc_build(struct fchs_s
*fchs
, struct fc_rnid_acc_s
*rnid_acc
, u32 d_id
,
753 u32 s_id
, __be16 ox_id
, u32 data_format
,
754 struct fc_rnid_common_id_data_s
*common_id_data
,
755 struct fc_rnid_general_topology_data_s
*gen_topo_data
)
757 memset(rnid_acc
, 0, sizeof(struct fc_rnid_acc_s
));
759 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
761 rnid_acc
->els_cmd
.els_code
= FC_ELS_ACC
;
762 rnid_acc
->node_id_data_format
= data_format
;
763 rnid_acc
->common_id_data_length
=
764 sizeof(struct fc_rnid_common_id_data_s
);
765 rnid_acc
->common_id_data
= *common_id_data
;
767 if (data_format
== RNID_NODEID_DATA_FORMAT_DISCOVERY
) {
768 rnid_acc
->specific_id_data_length
=
769 sizeof(struct fc_rnid_general_topology_data_s
);
770 rnid_acc
->gen_topology_data
= *gen_topo_data
;
771 return sizeof(struct fc_rnid_acc_s
);
773 return sizeof(struct fc_rnid_acc_s
) -
774 sizeof(struct fc_rnid_general_topology_data_s
);
780 fc_rpsc_build(struct fchs_s
*fchs
, struct fc_rpsc_cmd_s
*rpsc
, u32 d_id
,
783 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
785 memset(rpsc
, 0, sizeof(struct fc_rpsc_cmd_s
));
787 rpsc
->els_cmd
.els_code
= FC_ELS_RPSC
;
788 return sizeof(struct fc_rpsc_cmd_s
);
792 fc_rpsc2_build(struct fchs_s
*fchs
, struct fc_rpsc2_cmd_s
*rpsc2
, u32 d_id
,
793 u32 s_id
, u32
*pid_list
, u16 npids
)
795 u32 dctlr_id
= FC_DOMAIN_CTRLR(bfa_hton3b(d_id
));
798 fc_els_req_build(fchs
, bfa_hton3b(dctlr_id
), s_id
, 0);
800 memset(rpsc2
, 0, sizeof(struct fc_rpsc2_cmd_s
));
802 rpsc2
->els_cmd
.els_code
= FC_ELS_RPSC
;
803 rpsc2
->token
= cpu_to_be32(FC_BRCD_TOKEN
);
804 rpsc2
->num_pids
= cpu_to_be16(npids
);
805 for (i
= 0; i
< npids
; i
++)
806 rpsc2
->pid_list
[i
].pid
= pid_list
[i
];
808 return sizeof(struct fc_rpsc2_cmd_s
) + ((npids
- 1) * (sizeof(u32
)));
812 fc_rpsc_acc_build(struct fchs_s
*fchs
, struct fc_rpsc_acc_s
*rpsc_acc
,
813 u32 d_id
, u32 s_id
, __be16 ox_id
,
814 struct fc_rpsc_speed_info_s
*oper_speed
)
816 memset(rpsc_acc
, 0, sizeof(struct fc_rpsc_acc_s
));
818 fc_els_rsp_build(fchs
, d_id
, s_id
, ox_id
);
820 rpsc_acc
->command
= FC_ELS_ACC
;
821 rpsc_acc
->num_entries
= cpu_to_be16(1);
823 rpsc_acc
->speed_info
[0].port_speed_cap
=
824 cpu_to_be16(oper_speed
->port_speed_cap
);
826 rpsc_acc
->speed_info
[0].port_op_speed
=
827 cpu_to_be16(oper_speed
->port_op_speed
);
829 return sizeof(struct fc_rpsc_acc_s
);
833 fc_logo_rsp_parse(struct fchs_s
*fchs
, int len
)
835 struct fc_els_cmd_s
*els_cmd
= (struct fc_els_cmd_s
*) (fchs
+ 1);
838 if (els_cmd
->els_code
!= FC_ELS_ACC
)
839 return FC_PARSE_FAILURE
;
845 fc_pdisc_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
, u16 ox_id
,
846 wwn_t port_name
, wwn_t node_name
, u16 pdu_size
)
848 struct fc_logi_s
*pdisc
= (struct fc_logi_s
*) (fchs
+ 1);
850 memcpy(pdisc
, &plogi_tmpl
, sizeof(struct fc_logi_s
));
852 pdisc
->els_cmd
.els_code
= FC_ELS_PDISC
;
853 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
855 pdisc
->csp
.rxsz
= pdisc
->class3
.rxsz
= cpu_to_be16(pdu_size
);
856 pdisc
->port_name
= port_name
;
857 pdisc
->node_name
= node_name
;
859 return sizeof(struct fc_logi_s
);
863 fc_pdisc_rsp_parse(struct fchs_s
*fchs
, int len
, wwn_t port_name
)
865 struct fc_logi_s
*pdisc
= (struct fc_logi_s
*) (fchs
+ 1);
867 if (len
< sizeof(struct fc_logi_s
))
868 return FC_PARSE_LEN_INVAL
;
870 if (pdisc
->els_cmd
.els_code
!= FC_ELS_ACC
)
871 return FC_PARSE_ACC_INVAL
;
873 if (!wwn_is_equal(pdisc
->port_name
, port_name
))
874 return FC_PARSE_PWWN_NOT_EQUAL
;
876 if (!pdisc
->class3
.class_valid
)
877 return FC_PARSE_NWWN_NOT_EQUAL
;
879 if (be16_to_cpu(pdisc
->class3
.rxsz
) < (FC_MIN_PDUSZ
))
880 return FC_PARSE_RXSZ_INVAL
;
886 fc_prlo_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
, u16 ox_id
,
889 struct fc_prlo_s
*prlo
= (struct fc_prlo_s
*) (fchs
+ 1);
892 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
893 memset(prlo
, 0, (num_pages
* 16) + 4);
894 prlo
->command
= FC_ELS_PRLO
;
895 prlo
->page_len
= 0x10;
896 prlo
->payload_len
= cpu_to_be16((num_pages
* 16) + 4);
898 for (page
= 0; page
< num_pages
; page
++) {
899 prlo
->prlo_params
[page
].type
= FC_TYPE_FCP
;
900 prlo
->prlo_params
[page
].opa_valid
= 0;
901 prlo
->prlo_params
[page
].rpa_valid
= 0;
902 prlo
->prlo_params
[page
].orig_process_assc
= 0;
903 prlo
->prlo_params
[page
].resp_process_assc
= 0;
906 return be16_to_cpu(prlo
->payload_len
);
910 fc_prlo_rsp_parse(struct fchs_s
*fchs
, int len
)
912 struct fc_prlo_acc_s
*prlo
= (struct fc_prlo_acc_s
*) (fchs
+ 1);
918 if (prlo
->command
!= FC_ELS_ACC
)
919 return FC_PARSE_FAILURE
;
921 num_pages
= ((be16_to_cpu(prlo
->payload_len
)) - 4) / 16;
923 for (page
= 0; page
< num_pages
; page
++) {
924 if (prlo
->prlo_acc_params
[page
].type
!= FC_TYPE_FCP
)
925 return FC_PARSE_FAILURE
;
927 if (prlo
->prlo_acc_params
[page
].opa_valid
!= 0)
928 return FC_PARSE_FAILURE
;
930 if (prlo
->prlo_acc_params
[page
].rpa_valid
!= 0)
931 return FC_PARSE_FAILURE
;
933 if (prlo
->prlo_acc_params
[page
].orig_process_assc
!= 0)
934 return FC_PARSE_FAILURE
;
936 if (prlo
->prlo_acc_params
[page
].resp_process_assc
!= 0)
937 return FC_PARSE_FAILURE
;
944 fc_tprlo_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
, u16 ox_id
,
945 int num_pages
, enum fc_tprlo_type tprlo_type
, u32 tpr_id
)
947 struct fc_tprlo_s
*tprlo
= (struct fc_tprlo_s
*) (fchs
+ 1);
950 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
951 memset(tprlo
, 0, (num_pages
* 16) + 4);
952 tprlo
->command
= FC_ELS_TPRLO
;
953 tprlo
->page_len
= 0x10;
954 tprlo
->payload_len
= cpu_to_be16((num_pages
* 16) + 4);
956 for (page
= 0; page
< num_pages
; page
++) {
957 tprlo
->tprlo_params
[page
].type
= FC_TYPE_FCP
;
958 tprlo
->tprlo_params
[page
].opa_valid
= 0;
959 tprlo
->tprlo_params
[page
].rpa_valid
= 0;
960 tprlo
->tprlo_params
[page
].orig_process_assc
= 0;
961 tprlo
->tprlo_params
[page
].resp_process_assc
= 0;
962 if (tprlo_type
== FC_GLOBAL_LOGO
) {
963 tprlo
->tprlo_params
[page
].global_process_logout
= 1;
964 } else if (tprlo_type
== FC_TPR_LOGO
) {
965 tprlo
->tprlo_params
[page
].tpo_nport_valid
= 1;
966 tprlo
->tprlo_params
[page
].tpo_nport_id
= (tpr_id
);
970 return be16_to_cpu(tprlo
->payload_len
);
974 fc_tprlo_rsp_parse(struct fchs_s
*fchs
, int len
)
976 struct fc_tprlo_acc_s
*tprlo
= (struct fc_tprlo_acc_s
*) (fchs
+ 1);
982 if (tprlo
->command
!= FC_ELS_ACC
)
983 return FC_PARSE_ACC_INVAL
;
985 num_pages
= (be16_to_cpu(tprlo
->payload_len
) - 4) / 16;
987 for (page
= 0; page
< num_pages
; page
++) {
988 if (tprlo
->tprlo_acc_params
[page
].type
!= FC_TYPE_FCP
)
989 return FC_PARSE_NOT_FCP
;
990 if (tprlo
->tprlo_acc_params
[page
].opa_valid
!= 0)
991 return FC_PARSE_OPAFLAG_INVAL
;
992 if (tprlo
->tprlo_acc_params
[page
].rpa_valid
!= 0)
993 return FC_PARSE_RPAFLAG_INVAL
;
994 if (tprlo
->tprlo_acc_params
[page
].orig_process_assc
!= 0)
995 return FC_PARSE_OPA_INVAL
;
996 if (tprlo
->tprlo_acc_params
[page
].resp_process_assc
!= 0)
997 return FC_PARSE_RPA_INVAL
;
1002 enum fc_parse_status
1003 fc_rrq_rsp_parse(struct fchs_s
*fchs
, int len
)
1005 struct fc_els_cmd_s
*els_cmd
= (struct fc_els_cmd_s
*) (fchs
+ 1);
1008 if (els_cmd
->els_code
!= FC_ELS_ACC
)
1009 return FC_PARSE_FAILURE
;
1015 fc_ba_rjt_build(struct fchs_s
*fchs
, u32 d_id
, u32 s_id
, __be16 ox_id
,
1016 u32 reason_code
, u32 reason_expl
)
1018 struct fc_ba_rjt_s
*ba_rjt
= (struct fc_ba_rjt_s
*) (fchs
+ 1);
1020 fc_bls_rsp_build(fchs
, d_id
, s_id
, ox_id
);
1022 fchs
->cat_info
= FC_CAT_BA_RJT
;
1023 ba_rjt
->reason_code
= reason_code
;
1024 ba_rjt
->reason_expl
= reason_expl
;
1025 return sizeof(struct fc_ba_rjt_s
);
1029 fc_gs_cthdr_build(struct ct_hdr_s
*cthdr
, u32 s_id
, u16 cmd_code
)
1031 memset(cthdr
, 0, sizeof(struct ct_hdr_s
));
1032 cthdr
->rev_id
= CT_GS3_REVISION
;
1033 cthdr
->gs_type
= CT_GSTYPE_DIRSERVICE
;
1034 cthdr
->gs_sub_type
= CT_GSSUBTYPE_NAMESERVER
;
1035 cthdr
->cmd_rsp_code
= cpu_to_be16(cmd_code
);
1039 fc_gs_fdmi_cthdr_build(struct ct_hdr_s
*cthdr
, u32 s_id
, u16 cmd_code
)
1041 memset(cthdr
, 0, sizeof(struct ct_hdr_s
));
1042 cthdr
->rev_id
= CT_GS3_REVISION
;
1043 cthdr
->gs_type
= CT_GSTYPE_MGMTSERVICE
;
1044 cthdr
->gs_sub_type
= CT_GSSUBTYPE_HBA_MGMTSERVER
;
1045 cthdr
->cmd_rsp_code
= cpu_to_be16(cmd_code
);
1049 fc_gs_ms_cthdr_build(struct ct_hdr_s
*cthdr
, u32 s_id
, u16 cmd_code
,
1052 memset(cthdr
, 0, sizeof(struct ct_hdr_s
));
1053 cthdr
->rev_id
= CT_GS3_REVISION
;
1054 cthdr
->gs_type
= CT_GSTYPE_MGMTSERVICE
;
1055 cthdr
->gs_sub_type
= sub_type
;
1056 cthdr
->cmd_rsp_code
= cpu_to_be16(cmd_code
);
1060 fc_gidpn_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u16 ox_id
,
1063 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1064 struct fcgs_gidpn_req_s
*gidpn
= (struct fcgs_gidpn_req_s
*)(cthdr
+ 1);
1065 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1067 fc_gs_fchdr_build(fchs
, d_id
, s_id
, ox_id
);
1068 fc_gs_cthdr_build(cthdr
, s_id
, GS_GID_PN
);
1070 memset(gidpn
, 0, sizeof(struct fcgs_gidpn_req_s
));
1071 gidpn
->port_name
= port_name
;
1072 return sizeof(struct fcgs_gidpn_req_s
) + sizeof(struct ct_hdr_s
);
1076 fc_gpnid_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u16 ox_id
,
1079 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1080 fcgs_gpnid_req_t
*gpnid
= (fcgs_gpnid_req_t
*) (cthdr
+ 1);
1081 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1083 fc_gs_fchdr_build(fchs
, d_id
, s_id
, ox_id
);
1084 fc_gs_cthdr_build(cthdr
, s_id
, GS_GPN_ID
);
1086 memset(gpnid
, 0, sizeof(fcgs_gpnid_req_t
));
1087 gpnid
->dap
= port_id
;
1088 return sizeof(fcgs_gpnid_req_t
) + sizeof(struct ct_hdr_s
);
1092 fc_gnnid_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u16 ox_id
,
1095 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1096 fcgs_gnnid_req_t
*gnnid
= (fcgs_gnnid_req_t
*) (cthdr
+ 1);
1097 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1099 fc_gs_fchdr_build(fchs
, d_id
, s_id
, ox_id
);
1100 fc_gs_cthdr_build(cthdr
, s_id
, GS_GNN_ID
);
1102 memset(gnnid
, 0, sizeof(fcgs_gnnid_req_t
));
1103 gnnid
->dap
= port_id
;
1104 return sizeof(fcgs_gnnid_req_t
) + sizeof(struct ct_hdr_s
);
1108 fc_ct_rsp_parse(struct ct_hdr_s
*cthdr
)
1110 if (be16_to_cpu(cthdr
->cmd_rsp_code
) != CT_RSP_ACCEPT
) {
1111 if (cthdr
->reason_code
== CT_RSN_LOGICAL_BUSY
)
1112 return FC_PARSE_BUSY
;
1114 return FC_PARSE_FAILURE
;
1121 fc_gs_rjt_build(struct fchs_s
*fchs
, struct ct_hdr_s
*cthdr
,
1122 u32 d_id
, u32 s_id
, u16 ox_id
, u8 reason_code
,
1123 u8 reason_code_expl
)
1125 fc_gsresp_fchdr_build(fchs
, d_id
, s_id
, ox_id
);
1127 cthdr
->cmd_rsp_code
= cpu_to_be16(CT_RSP_REJECT
);
1128 cthdr
->rev_id
= CT_GS3_REVISION
;
1130 cthdr
->reason_code
= reason_code
;
1131 cthdr
->exp_code
= reason_code_expl
;
1132 return sizeof(struct ct_hdr_s
);
1136 fc_scr_build(struct fchs_s
*fchs
, struct fc_scr_s
*scr
,
1137 u8 set_br_reg
, u32 s_id
, u16 ox_id
)
1139 u32 d_id
= bfa_hton3b(FC_FABRIC_CONTROLLER
);
1141 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
1143 memset(scr
, 0, sizeof(struct fc_scr_s
));
1144 scr
->command
= FC_ELS_SCR
;
1145 scr
->reg_func
= FC_SCR_REG_FUNC_FULL
;
1147 scr
->vu_reg_func
= FC_VU_SCR_REG_FUNC_FABRIC_NAME_CHANGE
;
1149 return sizeof(struct fc_scr_s
);
1153 fc_rscn_build(struct fchs_s
*fchs
, struct fc_rscn_pl_s
*rscn
,
1154 u32 s_id
, u16 ox_id
)
1156 u32 d_id
= bfa_hton3b(FC_FABRIC_CONTROLLER
);
1159 fc_els_req_build(fchs
, d_id
, s_id
, ox_id
);
1160 rscn
->command
= FC_ELS_RSCN
;
1161 rscn
->pagelen
= sizeof(rscn
->event
[0]);
1163 payldlen
= sizeof(u32
) + rscn
->pagelen
;
1164 rscn
->payldlen
= cpu_to_be16(payldlen
);
1166 rscn
->event
[0].format
= FC_RSCN_FORMAT_PORTID
;
1167 rscn
->event
[0].portid
= s_id
;
1169 return sizeof(struct fc_rscn_pl_s
);
1173 fc_rftid_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u16 ox_id
,
1174 enum bfa_lport_role roles
)
1176 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1177 struct fcgs_rftid_req_s
*rftid
= (struct fcgs_rftid_req_s
*)(cthdr
+ 1);
1178 u32 type_value
, d_id
= bfa_hton3b(FC_NAME_SERVER
);
1181 fc_gs_fchdr_build(fchs
, d_id
, s_id
, ox_id
);
1182 fc_gs_cthdr_build(cthdr
, s_id
, GS_RFT_ID
);
1184 memset(rftid
, 0, sizeof(struct fcgs_rftid_req_s
));
1188 /* By default, FCP FC4 Type is registered */
1189 index
= FC_TYPE_FCP
>> 5;
1190 type_value
= 1 << (FC_TYPE_FCP
% 32);
1191 rftid
->fc4_type
[index
] = cpu_to_be32(type_value
);
1193 return sizeof(struct fcgs_rftid_req_s
) + sizeof(struct ct_hdr_s
);
1197 fc_rftid_build_sol(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u16 ox_id
,
1198 u8
*fc4_bitmap
, u32 bitmap_size
)
1200 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1201 struct fcgs_rftid_req_s
*rftid
= (struct fcgs_rftid_req_s
*)(cthdr
+ 1);
1202 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1204 fc_gs_fchdr_build(fchs
, d_id
, s_id
, ox_id
);
1205 fc_gs_cthdr_build(cthdr
, s_id
, GS_RFT_ID
);
1207 memset(rftid
, 0, sizeof(struct fcgs_rftid_req_s
));
1210 memcpy((void *)rftid
->fc4_type
, (void *)fc4_bitmap
,
1211 (bitmap_size
< 32 ? bitmap_size
: 32));
1213 return sizeof(struct fcgs_rftid_req_s
) + sizeof(struct ct_hdr_s
);
1217 fc_rffid_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u16 ox_id
,
1218 u8 fc4_type
, u8 fc4_ftrs
)
1220 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1221 struct fcgs_rffid_req_s
*rffid
= (struct fcgs_rffid_req_s
*)(cthdr
+ 1);
1222 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1224 fc_gs_fchdr_build(fchs
, d_id
, s_id
, ox_id
);
1225 fc_gs_cthdr_build(cthdr
, s_id
, GS_RFF_ID
);
1227 memset(rffid
, 0, sizeof(struct fcgs_rffid_req_s
));
1230 rffid
->fc4ftr_bits
= fc4_ftrs
;
1231 rffid
->fc4_type
= fc4_type
;
1233 return sizeof(struct fcgs_rffid_req_s
) + sizeof(struct ct_hdr_s
);
1237 fc_rspnid_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u16 ox_id
,
1241 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1242 struct fcgs_rspnid_req_s
*rspnid
=
1243 (struct fcgs_rspnid_req_s
*)(cthdr
+ 1);
1244 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1246 fc_gs_fchdr_build(fchs
, d_id
, s_id
, ox_id
);
1247 fc_gs_cthdr_build(cthdr
, s_id
, GS_RSPN_ID
);
1249 memset(rspnid
, 0, sizeof(struct fcgs_rspnid_req_s
));
1252 rspnid
->spn_len
= (u8
) strlen((char *)name
);
1253 strncpy((char *)rspnid
->spn
, (char *)name
, rspnid
->spn_len
);
1255 return sizeof(struct fcgs_rspnid_req_s
) + sizeof(struct ct_hdr_s
);
1259 fc_rsnn_nn_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
,
1260 wwn_t node_name
, u8
*name
)
1262 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1263 struct fcgs_rsnn_nn_req_s
*rsnn_nn
=
1264 (struct fcgs_rsnn_nn_req_s
*) (cthdr
+ 1);
1265 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1267 fc_gs_fchdr_build(fchs
, d_id
, s_id
, 0);
1268 fc_gs_cthdr_build(cthdr
, s_id
, GS_RSNN_NN
);
1270 memset(rsnn_nn
, 0, sizeof(struct fcgs_rsnn_nn_req_s
));
1272 rsnn_nn
->node_name
= node_name
;
1273 rsnn_nn
->snn_len
= (u8
) strlen((char *)name
);
1274 strncpy((char *)rsnn_nn
->snn
, (char *)name
, rsnn_nn
->snn_len
);
1276 return sizeof(struct fcgs_rsnn_nn_req_s
) + sizeof(struct ct_hdr_s
);
1280 fc_gid_ft_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u8 fc4_type
)
1283 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1284 struct fcgs_gidft_req_s
*gidft
= (struct fcgs_gidft_req_s
*)(cthdr
+ 1);
1285 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1287 fc_gs_fchdr_build(fchs
, d_id
, s_id
, 0);
1289 fc_gs_cthdr_build(cthdr
, s_id
, GS_GID_FT
);
1291 memset(gidft
, 0, sizeof(struct fcgs_gidft_req_s
));
1292 gidft
->fc4_type
= fc4_type
;
1293 gidft
->domain_id
= 0;
1296 return sizeof(struct fcgs_gidft_req_s
) + sizeof(struct ct_hdr_s
);
1300 fc_rpnid_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u32 port_id
,
1303 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1304 struct fcgs_rpnid_req_s
*rpnid
= (struct fcgs_rpnid_req_s
*)(cthdr
+ 1);
1305 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1307 fc_gs_fchdr_build(fchs
, d_id
, s_id
, 0);
1308 fc_gs_cthdr_build(cthdr
, s_id
, GS_RPN_ID
);
1310 memset(rpnid
, 0, sizeof(struct fcgs_rpnid_req_s
));
1311 rpnid
->port_id
= port_id
;
1312 rpnid
->port_name
= port_name
;
1314 return sizeof(struct fcgs_rpnid_req_s
) + sizeof(struct ct_hdr_s
);
1318 fc_rnnid_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u32 port_id
,
1321 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1322 struct fcgs_rnnid_req_s
*rnnid
= (struct fcgs_rnnid_req_s
*)(cthdr
+ 1);
1323 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1325 fc_gs_fchdr_build(fchs
, d_id
, s_id
, 0);
1326 fc_gs_cthdr_build(cthdr
, s_id
, GS_RNN_ID
);
1328 memset(rnnid
, 0, sizeof(struct fcgs_rnnid_req_s
));
1329 rnnid
->port_id
= port_id
;
1330 rnnid
->node_name
= node_name
;
1332 return sizeof(struct fcgs_rnnid_req_s
) + sizeof(struct ct_hdr_s
);
1336 fc_rcsid_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u32 port_id
,
1339 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1340 struct fcgs_rcsid_req_s
*rcsid
=
1341 (struct fcgs_rcsid_req_s
*) (cthdr
+ 1);
1342 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1344 fc_gs_fchdr_build(fchs
, d_id
, s_id
, 0);
1345 fc_gs_cthdr_build(cthdr
, s_id
, GS_RCS_ID
);
1347 memset(rcsid
, 0, sizeof(struct fcgs_rcsid_req_s
));
1348 rcsid
->port_id
= port_id
;
1351 return sizeof(struct fcgs_rcsid_req_s
) + sizeof(struct ct_hdr_s
);
1355 fc_rptid_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u32 port_id
,
1358 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1359 struct fcgs_rptid_req_s
*rptid
= (struct fcgs_rptid_req_s
*)(cthdr
+ 1);
1360 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1362 fc_gs_fchdr_build(fchs
, d_id
, s_id
, 0);
1363 fc_gs_cthdr_build(cthdr
, s_id
, GS_RPT_ID
);
1365 memset(rptid
, 0, sizeof(struct fcgs_rptid_req_s
));
1366 rptid
->port_id
= port_id
;
1367 rptid
->port_type
= port_type
;
1369 return sizeof(struct fcgs_rptid_req_s
) + sizeof(struct ct_hdr_s
);
1373 fc_ganxt_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, u32 port_id
)
1375 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1376 struct fcgs_ganxt_req_s
*ganxt
= (struct fcgs_ganxt_req_s
*)(cthdr
+ 1);
1377 u32 d_id
= bfa_hton3b(FC_NAME_SERVER
);
1379 fc_gs_fchdr_build(fchs
, d_id
, s_id
, 0);
1380 fc_gs_cthdr_build(cthdr
, s_id
, GS_GA_NXT
);
1382 memset(ganxt
, 0, sizeof(struct fcgs_ganxt_req_s
));
1383 ganxt
->port_id
= port_id
;
1385 return sizeof(struct ct_hdr_s
) + sizeof(struct fcgs_ganxt_req_s
);
1389 * Builds fc hdr and ct hdr for FDMI requests.
1392 fc_fdmi_reqhdr_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
,
1396 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1397 u32 d_id
= bfa_hton3b(FC_MGMT_SERVER
);
1399 fc_gs_fchdr_build(fchs
, d_id
, s_id
, 0);
1400 fc_gs_fdmi_cthdr_build(cthdr
, s_id
, cmd_code
);
1402 return sizeof(struct ct_hdr_s
);
1406 * Given a FC4 Type, this function returns a fc4 type bitmask
1409 fc_get_fc4type_bitmask(u8 fc4_type
, u8
*bit_mask
)
1412 __be32
*ptr
= (__be32
*) bit_mask
;
1416 * @todo : Check for bitmask size
1419 index
= fc4_type
>> 5;
1420 type_value
= 1 << (fc4_type
% 32);
1421 ptr
[index
] = cpu_to_be32(type_value
);
1429 fc_gmal_req_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, wwn_t wwn
)
1431 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1432 fcgs_gmal_req_t
*gmal
= (fcgs_gmal_req_t
*) (cthdr
+ 1);
1433 u32 d_id
= bfa_hton3b(FC_MGMT_SERVER
);
1435 fc_gs_fchdr_build(fchs
, d_id
, s_id
, 0);
1436 fc_gs_ms_cthdr_build(cthdr
, s_id
, GS_FC_GMAL_CMD
,
1437 CT_GSSUBTYPE_CFGSERVER
);
1439 memset(gmal
, 0, sizeof(fcgs_gmal_req_t
));
1442 return sizeof(struct ct_hdr_s
) + sizeof(fcgs_gmal_req_t
);
1446 * GFN (Get Fabric Name) Request
1449 fc_gfn_req_build(struct fchs_s
*fchs
, void *pyld
, u32 s_id
, wwn_t wwn
)
1451 struct ct_hdr_s
*cthdr
= (struct ct_hdr_s
*) pyld
;
1452 fcgs_gfn_req_t
*gfn
= (fcgs_gfn_req_t
*) (cthdr
+ 1);
1453 u32 d_id
= bfa_hton3b(FC_MGMT_SERVER
);
1455 fc_gs_fchdr_build(fchs
, d_id
, s_id
, 0);
1456 fc_gs_ms_cthdr_build(cthdr
, s_id
, GS_FC_GFN_CMD
,
1457 CT_GSSUBTYPE_CFGSERVER
);
1459 memset(gfn
, 0, sizeof(fcgs_gfn_req_t
));
1462 return sizeof(struct ct_hdr_s
) + sizeof(fcgs_gfn_req_t
);