blob: 54df9fe00c14add7a54ee675519128ba8da3f899 [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>
Steve Maa51ab392009-11-03 11:47:34 -080029#include <scsi/scsi_bsg_fc.h>
Robert Love42e9a922008-12-09 15:10:17 -080030
31#include <scsi/fc/fc_fcp.h>
32#include <scsi/fc/fc_ns.h>
33#include <scsi/fc/fc_els.h>
34#include <scsi/fc/fc_gs.h>
35
36#include <scsi/fc_frame.h>
37
Robert Love42e9a922008-12-09 15:10:17 -080038/*
39 * libfc error codes
40 */
41#define FC_NO_ERR 0 /* no error */
42#define FC_EX_TIMEOUT 1 /* Exchange timeout */
43#define FC_EX_CLOSED 2 /* Exchange closed */
44
45/* some helpful macros */
46
47#define ntohll(x) be64_to_cpu(x)
48#define htonll(x) cpu_to_be64(x)
49
50#define ntoh24(p) (((p)[0] << 16) | ((p)[1] << 8) | ((p)[2]))
51
52#define hton24(p, v) do { \
53 p[0] = (((v) >> 16) & 0xFF); \
54 p[1] = (((v) >> 8) & 0xFF); \
55 p[2] = ((v) & 0xFF); \
56 } while (0)
57
58/*
59 * FC HBA status
60 */
Robert Love42e9a922008-12-09 15:10:17 -080061enum fc_lport_state {
Joe Eykholtb1d9fd52009-07-29 17:04:22 -070062 LPORT_ST_DISABLED = 0,
Robert Love42e9a922008-12-09 15:10:17 -080063 LPORT_ST_FLOGI,
64 LPORT_ST_DNS,
Chris Leechc9c7bd72009-11-03 11:46:51 -080065 LPORT_ST_RNN_ID,
Chris Leech5baa17c2009-11-03 11:46:56 -080066 LPORT_ST_RSNN_NN,
Chris Leechc9866a52009-11-03 11:47:01 -080067 LPORT_ST_RSPN_ID,
Robert Love42e9a922008-12-09 15:10:17 -080068 LPORT_ST_RFT_ID,
69 LPORT_ST_SCR,
70 LPORT_ST_READY,
71 LPORT_ST_LOGO,
72 LPORT_ST_RESET
73};
74
75enum fc_disc_event {
76 DISC_EV_NONE = 0,
77 DISC_EV_SUCCESS,
78 DISC_EV_FAILED
79};
80
81enum fc_rport_state {
Robert Love42e9a922008-12-09 15:10:17 -080082 RPORT_ST_INIT, /* initialized */
83 RPORT_ST_PLOGI, /* waiting for PLOGI completion */
84 RPORT_ST_PRLI, /* waiting for PRLI completion */
85 RPORT_ST_RTV, /* waiting for RTV completion */
86 RPORT_ST_READY, /* ready for use */
87 RPORT_ST_LOGO, /* port logout sent */
Joe Eykholt370c3bd2009-08-25 14:03:47 -070088 RPORT_ST_ADISC, /* Discover Address sent */
Joe Eykholt14194052009-07-29 17:04:43 -070089 RPORT_ST_DELETE, /* port being deleted */
Joe Eykholtb4a9c7e2009-10-21 16:28:30 -070090 RPORT_ST_RESTART, /* remote port being deleted and will restart */
Robert Love42e9a922008-12-09 15:10:17 -080091};
92
Robert Love42e9a922008-12-09 15:10:17 -080093/**
94 * struct fc_disc_port - temporary discovery port to hold rport identifiers
Robert Love9737e6a2009-08-25 14:02:59 -070095 * @lp: Fibre Channel host port instance
96 * @peers: Node for list management during discovery and RSCN processing
97 * @rport_work: Work struct for starting the rport state machine
98 * @port_id: Port ID of the discovered port
Robert Love42e9a922008-12-09 15:10:17 -080099 */
100struct fc_disc_port {
101 struct fc_lport *lp;
102 struct list_head peers;
Robert Love42e9a922008-12-09 15:10:17 -0800103 struct work_struct rport_work;
Robert Love9737e6a2009-08-25 14:02:59 -0700104 u32 port_id;
Robert Love42e9a922008-12-09 15:10:17 -0800105};
106
107enum fc_rport_event {
108 RPORT_EV_NONE = 0,
Joe Eykholt4c0f62b2009-08-25 14:01:12 -0700109 RPORT_EV_READY,
Robert Love42e9a922008-12-09 15:10:17 -0800110 RPORT_EV_FAILED,
111 RPORT_EV_STOP,
112 RPORT_EV_LOGO
113};
114
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700115struct fc_rport_priv;
116
Robert Love42e9a922008-12-09 15:10:17 -0800117struct fc_rport_operations {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700118 void (*event_callback)(struct fc_lport *, struct fc_rport_priv *,
Robert Love42e9a922008-12-09 15:10:17 -0800119 enum fc_rport_event);
120};
121
122/**
123 * struct fc_rport_libfc_priv - libfc internal information about a remote port
124 * @local_port: Fibre Channel host port instance
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700125 * @rp_state: indicates READY for I/O or DELETE when blocked.
126 * @flags: REC and RETRY supported flags
127 * @e_d_tov: error detect timeout value (in msec)
128 * @r_a_tov: resource allocation timeout value (in msec)
129 */
130struct fc_rport_libfc_priv {
131 struct fc_lport *local_port;
132 enum fc_rport_state rp_state;
133 u16 flags;
134 #define FC_RP_FLAGS_REC_SUPPORTED (1 << 0)
135 #define FC_RP_FLAGS_RETRY (1 << 1)
136 unsigned int e_d_tov;
137 unsigned int r_a_tov;
138};
139
140/**
141 * struct fc_rport_priv - libfc rport and discovery info about a remote port
142 * @local_port: Fibre Channel host port instance
Joe Eykholtf211fa52009-08-25 14:01:01 -0700143 * @rport: transport remote port
144 * @kref: reference counter
Robert Love42e9a922008-12-09 15:10:17 -0800145 * @rp_state: state tracks progress of PLOGI, PRLI, and RTV exchanges
Joe Eykholtf211fa52009-08-25 14:01:01 -0700146 * @ids: remote port identifiers and roles
Robert Love42e9a922008-12-09 15:10:17 -0800147 * @flags: REC and RETRY supported flags
148 * @max_seq: maximum number of concurrent sequences
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700149 * @disc_id: discovery identifier
Joe Eykholtf211fa52009-08-25 14:01:01 -0700150 * @maxframe_size: maximum frame size
Robert Love42e9a922008-12-09 15:10:17 -0800151 * @retries: retry count in current state
152 * @e_d_tov: error detect timeout value (in msec)
153 * @r_a_tov: resource allocation timeout value (in msec)
154 * @rp_mutex: mutex protects rport
155 * @retry_work:
156 * @event_callback: Callback for rport READY, FAILED or LOGO
157 */
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700158struct fc_rport_priv {
Robert Love42e9a922008-12-09 15:10:17 -0800159 struct fc_lport *local_port;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700160 struct fc_rport *rport;
161 struct kref kref;
Robert Love42e9a922008-12-09 15:10:17 -0800162 enum fc_rport_state rp_state;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700163 struct fc_rport_identifiers ids;
Robert Love42e9a922008-12-09 15:10:17 -0800164 u16 flags;
Robert Love42e9a922008-12-09 15:10:17 -0800165 u16 max_seq;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700166 u16 disc_id;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700167 u16 maxframe_size;
Robert Love42e9a922008-12-09 15:10:17 -0800168 unsigned int retries;
169 unsigned int e_d_tov;
170 unsigned int r_a_tov;
Robert Love42e9a922008-12-09 15:10:17 -0800171 struct mutex rp_mutex;
172 struct delayed_work retry_work;
173 enum fc_rport_event event;
174 struct fc_rport_operations *ops;
175 struct list_head peers;
176 struct work_struct event_work;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700177 u32 supported_classes;
Robert Love42e9a922008-12-09 15:10:17 -0800178};
179
Robert Love42e9a922008-12-09 15:10:17 -0800180/*
181 * fcoe stats structure
182 */
183struct fcoe_dev_stats {
184 u64 SecondsSinceLastReset;
185 u64 TxFrames;
186 u64 TxWords;
187 u64 RxFrames;
188 u64 RxWords;
189 u64 ErrorFrames;
190 u64 DumpedFrames;
191 u64 LinkFailureCount;
192 u64 LossOfSignalCount;
193 u64 InvalidTxWordCount;
194 u64 InvalidCRCCount;
195 u64 InputRequests;
196 u64 OutputRequests;
197 u64 ControlRequests;
198 u64 InputMegabytes;
199 u64 OutputMegabytes;
200};
201
202/*
203 * els data is used for passing ELS respone specific
204 * data to send ELS response mainly using infomation
205 * in exchange and sequence in EM layer.
206 */
207struct fc_seq_els_data {
208 struct fc_frame *fp;
209 enum fc_els_rjt_reason reason;
210 enum fc_els_rjt_explan explan;
211};
212
213/*
214 * FCP request structure, one for each scsi cmd request
215 */
216struct fc_fcp_pkt {
217 /*
218 * housekeeping stuff
219 */
220 struct fc_lport *lp; /* handle to hba struct */
221 u16 state; /* scsi_pkt state state */
222 u16 tgt_flags; /* target flags */
223 atomic_t ref_cnt; /* fcp pkt ref count */
224 spinlock_t scsi_pkt_lock; /* Must be taken before the host lock
225 * if both are held at the same time */
226 /*
227 * SCSI I/O related stuff
228 */
229 struct scsi_cmnd *cmd; /* scsi command pointer. set/clear
230 * under host lock */
231 struct list_head list; /* tracks queued commands. access under
232 * host lock */
233 /*
234 * timeout related stuff
235 */
236 struct timer_list timer; /* command timer */
237 struct completion tm_done;
238 int wait_for_comp;
239 unsigned long start_time; /* start jiffie */
240 unsigned long end_time; /* end jiffie */
241 unsigned long last_pkt_time; /* jiffies of last frame received */
242
243 /*
244 * scsi cmd and data transfer information
245 */
246 u32 data_len;
247 /*
248 * transport related veriables
249 */
250 struct fcp_cmnd cdb_cmd;
251 size_t xfer_len;
Yi Zoub277d2a2009-02-27 14:07:21 -0800252 u16 xfer_ddp; /* this xfer is ddped */
Robert Love42e9a922008-12-09 15:10:17 -0800253 u32 xfer_contig_end; /* offset of end of contiguous xfer */
254 u16 max_payload; /* max payload size in bytes */
255
256 /*
257 * scsi/fcp return status
258 */
259 u32 io_status; /* SCSI result upper 24 bits */
260 u8 cdb_status;
261 u8 status_code; /* FCP I/O status */
262 /* bit 3 Underrun bit 2: overrun */
263 u8 scsi_comp_flags;
264 u32 req_flags; /* bit 0: read bit:1 write */
265 u32 scsi_resid; /* residule length */
266
267 struct fc_rport *rport; /* remote port pointer */
268 struct fc_seq *seq_ptr; /* current sequence pointer */
269 /*
270 * Error Processing
271 */
272 u8 recov_retry; /* count of recovery retries */
273 struct fc_seq *recov_seq; /* sequence for REC or SRR */
274};
Yi Zoub277d2a2009-02-27 14:07:21 -0800275/*
276 * FC_FCP HELPER FUNCTIONS
277 *****************************/
278static inline bool fc_fcp_is_read(const struct fc_fcp_pkt *fsp)
279{
280 if (fsp && fsp->cmd)
281 return fsp->cmd->sc_data_direction == DMA_FROM_DEVICE;
282 return false;
283}
Robert Love42e9a922008-12-09 15:10:17 -0800284
285/*
286 * Structure and function definitions for managing Fibre Channel Exchanges
287 * and Sequences
288 *
289 * fc_exch holds state for one exchange and links to its active sequence.
290 *
291 * fc_seq holds the state for an individual sequence.
292 */
293
294struct fc_exch_mgr;
Vasu Dev96316092009-07-29 17:05:00 -0700295struct fc_exch_mgr_anchor;
Vasu Deve4bc50b2009-08-25 13:58:47 -0700296extern u16 fc_cpu_mask; /* cpu mask for possible cpus */
Robert Love42e9a922008-12-09 15:10:17 -0800297
298/*
299 * Sequence.
300 */
301struct fc_seq {
302 u8 id; /* seq ID */
303 u16 ssb_stat; /* status flags for sequence status block */
304 u16 cnt; /* frames sent so far on sequence */
305 u32 rec_data; /* FC-4 value for REC */
306};
307
308#define FC_EX_DONE (1 << 0) /* ep is completed */
309#define FC_EX_RST_CLEANUP (1 << 1) /* reset is forcing completion */
310
311/*
312 * Exchange.
313 *
314 * Locking notes: The ex_lock protects following items:
315 * state, esb_stat, f_ctl, seq.ssb_stat
316 * seq_id
317 * sequence allocation
318 */
319struct fc_exch {
320 struct fc_exch_mgr *em; /* exchange manager */
Vasu Devb2f00912009-08-25 13:58:53 -0700321 struct fc_exch_pool *pool; /* per cpu exches pool */
Robert Love42e9a922008-12-09 15:10:17 -0800322 u32 state; /* internal driver state */
323 u16 xid; /* our exchange ID */
324 struct list_head ex_list; /* free or busy list linkage */
325 spinlock_t ex_lock; /* lock covering exchange state */
326 atomic_t ex_refcnt; /* reference counter */
327 struct delayed_work timeout_work; /* timer for upper level protocols */
328 struct fc_lport *lp; /* fc device instance */
329 u16 oxid; /* originator's exchange ID */
330 u16 rxid; /* responder's exchange ID */
331 u32 oid; /* originator's FCID */
332 u32 sid; /* source FCID */
333 u32 did; /* destination FCID */
334 u32 esb_stat; /* exchange status for ESB */
335 u32 r_a_tov; /* r_a_tov from rport (msec) */
336 u8 seq_id; /* next sequence ID to use */
337 u32 f_ctl; /* F_CTL flags for sequences */
338 u8 fh_type; /* frame type */
339 enum fc_class class; /* class of service */
340 struct fc_seq seq; /* single sequence */
341 /*
342 * Handler for responses to this current exchange.
343 */
344 void (*resp)(struct fc_seq *, struct fc_frame *, void *);
345 void (*destructor)(struct fc_seq *, void *);
346 /*
347 * arg is passed as void pointer to exchange
348 * resp and destructor handlers
349 */
350 void *arg;
351};
352#define fc_seq_exch(sp) container_of(sp, struct fc_exch, seq)
353
354struct libfc_function_template {
355
Robert Love42e9a922008-12-09 15:10:17 -0800356 /*
357 * Interface to send a FC frame
Robert Love0ae4d4a2009-02-27 10:55:39 -0800358 *
359 * STATUS: REQUIRED
Robert Love42e9a922008-12-09 15:10:17 -0800360 */
361 int (*frame_send)(struct fc_lport *lp, struct fc_frame *fp);
362
Robert Love42e9a922008-12-09 15:10:17 -0800363 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800364 * Interface to send ELS/CT frames
365 *
366 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800367 */
368 struct fc_seq *(*elsct_send)(struct fc_lport *lport,
Joe Eykholta46f3272009-08-25 14:00:55 -0700369 u32 did,
Robert Love42e9a922008-12-09 15:10:17 -0800370 struct fc_frame *fp,
371 unsigned int op,
372 void (*resp)(struct fc_seq *,
373 struct fc_frame *fp,
374 void *arg),
375 void *arg, u32 timer_msec);
Robert Love42e9a922008-12-09 15:10:17 -0800376
377 /*
378 * Send the FC frame payload using a new exchange and sequence.
379 *
380 * The frame pointer with some of the header's fields must be
381 * filled before calling exch_seq_send(), those fields are,
382 *
383 * - routing control
384 * - FC port did
385 * - FC port sid
386 * - FC header type
387 * - frame control
388 * - parameter or relative offset
389 *
390 * The exchange response handler is set in this routine to resp()
391 * function pointer. It can be called in two scenarios: if a timeout
392 * occurs or if a response frame is received for the exchange. The
393 * fc_frame pointer in response handler will also indicate timeout
394 * as error using IS_ERR related macros.
395 *
396 * The exchange destructor handler is also set in this routine.
397 * The destructor handler is invoked by EM layer when exchange
398 * is about to free, this can be used by caller to free its
399 * resources along with exchange free.
400 *
401 * The arg is passed back to resp and destructor handler.
402 *
403 * The timeout value (in msec) for an exchange is set if non zero
404 * timer_msec argument is specified. The timer is canceled when
405 * it fires or when the exchange is done. The exchange timeout handler
406 * is registered by EM layer.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800407 *
408 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800409 */
410 struct fc_seq *(*exch_seq_send)(struct fc_lport *lp,
411 struct fc_frame *fp,
412 void (*resp)(struct fc_seq *sp,
413 struct fc_frame *fp,
414 void *arg),
415 void (*destructor)(struct fc_seq *sp,
416 void *arg),
417 void *arg, unsigned int timer_msec);
418
419 /*
Yi Zoub277d2a2009-02-27 14:07:21 -0800420 * Sets up the DDP context for a given exchange id on the given
421 * scatterlist if LLD supports DDP for large receive.
422 *
423 * STATUS: OPTIONAL
424 */
425 int (*ddp_setup)(struct fc_lport *lp, u16 xid,
426 struct scatterlist *sgl, unsigned int sgc);
427 /*
428 * Completes the DDP transfer and returns the length of data DDPed
429 * for the given exchange id.
430 *
431 * STATUS: OPTIONAL
432 */
433 int (*ddp_done)(struct fc_lport *lp, u16 xid);
434 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800435 * Send a frame using an existing sequence and exchange.
436 *
437 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800438 */
439 int (*seq_send)(struct fc_lport *lp, struct fc_seq *sp,
440 struct fc_frame *fp);
441
442 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800443 * Send an ELS response using infomation from a previous
444 * exchange and sequence.
445 *
446 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800447 */
448 void (*seq_els_rsp_send)(struct fc_seq *sp, enum fc_els_cmd els_cmd,
449 struct fc_seq_els_data *els_data);
450
451 /*
452 * Abort an exchange and sequence. Generally called because of a
453 * exchange timeout or an abort from the upper layer.
454 *
455 * A timer_msec can be specified for abort timeout, if non-zero
456 * timer_msec value is specified then exchange resp handler
457 * will be called with timeout error if no response to abort.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800458 *
459 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800460 */
461 int (*seq_exch_abort)(const struct fc_seq *req_sp,
462 unsigned int timer_msec);
463
464 /*
465 * Indicate that an exchange/sequence tuple is complete and the memory
466 * allocated for the related objects may be freed.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800467 *
468 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800469 */
470 void (*exch_done)(struct fc_seq *sp);
471
472 /*
Robert Love42e9a922008-12-09 15:10:17 -0800473 * Start a new sequence on the same exchange/sequence tuple.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800474 *
475 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800476 */
477 struct fc_seq *(*seq_start_next)(struct fc_seq *sp);
478
479 /*
480 * Reset an exchange manager, completing all sequences and exchanges.
481 * If s_id is non-zero, reset only exchanges originating from that FID.
482 * If d_id is non-zero, reset only exchanges sending to that FID.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800483 *
484 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800485 */
Abhijeet Joglekar1f6ff362009-02-27 10:54:35 -0800486 void (*exch_mgr_reset)(struct fc_lport *,
Robert Love42e9a922008-12-09 15:10:17 -0800487 u32 s_id, u32 d_id);
488
Robert Love0ae4d4a2009-02-27 10:55:39 -0800489 /*
490 * Flush the rport work queue. Generally used before shutdown.
491 *
492 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800493 */
Robert Love0ae4d4a2009-02-27 10:55:39 -0800494 void (*rport_flush_queue)(void);
Robert Love42e9a922008-12-09 15:10:17 -0800495
496 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800497 * Receive a frame for a local port.
498 *
499 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800500 */
501 void (*lport_recv)(struct fc_lport *lp, struct fc_seq *sp,
502 struct fc_frame *fp);
503
Robert Love0ae4d4a2009-02-27 10:55:39 -0800504 /*
505 * Reset the local port.
506 *
507 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800508 */
Robert Love0ae4d4a2009-02-27 10:55:39 -0800509 int (*lport_reset)(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800510
511 /*
Robert Love9737e6a2009-08-25 14:02:59 -0700512 * Create a remote port with a given port ID
513 *
514 * STATUS: OPTIONAL
Robert Love5101ff92009-02-27 10:55:18 -0800515 */
Robert Love9737e6a2009-08-25 14:02:59 -0700516 struct fc_rport_priv *(*rport_create)(struct fc_lport *, u32);
Robert Love5101ff92009-02-27 10:55:18 -0800517
518 /*
Robert Love42e9a922008-12-09 15:10:17 -0800519 * Initiates the RP state machine. It is called from the LP module.
520 * This function will issue the following commands to the N_Port
521 * identified by the FC ID provided.
522 *
523 * - PLOGI
524 * - PRLI
525 * - RTV
Robert Love0ae4d4a2009-02-27 10:55:39 -0800526 *
527 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800528 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700529 int (*rport_login)(struct fc_rport_priv *);
Robert Love42e9a922008-12-09 15:10:17 -0800530
531 /*
532 * Logoff, and remove the rport from the transport if
533 * it had been added. This will send a LOGO to the target.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800534 *
535 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800536 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700537 int (*rport_logoff)(struct fc_rport_priv *);
Robert Love42e9a922008-12-09 15:10:17 -0800538
539 /*
540 * Recieve a request from a remote port.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800541 *
542 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800543 */
544 void (*rport_recv_req)(struct fc_seq *, struct fc_frame *,
Joe Eykholt131203a2009-08-25 14:03:10 -0700545 struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800546
Robert Love0ae4d4a2009-02-27 10:55:39 -0800547 /*
548 * lookup an rport by it's port ID.
549 *
550 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800551 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700552 struct fc_rport_priv *(*rport_lookup)(const struct fc_lport *, u32);
Robert Love42e9a922008-12-09 15:10:17 -0800553
554 /*
Joe Eykholtf211fa52009-08-25 14:01:01 -0700555 * Destroy an rport after final kref_put().
556 * The argument is a pointer to the kref inside the fc_rport_priv.
557 */
558 void (*rport_destroy)(struct kref *);
559
560 /*
Robert Love42e9a922008-12-09 15:10:17 -0800561 * Send a fcp cmd from fsp pkt.
562 * Called with the SCSI host lock unlocked and irqs disabled.
563 *
564 * The resp handler is called when FCP_RSP received.
565 *
Robert Love0ae4d4a2009-02-27 10:55:39 -0800566 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800567 */
568 int (*fcp_cmd_send)(struct fc_lport *lp, struct fc_fcp_pkt *fsp,
569 void (*resp)(struct fc_seq *, struct fc_frame *fp,
570 void *arg));
571
572 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800573 * Cleanup the FCP layer, used durring link down and reset
574 *
575 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800576 */
577 void (*fcp_cleanup)(struct fc_lport *lp);
578
579 /*
580 * Abort all I/O on a local port
Robert Love0ae4d4a2009-02-27 10:55:39 -0800581 *
582 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800583 */
584 void (*fcp_abort_io)(struct fc_lport *lp);
585
Robert Love0ae4d4a2009-02-27 10:55:39 -0800586 /*
587 * Receive a request for the discovery layer.
588 *
589 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800590 */
Robert Love42e9a922008-12-09 15:10:17 -0800591 void (*disc_recv_req)(struct fc_seq *,
592 struct fc_frame *, struct fc_lport *);
593
594 /*
595 * Start discovery for a local port.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800596 *
597 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800598 */
599 void (*disc_start)(void (*disc_callback)(struct fc_lport *,
600 enum fc_disc_event),
601 struct fc_lport *);
602
603 /*
604 * Stop discovery for a given lport. This will remove
605 * all discovered rports
Robert Love0ae4d4a2009-02-27 10:55:39 -0800606 *
607 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800608 */
609 void (*disc_stop) (struct fc_lport *);
610
611 /*
612 * Stop discovery for a given lport. This will block
613 * until all discovered rports are deleted from the
614 * FC transport class
Robert Love0ae4d4a2009-02-27 10:55:39 -0800615 *
616 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800617 */
618 void (*disc_stop_final) (struct fc_lport *);
619};
620
621/* information used by the discovery layer */
622struct fc_disc {
623 unsigned char retry_count;
Robert Love42e9a922008-12-09 15:10:17 -0800624 unsigned char pending;
625 unsigned char requested;
626 unsigned short seq_count;
627 unsigned char buf_len;
Joe Eykholt0f6c614982009-08-25 14:02:11 -0700628 u16 disc_id;
Robert Love42e9a922008-12-09 15:10:17 -0800629
630 void (*disc_callback)(struct fc_lport *,
631 enum fc_disc_event);
632
633 struct list_head rports;
634 struct fc_lport *lport;
635 struct mutex disc_mutex;
636 struct fc_gpn_ft_resp partial_buf; /* partial name buffer */
637 struct delayed_work disc_work;
638};
639
640struct fc_lport {
641 struct list_head list;
642
643 /* Associations */
644 struct Scsi_Host *host;
Vasu Dev96316092009-07-29 17:05:00 -0700645 struct list_head ema_list;
Chris Leech174e1eb2009-11-03 11:46:14 -0800646 struct list_head vports; /* child vports if N_Port */
647 struct fc_vport *vport; /* parent vport if VN_Port */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700648 struct fc_rport_priv *dns_rp;
649 struct fc_rport_priv *ptp_rp;
Robert Love42e9a922008-12-09 15:10:17 -0800650 void *scsi_priv;
651 struct fc_disc disc;
652
653 /* Operational Information */
654 struct libfc_function_template tt;
Vasu Devbc0e17f2009-02-27 10:54:57 -0800655 u8 link_up;
656 u8 qfull;
Robert Love42e9a922008-12-09 15:10:17 -0800657 enum fc_lport_state state;
658 unsigned long boot_time;
659
660 struct fc_host_statistics host_stats;
Robert Love582b45b2009-03-31 15:51:50 -0700661 struct fcoe_dev_stats *dev_stats;
662
Robert Love42e9a922008-12-09 15:10:17 -0800663 u64 wwpn;
664 u64 wwnn;
665 u8 retry_count;
666
667 /* Capabilities */
668 u32 sg_supp:1; /* scatter gather supported */
669 u32 seq_offload:1; /* seq offload supported */
670 u32 crc_offload:1; /* crc offload supported */
671 u32 lro_enabled:1; /* large receive offload */
Chris Leech174e1eb2009-11-03 11:46:14 -0800672 u32 does_npiv:1; /* supports multiple vports */
673 u32 npiv_enabled:1; /* switch/fabric allows NPIV */
Robert Love42e9a922008-12-09 15:10:17 -0800674 u32 mfs; /* max FC payload size */
675 unsigned int service_params;
676 unsigned int e_d_tov;
677 unsigned int r_a_tov;
678 u8 max_retry_count;
Abhijeet Joglekara3666952009-05-01 10:01:26 -0700679 u8 max_rport_retry_count;
Robert Love42e9a922008-12-09 15:10:17 -0800680 u16 link_speed;
681 u16 link_supported_speeds;
682 u16 lro_xid; /* max xid for fcoe lro */
Yi Zouea1e9a92009-02-27 14:07:04 -0800683 unsigned int lso_max; /* max large send size */
Robert Love42e9a922008-12-09 15:10:17 -0800684 struct fc_ns_fts fcts; /* FC-4 type masks */
685 struct fc_els_rnid_gen rnid_gen; /* RNID information */
686
687 /* Semaphores */
688 struct mutex lp_mutex;
689
690 /* Miscellaneous */
691 struct delayed_work retry_work;
Robert Love42e9a922008-12-09 15:10:17 -0800692};
693
Robert Love34f42a02009-02-27 10:55:45 -0800694/*
Robert Love42e9a922008-12-09 15:10:17 -0800695 * FC_LPORT HELPER FUNCTIONS
696 *****************************/
Robert Love42e9a922008-12-09 15:10:17 -0800697static inline int fc_lport_test_ready(struct fc_lport *lp)
698{
699 return lp->state == LPORT_ST_READY;
700}
701
702static inline void fc_set_wwnn(struct fc_lport *lp, u64 wwnn)
703{
704 lp->wwnn = wwnn;
705}
706
707static inline void fc_set_wwpn(struct fc_lport *lp, u64 wwnn)
708{
709 lp->wwpn = wwnn;
710}
711
712static inline void fc_lport_state_enter(struct fc_lport *lp,
713 enum fc_lport_state state)
714{
715 if (state != lp->state)
716 lp->retry_count = 0;
717 lp->state = state;
718}
719
Robert Love582b45b2009-03-31 15:51:50 -0700720static inline int fc_lport_init_stats(struct fc_lport *lp)
721{
722 /* allocate per cpu stats block */
723 lp->dev_stats = alloc_percpu(struct fcoe_dev_stats);
724 if (!lp->dev_stats)
725 return -ENOMEM;
726 return 0;
727}
728
729static inline void fc_lport_free_stats(struct fc_lport *lp)
730{
731 free_percpu(lp->dev_stats);
732}
733
734static inline struct fcoe_dev_stats *fc_lport_get_stats(struct fc_lport *lp)
735{
736 return per_cpu_ptr(lp->dev_stats, smp_processor_id());
737}
738
Vasu Deva0a25da2009-03-17 11:42:29 -0700739static inline void *lport_priv(const struct fc_lport *lp)
740{
741 return (void *)(lp + 1);
742}
743
744/**
745 * libfc_host_alloc() - Allocate a Scsi_Host with room for the fc_lport
746 * @sht: ptr to the scsi host templ
747 * @priv_size: size of private data after fc_lport
748 *
Chris Leech86221962009-11-03 11:46:08 -0800749 * Returns: libfc lport
Vasu Deva0a25da2009-03-17 11:42:29 -0700750 */
Chris Leech86221962009-11-03 11:46:08 -0800751static inline struct fc_lport *
Vasu Deva0a25da2009-03-17 11:42:29 -0700752libfc_host_alloc(struct scsi_host_template *sht, int priv_size)
753{
Chris Leech86221962009-11-03 11:46:08 -0800754 struct fc_lport *lport;
755 struct Scsi_Host *shost;
756
757 shost = scsi_host_alloc(sht, sizeof(*lport) + priv_size);
758 if (!shost)
759 return NULL;
760 lport = shost_priv(shost);
761 lport->host = shost;
762 INIT_LIST_HEAD(&lport->ema_list);
Chris Leech174e1eb2009-11-03 11:46:14 -0800763 INIT_LIST_HEAD(&lport->vports);
Chris Leech86221962009-11-03 11:46:08 -0800764 return lport;
Vasu Deva0a25da2009-03-17 11:42:29 -0700765}
Robert Love42e9a922008-12-09 15:10:17 -0800766
Robert Love34f42a02009-02-27 10:55:45 -0800767/*
Robert Love42e9a922008-12-09 15:10:17 -0800768 * LOCAL PORT LAYER
769 *****************************/
770int fc_lport_init(struct fc_lport *lp);
771
772/*
773 * Destroy the specified local port by finding and freeing all
774 * fc_rports associated with it and then by freeing the fc_lport
775 * itself.
776 */
777int fc_lport_destroy(struct fc_lport *lp);
778
779/*
780 * Logout the specified local port from the fabric
781 */
782int fc_fabric_logoff(struct fc_lport *lp);
783
784/*
785 * Initiate the LP state machine. This handler will use fc_host_attr
786 * to store the FLOGI service parameters, so fc_host_attr must be
787 * initialized before calling this handler.
788 */
789int fc_fabric_login(struct fc_lport *lp);
790
791/*
792 * The link is up for the given local port.
793 */
Chris Leech8faecdd2009-11-03 11:46:19 -0800794void __fc_linkup(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800795void fc_linkup(struct fc_lport *);
796
797/*
798 * Link is down for the given local port.
799 */
Chris Leech8faecdd2009-11-03 11:46:19 -0800800void __fc_linkdown(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800801void fc_linkdown(struct fc_lport *);
802
803/*
Robert Love42e9a922008-12-09 15:10:17 -0800804 * Configure the local port.
805 */
806int fc_lport_config(struct fc_lport *);
807
808/*
809 * Reset the local port.
810 */
811int fc_lport_reset(struct fc_lport *);
812
813/*
814 * Set the mfs or reset
815 */
816int fc_set_mfs(struct fc_lport *lp, u32 mfs);
817
Chris Leech174e1eb2009-11-03 11:46:14 -0800818/*
819 * Allocate a new lport struct for an NPIV VN_Port
820 */
821struct fc_lport *libfc_vport_create(struct fc_vport *vport, int privsize);
822
823/*
824 * Find an NPIV VN_Port by port ID
825 */
826struct fc_lport *fc_vport_id_lookup(struct fc_lport *n_port, u32 port_id);
Robert Love42e9a922008-12-09 15:10:17 -0800827
Robert Love34f42a02009-02-27 10:55:45 -0800828/*
Chris Leech8faecdd2009-11-03 11:46:19 -0800829 * NPIV VN_Port link state management
830 */
831void fc_vport_setlink(struct fc_lport *vn_port);
832void fc_vports_linkchange(struct fc_lport *n_port);
833
834/*
Steve Maa51ab392009-11-03 11:47:34 -0800835 * Issue fc pass-thru request via bsg interface
836 */
837int fc_lport_bsg_request(struct fc_bsg_job *job);
838
839
840/*
Robert Love42e9a922008-12-09 15:10:17 -0800841 * REMOTE PORT LAYER
842 *****************************/
843int fc_rport_init(struct fc_lport *lp);
844void fc_rport_terminate_io(struct fc_rport *rp);
845
Robert Love34f42a02009-02-27 10:55:45 -0800846/*
Robert Love42e9a922008-12-09 15:10:17 -0800847 * DISCOVERY LAYER
848 *****************************/
849int fc_disc_init(struct fc_lport *lp);
850
851
Robert Love34f42a02009-02-27 10:55:45 -0800852/*
Robert Love42e9a922008-12-09 15:10:17 -0800853 * SCSI LAYER
854 *****************************/
855/*
856 * Initialize the SCSI block of libfc
857 */
858int fc_fcp_init(struct fc_lport *);
859
860/*
861 * This section provides an API which allows direct interaction
862 * with the SCSI-ml. Each of these functions satisfies a function
863 * pointer defined in Scsi_Host and therefore is always called
864 * directly from the SCSI-ml.
865 */
866int fc_queuecommand(struct scsi_cmnd *sc_cmd,
867 void (*done)(struct scsi_cmnd *));
868
869/*
Robert Love42e9a922008-12-09 15:10:17 -0800870 * Send an ABTS frame to the target device. The sc_cmd argument
871 * is a pointer to the SCSI command to be aborted.
872 */
873int fc_eh_abort(struct scsi_cmnd *sc_cmd);
874
875/*
876 * Reset a LUN by sending send the tm cmd to the target.
877 */
878int fc_eh_device_reset(struct scsi_cmnd *sc_cmd);
879
880/*
881 * Reset the host adapter.
882 */
883int fc_eh_host_reset(struct scsi_cmnd *sc_cmd);
884
885/*
886 * Check rport status.
887 */
888int fc_slave_alloc(struct scsi_device *sdev);
889
890/*
891 * Adjust the queue depth.
892 */
Mike Christiee881a172009-10-15 17:46:39 -0700893int fc_change_queue_depth(struct scsi_device *sdev, int qdepth, int reason);
Robert Love42e9a922008-12-09 15:10:17 -0800894
895/*
896 * Change the tag type.
897 */
898int fc_change_queue_type(struct scsi_device *sdev, int tag_type);
899
900/*
901 * Free memory pools used by the FCP layer.
902 */
903void fc_fcp_destroy(struct fc_lport *);
904
Robert Love34f42a02009-02-27 10:55:45 -0800905/*
Robert Love42e9a922008-12-09 15:10:17 -0800906 * ELS/CT interface
907 *****************************/
908/*
909 * Initializes ELS/CT interface
910 */
911int fc_elsct_init(struct fc_lport *lp);
Chris Leech11b56182009-11-03 11:46:29 -0800912struct fc_seq *fc_elsct_send(struct fc_lport *lport,
913 u32 did,
914 struct fc_frame *fp,
915 unsigned int op,
916 void (*resp)(struct fc_seq *,
917 struct fc_frame *fp,
918 void *arg),
919 void *arg, u32 timer_msec);
920void fc_lport_flogi_resp(struct fc_seq *, struct fc_frame *, void *);
921void fc_lport_logo_resp(struct fc_seq *, struct fc_frame *, void *);
Robert Love42e9a922008-12-09 15:10:17 -0800922
923
Robert Love34f42a02009-02-27 10:55:45 -0800924/*
Robert Love42e9a922008-12-09 15:10:17 -0800925 * EXCHANGE MANAGER LAYER
926 *****************************/
927/*
928 * Initializes Exchange Manager related
929 * function pointers in struct libfc_function_template.
930 */
931int fc_exch_init(struct fc_lport *lp);
932
933/*
Vasu Dev96316092009-07-29 17:05:00 -0700934 * Adds Exchange Manager (EM) mp to lport.
935 *
936 * Adds specified mp to lport using struct fc_exch_mgr_anchor,
937 * the struct fc_exch_mgr_anchor allows same EM sharing by
938 * more than one lport with their specified match function,
939 * the match function is used in allocating exchange from
940 * added mp.
941 */
942struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *lport,
943 struct fc_exch_mgr *mp,
944 bool (*match)(struct fc_frame *));
945
946/*
947 * Deletes Exchange Manager (EM) from lport by removing
948 * its anchor ema from lport.
949 *
950 * If removed anchor ema was the last user of its associated EM
951 * then also destroys associated EM.
952 */
953void fc_exch_mgr_del(struct fc_exch_mgr_anchor *ema);
954
955/*
Chris Leech174e1eb2009-11-03 11:46:14 -0800956 * Clone an exchange manager list, getting reference holds for each EM.
957 * This is for use with NPIV and sharing the X_ID space between VN_Ports.
958 */
959int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst);
960
961/*
Robert Love42e9a922008-12-09 15:10:17 -0800962 * Allocates an Exchange Manager (EM).
963 *
964 * The EM manages exchanges for their allocation and
965 * free, also allows exchange lookup for received
966 * frame.
967 *
968 * The class is used for initializing FC class of
969 * allocated exchange from EM.
970 *
971 * The min_xid and max_xid will limit new
972 * exchange ID (XID) within this range for
973 * a new exchange.
974 * The LLD may choose to have multiple EMs,
975 * e.g. one EM instance per CPU receive thread in LLD.
Robert Love42e9a922008-12-09 15:10:17 -0800976 *
Vasu Dev52ff8782009-07-29 17:05:10 -0700977 * Specified match function is used in allocating exchanges
978 * from newly allocated EM.
Robert Love42e9a922008-12-09 15:10:17 -0800979 */
980struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *lp,
981 enum fc_class class,
982 u16 min_xid,
Vasu Dev52ff8782009-07-29 17:05:10 -0700983 u16 max_xid,
984 bool (*match)(struct fc_frame *));
Robert Love42e9a922008-12-09 15:10:17 -0800985
986/*
Vasu Dev52ff8782009-07-29 17:05:10 -0700987 * Free all exchange managers of a lport.
Robert Love42e9a922008-12-09 15:10:17 -0800988 */
Vasu Dev52ff8782009-07-29 17:05:10 -0700989void fc_exch_mgr_free(struct fc_lport *lport);
Robert Love42e9a922008-12-09 15:10:17 -0800990
991/*
992 * Receive a frame on specified local port and exchange manager.
993 */
Vasu Dev52ff8782009-07-29 17:05:10 -0700994void fc_exch_recv(struct fc_lport *lp, struct fc_frame *fp);
Robert Love42e9a922008-12-09 15:10:17 -0800995
996/*
Vasu Devb2f00912009-08-25 13:58:53 -0700997 * Reset all EMs of a lport, releasing its all sequences and
998 * exchanges. If sid is non-zero, then reset only exchanges
999 * we sourced from that FID. If did is non-zero, reset only
1000 * exchanges destined to that FID.
Robert Love42e9a922008-12-09 15:10:17 -08001001 */
Abhijeet Joglekar1f6ff362009-02-27 10:54:35 -08001002void fc_exch_mgr_reset(struct fc_lport *, u32 s_id, u32 d_id);
Robert Love42e9a922008-12-09 15:10:17 -08001003
1004/*
1005 * Functions for fc_functions_template
1006 */
1007void fc_get_host_speed(struct Scsi_Host *shost);
1008void fc_get_host_port_type(struct Scsi_Host *shost);
1009void fc_get_host_port_state(struct Scsi_Host *shost);
1010void fc_set_rport_loss_tmo(struct fc_rport *rport, u32 timeout);
1011struct fc_host_statistics *fc_get_host_stats(struct Scsi_Host *);
1012
Robert Love42e9a922008-12-09 15:10:17 -08001013#endif /* _LIBFC_H_ */