arm64: cpufeature: Export matrix and other features to userspace
[linux-2.6-microblaze.git] / include / linux / nvme-fc-driver.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (c) 2016, Avago Technologies
4  */
5
6 #ifndef _NVME_FC_DRIVER_H
7 #define _NVME_FC_DRIVER_H 1
8
9 #include <linux/scatterlist.h>
10
11
12 /*
13  * **********************  LLDD FC-NVME Host API ********************
14  *
15  *  For FC LLDD's that are the NVME Host role.
16  *
17  * ******************************************************************
18  */
19
20
21
22 /**
23  * struct nvme_fc_port_info - port-specific ids and FC connection-specific
24  *                            data element used during NVME Host role
25  *                            registrations
26  *
27  * Static fields describing the port being registered:
28  * @node_name: FC WWNN for the port
29  * @port_name: FC WWPN for the port
30  * @port_role: What NVME roles are supported (see FC_PORT_ROLE_xxx)
31  * @dev_loss_tmo: maximum delay for reconnects to an association on
32  *             this device. Used only on a remoteport.
33  *
34  * Initialization values for dynamic port fields:
35  * @port_id:      FC N_Port_ID currently assigned the port. Upper 8 bits must
36  *                be set to 0.
37  */
38 struct nvme_fc_port_info {
39         u64                     node_name;
40         u64                     port_name;
41         u32                     port_role;
42         u32                     port_id;
43         u32                     dev_loss_tmo;
44 };
45
46
47 /**
48  * struct nvmefc_ls_req - Request structure passed from NVME-FC transport
49  *                        to LLDD in order to perform a NVME FC-4 LS
50  *                        request and obtain a response.
51  *
52  * Values set by the NVME-FC layer prior to calling the LLDD ls_req
53  * entrypoint.
54  * @rqstaddr: pointer to request buffer
55  * @rqstdma:  PCI DMA address of request buffer
56  * @rqstlen:  Length, in bytes, of request buffer
57  * @rspaddr:  pointer to response buffer
58  * @rspdma:   PCI DMA address of response buffer
59  * @rsplen:   Length, in bytes, of response buffer
60  * @timeout:  Maximum amount of time, in seconds, to wait for the LS response.
61  *            If timeout exceeded, LLDD to abort LS exchange and complete
62  *            LS request with error status.
63  * @private:  pointer to memory allocated alongside the ls request structure
64  *            that is specifically for the LLDD to use while processing the
65  *            request. The length of the buffer corresponds to the
66  *            lsrqst_priv_sz value specified in the nvme_fc_port_template
67  *            supplied by the LLDD.
68  * @done:     The callback routine the LLDD is to invoke upon completion of
69  *            the LS request. req argument is the pointer to the original LS
70  *            request structure. Status argument must be 0 upon success, a
71  *            negative errno on failure (example: -ENXIO).
72  */
73 struct nvmefc_ls_req {
74         void                    *rqstaddr;
75         dma_addr_t              rqstdma;
76         u32                     rqstlen;
77         void                    *rspaddr;
78         dma_addr_t              rspdma;
79         u32                     rsplen;
80         u32                     timeout;
81
82         void                    *private;
83
84         void (*done)(struct nvmefc_ls_req *req, int status);
85
86 } __aligned(sizeof(u64));       /* alignment for other things alloc'd with */
87
88
89 enum nvmefc_fcp_datadir {
90         NVMEFC_FCP_NODATA,      /* payload_length and sg_cnt will be zero */
91         NVMEFC_FCP_WRITE,
92         NVMEFC_FCP_READ,
93 };
94
95
96 /**
97  * struct nvmefc_fcp_req - Request structure passed from NVME-FC transport
98  *                         to LLDD in order to perform a NVME FCP IO operation.
99  *
100  * Values set by the NVME-FC layer prior to calling the LLDD fcp_io
101  * entrypoint.
102  * @cmdaddr:   pointer to the FCP CMD IU buffer
103  * @rspaddr:   pointer to the FCP RSP IU buffer
104  * @cmddma:    PCI DMA address of the FCP CMD IU buffer
105  * @rspdma:    PCI DMA address of the FCP RSP IU buffer
106  * @cmdlen:    Length, in bytes, of the FCP CMD IU buffer
107  * @rsplen:    Length, in bytes, of the FCP RSP IU buffer
108  * @payload_length: Length of DATA_IN or DATA_OUT payload data to transfer
109  * @sg_table:  scatter/gather structure for payload data
110  * @first_sgl: memory for 1st scatter/gather list segment for payload data
111  * @sg_cnt:    number of elements in the scatter/gather list
112  * @io_dir:    direction of the FCP request (see NVMEFC_FCP_xxx)
113  * @sqid:      The nvme SQID the command is being issued on
114  * @done:      The callback routine the LLDD is to invoke upon completion of
115  *             the FCP operation. req argument is the pointer to the original
116  *             FCP IO operation.
117  * @private:   pointer to memory allocated alongside the FCP operation
118  *             request structure that is specifically for the LLDD to use
119  *             while processing the operation. The length of the buffer
120  *             corresponds to the fcprqst_priv_sz value specified in the
121  *             nvme_fc_port_template supplied by the LLDD.
122  *
123  * Values set by the LLDD indicating completion status of the FCP operation.
124  * Must be set prior to calling the done() callback.
125  * @transferred_length: amount of payload data, in bytes, that were
126  *             transferred. Should equal payload_length on success.
127  * @rcv_rsplen: length, in bytes, of the FCP RSP IU received.
128  * @status:    Completion status of the FCP operation. must be 0 upon success,
129  *             negative errno value upon failure (ex: -EIO). Note: this is
130  *             NOT a reflection of the NVME CQE completion status. Only the
131  *             status of the FCP operation at the NVME-FC level.
132  */
133 struct nvmefc_fcp_req {
134         void                    *cmdaddr;
135         void                    *rspaddr;
136         dma_addr_t              cmddma;
137         dma_addr_t              rspdma;
138         u16                     cmdlen;
139         u16                     rsplen;
140
141         u32                     payload_length;
142         struct sg_table         sg_table;
143         struct scatterlist      *first_sgl;
144         int                     sg_cnt;
145         enum nvmefc_fcp_datadir io_dir;
146
147         __le16                  sqid;
148
149         void (*done)(struct nvmefc_fcp_req *req);
150
151         void                    *private;
152
153         u32                     transferred_length;
154         u16                     rcv_rsplen;
155         u32                     status;
156 } __aligned(sizeof(u64));       /* alignment for other things alloc'd with */
157
158
159 /*
160  * Direct copy of fc_port_state enum. For later merging
161  */
162 enum nvme_fc_obj_state {
163         FC_OBJSTATE_UNKNOWN,
164         FC_OBJSTATE_NOTPRESENT,
165         FC_OBJSTATE_ONLINE,
166         FC_OBJSTATE_OFFLINE,            /* User has taken Port Offline */
167         FC_OBJSTATE_BLOCKED,
168         FC_OBJSTATE_BYPASSED,
169         FC_OBJSTATE_DIAGNOSTICS,
170         FC_OBJSTATE_LINKDOWN,
171         FC_OBJSTATE_ERROR,
172         FC_OBJSTATE_LOOPBACK,
173         FC_OBJSTATE_DELETED,
174 };
175
176
177 /**
178  * struct nvme_fc_local_port - structure used between NVME-FC transport and
179  *                 a LLDD to reference a local NVME host port.
180  *                 Allocated/created by the nvme_fc_register_localport()
181  *                 transport interface.
182  *
183  * Fields with static values for the port. Initialized by the
184  * port_info struct supplied to the registration call.
185  * @port_num:  NVME-FC transport host port number
186  * @port_role: NVME roles are supported on the port (see FC_PORT_ROLE_xxx)
187  * @node_name: FC WWNN for the port
188  * @port_name: FC WWPN for the port
189  * @private:   pointer to memory allocated alongside the local port
190  *             structure that is specifically for the LLDD to use.
191  *             The length of the buffer corresponds to the local_priv_sz
192  *             value specified in the nvme_fc_port_template supplied by
193  *             the LLDD.
194  * @dev_loss_tmo: maximum delay for reconnects to an association on
195  *             this device. To modify, lldd must call
196  *             nvme_fc_set_remoteport_devloss().
197  *
198  * Fields with dynamic values. Values may change base on link state. LLDD
199  * may reference fields directly to change them. Initialized by the
200  * port_info struct supplied to the registration call.
201  * @port_id:      FC N_Port_ID currently assigned the port. Upper 8 bits must
202  *                be set to 0.
203  * @port_state:   Operational state of the port.
204  */
205 struct nvme_fc_local_port {
206         /* static/read-only fields */
207         u32 port_num;
208         u32 port_role;
209         u64 node_name;
210         u64 port_name;
211
212         void *private;
213
214         /* dynamic fields */
215         u32 port_id;
216         enum nvme_fc_obj_state port_state;
217 } __aligned(sizeof(u64));       /* alignment for other things alloc'd with */
218
219
220 /**
221  * struct nvme_fc_remote_port - structure used between NVME-FC transport and
222  *                 a LLDD to reference a remote NVME subsystem port.
223  *                 Allocated/created by the nvme_fc_register_remoteport()
224  *                 transport interface.
225  *
226  * Fields with static values for the port. Initialized by the
227  * port_info struct supplied to the registration call.
228  * @port_num:  NVME-FC transport remote subsystem port number
229  * @port_role: NVME roles are supported on the port (see FC_PORT_ROLE_xxx)
230  * @node_name: FC WWNN for the port
231  * @port_name: FC WWPN for the port
232  * @localport: pointer to the NVME-FC local host port the subsystem is
233  *             connected to.
234  * @private:   pointer to memory allocated alongside the remote port
235  *             structure that is specifically for the LLDD to use.
236  *             The length of the buffer corresponds to the remote_priv_sz
237  *             value specified in the nvme_fc_port_template supplied by
238  *             the LLDD.
239  *
240  * Fields with dynamic values. Values may change base on link or login
241  * state. LLDD may reference fields directly to change them. Initialized by
242  * the port_info struct supplied to the registration call.
243  * @port_id:      FC N_Port_ID currently assigned the port. Upper 8 bits must
244  *                be set to 0.
245  * @port_state:   Operational state of the remote port. Valid values are
246  *                ONLINE or UNKNOWN.
247  */
248 struct nvme_fc_remote_port {
249         /* static fields */
250         u32 port_num;
251         u32 port_role;
252         u64 node_name;
253         u64 port_name;
254         struct nvme_fc_local_port *localport;
255         void *private;
256         u32 dev_loss_tmo;
257
258         /* dynamic fields */
259         u32 port_id;
260         enum nvme_fc_obj_state port_state;
261 } __aligned(sizeof(u64));       /* alignment for other things alloc'd with */
262
263
264 /**
265  * struct nvme_fc_port_template - structure containing static entrypoints and
266  *                 operational parameters for an LLDD that supports NVME host
267  *                 behavior. Passed by reference in port registrations.
268  *                 NVME-FC transport remembers template reference and may
269  *                 access it during runtime operation.
270  *
271  * Host/Initiator Transport Entrypoints/Parameters:
272  *
273  * @module:  The LLDD module using the interface
274  *
275  * @localport_delete:  The LLDD initiates deletion of a localport via
276  *       nvme_fc_deregister_localport(). However, the teardown is
277  *       asynchronous. This routine is called upon the completion of the
278  *       teardown to inform the LLDD that the localport has been deleted.
279  *       Entrypoint is Mandatory.
280  *
281  * @remoteport_delete:  The LLDD initiates deletion of a remoteport via
282  *       nvme_fc_deregister_remoteport(). However, the teardown is
283  *       asynchronous. This routine is called upon the completion of the
284  *       teardown to inform the LLDD that the remoteport has been deleted.
285  *       Entrypoint is Mandatory.
286  *
287  * @create_queue:  Upon creating a host<->controller association, queues are
288  *       created such that they can be affinitized to cpus/cores. This
289  *       callback into the LLDD to notify that a controller queue is being
290  *       created.  The LLDD may choose to allocate an associated hw queue
291  *       or map it onto a shared hw queue. Upon return from the call, the
292  *       LLDD specifies a handle that will be given back to it for any
293  *       command that is posted to the controller queue.  The handle can
294  *       be used by the LLDD to map quickly to the proper hw queue for
295  *       command execution.  The mask of cpu's that will map to this queue
296  *       at the block-level is also passed in. The LLDD should use the
297  *       queue id and/or cpu masks to ensure proper affinitization of the
298  *       controller queue to the hw queue.
299  *       Entrypoint is Optional.
300  *
301  * @delete_queue:  This is the inverse of the crete_queue. During
302  *       host<->controller association teardown, this routine is called
303  *       when a controller queue is being terminated. Any association with
304  *       a hw queue should be termined. If there is a unique hw queue, the
305  *       hw queue should be torn down.
306  *       Entrypoint is Optional.
307  *
308  * @poll_queue:  Called to poll for the completion of an io on a blk queue.
309  *       Entrypoint is Optional.
310  *
311  * @ls_req:  Called to issue a FC-NVME FC-4 LS service request.
312  *       The nvme_fc_ls_req structure will fully describe the buffers for
313  *       the request payload and where to place the response payload. The
314  *       LLDD is to allocate an exchange, issue the LS request, obtain the
315  *       LS response, and call the "done" routine specified in the request
316  *       structure (argument to done is the ls request structure itself).
317  *       Entrypoint is Mandatory.
318  *
319  * @fcp_io:  called to issue a FC-NVME I/O request.  The I/O may be for
320  *       an admin queue or an i/o queue.  The nvmefc_fcp_req structure will
321  *       fully describe the io: the buffer containing the FC-NVME CMD IU
322  *       (which contains the SQE), the sg list for the payload if applicable,
323  *       and the buffer to place the FC-NVME RSP IU into.  The LLDD will
324  *       complete the i/o, indicating the amount of data transferred or
325  *       any transport error, and call the "done" routine specified in the
326  *       request structure (argument to done is the fcp request structure
327  *       itself).
328  *       Entrypoint is Mandatory.
329  *
330  * @ls_abort: called to request the LLDD to abort the indicated ls request.
331  *       The call may return before the abort has completed. After aborting
332  *       the request, the LLDD must still call the ls request done routine
333  *       indicating an FC transport Aborted status.
334  *       Entrypoint is Mandatory.
335  *
336  * @fcp_abort: called to request the LLDD to abort the indicated fcp request.
337  *       The call may return before the abort has completed. After aborting
338  *       the request, the LLDD must still call the fcp request done routine
339  *       indicating an FC transport Aborted status.
340  *       Entrypoint is Mandatory.
341  *
342  * @max_hw_queues:  indicates the maximum number of hw queues the LLDD
343  *       supports for cpu affinitization.
344  *       Value is Mandatory. Must be at least 1.
345  *
346  * @max_sgl_segments:  indicates the maximum number of sgl segments supported
347  *       by the LLDD
348  *       Value is Mandatory. Must be at least 1. Recommend at least 256.
349  *
350  * @max_dif_sgl_segments:  indicates the maximum number of sgl segments
351  *       supported by the LLDD for DIF operations.
352  *       Value is Mandatory. Must be at least 1. Recommend at least 256.
353  *
354  * @dma_boundary:  indicates the dma address boundary where dma mappings
355  *       will be split across.
356  *       Value is Mandatory. Typical value is 0xFFFFFFFF to split across
357  *       4Gig address boundarys
358  *
359  * @local_priv_sz: The LLDD sets this field to the amount of additional
360  *       memory that it would like fc nvme layer to allocate on the LLDD's
361  *       behalf whenever a localport is allocated.  The additional memory
362  *       area solely for the of the LLDD and its location is specified by
363  *       the localport->private pointer.
364  *       Value is Mandatory. Allowed to be zero.
365  *
366  * @remote_priv_sz: The LLDD sets this field to the amount of additional
367  *       memory that it would like fc nvme layer to allocate on the LLDD's
368  *       behalf whenever a remoteport is allocated.  The additional memory
369  *       area solely for the of the LLDD and its location is specified by
370  *       the remoteport->private pointer.
371  *       Value is Mandatory. Allowed to be zero.
372  *
373  * @lsrqst_priv_sz: The LLDD sets this field to the amount of additional
374  *       memory that it would like fc nvme layer to allocate on the LLDD's
375  *       behalf whenever a ls request structure is allocated. The additional
376  *       memory area solely for the of the LLDD and its location is
377  *       specified by the ls_request->private pointer.
378  *       Value is Mandatory. Allowed to be zero.
379  *
380  * @fcprqst_priv_sz: The LLDD sets this field to the amount of additional
381  *       memory that it would like fc nvme layer to allocate on the LLDD's
382  *       behalf whenever a fcp request structure is allocated. The additional
383  *       memory area solely for the of the LLDD and its location is
384  *       specified by the fcp_request->private pointer.
385  *       Value is Mandatory. Allowed to be zero.
386  */
387 struct nvme_fc_port_template {
388         struct module   *module;
389
390         /* initiator-based functions */
391         void    (*localport_delete)(struct nvme_fc_local_port *);
392         void    (*remoteport_delete)(struct nvme_fc_remote_port *);
393         int     (*create_queue)(struct nvme_fc_local_port *,
394                                 unsigned int qidx, u16 qsize,
395                                 void **handle);
396         void    (*delete_queue)(struct nvme_fc_local_port *,
397                                 unsigned int qidx, void *handle);
398         int     (*ls_req)(struct nvme_fc_local_port *,
399                                 struct nvme_fc_remote_port *,
400                                 struct nvmefc_ls_req *);
401         int     (*fcp_io)(struct nvme_fc_local_port *,
402                                 struct nvme_fc_remote_port *,
403                                 void *hw_queue_handle,
404                                 struct nvmefc_fcp_req *);
405         void    (*ls_abort)(struct nvme_fc_local_port *,
406                                 struct nvme_fc_remote_port *,
407                                 struct nvmefc_ls_req *);
408         void    (*fcp_abort)(struct nvme_fc_local_port *,
409                                 struct nvme_fc_remote_port *,
410                                 void *hw_queue_handle,
411                                 struct nvmefc_fcp_req *);
412
413         u32     max_hw_queues;
414         u16     max_sgl_segments;
415         u16     max_dif_sgl_segments;
416         u64     dma_boundary;
417
418         /* sizes of additional private data for data structures */
419         u32     local_priv_sz;
420         u32     remote_priv_sz;
421         u32     lsrqst_priv_sz;
422         u32     fcprqst_priv_sz;
423 };
424
425
426 /*
427  * Initiator/Host functions
428  */
429
430 int nvme_fc_register_localport(struct nvme_fc_port_info *pinfo,
431                         struct nvme_fc_port_template *template,
432                         struct device *dev,
433                         struct nvme_fc_local_port **lport_p);
434
435 int nvme_fc_unregister_localport(struct nvme_fc_local_port *localport);
436
437 int nvme_fc_register_remoteport(struct nvme_fc_local_port *localport,
438                         struct nvme_fc_port_info *pinfo,
439                         struct nvme_fc_remote_port **rport_p);
440
441 int nvme_fc_unregister_remoteport(struct nvme_fc_remote_port *remoteport);
442
443 void nvme_fc_rescan_remoteport(struct nvme_fc_remote_port *remoteport);
444
445 int nvme_fc_set_remoteport_devloss(struct nvme_fc_remote_port *remoteport,
446                         u32 dev_loss_tmo);
447
448
449 /*
450  * ***************  LLDD FC-NVME Target/Subsystem API ***************
451  *
452  *  For FC LLDD's that are the NVME Subsystem role
453  *
454  * ******************************************************************
455  */
456
457 /**
458  * struct nvmet_fc_port_info - port-specific ids and FC connection-specific
459  *                             data element used during NVME Subsystem role
460  *                             registrations
461  *
462  * Static fields describing the port being registered:
463  * @node_name: FC WWNN for the port
464  * @port_name: FC WWPN for the port
465  *
466  * Initialization values for dynamic port fields:
467  * @port_id:      FC N_Port_ID currently assigned the port. Upper 8 bits must
468  *                be set to 0.
469  */
470 struct nvmet_fc_port_info {
471         u64                     node_name;
472         u64                     port_name;
473         u32                     port_id;
474 };
475
476
477 /**
478  * struct nvmefc_tgt_ls_req - Structure used between LLDD and NVMET-FC
479  *                            layer to represent the exchange context for
480  *                            a FC-NVME Link Service (LS).
481  *
482  * The structure is allocated by the LLDD whenever a LS Request is received
483  * from the FC link. The address of the structure is passed to the nvmet-fc
484  * layer via the nvmet_fc_rcv_ls_req() call. The address of the structure
485  * will be passed back to the LLDD when the response is to be transmit.
486  * The LLDD is to use the address to map back to the LLDD exchange structure
487  * which maintains information such as the targetport the LS was received
488  * on, the remote FC NVME initiator that sent the LS, and any FC exchange
489  * context.  Upon completion of the LS response transmit, the address of the
490  * structure will be passed back to the LS rsp done() routine, allowing the
491  * nvmet-fc layer to release dma resources. Upon completion of the done()
492  * routine, no further access will be made by the nvmet-fc layer and the
493  * LLDD can de-allocate the structure.
494  *
495  * Field initialization:
496  *   At the time of the nvmet_fc_rcv_ls_req() call, there is no content that
497  *     is valid in the structure.
498  *
499  *   When the structure is used for the LLDD->xmt_ls_rsp() call, the nvmet-fc
500  *     layer will fully set the fields in order to specify the response
501  *     payload buffer and its length as well as the done routine to be called
502  *     upon compeletion of the transmit.  The nvmet-fc layer will also set a
503  *     private pointer for its own use in the done routine.
504  *
505  * Values set by the NVMET-FC layer prior to calling the LLDD xmt_ls_rsp
506  * entrypoint.
507  * @rspbuf:   pointer to the LS response buffer
508  * @rspdma:   PCI DMA address of the LS response buffer
509  * @rsplen:   Length, in bytes, of the LS response buffer
510  * @done:     The callback routine the LLDD is to invoke upon completion of
511  *            transmitting the LS response. req argument is the pointer to
512  *            the original ls request.
513  * @nvmet_fc_private:  pointer to an internal NVMET-FC layer structure used
514  *            as part of the NVMET-FC processing. The LLDD is not to access
515  *            this pointer.
516  */
517 struct nvmefc_tgt_ls_req {
518         void            *rspbuf;
519         dma_addr_t      rspdma;
520         u16             rsplen;
521
522         void (*done)(struct nvmefc_tgt_ls_req *req);
523         void *nvmet_fc_private;         /* LLDD is not to access !! */
524 };
525
526 /* Operations that NVME-FC layer may request the LLDD to perform for FCP */
527 enum {
528         NVMET_FCOP_READDATA     = 1,    /* xmt data to initiator */
529         NVMET_FCOP_WRITEDATA    = 2,    /* xmt data from initiator */
530         NVMET_FCOP_READDATA_RSP = 3,    /* xmt data to initiator and send
531                                          * rsp as well
532                                          */
533         NVMET_FCOP_RSP          = 4,    /* send rsp frame */
534 };
535
536 /**
537  * struct nvmefc_tgt_fcp_req - Structure used between LLDD and NVMET-FC
538  *                            layer to represent the exchange context and
539  *                            the specific FC-NVME IU operation(s) to perform
540  *                            for a FC-NVME FCP IO.
541  *
542  * Structure used between LLDD and nvmet-fc layer to represent the exchange
543  * context for a FC-NVME FCP I/O operation (e.g. a nvme sqe, the sqe-related
544  * memory transfers, and its assocated cqe transfer).
545  *
546  * The structure is allocated by the LLDD whenever a FCP CMD IU is received
547  * from the FC link. The address of the structure is passed to the nvmet-fc
548  * layer via the nvmet_fc_rcv_fcp_req() call. The address of the structure
549  * will be passed back to the LLDD for the data operations and transmit of
550  * the response. The LLDD is to use the address to map back to the LLDD
551  * exchange structure which maintains information such as the targetport
552  * the FCP I/O was received on, the remote FC NVME initiator that sent the
553  * FCP I/O, and any FC exchange context.  Upon completion of the FCP target
554  * operation, the address of the structure will be passed back to the FCP
555  * op done() routine, allowing the nvmet-fc layer to release dma resources.
556  * Upon completion of the done() routine for either RSP or ABORT ops, no
557  * further access will be made by the nvmet-fc layer and the LLDD can
558  * de-allocate the structure.
559  *
560  * Field initialization:
561  *   At the time of the nvmet_fc_rcv_fcp_req() call, there is no content that
562  *     is valid in the structure.
563  *
564  *   When the structure is used for an FCP target operation, the nvmet-fc
565  *     layer will fully set the fields in order to specify the scattergather
566  *     list, the transfer length, as well as the done routine to be called
567  *     upon compeletion of the operation.  The nvmet-fc layer will also set a
568  *     private pointer for its own use in the done routine.
569  *
570  * Values set by the NVMET-FC layer prior to calling the LLDD fcp_op
571  * entrypoint.
572  * @op:       Indicates the FCP IU operation to perform (see NVMET_FCOP_xxx)
573  * @hwqid:    Specifies the hw queue index (0..N-1, where N is the
574  *            max_hw_queues value from the LLD's nvmet_fc_target_template)
575  *            that the operation is to use.
576  * @offset:   Indicates the DATA_OUT/DATA_IN payload offset to be tranferred.
577  *            Field is only valid on WRITEDATA, READDATA, or READDATA_RSP ops.
578  * @timeout:  amount of time, in seconds, to wait for a response from the NVME
579  *            host. A value of 0 is an infinite wait.
580  *            Valid only for the following ops:
581  *              WRITEDATA: caps the wait for data reception
582  *              READDATA_RSP & RSP: caps wait for FCP_CONF reception (if used)
583  * @transfer_length: the length, in bytes, of the DATA_OUT or DATA_IN payload
584  *            that is to be transferred.
585  *            Valid only for the WRITEDATA, READDATA, or READDATA_RSP ops.
586  * @ba_rjt:   Contains the BA_RJT payload that is to be transferred.
587  *            Valid only for the NVMET_FCOP_BA_RJT op.
588  * @sg:       Scatter/gather list for the DATA_OUT/DATA_IN payload data.
589  *            Valid only for the WRITEDATA, READDATA, or READDATA_RSP ops.
590  * @sg_cnt:   Number of valid entries in the scatter/gather list.
591  *            Valid only for the WRITEDATA, READDATA, or READDATA_RSP ops.
592  * @rspaddr:  pointer to the FCP RSP IU buffer to be transmit
593  *            Used by RSP and READDATA_RSP ops
594  * @rspdma:   PCI DMA address of the FCP RSP IU buffer
595  *            Used by RSP and READDATA_RSP ops
596  * @rsplen:   Length, in bytes, of the FCP RSP IU buffer
597  *            Used by RSP and READDATA_RSP ops
598  * @done:     The callback routine the LLDD is to invoke upon completion of
599  *            the operation. req argument is the pointer to the original
600  *            FCP subsystem op request.
601  * @nvmet_fc_private:  pointer to an internal NVMET-FC layer structure used
602  *            as part of the NVMET-FC processing. The LLDD is not to
603  *            reference this field.
604  *
605  * Values set by the LLDD indicating completion status of the FCP operation.
606  * Must be set prior to calling the done() callback.
607  * @transferred_length: amount of DATA_OUT payload data received by a
608  *            a WRITEDATA operation. If not a WRITEDATA operation, value must
609  *            be set to 0. Should equal transfer_length on success.
610  * @fcp_error: status of the FCP operation. Must be 0 on success; on failure
611  *            must be a NVME_SC_FC_xxxx value.
612  */
613 struct nvmefc_tgt_fcp_req {
614         u8                      op;
615         u16                     hwqid;
616         u32                     offset;
617         u32                     timeout;
618         u32                     transfer_length;
619         struct fc_ba_rjt        ba_rjt;
620         struct scatterlist      *sg;
621         int                     sg_cnt;
622         void                    *rspaddr;
623         dma_addr_t              rspdma;
624         u16                     rsplen;
625
626         void (*done)(struct nvmefc_tgt_fcp_req *);
627
628         void *nvmet_fc_private;         /* LLDD is not to access !! */
629
630         u32                     transferred_length;
631         int                     fcp_error;
632 };
633
634
635 /* Target Features (Bit fields) LLDD supports */
636 enum {
637         NVMET_FCTGTFEAT_READDATA_RSP = (1 << 0),
638                 /* Bit 0: supports the NVMET_FCPOP_READDATA_RSP op, which
639                  * sends (the last) Read Data sequence followed by the RSP
640                  * sequence in one LLDD operation. Errors during Data
641                  * sequence transmit must not allow RSP sequence to be sent.
642                  */
643 };
644
645
646 /**
647  * struct nvmet_fc_target_port - structure used between NVME-FC transport and
648  *                 a LLDD to reference a local NVME subsystem port.
649  *                 Allocated/created by the nvme_fc_register_targetport()
650  *                 transport interface.
651  *
652  * Fields with static values for the port. Initialized by the
653  * port_info struct supplied to the registration call.
654  * @port_num:  NVME-FC transport subsytem port number
655  * @node_name: FC WWNN for the port
656  * @port_name: FC WWPN for the port
657  * @private:   pointer to memory allocated alongside the local port
658  *             structure that is specifically for the LLDD to use.
659  *             The length of the buffer corresponds to the target_priv_sz
660  *             value specified in the nvme_fc_target_template supplied by
661  *             the LLDD.
662  *
663  * Fields with dynamic values. Values may change base on link state. LLDD
664  * may reference fields directly to change them. Initialized by the
665  * port_info struct supplied to the registration call.
666  * @port_id:      FC N_Port_ID currently assigned the port. Upper 8 bits must
667  *                be set to 0.
668  * @port_state:   Operational state of the port.
669  */
670 struct nvmet_fc_target_port {
671         /* static/read-only fields */
672         u32 port_num;
673         u64 node_name;
674         u64 port_name;
675
676         void *private;
677
678         /* dynamic fields */
679         u32 port_id;
680         enum nvme_fc_obj_state port_state;
681 } __aligned(sizeof(u64));       /* alignment for other things alloc'd with */
682
683
684 /**
685  * struct nvmet_fc_target_template - structure containing static entrypoints
686  *                 and operational parameters for an LLDD that supports NVME
687  *                 subsystem behavior. Passed by reference in port
688  *                 registrations. NVME-FC transport remembers template
689  *                 reference and may access it during runtime operation.
690  *
691  * Subsystem/Target Transport Entrypoints/Parameters:
692  *
693  * @targetport_delete:  The LLDD initiates deletion of a targetport via
694  *       nvmet_fc_unregister_targetport(). However, the teardown is
695  *       asynchronous. This routine is called upon the completion of the
696  *       teardown to inform the LLDD that the targetport has been deleted.
697  *       Entrypoint is Mandatory.
698  *
699  * @xmt_ls_rsp:  Called to transmit the response to a FC-NVME FC-4 LS service.
700  *       The nvmefc_tgt_ls_req structure is the same LLDD-supplied exchange
701  *       structure specified in the nvmet_fc_rcv_ls_req() call made when
702  *       the LS request was received.  The structure will fully describe
703  *       the buffers for the response payload and the dma address of the
704  *       payload. The LLDD is to transmit the response (or return a non-zero
705  *       errno status), and upon completion of the transmit, call the
706  *       "done" routine specified in the nvmefc_tgt_ls_req structure
707  *       (argument to done is the ls reqwuest structure itself).
708  *       After calling the done routine, the LLDD shall consider the
709  *       LS handling complete and the nvmefc_tgt_ls_req structure may
710  *       be freed/released.
711  *       Entrypoint is Mandatory.
712  *
713  * @fcp_op:  Called to perform a data transfer or transmit a response.
714  *       The nvmefc_tgt_fcp_req structure is the same LLDD-supplied
715  *       exchange structure specified in the nvmet_fc_rcv_fcp_req() call
716  *       made when the FCP CMD IU was received. The op field in the
717  *       structure shall indicate the operation for the LLDD to perform
718  *       relative to the io.
719  *         NVMET_FCOP_READDATA operation: the LLDD is to send the
720  *           payload data (described by sglist) to the host in 1 or
721  *           more FC sequences (preferrably 1).  Note: the fc-nvme layer
722  *           may call the READDATA operation multiple times for longer
723  *           payloads.
724  *         NVMET_FCOP_WRITEDATA operation: the LLDD is to receive the
725  *           payload data (described by sglist) from the host via 1 or
726  *           more FC sequences (preferrably 1). The LLDD is to generate
727  *           the XFER_RDY IU(s) corresponding to the data being requested.
728  *           Note: the FC-NVME layer may call the WRITEDATA operation
729  *           multiple times for longer payloads.
730  *         NVMET_FCOP_READDATA_RSP operation: the LLDD is to send the
731  *           payload data (described by sglist) to the host in 1 or
732  *           more FC sequences (preferrably 1). If an error occurs during
733  *           payload data transmission, the LLDD is to set the
734  *           nvmefc_tgt_fcp_req fcp_error and transferred_length field, then
735  *           consider the operation complete. On error, the LLDD is to not
736  *           transmit the FCP_RSP iu. If all payload data is transferred
737  *           successfully, the LLDD is to update the nvmefc_tgt_fcp_req
738  *           transferred_length field and may subsequently transmit the
739  *           FCP_RSP iu payload (described by rspbuf, rspdma, rsplen).
740  *           If FCP_CONF is supported, the LLDD is to await FCP_CONF
741  *           reception to confirm the RSP reception by the host. The LLDD
742  *           may retramsit the FCP_RSP iu if necessary per FC-NVME. Upon
743  *           transmission of the FCP_RSP iu if FCP_CONF is not supported,
744  *           or upon success/failure of FCP_CONF if it is supported, the
745  *           LLDD is to set the nvmefc_tgt_fcp_req fcp_error field and
746  *           consider the operation complete.
747  *         NVMET_FCOP_RSP: the LLDD is to transmit the FCP_RSP iu payload
748  *           (described by rspbuf, rspdma, rsplen). If FCP_CONF is
749  *           supported, the LLDD is to await FCP_CONF reception to confirm
750  *           the RSP reception by the host. The LLDD may retramsit the
751  *           FCP_RSP iu if FCP_CONF is not received per FC-NVME. Upon
752  *           transmission of the FCP_RSP iu if FCP_CONF is not supported,
753  *           or upon success/failure of FCP_CONF if it is supported, the
754  *           LLDD is to set the nvmefc_tgt_fcp_req fcp_error field and
755  *           consider the operation complete.
756  *       Upon completing the indicated operation, the LLDD is to set the
757  *       status fields for the operation (tranferred_length and fcp_error
758  *       status) in the request, then call the "done" routine
759  *       indicated in the fcp request. After the operation completes,
760  *       regardless of whether the FCP_RSP iu was successfully transmit,
761  *       the LLDD-supplied exchange structure must remain valid until the
762  *       transport calls the fcp_req_release() callback to return ownership
763  *       of the exchange structure back to the LLDD so that it may be used
764  *       for another fcp command.
765  *       Note: when calling the done routine for READDATA or WRITEDATA
766  *       operations, the fc-nvme layer may immediate convert, in the same
767  *       thread and before returning to the LLDD, the fcp operation to
768  *       the next operation for the fcp io and call the LLDDs fcp_op
769  *       call again. If fields in the fcp request are to be accessed post
770  *       the done call, the LLDD should save their values prior to calling
771  *       the done routine, and inspect the save values after the done
772  *       routine.
773  *       Returns 0 on success, -<errno> on failure (Ex: -EIO)
774  *       Entrypoint is Mandatory.
775  *
776  * @fcp_abort:  Called by the transport to abort an active command.
777  *       The command may be in-between operations (nothing active in LLDD)
778  *       or may have an active WRITEDATA operation pending. The LLDD is to
779  *       initiate the ABTS process for the command and return from the
780  *       callback. The ABTS does not need to be complete on the command.
781  *       The fcp_abort callback inherently cannot fail. After the
782  *       fcp_abort() callback completes, the transport will wait for any
783  *       outstanding operation (if there was one) to complete, then will
784  *       call the fcp_req_release() callback to return the command's
785  *       exchange context back to the LLDD.
786  *       Entrypoint is Mandatory.
787  *
788  * @fcp_req_release:  Called by the transport to return a nvmefc_tgt_fcp_req
789  *       to the LLDD after all operations on the fcp operation are complete.
790  *       This may be due to the command completing or upon completion of
791  *       abort cleanup.
792  *       Entrypoint is Mandatory.
793  *
794  * @defer_rcv:  Called by the transport to signal the LLLD that it has
795  *       begun processing of a previously received NVME CMD IU. The LLDD
796  *       is now free to re-use the rcv buffer associated with the
797  *       nvmefc_tgt_fcp_req.
798  *       Entrypoint is Optional.
799  *
800  * @discovery_event:  Called by the transport to generate an RSCN
801  *       change notifications to NVME initiators. The RSCN notifications
802  *       should cause the initiator to rescan the discovery controller
803  *       on the targetport.
804  *
805  * @max_hw_queues:  indicates the maximum number of hw queues the LLDD
806  *       supports for cpu affinitization.
807  *       Value is Mandatory. Must be at least 1.
808  *
809  * @max_sgl_segments:  indicates the maximum number of sgl segments supported
810  *       by the LLDD
811  *       Value is Mandatory. Must be at least 1. Recommend at least 256.
812  *
813  * @max_dif_sgl_segments:  indicates the maximum number of sgl segments
814  *       supported by the LLDD for DIF operations.
815  *       Value is Mandatory. Must be at least 1. Recommend at least 256.
816  *
817  * @dma_boundary:  indicates the dma address boundary where dma mappings
818  *       will be split across.
819  *       Value is Mandatory. Typical value is 0xFFFFFFFF to split across
820  *       4Gig address boundarys
821  *
822  * @target_features: The LLDD sets bits in this field to correspond to
823  *       optional features that are supported by the LLDD.
824  *       Refer to the NVMET_FCTGTFEAT_xxx values.
825  *       Value is Mandatory. Allowed to be zero.
826  *
827  * @target_priv_sz: The LLDD sets this field to the amount of additional
828  *       memory that it would like fc nvme layer to allocate on the LLDD's
829  *       behalf whenever a targetport is allocated.  The additional memory
830  *       area solely for the of the LLDD and its location is specified by
831  *       the targetport->private pointer.
832  *       Value is Mandatory. Allowed to be zero.
833  */
834 struct nvmet_fc_target_template {
835         void (*targetport_delete)(struct nvmet_fc_target_port *tgtport);
836         int (*xmt_ls_rsp)(struct nvmet_fc_target_port *tgtport,
837                                 struct nvmefc_tgt_ls_req *tls_req);
838         int (*fcp_op)(struct nvmet_fc_target_port *tgtport,
839                                 struct nvmefc_tgt_fcp_req *fcpreq);
840         void (*fcp_abort)(struct nvmet_fc_target_port *tgtport,
841                                 struct nvmefc_tgt_fcp_req *fcpreq);
842         void (*fcp_req_release)(struct nvmet_fc_target_port *tgtport,
843                                 struct nvmefc_tgt_fcp_req *fcpreq);
844         void (*defer_rcv)(struct nvmet_fc_target_port *tgtport,
845                                 struct nvmefc_tgt_fcp_req *fcpreq);
846         void (*discovery_event)(struct nvmet_fc_target_port *tgtport);
847
848         u32     max_hw_queues;
849         u16     max_sgl_segments;
850         u16     max_dif_sgl_segments;
851         u64     dma_boundary;
852
853         u32     target_features;
854
855         u32     target_priv_sz;
856 };
857
858
859 int nvmet_fc_register_targetport(struct nvmet_fc_port_info *portinfo,
860                         struct nvmet_fc_target_template *template,
861                         struct device *dev,
862                         struct nvmet_fc_target_port **tgtport_p);
863
864 int nvmet_fc_unregister_targetport(struct nvmet_fc_target_port *tgtport);
865
866 int nvmet_fc_rcv_ls_req(struct nvmet_fc_target_port *tgtport,
867                         struct nvmefc_tgt_ls_req *lsreq,
868                         void *lsreqbuf, u32 lsreqbuf_len);
869
870 int nvmet_fc_rcv_fcp_req(struct nvmet_fc_target_port *tgtport,
871                         struct nvmefc_tgt_fcp_req *fcpreq,
872                         void *cmdiubuf, u32 cmdiubuf_len);
873
874 void nvmet_fc_rcv_fcp_abort(struct nvmet_fc_target_port *tgtport,
875                         struct nvmefc_tgt_fcp_req *fcpreq);
876
877 #endif /* _NVME_FC_DRIVER_H */