blob: 8258edfa328c85995152c74755545104ba2afeec [file] [log] [blame]
Robert Love42e9a922008-12-09 15:10:17 -08001/*
2 * Copyright(c) 2007 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 _LIBFC_H_
21#define _LIBFC_H_
22
23#include <linux/timer.h>
24#include <linux/if.h>
Robert Love582b45b2009-03-31 15:51:50 -070025#include <linux/percpu.h>
Robert Love42e9a922008-12-09 15:10:17 -080026
27#include <scsi/scsi_transport.h>
28#include <scsi/scsi_transport_fc.h>
29
30#include <scsi/fc/fc_fcp.h>
31#include <scsi/fc/fc_ns.h>
32#include <scsi/fc/fc_els.h>
33#include <scsi/fc/fc_gs.h>
34
35#include <scsi/fc_frame.h>
36
Robert Love42e9a922008-12-09 15:10:17 -080037/*
38 * libfc error codes
39 */
40#define FC_NO_ERR 0 /* no error */
41#define FC_EX_TIMEOUT 1 /* Exchange timeout */
42#define FC_EX_CLOSED 2 /* Exchange closed */
43
44/* some helpful macros */
45
46#define ntohll(x) be64_to_cpu(x)
47#define htonll(x) cpu_to_be64(x)
48
49#define ntoh24(p) (((p)[0] << 16) | ((p)[1] << 8) | ((p)[2]))
50
51#define hton24(p, v) do { \
52 p[0] = (((v) >> 16) & 0xFF); \
53 p[1] = (((v) >> 8) & 0xFF); \
54 p[2] = ((v) & 0xFF); \
55 } while (0)
56
57/*
58 * FC HBA status
59 */
Robert Love42e9a922008-12-09 15:10:17 -080060enum fc_lport_state {
Joe Eykholtb1d9fd52009-07-29 17:04:22 -070061 LPORT_ST_DISABLED = 0,
Robert Love42e9a922008-12-09 15:10:17 -080062 LPORT_ST_FLOGI,
63 LPORT_ST_DNS,
Chris Leechc9c7bd72009-11-03 11:46:51 -080064 LPORT_ST_RNN_ID,
Chris Leech5baa17c2009-11-03 11:46:56 -080065 LPORT_ST_RSNN_NN,
Chris Leechc9866a52009-11-03 11:47:01 -080066 LPORT_ST_RSPN_ID,
Robert Love42e9a922008-12-09 15:10:17 -080067 LPORT_ST_RFT_ID,
68 LPORT_ST_SCR,
69 LPORT_ST_READY,
70 LPORT_ST_LOGO,
71 LPORT_ST_RESET
72};
73
74enum fc_disc_event {
75 DISC_EV_NONE = 0,
76 DISC_EV_SUCCESS,
77 DISC_EV_FAILED
78};
79
80enum fc_rport_state {
Robert Love42e9a922008-12-09 15:10:17 -080081 RPORT_ST_INIT, /* initialized */
82 RPORT_ST_PLOGI, /* waiting for PLOGI completion */
83 RPORT_ST_PRLI, /* waiting for PRLI completion */
84 RPORT_ST_RTV, /* waiting for RTV completion */
85 RPORT_ST_READY, /* ready for use */
86 RPORT_ST_LOGO, /* port logout sent */
Joe Eykholt370c3bd2009-08-25 14:03:47 -070087 RPORT_ST_ADISC, /* Discover Address sent */
Joe Eykholt14194052009-07-29 17:04:43 -070088 RPORT_ST_DELETE, /* port being deleted */
Joe Eykholtb4a9c7e2009-10-21 16:28:30 -070089 RPORT_ST_RESTART, /* remote port being deleted and will restart */
Robert Love42e9a922008-12-09 15:10:17 -080090};
91
Robert Love42e9a922008-12-09 15:10:17 -080092/**
93 * struct fc_disc_port - temporary discovery port to hold rport identifiers
Robert Love9737e6a2009-08-25 14:02:59 -070094 * @lp: Fibre Channel host port instance
95 * @peers: Node for list management during discovery and RSCN processing
96 * @rport_work: Work struct for starting the rport state machine
97 * @port_id: Port ID of the discovered port
Robert Love42e9a922008-12-09 15:10:17 -080098 */
99struct fc_disc_port {
100 struct fc_lport *lp;
101 struct list_head peers;
Robert Love42e9a922008-12-09 15:10:17 -0800102 struct work_struct rport_work;
Robert Love9737e6a2009-08-25 14:02:59 -0700103 u32 port_id;
Robert Love42e9a922008-12-09 15:10:17 -0800104};
105
106enum fc_rport_event {
107 RPORT_EV_NONE = 0,
Joe Eykholt4c0f62b2009-08-25 14:01:12 -0700108 RPORT_EV_READY,
Robert Love42e9a922008-12-09 15:10:17 -0800109 RPORT_EV_FAILED,
110 RPORT_EV_STOP,
111 RPORT_EV_LOGO
112};
113
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700114struct fc_rport_priv;
115
Robert Love42e9a922008-12-09 15:10:17 -0800116struct fc_rport_operations {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700117 void (*event_callback)(struct fc_lport *, struct fc_rport_priv *,
Robert Love42e9a922008-12-09 15:10:17 -0800118 enum fc_rport_event);
119};
120
121/**
122 * struct fc_rport_libfc_priv - libfc internal information about a remote port
123 * @local_port: Fibre Channel host port instance
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700124 * @rp_state: indicates READY for I/O or DELETE when blocked.
125 * @flags: REC and RETRY supported flags
126 * @e_d_tov: error detect timeout value (in msec)
127 * @r_a_tov: resource allocation timeout value (in msec)
128 */
129struct fc_rport_libfc_priv {
130 struct fc_lport *local_port;
131 enum fc_rport_state rp_state;
132 u16 flags;
133 #define FC_RP_FLAGS_REC_SUPPORTED (1 << 0)
134 #define FC_RP_FLAGS_RETRY (1 << 1)
135 unsigned int e_d_tov;
136 unsigned int r_a_tov;
137};
138
139/**
140 * struct fc_rport_priv - libfc rport and discovery info about a remote port
141 * @local_port: Fibre Channel host port instance
Joe Eykholtf211fa52009-08-25 14:01:01 -0700142 * @rport: transport remote port
143 * @kref: reference counter
Robert Love42e9a922008-12-09 15:10:17 -0800144 * @rp_state: state tracks progress of PLOGI, PRLI, and RTV exchanges
Joe Eykholtf211fa52009-08-25 14:01:01 -0700145 * @ids: remote port identifiers and roles
Robert Love42e9a922008-12-09 15:10:17 -0800146 * @flags: REC and RETRY supported flags
147 * @max_seq: maximum number of concurrent sequences
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700148 * @disc_id: discovery identifier
Joe Eykholtf211fa52009-08-25 14:01:01 -0700149 * @maxframe_size: maximum frame size
Robert Love42e9a922008-12-09 15:10:17 -0800150 * @retries: retry count in current state
151 * @e_d_tov: error detect timeout value (in msec)
152 * @r_a_tov: resource allocation timeout value (in msec)
153 * @rp_mutex: mutex protects rport
154 * @retry_work:
155 * @event_callback: Callback for rport READY, FAILED or LOGO
156 */
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700157struct fc_rport_priv {
Robert Love42e9a922008-12-09 15:10:17 -0800158 struct fc_lport *local_port;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700159 struct fc_rport *rport;
160 struct kref kref;
Robert Love42e9a922008-12-09 15:10:17 -0800161 enum fc_rport_state rp_state;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700162 struct fc_rport_identifiers ids;
Robert Love42e9a922008-12-09 15:10:17 -0800163 u16 flags;
Robert Love42e9a922008-12-09 15:10:17 -0800164 u16 max_seq;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700165 u16 disc_id;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700166 u16 maxframe_size;
Robert Love42e9a922008-12-09 15:10:17 -0800167 unsigned int retries;
168 unsigned int e_d_tov;
169 unsigned int r_a_tov;
Robert Love42e9a922008-12-09 15:10:17 -0800170 struct mutex rp_mutex;
171 struct delayed_work retry_work;
172 enum fc_rport_event event;
173 struct fc_rport_operations *ops;
174 struct list_head peers;
175 struct work_struct event_work;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700176 u32 supported_classes;
Robert Love42e9a922008-12-09 15:10:17 -0800177};
178
Robert Love42e9a922008-12-09 15:10:17 -0800179/*
180 * fcoe stats structure
181 */
182struct fcoe_dev_stats {
183 u64 SecondsSinceLastReset;
184 u64 TxFrames;
185 u64 TxWords;
186 u64 RxFrames;
187 u64 RxWords;
188 u64 ErrorFrames;
189 u64 DumpedFrames;
190 u64 LinkFailureCount;
191 u64 LossOfSignalCount;
192 u64 InvalidTxWordCount;
193 u64 InvalidCRCCount;
194 u64 InputRequests;
195 u64 OutputRequests;
196 u64 ControlRequests;
197 u64 InputMegabytes;
198 u64 OutputMegabytes;
199};
200
201/*
202 * els data is used for passing ELS respone specific
203 * data to send ELS response mainly using infomation
204 * in exchange and sequence in EM layer.
205 */
206struct fc_seq_els_data {
207 struct fc_frame *fp;
208 enum fc_els_rjt_reason reason;
209 enum fc_els_rjt_explan explan;
210};
211
212/*
213 * FCP request structure, one for each scsi cmd request
214 */
215struct fc_fcp_pkt {
216 /*
217 * housekeeping stuff
218 */
219 struct fc_lport *lp; /* handle to hba struct */
220 u16 state; /* scsi_pkt state state */
221 u16 tgt_flags; /* target flags */
222 atomic_t ref_cnt; /* fcp pkt ref count */
223 spinlock_t scsi_pkt_lock; /* Must be taken before the host lock
224 * if both are held at the same time */
225 /*
226 * SCSI I/O related stuff
227 */
228 struct scsi_cmnd *cmd; /* scsi command pointer. set/clear
229 * under host lock */
230 struct list_head list; /* tracks queued commands. access under
231 * host lock */
232 /*
233 * timeout related stuff
234 */
235 struct timer_list timer; /* command timer */
236 struct completion tm_done;
237 int wait_for_comp;
238 unsigned long start_time; /* start jiffie */
239 unsigned long end_time; /* end jiffie */
240 unsigned long last_pkt_time; /* jiffies of last frame received */
241
242 /*
243 * scsi cmd and data transfer information
244 */
245 u32 data_len;
246 /*
247 * transport related veriables
248 */
249 struct fcp_cmnd cdb_cmd;
250 size_t xfer_len;
Yi Zoub277d2a2009-02-27 14:07:21 -0800251 u16 xfer_ddp; /* this xfer is ddped */
Robert Love42e9a922008-12-09 15:10:17 -0800252 u32 xfer_contig_end; /* offset of end of contiguous xfer */
253 u16 max_payload; /* max payload size in bytes */
254
255 /*
256 * scsi/fcp return status
257 */
258 u32 io_status; /* SCSI result upper 24 bits */
259 u8 cdb_status;
260 u8 status_code; /* FCP I/O status */
261 /* bit 3 Underrun bit 2: overrun */
262 u8 scsi_comp_flags;
263 u32 req_flags; /* bit 0: read bit:1 write */
264 u32 scsi_resid; /* residule length */
265
266 struct fc_rport *rport; /* remote port pointer */
267 struct fc_seq *seq_ptr; /* current sequence pointer */
268 /*
269 * Error Processing
270 */
271 u8 recov_retry; /* count of recovery retries */
272 struct fc_seq *recov_seq; /* sequence for REC or SRR */
273};
Yi Zoub277d2a2009-02-27 14:07:21 -0800274/*
275 * FC_FCP HELPER FUNCTIONS
276 *****************************/
277static inline bool fc_fcp_is_read(const struct fc_fcp_pkt *fsp)
278{
279 if (fsp && fsp->cmd)
280 return fsp->cmd->sc_data_direction == DMA_FROM_DEVICE;
281 return false;
282}
Robert Love42e9a922008-12-09 15:10:17 -0800283
284/*
285 * Structure and function definitions for managing Fibre Channel Exchanges
286 * and Sequences
287 *
288 * fc_exch holds state for one exchange and links to its active sequence.
289 *
290 * fc_seq holds the state for an individual sequence.
291 */
292
293struct fc_exch_mgr;
Vasu Dev96316092009-07-29 17:05:00 -0700294struct fc_exch_mgr_anchor;
Vasu Deve4bc50b2009-08-25 13:58:47 -0700295extern u16 fc_cpu_mask; /* cpu mask for possible cpus */
Robert Love42e9a922008-12-09 15:10:17 -0800296
297/*
298 * Sequence.
299 */
300struct fc_seq {
301 u8 id; /* seq ID */
302 u16 ssb_stat; /* status flags for sequence status block */
303 u16 cnt; /* frames sent so far on sequence */
304 u32 rec_data; /* FC-4 value for REC */
305};
306
307#define FC_EX_DONE (1 << 0) /* ep is completed */
308#define FC_EX_RST_CLEANUP (1 << 1) /* reset is forcing completion */
309
310/*
311 * Exchange.
312 *
313 * Locking notes: The ex_lock protects following items:
314 * state, esb_stat, f_ctl, seq.ssb_stat
315 * seq_id
316 * sequence allocation
317 */
318struct fc_exch {
319 struct fc_exch_mgr *em; /* exchange manager */
Vasu Devb2f00912009-08-25 13:58:53 -0700320 struct fc_exch_pool *pool; /* per cpu exches pool */
Robert Love42e9a922008-12-09 15:10:17 -0800321 u32 state; /* internal driver state */
322 u16 xid; /* our exchange ID */
323 struct list_head ex_list; /* free or busy list linkage */
324 spinlock_t ex_lock; /* lock covering exchange state */
325 atomic_t ex_refcnt; /* reference counter */
326 struct delayed_work timeout_work; /* timer for upper level protocols */
327 struct fc_lport *lp; /* fc device instance */
328 u16 oxid; /* originator's exchange ID */
329 u16 rxid; /* responder's exchange ID */
330 u32 oid; /* originator's FCID */
331 u32 sid; /* source FCID */
332 u32 did; /* destination FCID */
333 u32 esb_stat; /* exchange status for ESB */
334 u32 r_a_tov; /* r_a_tov from rport (msec) */
335 u8 seq_id; /* next sequence ID to use */
336 u32 f_ctl; /* F_CTL flags for sequences */
337 u8 fh_type; /* frame type */
338 enum fc_class class; /* class of service */
339 struct fc_seq seq; /* single sequence */
340 /*
341 * Handler for responses to this current exchange.
342 */
343 void (*resp)(struct fc_seq *, struct fc_frame *, void *);
344 void (*destructor)(struct fc_seq *, void *);
345 /*
346 * arg is passed as void pointer to exchange
347 * resp and destructor handlers
348 */
349 void *arg;
350};
351#define fc_seq_exch(sp) container_of(sp, struct fc_exch, seq)
352
353struct libfc_function_template {
354
Robert Love42e9a922008-12-09 15:10:17 -0800355 /*
356 * Interface to send a FC frame
Robert Love0ae4d4a2009-02-27 10:55:39 -0800357 *
358 * STATUS: REQUIRED
Robert Love42e9a922008-12-09 15:10:17 -0800359 */
360 int (*frame_send)(struct fc_lport *lp, struct fc_frame *fp);
361
Robert Love42e9a922008-12-09 15:10:17 -0800362 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800363 * Interface to send ELS/CT frames
364 *
365 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800366 */
367 struct fc_seq *(*elsct_send)(struct fc_lport *lport,
Joe Eykholta46f3272009-08-25 14:00:55 -0700368 u32 did,
Robert Love42e9a922008-12-09 15:10:17 -0800369 struct fc_frame *fp,
370 unsigned int op,
371 void (*resp)(struct fc_seq *,
372 struct fc_frame *fp,
373 void *arg),
374 void *arg, u32 timer_msec);
Robert Love42e9a922008-12-09 15:10:17 -0800375
376 /*
377 * Send the FC frame payload using a new exchange and sequence.
378 *
379 * The frame pointer with some of the header's fields must be
380 * filled before calling exch_seq_send(), those fields are,
381 *
382 * - routing control
383 * - FC port did
384 * - FC port sid
385 * - FC header type
386 * - frame control
387 * - parameter or relative offset
388 *
389 * The exchange response handler is set in this routine to resp()
390 * function pointer. It can be called in two scenarios: if a timeout
391 * occurs or if a response frame is received for the exchange. The
392 * fc_frame pointer in response handler will also indicate timeout
393 * as error using IS_ERR related macros.
394 *
395 * The exchange destructor handler is also set in this routine.
396 * The destructor handler is invoked by EM layer when exchange
397 * is about to free, this can be used by caller to free its
398 * resources along with exchange free.
399 *
400 * The arg is passed back to resp and destructor handler.
401 *
402 * The timeout value (in msec) for an exchange is set if non zero
403 * timer_msec argument is specified. The timer is canceled when
404 * it fires or when the exchange is done. The exchange timeout handler
405 * is registered by EM layer.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800406 *
407 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800408 */
409 struct fc_seq *(*exch_seq_send)(struct fc_lport *lp,
410 struct fc_frame *fp,
411 void (*resp)(struct fc_seq *sp,
412 struct fc_frame *fp,
413 void *arg),
414 void (*destructor)(struct fc_seq *sp,
415 void *arg),
416 void *arg, unsigned int timer_msec);
417
418 /*
Yi Zoub277d2a2009-02-27 14:07:21 -0800419 * Sets up the DDP context for a given exchange id on the given
420 * scatterlist if LLD supports DDP for large receive.
421 *
422 * STATUS: OPTIONAL
423 */
424 int (*ddp_setup)(struct fc_lport *lp, u16 xid,
425 struct scatterlist *sgl, unsigned int sgc);
426 /*
427 * Completes the DDP transfer and returns the length of data DDPed
428 * for the given exchange id.
429 *
430 * STATUS: OPTIONAL
431 */
432 int (*ddp_done)(struct fc_lport *lp, u16 xid);
433 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800434 * Send a frame using an existing sequence and exchange.
435 *
436 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800437 */
438 int (*seq_send)(struct fc_lport *lp, struct fc_seq *sp,
439 struct fc_frame *fp);
440
441 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800442 * Send an ELS response using infomation from a previous
443 * exchange and sequence.
444 *
445 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800446 */
447 void (*seq_els_rsp_send)(struct fc_seq *sp, enum fc_els_cmd els_cmd,
448 struct fc_seq_els_data *els_data);
449
450 /*
451 * Abort an exchange and sequence. Generally called because of a
452 * exchange timeout or an abort from the upper layer.
453 *
454 * A timer_msec can be specified for abort timeout, if non-zero
455 * timer_msec value is specified then exchange resp handler
456 * will be called with timeout error if no response to abort.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800457 *
458 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800459 */
460 int (*seq_exch_abort)(const struct fc_seq *req_sp,
461 unsigned int timer_msec);
462
463 /*
464 * Indicate that an exchange/sequence tuple is complete and the memory
465 * allocated for the related objects may be freed.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800466 *
467 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800468 */
469 void (*exch_done)(struct fc_seq *sp);
470
471 /*
Robert Love42e9a922008-12-09 15:10:17 -0800472 * Start a new sequence on the same exchange/sequence tuple.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800473 *
474 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800475 */
476 struct fc_seq *(*seq_start_next)(struct fc_seq *sp);
477
478 /*
479 * Reset an exchange manager, completing all sequences and exchanges.
480 * If s_id is non-zero, reset only exchanges originating from that FID.
481 * If d_id is non-zero, reset only exchanges sending to that FID.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800482 *
483 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800484 */
Abhijeet Joglekar1f6ff362009-02-27 10:54:35 -0800485 void (*exch_mgr_reset)(struct fc_lport *,
Robert Love42e9a922008-12-09 15:10:17 -0800486 u32 s_id, u32 d_id);
487
Robert Love0ae4d4a2009-02-27 10:55:39 -0800488 /*
489 * Flush the rport work queue. Generally used before shutdown.
490 *
491 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800492 */
Robert Love0ae4d4a2009-02-27 10:55:39 -0800493 void (*rport_flush_queue)(void);
Robert Love42e9a922008-12-09 15:10:17 -0800494
495 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800496 * Receive a frame for a local port.
497 *
498 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800499 */
500 void (*lport_recv)(struct fc_lport *lp, struct fc_seq *sp,
501 struct fc_frame *fp);
502
Robert Love0ae4d4a2009-02-27 10:55:39 -0800503 /*
504 * Reset the local port.
505 *
506 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800507 */
Robert Love0ae4d4a2009-02-27 10:55:39 -0800508 int (*lport_reset)(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800509
510 /*
Robert Love9737e6a2009-08-25 14:02:59 -0700511 * Create a remote port with a given port ID
512 *
513 * STATUS: OPTIONAL
Robert Love5101ff92009-02-27 10:55:18 -0800514 */
Robert Love9737e6a2009-08-25 14:02:59 -0700515 struct fc_rport_priv *(*rport_create)(struct fc_lport *, u32);
Robert Love5101ff92009-02-27 10:55:18 -0800516
517 /*
Robert Love42e9a922008-12-09 15:10:17 -0800518 * Initiates the RP state machine. It is called from the LP module.
519 * This function will issue the following commands to the N_Port
520 * identified by the FC ID provided.
521 *
522 * - PLOGI
523 * - PRLI
524 * - RTV
Robert Love0ae4d4a2009-02-27 10:55:39 -0800525 *
526 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800527 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700528 int (*rport_login)(struct fc_rport_priv *);
Robert Love42e9a922008-12-09 15:10:17 -0800529
530 /*
531 * Logoff, and remove the rport from the transport if
532 * it had been added. This will send a LOGO to the target.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800533 *
534 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800535 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700536 int (*rport_logoff)(struct fc_rport_priv *);
Robert Love42e9a922008-12-09 15:10:17 -0800537
538 /*
539 * Recieve a request from a remote port.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800540 *
541 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800542 */
543 void (*rport_recv_req)(struct fc_seq *, struct fc_frame *,
Joe Eykholt131203a2009-08-25 14:03:10 -0700544 struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800545
Robert Love0ae4d4a2009-02-27 10:55:39 -0800546 /*
547 * lookup an rport by it's port ID.
548 *
549 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800550 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700551 struct fc_rport_priv *(*rport_lookup)(const struct fc_lport *, u32);
Robert Love42e9a922008-12-09 15:10:17 -0800552
553 /*
Joe Eykholtf211fa52009-08-25 14:01:01 -0700554 * Destroy an rport after final kref_put().
555 * The argument is a pointer to the kref inside the fc_rport_priv.
556 */
557 void (*rport_destroy)(struct kref *);
558
559 /*
Robert Love42e9a922008-12-09 15:10:17 -0800560 * Send a fcp cmd from fsp pkt.
561 * Called with the SCSI host lock unlocked and irqs disabled.
562 *
563 * The resp handler is called when FCP_RSP received.
564 *
Robert Love0ae4d4a2009-02-27 10:55:39 -0800565 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800566 */
567 int (*fcp_cmd_send)(struct fc_lport *lp, struct fc_fcp_pkt *fsp,
568 void (*resp)(struct fc_seq *, struct fc_frame *fp,
569 void *arg));
570
571 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800572 * Cleanup the FCP layer, used durring link down and reset
573 *
574 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800575 */
576 void (*fcp_cleanup)(struct fc_lport *lp);
577
578 /*
579 * Abort all I/O on a local port
Robert Love0ae4d4a2009-02-27 10:55:39 -0800580 *
581 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800582 */
583 void (*fcp_abort_io)(struct fc_lport *lp);
584
Robert Love0ae4d4a2009-02-27 10:55:39 -0800585 /*
586 * Receive a request for the discovery layer.
587 *
588 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800589 */
Robert Love42e9a922008-12-09 15:10:17 -0800590 void (*disc_recv_req)(struct fc_seq *,
591 struct fc_frame *, struct fc_lport *);
592
593 /*
594 * Start discovery for a local port.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800595 *
596 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800597 */
598 void (*disc_start)(void (*disc_callback)(struct fc_lport *,
599 enum fc_disc_event),
600 struct fc_lport *);
601
602 /*
603 * Stop discovery for a given lport. This will remove
604 * all discovered rports
Robert Love0ae4d4a2009-02-27 10:55:39 -0800605 *
606 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800607 */
608 void (*disc_stop) (struct fc_lport *);
609
610 /*
611 * Stop discovery for a given lport. This will block
612 * until all discovered rports are deleted from the
613 * FC transport class
Robert Love0ae4d4a2009-02-27 10:55:39 -0800614 *
615 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800616 */
617 void (*disc_stop_final) (struct fc_lport *);
618};
619
620/* information used by the discovery layer */
621struct fc_disc {
622 unsigned char retry_count;
Robert Love42e9a922008-12-09 15:10:17 -0800623 unsigned char pending;
624 unsigned char requested;
625 unsigned short seq_count;
626 unsigned char buf_len;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700627 u16 disc_id;
Robert Love42e9a922008-12-09 15:10:17 -0800628
629 void (*disc_callback)(struct fc_lport *,
630 enum fc_disc_event);
631
632 struct list_head rports;
633 struct fc_lport *lport;
634 struct mutex disc_mutex;
635 struct fc_gpn_ft_resp partial_buf; /* partial name buffer */
636 struct delayed_work disc_work;
637};
638
639struct fc_lport {
640 struct list_head list;
641
642 /* Associations */
643 struct Scsi_Host *host;
Vasu Dev96316092009-07-29 17:05:00 -0700644 struct list_head ema_list;
Chris Leech174e1eb2009-11-03 11:46:14 -0800645 struct list_head vports; /* child vports if N_Port */
646 struct fc_vport *vport; /* parent vport if VN_Port */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700647 struct fc_rport_priv *dns_rp;
648 struct fc_rport_priv *ptp_rp;
Robert Love42e9a922008-12-09 15:10:17 -0800649 void *scsi_priv;
650 struct fc_disc disc;
651
652 /* Operational Information */
653 struct libfc_function_template tt;
Vasu Devbc0e17f2009-02-27 10:54:57 -0800654 u8 link_up;
655 u8 qfull;
Robert Love42e9a922008-12-09 15:10:17 -0800656 enum fc_lport_state state;
657 unsigned long boot_time;
658
659 struct fc_host_statistics host_stats;
Robert Love582b45b2009-03-31 15:51:50 -0700660 struct fcoe_dev_stats *dev_stats;
661
Robert Love42e9a922008-12-09 15:10:17 -0800662 u64 wwpn;
663 u64 wwnn;
664 u8 retry_count;
665
666 /* Capabilities */
667 u32 sg_supp:1; /* scatter gather supported */
668 u32 seq_offload:1; /* seq offload supported */
669 u32 crc_offload:1; /* crc offload supported */
670 u32 lro_enabled:1; /* large receive offload */
Chris Leech174e1eb2009-11-03 11:46:14 -0800671 u32 does_npiv:1; /* supports multiple vports */
672 u32 npiv_enabled:1; /* switch/fabric allows NPIV */
Robert Love42e9a922008-12-09 15:10:17 -0800673 u32 mfs; /* max FC payload size */
674 unsigned int service_params;
675 unsigned int e_d_tov;
676 unsigned int r_a_tov;
677 u8 max_retry_count;
Abhijeet Joglekara3666952009-05-01 10:01:26 -0700678 u8 max_rport_retry_count;
Robert Love42e9a922008-12-09 15:10:17 -0800679 u16 link_speed;
680 u16 link_supported_speeds;
681 u16 lro_xid; /* max xid for fcoe lro */
Yi Zouea1e9a92009-02-27 14:07:04 -0800682 unsigned int lso_max; /* max large send size */
Robert Love42e9a922008-12-09 15:10:17 -0800683 struct fc_ns_fts fcts; /* FC-4 type masks */
684 struct fc_els_rnid_gen rnid_gen; /* RNID information */
685
686 /* Semaphores */
687 struct mutex lp_mutex;
688
689 /* Miscellaneous */
690 struct delayed_work retry_work;
Robert Love42e9a922008-12-09 15:10:17 -0800691};
692
Robert Love34f42a02009-02-27 10:55:45 -0800693/*
Robert Love42e9a922008-12-09 15:10:17 -0800694 * FC_LPORT HELPER FUNCTIONS
695 *****************************/
Robert Love42e9a922008-12-09 15:10:17 -0800696static inline int fc_lport_test_ready(struct fc_lport *lp)
697{
698 return lp->state == LPORT_ST_READY;
699}
700
701static inline void fc_set_wwnn(struct fc_lport *lp, u64 wwnn)
702{
703 lp->wwnn = wwnn;
704}
705
706static inline void fc_set_wwpn(struct fc_lport *lp, u64 wwnn)
707{
708 lp->wwpn = wwnn;
709}
710
711static inline void fc_lport_state_enter(struct fc_lport *lp,
712 enum fc_lport_state state)
713{
714 if (state != lp->state)
715 lp->retry_count = 0;
716 lp->state = state;
717}
718
Robert Love582b45b2009-03-31 15:51:50 -0700719static inline int fc_lport_init_stats(struct fc_lport *lp)
720{
721 /* allocate per cpu stats block */
722 lp->dev_stats = alloc_percpu(struct fcoe_dev_stats);
723 if (!lp->dev_stats)
724 return -ENOMEM;
725 return 0;
726}
727
728static inline void fc_lport_free_stats(struct fc_lport *lp)
729{
730 free_percpu(lp->dev_stats);
731}
732
733static inline struct fcoe_dev_stats *fc_lport_get_stats(struct fc_lport *lp)
734{
735 return per_cpu_ptr(lp->dev_stats, smp_processor_id());
736}
737
Vasu Deva0a25da2009-03-17 11:42:29 -0700738static inline void *lport_priv(const struct fc_lport *lp)
739{
740 return (void *)(lp + 1);
741}
742
743/**
744 * libfc_host_alloc() - Allocate a Scsi_Host with room for the fc_lport
745 * @sht: ptr to the scsi host templ
746 * @priv_size: size of private data after fc_lport
747 *
Chris Leech86221962009-11-03 11:46:08 -0800748 * Returns: libfc lport
Vasu Deva0a25da2009-03-17 11:42:29 -0700749 */
Chris Leech86221962009-11-03 11:46:08 -0800750static inline struct fc_lport *
Vasu Deva0a25da2009-03-17 11:42:29 -0700751libfc_host_alloc(struct scsi_host_template *sht, int priv_size)
752{
Chris Leech86221962009-11-03 11:46:08 -0800753 struct fc_lport *lport;
754 struct Scsi_Host *shost;
755
756 shost = scsi_host_alloc(sht, sizeof(*lport) + priv_size);
757 if (!shost)
758 return NULL;
759 lport = shost_priv(shost);
760 lport->host = shost;
761 INIT_LIST_HEAD(&lport->ema_list);
Chris Leech174e1eb2009-11-03 11:46:14 -0800762 INIT_LIST_HEAD(&lport->vports);
Chris Leech86221962009-11-03 11:46:08 -0800763 return lport;
Vasu Deva0a25da2009-03-17 11:42:29 -0700764}
Robert Love42e9a922008-12-09 15:10:17 -0800765
Robert Love34f42a02009-02-27 10:55:45 -0800766/*
Robert Love42e9a922008-12-09 15:10:17 -0800767 * LOCAL PORT LAYER
768 *****************************/
769int fc_lport_init(struct fc_lport *lp);
770
771/*
772 * Destroy the specified local port by finding and freeing all
773 * fc_rports associated with it and then by freeing the fc_lport
774 * itself.
775 */
776int fc_lport_destroy(struct fc_lport *lp);
777
778/*
779 * Logout the specified local port from the fabric
780 */
781int fc_fabric_logoff(struct fc_lport *lp);
782
783/*
784 * Initiate the LP state machine. This handler will use fc_host_attr
785 * to store the FLOGI service parameters, so fc_host_attr must be
786 * initialized before calling this handler.
787 */
788int fc_fabric_login(struct fc_lport *lp);
789
790/*
791 * The link is up for the given local port.
792 */
Chris Leech8faecdd2009-11-03 11:46:19 -0800793void __fc_linkup(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800794void fc_linkup(struct fc_lport *);
795
796/*
797 * Link is down for the given local port.
798 */
Chris Leech8faecdd2009-11-03 11:46:19 -0800799void __fc_linkdown(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800800void fc_linkdown(struct fc_lport *);
801
802/*
Robert Love42e9a922008-12-09 15:10:17 -0800803 * Configure the local port.
804 */
805int fc_lport_config(struct fc_lport *);
806
807/*
808 * Reset the local port.
809 */
810int fc_lport_reset(struct fc_lport *);
811
812/*
813 * Set the mfs or reset
814 */
815int fc_set_mfs(struct fc_lport *lp, u32 mfs);
816
Chris Leech174e1eb2009-11-03 11:46:14 -0800817/*
818 * Allocate a new lport struct for an NPIV VN_Port
819 */
820struct fc_lport *libfc_vport_create(struct fc_vport *vport, int privsize);
821
822/*
823 * Find an NPIV VN_Port by port ID
824 */
825struct fc_lport *fc_vport_id_lookup(struct fc_lport *n_port, u32 port_id);
Robert Love42e9a922008-12-09 15:10:17 -0800826
Robert Love34f42a02009-02-27 10:55:45 -0800827/*
Chris Leech8faecdd2009-11-03 11:46:19 -0800828 * NPIV VN_Port link state management
829 */
830void fc_vport_setlink(struct fc_lport *vn_port);
831void fc_vports_linkchange(struct fc_lport *n_port);
832
833/*
Robert Love42e9a922008-12-09 15:10:17 -0800834 * REMOTE PORT LAYER
835 *****************************/
836int fc_rport_init(struct fc_lport *lp);
837void fc_rport_terminate_io(struct fc_rport *rp);
838
Robert Love34f42a02009-02-27 10:55:45 -0800839/*
Robert Love42e9a922008-12-09 15:10:17 -0800840 * DISCOVERY LAYER
841 *****************************/
842int fc_disc_init(struct fc_lport *lp);
843
844
Robert Love34f42a02009-02-27 10:55:45 -0800845/*
Robert Love42e9a922008-12-09 15:10:17 -0800846 * SCSI LAYER
847 *****************************/
848/*
849 * Initialize the SCSI block of libfc
850 */
851int fc_fcp_init(struct fc_lport *);
852
853/*
854 * This section provides an API which allows direct interaction
855 * with the SCSI-ml. Each of these functions satisfies a function
856 * pointer defined in Scsi_Host and therefore is always called
857 * directly from the SCSI-ml.
858 */
859int fc_queuecommand(struct scsi_cmnd *sc_cmd,
860 void (*done)(struct scsi_cmnd *));
861
862/*
Robert Love42e9a922008-12-09 15:10:17 -0800863 * Send an ABTS frame to the target device. The sc_cmd argument
864 * is a pointer to the SCSI command to be aborted.
865 */
866int fc_eh_abort(struct scsi_cmnd *sc_cmd);
867
868/*
869 * Reset a LUN by sending send the tm cmd to the target.
870 */
871int fc_eh_device_reset(struct scsi_cmnd *sc_cmd);
872
873/*
874 * Reset the host adapter.
875 */
876int fc_eh_host_reset(struct scsi_cmnd *sc_cmd);
877
878/*
879 * Check rport status.
880 */
881int fc_slave_alloc(struct scsi_device *sdev);
882
883/*
884 * Adjust the queue depth.
885 */
Mike Christiee881a172009-10-15 17:46:39 -0700886int fc_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason);
Robert Love42e9a922008-12-09 15:10:17 -0800887
888/*
889 * Change the tag type.
890 */
891int fc_change_queue_type(struct scsi_device *sdev, int tag_type);
892
893/*
894 * Free memory pools used by the FCP layer.
895 */
896void fc_fcp_destroy(struct fc_lport *);
897
Robert Love34f42a02009-02-27 10:55:45 -0800898/*
Robert Love42e9a922008-12-09 15:10:17 -0800899 * ELS/CT interface
900 *****************************/
901/*
902 * Initializes ELS/CT interface
903 */
904int fc_elsct_init(struct fc_lport *lp);
Chris Leech11b56182009-11-03 11:46:29 -0800905struct fc_seq *fc_elsct_send(struct fc_lport *lport,
906 u32 did,
907 struct fc_frame *fp,
908 unsigned int op,
909 void (*resp)(struct fc_seq *,
910 struct fc_frame *fp,
911 void *arg),
912 void *arg, u32 timer_msec);
913void fc_lport_flogi_resp(struct fc_seq *, struct fc_frame *, void *);
914void fc_lport_logo_resp(struct fc_seq *, struct fc_frame *, void *);
Robert Love42e9a922008-12-09 15:10:17 -0800915
916
Robert Love34f42a02009-02-27 10:55:45 -0800917/*
Robert Love42e9a922008-12-09 15:10:17 -0800918 * EXCHANGE MANAGER LAYER
919 *****************************/
920/*
921 * Initializes Exchange Manager related
922 * function pointers in struct libfc_function_template.
923 */
924int fc_exch_init(struct fc_lport *lp);
925
926/*
Vasu Dev96316092009-07-29 17:05:00 -0700927 * Adds Exchange Manager (EM) mp to lport.
928 *
929 * Adds specified mp to lport using struct fc_exch_mgr_anchor,
930 * the struct fc_exch_mgr_anchor allows same EM sharing by
931 * more than one lport with their specified match function,
932 * the match function is used in allocating exchange from
933 * added mp.
934 */
935struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport,
936 struct fc_exch_mgr *mp,
937 bool (*match)(struct fc_frame *));
938
939/*
940 * Deletes Exchange Manager (EM) from lport by removing
941 * its anchor ema from lport.
942 *
943 * If removed anchor ema was the last user of its associated EM
944 * then also destroys associated EM.
945 */
946void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema);
947
948/*
Chris Leech174e1eb2009-11-03 11:46:14 -0800949 * Clone an exchange manager list, getting reference holds for each EM.
950 * This is for use with NPIV and sharing the X_ID space between VN_Ports.
951 */
952int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst);
953
954/*
Robert Love42e9a922008-12-09 15:10:17 -0800955 * Allocates an Exchange Manager (EM).
956 *
957 * The EM manages exchanges for their allocation and
958 * free, also allows exchange lookup for received
959 * frame.
960 *
961 * The class is used for initializing FC class of
962 * allocated exchange from EM.
963 *
964 * The min_xid and max_xid will limit new
965 * exchange ID (XID) within this range for
966 * a new exchange.
967 * The LLD may choose to have multiple EMs,
968 * e.g. one EM instance per CPU receive thread in LLD.
Robert Love42e9a922008-12-09 15:10:17 -0800969 *
Vasu Dev52ff8782009-07-29 17:05:10 -0700970 * Specified match function is used in allocating exchanges
971 * from newly allocated EM.
Robert Love42e9a922008-12-09 15:10:17 -0800972 */
973struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lp,
974 enum fc_class class,
975 u16 min_xid,
Vasu Dev52ff8782009-07-29 17:05:10 -0700976 u16 max_xid,
977 bool (*match)(struct fc_frame *));
Robert Love42e9a922008-12-09 15:10:17 -0800978
979/*
Vasu Dev52ff8782009-07-29 17:05:10 -0700980 * Free all exchange managers of a lport.
Robert Love42e9a922008-12-09 15:10:17 -0800981 */
Vasu Dev52ff8782009-07-29 17:05:10 -0700982void fc_exch_mgr_free(struct fc_lport *lport);
Robert Love42e9a922008-12-09 15:10:17 -0800983
984/*
985 * Receive a frame on specified local port and exchange manager.
986 */
Vasu Dev52ff8782009-07-29 17:05:10 -0700987void fc_exch_recv(struct fc_lport *lp, struct fc_frame *fp);
Robert Love42e9a922008-12-09 15:10:17 -0800988
989/*
Vasu Devb2f00912009-08-25 13:58:53 -0700990 * Reset all EMs of a lport, releasing its all sequences and
991 * exchanges. If sid is non-zero, then reset only exchanges
992 * we sourced from that FID. If did is non-zero, reset only
993 * exchanges destined to that FID.
Robert Love42e9a922008-12-09 15:10:17 -0800994 */
Abhijeet Joglekar1f6ff362009-02-27 10:54:35 -0800995void fc_exch_mgr_reset(struct fc_lport *, u32 s_id, u32 d_id);
Robert Love42e9a922008-12-09 15:10:17 -0800996
997/*
998 * Functions for fc_functions_template
999 */
1000void fc_get_host_speed(struct Scsi_Host *shost);
1001void fc_get_host_port_type(struct Scsi_Host *shost);
1002void fc_get_host_port_state(struct Scsi_Host *shost);
1003void fc_set_rport_loss_tmo(struct fc_rport *rport, u32 timeout);
1004struct fc_host_statistics *fc_get_host_stats(struct Scsi_Host *);
1005
Robert Love42e9a922008-12-09 15:10:17 -08001006#endif /* _LIBFC_H_ */