net/sfc: separate adapter primary process and shared data
[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 /*
31  * +---------------+
32  * | UNINITIALIZED |<-----------+
33  * +---------------+            |
34  *      |.eth_dev_init          |.eth_dev_uninit
35  *      V                       |
36  * +---------------+------------+
37  * |  INITIALIZED  |
38  * +---------------+<-----------<---------------+
39  *      |.dev_configure         |               |
40  *      V                       |failed         |
41  * +---------------+------------+               |
42  * |  CONFIGURING  |                            |
43  * +---------------+----+                       |
44  *      |success        |                       |
45  *      |               |               +---------------+
46  *      |               |               |    CLOSING    |
47  *      |               |               +---------------+
48  *      |               |                       ^
49  *      V               |.dev_configure         |
50  * +---------------+----+                       |.dev_close
51  * |  CONFIGURED   |----------------------------+
52  * +---------------+<-----------+
53  *      |.dev_start             |
54  *      V                       |
55  * +---------------+            |
56  * |   STARTING    |------------^
57  * +---------------+ failed     |
58  *      |success                |
59  *      |               +---------------+
60  *      |               |   STOPPING    |
61  *      |               +---------------+
62  *      |                       ^
63  *      V                       |.dev_stop
64  * +---------------+------------+
65  * |    STARTED    |
66  * +---------------+
67  */
68 enum sfc_adapter_state {
69         SFC_ADAPTER_UNINITIALIZED = 0,
70         SFC_ADAPTER_INITIALIZED,
71         SFC_ADAPTER_CONFIGURING,
72         SFC_ADAPTER_CONFIGURED,
73         SFC_ADAPTER_CLOSING,
74         SFC_ADAPTER_STARTING,
75         SFC_ADAPTER_STARTED,
76         SFC_ADAPTER_STOPPING,
77
78         SFC_ADAPTER_NSTATES
79 };
80
81 enum sfc_dev_filter_mode {
82         SFC_DEV_FILTER_MODE_PROMISC = 0,
83         SFC_DEV_FILTER_MODE_ALLMULTI,
84
85         SFC_DEV_FILTER_NMODES
86 };
87
88 enum sfc_mcdi_state {
89         SFC_MCDI_UNINITIALIZED = 0,
90         SFC_MCDI_INITIALIZED,
91         SFC_MCDI_BUSY,
92         SFC_MCDI_COMPLETED,
93
94         SFC_MCDI_NSTATES
95 };
96
97 struct sfc_mcdi {
98         rte_spinlock_t                  lock;
99         efsys_mem_t                     mem;
100         enum sfc_mcdi_state             state;
101         efx_mcdi_transport_t            transport;
102         uint32_t                        logtype;
103         uint32_t                        proxy_handle;
104         efx_rc_t                        proxy_result;
105 };
106
107 struct sfc_intr {
108         efx_intr_type_t                 type;
109         rte_intr_callback_fn            handler;
110         boolean_t                       lsc_intr;
111 };
112
113 struct sfc_rxq;
114 struct sfc_txq;
115
116 struct sfc_rxq_info;
117 struct sfc_txq_info;
118 struct sfc_dp_rx;
119
120 struct sfc_port {
121         unsigned int                    lsc_seq;
122
123         uint32_t                        phy_adv_cap_mask;
124         uint32_t                        phy_adv_cap;
125
126         unsigned int                    flow_ctrl;
127         boolean_t                       flow_ctrl_autoneg;
128         size_t                          pdu;
129
130         /*
131          * Flow API isolated mode overrides promisc and allmulti settings;
132          * they won't be applied if isolated mode is active
133          */
134         boolean_t                       promisc;
135         boolean_t                       allmulti;
136
137         struct ether_addr               default_mac_addr;
138
139         unsigned int                    max_mcast_addrs;
140         unsigned int                    nb_mcast_addrs;
141         uint8_t                         *mcast_addrs;
142
143         rte_spinlock_t                  mac_stats_lock;
144         uint64_t                        *mac_stats_buf;
145         unsigned int                    mac_stats_nb_supported;
146         efsys_mem_t                     mac_stats_dma_mem;
147         boolean_t                       mac_stats_reset_pending;
148         uint16_t                        mac_stats_update_period_ms;
149         uint32_t                        mac_stats_update_generation;
150         boolean_t                       mac_stats_periodic_dma_supported;
151         uint64_t                        mac_stats_last_request_timestamp;
152
153         uint32_t                mac_stats_mask[EFX_MAC_STATS_MASK_NPAGES];
154
155         uint64_t                        ipackets;
156 };
157
158 struct sfc_rss_hf_rte_to_efx {
159         uint64_t                        rte;
160         efx_rx_hash_type_t              efx;
161 };
162
163 struct sfc_rss {
164         unsigned int                    channels;
165         efx_rx_scale_context_type_t     context_type;
166         efx_rx_hash_support_t           hash_support;
167         efx_rx_hash_alg_t               hash_alg;
168         unsigned int                    hf_map_nb_entries;
169         struct sfc_rss_hf_rte_to_efx    *hf_map;
170
171         efx_rx_hash_type_t              hash_types;
172         unsigned int                    tbl[EFX_RSS_TBL_SIZE];
173         uint8_t                         key[EFX_RSS_KEY_SIZE];
174 };
175
176 /* Adapter private data shared by primary and secondary processes */
177 struct sfc_adapter_shared {
178         unsigned int                    rxq_count;
179         struct sfc_rxq_info             *rxq_info;
180
181         unsigned int                    txq_count;
182         struct sfc_txq_info             *txq_info;
183
184         struct sfc_rss                  rss;
185
186         boolean_t                       isolated;
187
188         struct rte_pci_addr             pci_addr;
189         uint16_t                        port_id;
190
191         char                            *dp_rx_name;
192         char                            *dp_tx_name;
193 };
194
195 /* Adapter process private data */
196 struct sfc_adapter_priv {
197         struct sfc_adapter_shared       *shared;
198         const struct sfc_dp_rx          *dp_rx;
199         const struct sfc_dp_tx          *dp_tx;
200         uint32_t                        logtype_main;
201 };
202
203 static inline struct sfc_adapter_priv *
204 sfc_adapter_priv_by_eth_dev(struct rte_eth_dev *eth_dev)
205 {
206         struct sfc_adapter_priv *sap = eth_dev->process_private;
207
208         SFC_ASSERT(sap != NULL);
209         return sap;
210 }
211
212 /* Adapter private data */
213 struct sfc_adapter {
214         /*
215          * It must be the first field of the sfc_adapter structure since
216          * sfc_adapter is the primary process private data (i.e.  process
217          * private data plus additional primary process specific data).
218          */
219         struct sfc_adapter_priv         priv;
220
221         /*
222          * PMD setup and configuration is not thread safe. Since it is not
223          * performance sensitive, it is better to guarantee thread-safety
224          * and add device level lock. Adapter control operations which
225          * change its state should acquire the lock.
226          */
227         rte_spinlock_t                  lock;
228         enum sfc_adapter_state          state;
229         struct rte_eth_dev              *eth_dev;
230         struct rte_kvargs               *kvargs;
231         int                             socket_id;
232         efsys_bar_t                     mem_bar;
233         efx_family_t                    family;
234         efx_nic_t                       *nic;
235         rte_spinlock_t                  nic_lock;
236         rte_atomic32_t                  restart_required;
237
238         struct sfc_mcdi                 mcdi;
239         struct sfc_intr                 intr;
240         struct sfc_port                 port;
241         struct sfc_filter               filter;
242
243         unsigned int                    rxq_max;
244         unsigned int                    txq_max;
245
246         unsigned int                    txq_max_entries;
247
248         uint32_t                        evq_flags;
249         unsigned int                    evq_count;
250
251         unsigned int                    mgmt_evq_index;
252         /*
253          * The lock is used to serialise management event queue polling
254          * which can be done from different context. Also the lock
255          * guarantees that mgmt_evq_running is preserved while the lock
256          * is held. It is used to serialise polling and start/stop
257          * operations.
258          *
259          * Locks which may be held when the lock is acquired:
260          *  - adapter lock, when:
261          *    - device start/stop to change mgmt_evq_running
262          *    - any control operations in client side MCDI proxy handling to
263          *      poll management event queue waiting for proxy response
264          *  - MCDI lock, when:
265          *    - any control operations in client side MCDI proxy handling to
266          *      poll management event queue waiting for proxy response
267          *
268          * Locks which are acquired with the lock held:
269          *  - nic_lock, when:
270          *    - MC event processing on management event queue polling
271          *      (e.g. MC REBOOT or BADASSERT events)
272          */
273         rte_spinlock_t                  mgmt_evq_lock;
274         bool                            mgmt_evq_running;
275         struct sfc_evq                  *mgmt_evq;
276
277         struct sfc_rxq                  *rxq_ctrl;
278         struct sfc_txq                  *txq_ctrl;
279
280         boolean_t                       tso;
281
282         uint32_t                        rxd_wait_timeout_ns;
283 };
284
285 static inline struct sfc_adapter_shared *
286 sfc_adapter_shared_by_eth_dev(struct rte_eth_dev *eth_dev)
287 {
288         struct sfc_adapter_shared *sas = eth_dev->data->dev_private;
289
290         return sas;
291 }
292
293 static inline struct sfc_adapter *
294 sfc_adapter_by_eth_dev(struct rte_eth_dev *eth_dev)
295 {
296         struct sfc_adapter_priv *sap = sfc_adapter_priv_by_eth_dev(eth_dev);
297
298         SFC_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY);
299
300         return container_of(sap, struct sfc_adapter, priv);
301 }
302
303 static inline struct sfc_adapter_shared *
304 sfc_sa2shared(struct sfc_adapter *sa)
305 {
306         return sa->priv.shared;
307 }
308
309 /*
310  * Add wrapper functions to acquire/release lock to be able to remove or
311  * change the lock in one place.
312  */
313
314 static inline void
315 sfc_adapter_lock_init(struct sfc_adapter *sa)
316 {
317         rte_spinlock_init(&sa->lock);
318 }
319
320 static inline int
321 sfc_adapter_is_locked(struct sfc_adapter *sa)
322 {
323         return rte_spinlock_is_locked(&sa->lock);
324 }
325
326 static inline void
327 sfc_adapter_lock(struct sfc_adapter *sa)
328 {
329         rte_spinlock_lock(&sa->lock);
330 }
331
332 static inline int
333 sfc_adapter_trylock(struct sfc_adapter *sa)
334 {
335         return rte_spinlock_trylock(&sa->lock);
336 }
337
338 static inline void
339 sfc_adapter_unlock(struct sfc_adapter *sa)
340 {
341         rte_spinlock_unlock(&sa->lock);
342 }
343
344 static inline void
345 sfc_adapter_lock_fini(__rte_unused struct sfc_adapter *sa)
346 {
347         /* Just for symmetry of the API */
348 }
349
350 /** Get the number of milliseconds since boot from the default timer */
351 static inline uint64_t
352 sfc_get_system_msecs(void)
353 {
354         return rte_get_timer_cycles() * MS_PER_S / rte_get_timer_hz();
355 }
356
357 int sfc_dma_alloc(const struct sfc_adapter *sa, const char *name, uint16_t id,
358                   size_t len, int socket_id, efsys_mem_t *esmp);
359 void sfc_dma_free(const struct sfc_adapter *sa, efsys_mem_t *esmp);
360
361 uint32_t sfc_register_logtype(const struct rte_pci_addr *pci_addr,
362                               const char *lt_prefix_str,
363                               uint32_t ll_default);
364
365 int sfc_probe(struct sfc_adapter *sa);
366 void sfc_unprobe(struct sfc_adapter *sa);
367 int sfc_attach(struct sfc_adapter *sa);
368 void sfc_detach(struct sfc_adapter *sa);
369 int sfc_start(struct sfc_adapter *sa);
370 void sfc_stop(struct sfc_adapter *sa);
371
372 void sfc_schedule_restart(struct sfc_adapter *sa);
373
374 int sfc_mcdi_init(struct sfc_adapter *sa);
375 void sfc_mcdi_fini(struct sfc_adapter *sa);
376
377 int sfc_configure(struct sfc_adapter *sa);
378 void sfc_close(struct sfc_adapter *sa);
379
380 int sfc_intr_attach(struct sfc_adapter *sa);
381 void sfc_intr_detach(struct sfc_adapter *sa);
382 int sfc_intr_configure(struct sfc_adapter *sa);
383 void sfc_intr_close(struct sfc_adapter *sa);
384 int sfc_intr_start(struct sfc_adapter *sa);
385 void sfc_intr_stop(struct sfc_adapter *sa);
386
387 int sfc_port_attach(struct sfc_adapter *sa);
388 void sfc_port_detach(struct sfc_adapter *sa);
389 int sfc_port_configure(struct sfc_adapter *sa);
390 void sfc_port_close(struct sfc_adapter *sa);
391 int sfc_port_start(struct sfc_adapter *sa);
392 void sfc_port_stop(struct sfc_adapter *sa);
393 void sfc_port_link_mode_to_info(efx_link_mode_t link_mode,
394                                 struct rte_eth_link *link_info);
395 int sfc_port_update_mac_stats(struct sfc_adapter *sa);
396 int sfc_port_reset_mac_stats(struct sfc_adapter *sa);
397 int sfc_set_rx_mode(struct sfc_adapter *sa);
398
399
400 #ifdef __cplusplus
401 }
402 #endif
403
404 #endif  /* _SFC_H */