Robert Love | 42e9a92 | 2008-12-09 15:10:17 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright(c) 2008 Intel Corporation. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms and conditions of the GNU General Public License, |
| 6 | * version 2, as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 11 | * more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License along with |
| 14 | * this program; if not, write to the Free Software Foundation, Inc., |
| 15 | * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 16 | * |
| 17 | * Maintained at www.Open-FCoE.org |
| 18 | */ |
| 19 | |
| 20 | #ifndef _FC_ENCODE_H_ |
| 21 | #define _FC_ENCODE_H_ |
| 22 | #include <asm/unaligned.h> |
| 23 | |
| 24 | struct fc_ns_rft { |
| 25 | struct fc_ns_fid fid; /* port ID object */ |
| 26 | struct fc_ns_fts fts; /* FC4-types object */ |
| 27 | }; |
| 28 | |
| 29 | struct fc_ct_req { |
| 30 | struct fc_ct_hdr hdr; |
| 31 | union { |
| 32 | struct fc_ns_gid_ft gid; |
| 33 | struct fc_ns_rn_id rn; |
| 34 | struct fc_ns_rft rft; |
| 35 | } payload; |
| 36 | }; |
| 37 | |
| 38 | /** |
| 39 | * fill FC header fields in specified fc_frame |
| 40 | */ |
| 41 | static inline void fc_fill_fc_hdr(struct fc_frame *fp, enum fc_rctl r_ctl, |
| 42 | u32 did, u32 sid, enum fc_fh_type type, |
| 43 | u32 f_ctl, u32 parm_offset) |
| 44 | { |
| 45 | struct fc_frame_header *fh; |
| 46 | |
| 47 | fh = fc_frame_header_get(fp); |
| 48 | WARN_ON(r_ctl == 0); |
| 49 | fh->fh_r_ctl = r_ctl; |
| 50 | hton24(fh->fh_d_id, did); |
| 51 | hton24(fh->fh_s_id, sid); |
| 52 | fh->fh_type = type; |
| 53 | hton24(fh->fh_f_ctl, f_ctl); |
| 54 | fh->fh_cs_ctl = 0; |
| 55 | fh->fh_df_ctl = 0; |
| 56 | fh->fh_parm_offset = htonl(parm_offset); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * fc_ct_hdr_fill- fills ct header and reset ct payload |
| 61 | * returns pointer to ct request. |
| 62 | */ |
| 63 | static inline struct fc_ct_req *fc_ct_hdr_fill(const struct fc_frame *fp, |
| 64 | unsigned int op, size_t req_size) |
| 65 | { |
| 66 | struct fc_ct_req *ct; |
| 67 | size_t ct_plen; |
| 68 | |
| 69 | ct_plen = sizeof(struct fc_ct_hdr) + req_size; |
| 70 | ct = fc_frame_payload_get(fp, ct_plen); |
| 71 | memset(ct, 0, ct_plen); |
| 72 | ct->hdr.ct_rev = FC_CT_REV; |
| 73 | ct->hdr.ct_fs_type = FC_FST_DIR; |
| 74 | ct->hdr.ct_fs_subtype = FC_NS_SUBTYPE; |
| 75 | ct->hdr.ct_cmd = htons((u16) op); |
| 76 | return ct; |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * fc_ct_fill - Fill in a name service request frame |
| 81 | */ |
| 82 | static inline int fc_ct_fill(struct fc_lport *lport, struct fc_frame *fp, |
| 83 | unsigned int op, enum fc_rctl *r_ctl, u32 *did, |
| 84 | enum fc_fh_type *fh_type) |
| 85 | { |
| 86 | struct fc_ct_req *ct; |
| 87 | |
| 88 | switch (op) { |
| 89 | case FC_NS_GPN_FT: |
| 90 | ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_gid_ft)); |
| 91 | ct->payload.gid.fn_fc4_type = FC_TYPE_FCP; |
| 92 | break; |
| 93 | |
| 94 | case FC_NS_RFT_ID: |
| 95 | ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rft)); |
| 96 | hton24(ct->payload.rft.fid.fp_fid, |
| 97 | fc_host_port_id(lport->host)); |
| 98 | ct->payload.rft.fts = lport->fcts; |
| 99 | break; |
| 100 | |
| 101 | case FC_NS_RPN_ID: |
| 102 | ct = fc_ct_hdr_fill(fp, op, sizeof(struct fc_ns_rn_id)); |
| 103 | hton24(ct->payload.rn.fr_fid.fp_fid, |
| 104 | fc_host_port_id(lport->host)); |
| 105 | ct->payload.rft.fts = lport->fcts; |
| 106 | put_unaligned_be64(lport->wwpn, &ct->payload.rn.fr_wwn); |
| 107 | break; |
| 108 | |
| 109 | default: |
| 110 | FC_DBG("Invalid op code %x \n", op); |
| 111 | return -EINVAL; |
| 112 | } |
| 113 | *r_ctl = FC_RCTL_DD_UNSOL_CTL; |
| 114 | *did = FC_FID_DIR_SERV; |
| 115 | *fh_type = FC_TYPE_CT; |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * fc_plogi_fill - Fill in plogi request frame |
| 121 | */ |
| 122 | static inline void fc_plogi_fill(struct fc_lport *lport, struct fc_frame *fp, |
| 123 | unsigned int op) |
| 124 | { |
| 125 | struct fc_els_flogi *plogi; |
| 126 | struct fc_els_csp *csp; |
| 127 | struct fc_els_cssp *cp; |
| 128 | |
| 129 | plogi = fc_frame_payload_get(fp, sizeof(*plogi)); |
| 130 | memset(plogi, 0, sizeof(*plogi)); |
| 131 | plogi->fl_cmd = (u8) op; |
| 132 | put_unaligned_be64(lport->wwpn, &plogi->fl_wwpn); |
| 133 | put_unaligned_be64(lport->wwnn, &plogi->fl_wwnn); |
| 134 | |
| 135 | csp = &plogi->fl_csp; |
| 136 | csp->sp_hi_ver = 0x20; |
| 137 | csp->sp_lo_ver = 0x20; |
| 138 | csp->sp_bb_cred = htons(10); /* this gets set by gateway */ |
| 139 | csp->sp_bb_data = htons((u16) lport->mfs); |
| 140 | cp = &plogi->fl_cssp[3 - 1]; /* class 3 parameters */ |
| 141 | cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ); |
| 142 | csp->sp_features = htons(FC_SP_FT_CIRO); |
| 143 | csp->sp_tot_seq = htons(255); /* seq. we accept */ |
| 144 | csp->sp_rel_off = htons(0x1f); |
| 145 | csp->sp_e_d_tov = htonl(lport->e_d_tov); |
| 146 | |
| 147 | cp->cp_rdfs = htons((u16) lport->mfs); |
| 148 | cp->cp_con_seq = htons(255); |
| 149 | cp->cp_open_seq = 1; |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * fc_flogi_fill - Fill in a flogi request frame. |
| 154 | */ |
| 155 | static inline void fc_flogi_fill(struct fc_lport *lport, struct fc_frame *fp) |
| 156 | { |
| 157 | struct fc_els_csp *sp; |
| 158 | struct fc_els_cssp *cp; |
| 159 | struct fc_els_flogi *flogi; |
| 160 | |
| 161 | flogi = fc_frame_payload_get(fp, sizeof(*flogi)); |
| 162 | memset(flogi, 0, sizeof(*flogi)); |
| 163 | flogi->fl_cmd = (u8) ELS_FLOGI; |
| 164 | put_unaligned_be64(lport->wwpn, &flogi->fl_wwpn); |
| 165 | put_unaligned_be64(lport->wwnn, &flogi->fl_wwnn); |
| 166 | sp = &flogi->fl_csp; |
| 167 | sp->sp_hi_ver = 0x20; |
| 168 | sp->sp_lo_ver = 0x20; |
| 169 | sp->sp_bb_cred = htons(10); /* this gets set by gateway */ |
| 170 | sp->sp_bb_data = htons((u16) lport->mfs); |
| 171 | cp = &flogi->fl_cssp[3 - 1]; /* class 3 parameters */ |
| 172 | cp->cp_class = htons(FC_CPC_VALID | FC_CPC_SEQ); |
| 173 | } |
| 174 | |
| 175 | /** |
| 176 | * fc_logo_fill - Fill in a logo request frame. |
| 177 | */ |
| 178 | static inline void fc_logo_fill(struct fc_lport *lport, struct fc_frame *fp) |
| 179 | { |
| 180 | struct fc_els_logo *logo; |
| 181 | |
| 182 | logo = fc_frame_payload_get(fp, sizeof(*logo)); |
| 183 | memset(logo, 0, sizeof(*logo)); |
| 184 | logo->fl_cmd = ELS_LOGO; |
| 185 | hton24(logo->fl_n_port_id, fc_host_port_id(lport->host)); |
| 186 | logo->fl_n_port_wwn = htonll(lport->wwpn); |
| 187 | } |
| 188 | |
| 189 | /** |
| 190 | * fc_rtv_fill - Fill in RTV (read timeout value) request frame. |
| 191 | */ |
| 192 | static inline void fc_rtv_fill(struct fc_lport *lport, struct fc_frame *fp) |
| 193 | { |
| 194 | struct fc_els_rtv *rtv; |
| 195 | |
| 196 | rtv = fc_frame_payload_get(fp, sizeof(*rtv)); |
| 197 | memset(rtv, 0, sizeof(*rtv)); |
| 198 | rtv->rtv_cmd = ELS_RTV; |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * fc_rec_fill - Fill in rec request frame |
| 203 | */ |
| 204 | static inline void fc_rec_fill(struct fc_lport *lport, struct fc_frame *fp) |
| 205 | { |
| 206 | struct fc_els_rec *rec; |
| 207 | struct fc_exch *ep = fc_seq_exch(fr_seq(fp)); |
| 208 | |
| 209 | rec = fc_frame_payload_get(fp, sizeof(*rec)); |
| 210 | memset(rec, 0, sizeof(*rec)); |
| 211 | rec->rec_cmd = ELS_REC; |
| 212 | hton24(rec->rec_s_id, fc_host_port_id(lport->host)); |
| 213 | rec->rec_ox_id = htons(ep->oxid); |
| 214 | rec->rec_rx_id = htons(ep->rxid); |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * fc_prli_fill - Fill in prli request frame |
| 219 | */ |
| 220 | static inline void fc_prli_fill(struct fc_lport *lport, struct fc_frame *fp) |
| 221 | { |
| 222 | struct { |
| 223 | struct fc_els_prli prli; |
| 224 | struct fc_els_spp spp; |
| 225 | } *pp; |
| 226 | |
| 227 | pp = fc_frame_payload_get(fp, sizeof(*pp)); |
| 228 | memset(pp, 0, sizeof(*pp)); |
| 229 | pp->prli.prli_cmd = ELS_PRLI; |
| 230 | pp->prli.prli_spp_len = sizeof(struct fc_els_spp); |
| 231 | pp->prli.prli_len = htons(sizeof(*pp)); |
| 232 | pp->spp.spp_type = FC_TYPE_FCP; |
| 233 | pp->spp.spp_flags = FC_SPP_EST_IMG_PAIR; |
| 234 | pp->spp.spp_params = htonl(lport->service_params); |
| 235 | } |
| 236 | |
| 237 | /** |
| 238 | * fc_scr_fill - Fill in a scr request frame. |
| 239 | */ |
| 240 | static inline void fc_scr_fill(struct fc_lport *lport, struct fc_frame *fp) |
| 241 | { |
| 242 | struct fc_els_scr *scr; |
| 243 | |
| 244 | scr = fc_frame_payload_get(fp, sizeof(*scr)); |
| 245 | memset(scr, 0, sizeof(*scr)); |
| 246 | scr->scr_cmd = ELS_SCR; |
| 247 | scr->scr_reg_func = ELS_SCRF_FULL; |
| 248 | } |
| 249 | |
| 250 | /** |
| 251 | * fc_els_fill - Fill in an ELS request frame |
| 252 | */ |
| 253 | static inline int fc_els_fill(struct fc_lport *lport, struct fc_rport *rport, |
| 254 | struct fc_frame *fp, unsigned int op, |
| 255 | enum fc_rctl *r_ctl, u32 *did, enum fc_fh_type *fh_type) |
| 256 | { |
| 257 | switch (op) { |
| 258 | case ELS_PLOGI: |
| 259 | fc_plogi_fill(lport, fp, ELS_PLOGI); |
| 260 | *did = rport->port_id; |
| 261 | break; |
| 262 | |
| 263 | case ELS_FLOGI: |
| 264 | fc_flogi_fill(lport, fp); |
| 265 | *did = FC_FID_FLOGI; |
| 266 | break; |
| 267 | |
| 268 | case ELS_LOGO: |
| 269 | fc_logo_fill(lport, fp); |
| 270 | *did = FC_FID_FLOGI; |
| 271 | /* |
| 272 | * if rport is valid then it |
| 273 | * is port logo, therefore |
| 274 | * set did to rport id. |
| 275 | */ |
| 276 | if (rport) |
| 277 | *did = rport->port_id; |
| 278 | break; |
| 279 | |
| 280 | case ELS_RTV: |
| 281 | fc_rtv_fill(lport, fp); |
| 282 | *did = rport->port_id; |
| 283 | break; |
| 284 | |
| 285 | case ELS_REC: |
| 286 | fc_rec_fill(lport, fp); |
| 287 | *did = rport->port_id; |
| 288 | break; |
| 289 | |
| 290 | case ELS_PRLI: |
| 291 | fc_prli_fill(lport, fp); |
| 292 | *did = rport->port_id; |
| 293 | break; |
| 294 | |
| 295 | case ELS_SCR: |
| 296 | fc_scr_fill(lport, fp); |
| 297 | *did = FC_FID_FCTRL; |
| 298 | break; |
| 299 | |
| 300 | default: |
| 301 | FC_DBG("Invalid op code %x \n", op); |
| 302 | return -EINVAL; |
| 303 | } |
| 304 | |
| 305 | *r_ctl = FC_RCTL_ELS_REQ; |
| 306 | *fh_type = FC_TYPE_ELS; |
| 307 | return 0; |
| 308 | } |
| 309 | #endif /* _FC_ENCODE_H_ */ |