c2293f7113ca3d6d594a09ed07652b6365b8887c
[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_rss_ctx {
361         uint16_t hash_key_size;
362         uint8_t  hash_key[LIO_RSS_MAX_KEY_SZ];
363         /* Ideally a factor of number of queues */
364         uint8_t  itable[LIO_RSS_MAX_TABLE_SZ];
365         uint8_t  itable_size;
366         uint8_t  ip;
367         uint8_t  tcp_hash;
368         uint8_t  ipv6;
369         uint8_t  ipv6_tcp_hash;
370         uint8_t  ipv6_ex;
371         uint8_t  ipv6_tcp_ex_hash;
372         uint8_t  hash_disable;
373 };
374
375 struct lio_io_enable {
376         uint64_t iq;
377         uint64_t oq;
378         uint64_t iq64B;
379 };
380
381 struct lio_fn_list {
382         void (*setup_iq_regs)(struct lio_device *, uint32_t);
383         void (*setup_oq_regs)(struct lio_device *, uint32_t);
384
385         int (*setup_mbox)(struct lio_device *);
386         void (*free_mbox)(struct lio_device *);
387
388         int (*setup_device_regs)(struct lio_device *);
389         int (*enable_io_queues)(struct lio_device *);
390         void (*disable_io_queues)(struct lio_device *);
391 };
392
393 struct lio_pf_vf_hs_word {
394 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
395         /** PKIND value assigned for the DPI interface */
396         uint64_t pkind : 8;
397
398         /** OCTEON core clock multiplier */
399         uint64_t core_tics_per_us : 16;
400
401         /** OCTEON coprocessor clock multiplier */
402         uint64_t coproc_tics_per_us : 16;
403
404         /** app that currently running on OCTEON */
405         uint64_t app_mode : 8;
406
407         /** RESERVED */
408         uint64_t reserved : 16;
409
410 #elif RTE_BYTE_ORDER == RTE_BIG_ENDIAN
411
412         /** RESERVED */
413         uint64_t reserved : 16;
414
415         /** app that currently running on OCTEON */
416         uint64_t app_mode : 8;
417
418         /** OCTEON coprocessor clock multiplier */
419         uint64_t coproc_tics_per_us : 16;
420
421         /** OCTEON core clock multiplier */
422         uint64_t core_tics_per_us : 16;
423
424         /** PKIND value assigned for the DPI interface */
425         uint64_t pkind : 8;
426 #endif
427 };
428
429 struct lio_sriov_info {
430         /** Number of rings assigned to VF */
431         uint32_t rings_per_vf;
432
433         /** Number of VF devices enabled */
434         uint32_t num_vfs;
435 };
436
437 /* Head of a response list */
438 struct lio_response_list {
439         /** List structure to add delete pending entries to */
440         struct lio_stailq_head head;
441
442         /** A lock for this response list */
443         rte_spinlock_t lock;
444
445         rte_atomic64_t pending_req_count;
446 };
447
448 /* Structure to define the configuration attributes for each Input queue. */
449 struct lio_iq_config {
450         /* Max number of IQs available */
451         uint8_t max_iqs;
452
453         /** Pending list size (usually set to the sum of the size of all Input
454          *  queues)
455          */
456         uint32_t pending_list_size;
457
458         /** Command size - 32 or 64 bytes */
459         uint32_t instr_type;
460 };
461
462 /* Structure to define the configuration attributes for each Output queue. */
463 struct lio_oq_config {
464         /* Max number of OQs available */
465         uint8_t max_oqs;
466
467         /** If set, the Output queue uses info-pointer mode. (Default: 1 ) */
468         uint32_t info_ptr;
469
470         /** The number of buffers that were consumed during packet processing by
471          *  the driver on this Output queue before the driver attempts to
472          *  replenish the descriptor ring with new buffers.
473          */
474         uint32_t refill_threshold;
475 };
476
477 /* Structure to define the configuration. */
478 struct lio_config {
479         uint16_t card_type;
480         const char *card_name;
481
482         /** Input Queue attributes. */
483         struct lio_iq_config iq;
484
485         /** Output Queue attributes. */
486         struct lio_oq_config oq;
487
488         int num_nic_ports;
489
490         int num_def_tx_descs;
491
492         /* Num of desc for rx rings */
493         int num_def_rx_descs;
494
495         int def_rx_buf_size;
496 };
497
498 /** Status of a RGMII Link on Octeon as seen by core driver. */
499 union octeon_link_status {
500         uint64_t link_status64;
501
502         struct {
503 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
504                 uint64_t duplex : 8;
505                 uint64_t mtu : 16;
506                 uint64_t speed : 16;
507                 uint64_t link_up : 1;
508                 uint64_t autoneg : 1;
509                 uint64_t if_mode : 5;
510                 uint64_t pause : 1;
511                 uint64_t flashing : 1;
512                 uint64_t reserved : 15;
513 #else
514                 uint64_t reserved : 15;
515                 uint64_t flashing : 1;
516                 uint64_t pause : 1;
517                 uint64_t if_mode : 5;
518                 uint64_t autoneg : 1;
519                 uint64_t link_up : 1;
520                 uint64_t speed : 16;
521                 uint64_t mtu : 16;
522                 uint64_t duplex : 8;
523 #endif
524         } s;
525 };
526
527 /** The rxpciq info passed to host from the firmware */
528 union octeon_rxpciq {
529         uint64_t rxpciq64;
530
531         struct {
532 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
533                 uint64_t q_no : 8;
534                 uint64_t reserved : 56;
535 #else
536                 uint64_t reserved : 56;
537                 uint64_t q_no : 8;
538 #endif
539         } s;
540 };
541
542 /** Information for a OCTEON ethernet interface shared between core & host. */
543 struct octeon_link_info {
544         union octeon_link_status link;
545         uint64_t hw_addr;
546
547 #if RTE_BYTE_ORDER == RTE_BIG_ENDIAN
548         uint64_t gmxport : 16;
549         uint64_t macaddr_is_admin_assigned : 1;
550         uint64_t vlan_is_admin_assigned : 1;
551         uint64_t rsvd : 30;
552         uint64_t num_txpciq : 8;
553         uint64_t num_rxpciq : 8;
554 #else
555         uint64_t num_rxpciq : 8;
556         uint64_t num_txpciq : 8;
557         uint64_t rsvd : 30;
558         uint64_t vlan_is_admin_assigned : 1;
559         uint64_t macaddr_is_admin_assigned : 1;
560         uint64_t gmxport : 16;
561 #endif
562
563         union octeon_txpciq txpciq[LIO_MAX_IOQS_PER_IF];
564         union octeon_rxpciq rxpciq[LIO_MAX_IOQS_PER_IF];
565 };
566
567 /* -----------------------  THE LIO DEVICE  --------------------------- */
568 /** The lio device.
569  *  Each lio device has this structure to represent all its
570  *  components.
571  */
572 struct lio_device {
573         /** PCI device pointer */
574         struct rte_pci_device *pci_dev;
575
576         /** Octeon Chip type */
577         uint16_t chip_id;
578         uint16_t pf_num;
579         uint16_t vf_num;
580
581         /** This device's PCIe port used for traffic. */
582         uint16_t pcie_port;
583
584         /** The state of this device */
585         rte_atomic64_t status;
586
587         uint8_t intf_open;
588
589         struct octeon_link_info linfo;
590
591         uint8_t *hw_addr;
592
593         struct lio_fn_list fn_list;
594
595         uint32_t num_iqs;
596
597         /** Guards each glist */
598         rte_spinlock_t *glist_lock;
599         /** Array of gather component linked lists */
600         struct lio_stailq_head *glist_head;
601
602         /* The pool containing pre allocated buffers used for soft commands */
603         struct rte_mempool *sc_buf_pool;
604
605         /** The input instruction queues */
606         struct lio_instr_queue *instr_queue[LIO_MAX_POSSIBLE_INSTR_QUEUES];
607
608         /** The singly-linked tail queues of instruction response */
609         struct lio_response_list response_list;
610
611         uint32_t num_oqs;
612
613         /** The DROQ output queues  */
614         struct lio_droq *droq[LIO_MAX_POSSIBLE_OUTPUT_QUEUES];
615
616         struct lio_io_enable io_qmask;
617
618         struct lio_sriov_info sriov_info;
619
620         struct lio_pf_vf_hs_word pfvf_hsword;
621
622         /** Mail Box details of each lio queue. */
623         struct lio_mbox **mbox;
624
625         char dev_string[LIO_DEVICE_NAME_LEN]; /* Device print string */
626
627         const struct lio_config *default_config;
628
629         struct rte_eth_dev      *eth_dev;
630
631         uint64_t ifflags;
632         uint8_t max_rx_queues;
633         uint8_t max_tx_queues;
634         uint8_t nb_rx_queues;
635         uint8_t nb_tx_queues;
636         uint8_t port_configured;
637         struct lio_rss_ctx rss_state;
638         uint8_t port_id;
639 };
640 #endif /* _LIO_STRUCT_H_ */