blob: 279782156373ada509f9a10027136015d1527dc3 [file] [log] [blame]
Thomas Gleixnera61127c2019-05-29 16:57:49 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Robert Love85b4aa492008-12-09 15:10:24 -08002/*
Joe Eykholt97c83892009-03-17 11:42:40 -07003 * Copyright (c) 2008-2009 Cisco Systems, Inc. All rights reserved.
4 * Copyright (c) 2007-2008 Intel Corporation. All rights reserved.
Robert Love85b4aa492008-12-09 15:10:24 -08005 *
Robert Love85b4aa492008-12-09 15:10:24 -08006 * Maintained at www.Open-FCoE.org
7 */
8
9#ifndef _LIBFCOE_H
10#define _LIBFCOE_H
11
Joe Eykholt97c83892009-03-17 11:42:40 -070012#include <linux/etherdevice.h>
13#include <linux/if_ether.h>
Robert Love85b4aa492008-12-09 15:10:24 -080014#include <linux/netdevice.h>
15#include <linux/skbuff.h>
Joe Eykholt97c83892009-03-17 11:42:40 -070016#include <linux/workqueue.h>
Davidlohr Bueso848b8972022-05-06 12:57:55 +020017#include <linux/local_lock.h>
Joe Eykholte10f8c62010-07-20 15:20:30 -070018#include <linux/random.h>
Robert Love85b4aa492008-12-09 15:10:24 -080019#include <scsi/fc/fc_fcoe.h>
20#include <scsi/libfc.h>
Robert Love9a74e882012-05-22 19:06:21 -070021#include <scsi/fcoe_sysfs.h>
Robert Love85b4aa492008-12-09 15:10:24 -080022
Vasu Devda87bfa2010-04-09 14:22:59 -070023#define FCOE_MAX_CMD_LEN 16 /* Supported CDB length */
24
Joe Eykholt97c83892009-03-17 11:42:40 -070025/*
Bhanu Prakash Gollapudif4d2b2b2011-02-25 15:03:12 -080026 * Max MTU for FCoE: 14 (FCoE header) + 24 (FC header) + 2112 (max FC payload)
27 * + 4 (FC CRC) + 4 (FCoE trailer) = 2158 bytes
28 */
29#define FCOE_MTU 2158
30
31/*
Joe Eykholt97c83892009-03-17 11:42:40 -070032 * FIP tunable parameters.
33 */
34#define FCOE_CTLR_START_DELAY 2000 /* mS after first adv. to choose FCF */
Christophe JAILLET5523ca82019-07-21 14:50:39 +020035#define FCOE_CTLR_SOL_TOV 2000 /* min. solicitation interval (mS) */
Joe Eykholt97c83892009-03-17 11:42:40 -070036#define FCOE_CTLR_FCF_LIMIT 20 /* max. number of FCF entries */
Joe Eykholte10f8c62010-07-20 15:20:30 -070037#define FCOE_CTLR_VN2VN_LOGIN_LIMIT 3 /* max. VN2VN rport login retries */
Joe Eykholt97c83892009-03-17 11:42:40 -070038
39/**
40 * enum fip_state - internal state of FCoE controller.
41 * @FIP_ST_DISABLED: controller has been disabled or not yet enabled.
42 * @FIP_ST_LINK_WAIT: the physical link is down or unusable.
43 * @FIP_ST_AUTO: determining whether to use FIP or non-FIP mode.
44 * @FIP_ST_NON_FIP: non-FIP mode selected.
45 * @FIP_ST_ENABLED: FIP mode selected.
Joe Eykholte10f8c62010-07-20 15:20:30 -070046 * @FIP_ST_VNMP_START: VN2VN multipath mode start, wait
47 * @FIP_ST_VNMP_PROBE1: VN2VN sent first probe, listening
48 * @FIP_ST_VNMP_PROBE2: VN2VN sent second probe, listening
49 * @FIP_ST_VNMP_CLAIM: VN2VN sent claim, waiting for responses
50 * @FIP_ST_VNMP_UP: VN2VN multipath mode operation
Joe Eykholt97c83892009-03-17 11:42:40 -070051 */
52enum fip_state {
53 FIP_ST_DISABLED,
54 FIP_ST_LINK_WAIT,
55 FIP_ST_AUTO,
56 FIP_ST_NON_FIP,
57 FIP_ST_ENABLED,
Joe Eykholte10f8c62010-07-20 15:20:30 -070058 FIP_ST_VNMP_START,
59 FIP_ST_VNMP_PROBE1,
60 FIP_ST_VNMP_PROBE2,
61 FIP_ST_VNMP_CLAIM,
62 FIP_ST_VNMP_UP,
Joe Eykholt97c83892009-03-17 11:42:40 -070063};
64
Joe Eykholt3d902ac2010-07-20 15:19:58 -070065/*
66 * Modes:
67 * The mode is the state that is to be entered after link up.
68 * It must not change after fcoe_ctlr_init() sets it.
69 */
Hannes Reinecke1917d422016-07-04 10:29:19 +020070enum fip_mode {
Sedat Dilek8beb90a2019-02-15 13:19:20 +010071 FIP_MODE_AUTO,
Hannes Reinecke1917d422016-07-04 10:29:19 +020072 FIP_MODE_NON_FIP,
73 FIP_MODE_FABRIC,
74 FIP_MODE_VN2VN,
75};
Joe Eykholt3d902ac2010-07-20 15:19:58 -070076
Joe Eykholt97c83892009-03-17 11:42:40 -070077/**
Robert Love70b51aab2009-11-03 11:47:45 -080078 * struct fcoe_ctlr - FCoE Controller and FIP state
79 * @state: internal FIP state for network link and FIP or non-FIP mode.
Joe Eykholt22bcd222009-11-03 11:48:11 -080080 * @mode: LLD-selected mode.
Robert Love70b51aab2009-11-03 11:47:45 -080081 * @lp: &fc_lport: libfc local port.
82 * @sel_fcf: currently selected FCF, or NULL.
83 * @fcfs: list of discovered FCFs.
Robert Love9d348762013-09-05 07:47:27 +000084 * @cdev: (Optional) pointer to sysfs fcoe_ctlr_device.
Robert Love70b51aab2009-11-03 11:47:45 -080085 * @fcf_count: number of discovered FCF entries.
86 * @sol_time: time when a multicast solicitation was last sent.
87 * @sel_time: time after which to select an FCF.
88 * @port_ka_time: time of next port keep-alive.
89 * @ctlr_ka_time: time of next controller keep-alive.
90 * @timer: timer struct used for all delayed events.
Joe Eykholt42913652010-03-12 16:08:23 -080091 * @timer_work: &work_struct for doing keep-alives and resets.
Robert Love70b51aab2009-11-03 11:47:45 -080092 * @recv_work: &work_struct for receiving FIP frames.
Joe Eykholt97c83892009-03-17 11:42:40 -070093 * @fip_recv_list: list of received FIP frames.
Joe Eykholt794d98e2010-11-30 16:19:56 -080094 * @flogi_req: clone of FLOGI request sent
Joe Eykholte10f8c62010-07-20 15:20:30 -070095 * @rnd_state: state for pseudo-random number generator.
96 * @port_id: proposed or selected local-port ID.
Robert Love70b51aab2009-11-03 11:47:45 -080097 * @user_mfs: configured maximum FC frame size, including FC header.
98 * @flogi_oxid: exchange ID of most recent fabric login.
Joe Eykholt794d98e2010-11-30 16:19:56 -080099 * @flogi_req_send: send of FLOGI requested
Robert Love70b51aab2009-11-03 11:47:45 -0800100 * @flogi_count: number of FLOGI attempts in AUTO mode.
Robert Love70b51aab2009-11-03 11:47:45 -0800101 * @map_dest: use the FC_MAP mode for destination MAC addresses.
Hannes Reinecke9a6cf882016-07-19 13:49:40 +0200102 * @fip_resp: start FIP VLAN discovery responder
Robert Love70b51aab2009-11-03 11:47:45 -0800103 * @spma: supports SPMA server-provided MACs mode
Joe Eykholte10f8c62010-07-20 15:20:30 -0700104 * @probe_tries: number of FC_IDs probed
Hannes Reinecke9a6cf882016-07-19 13:49:40 +0200105 * @priority: DCBx FCoE APP priority
Robert Love70b51aab2009-11-03 11:47:45 -0800106 * @dest_addr: MAC address of the selected FC forwarder.
107 * @ctl_src_addr: the native MAC address of our local port.
108 * @send: LLD-supplied function to handle sending FIP Ethernet frames
109 * @update_mac: LLD-supplied function to handle changes to MAC addresses.
110 * @get_src_addr: LLD-supplied function to supply a source MAC address.
Joe Eykholtfdb068c2010-07-20 15:19:47 -0700111 * @ctlr_mutex: lock protecting this structure.
Joe Eykholt794d98e2010-11-30 16:19:56 -0800112 * @ctlr_lock: spinlock covering flogi_req
Joe Eykholt97c83892009-03-17 11:42:40 -0700113 *
114 * This structure is used by all FCoE drivers. It contains information
115 * needed by all FCoE low-level drivers (LLDs) as well as internal state
116 * for FIP, and fields shared with the LLDS.
117 */
118struct fcoe_ctlr {
119 enum fip_state state;
Hannes Reinecke1917d422016-07-04 10:29:19 +0200120 enum fip_mode mode;
Joe Eykholt97c83892009-03-17 11:42:40 -0700121 struct fc_lport *lp;
122 struct fcoe_fcf *sel_fcf;
123 struct list_head fcfs;
Robert Love9d348762013-09-05 07:47:27 +0000124 struct fcoe_ctlr_device *cdev;
Joe Eykholt97c83892009-03-17 11:42:40 -0700125 u16 fcf_count;
126 unsigned long sol_time;
127 unsigned long sel_time;
128 unsigned long port_ka_time;
129 unsigned long ctlr_ka_time;
130 struct timer_list timer;
Joe Eykholt42913652010-03-12 16:08:23 -0800131 struct work_struct timer_work;
Joe Eykholt97c83892009-03-17 11:42:40 -0700132 struct work_struct recv_work;
133 struct sk_buff_head fip_recv_list;
Joe Eykholt794d98e2010-11-30 16:19:56 -0800134 struct sk_buff *flogi_req;
Joe Eykholte10f8c62010-07-20 15:20:30 -0700135
136 struct rnd_state rnd_state;
137 u32 port_id;
138
Joe Eykholt97c83892009-03-17 11:42:40 -0700139 u16 user_mfs;
140 u16 flogi_oxid;
Joe Eykholt794d98e2010-11-30 16:19:56 -0800141 u8 flogi_req_send;
Joe Eykholt97c83892009-03-17 11:42:40 -0700142 u8 flogi_count;
Hannes Reinecke9a6cf882016-07-19 13:49:40 +0200143 bool map_dest;
144 bool fip_resp;
Vasu Dev184dd342009-05-17 12:33:28 +0000145 u8 spma;
Joe Eykholte10f8c62010-07-20 15:20:30 -0700146 u8 probe_tries;
john fastabend6f6c2aa2011-11-18 13:35:56 -0800147 u8 priority;
Joe Eykholt97c83892009-03-17 11:42:40 -0700148 u8 dest_addr[ETH_ALEN];
149 u8 ctl_src_addr[ETH_ALEN];
Joe Eykholt97c83892009-03-17 11:42:40 -0700150
151 void (*send)(struct fcoe_ctlr *, struct sk_buff *);
Chris Leech11b56182009-11-03 11:46:29 -0800152 void (*update_mac)(struct fc_lport *, u8 *addr);
153 u8 * (*get_src_addr)(struct fc_lport *);
Joe Eykholtfdb068c2010-07-20 15:19:47 -0700154 struct mutex ctlr_mutex;
Joe Eykholt794d98e2010-11-30 16:19:56 -0800155 spinlock_t ctlr_lock;
Joe Eykholt97c83892009-03-17 11:42:40 -0700156};
157
Robert Love70b51aab2009-11-03 11:47:45 -0800158/**
Robert Love619fe4b2012-05-22 19:06:10 -0700159 * fcoe_ctlr_priv() - Return the private data from a fcoe_ctlr
160 * @cltr: The fcoe_ctlr whose private data will be returned
161 */
162static inline void *fcoe_ctlr_priv(const struct fcoe_ctlr *ctlr)
163{
164 return (void *)(ctlr + 1);
165}
166
Robert Love9d348762013-09-05 07:47:27 +0000167/*
168 * This assumes that the fcoe_ctlr (x) is allocated with the fcoe_ctlr_device.
169 */
Robert Love8d55e502012-05-22 19:06:26 -0700170#define fcoe_ctlr_to_ctlr_dev(x) \
Robert Love9d348762013-09-05 07:47:27 +0000171 (x)->cdev
Robert Love8d55e502012-05-22 19:06:26 -0700172
Robert Love619fe4b2012-05-22 19:06:10 -0700173/**
Robert Love70b51aab2009-11-03 11:47:45 -0800174 * struct fcoe_fcf - Fibre-Channel Forwarder
175 * @list: list linkage
Robert Love8d55e502012-05-22 19:06:26 -0700176 * @event_work: Work for FC Transport actions queue
177 * @event: The event to be processed
178 * @fip: The controller that the FCF was discovered on
179 * @fcf_dev: The associated fcoe_fcf_device instance
Robert Love70b51aab2009-11-03 11:47:45 -0800180 * @time: system time (jiffies) when an advertisement was last received
181 * @switch_name: WWN of switch from advertisement
182 * @fabric_name: WWN of fabric from advertisement
183 * @fc_map: FC_MAP value from advertisement
Bhanu Prakash Gollapudi81c11dd2012-03-09 14:50:03 -0800184 * @fcf_mac: Ethernet address of the FCF for FIP traffic
185 * @fcoe_mac: Ethernet address of the FCF for FCoE traffic
Robert Love70b51aab2009-11-03 11:47:45 -0800186 * @vfid: virtual fabric ID
187 * @pri: selection priority, smaller values are better
Joe Eykholt794d98e2010-11-30 16:19:56 -0800188 * @flogi_sent: current FLOGI sent to this FCF
Robert Love70b51aab2009-11-03 11:47:45 -0800189 * @flags: flags received from advertisement
190 * @fka_period: keep-alive period, in jiffies
Joe Eykholt97c83892009-03-17 11:42:40 -0700191 *
192 * A Fibre-Channel Forwarder (FCF) is the entity on the Ethernet that
193 * passes FCoE frames on to an FC fabric. This structure represents
194 * one FCF from which advertisements have been received.
195 *
196 * When looking up an FCF, @switch_name, @fabric_name, @fc_map, @vfid, and
197 * @fcf_mac together form the lookup key.
198 */
199struct fcoe_fcf {
200 struct list_head list;
Robert Love8d55e502012-05-22 19:06:26 -0700201 struct work_struct event_work;
202 struct fcoe_ctlr *fip;
203 struct fcoe_fcf_device *fcf_dev;
Joe Eykholt97c83892009-03-17 11:42:40 -0700204 unsigned long time;
205
206 u64 switch_name;
207 u64 fabric_name;
208 u32 fc_map;
209 u16 vfid;
210 u8 fcf_mac[ETH_ALEN];
Bhanu Prakash Gollapudi81c11dd2012-03-09 14:50:03 -0800211 u8 fcoe_mac[ETH_ALEN];
Joe Eykholt97c83892009-03-17 11:42:40 -0700212
213 u8 pri;
Joe Eykholt794d98e2010-11-30 16:19:56 -0800214 u8 flogi_sent;
Joe Eykholt97c83892009-03-17 11:42:40 -0700215 u16 flags;
216 u32 fka_period;
Yi Zou8cdffdc2009-11-20 14:54:57 -0800217 u8 fd_flags:1;
Joe Eykholt97c83892009-03-17 11:42:40 -0700218};
219
Robert Love8d55e502012-05-22 19:06:26 -0700220#define fcoe_fcf_to_fcf_dev(x) \
221 ((x)->fcf_dev)
222
Joe Eykholte10f8c62010-07-20 15:20:30 -0700223/**
224 * struct fcoe_rport - VN2VN remote port
225 * @time: time of create or last beacon packet received from node
226 * @fcoe_len: max FCoE frame size, not including VLAN or Ethernet headers
227 * @flags: flags from probe or claim
228 * @login_count: number of unsuccessful rport logins to this port
229 * @enode_mac: E_Node control MAC address
230 * @vn_mac: VN_Node assigned MAC address for data
231 */
232struct fcoe_rport {
Hannes Reinecke023358b2019-07-24 11:00:55 +0200233 struct fc_rport_priv rdata;
Joe Eykholte10f8c62010-07-20 15:20:30 -0700234 unsigned long time;
235 u16 fcoe_len;
236 u16 flags;
237 u8 login_count;
238 u8 enode_mac[ETH_ALEN];
239 u8 vn_mac[ETH_ALEN];
240};
241
Joe Eykholt97c83892009-03-17 11:42:40 -0700242/* FIP API functions */
Sedat Dilek8beb90a2019-02-15 13:19:20 +0100243void fcoe_ctlr_init(struct fcoe_ctlr *, enum fip_mode);
Joe Eykholt97c83892009-03-17 11:42:40 -0700244void fcoe_ctlr_destroy(struct fcoe_ctlr *);
245void fcoe_ctlr_link_up(struct fcoe_ctlr *);
246int fcoe_ctlr_link_down(struct fcoe_ctlr *);
Chris Leech11b56182009-11-03 11:46:29 -0800247int fcoe_ctlr_els_send(struct fcoe_ctlr *, struct fc_lport *, struct sk_buff *);
Joe Eykholt97c83892009-03-17 11:42:40 -0700248void fcoe_ctlr_recv(struct fcoe_ctlr *, struct sk_buff *);
Robert Love70b51aab2009-11-03 11:47:45 -0800249int fcoe_ctlr_recv_flogi(struct fcoe_ctlr *, struct fc_lport *,
Joe Eykholt386309ce2009-11-03 11:49:16 -0800250 struct fc_frame *);
Joe Eykholt97c83892009-03-17 11:42:40 -0700251
Robert Love85b4aa492008-12-09 15:10:24 -0800252/* libfcoe funcs */
Gustavo A. R. Silva54db8042022-03-03 17:55:21 -0600253u64 fcoe_wwn_from_mac(unsigned char mac[ETH_ALEN], unsigned int scheme,
254 unsigned int port);
Joe Eykholte10f8c62010-07-20 15:20:30 -0700255int fcoe_libfc_config(struct fc_lport *, struct fcoe_ctlr *,
256 const struct libfc_function_template *, int init_fcp);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800257u32 fcoe_fc_crc(struct fc_frame *fp);
258int fcoe_start_io(struct sk_buff *skb);
Bhanu Prakash Gollapudid8348952011-08-04 17:38:49 -0700259int fcoe_get_wwn(struct net_device *netdev, u64 *wwn, int type);
Bhanu Prakash Gollapudi814740d2011-10-03 16:45:01 -0700260void __fcoe_get_lesb(struct fc_lport *lport, struct fc_els_lesb *fc_lesb,
261 struct net_device *netdev);
Bhanu Prakash Gollapudid8348952011-08-04 17:38:49 -0700262void fcoe_wwn_to_str(u64 wwn, char *buf, int len);
263int fcoe_validate_vport_create(struct fc_vport *vport);
Yi Zou037026892012-12-06 06:23:58 +0000264int fcoe_link_speed_update(struct fc_lport *);
Yi Zou57c27282012-12-06 06:24:13 +0000265void fcoe_get_lesb(struct fc_lport *, struct fc_els_lesb *);
266void fcoe_ctlr_get_lesb(struct fcoe_ctlr_device *ctlr_dev);
Vasu Devfdd780272009-03-17 11:42:24 -0700267
Vasu Dev519e5132010-07-20 15:19:32 -0700268/**
269 * is_fip_mode() - returns true if FIP mode selected.
270 * @fip: FCoE controller.
271 */
272static inline bool is_fip_mode(struct fcoe_ctlr *fip)
273{
274 return fip->state == FIP_ST_ENABLED;
275}
276
Yi Zou0ade7d22011-01-28 16:04:50 -0800277/* helper for FCoE SW HBA drivers, can include subven and subdev if needed. The
278 * modpost would use pci_device_id table to auto-generate formatted module alias
279 * into the corresponding .mod.c file, but there may or may not be a pci device
280 * id table for FCoE drivers so we use the following helper for build the fcoe
281 * driver module alias.
282 */
283#define MODULE_ALIAS_FCOE_PCI(ven, dev) \
284 MODULE_ALIAS("fcoe-pci:" \
285 "v" __stringify(ven) \
286 "d" __stringify(dev) "sv*sd*bc*sc*i*")
287
288/* the name of the default FCoE transport driver fcoe.ko */
289#define FCOE_TRANSPORT_DEFAULT "fcoe"
290
291/* struct fcoe_transport - The FCoE transport interface
292 * @name: a vendor specific name for their FCoE transport driver
293 * @attached: whether this transport is already attached
294 * @list: list linkage to all attached transports
295 * @match: handler to allow the transport driver to match up a given netdev
Robert Love6a891b02012-11-27 06:53:30 +0000296 * @alloc: handler to allocate per-instance FCoE structures
297 * (no discovery or login)
Yi Zou0ade7d22011-01-28 16:04:50 -0800298 * @create: handler to sysfs entry of create for FCoE instances
Robert Love6a891b02012-11-27 06:53:30 +0000299 * @destroy: handler to delete per-instance FCoE structures
300 * (frees all memory)
Yi Zou0ade7d22011-01-28 16:04:50 -0800301 * @enable: handler to sysfs entry of enable for FCoE instances
302 * @disable: handler to sysfs entry of disable for FCoE instances
303 */
304struct fcoe_transport {
305 char name[IFNAMSIZ];
306 bool attached;
307 struct list_head list;
308 bool (*match) (struct net_device *device);
Robert Love6a891b02012-11-27 06:53:30 +0000309 int (*alloc) (struct net_device *device);
Hannes Reinecke1917d422016-07-04 10:29:19 +0200310 int (*create) (struct net_device *device, enum fip_mode fip_mode);
Yi Zou0ade7d22011-01-28 16:04:50 -0800311 int (*destroy) (struct net_device *device);
312 int (*enable) (struct net_device *device);
313 int (*disable) (struct net_device *device);
314};
315
316/**
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800317 * struct fcoe_percpu_s - The context for FCoE receive thread(s)
Sebastian Andrzej Siewior4b9bc862016-04-12 17:16:54 +0200318 * @kthread: The thread context (used by bnx2fc)
319 * @work: The work item (used by fcoe)
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800320 * @fcoe_rx_list: The queue of pending packets to process
321 * @page: The memory page for calculating frame trailer CRCs
322 * @crc_eof_offset: The offset into the CRC page pointing to available
323 * memory for a new trailer
324 */
325struct fcoe_percpu_s {
Sebastian Andrzej Siewior4b9bc862016-04-12 17:16:54 +0200326 struct task_struct *kthread;
327 struct work_struct work;
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800328 struct sk_buff_head fcoe_rx_list;
329 struct page *crc_eof_page;
330 int crc_eof_offset;
Davidlohr Bueso848b8972022-05-06 12:57:55 +0200331 local_lock_t lock;
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800332};
333
334/**
335 * struct fcoe_port - The FCoE private structure
336 * @priv: The associated fcoe interface. The structure is
337 * defined by the low level driver
338 * @lport: The associated local port
339 * @fcoe_pending_queue: The pending Rx queue of skbs
340 * @fcoe_pending_queue_active: Indicates if the pending queue is active
341 * @max_queue_depth: Max queue depth of pending queue
342 * @min_queue_depth: Min queue depth of pending queue
343 * @timer: The queue timer
344 * @destroy_work: Handle for work context
345 * (to prevent RTNL deadlocks)
346 * @data_srt_addr: Source address for data
347 *
348 * An instance of this structure is to be allocated along with the
349 * Scsi_Host and libfc fc_lport structures.
350 */
351struct fcoe_port {
352 void *priv;
353 struct fc_lport *lport;
354 struct sk_buff_head fcoe_pending_queue;
355 u8 fcoe_pending_queue_active;
356 u32 max_queue_depth;
357 u32 min_queue_depth;
358 struct timer_list timer;
359 struct work_struct destroy_work;
360 u8 data_src_addr[ETH_ALEN];
Yi Zou8106fb42012-12-06 06:23:27 +0000361 struct net_device * (*get_netdev)(const struct fc_lport *lport);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800362};
Yi Zou66524ec2012-12-06 06:23:43 +0000363
364/**
365 * fcoe_get_netdev() - Return the net device associated with a local port
366 * @lport: The local port to get the net device from
367 */
368static inline struct net_device *fcoe_get_netdev(const struct fc_lport *lport)
369{
370 struct fcoe_port *port = ((struct fcoe_port *)lport_priv(lport));
371
372 return (port->get_netdev) ? port->get_netdev(lport) : NULL;
373}
374
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800375void fcoe_clean_pending_queue(struct fc_lport *);
376void fcoe_check_wait_queue(struct fc_lport *lport, struct sk_buff *skb);
Kees Cook13059102017-09-21 13:12:15 -0700377void fcoe_queue_timer(struct timer_list *t);
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800378int fcoe_get_paged_crc_eof(struct sk_buff *skb, int tlen,
379 struct fcoe_percpu_s *fps);
380
Robert Love8d55e502012-05-22 19:06:26 -0700381/* FCoE Sysfs helpers */
382void fcoe_fcf_get_selected(struct fcoe_fcf_device *);
Robert Love6a891b02012-11-27 06:53:30 +0000383void fcoe_ctlr_set_fip_mode(struct fcoe_ctlr_device *);
Robert Love8d55e502012-05-22 19:06:26 -0700384
Bhanu Prakash Gollapudi8597ae82011-01-28 16:05:37 -0800385/**
Yi Zou0ade7d22011-01-28 16:04:50 -0800386 * struct netdev_list
387 * A mapping from netdevice to fcoe_transport
388 */
389struct fcoe_netdev_mapping {
390 struct list_head list;
391 struct net_device *netdev;
392 struct fcoe_transport *ft;
393};
394
395/* fcoe transports registration and deregistration */
396int fcoe_transport_attach(struct fcoe_transport *ft);
397int fcoe_transport_detach(struct fcoe_transport *ft);
Vasu Dev519e5132010-07-20 15:19:32 -0700398
Robert Love6a891b02012-11-27 06:53:30 +0000399/* sysfs store handler for ctrl_control interface */
400ssize_t fcoe_ctlr_create_store(struct bus_type *bus,
401 const char *buf, size_t count);
402ssize_t fcoe_ctlr_destroy_store(struct bus_type *bus,
403 const char *buf, size_t count);
404
Robert Love85b4aa492008-12-09 15:10:24 -0800405#endif /* _LIBFCOE_H */
Robert Love6a891b02012-11-27 06:53:30 +0000406
407