WIP FPC-III support
[linux/fpc-iii.git] / drivers / net / ethernet / netronome / nfp / nfp_app.h
blob76d13af46a7a313d75d6e2b15ae1dbe57bf8b171
1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
2 /* Copyright (C) 2017-2018 Netronome Systems, Inc. */
4 #ifndef _NFP_APP_H
5 #define _NFP_APP_H 1
7 #include <net/devlink.h>
9 #include <trace/events/devlink.h>
11 #include "nfp_net_repr.h"
13 #define NFP_APP_CTRL_MTU_MAX U32_MAX
15 struct bpf_prog;
16 struct net_device;
17 struct netdev_bpf;
18 struct netlink_ext_ack;
19 struct pci_dev;
20 struct sk_buff;
21 struct sk_buff;
22 struct nfp_app;
23 struct nfp_cpp;
24 struct nfp_pf;
25 struct nfp_repr;
26 struct nfp_net;
28 enum nfp_app_id {
29 NFP_APP_CORE_NIC = 0x1,
30 NFP_APP_BPF_NIC = 0x2,
31 NFP_APP_FLOWER_NIC = 0x3,
32 NFP_APP_ACTIVE_BUFFER_MGMT_NIC = 0x4,
35 extern const struct nfp_app_type app_nic;
36 extern const struct nfp_app_type app_bpf;
37 extern const struct nfp_app_type app_flower;
38 extern const struct nfp_app_type app_abm;
40 /**
41 * struct nfp_app_type - application definition
42 * @id: application ID
43 * @name: application name
44 * @ctrl_cap_mask: ctrl vNIC capability mask, allows disabling features like
45 * IRQMOD which are on by default but counter-productive for
46 * control messages which are often latency-sensitive
47 * @ctrl_has_meta: control messages have prepend of type:5/port:CTRL
49 * Callbacks
50 * @init: perform basic app checks and init
51 * @clean: clean app state
52 * @extra_cap: extra capabilities string
53 * @ndo_init: vNIC and repr netdev .ndo_init
54 * @ndo_uninit: vNIC and repr netdev .ndo_unint
55 * @vnic_alloc: allocate vNICs (assign port types, etc.)
56 * @vnic_free: free up app's vNIC state
57 * @vnic_init: vNIC netdev was registered
58 * @vnic_clean: vNIC netdev about to be unregistered
59 * @repr_init: representor about to be registered
60 * @repr_preclean: representor about to unregistered, executed before app
61 * reference to the it is removed
62 * @repr_clean: representor about to be unregistered
63 * @repr_open: representor netdev open callback
64 * @repr_stop: representor netdev stop callback
65 * @check_mtu: MTU change request on a netdev (verify it is valid)
66 * @repr_change_mtu: MTU change request on repr (make and verify change)
67 * @port_get_stats: get extra ethtool statistics for a port
68 * @port_get_stats_count: get count of extra statistics for a port
69 * @port_get_stats_strings: get strings for extra statistics
70 * @start: start application logic
71 * @stop: stop application logic
72 * @netdev_event: Netdevice notifier event
73 * @ctrl_msg_rx: control message handler
74 * @ctrl_msg_rx_raw: handler for control messages from data queues
75 * @setup_tc: setup TC ndo
76 * @bpf: BPF ndo offload-related calls
77 * @xdp_offload: offload an XDP program
78 * @eswitch_mode_get: get SR-IOV eswitch mode
79 * @eswitch_mode_set: set SR-IOV eswitch mode (under pf->lock)
80 * @sriov_enable: app-specific sriov initialisation
81 * @sriov_disable: app-specific sriov clean-up
82 * @dev_get: get representor or internal port representing netdev
84 struct nfp_app_type {
85 enum nfp_app_id id;
86 const char *name;
88 u32 ctrl_cap_mask;
89 bool ctrl_has_meta;
91 int (*init)(struct nfp_app *app);
92 void (*clean)(struct nfp_app *app);
94 const char *(*extra_cap)(struct nfp_app *app, struct nfp_net *nn);
96 int (*ndo_init)(struct nfp_app *app, struct net_device *netdev);
97 void (*ndo_uninit)(struct nfp_app *app, struct net_device *netdev);
99 int (*vnic_alloc)(struct nfp_app *app, struct nfp_net *nn,
100 unsigned int id);
101 void (*vnic_free)(struct nfp_app *app, struct nfp_net *nn);
102 int (*vnic_init)(struct nfp_app *app, struct nfp_net *nn);
103 void (*vnic_clean)(struct nfp_app *app, struct nfp_net *nn);
105 int (*repr_init)(struct nfp_app *app, struct net_device *netdev);
106 void (*repr_preclean)(struct nfp_app *app, struct net_device *netdev);
107 void (*repr_clean)(struct nfp_app *app, struct net_device *netdev);
109 int (*repr_open)(struct nfp_app *app, struct nfp_repr *repr);
110 int (*repr_stop)(struct nfp_app *app, struct nfp_repr *repr);
112 int (*check_mtu)(struct nfp_app *app, struct net_device *netdev,
113 int new_mtu);
114 int (*repr_change_mtu)(struct nfp_app *app, struct net_device *netdev,
115 int new_mtu);
117 u64 *(*port_get_stats)(struct nfp_app *app,
118 struct nfp_port *port, u64 *data);
119 int (*port_get_stats_count)(struct nfp_app *app, struct nfp_port *port);
120 u8 *(*port_get_stats_strings)(struct nfp_app *app,
121 struct nfp_port *port, u8 *data);
123 int (*start)(struct nfp_app *app);
124 void (*stop)(struct nfp_app *app);
126 int (*netdev_event)(struct nfp_app *app, struct net_device *netdev,
127 unsigned long event, void *ptr);
129 void (*ctrl_msg_rx)(struct nfp_app *app, struct sk_buff *skb);
130 void (*ctrl_msg_rx_raw)(struct nfp_app *app, const void *data,
131 unsigned int len);
133 int (*setup_tc)(struct nfp_app *app, struct net_device *netdev,
134 enum tc_setup_type type, void *type_data);
135 int (*bpf)(struct nfp_app *app, struct nfp_net *nn,
136 struct netdev_bpf *xdp);
137 int (*xdp_offload)(struct nfp_app *app, struct nfp_net *nn,
138 struct bpf_prog *prog,
139 struct netlink_ext_ack *extack);
141 int (*sriov_enable)(struct nfp_app *app, int num_vfs);
142 void (*sriov_disable)(struct nfp_app *app);
144 enum devlink_eswitch_mode (*eswitch_mode_get)(struct nfp_app *app);
145 int (*eswitch_mode_set)(struct nfp_app *app, u16 mode);
146 struct net_device *(*dev_get)(struct nfp_app *app, u32 id,
147 bool *redir_egress);
151 * struct nfp_app - NFP application container
152 * @pdev: backpointer to PCI device
153 * @pf: backpointer to NFP PF structure
154 * @cpp: pointer to the CPP handle
155 * @ctrl: pointer to ctrl vNIC struct
156 * @reprs: array of pointers to representors
157 * @type: pointer to const application ops and info
158 * @ctrl_mtu: MTU to set on the control vNIC (set in .init())
159 * @netdev_nb: Netdevice notifier block
160 * @priv: app-specific priv data
162 struct nfp_app {
163 struct pci_dev *pdev;
164 struct nfp_pf *pf;
165 struct nfp_cpp *cpp;
167 struct nfp_net *ctrl;
168 struct nfp_reprs __rcu *reprs[NFP_REPR_TYPE_MAX + 1];
170 const struct nfp_app_type *type;
171 unsigned int ctrl_mtu;
173 struct notifier_block netdev_nb;
175 void *priv;
178 void nfp_check_rhashtable_empty(void *ptr, void *arg);
179 bool __nfp_ctrl_tx(struct nfp_net *nn, struct sk_buff *skb);
180 bool nfp_ctrl_tx(struct nfp_net *nn, struct sk_buff *skb);
182 static inline int nfp_app_init(struct nfp_app *app)
184 if (!app->type->init)
185 return 0;
186 return app->type->init(app);
189 static inline void nfp_app_clean(struct nfp_app *app)
191 if (app->type->clean)
192 app->type->clean(app);
195 int nfp_app_ndo_init(struct net_device *netdev);
196 void nfp_app_ndo_uninit(struct net_device *netdev);
198 static inline int nfp_app_vnic_alloc(struct nfp_app *app, struct nfp_net *nn,
199 unsigned int id)
201 return app->type->vnic_alloc(app, nn, id);
204 static inline void nfp_app_vnic_free(struct nfp_app *app, struct nfp_net *nn)
206 if (app->type->vnic_free)
207 app->type->vnic_free(app, nn);
210 static inline int nfp_app_vnic_init(struct nfp_app *app, struct nfp_net *nn)
212 if (!app->type->vnic_init)
213 return 0;
214 return app->type->vnic_init(app, nn);
217 static inline void nfp_app_vnic_clean(struct nfp_app *app, struct nfp_net *nn)
219 if (app->type->vnic_clean)
220 app->type->vnic_clean(app, nn);
223 static inline int nfp_app_repr_open(struct nfp_app *app, struct nfp_repr *repr)
225 if (!app->type->repr_open)
226 return -EINVAL;
227 return app->type->repr_open(app, repr);
230 static inline int nfp_app_repr_stop(struct nfp_app *app, struct nfp_repr *repr)
232 if (!app->type->repr_stop)
233 return -EINVAL;
234 return app->type->repr_stop(app, repr);
237 static inline int
238 nfp_app_repr_init(struct nfp_app *app, struct net_device *netdev)
240 if (!app->type->repr_init)
241 return 0;
242 return app->type->repr_init(app, netdev);
245 static inline void
246 nfp_app_repr_preclean(struct nfp_app *app, struct net_device *netdev)
248 if (app->type->repr_preclean)
249 app->type->repr_preclean(app, netdev);
252 static inline void
253 nfp_app_repr_clean(struct nfp_app *app, struct net_device *netdev)
255 if (app->type->repr_clean)
256 app->type->repr_clean(app, netdev);
259 static inline int
260 nfp_app_check_mtu(struct nfp_app *app, struct net_device *netdev, int new_mtu)
262 if (!app || !app->type->check_mtu)
263 return 0;
264 return app->type->check_mtu(app, netdev, new_mtu);
267 static inline int
268 nfp_app_repr_change_mtu(struct nfp_app *app, struct net_device *netdev,
269 int new_mtu)
271 if (!app || !app->type->repr_change_mtu)
272 return 0;
273 return app->type->repr_change_mtu(app, netdev, new_mtu);
276 static inline const char *nfp_app_name(struct nfp_app *app)
278 if (!app)
279 return "";
280 return app->type->name;
283 static inline bool nfp_app_needs_ctrl_vnic(struct nfp_app *app)
285 return app && app->type->ctrl_msg_rx;
288 static inline bool nfp_app_ctrl_has_meta(struct nfp_app *app)
290 return app->type->ctrl_has_meta;
293 static inline bool nfp_app_ctrl_uses_data_vnics(struct nfp_app *app)
295 return app && app->type->ctrl_msg_rx_raw;
298 static inline const char *nfp_app_extra_cap(struct nfp_app *app,
299 struct nfp_net *nn)
301 if (!app || !app->type->extra_cap)
302 return "";
303 return app->type->extra_cap(app, nn);
306 static inline bool nfp_app_has_tc(struct nfp_app *app)
308 return app && app->type->setup_tc;
311 static inline int nfp_app_setup_tc(struct nfp_app *app,
312 struct net_device *netdev,
313 enum tc_setup_type type, void *type_data)
315 if (!app || !app->type->setup_tc)
316 return -EOPNOTSUPP;
317 return app->type->setup_tc(app, netdev, type, type_data);
320 static inline int nfp_app_bpf(struct nfp_app *app, struct nfp_net *nn,
321 struct netdev_bpf *bpf)
323 if (!app || !app->type->bpf)
324 return -EINVAL;
325 return app->type->bpf(app, nn, bpf);
328 static inline int nfp_app_xdp_offload(struct nfp_app *app, struct nfp_net *nn,
329 struct bpf_prog *prog,
330 struct netlink_ext_ack *extack)
332 if (!app || !app->type->xdp_offload)
333 return -EOPNOTSUPP;
334 return app->type->xdp_offload(app, nn, prog, extack);
337 static inline bool __nfp_app_ctrl_tx(struct nfp_app *app, struct sk_buff *skb)
339 trace_devlink_hwmsg(priv_to_devlink(app->pf), false, 0,
340 skb->data, skb->len);
342 return __nfp_ctrl_tx(app->ctrl, skb);
345 static inline bool nfp_app_ctrl_tx(struct nfp_app *app, struct sk_buff *skb)
347 trace_devlink_hwmsg(priv_to_devlink(app->pf), false, 0,
348 skb->data, skb->len);
350 return nfp_ctrl_tx(app->ctrl, skb);
353 static inline void nfp_app_ctrl_rx(struct nfp_app *app, struct sk_buff *skb)
355 trace_devlink_hwmsg(priv_to_devlink(app->pf), true, 0,
356 skb->data, skb->len);
358 app->type->ctrl_msg_rx(app, skb);
361 static inline void
362 nfp_app_ctrl_rx_raw(struct nfp_app *app, const void *data, unsigned int len)
364 if (!app || !app->type->ctrl_msg_rx_raw)
365 return;
367 trace_devlink_hwmsg(priv_to_devlink(app->pf), true, 0, data, len);
368 app->type->ctrl_msg_rx_raw(app, data, len);
371 static inline int nfp_app_eswitch_mode_get(struct nfp_app *app, u16 *mode)
373 if (!app->type->eswitch_mode_get)
374 return -EOPNOTSUPP;
376 *mode = app->type->eswitch_mode_get(app);
378 return 0;
381 static inline int nfp_app_eswitch_mode_set(struct nfp_app *app, u16 mode)
383 if (!app->type->eswitch_mode_set)
384 return -EOPNOTSUPP;
385 return app->type->eswitch_mode_set(app, mode);
388 static inline int nfp_app_sriov_enable(struct nfp_app *app, int num_vfs)
390 if (!app || !app->type->sriov_enable)
391 return -EOPNOTSUPP;
392 return app->type->sriov_enable(app, num_vfs);
395 static inline void nfp_app_sriov_disable(struct nfp_app *app)
397 if (app && app->type->sriov_disable)
398 app->type->sriov_disable(app);
401 static inline
402 struct net_device *nfp_app_dev_get(struct nfp_app *app, u32 id,
403 bool *redir_egress)
405 if (unlikely(!app || !app->type->dev_get))
406 return NULL;
408 return app->type->dev_get(app, id, redir_egress);
411 struct nfp_app *nfp_app_from_netdev(struct net_device *netdev);
413 u64 *nfp_app_port_get_stats(struct nfp_port *port, u64 *data);
414 int nfp_app_port_get_stats_count(struct nfp_port *port);
415 u8 *nfp_app_port_get_stats_strings(struct nfp_port *port, u8 *data);
417 struct nfp_reprs *
418 nfp_reprs_get_locked(struct nfp_app *app, enum nfp_repr_type type);
419 struct nfp_reprs *
420 nfp_app_reprs_set(struct nfp_app *app, enum nfp_repr_type type,
421 struct nfp_reprs *reprs);
423 const char *nfp_app_mip_name(struct nfp_app *app);
424 struct sk_buff *
425 nfp_app_ctrl_msg_alloc(struct nfp_app *app, unsigned int size, gfp_t priority);
427 struct nfp_app *nfp_app_alloc(struct nfp_pf *pf, enum nfp_app_id id);
428 void nfp_app_free(struct nfp_app *app);
429 int nfp_app_start(struct nfp_app *app, struct nfp_net *ctrl);
430 void nfp_app_stop(struct nfp_app *app);
432 /* Callbacks shared between apps */
434 int nfp_app_nic_vnic_alloc(struct nfp_app *app, struct nfp_net *nn,
435 unsigned int id);
436 int nfp_app_nic_vnic_init_phy_port(struct nfp_pf *pf, struct nfp_app *app,
437 struct nfp_net *nn, unsigned int id);
439 struct devlink_port *nfp_devlink_get_devlink_port(struct net_device *netdev);
441 #endif