net/liquidio: add APIs to alloc and send control command
[dpdk.git] / drivers / net / liquidio / lio_struct.h
1 /*
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2017 Cavium, Inc.. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Cavium, Inc. nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _LIO_STRUCT_H_
35 #define _LIO_STRUCT_H_
36
37 #include <stdio.h>
38 #include <stdint.h>
39 #include <sys/queue.h>
40
41 #include <rte_spinlock.h>
42 #include <rte_atomic.h>
43
44 #include "lio_hw_defs.h"
45
46 struct lio_stailq_node {
47         STAILQ_ENTRY(lio_stailq_node) entries;
48 };
49
50 STAILQ_HEAD(lio_stailq_head, lio_stailq_node);
51
52 struct lio_version {
53         uint16_t major;
54         uint16_t minor;
55         uint16_t micro;
56         uint16_t reserved;
57 };
58
59 /** The Descriptor Ring Output Queue structure.
60  *  This structure has all the information required to implement a
61  *  DROQ.
62  */
63 struct lio_droq {
64         /** A spinlock to protect access to this ring. */
65         rte_spinlock_t lock;
66
67         uint32_t q_no;
68
69         uint32_t pkt_count;
70
71         struct lio_device *lio_dev;
72
73         /** The 8B aligned descriptor ring starts at this address. */
74         struct lio_droq_desc *desc_ring;
75
76         /** Index in the ring where the driver should read the next packet */
77         uint32_t read_idx;
78
79         /** Index in the ring where Octeon will write the next packet */
80         uint32_t write_idx;
81
82         /** Index in the ring where the driver will refill the descriptor's
83          * buffer
84          */
85         uint32_t refill_idx;
86
87         /** Packets pending to be processed */
88         rte_atomic64_t pkts_pending;
89
90         /** Number of  descriptors in this ring. */
91         uint32_t max_count;
92
93         /** The number of descriptors pending refill. */
94         uint32_t refill_count;
95
96         uint32_t refill_threshold;
97
98         /** The 8B aligned info ptrs begin from this address. */
99         struct lio_droq_info *info_list;
100
101         /** The receive buffer list. This list has the virtual addresses of the
102          *  buffers.
103          */
104         struct lio_recv_buffer *recv_buf_list;
105
106         /** The size of each buffer pointed by the buffer pointer. */
107         uint32_t buffer_size;
108
109         /** Pointer to the mapped packet credit register.
110          *  Host writes number of info/buffer ptrs available to this register
111          */
112         void *pkts_credit_reg;
113
114         /** Pointer to the mapped packet sent register.
115          *  Octeon writes the number of packets DMA'ed to host memory
116          *  in this register.
117          */
118         void *pkts_sent_reg;
119
120         /** DMA mapped address of the DROQ descriptor ring. */
121         size_t desc_ring_dma;
122
123         /** Info ptr list are allocated at this virtual address. */
124         size_t info_base_addr;
125
126         /** DMA mapped address of the info list */
127         size_t info_list_dma;
128
129         /** Allocated size of info list. */
130         uint32_t info_alloc_size;
131
132         /** Memory zone **/
133         const struct rte_memzone *desc_ring_mz;
134         const struct rte_memzone *info_mz;
135         struct rte_mempool *mpool;
136 };
137
138 /** Receive Header */
139 union octeon_rh {
140 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
141         uint64_t rh64;
142         struct  {
143                 uint64_t opcode : 4;
144                 uint64_t subcode : 8;
145                 uint64_t len : 3; /** additional 64-bit words */
146                 uint64_t reserved : 17;
147                 uint64_t ossp : 32; /** opcode/subcode specific parameters */
148         } r;
149         struct  {
150                 uint64_t opcode : 4;
151                 uint64_t subcode : 8;
152                 uint64_t len : 3; /** additional 64-bit words */
153                 uint64_t extra : 28;
154                 uint64_t vlan : 12;
155                 uint64_t priority : 3;
156                 uint64_t csum_verified : 3; /** checksum verified. */
157                 uint64_t has_hwtstamp : 1; /** Has hardware timestamp.1 = yes.*/
158                 uint64_t encap_on : 1;
159                 uint64_t has_hash : 1; /** Has hash (rth or rss). 1 = yes. */
160         } r_dh;
161         struct {
162                 uint64_t opcode : 4;
163                 uint64_t subcode : 8;
164                 uint64_t len : 3; /** additional 64-bit words */
165                 uint64_t reserved : 8;
166                 uint64_t extra : 25;
167                 uint64_t gmxport : 16;
168         } r_nic_info;
169 #else
170         uint64_t rh64;
171         struct {
172                 uint64_t ossp : 32; /** opcode/subcode specific parameters */
173                 uint64_t reserved : 17;
174                 uint64_t len : 3; /** additional 64-bit words */
175                 uint64_t subcode : 8;
176                 uint64_t opcode : 4;
177         } r;
178         struct {
179                 uint64_t has_hash : 1; /** Has hash (rth or rss). 1 = yes. */
180                 uint64_t encap_on : 1;
181                 uint64_t has_hwtstamp : 1;  /** 1 = has hwtstamp */
182                 uint64_t csum_verified : 3; /** checksum verified. */
183                 uint64_t priority : 3;
184                 uint64_t vlan : 12;
185                 uint64_t extra : 28;
186                 uint64_t len : 3; /** additional 64-bit words */
187                 uint64_t subcode : 8;
188                 uint64_t opcode : 4;
189         } r_dh;
190         struct {
191                 uint64_t gmxport : 16;
192                 uint64_t extra : 25;
193                 uint64_t reserved : 8;
194                 uint64_t len : 3; /** additional 64-bit words */
195                 uint64_t subcode : 8;
196                 uint64_t opcode : 4;
197         } r_nic_info;
198 #endif
199 };
200
201 #define OCTEON_RH_SIZE (sizeof(union octeon_rh))
202
203 /** The txpciq info passed to host from the firmware */
204 union octeon_txpciq {
205         uint64_t txpciq64;
206
207         struct {
208 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
209                 uint64_t q_no : 8;
210                 uint64_t port : 8;
211                 uint64_t pkind : 6;
212                 uint64_t use_qpg : 1;
213                 uint64_t qpg : 11;
214                 uint64_t aura_num : 10;
215                 uint64_t reserved : 20;
216 #else
217                 uint64_t reserved : 20;
218                 uint64_t aura_num : 10;
219                 uint64_t qpg : 11;
220                 uint64_t use_qpg : 1;
221                 uint64_t pkind : 6;
222                 uint64_t port : 8;
223                 uint64_t q_no : 8;
224 #endif
225         } s;
226 };
227
228 /** The instruction (input) queue.
229  *  The input queue is used to post raw (instruction) mode data or packet
230  *  data to Octeon device from the host. Each input queue for
231  *  a LIO device has one such structure to represent it.
232  */
233 struct lio_instr_queue {
234         /** A spinlock to protect access to the input ring.  */
235         rte_spinlock_t lock;
236
237         rte_spinlock_t post_lock;
238
239         struct lio_device *lio_dev;
240
241         uint32_t pkt_in_done;
242
243         rte_atomic64_t iq_flush_running;
244
245         /** Flag that indicates if the queue uses 64 byte commands. */
246         uint32_t iqcmd_64B:1;
247
248         /** Queue info. */
249         union octeon_txpciq txpciq;
250
251         uint32_t rsvd:17;
252
253         uint32_t status:8;
254
255         /** Maximum no. of instructions in this queue. */
256         uint32_t max_count;
257
258         /** Index in input ring where the driver should write the next packet */
259         uint32_t host_write_index;
260
261         /** Index in input ring where Octeon is expected to read the next
262          *  packet.
263          */
264         uint32_t lio_read_index;
265
266         /** This index aids in finding the window in the queue where Octeon
267          *  has read the commands.
268          */
269         uint32_t flush_index;
270
271         /** This field keeps track of the instructions pending in this queue. */
272         rte_atomic64_t instr_pending;
273
274         /** Pointer to the Virtual Base addr of the input ring. */
275         uint8_t *base_addr;
276
277         struct lio_request_list *request_list;
278
279         /** Octeon doorbell register for the ring. */
280         void *doorbell_reg;
281
282         /** Octeon instruction count register for this ring. */
283         void *inst_cnt_reg;
284
285         /** Number of instructions pending to be posted to Octeon. */
286         uint32_t fill_cnt;
287
288         /** DMA mapped base address of the input descriptor ring. */
289         uint64_t base_addr_dma;
290
291         /** Application context */
292         void *app_ctx;
293
294         /* network stack queue index */
295         int q_index;
296
297         /* Memory zone */
298         const struct rte_memzone *iq_mz;
299 };
300
301 /** This structure is used by driver to store information required
302  *  to free the mbuff when the packet has been fetched by Octeon.
303  *  Bytes offset below assume worst-case of a 64-bit system.
304  */
305 struct lio_buf_free_info {
306         /** Bytes 1-8. Pointer to network device private structure. */
307         struct lio_device *lio_dev;
308
309         /** Bytes 9-16. Pointer to mbuff. */
310         struct rte_mbuf *mbuf;
311
312         /** Bytes 17-24. Pointer to gather list. */
313         struct lio_gather *g;
314
315         /** Bytes 25-32. Physical address of mbuf->data or gather list. */
316         uint64_t dptr;
317
318         /** Bytes 33-47. Piggybacked soft command, if any */
319         struct lio_soft_command *sc;
320
321         /** Bytes 48-63. iq no */
322         uint64_t iq_no;
323 };
324
325 /* The Scatter-Gather List Entry. The scatter or gather component used with
326  * input instruction has this format.
327  */
328 struct lio_sg_entry {
329         /** The first 64 bit gives the size of data in each dptr. */
330         union {
331                 uint16_t size[4];
332                 uint64_t size64;
333         } u;
334
335         /** The 4 dptr pointers for this entry. */
336         uint64_t ptr[4];
337 };
338
339 #define LIO_SG_ENTRY_SIZE       (sizeof(struct lio_sg_entry))
340
341 /** Structure of a node in list of gather components maintained by
342  *  driver for each network device.
343  */
344 struct lio_gather {
345         /** List manipulation. Next and prev pointers. */
346         struct lio_stailq_node list;
347
348         /** Size of the gather component at sg in bytes. */
349         int sg_size;
350
351         /** Number of bytes that sg was adjusted to make it 8B-aligned. */
352         int adjust;
353
354         /** Gather component that can accommodate max sized fragment list
355          *  received from the IP layer.
356          */
357         struct lio_sg_entry *sg;
358 };
359
360 struct lio_io_enable {
361         uint64_t iq;
362         uint64_t oq;
363         uint64_t iq64B;
364 };
365
366 struct lio_fn_list {
367         void (*setup_iq_regs)(struct lio_device *, uint32_t);
368         void (*setup_oq_regs)(struct lio_device *, uint32_t);
369
370         int (*setup_mbox)(struct lio_device *);
371         void (*free_mbox)(struct lio_device *);
372
373         int (*setup_device_regs)(struct lio_device *);
374         int (*enable_io_queues)(struct lio_device *);
375         void (*disable_io_queues)(struct lio_device *);
376 };
377
378 struct lio_pf_vf_hs_word {
379 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
380         /** PKIND value assigned for the DPI interface */
381         uint64_t pkind : 8;
382
383         /** OCTEON core clock multiplier */
384         uint64_t core_tics_per_us : 16;
385
386         /** OCTEON coprocessor clock multiplier */
387         uint64_t coproc_tics_per_us : 16;
388
389         /** app that currently running on OCTEON */
390         uint64_t app_mode : 8;
391
392         /** RESERVED */
393         uint64_t reserved : 16;
394
395 #elif RTE_BYTE_ORDER == RTE_BIG_ENDIAN
396
397         /** RESERVED */
398         uint64_t reserved : 16;
399
400         /** app that currently running on OCTEON */
401         uint64_t app_mode : 8;
402
403         /** OCTEON coprocessor clock multiplier */
404         uint64_t coproc_tics_per_us : 16;
405
406         /** OCTEON core clock multiplier */
407         uint64_t core_tics_per_us : 16;
408
409         /** PKIND value assigned for the DPI interface */
410         uint64_t pkind : 8;
411 #endif
412 };
413
414 struct lio_sriov_info {
415         /** Number of rings assigned to VF */
416         uint32_t rings_per_vf;
417
418         /** Number of VF devices enabled */
419         uint32_t num_vfs;
420 };
421
422 /* Head of a response list */
423 struct lio_response_list {
424         /** List structure to add delete pending entries to */
425         struct lio_stailq_head head;
426
427         /** A lock for this response list */
428         rte_spinlock_t lock;
429
430         rte_atomic64_t pending_req_count;
431 };
432
433 /* Structure to define the configuration attributes for each Input queue. */
434 struct lio_iq_config {
435         /* Max number of IQs available */
436         uint8_t max_iqs;
437
438         /** Pending list size (usually set to the sum of the size of all Input
439          *  queues)
440          */
441         uint32_t pending_list_size;
442
443         /** Command size - 32 or 64 bytes */
444         uint32_t instr_type;
445 };
446
447 /* Structure to define the configuration attributes for each Output queue. */
448 struct lio_oq_config {
449         /* Max number of OQs available */
450         uint8_t max_oqs;
451
452         /** If set, the Output queue uses info-pointer mode. (Default: 1 ) */
453         uint32_t info_ptr;
454
455         /** The number of buffers that were consumed during packet processing by
456          *  the driver on this Output queue before the driver attempts to
457          *  replenish the descriptor ring with new buffers.
458          */
459         uint32_t refill_threshold;
460 };
461
462 /* Structure to define the configuration. */
463 struct lio_config {
464         uint16_t card_type;
465         const char *card_name;
466
467         /** Input Queue attributes. */
468         struct lio_iq_config iq;
469
470         /** Output Queue attributes. */
471         struct lio_oq_config oq;
472
473         int num_nic_ports;
474
475         int num_def_tx_descs;
476
477         /* Num of desc for rx rings */
478         int num_def_rx_descs;
479
480         int def_rx_buf_size;
481 };
482
483 /** Status of a RGMII Link on Octeon as seen by core driver. */
484 union octeon_link_status {
485         uint64_t link_status64;
486
487         struct {
488 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
489                 uint64_t duplex : 8;
490                 uint64_t mtu : 16;
491                 uint64_t speed : 16;
492                 uint64_t link_up : 1;
493                 uint64_t autoneg : 1;
494                 uint64_t if_mode : 5;
495                 uint64_t pause : 1;
496                 uint64_t flashing : 1;
497                 uint64_t reserved : 15;
498 #else
499                 uint64_t reserved : 15;
500                 uint64_t flashing : 1;
501                 uint64_t pause : 1;
502                 uint64_t if_mode : 5;
503                 uint64_t autoneg : 1;
504                 uint64_t link_up : 1;
505                 uint64_t speed : 16;
506                 uint64_t mtu : 16;
507                 uint64_t duplex : 8;
508 #endif
509         } s;
510 };
511
512 /** The rxpciq info passed to host from the firmware */
513 union octeon_rxpciq {
514         uint64_t rxpciq64;
515
516         struct {
517 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
518                 uint64_t q_no : 8;
519                 uint64_t reserved : 56;
520 #else
521                 uint64_t reserved : 56;
522                 uint64_t q_no : 8;
523 #endif
524         } s;
525 };
526
527 /** Information for a OCTEON ethernet interface shared between core & host. */
528 struct octeon_link_info {
529         union octeon_link_status link;
530         uint64_t hw_addr;
531
532 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
533         uint64_t gmxport : 16;
534         uint64_t macaddr_is_admin_assigned : 1;
535         uint64_t vlan_is_admin_assigned : 1;
536         uint64_t rsvd : 30;
537         uint64_t num_txpciq : 8;
538         uint64_t num_rxpciq : 8;
539 #else
540         uint64_t num_rxpciq : 8;
541         uint64_t num_txpciq : 8;
542         uint64_t rsvd : 30;
543         uint64_t vlan_is_admin_assigned : 1;
544         uint64_t macaddr_is_admin_assigned : 1;
545         uint64_t gmxport : 16;
546 #endif
547
548         union octeon_txpciq txpciq[LIO_MAX_IOQS_PER_IF];
549         union octeon_rxpciq rxpciq[LIO_MAX_IOQS_PER_IF];
550 };
551
552 /* -----------------------  THE LIO DEVICE  --------------------------- */
553 /** The lio device.
554  *  Each lio device has this structure to represent all its
555  *  components.
556  */
557 struct lio_device {
558         /** PCI device pointer */
559         struct rte_pci_device *pci_dev;
560
561         /** Octeon Chip type */
562         uint16_t chip_id;
563         uint16_t pf_num;
564         uint16_t vf_num;
565
566         /** This device's PCIe port used for traffic. */
567         uint16_t pcie_port;
568
569         /** The state of this device */
570         rte_atomic64_t status;
571
572         uint8_t intf_open;
573
574         struct octeon_link_info linfo;
575
576         uint8_t *hw_addr;
577
578         struct lio_fn_list fn_list;
579
580         uint32_t num_iqs;
581
582         /** Guards each glist */
583         rte_spinlock_t *glist_lock;
584         /** Array of gather component linked lists */
585         struct lio_stailq_head *glist_head;
586
587         /* The pool containing pre allocated buffers used for soft commands */
588         struct rte_mempool *sc_buf_pool;
589
590         /** The input instruction queues */
591         struct lio_instr_queue *instr_queue[LIO_MAX_POSSIBLE_INSTR_QUEUES];
592
593         /** The singly-linked tail queues of instruction response */
594         struct lio_response_list response_list;
595
596         uint32_t num_oqs;
597
598         /** The DROQ output queues  */
599         struct lio_droq *droq[LIO_MAX_POSSIBLE_OUTPUT_QUEUES];
600
601         struct lio_io_enable io_qmask;
602
603         struct lio_sriov_info sriov_info;
604
605         struct lio_pf_vf_hs_word pfvf_hsword;
606
607         /** Mail Box details of each lio queue. */
608         struct lio_mbox **mbox;
609
610         char dev_string[LIO_DEVICE_NAME_LEN]; /* Device print string */
611
612         const struct lio_config *default_config;
613
614         struct rte_eth_dev      *eth_dev;
615
616         uint64_t ifflags;
617         uint8_t max_rx_queues;
618         uint8_t max_tx_queues;
619         uint8_t nb_rx_queues;
620         uint8_t nb_tx_queues;
621         uint8_t port_configured;
622         uint8_t port_id;
623 };
624 #endif /* _LIO_STRUCT_H_ */