[SCSI] libfcoe, fcoe: libfcoe NPIV support
[linux-2.6-block.git] / include / scsi / libfc.h
CommitLineData
42e9a92f
RL
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>
582b45bc 25#include <linux/percpu.h>
42e9a92f
RL
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
42e9a92f
RL
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 */
42e9a92f 60enum fc_lport_state {
b1d9fd55 61 LPORT_ST_DISABLED = 0,
42e9a92f
RL
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
72enum fc_disc_event {
73 DISC_EV_NONE = 0,
74 DISC_EV_SUCCESS,
75 DISC_EV_FAILED
76};
77
78enum fc_rport_state {
42e9a92f
RL
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 */
370c3bd0 85 RPORT_ST_ADISC, /* Discover Address sent */
14194054 86 RPORT_ST_DELETE, /* port being deleted */
b4a9c7ed 87 RPORT_ST_RESTART, /* remote port being deleted and will restart */
42e9a92f
RL
88};
89
42e9a92f
RL
90/**
91 * struct fc_disc_port - temporary discovery port to hold rport identifiers
9737e6a7
RL
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
42e9a92f
RL
96 */
97struct fc_disc_port {
98 struct fc_lport *lp;
99 struct list_head peers;
42e9a92f 100 struct work_struct rport_work;
9737e6a7 101 u32 port_id;
42e9a92f
RL
102};
103
104enum fc_rport_event {
105 RPORT_EV_NONE = 0,
4c0f62b5 106 RPORT_EV_READY,
42e9a92f
RL
107 RPORT_EV_FAILED,
108 RPORT_EV_STOP,
109 RPORT_EV_LOGO
110};
111
9fb9d328
JE
112struct fc_rport_priv;
113
42e9a92f 114struct fc_rport_operations {
9fb9d328 115 void (*event_callback)(struct fc_lport *, struct fc_rport_priv *,
42e9a92f
RL
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
9e9d0452
JE
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 */
127struct 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
f211fa51
JE
140 * @rport: transport remote port
141 * @kref: reference counter
42e9a92f 142 * @rp_state: state tracks progress of PLOGI, PRLI, and RTV exchanges
f211fa51 143 * @ids: remote port identifiers and roles
42e9a92f
RL
144 * @flags: REC and RETRY supported flags
145 * @max_seq: maximum number of concurrent sequences
0f6c6149 146 * @disc_id: discovery identifier
f211fa51 147 * @maxframe_size: maximum frame size
42e9a92f
RL
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 */
9e9d0452 155struct fc_rport_priv {
42e9a92f 156 struct fc_lport *local_port;
f211fa51
JE
157 struct fc_rport *rport;
158 struct kref kref;
42e9a92f 159 enum fc_rport_state rp_state;
f211fa51 160 struct fc_rport_identifiers ids;
42e9a92f 161 u16 flags;
42e9a92f 162 u16 max_seq;
0f6c6149 163 u16 disc_id;
f211fa51 164 u16 maxframe_size;
42e9a92f
RL
165 unsigned int retries;
166 unsigned int e_d_tov;
167 unsigned int r_a_tov;
42e9a92f
RL
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;
f211fa51 174 u32 supported_classes;
42e9a92f
RL
175};
176
42e9a92f
RL
177/*
178 * fcoe stats structure
179 */
180struct 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 */
204struct 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 */
213struct 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;
b277d2aa 249 u16 xfer_ddp; /* this xfer is ddped */
42e9a92f
RL
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};
b277d2aa
YZ
272/*
273 * FC_FCP HELPER FUNCTIONS
274 *****************************/
275static 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}
42e9a92f
RL
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
291struct fc_exch_mgr;
96316099 292struct fc_exch_mgr_anchor;
e4bc50be 293extern u16 fc_cpu_mask; /* cpu mask for possible cpus */
42e9a92f
RL
294
295/*
296 * Sequence.
297 */
298struct 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 */
316struct fc_exch {
317 struct fc_exch_mgr *em; /* exchange manager */
b2f0091f 318 struct fc_exch_pool *pool; /* per cpu exches pool */
42e9a92f
RL
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
351struct libfc_function_template {
352
42e9a92f
RL
353 /*
354 * Interface to send a FC frame
42e9a92f 355 *
0ae4d4ae 356 * STATUS: REQUIRED
42e9a92f 357 */
0ae4d4ae 358 int (*frame_send)(struct fc_lport *lp, struct fc_frame *fp);
42e9a92f
RL
359
360 /*
0ae4d4ae
RL
361 * Interface to send ELS/CT frames
362 *
363 * STATUS: OPTIONAL
42e9a92f
RL
364 */
365 struct fc_seq *(*elsct_send)(struct fc_lport *lport,
a46f327a 366 u32 did,
42e9a92f
RL
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);
42e9a92f
RL
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.
0ae4d4ae
RL
404 *
405 * STATUS: OPTIONAL
42e9a92f
RL
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
b277d2aa
YZ
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);
42e9a92f 431 /*
0ae4d4ae
RL
432 * Send a frame using an existing sequence and exchange.
433 *
434 * STATUS: OPTIONAL
42e9a92f
RL
435 */
436 int (*seq_send)(struct fc_lport *lp, struct fc_seq *sp,
437 struct fc_frame *fp);
438
439 /*
0ae4d4ae
RL
440 * Send an ELS response using infomation from a previous
441 * exchange and sequence.
442 *
443 * STATUS: OPTIONAL
42e9a92f
RL
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.
0ae4d4ae
RL
455 *
456 * STATUS: OPTIONAL
42e9a92f
RL
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.
0ae4d4ae
RL
464 *
465 * STATUS: OPTIONAL
42e9a92f
RL
466 */
467 void (*exch_done)(struct fc_seq *sp);
468
42e9a92f
RL
469 /*
470 * Start a new sequence on the same exchange/sequence tuple.
0ae4d4ae
RL
471 *
472 * STATUS: OPTIONAL
42e9a92f
RL
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.
0ae4d4ae
RL
480 *
481 * STATUS: OPTIONAL
42e9a92f 482 */
1f6ff364 483 void (*exch_mgr_reset)(struct fc_lport *,
42e9a92f
RL
484 u32 s_id, u32 d_id);
485
0ae4d4ae
RL
486 /*
487 * Flush the rport work queue. Generally used before shutdown.
488 *
489 * STATUS: OPTIONAL
42e9a92f 490 */
0ae4d4ae 491 void (*rport_flush_queue)(void);
42e9a92f
RL
492
493 /*
0ae4d4ae
RL
494 * Receive a frame for a local port.
495 *
496 * STATUS: OPTIONAL
42e9a92f
RL
497 */
498 void (*lport_recv)(struct fc_lport *lp, struct fc_seq *sp,
499 struct fc_frame *fp);
500
0ae4d4ae
RL
501 /*
502 * Reset the local port.
503 *
504 * STATUS: OPTIONAL
42e9a92f 505 */
0ae4d4ae 506 int (*lport_reset)(struct fc_lport *);
42e9a92f 507
5101ff99 508 /*
9737e6a7
RL
509 * Create a remote port with a given port ID
510 *
511 * STATUS: OPTIONAL
5101ff99 512 */
9737e6a7 513 struct fc_rport_priv *(*rport_create)(struct fc_lport *, u32);
5101ff99 514
42e9a92f
RL
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
0ae4d4ae
RL
523 *
524 * STATUS: OPTIONAL
42e9a92f 525 */
9fb9d328 526 int (*rport_login)(struct fc_rport_priv *);
42e9a92f
RL
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.
0ae4d4ae
RL
531 *
532 * STATUS: OPTIONAL
42e9a92f 533 */
9fb9d328 534 int (*rport_logoff)(struct fc_rport_priv *);
42e9a92f
RL
535
536 /*
537 * Recieve a request from a remote port.
0ae4d4ae
RL
538 *
539 * STATUS: OPTIONAL
42e9a92f
RL
540 */
541 void (*rport_recv_req)(struct fc_seq *, struct fc_frame *,
131203a1 542 struct fc_lport *);
42e9a92f 543
0ae4d4ae
RL
544 /*
545 * lookup an rport by it's port ID.
546 *
547 * STATUS: OPTIONAL
42e9a92f 548 */
9fb9d328 549 struct fc_rport_priv *(*rport_lookup)(const struct fc_lport *, u32);
42e9a92f 550
f211fa51
JE
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
42e9a92f
RL
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 *
0ae4d4ae 563 * STATUS: OPTIONAL
42e9a92f
RL
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 /*
0ae4d4ae
RL
570 * Cleanup the FCP layer, used durring link down and reset
571 *
572 * STATUS: OPTIONAL
42e9a92f
RL
573 */
574 void (*fcp_cleanup)(struct fc_lport *lp);
575
576 /*
577 * Abort all I/O on a local port
0ae4d4ae
RL
578 *
579 * STATUS: OPTIONAL
42e9a92f
RL
580 */
581 void (*fcp_abort_io)(struct fc_lport *lp);
582
0ae4d4ae
RL
583 /*
584 * Receive a request for the discovery layer.
585 *
586 * STATUS: OPTIONAL
42e9a92f 587 */
42e9a92f
RL
588 void (*disc_recv_req)(struct fc_seq *,
589 struct fc_frame *, struct fc_lport *);
590
591 /*
592 * Start discovery for a local port.
0ae4d4ae
RL
593 *
594 * STATUS: OPTIONAL
42e9a92f
RL
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
0ae4d4ae
RL
603 *
604 * STATUS: OPTIONAL
42e9a92f
RL
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
0ae4d4ae
RL
612 *
613 * STATUS: OPTIONAL
42e9a92f
RL
614 */
615 void (*disc_stop_final) (struct fc_lport *);
616};
617
618/* information used by the discovery layer */
619struct fc_disc {
620 unsigned char retry_count;
42e9a92f
RL
621 unsigned char pending;
622 unsigned char requested;
623 unsigned short seq_count;
624 unsigned char buf_len;
0f6c6149 625 u16 disc_id;
42e9a92f
RL
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
637struct fc_lport {
638 struct list_head list;
639
640 /* Associations */
641 struct Scsi_Host *host;
96316099 642 struct list_head ema_list;
174e1ebf
CL
643 struct list_head vports; /* child vports if N_Port */
644 struct fc_vport *vport; /* parent vport if VN_Port */
9fb9d328
JE
645 struct fc_rport_priv *dns_rp;
646 struct fc_rport_priv *ptp_rp;
42e9a92f
RL
647 void *scsi_priv;
648 struct fc_disc disc;
649
650 /* Operational Information */
651 struct libfc_function_template tt;
bc0e17f6
VD
652 u8 link_up;
653 u8 qfull;
42e9a92f
RL
654 enum fc_lport_state state;
655 unsigned long boot_time;
656
657 struct fc_host_statistics host_stats;
582b45bc
RL
658 struct fcoe_dev_stats *dev_stats;
659
42e9a92f
RL
660 u64 wwpn;
661 u64 wwnn;
662 u8 retry_count;
663
664 /* Capabilities */
665 u32 sg_supp:1; /* scatter gather supported */
666 u32 seq_offload:1; /* seq offload supported */
667 u32 crc_offload:1; /* crc offload supported */
668 u32 lro_enabled:1; /* large receive offload */
174e1ebf
CL
669 u32 does_npiv:1; /* supports multiple vports */
670 u32 npiv_enabled:1; /* switch/fabric allows NPIV */
42e9a92f
RL
671 u32 mfs; /* max FC payload size */
672 unsigned int service_params;
673 unsigned int e_d_tov;
674 unsigned int r_a_tov;
675 u8 max_retry_count;
a3666955 676 u8 max_rport_retry_count;
42e9a92f
RL
677 u16 link_speed;
678 u16 link_supported_speeds;
679 u16 lro_xid; /* max xid for fcoe lro */
ea1e9a9d 680 unsigned int lso_max; /* max large send size */
42e9a92f
RL
681 struct fc_ns_fts fcts; /* FC-4 type masks */
682 struct fc_els_rnid_gen rnid_gen; /* RNID information */
683
684 /* Semaphores */
685 struct mutex lp_mutex;
686
687 /* Miscellaneous */
688 struct delayed_work retry_work;
42e9a92f
RL
689};
690
34f42a07 691/*
42e9a92f
RL
692 * FC_LPORT HELPER FUNCTIONS
693 *****************************/
42e9a92f
RL
694static inline int fc_lport_test_ready(struct fc_lport *lp)
695{
696 return lp->state == LPORT_ST_READY;
697}
698
699static inline void fc_set_wwnn(struct fc_lport *lp, u64 wwnn)
700{
701 lp->wwnn = wwnn;
702}
703
704static inline void fc_set_wwpn(struct fc_lport *lp, u64 wwnn)
705{
706 lp->wwpn = wwnn;
707}
708
709static inline void fc_lport_state_enter(struct fc_lport *lp,
710 enum fc_lport_state state)
711{
712 if (state != lp->state)
713 lp->retry_count = 0;
714 lp->state = state;
715}
716
582b45bc
RL
717static inline int fc_lport_init_stats(struct fc_lport *lp)
718{
719 /* allocate per cpu stats block */
720 lp->dev_stats = alloc_percpu(struct fcoe_dev_stats);
721 if (!lp->dev_stats)
722 return -ENOMEM;
723 return 0;
724}
725
726static inline void fc_lport_free_stats(struct fc_lport *lp)
727{
728 free_percpu(lp->dev_stats);
729}
730
731static inline struct fcoe_dev_stats *fc_lport_get_stats(struct fc_lport *lp)
732{
733 return per_cpu_ptr(lp->dev_stats, smp_processor_id());
734}
735
a0a25da2
VD
736static inline void *lport_priv(const struct fc_lport *lp)
737{
738 return (void *)(lp + 1);
739}
740
741/**
742 * libfc_host_alloc() - Allocate a Scsi_Host with room for the fc_lport
743 * @sht: ptr to the scsi host templ
744 * @priv_size: size of private data after fc_lport
745 *
86221969 746 * Returns: libfc lport
a0a25da2 747 */
86221969 748static inline struct fc_lport *
a0a25da2
VD
749libfc_host_alloc(struct scsi_host_template *sht, int priv_size)
750{
86221969
CL
751 struct fc_lport *lport;
752 struct Scsi_Host *shost;
753
754 shost = scsi_host_alloc(sht, sizeof(*lport) + priv_size);
755 if (!shost)
756 return NULL;
757 lport = shost_priv(shost);
758 lport->host = shost;
759 INIT_LIST_HEAD(&lport->ema_list);
174e1ebf 760 INIT_LIST_HEAD(&lport->vports);
86221969 761 return lport;
a0a25da2 762}
42e9a92f 763
34f42a07 764/*
42e9a92f
RL
765 * LOCAL PORT LAYER
766 *****************************/
767int fc_lport_init(struct fc_lport *lp);
768
769/*
770 * Destroy the specified local port by finding and freeing all
771 * fc_rports associated with it and then by freeing the fc_lport
772 * itself.
773 */
774int fc_lport_destroy(struct fc_lport *lp);
775
776/*
777 * Logout the specified local port from the fabric
778 */
779int fc_fabric_logoff(struct fc_lport *lp);
780
781/*
782 * Initiate the LP state machine. This handler will use fc_host_attr
783 * to store the FLOGI service parameters, so fc_host_attr must be
784 * initialized before calling this handler.
785 */
786int fc_fabric_login(struct fc_lport *lp);
787
788/*
789 * The link is up for the given local port.
790 */
8faecddb 791void __fc_linkup(struct fc_lport *);
42e9a92f
RL
792void fc_linkup(struct fc_lport *);
793
794/*
795 * Link is down for the given local port.
796 */
8faecddb 797void __fc_linkdown(struct fc_lport *);
42e9a92f
RL
798void fc_linkdown(struct fc_lport *);
799
42e9a92f
RL
800/*
801 * Configure the local port.
802 */
803int fc_lport_config(struct fc_lport *);
804
805/*
806 * Reset the local port.
807 */
808int fc_lport_reset(struct fc_lport *);
809
810/*
811 * Set the mfs or reset
812 */
813int fc_set_mfs(struct fc_lport *lp, u32 mfs);
814
174e1ebf
CL
815/*
816 * Allocate a new lport struct for an NPIV VN_Port
817 */
818struct fc_lport *libfc_vport_create(struct fc_vport *vport, int privsize);
819
820/*
821 * Find an NPIV VN_Port by port ID
822 */
823struct fc_lport *fc_vport_id_lookup(struct fc_lport *n_port, u32 port_id);
42e9a92f 824
8faecddb
CL
825/*
826 * NPIV VN_Port link state management
827 */
828void fc_vport_setlink(struct fc_lport *vn_port);
829void fc_vports_linkchange(struct fc_lport *n_port);
830
34f42a07 831/*
42e9a92f
RL
832 * REMOTE PORT LAYER
833 *****************************/
834int fc_rport_init(struct fc_lport *lp);
835void fc_rport_terminate_io(struct fc_rport *rp);
836
34f42a07 837/*
42e9a92f
RL
838 * DISCOVERY LAYER
839 *****************************/
840int fc_disc_init(struct fc_lport *lp);
841
842
34f42a07 843/*
42e9a92f
RL
844 * SCSI LAYER
845 *****************************/
846/*
847 * Initialize the SCSI block of libfc
848 */
849int fc_fcp_init(struct fc_lport *);
850
851/*
852 * This section provides an API which allows direct interaction
853 * with the SCSI-ml. Each of these functions satisfies a function
854 * pointer defined in Scsi_Host and therefore is always called
855 * directly from the SCSI-ml.
856 */
857int fc_queuecommand(struct scsi_cmnd *sc_cmd,
858 void (*done)(struct scsi_cmnd *));
859
42e9a92f
RL
860/*
861 * Send an ABTS frame to the target device. The sc_cmd argument
862 * is a pointer to the SCSI command to be aborted.
863 */
864int fc_eh_abort(struct scsi_cmnd *sc_cmd);
865
866/*
867 * Reset a LUN by sending send the tm cmd to the target.
868 */
869int fc_eh_device_reset(struct scsi_cmnd *sc_cmd);
870
871/*
872 * Reset the host adapter.
873 */
874int fc_eh_host_reset(struct scsi_cmnd *sc_cmd);
875
876/*
877 * Check rport status.
878 */
879int fc_slave_alloc(struct scsi_device *sdev);
880
881/*
882 * Adjust the queue depth.
883 */
e881a172 884int fc_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason);
42e9a92f
RL
885
886/*
887 * Change the tag type.
888 */
889int fc_change_queue_type(struct scsi_device *sdev, int tag_type);
890
891/*
892 * Free memory pools used by the FCP layer.
893 */
894void fc_fcp_destroy(struct fc_lport *);
895
34f42a07 896/*
42e9a92f
RL
897 * ELS/CT interface
898 *****************************/
899/*
900 * Initializes ELS/CT interface
901 */
902int fc_elsct_init(struct fc_lport *lp);
11b56188
CL
903struct fc_seq *fc_elsct_send(struct fc_lport *lport,
904 u32 did,
905 struct fc_frame *fp,
906 unsigned int op,
907 void (*resp)(struct fc_seq *,
908 struct fc_frame *fp,
909 void *arg),
910 void *arg, u32 timer_msec);
911void fc_lport_flogi_resp(struct fc_seq *, struct fc_frame *, void *);
912void fc_lport_logo_resp(struct fc_seq *, struct fc_frame *, void *);
42e9a92f
RL
913
914
34f42a07 915/*
42e9a92f
RL
916 * EXCHANGE MANAGER LAYER
917 *****************************/
918/*
919 * Initializes Exchange Manager related
920 * function pointers in struct libfc_function_template.
921 */
922int fc_exch_init(struct fc_lport *lp);
923
96316099
VD
924/*
925 * Adds Exchange Manager (EM) mp to lport.
926 *
927 * Adds specified mp to lport using struct fc_exch_mgr_anchor,
928 * the struct fc_exch_mgr_anchor allows same EM sharing by
929 * more than one lport with their specified match function,
930 * the match function is used in allocating exchange from
931 * added mp.
932 */
933struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport,
934 struct fc_exch_mgr *mp,
935 bool (*match)(struct fc_frame *));
936
937/*
938 * Deletes Exchange Manager (EM) from lport by removing
939 * its anchor ema from lport.
940 *
941 * If removed anchor ema was the last user of its associated EM
942 * then also destroys associated EM.
943 */
944void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema);
945
174e1ebf
CL
946/*
947 * Clone an exchange manager list, getting reference holds for each EM.
948 * This is for use with NPIV and sharing the X_ID space between VN_Ports.
949 */
950int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst);
951
42e9a92f
RL
952/*
953 * Allocates an Exchange Manager (EM).
954 *
955 * The EM manages exchanges for their allocation and
956 * free, also allows exchange lookup for received
957 * frame.
958 *
959 * The class is used for initializing FC class of
960 * allocated exchange from EM.
961 *
962 * The min_xid and max_xid will limit new
963 * exchange ID (XID) within this range for
964 * a new exchange.
965 * The LLD may choose to have multiple EMs,
966 * e.g. one EM instance per CPU receive thread in LLD.
42e9a92f 967 *
52ff878c
VD
968 * Specified match function is used in allocating exchanges
969 * from newly allocated EM.
42e9a92f
RL
970 */
971struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lp,
972 enum fc_class class,
973 u16 min_xid,
52ff878c
VD
974 u16 max_xid,
975 bool (*match)(struct fc_frame *));
42e9a92f
RL
976
977/*
52ff878c 978 * Free all exchange managers of a lport.
42e9a92f 979 */
52ff878c 980void fc_exch_mgr_free(struct fc_lport *lport);
42e9a92f
RL
981
982/*
983 * Receive a frame on specified local port and exchange manager.
984 */
52ff878c 985void fc_exch_recv(struct fc_lport *lp, struct fc_frame *fp);
42e9a92f 986
42e9a92f 987/*
b2f0091f
VD
988 * Reset all EMs of a lport, releasing its all sequences and
989 * exchanges. If sid is non-zero, then reset only exchanges
990 * we sourced from that FID. If did is non-zero, reset only
991 * exchanges destined to that FID.
42e9a92f 992 */
1f6ff364 993void fc_exch_mgr_reset(struct fc_lport *, u32 s_id, u32 d_id);
42e9a92f
RL
994
995/*
996 * Functions for fc_functions_template
997 */
998void fc_get_host_speed(struct Scsi_Host *shost);
999void fc_get_host_port_type(struct Scsi_Host *shost);
1000void fc_get_host_port_state(struct Scsi_Host *shost);
1001void fc_set_rport_loss_tmo(struct fc_rport *rport, u32 timeout);
1002struct fc_host_statistics *fc_get_host_stats(struct Scsi_Host *);
1003
42e9a92f 1004#endif /* _LIBFC_H_ */