net/liquidio: support device reset in driver
[dpdk.git] / drivers / net / liquidio / base / lio_hw_defs.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_HW_DEFS_H_
35 #define _LIO_HW_DEFS_H_
36
37 #include <rte_io.h>
38
39 #ifndef PCI_VENDOR_ID_CAVIUM
40 #define PCI_VENDOR_ID_CAVIUM    0x177D
41 #endif
42
43 #define LIO_CN23XX_VF_VID       0x9712
44
45 /* CN23xx subsystem device ids */
46 #define PCI_SUBSYS_DEV_ID_CN2350_210            0x0004
47 #define PCI_SUBSYS_DEV_ID_CN2360_210            0x0005
48 #define PCI_SUBSYS_DEV_ID_CN2360_225            0x0006
49 #define PCI_SUBSYS_DEV_ID_CN2350_225            0x0007
50 #define PCI_SUBSYS_DEV_ID_CN2350_210SVPN3       0x0008
51 #define PCI_SUBSYS_DEV_ID_CN2360_210SVPN3       0x0009
52 #define PCI_SUBSYS_DEV_ID_CN2350_210SVPT        0x000a
53 #define PCI_SUBSYS_DEV_ID_CN2360_210SVPT        0x000b
54
55 /* --------------------------CONFIG VALUES------------------------ */
56
57 /* CN23xx IQ configuration macros */
58 #define CN23XX_MAX_RINGS_PER_PF                 64
59 #define CN23XX_MAX_RINGS_PER_VF                 8
60
61 #define CN23XX_MAX_INPUT_QUEUES                 CN23XX_MAX_RINGS_PER_PF
62 #define CN23XX_MAX_IQ_DESCRIPTORS               512
63 #define CN23XX_MIN_IQ_DESCRIPTORS               128
64
65 #define CN23XX_MAX_OUTPUT_QUEUES                CN23XX_MAX_RINGS_PER_PF
66 #define CN23XX_MAX_OQ_DESCRIPTORS               512
67 #define CN23XX_MIN_OQ_DESCRIPTORS               128
68 #define CN23XX_OQ_BUF_SIZE                      1536
69
70 #define CN23XX_OQ_REFIL_THRESHOLD               16
71
72 #define CN23XX_DEFAULT_NUM_PORTS                1
73
74 #define CN23XX_CFG_IO_QUEUES                    CN23XX_MAX_RINGS_PER_PF
75
76 /* common OCTEON configuration macros */
77 #define OCTEON_64BYTE_INSTR                     64
78 #define OCTEON_OQ_INFOPTR_MODE                  1
79
80 /* Max IOQs per LIO Link */
81 #define LIO_MAX_IOQS_PER_IF                     64
82
83 /* Wait time in milliseconds for FLR */
84 #define LIO_PCI_FLR_WAIT                        100
85
86 enum lio_card_type {
87         LIO_23XX /* 23xx */
88 };
89
90 #define LIO_23XX_NAME "23xx"
91
92 #define LIO_DEV_RUNNING         0xc
93
94 #define LIO_OQ_REFILL_THRESHOLD_CFG(cfg)                                \
95                 ((cfg)->default_config->oq.refill_threshold)
96 #define LIO_NUM_DEF_TX_DESCS_CFG(cfg)                                   \
97                 ((cfg)->default_config->num_def_tx_descs)
98
99 #define LIO_IQ_INSTR_TYPE(cfg)          ((cfg)->default_config->iq.instr_type)
100
101 /* The following config values are fixed and should not be modified. */
102
103 /* Maximum number of Instruction queues */
104 #define LIO_MAX_INSTR_QUEUES(lio_dev)           CN23XX_MAX_RINGS_PER_VF
105
106 #define LIO_MAX_POSSIBLE_INSTR_QUEUES           CN23XX_MAX_INPUT_QUEUES
107 #define LIO_MAX_POSSIBLE_OUTPUT_QUEUES          CN23XX_MAX_OUTPUT_QUEUES
108
109 #define LIO_DEVICE_NAME_LEN             32
110 #define LIO_BASE_MAJOR_VERSION          1
111 #define LIO_BASE_MINOR_VERSION          5
112 #define LIO_BASE_MICRO_VERSION          1
113
114 #define LIO_FW_VERSION_LENGTH           32
115
116 #define LIO_VF_TRUST_MIN_VERSION        "1.7.1"
117
118 /** Tag types used by Octeon cores in its work. */
119 enum octeon_tag_type {
120         OCTEON_ORDERED_TAG      = 0,
121         OCTEON_ATOMIC_TAG       = 1,
122 };
123
124 /* pre-defined host->NIC tag values */
125 #define LIO_CONTROL     (0x11111110)
126 #define LIO_DATA(i)     (0x11111111 + (i))
127
128 /* used for NIC operations */
129 #define LIO_OPCODE      1
130
131 /* Subcodes are used by host driver/apps to identify the sub-operation
132  * for the core. They only need to by unique for a given subsystem.
133  */
134 #define LIO_OPCODE_SUBCODE(op, sub)             \
135                 ((((op) & 0x0f) << 8) | ((sub) & 0x7f))
136
137 /** LIO_OPCODE subcodes */
138 /* This subcode is sent by core PCI driver to indicate cores are ready. */
139 #define LIO_OPCODE_NW_DATA              0x02 /* network packet data */
140 #define LIO_OPCODE_CMD                  0x03
141 #define LIO_OPCODE_INFO                 0x04
142 #define LIO_OPCODE_PORT_STATS           0x05
143 #define LIO_OPCODE_IF_CFG               0x09
144
145 #define LIO_MIN_RX_BUF_SIZE             64
146 #define LIO_MAX_RX_PKTLEN               (64 * 1024)
147
148 /* NIC Command types */
149 #define LIO_CMD_CHANGE_MTU              0x1
150 #define LIO_CMD_CHANGE_DEVFLAGS         0x3
151 #define LIO_CMD_RX_CTL                  0x4
152 #define LIO_CMD_CLEAR_STATS             0x6
153 #define LIO_CMD_SET_RSS                 0xD
154 #define LIO_CMD_TNL_RX_CSUM_CTL         0x10
155 #define LIO_CMD_TNL_TX_CSUM_CTL         0x11
156 #define LIO_CMD_ADD_VLAN_FILTER         0x17
157 #define LIO_CMD_DEL_VLAN_FILTER         0x18
158 #define LIO_CMD_VXLAN_PORT_CONFIG       0x19
159
160 #define LIO_CMD_VXLAN_PORT_ADD          0x0
161 #define LIO_CMD_VXLAN_PORT_DEL          0x1
162 #define LIO_CMD_RXCSUM_ENABLE           0x0
163 #define LIO_CMD_TXCSUM_ENABLE           0x0
164
165 /* RX(packets coming from wire) Checksum verification flags */
166 /* TCP/UDP csum */
167 #define LIO_L4_CSUM_VERIFIED            0x1
168 #define LIO_IP_CSUM_VERIFIED            0x2
169
170 /* RSS */
171 #define LIO_RSS_PARAM_DISABLE_RSS               0x10
172 #define LIO_RSS_PARAM_HASH_KEY_UNCHANGED        0x08
173 #define LIO_RSS_PARAM_ITABLE_UNCHANGED          0x04
174 #define LIO_RSS_PARAM_HASH_INFO_UNCHANGED       0x02
175
176 #define LIO_RSS_HASH_IPV4                       0x100
177 #define LIO_RSS_HASH_TCP_IPV4                   0x200
178 #define LIO_RSS_HASH_IPV6                       0x400
179 #define LIO_RSS_HASH_TCP_IPV6                   0x1000
180 #define LIO_RSS_HASH_IPV6_EX                    0x800
181 #define LIO_RSS_HASH_TCP_IPV6_EX                0x2000
182
183 #define LIO_RSS_OFFLOAD_ALL (           \
184                 LIO_RSS_HASH_IPV4 |     \
185                 LIO_RSS_HASH_TCP_IPV4 | \
186                 LIO_RSS_HASH_IPV6 |     \
187                 LIO_RSS_HASH_TCP_IPV6 | \
188                 LIO_RSS_HASH_IPV6_EX |  \
189                 LIO_RSS_HASH_TCP_IPV6_EX)
190
191 #define LIO_RSS_MAX_TABLE_SZ            128
192 #define LIO_RSS_MAX_KEY_SZ              40
193 #define LIO_RSS_PARAM_SIZE              16
194
195 /* Interface flags communicated between host driver and core app. */
196 enum lio_ifflags {
197         LIO_IFFLAG_PROMISC      = 0x01,
198         LIO_IFFLAG_ALLMULTI     = 0x02,
199         LIO_IFFLAG_UNICAST      = 0x10
200 };
201
202 /* Routines for reading and writing CSRs */
203 #ifdef RTE_LIBRTE_LIO_DEBUG_REGS
204 #define lio_write_csr(lio_dev, reg_off, value)                          \
205         do {                                                            \
206                 typeof(lio_dev) _dev = lio_dev;                         \
207                 typeof(reg_off) _reg_off = reg_off;                     \
208                 typeof(value) _value = value;                           \
209                 PMD_REGS_LOG(_dev,                                      \
210                              "Write32: Reg: 0x%08lx Val: 0x%08lx\n",    \
211                              (unsigned long)_reg_off,                   \
212                              (unsigned long)_value);                    \
213                 rte_write32(_value, _dev->hw_addr + _reg_off);          \
214         } while (0)
215
216 #define lio_write_csr64(lio_dev, reg_off, val64)                        \
217         do {                                                            \
218                 typeof(lio_dev) _dev = lio_dev;                         \
219                 typeof(reg_off) _reg_off = reg_off;                     \
220                 typeof(val64) _val64 = val64;                           \
221                 PMD_REGS_LOG(                                           \
222                     _dev,                                               \
223                     "Write64: Reg: 0x%08lx Val: 0x%016llx\n",           \
224                     (unsigned long)_reg_off,                            \
225                     (unsigned long long)_val64);                        \
226                 rte_write64(_val64, _dev->hw_addr + _reg_off);          \
227         } while (0)
228
229 #define lio_read_csr(lio_dev, reg_off)                                  \
230         ({                                                              \
231                 typeof(lio_dev) _dev = lio_dev;                         \
232                 typeof(reg_off) _reg_off = reg_off;                     \
233                 uint32_t val = rte_read32(_dev->hw_addr + _reg_off);    \
234                 PMD_REGS_LOG(_dev,                                      \
235                              "Read32: Reg: 0x%08lx Val: 0x%08lx\n",     \
236                              (unsigned long)_reg_off,                   \
237                              (unsigned long)val);                       \
238                 val;                                                    \
239         })
240
241 #define lio_read_csr64(lio_dev, reg_off)                                \
242         ({                                                              \
243                 typeof(lio_dev) _dev = lio_dev;                         \
244                 typeof(reg_off) _reg_off = reg_off;                     \
245                 uint64_t val64 = rte_read64(_dev->hw_addr + _reg_off);  \
246                 PMD_REGS_LOG(                                           \
247                     _dev,                                               \
248                     "Read64: Reg: 0x%08lx Val: 0x%016llx\n",            \
249                     (unsigned long)_reg_off,                            \
250                     (unsigned long long)val64);                         \
251                 val64;                                                  \
252         })
253 #else
254 #define lio_write_csr(lio_dev, reg_off, value)                          \
255         rte_write32(value, (lio_dev)->hw_addr + (reg_off))
256
257 #define lio_write_csr64(lio_dev, reg_off, val64)                        \
258         rte_write64(val64, (lio_dev)->hw_addr + (reg_off))
259
260 #define lio_read_csr(lio_dev, reg_off)                                  \
261         rte_read32((lio_dev)->hw_addr + (reg_off))
262
263 #define lio_read_csr64(lio_dev, reg_off)                                \
264         rte_read64((lio_dev)->hw_addr + (reg_off))
265 #endif
266 #endif /* _LIO_HW_DEFS_H_ */