xref: /openbmc/linux/include/scsi/libfc.h (revision 86221969)
1 /*
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>
25 #include <linux/percpu.h>
26 
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 
37 /*
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  */
60 enum fc_lport_state {
61 	LPORT_ST_DISABLED = 0,
62 	LPORT_ST_FLOGI,
63 	LPORT_ST_DNS,
64 	LPORT_ST_RPN_ID,
65 	LPORT_ST_RFT_ID,
66 	LPORT_ST_SCR,
67 	LPORT_ST_READY,
68 	LPORT_ST_LOGO,
69 	LPORT_ST_RESET
70 };
71 
72 enum fc_disc_event {
73 	DISC_EV_NONE = 0,
74 	DISC_EV_SUCCESS,
75 	DISC_EV_FAILED
76 };
77 
78 enum fc_rport_state {
79 	RPORT_ST_INIT,		/* initialized */
80 	RPORT_ST_PLOGI,		/* waiting for PLOGI completion */
81 	RPORT_ST_PRLI,		/* waiting for PRLI completion */
82 	RPORT_ST_RTV,		/* waiting for RTV completion */
83 	RPORT_ST_READY,		/* ready for use */
84 	RPORT_ST_LOGO,		/* port logout sent */
85 	RPORT_ST_ADISC,		/* Discover Address sent */
86 	RPORT_ST_DELETE,	/* port being deleted */
87 	RPORT_ST_RESTART,       /* remote port being deleted and will restart */
88 };
89 
90 /**
91  * struct fc_disc_port - temporary discovery port to hold rport identifiers
92  * @lp:         Fibre Channel host port instance
93  * @peers:      Node for list management during discovery and RSCN processing
94  * @rport_work: Work struct for starting the rport state machine
95  * @port_id:    Port ID of the discovered port
96  */
97 struct fc_disc_port {
98 	struct fc_lport             *lp;
99 	struct list_head            peers;
100 	struct work_struct	    rport_work;
101 	u32                         port_id;
102 };
103 
104 enum fc_rport_event {
105 	RPORT_EV_NONE = 0,
106 	RPORT_EV_READY,
107 	RPORT_EV_FAILED,
108 	RPORT_EV_STOP,
109 	RPORT_EV_LOGO
110 };
111 
112 struct fc_rport_priv;
113 
114 struct fc_rport_operations {
115 	void (*event_callback)(struct fc_lport *, struct fc_rport_priv *,
116 			       enum fc_rport_event);
117 };
118 
119 /**
120  * struct fc_rport_libfc_priv - libfc internal information about a remote port
121  * @local_port: Fibre Channel host port instance
122  * @rp_state: indicates READY for I/O or DELETE when blocked.
123  * @flags: REC and RETRY supported flags
124  * @e_d_tov: error detect timeout value (in msec)
125  * @r_a_tov: resource allocation timeout value (in msec)
126  */
127 struct fc_rport_libfc_priv {
128 	struct fc_lport		   *local_port;
129 	enum fc_rport_state        rp_state;
130 	u16			   flags;
131 	#define FC_RP_FLAGS_REC_SUPPORTED	(1 << 0)
132 	#define FC_RP_FLAGS_RETRY		(1 << 1)
133 	unsigned int	           e_d_tov;
134 	unsigned int	           r_a_tov;
135 };
136 
137 /**
138  * struct fc_rport_priv - libfc rport and discovery info about a remote port
139  * @local_port: Fibre Channel host port instance
140  * @rport: transport remote port
141  * @kref: reference counter
142  * @rp_state: state tracks progress of PLOGI, PRLI, and RTV exchanges
143  * @ids: remote port identifiers and roles
144  * @flags: REC and RETRY supported flags
145  * @max_seq: maximum number of concurrent sequences
146  * @disc_id: discovery identifier
147  * @maxframe_size: maximum frame size
148  * @retries: retry count in current state
149  * @e_d_tov: error detect timeout value (in msec)
150  * @r_a_tov: resource allocation timeout value (in msec)
151  * @rp_mutex: mutex protects rport
152  * @retry_work:
153  * @event_callback: Callback for rport READY, FAILED or LOGO
154  */
155 struct fc_rport_priv {
156 	struct fc_lport		   *local_port;
157 	struct fc_rport		   *rport;
158 	struct kref		   kref;
159 	enum fc_rport_state        rp_state;
160 	struct fc_rport_identifiers ids;
161 	u16			   flags;
162 	u16		           max_seq;
163 	u16			   disc_id;
164 	u16			   maxframe_size;
165 	unsigned int	           retries;
166 	unsigned int	           e_d_tov;
167 	unsigned int	           r_a_tov;
168 	struct mutex               rp_mutex;
169 	struct delayed_work	   retry_work;
170 	enum fc_rport_event        event;
171 	struct fc_rport_operations *ops;
172 	struct list_head           peers;
173 	struct work_struct         event_work;
174 	u32			   supported_classes;
175 };
176 
177 /*
178  * fcoe stats structure
179  */
180 struct fcoe_dev_stats {
181 	u64		SecondsSinceLastReset;
182 	u64		TxFrames;
183 	u64		TxWords;
184 	u64		RxFrames;
185 	u64		RxWords;
186 	u64		ErrorFrames;
187 	u64		DumpedFrames;
188 	u64		LinkFailureCount;
189 	u64		LossOfSignalCount;
190 	u64		InvalidTxWordCount;
191 	u64		InvalidCRCCount;
192 	u64		InputRequests;
193 	u64		OutputRequests;
194 	u64		ControlRequests;
195 	u64		InputMegabytes;
196 	u64		OutputMegabytes;
197 };
198 
199 /*
200  * els data is used for passing ELS respone specific
201  * data to send ELS response mainly using infomation
202  * in exchange and sequence in EM layer.
203  */
204 struct fc_seq_els_data {
205 	struct fc_frame *fp;
206 	enum fc_els_rjt_reason reason;
207 	enum fc_els_rjt_explan explan;
208 };
209 
210 /*
211  * FCP request structure, one for each scsi cmd request
212  */
213 struct fc_fcp_pkt {
214 	/*
215 	 * housekeeping stuff
216 	 */
217 	struct fc_lport *lp;	/* handle to hba struct */
218 	u16		state;		/* scsi_pkt state state */
219 	u16		tgt_flags;	/* target flags	 */
220 	atomic_t	ref_cnt;	/* fcp pkt ref count */
221 	spinlock_t	scsi_pkt_lock;	/* Must be taken before the host lock
222 					 * if both are held at the same time */
223 	/*
224 	 * SCSI I/O related stuff
225 	 */
226 	struct scsi_cmnd *cmd;		/* scsi command pointer. set/clear
227 					 * under host lock */
228 	struct list_head list;		/* tracks queued commands. access under
229 					 * host lock */
230 	/*
231 	 * timeout related stuff
232 	 */
233 	struct timer_list timer;	/* command timer */
234 	struct completion tm_done;
235 	int	wait_for_comp;
236 	unsigned long	start_time;	/* start jiffie */
237 	unsigned long	end_time;	/* end jiffie */
238 	unsigned long	last_pkt_time;	 /* jiffies of last frame received */
239 
240 	/*
241 	 * scsi cmd and data transfer information
242 	 */
243 	u32		data_len;
244 	/*
245 	 * transport related veriables
246 	 */
247 	struct fcp_cmnd cdb_cmd;
248 	size_t		xfer_len;
249 	u16		xfer_ddp;	/* this xfer is ddped */
250 	u32		xfer_contig_end; /* offset of end of contiguous xfer */
251 	u16		max_payload;	/* max payload size in bytes */
252 
253 	/*
254 	 * scsi/fcp return status
255 	 */
256 	u32		io_status;	/* SCSI result upper 24 bits */
257 	u8		cdb_status;
258 	u8		status_code;	/* FCP I/O status */
259 	/* bit 3 Underrun bit 2: overrun */
260 	u8		scsi_comp_flags;
261 	u32		req_flags;	/* bit 0: read bit:1 write */
262 	u32		scsi_resid;	/* residule length */
263 
264 	struct fc_rport	*rport;		/* remote port pointer */
265 	struct fc_seq	*seq_ptr;	/* current sequence pointer */
266 	/*
267 	 * Error Processing
268 	 */
269 	u8		recov_retry;	/* count of recovery retries */
270 	struct fc_seq	*recov_seq;	/* sequence for REC or SRR */
271 };
272 /*
273  * FC_FCP HELPER FUNCTIONS
274  *****************************/
275 static inline bool fc_fcp_is_read(const struct fc_fcp_pkt *fsp)
276 {
277 	if (fsp && fsp->cmd)
278 		return fsp->cmd->sc_data_direction == DMA_FROM_DEVICE;
279 	return false;
280 }
281 
282 /*
283  * Structure and function definitions for managing Fibre Channel Exchanges
284  * and Sequences
285  *
286  * fc_exch holds state for one exchange and links to its active sequence.
287  *
288  * fc_seq holds the state for an individual sequence.
289  */
290 
291 struct fc_exch_mgr;
292 struct fc_exch_mgr_anchor;
293 extern u16	fc_cpu_mask;	/* cpu mask for possible cpus */
294 
295 /*
296  * Sequence.
297  */
298 struct fc_seq {
299 	u8	id;		/* seq ID */
300 	u16	ssb_stat;	/* status flags for sequence status block */
301 	u16	cnt;		/* frames sent so far on sequence */
302 	u32	rec_data;	/* FC-4 value for REC */
303 };
304 
305 #define FC_EX_DONE		(1 << 0) /* ep is completed */
306 #define FC_EX_RST_CLEANUP	(1 << 1) /* reset is forcing completion */
307 
308 /*
309  * Exchange.
310  *
311  * Locking notes: The ex_lock protects following items:
312  *	state, esb_stat, f_ctl, seq.ssb_stat
313  *	seq_id
314  *	sequence allocation
315  */
316 struct fc_exch {
317 	struct fc_exch_mgr *em;		/* exchange manager */
318 	struct fc_exch_pool *pool;	/* per cpu exches pool */
319 	u32		state;		/* internal driver state */
320 	u16		xid;		/* our exchange ID */
321 	struct list_head	ex_list;	/* free or busy list linkage */
322 	spinlock_t	ex_lock;	/* lock covering exchange state */
323 	atomic_t	ex_refcnt;	/* reference counter */
324 	struct delayed_work timeout_work; /* timer for upper level protocols */
325 	struct fc_lport	*lp;		/* fc device instance */
326 	u16		oxid;		/* originator's exchange ID */
327 	u16		rxid;		/* responder's exchange ID */
328 	u32		oid;		/* originator's FCID */
329 	u32		sid;		/* source FCID */
330 	u32		did;		/* destination FCID */
331 	u32		esb_stat;	/* exchange status for ESB */
332 	u32		r_a_tov;	/* r_a_tov from rport (msec) */
333 	u8		seq_id;		/* next sequence ID to use */
334 	u32		f_ctl;		/* F_CTL flags for sequences */
335 	u8		fh_type;	/* frame type */
336 	enum fc_class	class;		/* class of service */
337 	struct fc_seq	seq;		/* single sequence */
338 	/*
339 	 * Handler for responses to this current exchange.
340 	 */
341 	void		(*resp)(struct fc_seq *, struct fc_frame *, void *);
342 	void		(*destructor)(struct fc_seq *, void *);
343 	/*
344 	 * arg is passed as void pointer to exchange
345 	 * resp and destructor handlers
346 	 */
347 	void		*arg;
348 };
349 #define	fc_seq_exch(sp) container_of(sp, struct fc_exch, seq)
350 
351 struct libfc_function_template {
352 
353 	/*
354 	 * Interface to send a FC frame
355 	 *
356 	 * STATUS: REQUIRED
357 	 */
358 	int (*frame_send)(struct fc_lport *lp, struct fc_frame *fp);
359 
360 	/*
361 	 * Interface to send ELS/CT frames
362 	 *
363 	 * STATUS: OPTIONAL
364 	 */
365 	struct fc_seq *(*elsct_send)(struct fc_lport *lport,
366 				     u32 did,
367 				     struct fc_frame *fp,
368 				     unsigned int op,
369 				     void (*resp)(struct fc_seq *,
370 					     struct fc_frame *fp,
371 					     void *arg),
372 				     void *arg, u32 timer_msec);
373 
374 	/*
375 	 * Send the FC frame payload using a new exchange and sequence.
376 	 *
377 	 * The frame pointer with some of the header's fields must be
378 	 * filled before calling exch_seq_send(), those fields are,
379 	 *
380 	 * - routing control
381 	 * - FC port did
382 	 * - FC port sid
383 	 * - FC header type
384 	 * - frame control
385 	 * - parameter or relative offset
386 	 *
387 	 * The exchange response handler is set in this routine to resp()
388 	 * function pointer. It can be called in two scenarios: if a timeout
389 	 * occurs or if a response frame is received for the exchange. The
390 	 * fc_frame pointer in response handler will also indicate timeout
391 	 * as error using IS_ERR related macros.
392 	 *
393 	 * The exchange destructor handler is also set in this routine.
394 	 * The destructor handler is invoked by EM layer when exchange
395 	 * is about to free, this can be used by caller to free its
396 	 * resources along with exchange free.
397 	 *
398 	 * The arg is passed back to resp and destructor handler.
399 	 *
400 	 * The timeout value (in msec) for an exchange is set if non zero
401 	 * timer_msec argument is specified. The timer is canceled when
402 	 * it fires or when the exchange is done. The exchange timeout handler
403 	 * is registered by EM layer.
404 	 *
405 	 * STATUS: OPTIONAL
406 	 */
407 	struct fc_seq *(*exch_seq_send)(struct fc_lport *lp,
408 					struct fc_frame *fp,
409 					void (*resp)(struct fc_seq *sp,
410 						     struct fc_frame *fp,
411 						     void *arg),
412 					void (*destructor)(struct fc_seq *sp,
413 							   void *arg),
414 					void *arg, unsigned int timer_msec);
415 
416 	/*
417 	 * Sets up the DDP context for a given exchange id on the given
418 	 * scatterlist if LLD supports DDP for large receive.
419 	 *
420 	 * STATUS: OPTIONAL
421 	 */
422 	int (*ddp_setup)(struct fc_lport *lp, u16 xid,
423 			 struct scatterlist *sgl, unsigned int sgc);
424 	/*
425 	 * Completes the DDP transfer and returns the length of data DDPed
426 	 * for the given exchange id.
427 	 *
428 	 * STATUS: OPTIONAL
429 	 */
430 	int (*ddp_done)(struct fc_lport *lp, u16 xid);
431 	/*
432 	 * Send a frame using an existing sequence and exchange.
433 	 *
434 	 * STATUS: OPTIONAL
435 	 */
436 	int (*seq_send)(struct fc_lport *lp, struct fc_seq *sp,
437 			struct fc_frame *fp);
438 
439 	/*
440 	 * Send an ELS response using infomation from a previous
441 	 * exchange and sequence.
442 	 *
443 	 * STATUS: OPTIONAL
444 	 */
445 	void (*seq_els_rsp_send)(struct fc_seq *sp, enum fc_els_cmd els_cmd,
446 				 struct fc_seq_els_data *els_data);
447 
448 	/*
449 	 * Abort an exchange and sequence. Generally called because of a
450 	 * exchange timeout or an abort from the upper layer.
451 	 *
452 	 * A timer_msec can be specified for abort timeout, if non-zero
453 	 * timer_msec value is specified then exchange resp handler
454 	 * will be called with timeout error if no response to abort.
455 	 *
456 	 * STATUS: OPTIONAL
457 	 */
458 	int (*seq_exch_abort)(const struct fc_seq *req_sp,
459 			      unsigned int timer_msec);
460 
461 	/*
462 	 * Indicate that an exchange/sequence tuple is complete and the memory
463 	 * allocated for the related objects may be freed.
464 	 *
465 	 * STATUS: OPTIONAL
466 	 */
467 	void (*exch_done)(struct fc_seq *sp);
468 
469 	/*
470 	 * Start a new sequence on the same exchange/sequence tuple.
471 	 *
472 	 * STATUS: OPTIONAL
473 	 */
474 	struct fc_seq *(*seq_start_next)(struct fc_seq *sp);
475 
476 	/*
477 	 * Reset an exchange manager, completing all sequences and exchanges.
478 	 * If s_id is non-zero, reset only exchanges originating from that FID.
479 	 * If d_id is non-zero, reset only exchanges sending to that FID.
480 	 *
481 	 * STATUS: OPTIONAL
482 	 */
483 	void (*exch_mgr_reset)(struct fc_lport *,
484 			       u32 s_id, u32 d_id);
485 
486 	/*
487 	 * Flush the rport work queue. Generally used before shutdown.
488 	 *
489 	 * STATUS: OPTIONAL
490 	 */
491 	void (*rport_flush_queue)(void);
492 
493 	/*
494 	 * Receive a frame for a local port.
495 	 *
496 	 * STATUS: OPTIONAL
497 	 */
498 	void (*lport_recv)(struct fc_lport *lp, struct fc_seq *sp,
499 			   struct fc_frame *fp);
500 
501 	/*
502 	 * Reset the local port.
503 	 *
504 	 * STATUS: OPTIONAL
505 	 */
506 	int (*lport_reset)(struct fc_lport *);
507 
508 	/*
509 	 * Create a remote port with a given port ID
510 	 *
511 	 * STATUS: OPTIONAL
512 	 */
513 	struct fc_rport_priv *(*rport_create)(struct fc_lport *, u32);
514 
515 	/*
516 	 * Initiates the RP state machine. It is called from the LP module.
517 	 * This function will issue the following commands to the N_Port
518 	 * identified by the FC ID provided.
519 	 *
520 	 * - PLOGI
521 	 * - PRLI
522 	 * - RTV
523 	 *
524 	 * STATUS: OPTIONAL
525 	 */
526 	int (*rport_login)(struct fc_rport_priv *);
527 
528 	/*
529 	 * Logoff, and remove the rport from the transport if
530 	 * it had been added. This will send a LOGO to the target.
531 	 *
532 	 * STATUS: OPTIONAL
533 	 */
534 	int (*rport_logoff)(struct fc_rport_priv *);
535 
536 	/*
537 	 * Recieve a request from a remote port.
538 	 *
539 	 * STATUS: OPTIONAL
540 	 */
541 	void (*rport_recv_req)(struct fc_seq *, struct fc_frame *,
542 			       struct fc_lport *);
543 
544 	/*
545 	 * lookup an rport by it's port ID.
546 	 *
547 	 * STATUS: OPTIONAL
548 	 */
549 	struct fc_rport_priv *(*rport_lookup)(const struct fc_lport *, u32);
550 
551 	/*
552 	 * Destroy an rport after final kref_put().
553 	 * The argument is a pointer to the kref inside the fc_rport_priv.
554 	 */
555 	void (*rport_destroy)(struct kref *);
556 
557 	/*
558 	 * Send a fcp cmd from fsp pkt.
559 	 * Called with the SCSI host lock unlocked and irqs disabled.
560 	 *
561 	 * The resp handler is called when FCP_RSP received.
562 	 *
563 	 * STATUS: OPTIONAL
564 	 */
565 	int (*fcp_cmd_send)(struct fc_lport *lp, struct fc_fcp_pkt *fsp,
566 			    void (*resp)(struct fc_seq *, struct fc_frame *fp,
567 					 void *arg));
568 
569 	/*
570 	 * Cleanup the FCP layer, used durring link down and reset
571 	 *
572 	 * STATUS: OPTIONAL
573 	 */
574 	void (*fcp_cleanup)(struct fc_lport *lp);
575 
576 	/*
577 	 * Abort all I/O on a local port
578 	 *
579 	 * STATUS: OPTIONAL
580 	 */
581 	void (*fcp_abort_io)(struct fc_lport *lp);
582 
583 	/*
584 	 * Receive a request for the discovery layer.
585 	 *
586 	 * STATUS: OPTIONAL
587 	 */
588 	void (*disc_recv_req)(struct fc_seq *,
589 			      struct fc_frame *, struct fc_lport *);
590 
591 	/*
592 	 * Start discovery for a local port.
593 	 *
594 	 * STATUS: OPTIONAL
595 	 */
596 	void (*disc_start)(void (*disc_callback)(struct fc_lport *,
597 						 enum fc_disc_event),
598 			   struct fc_lport *);
599 
600 	/*
601 	 * Stop discovery for a given lport. This will remove
602 	 * all discovered rports
603 	 *
604 	 * STATUS: OPTIONAL
605 	 */
606 	void (*disc_stop) (struct fc_lport *);
607 
608 	/*
609 	 * Stop discovery for a given lport. This will block
610 	 * until all discovered rports are deleted from the
611 	 * FC transport class
612 	 *
613 	 * STATUS: OPTIONAL
614 	 */
615 	void (*disc_stop_final) (struct fc_lport *);
616 };
617 
618 /* information used by the discovery layer */
619 struct fc_disc {
620 	unsigned char		retry_count;
621 	unsigned char		pending;
622 	unsigned char		requested;
623 	unsigned short		seq_count;
624 	unsigned char		buf_len;
625 	u16			disc_id;
626 
627 	void (*disc_callback)(struct fc_lport *,
628 			      enum fc_disc_event);
629 
630 	struct list_head	 rports;
631 	struct fc_lport		*lport;
632 	struct mutex		disc_mutex;
633 	struct fc_gpn_ft_resp	partial_buf;	/* partial name buffer */
634 	struct delayed_work	disc_work;
635 };
636 
637 struct fc_lport {
638 	struct list_head list;
639 
640 	/* Associations */
641 	struct Scsi_Host	*host;
642 	struct list_head	ema_list;
643 	struct fc_rport_priv	*dns_rp;
644 	struct fc_rport_priv	*ptp_rp;
645 	void			*scsi_priv;
646 	struct fc_disc          disc;
647 
648 	/* Operational Information */
649 	struct libfc_function_template tt;
650 	u8			link_up;
651 	u8			qfull;
652 	enum fc_lport_state	state;
653 	unsigned long		boot_time;
654 
655 	struct fc_host_statistics host_stats;
656 	struct fcoe_dev_stats	*dev_stats;
657 
658 	u64			wwpn;
659 	u64			wwnn;
660 	u8			retry_count;
661 
662 	/* Capabilities */
663 	u32			sg_supp:1;	/* scatter gather supported */
664 	u32			seq_offload:1;	/* seq offload supported */
665 	u32			crc_offload:1;	/* crc offload supported */
666 	u32			lro_enabled:1;	/* large receive offload */
667 	u32			mfs;	        /* max FC payload size */
668 	unsigned int		service_params;
669 	unsigned int		e_d_tov;
670 	unsigned int		r_a_tov;
671 	u8			max_retry_count;
672 	u8			max_rport_retry_count;
673 	u16			link_speed;
674 	u16			link_supported_speeds;
675 	u16			lro_xid;	/* max xid for fcoe lro */
676 	unsigned int		lso_max;	/* max large send size */
677 	struct fc_ns_fts	fcts;	        /* FC-4 type masks */
678 	struct fc_els_rnid_gen	rnid_gen;	/* RNID information */
679 
680 	/* Semaphores */
681 	struct mutex lp_mutex;
682 
683 	/* Miscellaneous */
684 	struct delayed_work	retry_work;
685 };
686 
687 /*
688  * FC_LPORT HELPER FUNCTIONS
689  *****************************/
690 static inline int fc_lport_test_ready(struct fc_lport *lp)
691 {
692 	return lp->state == LPORT_ST_READY;
693 }
694 
695 static inline void fc_set_wwnn(struct fc_lport *lp, u64 wwnn)
696 {
697 	lp->wwnn = wwnn;
698 }
699 
700 static inline void fc_set_wwpn(struct fc_lport *lp, u64 wwnn)
701 {
702 	lp->wwpn = wwnn;
703 }
704 
705 static inline void fc_lport_state_enter(struct fc_lport *lp,
706 					enum fc_lport_state state)
707 {
708 	if (state != lp->state)
709 		lp->retry_count = 0;
710 	lp->state = state;
711 }
712 
713 static inline int fc_lport_init_stats(struct fc_lport *lp)
714 {
715 	/* allocate per cpu stats block */
716 	lp->dev_stats = alloc_percpu(struct fcoe_dev_stats);
717 	if (!lp->dev_stats)
718 		return -ENOMEM;
719 	return 0;
720 }
721 
722 static inline void fc_lport_free_stats(struct fc_lport *lp)
723 {
724 	free_percpu(lp->dev_stats);
725 }
726 
727 static inline struct fcoe_dev_stats *fc_lport_get_stats(struct fc_lport *lp)
728 {
729 	return per_cpu_ptr(lp->dev_stats, smp_processor_id());
730 }
731 
732 static inline void *lport_priv(const struct fc_lport *lp)
733 {
734 	return (void *)(lp + 1);
735 }
736 
737 /**
738  * libfc_host_alloc() - Allocate a Scsi_Host with room for the fc_lport
739  * @sht: ptr to the scsi host templ
740  * @priv_size: size of private data after fc_lport
741  *
742  * Returns: libfc lport
743  */
744 static inline struct fc_lport *
745 libfc_host_alloc(struct scsi_host_template *sht, int priv_size)
746 {
747 	struct fc_lport *lport;
748 	struct Scsi_Host *shost;
749 
750 	shost = scsi_host_alloc(sht, sizeof(*lport) + priv_size);
751 	if (!shost)
752 		return NULL;
753 	lport = shost_priv(shost);
754 	lport->host = shost;
755 	INIT_LIST_HEAD(&lport->ema_list);
756 	return lport;
757 }
758 
759 /*
760  * LOCAL PORT LAYER
761  *****************************/
762 int fc_lport_init(struct fc_lport *lp);
763 
764 /*
765  * Destroy the specified local port by finding and freeing all
766  * fc_rports associated with it and then by freeing the fc_lport
767  * itself.
768  */
769 int fc_lport_destroy(struct fc_lport *lp);
770 
771 /*
772  * Logout the specified local port from the fabric
773  */
774 int fc_fabric_logoff(struct fc_lport *lp);
775 
776 /*
777  * Initiate the LP state machine. This handler will use fc_host_attr
778  * to store the FLOGI service parameters, so fc_host_attr must be
779  * initialized before calling this handler.
780  */
781 int fc_fabric_login(struct fc_lport *lp);
782 
783 /*
784  * The link is up for the given local port.
785  */
786 void fc_linkup(struct fc_lport *);
787 
788 /*
789  * Link is down for the given local port.
790  */
791 void fc_linkdown(struct fc_lport *);
792 
793 /*
794  * Configure the local port.
795  */
796 int fc_lport_config(struct fc_lport *);
797 
798 /*
799  * Reset the local port.
800  */
801 int fc_lport_reset(struct fc_lport *);
802 
803 /*
804  * Set the mfs or reset
805  */
806 int fc_set_mfs(struct fc_lport *lp, u32 mfs);
807 
808 
809 /*
810  * REMOTE PORT LAYER
811  *****************************/
812 int fc_rport_init(struct fc_lport *lp);
813 void fc_rport_terminate_io(struct fc_rport *rp);
814 
815 /*
816  * DISCOVERY LAYER
817  *****************************/
818 int fc_disc_init(struct fc_lport *lp);
819 
820 
821 /*
822  * SCSI LAYER
823  *****************************/
824 /*
825  * Initialize the SCSI block of libfc
826  */
827 int fc_fcp_init(struct fc_lport *);
828 
829 /*
830  * This section provides an API which allows direct interaction
831  * with the SCSI-ml. Each of these functions satisfies a function
832  * pointer defined in Scsi_Host and therefore is always called
833  * directly from the SCSI-ml.
834  */
835 int fc_queuecommand(struct scsi_cmnd *sc_cmd,
836 		    void (*done)(struct scsi_cmnd *));
837 
838 /*
839  * Send an ABTS frame to the target device. The sc_cmd argument
840  * is a pointer to the SCSI command to be aborted.
841  */
842 int fc_eh_abort(struct scsi_cmnd *sc_cmd);
843 
844 /*
845  * Reset a LUN by sending send the tm cmd to the target.
846  */
847 int fc_eh_device_reset(struct scsi_cmnd *sc_cmd);
848 
849 /*
850  * Reset the host adapter.
851  */
852 int fc_eh_host_reset(struct scsi_cmnd *sc_cmd);
853 
854 /*
855  * Check rport status.
856  */
857 int fc_slave_alloc(struct scsi_device *sdev);
858 
859 /*
860  * Adjust the queue depth.
861  */
862 int fc_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason);
863 
864 /*
865  * Change the tag type.
866  */
867 int fc_change_queue_type(struct scsi_device *sdev, int tag_type);
868 
869 /*
870  * Free memory pools used by the FCP layer.
871  */
872 void fc_fcp_destroy(struct fc_lport *);
873 
874 /*
875  * ELS/CT interface
876  *****************************/
877 /*
878  * Initializes ELS/CT interface
879  */
880 int fc_elsct_init(struct fc_lport *lp);
881 
882 
883 /*
884  * EXCHANGE MANAGER LAYER
885  *****************************/
886 /*
887  * Initializes Exchange Manager related
888  * function pointers in struct libfc_function_template.
889  */
890 int fc_exch_init(struct fc_lport *lp);
891 
892 /*
893  * Adds Exchange Manager (EM) mp to lport.
894  *
895  * Adds specified mp to lport using struct fc_exch_mgr_anchor,
896  * the struct fc_exch_mgr_anchor allows same EM sharing by
897  * more than one lport with their specified match function,
898  * the match function is used in allocating exchange from
899  * added mp.
900  */
901 struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport,
902 					   struct fc_exch_mgr *mp,
903 					   bool (*match)(struct fc_frame *));
904 
905 /*
906  * Deletes Exchange Manager (EM) from lport by removing
907  * its anchor ema from lport.
908  *
909  * If removed anchor ema was the last user of its associated EM
910  * then also destroys associated EM.
911  */
912 void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema);
913 
914 /*
915  * Allocates an Exchange Manager (EM).
916  *
917  * The EM manages exchanges for their allocation and
918  * free, also allows exchange lookup for received
919  * frame.
920  *
921  * The class is used for initializing FC class of
922  * allocated exchange from EM.
923  *
924  * The min_xid and max_xid will limit new
925  * exchange ID (XID) within this range for
926  * a new exchange.
927  * The LLD may choose to have multiple EMs,
928  * e.g. one EM instance per CPU receive thread in LLD.
929  *
930  * Specified match function is used in allocating exchanges
931  * from newly allocated EM.
932  */
933 struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lp,
934 				      enum fc_class class,
935 				      u16 min_xid,
936 				      u16 max_xid,
937 				      bool (*match)(struct fc_frame *));
938 
939 /*
940  * Free all exchange managers of a lport.
941  */
942 void fc_exch_mgr_free(struct fc_lport *lport);
943 
944 /*
945  * Receive a frame on specified local port and exchange manager.
946  */
947 void fc_exch_recv(struct fc_lport *lp, struct fc_frame *fp);
948 
949 /*
950  * Reset all EMs of a lport, releasing its all sequences and
951  * exchanges. If sid is non-zero, then reset only exchanges
952  * we sourced from that FID. If did is non-zero, reset only
953  * exchanges destined to that FID.
954  */
955 void fc_exch_mgr_reset(struct fc_lport *, u32 s_id, u32 d_id);
956 
957 /*
958  * Functions for fc_functions_template
959  */
960 void fc_get_host_speed(struct Scsi_Host *shost);
961 void fc_get_host_port_type(struct Scsi_Host *shost);
962 void fc_get_host_port_state(struct Scsi_Host *shost);
963 void fc_set_rport_loss_tmo(struct fc_rport *rport, u32 timeout);
964 struct fc_host_statistics *fc_get_host_stats(struct Scsi_Host *);
965 
966 #endif /* _LIBFC_H_ */
967