a1203e4a4efece6c059217c31b0c62e0f0bb2929
[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_sriov_info {
47         /** Number of rings assigned to VF */
48         uint32_t rings_per_vf;
49
50         /** Number of VF devices enabled */
51         uint32_t num_vfs;
52 };
53
54 /* Structure to define the configuration attributes for each Input queue. */
55 struct lio_iq_config {
56         /* Max number of IQs available */
57         uint8_t max_iqs;
58
59         /** Pending list size (usually set to the sum of the size of all Input
60          *  queues)
61          */
62         uint32_t pending_list_size;
63
64         /** Command size - 32 or 64 bytes */
65         uint32_t instr_type;
66 };
67
68 /* Structure to define the configuration attributes for each Output queue. */
69 struct lio_oq_config {
70         /* Max number of OQs available */
71         uint8_t max_oqs;
72
73         /** If set, the Output queue uses info-pointer mode. (Default: 1 ) */
74         uint32_t info_ptr;
75
76         /** The number of buffers that were consumed during packet processing by
77          *  the driver on this Output queue before the driver attempts to
78          *  replenish the descriptor ring with new buffers.
79          */
80         uint32_t refill_threshold;
81 };
82
83 /* Structure to define the configuration. */
84 struct lio_config {
85         uint16_t card_type;
86         const char *card_name;
87
88         /** Input Queue attributes. */
89         struct lio_iq_config iq;
90
91         /** Output Queue attributes. */
92         struct lio_oq_config oq;
93
94         int num_nic_ports;
95
96         int num_def_tx_descs;
97
98         /* Num of desc for rx rings */
99         int num_def_rx_descs;
100
101         int def_rx_buf_size;
102 };
103
104 /* -----------------------  THE LIO DEVICE  --------------------------- */
105 /** The lio device.
106  *  Each lio device has this structure to represent all its
107  *  components.
108  */
109 struct lio_device {
110         /** PCI device pointer */
111         struct rte_pci_device *pci_dev;
112
113         /** Octeon Chip type */
114         uint16_t chip_id;
115         uint16_t pf_num;
116         uint16_t vf_num;
117
118         uint8_t *hw_addr;
119
120         struct lio_sriov_info sriov_info;
121
122         char dev_string[LIO_DEVICE_NAME_LEN]; /* Device print string */
123
124         const struct lio_config *default_config;
125
126         struct rte_eth_dev      *eth_dev;
127
128         uint8_t max_rx_queues;
129         uint8_t max_tx_queues;
130         uint8_t nb_rx_queues;
131         uint8_t nb_tx_queues;
132         uint8_t port_configured;
133         uint8_t port_id;
134 };
135 #endif /* _LIO_STRUCT_H_ */