net/sfc: support per-port dynamic logging
[dpdk.git] / drivers / net / sfc / sfc.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright (c) 2016-2018 Solarflare Communications Inc.
4  * All rights reserved.
5  *
6  * This software was jointly developed between OKTET Labs (under contract
7  * for Solarflare) and Solarflare Communications, Inc.
8  */
9
10 #ifndef _SFC_H
11 #define _SFC_H
12
13 #include <stdbool.h>
14
15 #include <rte_pci.h>
16 #include <rte_bus_pci.h>
17 #include <rte_ethdev_driver.h>
18 #include <rte_kvargs.h>
19 #include <rte_spinlock.h>
20 #include <rte_atomic.h>
21
22 #include "efx.h"
23
24 #include "sfc_filter.h"
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif
29
30 #if EFSYS_OPT_RX_SCALE
31 /** RSS hash offloads mask */
32 #define SFC_RSS_OFFLOADS        (ETH_RSS_IP | ETH_RSS_TCP)
33 #endif
34
35 /*
36  * +---------------+
37  * | UNINITIALIZED |<-----------+
38  * +---------------+            |
39  *      |.eth_dev_init          |.eth_dev_uninit
40  *      V                       |
41  * +---------------+------------+
42  * |  INITIALIZED  |
43  * +---------------+<-----------<---------------+
44  *      |.dev_configure         |               |
45  *      V                       |failed         |
46  * +---------------+------------+               |
47  * |  CONFIGURING  |                            |
48  * +---------------+----+                       |
49  *      |success        |                       |
50  *      |               |               +---------------+
51  *      |               |               |    CLOSING    |
52  *      |               |               +---------------+
53  *      |               |                       ^
54  *      V               |.dev_configure         |
55  * +---------------+----+                       |.dev_close
56  * |  CONFIGURED   |----------------------------+
57  * +---------------+<-----------+
58  *      |.dev_start             |
59  *      V                       |
60  * +---------------+            |
61  * |   STARTING    |------------^
62  * +---------------+ failed     |
63  *      |success                |
64  *      |               +---------------+
65  *      |               |   STOPPING    |
66  *      |               +---------------+
67  *      |                       ^
68  *      V                       |.dev_stop
69  * +---------------+------------+
70  * |    STARTED    |
71  * +---------------+
72  */
73 enum sfc_adapter_state {
74         SFC_ADAPTER_UNINITIALIZED = 0,
75         SFC_ADAPTER_INITIALIZED,
76         SFC_ADAPTER_CONFIGURING,
77         SFC_ADAPTER_CONFIGURED,
78         SFC_ADAPTER_CLOSING,
79         SFC_ADAPTER_STARTING,
80         SFC_ADAPTER_STARTED,
81         SFC_ADAPTER_STOPPING,
82
83         SFC_ADAPTER_NSTATES
84 };
85
86 enum sfc_dev_filter_mode {
87         SFC_DEV_FILTER_MODE_PROMISC = 0,
88         SFC_DEV_FILTER_MODE_ALLMULTI,
89
90         SFC_DEV_FILTER_NMODES
91 };
92
93 enum sfc_mcdi_state {
94         SFC_MCDI_UNINITIALIZED = 0,
95         SFC_MCDI_INITIALIZED,
96         SFC_MCDI_BUSY,
97         SFC_MCDI_COMPLETED,
98
99         SFC_MCDI_NSTATES
100 };
101
102 struct sfc_mcdi {
103         rte_spinlock_t                  lock;
104         efsys_mem_t                     mem;
105         enum sfc_mcdi_state             state;
106         efx_mcdi_transport_t            transport;
107         bool                            logging;
108         uint32_t                        proxy_handle;
109         efx_rc_t                        proxy_result;
110 };
111
112 struct sfc_intr {
113         efx_intr_type_t                 type;
114         rte_intr_callback_fn            handler;
115         boolean_t                       lsc_intr;
116 };
117
118 struct sfc_rxq_info;
119 struct sfc_txq_info;
120 struct sfc_dp_rx;
121
122 struct sfc_port {
123         unsigned int                    lsc_seq;
124
125         uint32_t                        phy_adv_cap_mask;
126         uint32_t                        phy_adv_cap;
127
128         unsigned int                    flow_ctrl;
129         boolean_t                       flow_ctrl_autoneg;
130         size_t                          pdu;
131
132         /*
133          * Flow API isolated mode overrides promisc and allmulti settings;
134          * they won't be applied if isolated mode is active
135          */
136         boolean_t                       isolated;
137         boolean_t                       promisc;
138         boolean_t                       allmulti;
139
140         struct ether_addr               default_mac_addr;
141
142         unsigned int                    max_mcast_addrs;
143         unsigned int                    nb_mcast_addrs;
144         uint8_t                         *mcast_addrs;
145
146         rte_spinlock_t                  mac_stats_lock;
147         uint64_t                        *mac_stats_buf;
148         unsigned int                    mac_stats_nb_supported;
149         efsys_mem_t                     mac_stats_dma_mem;
150         boolean_t                       mac_stats_reset_pending;
151         uint16_t                        mac_stats_update_period_ms;
152         uint32_t                        mac_stats_update_generation;
153         boolean_t                       mac_stats_periodic_dma_supported;
154         uint64_t                        mac_stats_last_request_timestamp;
155
156         uint32_t                mac_stats_mask[EFX_MAC_STATS_MASK_NPAGES];
157 };
158
159 /* Adapter private data */
160 struct sfc_adapter {
161         /*
162          * PMD setup and configuration is not thread safe. Since it is not
163          * performance sensitive, it is better to guarantee thread-safety
164          * and add device level lock. Adapter control operations which
165          * change its state should acquire the lock.
166          */
167         rte_spinlock_t                  lock;
168         enum sfc_adapter_state          state;
169         struct rte_pci_addr             pci_addr;
170         uint16_t                        port_id;
171         struct rte_eth_dev              *eth_dev;
172         struct rte_kvargs               *kvargs;
173         uint32_t                        logtype_main;
174         bool                            debug_init;
175         int                             socket_id;
176         efsys_bar_t                     mem_bar;
177         efx_family_t                    family;
178         efx_nic_t                       *nic;
179         rte_spinlock_t                  nic_lock;
180         rte_atomic32_t                  restart_required;
181
182         struct sfc_mcdi                 mcdi;
183         struct sfc_intr                 intr;
184         struct sfc_port                 port;
185         struct sfc_filter               filter;
186
187         unsigned int                    rxq_max;
188         unsigned int                    txq_max;
189
190         unsigned int                    txq_max_entries;
191
192         uint32_t                        evq_flags;
193         unsigned int                    evq_count;
194
195         unsigned int                    mgmt_evq_index;
196         /*
197          * The lock is used to serialise management event queue polling
198          * which can be done from different context. Also the lock
199          * guarantees that mgmt_evq_running is preserved while the lock
200          * is held. It is used to serialise polling and start/stop
201          * operations.
202          *
203          * Locks which may be held when the lock is acquired:
204          *  - adapter lock, when:
205          *    - device start/stop to change mgmt_evq_running
206          *    - any control operations in client side MCDI proxy handling to
207          *      poll management event queue waiting for proxy response
208          *  - MCDI lock, when:
209          *    - any control operations in client side MCDI proxy handling to
210          *      poll management event queue waiting for proxy response
211          *
212          * Locks which are acquired with the lock held:
213          *  - nic_lock, when:
214          *    - MC event processing on management event queue polling
215          *      (e.g. MC REBOOT or BADASSERT events)
216          */
217         rte_spinlock_t                  mgmt_evq_lock;
218         bool                            mgmt_evq_running;
219         struct sfc_evq                  *mgmt_evq;
220
221         unsigned int                    rxq_count;
222         struct sfc_rxq_info             *rxq_info;
223
224         unsigned int                    txq_count;
225         struct sfc_txq_info             *txq_info;
226
227         boolean_t                       tso;
228
229         unsigned int                    rss_channels;
230
231 #if EFSYS_OPT_RX_SCALE
232         efx_rx_scale_context_type_t     rss_support;
233         efx_rx_hash_support_t           hash_support;
234         efx_rx_hash_type_t              rss_hash_types;
235         unsigned int                    rss_tbl[EFX_RSS_TBL_SIZE];
236         uint8_t                         rss_key[EFX_RSS_KEY_SIZE];
237 #endif
238
239         /*
240          * Shared memory copy of the Rx datapath name to be used by
241          * the secondary process to find Rx datapath to be used.
242          */
243         char                            *dp_rx_name;
244         const struct sfc_dp_rx          *dp_rx;
245
246         /*
247          * Shared memory copy of the Tx datapath name to be used by
248          * the secondary process to find Rx datapath to be used.
249          */
250         char                            *dp_tx_name;
251         const struct sfc_dp_tx          *dp_tx;
252 };
253
254 /*
255  * Add wrapper functions to acquire/release lock to be able to remove or
256  * change the lock in one place.
257  */
258
259 static inline void
260 sfc_adapter_lock_init(struct sfc_adapter *sa)
261 {
262         rte_spinlock_init(&sa->lock);
263 }
264
265 static inline int
266 sfc_adapter_is_locked(struct sfc_adapter *sa)
267 {
268         return rte_spinlock_is_locked(&sa->lock);
269 }
270
271 static inline void
272 sfc_adapter_lock(struct sfc_adapter *sa)
273 {
274         rte_spinlock_lock(&sa->lock);
275 }
276
277 static inline int
278 sfc_adapter_trylock(struct sfc_adapter *sa)
279 {
280         return rte_spinlock_trylock(&sa->lock);
281 }
282
283 static inline void
284 sfc_adapter_unlock(struct sfc_adapter *sa)
285 {
286         rte_spinlock_unlock(&sa->lock);
287 }
288
289 static inline void
290 sfc_adapter_lock_fini(__rte_unused struct sfc_adapter *sa)
291 {
292         /* Just for symmetry of the API */
293 }
294
295 /** Get the number of milliseconds since boot from the default timer */
296 static inline uint64_t
297 sfc_get_system_msecs(void)
298 {
299         return rte_get_timer_cycles() * MS_PER_S / rte_get_timer_hz();
300 }
301
302 int sfc_dma_alloc(const struct sfc_adapter *sa, const char *name, uint16_t id,
303                   size_t len, int socket_id, efsys_mem_t *esmp);
304 void sfc_dma_free(const struct sfc_adapter *sa, efsys_mem_t *esmp);
305
306 uint32_t sfc_register_logtype(struct sfc_adapter *sa,
307                               const char *lt_prefix_str,
308                               uint32_t ll_default);
309
310 int sfc_probe(struct sfc_adapter *sa);
311 void sfc_unprobe(struct sfc_adapter *sa);
312 int sfc_attach(struct sfc_adapter *sa);
313 void sfc_detach(struct sfc_adapter *sa);
314 int sfc_start(struct sfc_adapter *sa);
315 void sfc_stop(struct sfc_adapter *sa);
316
317 void sfc_schedule_restart(struct sfc_adapter *sa);
318
319 int sfc_mcdi_init(struct sfc_adapter *sa);
320 void sfc_mcdi_fini(struct sfc_adapter *sa);
321
322 int sfc_configure(struct sfc_adapter *sa);
323 void sfc_close(struct sfc_adapter *sa);
324
325 int sfc_intr_attach(struct sfc_adapter *sa);
326 void sfc_intr_detach(struct sfc_adapter *sa);
327 int sfc_intr_configure(struct sfc_adapter *sa);
328 void sfc_intr_close(struct sfc_adapter *sa);
329 int sfc_intr_start(struct sfc_adapter *sa);
330 void sfc_intr_stop(struct sfc_adapter *sa);
331
332 int sfc_port_attach(struct sfc_adapter *sa);
333 void sfc_port_detach(struct sfc_adapter *sa);
334 int sfc_port_configure(struct sfc_adapter *sa);
335 void sfc_port_close(struct sfc_adapter *sa);
336 int sfc_port_start(struct sfc_adapter *sa);
337 void sfc_port_stop(struct sfc_adapter *sa);
338 void sfc_port_link_mode_to_info(efx_link_mode_t link_mode,
339                                 struct rte_eth_link *link_info);
340 int sfc_port_update_mac_stats(struct sfc_adapter *sa);
341 int sfc_port_reset_mac_stats(struct sfc_adapter *sa);
342 int sfc_set_rx_mode(struct sfc_adapter *sa);
343
344
345 #ifdef __cplusplus
346 }
347 #endif
348
349 #endif  /* _SFC_H */