blob: 310d8a22b726b98b6609ad842937718d8c83f7e4 [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
Robert Love3a3b42b2009-11-03 11:47:39 -080058/**
59 * enum fc_lport_state - Local port states
60 * @LPORT_ST_DISABLED: Disabled
61 * @LPORT_ST_FLOGI: Fabric login (FLOGI) sent
62 * @LPORT_ST_DNS: Waiting for name server remote port to become ready
63 * @LPORT_ST_RPN_ID: Register port name by ID (RPN_ID) sent
64 * @LPORT_ST_RFT_ID: Register Fibre Channel types by ID (RFT_ID) sent
65 * @LPORT_ST_SCR: State Change Register (SCR) sent
66 * @LPORT_ST_READY: Ready for use
67 * @LPORT_ST_LOGO: Local port logout (LOGO) sent
68 * @LPORT_ST_RESET: Local port reset
Robert Love42e9a922008-12-09 15:10:17 -080069 */
Robert Love42e9a922008-12-09 15:10:17 -080070enum fc_lport_state {
Joe Eykholtb1d9fd52009-07-29 17:04:22 -070071 LPORT_ST_DISABLED = 0,
Robert Love42e9a922008-12-09 15:10:17 -080072 LPORT_ST_FLOGI,
73 LPORT_ST_DNS,
Chris Leechc9c7bd72009-11-03 11:46:51 -080074 LPORT_ST_RNN_ID,
Chris Leech5baa17c2009-11-03 11:46:56 -080075 LPORT_ST_RSNN_NN,
Chris Leechc9866a52009-11-03 11:47:01 -080076 LPORT_ST_RSPN_ID,
Robert Love42e9a922008-12-09 15:10:17 -080077 LPORT_ST_RFT_ID,
78 LPORT_ST_SCR,
79 LPORT_ST_READY,
80 LPORT_ST_LOGO,
81 LPORT_ST_RESET
82};
83
84enum fc_disc_event {
85 DISC_EV_NONE = 0,
86 DISC_EV_SUCCESS,
87 DISC_EV_FAILED
88};
89
Robert Love3a3b42b2009-11-03 11:47:39 -080090/**
91 * enum fc_rport_state - Remote port states
92 * @RPORT_ST_INIT: Initialized
93 * @RPORT_ST_PLOGI: Waiting for PLOGI completion
94 * @RPORT_ST_PRLI: Waiting for PRLI completion
95 * @RPORT_ST_RTV: Waiting for RTV completion
96 * @RPORT_ST_READY: Ready for use
97 * @RPORT_ST_LOGO: Remote port logout (LOGO) sent
98 * @RPORT_ST_ADISC: Discover Address sent
99 * @RPORT_ST_DELETE: Remote port being deleted
100 * @RPORT_ST_RESTART: Remote port being deleted and will restart
101*/
Robert Love42e9a922008-12-09 15:10:17 -0800102enum fc_rport_state {
Robert Love3a3b42b2009-11-03 11:47:39 -0800103 RPORT_ST_INIT,
104 RPORT_ST_PLOGI,
105 RPORT_ST_PRLI,
106 RPORT_ST_RTV,
107 RPORT_ST_READY,
108 RPORT_ST_LOGO,
109 RPORT_ST_ADISC,
110 RPORT_ST_DELETE,
111 RPORT_ST_RESTART,
Robert Love42e9a922008-12-09 15:10:17 -0800112};
113
Robert Love42e9a922008-12-09 15:10:17 -0800114/**
115 * struct fc_disc_port - temporary discovery port to hold rport identifiers
Robert Love9737e6a2009-08-25 14:02:59 -0700116 * @lp: Fibre Channel host port instance
117 * @peers: Node for list management during discovery and RSCN processing
118 * @rport_work: Work struct for starting the rport state machine
119 * @port_id: Port ID of the discovered port
Robert Love42e9a922008-12-09 15:10:17 -0800120 */
121struct fc_disc_port {
Robert Love3a3b42b2009-11-03 11:47:39 -0800122 struct fc_lport *lp;
123 struct list_head peers;
124 struct work_struct rport_work;
125 u32 port_id;
Robert Love42e9a922008-12-09 15:10:17 -0800126};
127
Robert Love3a3b42b2009-11-03 11:47:39 -0800128/**
129 * enum fc_rport_event - Remote port events
130 * @RPORT_EV_NONE: No event
131 * @RPORT_EV_READY: Remote port is ready for use
132 * @RPORT_EV_FAILED: State machine failed, remote port is not ready
133 * @RPORT_EV_STOP: Remote port has been stopped
134 * @RPORT_EV_LOGO: Remote port logout (LOGO) sent
135 */
Robert Love42e9a922008-12-09 15:10:17 -0800136enum fc_rport_event {
137 RPORT_EV_NONE = 0,
Joe Eykholt4c0f62b2009-08-25 14:01:12 -0700138 RPORT_EV_READY,
Robert Love42e9a922008-12-09 15:10:17 -0800139 RPORT_EV_FAILED,
140 RPORT_EV_STOP,
141 RPORT_EV_LOGO
142};
143
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700144struct fc_rport_priv;
145
Robert Love3a3b42b2009-11-03 11:47:39 -0800146/**
147 * struct fc_rport_operations - Operations for a remote port
148 * @event_callback: Function to be called for remote port events
149 */
Robert Love42e9a922008-12-09 15:10:17 -0800150struct fc_rport_operations {
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700151 void (*event_callback)(struct fc_lport *, struct fc_rport_priv *,
Robert Love42e9a922008-12-09 15:10:17 -0800152 enum fc_rport_event);
153};
154
155/**
156 * struct fc_rport_libfc_priv - libfc internal information about a remote port
Robert Love3a3b42b2009-11-03 11:47:39 -0800157 * @local_port: The associated local port
158 * @rp_state: Indicates READY for I/O or DELETE when blocked
159 * @flags: REC and RETRY supported flags
160 * @e_d_tov: Error detect timeout value (in msec)
161 * @r_a_tov: Resource allocation timeout value (in msec)
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700162 */
163struct fc_rport_libfc_priv {
164 struct fc_lport *local_port;
165 enum fc_rport_state rp_state;
166 u16 flags;
167 #define FC_RP_FLAGS_REC_SUPPORTED (1 << 0)
168 #define FC_RP_FLAGS_RETRY (1 << 1)
169 unsigned int e_d_tov;
170 unsigned int r_a_tov;
171};
172
173/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800174 * struct fc_rport_priv - libfc remote port and discovery info
175 * @local_port: The associated local port
176 * @rport: The FC transport remote port
177 * @kref: Reference counter
178 * @rp_state: Enumeration that tracks progress of PLOGI, PRLI,
179 * and RTV exchanges
180 * @ids: The remote port identifiers and roles
181 * @flags: REC and RETRY supported flags
182 * @max_seq: Maximum number of concurrent sequences
183 * @disc_id: The discovery identifier
184 * @maxframe_size: The maximum frame size
185 * @retries: The retry count for the current state
186 * @e_d_tov: Error detect timeout value (in msec)
187 * @r_a_tov: Resource allocation timeout value (in msec)
188 * @rp_mutex: The mutex that protects the remote port
189 * @retry_work: Handle for retries
190 * @event_callback: Callback when READY, FAILED or LOGO states complete
Robert Love42e9a922008-12-09 15:10:17 -0800191 */
Joe Eykholt9e9d0452009-08-25 14:01:18 -0700192struct fc_rport_priv {
Robert Love3a3b42b2009-11-03 11:47:39 -0800193 struct fc_lport *local_port;
194 struct fc_rport *rport;
195 struct kref kref;
196 enum fc_rport_state rp_state;
Joe Eykholtf211fa52009-08-25 14:01:01 -0700197 struct fc_rport_identifiers ids;
Robert Love3a3b42b2009-11-03 11:47:39 -0800198 u16 flags;
199 u16 max_seq;
200 u16 disc_id;
201 u16 maxframe_size;
202 unsigned int retries;
203 unsigned int e_d_tov;
204 unsigned int r_a_tov;
205 struct mutex rp_mutex;
206 struct delayed_work retry_work;
207 enum fc_rport_event event;
208 struct fc_rport_operations *ops;
209 struct list_head peers;
210 struct work_struct event_work;
211 u32 supported_classes;
Robert Love42e9a922008-12-09 15:10:17 -0800212};
213
Robert Love3a3b42b2009-11-03 11:47:39 -0800214/**
215 * struct fcoe_dev_stats - fcoe stats structure
216 * @SecondsSinceLastReset: Seconds since the last reset
217 * @TxFrames: Number of transmitted frames
218 * @TxWords: Number of transmitted words
219 * @RxFrames: Number of received frames
220 * @RxWords: Number of received words
221 * @ErrorFrames: Number of received error frames
222 * @DumpedFrames: Number of dumped frames
223 * @LinkFailureCount: Number of link failures
224 * @LossOfSignalCount: Number for signal losses
225 * @InvalidTxWordCount: Number of invalid transmitted words
226 * @InvalidCRCCount: Number of invalid CRCs
227 * @InputRequests: Number of input requests
228 * @OutputRequests: Number of output requests
229 * @ControlRequests: Number of control requests
230 * @InputMegabytes: Number of received megabytes
231 * @OutputMegabytes: Number of transmitted megabytes
Robert Love42e9a922008-12-09 15:10:17 -0800232 */
233struct fcoe_dev_stats {
234 u64 SecondsSinceLastReset;
235 u64 TxFrames;
236 u64 TxWords;
237 u64 RxFrames;
238 u64 RxWords;
239 u64 ErrorFrames;
240 u64 DumpedFrames;
241 u64 LinkFailureCount;
242 u64 LossOfSignalCount;
243 u64 InvalidTxWordCount;
244 u64 InvalidCRCCount;
245 u64 InputRequests;
246 u64 OutputRequests;
247 u64 ControlRequests;
248 u64 InputMegabytes;
249 u64 OutputMegabytes;
250};
251
Robert Love3a3b42b2009-11-03 11:47:39 -0800252/**
253 * struct fc_seq_els_data - ELS data used for passing ELS specific responses
254 * @fp: The ELS frame
255 * @reason: The reason for rejection
256 * @explan: The explaination of the rejection
257 *
258 * Mainly used by the exchange manager layer.
Robert Love42e9a922008-12-09 15:10:17 -0800259 */
260struct fc_seq_els_data {
261 struct fc_frame *fp;
262 enum fc_els_rjt_reason reason;
263 enum fc_els_rjt_explan explan;
264};
265
Robert Love3a3b42b2009-11-03 11:47:39 -0800266/**
267 * struct fc_fcp_pkt - FCP request structure (one for each scsi_cmnd request)
268 * @lp: The associated local port
269 * @state: The state of the I/O
270 * @tgt_flags: Target's flags
271 * @ref_cnt: Reference count
272 * @scsi_pkt_lock: Lock to protect the SCSI packet (must be taken before the
273 * host_lock if both are to be held at the same time)
274 * @cmd: The SCSI command (set and clear with the host_lock held)
275 * @list: Tracks queued commands (accessed with the host_lock held)
276 * @timer: The command timer
277 * @tm_done: Completion indicator
278 * @wait_for_comp: Indicator to wait for completion of the I/O (in jiffies)
279 * @start_time: Timestamp indicating the start of the I/O (in jiffies)
280 * @end_time: Timestamp indicating the end of the I/O (in jiffies)
281 * @last_pkt_time: Timestamp of the last frame received (in jiffies)
282 * @data_len: The length of the data
283 * @cdb_cmd: The CDB command
284 * @xfer_len: The transfer length
285 * @xfer_ddp: Indicates if this transfer used DDP (XID of the exchange
286 * will be set here if DDP was setup)
287 * @xfer_contig_end: The offset into the buffer if the buffer is contiguous
288 * (Tx and Rx)
289 * @max_payload: The maximum payload size (in bytes)
290 * @io_status: SCSI result (upper 24 bits)
291 * @cdb_status: CDB status
292 * @status_code: FCP I/O status
293 * @scsi_comp_flags: Completion flags (bit 3 Underrun bit 2: overrun)
294 * @req_flags: Request flags (bit 0: read bit:1 write)
295 * @scsi_resid: SCSI residule length
296 * @rport: The remote port that the SCSI command is targeted at
297 * @seq_ptr: The sequence that will carry the SCSI command
298 * @recov_retry: Number of recovery retries
299 * @recov_seq: The sequence for REC or SRR
Robert Love42e9a922008-12-09 15:10:17 -0800300 */
301struct fc_fcp_pkt {
Robert Love3a3b42b2009-11-03 11:47:39 -0800302 /* Housekeeping information */
303 struct fc_lport *lp;
304 u16 state;
305 u16 tgt_flags;
306 atomic_t ref_cnt;
307 spinlock_t scsi_pkt_lock;
308
309 /* SCSI I/O related information */
310 struct scsi_cmnd *cmd;
311 struct list_head list;
312
313 /* Timeout related information */
314 struct timer_list timer;
Robert Love42e9a922008-12-09 15:10:17 -0800315 struct completion tm_done;
Robert Love3a3b42b2009-11-03 11:47:39 -0800316 int wait_for_comp;
317 unsigned long start_time;
318 unsigned long end_time;
319 unsigned long last_pkt_time;
Robert Love42e9a922008-12-09 15:10:17 -0800320
Robert Love3a3b42b2009-11-03 11:47:39 -0800321 /* SCSI command and data transfer information */
322 u32 data_len;
Robert Love42e9a922008-12-09 15:10:17 -0800323
Robert Love3a3b42b2009-11-03 11:47:39 -0800324 /* Transport related veriables */
325 struct fcp_cmnd cdb_cmd;
326 size_t xfer_len;
327 u16 xfer_ddp;
328 u32 xfer_contig_end;
329 u16 max_payload;
Robert Love42e9a922008-12-09 15:10:17 -0800330
Robert Love3a3b42b2009-11-03 11:47:39 -0800331 /* SCSI/FCP return status */
332 u32 io_status;
333 u8 cdb_status;
334 u8 status_code;
335 u8 scsi_comp_flags;
336 u32 req_flags;
337 u32 scsi_resid;
338
339 /* Associated structures */
340 struct fc_rport *rport;
341 struct fc_seq *seq_ptr;
342
343 /* Error Processing information */
344 u8 recov_retry;
345 struct fc_seq *recov_seq;
Robert Love42e9a922008-12-09 15:10:17 -0800346};
347
348/*
349 * Structure and function definitions for managing Fibre Channel Exchanges
350 * and Sequences
351 *
352 * fc_exch holds state for one exchange and links to its active sequence.
353 *
354 * fc_seq holds the state for an individual sequence.
355 */
356
357struct fc_exch_mgr;
Vasu Dev96316092009-07-29 17:05:00 -0700358struct fc_exch_mgr_anchor;
Robert Love3a3b42b2009-11-03 11:47:39 -0800359extern u16 fc_cpu_mask; /* cpu mask for possible cpus */
Robert Love42e9a922008-12-09 15:10:17 -0800360
Robert Love3a3b42b2009-11-03 11:47:39 -0800361/**
362 * struct fc_seq - FC sequence
363 * @id: The sequence ID
364 * @ssb_stat: Status flags for the sequence status block (SSB)
365 * @cnt: Number of frames sent so far
366 * @rec_data: FC-4 value for REC
Robert Love42e9a922008-12-09 15:10:17 -0800367 */
368struct fc_seq {
Robert Love3a3b42b2009-11-03 11:47:39 -0800369 u8 id;
370 u16 ssb_stat;
371 u16 cnt;
372 u32 rec_data;
Robert Love42e9a922008-12-09 15:10:17 -0800373};
374
375#define FC_EX_DONE (1 << 0) /* ep is completed */
376#define FC_EX_RST_CLEANUP (1 << 1) /* reset is forcing completion */
377
Robert Love3a3b42b2009-11-03 11:47:39 -0800378/**
379 * struct fc_exch - Fibre Channel Exchange
380 * @em: Exchange manager
381 * @pool: Exchange pool
382 * @state: The exchange's state
383 * @xid: The exchange ID
384 * @ex_list: Handle used by the EM to track free exchanges
385 * @ex_lock: Lock that protects the exchange
386 * @ex_refcnt: Reference count
387 * @timeout_work: Handle for timeout handler
388 * @lp: The local port that this exchange is on
389 * @oxid: Originator's exchange ID
390 * @rxid: Responder's exchange ID
391 * @oid: Originator's FCID
392 * @sid: Source FCID
393 * @did: Destination FCID
394 * @esb_stat: ESB exchange status
395 * @r_a_tov: Resouce allocation time out value (in msecs)
396 * @seq_id: The next sequence ID to use
397 * @f_ctl: F_CTL flags for the sequence
398 * @fh_type: The frame type
399 * @class: The class of service
400 * @seq: The sequence in use on this exchange
401 * @resp: Callback for responses on this exchange
402 * @destructor: Called when destroying the exchange
403 * @arg: Passed as a void pointer to the resp() callback
Robert Love42e9a922008-12-09 15:10:17 -0800404 *
405 * Locking notes: The ex_lock protects following items:
406 * state, esb_stat, f_ctl, seq.ssb_stat
407 * seq_id
408 * sequence allocation
409 */
410struct fc_exch {
Robert Love3a3b42b2009-11-03 11:47:39 -0800411 struct fc_exch_mgr *em;
412 struct fc_exch_pool *pool;
413 u32 state;
414 u16 xid;
415 struct list_head ex_list;
416 spinlock_t ex_lock;
417 atomic_t ex_refcnt;
418 struct delayed_work timeout_work;
419 struct fc_lport *lp;
420 u16 oxid;
421 u16 rxid;
422 u32 oid;
423 u32 sid;
424 u32 did;
425 u32 esb_stat;
426 u32 r_a_tov;
427 u8 seq_id;
428 u32 f_ctl;
429 u8 fh_type;
430 enum fc_class class;
431 struct fc_seq seq;
432
433 void (*resp)(struct fc_seq *, struct fc_frame *, void *);
434 void *arg;
435
436 void (*destructor)(struct fc_seq *, void *);
437
Robert Love42e9a922008-12-09 15:10:17 -0800438};
439#define fc_seq_exch(sp) container_of(sp, struct fc_exch, seq)
440
Robert Love42e9a922008-12-09 15:10:17 -0800441
Robert Love3a3b42b2009-11-03 11:47:39 -0800442struct libfc_function_template {
Robert Love42e9a922008-12-09 15:10:17 -0800443 /*
444 * Interface to send a FC frame
Robert Love0ae4d4a2009-02-27 10:55:39 -0800445 *
446 * STATUS: REQUIRED
Robert Love42e9a922008-12-09 15:10:17 -0800447 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800448 int (*frame_send)(struct fc_lport *, struct fc_frame *);
Robert Love42e9a922008-12-09 15:10:17 -0800449
Robert Love42e9a922008-12-09 15:10:17 -0800450 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800451 * Interface to send ELS/CT frames
452 *
453 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800454 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800455 struct fc_seq *(*elsct_send)(struct fc_lport *, u32 did,
456 struct fc_frame *, unsigned int op,
Robert Love42e9a922008-12-09 15:10:17 -0800457 void (*resp)(struct fc_seq *,
Robert Love3a3b42b2009-11-03 11:47:39 -0800458 struct fc_frame *, void *arg),
Robert Love42e9a922008-12-09 15:10:17 -0800459 void *arg, u32 timer_msec);
Robert Love42e9a922008-12-09 15:10:17 -0800460
461 /*
462 * Send the FC frame payload using a new exchange and sequence.
463 *
Robert Love42e9a922008-12-09 15:10:17 -0800464 * The exchange response handler is set in this routine to resp()
465 * function pointer. It can be called in two scenarios: if a timeout
466 * occurs or if a response frame is received for the exchange. The
467 * fc_frame pointer in response handler will also indicate timeout
468 * as error using IS_ERR related macros.
469 *
470 * The exchange destructor handler is also set in this routine.
471 * The destructor handler is invoked by EM layer when exchange
472 * is about to free, this can be used by caller to free its
473 * resources along with exchange free.
474 *
475 * The arg is passed back to resp and destructor handler.
476 *
477 * The timeout value (in msec) for an exchange is set if non zero
478 * timer_msec argument is specified. The timer is canceled when
479 * it fires or when the exchange is done. The exchange timeout handler
480 * is registered by EM layer.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800481 *
482 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800483 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800484 struct fc_seq *(*exch_seq_send)(struct fc_lport *, struct fc_frame *,
485 void (*resp)(struct fc_seq *,
486 struct fc_frame *,
487 void *),
488 void (*destructor)(struct fc_seq *,
489 void *),
490 void *, unsigned int timer_msec);
Robert Love42e9a922008-12-09 15:10:17 -0800491
492 /*
Yi Zoub277d2a2009-02-27 14:07:21 -0800493 * Sets up the DDP context for a given exchange id on the given
494 * scatterlist if LLD supports DDP for large receive.
495 *
496 * STATUS: OPTIONAL
497 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800498 int (*ddp_setup)(struct fc_lport *, u16, struct scatterlist *,
499 unsigned int);
Yi Zoub277d2a2009-02-27 14:07:21 -0800500 /*
501 * Completes the DDP transfer and returns the length of data DDPed
502 * for the given exchange id.
503 *
504 * STATUS: OPTIONAL
505 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800506 int (*ddp_done)(struct fc_lport *, u16);
Yi Zoub277d2a2009-02-27 14:07:21 -0800507 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800508 * Send a frame using an existing sequence and exchange.
509 *
510 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800511 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800512 int (*seq_send)(struct fc_lport *, struct fc_seq *,
513 struct fc_frame *);
Robert Love42e9a922008-12-09 15:10:17 -0800514
515 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800516 * Send an ELS response using infomation from a previous
517 * exchange and sequence.
518 *
519 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800520 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800521 void (*seq_els_rsp_send)(struct fc_seq *, enum fc_els_cmd,
522 struct fc_seq_els_data *);
Robert Love42e9a922008-12-09 15:10:17 -0800523
524 /*
525 * Abort an exchange and sequence. Generally called because of a
526 * exchange timeout or an abort from the upper layer.
527 *
528 * A timer_msec can be specified for abort timeout, if non-zero
529 * timer_msec value is specified then exchange resp handler
530 * will be called with timeout error if no response to abort.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800531 *
532 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800533 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800534 int (*seq_exch_abort)(const struct fc_seq *,
Robert Love42e9a922008-12-09 15:10:17 -0800535 unsigned int timer_msec);
536
537 /*
538 * Indicate that an exchange/sequence tuple is complete and the memory
539 * allocated for the related objects may be freed.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800540 *
541 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800542 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800543 void (*exch_done)(struct fc_seq *);
Robert Love42e9a922008-12-09 15:10:17 -0800544
545 /*
Robert Love42e9a922008-12-09 15:10:17 -0800546 * Start a new sequence on the same exchange/sequence tuple.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800547 *
548 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800549 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800550 struct fc_seq *(*seq_start_next)(struct fc_seq *);
Robert Love42e9a922008-12-09 15:10:17 -0800551
552 /*
553 * Reset an exchange manager, completing all sequences and exchanges.
554 * If s_id is non-zero, reset only exchanges originating from that FID.
555 * If d_id is non-zero, reset only exchanges sending to that FID.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800556 *
557 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800558 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800559 void (*exch_mgr_reset)(struct fc_lport *, u32 s_id, u32 d_id);
Robert Love42e9a922008-12-09 15:10:17 -0800560
Robert Love0ae4d4a2009-02-27 10:55:39 -0800561 /*
562 * Flush the rport work queue. Generally used before shutdown.
563 *
564 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800565 */
Robert Love0ae4d4a2009-02-27 10:55:39 -0800566 void (*rport_flush_queue)(void);
Robert Love42e9a922008-12-09 15:10:17 -0800567
568 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800569 * Receive a frame for a local port.
570 *
571 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800572 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800573 void (*lport_recv)(struct fc_lport *, struct fc_seq *,
574 struct fc_frame *);
Robert Love42e9a922008-12-09 15:10:17 -0800575
Robert Love0ae4d4a2009-02-27 10:55:39 -0800576 /*
577 * Reset the local port.
578 *
579 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800580 */
Robert Love0ae4d4a2009-02-27 10:55:39 -0800581 int (*lport_reset)(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800582
583 /*
Robert Love9737e6a2009-08-25 14:02:59 -0700584 * Create a remote port with a given port ID
585 *
586 * STATUS: OPTIONAL
Robert Love5101ff92009-02-27 10:55:18 -0800587 */
Robert Love9737e6a2009-08-25 14:02:59 -0700588 struct fc_rport_priv *(*rport_create)(struct fc_lport *, u32);
Robert Love5101ff92009-02-27 10:55:18 -0800589
590 /*
Robert Love42e9a922008-12-09 15:10:17 -0800591 * Initiates the RP state machine. It is called from the LP module.
592 * This function will issue the following commands to the N_Port
593 * identified by the FC ID provided.
594 *
595 * - PLOGI
596 * - PRLI
597 * - RTV
Robert Love0ae4d4a2009-02-27 10:55:39 -0800598 *
599 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800600 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700601 int (*rport_login)(struct fc_rport_priv *);
Robert Love42e9a922008-12-09 15:10:17 -0800602
603 /*
604 * Logoff, and remove the rport from the transport if
605 * it had been added. This will send a LOGO to the target.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800606 *
607 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800608 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700609 int (*rport_logoff)(struct fc_rport_priv *);
Robert Love42e9a922008-12-09 15:10:17 -0800610
611 /*
612 * Recieve a request from a remote port.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800613 *
614 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800615 */
616 void (*rport_recv_req)(struct fc_seq *, struct fc_frame *,
Joe Eykholt131203a2009-08-25 14:03:10 -0700617 struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800618
Robert Love0ae4d4a2009-02-27 10:55:39 -0800619 /*
620 * lookup an rport by it's port ID.
621 *
622 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800623 */
Joe Eykholt9fb9d322009-08-25 14:00:50 -0700624 struct fc_rport_priv *(*rport_lookup)(const struct fc_lport *, u32);
Robert Love42e9a922008-12-09 15:10:17 -0800625
626 /*
Joe Eykholtf211fa52009-08-25 14:01:01 -0700627 * Destroy an rport after final kref_put().
628 * The argument is a pointer to the kref inside the fc_rport_priv.
629 */
630 void (*rport_destroy)(struct kref *);
631
632 /*
Robert Love42e9a922008-12-09 15:10:17 -0800633 * Send a fcp cmd from fsp pkt.
634 * Called with the SCSI host lock unlocked and irqs disabled.
635 *
636 * The resp handler is called when FCP_RSP received.
637 *
Robert Love0ae4d4a2009-02-27 10:55:39 -0800638 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800639 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800640 int (*fcp_cmd_send)(struct fc_lport *, struct fc_fcp_pkt *,
641 void (*resp)(struct fc_seq *, struct fc_frame *,
642 void *));
Robert Love42e9a922008-12-09 15:10:17 -0800643
644 /*
Robert Love0ae4d4a2009-02-27 10:55:39 -0800645 * Cleanup the FCP layer, used durring link down and reset
646 *
647 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800648 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800649 void (*fcp_cleanup)(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800650
651 /*
652 * Abort all I/O on a local port
Robert Love0ae4d4a2009-02-27 10:55:39 -0800653 *
654 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800655 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800656 void (*fcp_abort_io)(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800657
Robert Love0ae4d4a2009-02-27 10:55:39 -0800658 /*
659 * Receive a request for the discovery layer.
660 *
661 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800662 */
Robert Love3a3b42b2009-11-03 11:47:39 -0800663 void (*disc_recv_req)(struct fc_seq *, struct fc_frame *,
664 struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800665
666 /*
667 * Start discovery for a local port.
Robert Love0ae4d4a2009-02-27 10:55:39 -0800668 *
669 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800670 */
671 void (*disc_start)(void (*disc_callback)(struct fc_lport *,
672 enum fc_disc_event),
673 struct fc_lport *);
674
675 /*
676 * Stop discovery for a given lport. This will remove
677 * all discovered rports
Robert Love0ae4d4a2009-02-27 10:55:39 -0800678 *
679 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800680 */
681 void (*disc_stop) (struct fc_lport *);
682
683 /*
684 * Stop discovery for a given lport. This will block
685 * until all discovered rports are deleted from the
686 * FC transport class
Robert Love0ae4d4a2009-02-27 10:55:39 -0800687 *
688 * STATUS: OPTIONAL
Robert Love42e9a922008-12-09 15:10:17 -0800689 */
690 void (*disc_stop_final) (struct fc_lport *);
691};
692
Robert Love3a3b42b2009-11-03 11:47:39 -0800693/**
694 * struct fc_disc - Discovery context
695 * @retry_count: Number of retries
696 * @pending: 1 if discovery is pending, 0 if not
697 * @requesting: 1 if discovery has been requested, 0 if not
698 * @seq_count: Number of sequences used for discovery
699 * @buf_len: Length of the discovery buffer
700 * @disc_id: Discovery ID
701 * @rports: List of discovered remote ports
702 * @lport: The local port that discovery is for
703 * @disc_mutex: Mutex that protects the discovery context
704 * @partial_buf: Partial name buffer (if names are returned
705 * in multiple frames)
706 * @disc_work: handle for delayed work context
707 * @disc_callback: Callback routine called when discovery completes
708 */
Robert Love42e9a922008-12-09 15:10:17 -0800709struct fc_disc {
Robert Love3a3b42b2009-11-03 11:47:39 -0800710 unsigned char retry_count;
711 unsigned char pending;
712 unsigned char requested;
713 unsigned short seq_count;
714 unsigned char buf_len;
715 u16 disc_id;
716
717 struct list_head rports;
718 struct fc_lport *lport;
719 struct mutex disc_mutex;
720 struct fc_gpn_ft_resp partial_buf;
721 struct delayed_work disc_work;
Robert Love42e9a922008-12-09 15:10:17 -0800722
723 void (*disc_callback)(struct fc_lport *,
724 enum fc_disc_event);
Robert Love42e9a922008-12-09 15:10:17 -0800725};
726
Robert Love3a3b42b2009-11-03 11:47:39 -0800727/**
728 * struct fc_lport - Local port
729 * @host: The SCSI host associated with a local port
730 * @ema_list: Exchange manager anchor list
731 * @dns_rdata: The directory server remote port
732 * @ptp_rdata: Point to point remote port
733 * @scsi_priv: FCP layer internal data
734 * @disc: Discovery context
735 * @vports: Child vports if N_Port
736 * @vport: Parent vport if VN_Port
737 * @tt: Libfc function template
738 * @link_up: Link state (1 = link up, 0 = link down)
739 * @qfull: Queue state (1 queue is full, 0 queue is not full)
740 * @state: Identifies the state
741 * @boot_time: Timestamp indicating when the local port came online
742 * @host_stats: SCSI host statistics
743 * @dev_stats: FCoE device stats (TODO: libfc should not be
744 * FCoE aware)
745 * @retry_count: Number of retries in the current state
746 * @wwpn: World Wide Port Name
747 * @wwnn: World Wide Node Name
748 * @service_params: Common service parameters
749 * @e_d_tov: Error detection timeout value
750 * @r_a_tov: Resouce allocation timeout value
751 * @rnid_gen: RNID information
752 * @sg_supp: Indicates if scatter gather is supported
753 * @seq_offload: Indicates if sequence offload is supported
754 * @crc_offload: Indicates if CRC offload is supported
755 * @lro_enabled: Indicates if large receive offload is supported
756 * @does_npiv: Supports multiple vports
757 * @npiv_enabled: Switch/fabric allows NPIV
758 * @mfs: The maximum Fibre Channel payload size
759 * @max_retry_count: The maximum retry attempts
760 * @max_rport_retry_count: The maximum remote port retry attempts
761 * @lro_xid: The maximum XID for LRO
762 * @lso_max: The maximum large offload send size
763 * @fcts: FC-4 type mask
764 * @lp_mutex: Mutex to protect the local port
765 * @list: Handle for list of local ports
766 * @retry_work: Handle to local port for delayed retry context
767 */
Robert Love42e9a922008-12-09 15:10:17 -0800768struct fc_lport {
Robert Love42e9a922008-12-09 15:10:17 -0800769 /* Associations */
Robert Love3a3b42b2009-11-03 11:47:39 -0800770 struct Scsi_Host *host;
771 struct list_head ema_list;
772 struct fc_rport_priv *dns_rdata;
773 struct fc_rport_priv *ptp_rdata;
774 void *scsi_priv;
775 struct fc_disc disc;
776
777 /* Virtual port information */
778 struct list_head vports;
779 struct fc_vport *vport;
Robert Love42e9a922008-12-09 15:10:17 -0800780
781 /* Operational Information */
782 struct libfc_function_template tt;
Robert Love3a3b42b2009-11-03 11:47:39 -0800783 u8 link_up;
784 u8 qfull;
785 enum fc_lport_state state;
786 unsigned long boot_time;
787 struct fc_host_statistics host_stats;
788 struct fcoe_dev_stats *dev_stats;
789 u8 retry_count;
Robert Love42e9a922008-12-09 15:10:17 -0800790
Robert Love3a3b42b2009-11-03 11:47:39 -0800791 /* Fabric information */
792 u64 wwpn;
793 u64 wwnn;
794 unsigned int service_params;
795 unsigned int e_d_tov;
796 unsigned int r_a_tov;
797 struct fc_els_rnid_gen rnid_gen;
Robert Love42e9a922008-12-09 15:10:17 -0800798
799 /* Capabilities */
Robert Love3a3b42b2009-11-03 11:47:39 -0800800 u32 sg_supp:1;
801 u32 seq_offload:1;
802 u32 crc_offload:1;
803 u32 lro_enabled:1;
804 u32 does_npiv:1;
805 u32 npiv_enabled:1;
806 u32 mfs;
807 u8 max_retry_count;
808 u8 max_rport_retry_count;
809 u16 link_speed;
810 u16 link_supported_speeds;
811 u16 lro_xid;
812 unsigned int lso_max;
813 struct fc_ns_fts fcts;
Robert Love42e9a922008-12-09 15:10:17 -0800814
815 /* Miscellaneous */
Robert Love3a3b42b2009-11-03 11:47:39 -0800816 struct mutex lp_mutex;
817 struct list_head list;
818 struct delayed_work retry_work;
Robert Love42e9a922008-12-09 15:10:17 -0800819};
820
Robert Love34f42a02009-02-27 10:55:45 -0800821/*
Robert Love42e9a922008-12-09 15:10:17 -0800822 * FC_LPORT HELPER FUNCTIONS
823 *****************************/
Robert Love3a3b42b2009-11-03 11:47:39 -0800824
825/**
826 * fc_lport_test_ready() - Determine if a local port is in the READY state
827 * @lport: The local port to test
828 */
829static inline int fc_lport_test_ready(struct fc_lport *lport)
Robert Love42e9a922008-12-09 15:10:17 -0800830{
Robert Love3a3b42b2009-11-03 11:47:39 -0800831 return lport->state == LPORT_ST_READY;
Robert Love42e9a922008-12-09 15:10:17 -0800832}
833
Robert Love3a3b42b2009-11-03 11:47:39 -0800834/**
835 * fc_set_wwnn() - Set the World Wide Node Name of a local port
836 * @lport: The local port whose WWNN is to be set
837 * @wwnn: The new WWNN
838 */
839static inline void fc_set_wwnn(struct fc_lport *lport, u64 wwnn)
Robert Love42e9a922008-12-09 15:10:17 -0800840{
Robert Love3a3b42b2009-11-03 11:47:39 -0800841 lport->wwnn = wwnn;
Robert Love42e9a922008-12-09 15:10:17 -0800842}
843
Robert Love3a3b42b2009-11-03 11:47:39 -0800844/**
845 * fc_set_wwpn() - Set the World Wide Port Name of a local port
846 * @lport: The local port whose WWPN is to be set
847 * @wwnn: The new WWPN
848 */
849static inline void fc_set_wwpn(struct fc_lport *lport, u64 wwnn)
Robert Love42e9a922008-12-09 15:10:17 -0800850{
Robert Love3a3b42b2009-11-03 11:47:39 -0800851 lport->wwpn = wwnn;
Robert Love42e9a922008-12-09 15:10:17 -0800852}
853
Robert Love3a3b42b2009-11-03 11:47:39 -0800854/**
855 * fc_lport_state_enter() - Change a local port's state
856 * @lport: The local port whose state is to change
857 * @state: The new state
858 */
859static inline void fc_lport_state_enter(struct fc_lport *lport,
Robert Love42e9a922008-12-09 15:10:17 -0800860 enum fc_lport_state state)
861{
Robert Love3a3b42b2009-11-03 11:47:39 -0800862 if (state != lport->state)
863 lport->retry_count = 0;
864 lport->state = state;
Robert Love42e9a922008-12-09 15:10:17 -0800865}
866
Robert Love3a3b42b2009-11-03 11:47:39 -0800867/**
868 * fc_lport_init_stats() - Allocate per-CPU statistics for a local port
869 * @lport: The local port whose statistics are to be initialized
870 */
871static inline int fc_lport_init_stats(struct fc_lport *lport)
Robert Love582b45b2009-03-31 15:51:50 -0700872{
Robert Love3a3b42b2009-11-03 11:47:39 -0800873 lport->dev_stats = alloc_percpu(struct fcoe_dev_stats);
874 if (!lport->dev_stats)
Robert Love582b45b2009-03-31 15:51:50 -0700875 return -ENOMEM;
876 return 0;
877}
878
Robert Love3a3b42b2009-11-03 11:47:39 -0800879/**
880 * fc_lport_free_stats() - Free memory for a local port's statistics
881 * @lport: The local port whose statistics are to be freed
882 */
883static inline void fc_lport_free_stats(struct fc_lport *lport)
Robert Love582b45b2009-03-31 15:51:50 -0700884{
Robert Love3a3b42b2009-11-03 11:47:39 -0800885 free_percpu(lport->dev_stats);
Vasu Deva0a25da2009-03-17 11:42:29 -0700886}
887
888/**
Robert Love3a3b42b2009-11-03 11:47:39 -0800889 * fc_lport_get_stats() - Get a local port's statistics
890 * @lport: The local port whose statistics are to be retreived
891 */
892static inline struct fcoe_dev_stats *fc_lport_get_stats(struct fc_lport *lport)
893{
894 return per_cpu_ptr(lport->dev_stats, smp_processor_id());
895}
896
897/**
898 * lport_priv() - Return the private data from a local port
899 * @lport: The local port whose private data is to be retreived
900 */
901static inline void *lport_priv(const struct fc_lport *lport)
902{
903 return (void *)(lport + 1);
904}
905
906/**
907 * libfc_host_alloc() - Allocate a Scsi_Host with room for a local port and
908 * LLD private data
909 * @sht: The SCSI host template
910 * @priv_size: Size of private data
Vasu Deva0a25da2009-03-17 11:42:29 -0700911 *
Chris Leech86221962009-11-03 11:46:08 -0800912 * Returns: libfc lport
Vasu Deva0a25da2009-03-17 11:42:29 -0700913 */
Chris Leech86221962009-11-03 11:46:08 -0800914static inline struct fc_lport *
Vasu Deva0a25da2009-03-17 11:42:29 -0700915libfc_host_alloc(struct scsi_host_template *sht, int priv_size)
916{
Chris Leech86221962009-11-03 11:46:08 -0800917 struct fc_lport *lport;
918 struct Scsi_Host *shost;
919
920 shost = scsi_host_alloc(sht, sizeof(*lport) + priv_size);
921 if (!shost)
922 return NULL;
923 lport = shost_priv(shost);
924 lport->host = shost;
925 INIT_LIST_HEAD(&lport->ema_list);
Chris Leech174e1eb2009-11-03 11:46:14 -0800926 INIT_LIST_HEAD(&lport->vports);
Chris Leech86221962009-11-03 11:46:08 -0800927 return lport;
Vasu Deva0a25da2009-03-17 11:42:29 -0700928}
Robert Love42e9a922008-12-09 15:10:17 -0800929
Robert Love34f42a02009-02-27 10:55:45 -0800930/*
Robert Love3a3b42b2009-11-03 11:47:39 -0800931 * FC_FCP HELPER FUNCTIONS
932 *****************************/
933static inline bool fc_fcp_is_read(const struct fc_fcp_pkt *fsp)
934{
935 if (fsp && fsp->cmd)
936 return fsp->cmd->sc_data_direction == DMA_FROM_DEVICE;
937 return false;
938}
939
940/*
Robert Love42e9a922008-12-09 15:10:17 -0800941 * LOCAL PORT LAYER
942 *****************************/
Robert Love3a3b42b2009-11-03 11:47:39 -0800943int fc_lport_init(struct fc_lport *);
944int fc_lport_destroy(struct fc_lport *);
945int fc_fabric_logoff(struct fc_lport *);
946int fc_fabric_login(struct fc_lport *);
Chris Leech8faecdd2009-11-03 11:46:19 -0800947void __fc_linkup(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800948void fc_linkup(struct fc_lport *);
Chris Leech8faecdd2009-11-03 11:46:19 -0800949void __fc_linkdown(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800950void fc_linkdown(struct fc_lport *);
Robert Love3a3b42b2009-11-03 11:47:39 -0800951void fc_vport_setlink(struct fc_lport *);
952void fc_vports_linkchange(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800953int fc_lport_config(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800954int fc_lport_reset(struct fc_lport *);
Robert Love3a3b42b2009-11-03 11:47:39 -0800955int fc_set_mfs(struct fc_lport *, u32 mfs);
956struct fc_lport *libfc_vport_create(struct fc_vport *, int privsize);
957struct fc_lport *fc_vport_id_lookup(struct fc_lport *, u32 port_id);
958int fc_lport_bsg_request(struct fc_bsg_job *);
Steve Maa51ab392009-11-03 11:47:34 -0800959
960/*
Robert Love42e9a922008-12-09 15:10:17 -0800961 * REMOTE PORT LAYER
962 *****************************/
Robert Love3a3b42b2009-11-03 11:47:39 -0800963int fc_rport_init(struct fc_lport *);
964void fc_rport_terminate_io(struct fc_rport *);
Robert Love42e9a922008-12-09 15:10:17 -0800965
Robert Love34f42a02009-02-27 10:55:45 -0800966/*
Robert Love42e9a922008-12-09 15:10:17 -0800967 * DISCOVERY LAYER
968 *****************************/
Robert Love3a3b42b2009-11-03 11:47:39 -0800969int fc_disc_init(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800970
Robert Love34f42a02009-02-27 10:55:45 -0800971/*
Robert Love3a3b42b2009-11-03 11:47:39 -0800972 * FCP LAYER
Robert Love42e9a922008-12-09 15:10:17 -0800973 *****************************/
Robert Love42e9a922008-12-09 15:10:17 -0800974int fc_fcp_init(struct fc_lport *);
Robert Love42e9a922008-12-09 15:10:17 -0800975void fc_fcp_destroy(struct fc_lport *);
976
Robert Love34f42a02009-02-27 10:55:45 -0800977/*
Robert Love3a3b42b2009-11-03 11:47:39 -0800978 * SCSI INTERACTION LAYER
979 *****************************/
980int fc_queuecommand(struct scsi_cmnd *,
981 void (*done)(struct scsi_cmnd *));
982int fc_eh_abort(struct scsi_cmnd *);
983int fc_eh_device_reset(struct scsi_cmnd *);
984int fc_eh_host_reset(struct scsi_cmnd *);
985int fc_slave_alloc(struct scsi_device *);
986int fc_change_queue_depth(struct scsi_device *, int qdepth, int reason);
987int fc_change_queue_type(struct scsi_device *, int tag_type);
988
989/*
Robert Love42e9a922008-12-09 15:10:17 -0800990 * ELS/CT interface
991 *****************************/
Robert Love3a3b42b2009-11-03 11:47:39 -0800992int fc_elsct_init(struct fc_lport *);
993struct fc_seq *fc_elsct_send(struct fc_lport *, u32 did,
994 struct fc_frame *,
Chris Leech11b56182009-11-03 11:46:29 -0800995 unsigned int op,
996 void (*resp)(struct fc_seq *,
Robert Love3a3b42b2009-11-03 11:47:39 -0800997 struct fc_frame *,
Chris Leech11b56182009-11-03 11:46:29 -0800998 void *arg),
999 void *arg, u32 timer_msec);
1000void fc_lport_flogi_resp(struct fc_seq *, struct fc_frame *, void *);
1001void fc_lport_logo_resp(struct fc_seq *, struct fc_frame *, void *);
Robert Love42e9a922008-12-09 15:10:17 -08001002
1003
Robert Love34f42a02009-02-27 10:55:45 -08001004/*
Robert Love42e9a922008-12-09 15:10:17 -08001005 * EXCHANGE MANAGER LAYER
1006 *****************************/
Robert Love3a3b42b2009-11-03 11:47:39 -08001007int fc_exch_init(struct fc_lport *);
1008struct fc_exch_mgr_anchor *fc_exch_mgr_add(struct fc_lport *,
1009 struct fc_exch_mgr *,
Vasu Dev96316092009-07-29 17:05:00 -07001010 bool (*match)(struct fc_frame *));
Robert Love3a3b42b2009-11-03 11:47:39 -08001011void fc_exch_mgr_del(struct fc_exch_mgr_anchor *);
Chris Leech174e1eb2009-11-03 11:46:14 -08001012int fc_exch_mgr_list_clone(struct fc_lport *src, struct fc_lport *dst);
Robert Love3a3b42b2009-11-03 11:47:39 -08001013struct fc_exch_mgr *fc_exch_mgr_alloc(struct fc_lport *, enum fc_class class,
1014 u16 min_xid, u16 max_xid,
Vasu Dev52ff8782009-07-29 17:05:10 -07001015 bool (*match)(struct fc_frame *));
Robert Love3a3b42b2009-11-03 11:47:39 -08001016void fc_exch_mgr_free(struct fc_lport *);
1017void fc_exch_recv(struct fc_lport *, struct fc_frame *);
Abhijeet Joglekar1f6ff362009-02-27 10:54:35 -08001018void fc_exch_mgr_reset(struct fc_lport *, u32 s_id, u32 d_id);
Robert Love42e9a922008-12-09 15:10:17 -08001019
1020/*
1021 * Functions for fc_functions_template
1022 */
Robert Love3a3b42b2009-11-03 11:47:39 -08001023void fc_get_host_speed(struct Scsi_Host *);
1024void fc_get_host_port_type(struct Scsi_Host *);
1025void fc_get_host_port_state(struct Scsi_Host *);
1026void fc_set_rport_loss_tmo(struct fc_rport *, u32 timeout);
Robert Love42e9a922008-12-09 15:10:17 -08001027struct fc_host_statistics *fc_get_host_stats(struct Scsi_Host *);
1028
Robert Love42e9a922008-12-09 15:10:17 -08001029#endif /* _LIBFC_H_ */