c155bc44c3fd1165f87e30396fa13e87bc408e14
[dpdk.git] / drivers / net / sfc / sfc.h
1 /*-
2  * Copyright (c) 2016 Solarflare Communications Inc.
3  * All rights reserved.
4  *
5  * This software was jointly developed between OKTET Labs (under contract
6  * for Solarflare) and Solarflare Communications, Inc.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright notice,
12  *    this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright notice,
14  *    this list of conditions and the following disclaimer in the documentation
15  *    and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
19  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
21  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
24  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
27  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #ifndef _SFC_H
31 #define _SFC_H
32
33 #include <stdbool.h>
34
35 #include <rte_ethdev.h>
36 #include <rte_kvargs.h>
37 #include <rte_spinlock.h>
38
39 #include "efx.h"
40
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44
45 #define SFC_DEV_TO_PCI(eth_dev) \
46         RTE_DEV_TO_PCI((eth_dev)->device)
47
48 /*
49  * +---------------+
50  * | UNINITIALIZED |<-----------+
51  * +---------------+            |
52  *      |.eth_dev_init          |.eth_dev_uninit
53  *      V                       |
54  * +---------------+------------+
55  * |  INITIALIZED  |
56  * +---------------+<-----------+
57  *      |.dev_configure         |
58  *      V                       |
59  * +---------------+            |
60  * |  CONFIGURING  |------------^
61  * +---------------+ failed     |
62  *      |success                |
63  *      |               +---------------+
64  *      |               |    CLOSING    |
65  *      |               +---------------+
66  *      |                       ^
67  *      V                       |.dev_close
68  * +---------------+------------+
69  * |  CONFIGURED   |
70  * +---------------+<-----------+
71  *      |.dev_start             |
72  *      V                       |
73  * +---------------+            |
74  * |   STARTING    |------------^
75  * +---------------+ failed     |
76  *      |success                |
77  *      |               +---------------+
78  *      |               |   STOPPING    |
79  *      |               +---------------+
80  *      |                       ^
81  *      V                       |.dev_stop
82  * +---------------+------------+
83  * |    STARTED    |
84  * +---------------+
85  */
86 enum sfc_adapter_state {
87         SFC_ADAPTER_UNINITIALIZED = 0,
88         SFC_ADAPTER_INITIALIZED,
89         SFC_ADAPTER_CONFIGURING,
90         SFC_ADAPTER_CONFIGURED,
91         SFC_ADAPTER_CLOSING,
92         SFC_ADAPTER_STARTING,
93         SFC_ADAPTER_STARTED,
94         SFC_ADAPTER_STOPPING,
95
96         SFC_ADAPTER_NSTATES
97 };
98
99 enum sfc_mcdi_state {
100         SFC_MCDI_UNINITIALIZED = 0,
101         SFC_MCDI_INITIALIZED,
102         SFC_MCDI_BUSY,
103         SFC_MCDI_COMPLETED,
104
105         SFC_MCDI_NSTATES
106 };
107
108 struct sfc_mcdi {
109         rte_spinlock_t                  lock;
110         efsys_mem_t                     mem;
111         enum sfc_mcdi_state             state;
112         efx_mcdi_transport_t            transport;
113         bool                            logging;
114 };
115
116 struct sfc_intr {
117         efx_intr_type_t                 type;
118         rte_intr_callback_fn            handler;
119         boolean_t                       lsc_intr;
120 };
121
122 struct sfc_evq_info;
123 struct sfc_rxq_info;
124 struct sfc_txq_info;
125
126 struct sfc_port {
127         unsigned int                    lsc_seq;
128
129         uint32_t                        phy_adv_cap_mask;
130         uint32_t                        phy_adv_cap;
131
132         unsigned int                    flow_ctrl;
133         boolean_t                       flow_ctrl_autoneg;
134         size_t                          pdu;
135
136         rte_spinlock_t                  mac_stats_lock;
137         uint64_t                        *mac_stats_buf;
138         efsys_mem_t                     mac_stats_dma_mem;
139
140         uint32_t                mac_stats_mask[EFX_MAC_STATS_MASK_NPAGES];
141 };
142
143 /* Adapter private data */
144 struct sfc_adapter {
145         /*
146          * PMD setup and configuration is not thread safe. Since it is not
147          * performance sensitive, it is better to guarantee thread-safety
148          * and add device level lock. Adapter control operations which
149          * change its state should acquire the lock.
150          */
151         rte_spinlock_t                  lock;
152         enum sfc_adapter_state          state;
153         struct rte_eth_dev              *eth_dev;
154         struct rte_kvargs               *kvargs;
155         bool                            debug_init;
156         int                             socket_id;
157         efsys_bar_t                     mem_bar;
158         efx_family_t                    family;
159         efx_nic_t                       *nic;
160         rte_spinlock_t                  nic_lock;
161
162         struct sfc_mcdi                 mcdi;
163         struct sfc_intr                 intr;
164         struct sfc_port                 port;
165
166         unsigned int                    rxq_max;
167         unsigned int                    txq_max;
168
169         unsigned int                    txq_max_entries;
170
171         uint32_t                        evq_flags;
172         unsigned int                    evq_count;
173         struct sfc_evq_info             *evq_info;
174
175         unsigned int                    mgmt_evq_index;
176         rte_spinlock_t                  mgmt_evq_lock;
177
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
185 /*
186  * Add wrapper functions to acquire/release lock to be able to remove or
187  * change the lock in one place.
188  */
189
190 static inline void
191 sfc_adapter_lock_init(struct sfc_adapter *sa)
192 {
193         rte_spinlock_init(&sa->lock);
194 }
195
196 static inline int
197 sfc_adapter_is_locked(struct sfc_adapter *sa)
198 {
199         return rte_spinlock_is_locked(&sa->lock);
200 }
201
202 static inline void
203 sfc_adapter_lock(struct sfc_adapter *sa)
204 {
205         rte_spinlock_lock(&sa->lock);
206 }
207
208 static inline int
209 sfc_adapter_trylock(struct sfc_adapter *sa)
210 {
211         return rte_spinlock_trylock(&sa->lock);
212 }
213
214 static inline void
215 sfc_adapter_unlock(struct sfc_adapter *sa)
216 {
217         rte_spinlock_unlock(&sa->lock);
218 }
219
220 static inline void
221 sfc_adapter_lock_fini(__rte_unused struct sfc_adapter *sa)
222 {
223         /* Just for symmetry of the API */
224 }
225
226 int sfc_dma_alloc(const struct sfc_adapter *sa, const char *name, uint16_t id,
227                   size_t len, int socket_id, efsys_mem_t *esmp);
228 void sfc_dma_free(const struct sfc_adapter *sa, efsys_mem_t *esmp);
229
230 int sfc_attach(struct sfc_adapter *sa);
231 void sfc_detach(struct sfc_adapter *sa);
232 int sfc_start(struct sfc_adapter *sa);
233 void sfc_stop(struct sfc_adapter *sa);
234
235 int sfc_mcdi_init(struct sfc_adapter *sa);
236 void sfc_mcdi_fini(struct sfc_adapter *sa);
237
238 int sfc_configure(struct sfc_adapter *sa);
239 void sfc_close(struct sfc_adapter *sa);
240
241 int sfc_intr_attach(struct sfc_adapter *sa);
242 void sfc_intr_detach(struct sfc_adapter *sa);
243 int sfc_intr_init(struct sfc_adapter *sa);
244 void sfc_intr_fini(struct sfc_adapter *sa);
245 int sfc_intr_start(struct sfc_adapter *sa);
246 void sfc_intr_stop(struct sfc_adapter *sa);
247
248 int sfc_port_init(struct sfc_adapter *sa);
249 void sfc_port_fini(struct sfc_adapter *sa);
250 int sfc_port_start(struct sfc_adapter *sa);
251 void sfc_port_stop(struct sfc_adapter *sa);
252 void sfc_port_link_mode_to_info(efx_link_mode_t link_mode,
253                                 struct rte_eth_link *link_info);
254 int sfc_port_update_mac_stats(struct sfc_adapter *sa);
255
256
257 #ifdef __cplusplus
258 }
259 #endif
260
261 #endif  /* _SFC_H */