xref: /openbmc/linux/include/net/devlink.h (revision 50dc9a85)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * include/net/devlink.h - Network physical device Netlink interface
4  * Copyright (c) 2016 Mellanox Technologies. All rights reserved.
5  * Copyright (c) 2016 Jiri Pirko <jiri@mellanox.com>
6  */
7 #ifndef _NET_DEVLINK_H_
8 #define _NET_DEVLINK_H_
9 
10 #include <linux/device.h>
11 #include <linux/slab.h>
12 #include <linux/gfp.h>
13 #include <linux/list.h>
14 #include <linux/netdevice.h>
15 #include <linux/spinlock.h>
16 #include <linux/workqueue.h>
17 #include <linux/refcount.h>
18 #include <net/net_namespace.h>
19 #include <net/flow_offload.h>
20 #include <uapi/linux/devlink.h>
21 #include <linux/xarray.h>
22 #include <linux/firmware.h>
23 
24 struct devlink;
25 
26 struct devlink_port_phys_attrs {
27 	u32 port_number; /* Same value as "split group".
28 			  * A physical port which is visible to the user
29 			  * for a given port flavour.
30 			  */
31 	u32 split_subport_number; /* If the port is split, this is the number of subport. */
32 };
33 
34 /**
35  * struct devlink_port_pci_pf_attrs - devlink port's PCI PF attributes
36  * @controller: Associated controller number
37  * @pf: Associated PCI PF number for this port.
38  * @external: when set, indicates if a port is for an external controller
39  */
40 struct devlink_port_pci_pf_attrs {
41 	u32 controller;
42 	u16 pf;
43 	u8 external:1;
44 };
45 
46 /**
47  * struct devlink_port_pci_vf_attrs - devlink port's PCI VF attributes
48  * @controller: Associated controller number
49  * @pf: Associated PCI PF number for this port.
50  * @vf: Associated PCI VF for of the PCI PF for this port.
51  * @external: when set, indicates if a port is for an external controller
52  */
53 struct devlink_port_pci_vf_attrs {
54 	u32 controller;
55 	u16 pf;
56 	u16 vf;
57 	u8 external:1;
58 };
59 
60 /**
61  * struct devlink_port_pci_sf_attrs - devlink port's PCI SF attributes
62  * @controller: Associated controller number
63  * @sf: Associated PCI SF for of the PCI PF for this port.
64  * @pf: Associated PCI PF number for this port.
65  * @external: when set, indicates if a port is for an external controller
66  */
67 struct devlink_port_pci_sf_attrs {
68 	u32 controller;
69 	u32 sf;
70 	u16 pf;
71 	u8 external:1;
72 };
73 
74 /**
75  * struct devlink_port_attrs - devlink port object
76  * @flavour: flavour of the port
77  * @split: indicates if this is split port
78  * @splittable: indicates if the port can be split.
79  * @lanes: maximum number of lanes the port supports. 0 value is not passed to netlink.
80  * @switch_id: if the port is part of switch, this is buffer with ID, otherwise this is NULL
81  * @phys: physical port attributes
82  * @pci_pf: PCI PF port attributes
83  * @pci_vf: PCI VF port attributes
84  * @pci_sf: PCI SF port attributes
85  */
86 struct devlink_port_attrs {
87 	u8 split:1,
88 	   splittable:1;
89 	u32 lanes;
90 	enum devlink_port_flavour flavour;
91 	struct netdev_phys_item_id switch_id;
92 	union {
93 		struct devlink_port_phys_attrs phys;
94 		struct devlink_port_pci_pf_attrs pci_pf;
95 		struct devlink_port_pci_vf_attrs pci_vf;
96 		struct devlink_port_pci_sf_attrs pci_sf;
97 	};
98 };
99 
100 struct devlink_rate {
101 	struct list_head list;
102 	enum devlink_rate_type type;
103 	struct devlink *devlink;
104 	void *priv;
105 	u64 tx_share;
106 	u64 tx_max;
107 
108 	struct devlink_rate *parent;
109 	union {
110 		struct devlink_port *devlink_port;
111 		struct {
112 			char *name;
113 			refcount_t refcnt;
114 		};
115 	};
116 };
117 
118 struct devlink_port {
119 	struct list_head list;
120 	struct list_head param_list;
121 	struct list_head region_list;
122 	struct devlink *devlink;
123 	unsigned int index;
124 	spinlock_t type_lock; /* Protects type and type_dev
125 			       * pointer consistency.
126 			       */
127 	enum devlink_port_type type;
128 	enum devlink_port_type desired_type;
129 	void *type_dev;
130 	struct devlink_port_attrs attrs;
131 	u8 attrs_set:1,
132 	   switch_port:1;
133 	struct delayed_work type_warn_dw;
134 	struct list_head reporter_list;
135 	struct mutex reporters_lock; /* Protects reporter_list */
136 
137 	struct devlink_rate *devlink_rate;
138 };
139 
140 struct devlink_port_new_attrs {
141 	enum devlink_port_flavour flavour;
142 	unsigned int port_index;
143 	u32 controller;
144 	u32 sfnum;
145 	u16 pfnum;
146 	u8 port_index_valid:1,
147 	   controller_valid:1,
148 	   sfnum_valid:1;
149 };
150 
151 struct devlink_sb_pool_info {
152 	enum devlink_sb_pool_type pool_type;
153 	u32 size;
154 	enum devlink_sb_threshold_type threshold_type;
155 	u32 cell_size;
156 };
157 
158 /**
159  * struct devlink_dpipe_field - dpipe field object
160  * @name: field name
161  * @id: index inside the headers field array
162  * @bitwidth: bitwidth
163  * @mapping_type: mapping type
164  */
165 struct devlink_dpipe_field {
166 	const char *name;
167 	unsigned int id;
168 	unsigned int bitwidth;
169 	enum devlink_dpipe_field_mapping_type mapping_type;
170 };
171 
172 /**
173  * struct devlink_dpipe_header - dpipe header object
174  * @name: header name
175  * @id: index, global/local detrmined by global bit
176  * @fields: fields
177  * @fields_count: number of fields
178  * @global: indicates if header is shared like most protocol header
179  *	    or driver specific
180  */
181 struct devlink_dpipe_header {
182 	const char *name;
183 	unsigned int id;
184 	struct devlink_dpipe_field *fields;
185 	unsigned int fields_count;
186 	bool global;
187 };
188 
189 /**
190  * struct devlink_dpipe_match - represents match operation
191  * @type: type of match
192  * @header_index: header index (packets can have several headers of same
193  *		  type like in case of tunnels)
194  * @header: header
195  * @fieled_id: field index
196  */
197 struct devlink_dpipe_match {
198 	enum devlink_dpipe_match_type type;
199 	unsigned int header_index;
200 	struct devlink_dpipe_header *header;
201 	unsigned int field_id;
202 };
203 
204 /**
205  * struct devlink_dpipe_action - represents action operation
206  * @type: type of action
207  * @header_index: header index (packets can have several headers of same
208  *		  type like in case of tunnels)
209  * @header: header
210  * @fieled_id: field index
211  */
212 struct devlink_dpipe_action {
213 	enum devlink_dpipe_action_type type;
214 	unsigned int header_index;
215 	struct devlink_dpipe_header *header;
216 	unsigned int field_id;
217 };
218 
219 /**
220  * struct devlink_dpipe_value - represents value of match/action
221  * @action: action
222  * @match: match
223  * @mapping_value: in case the field has some mapping this value
224  *                 specified the mapping value
225  * @mapping_valid: specify if mapping value is valid
226  * @value_size: value size
227  * @value: value
228  * @mask: bit mask
229  */
230 struct devlink_dpipe_value {
231 	union {
232 		struct devlink_dpipe_action *action;
233 		struct devlink_dpipe_match *match;
234 	};
235 	unsigned int mapping_value;
236 	bool mapping_valid;
237 	unsigned int value_size;
238 	void *value;
239 	void *mask;
240 };
241 
242 /**
243  * struct devlink_dpipe_entry - table entry object
244  * @index: index of the entry in the table
245  * @match_values: match values
246  * @matche_values_count: count of matches tuples
247  * @action_values: actions values
248  * @action_values_count: count of actions values
249  * @counter: value of counter
250  * @counter_valid: Specify if value is valid from hardware
251  */
252 struct devlink_dpipe_entry {
253 	u64 index;
254 	struct devlink_dpipe_value *match_values;
255 	unsigned int match_values_count;
256 	struct devlink_dpipe_value *action_values;
257 	unsigned int action_values_count;
258 	u64 counter;
259 	bool counter_valid;
260 };
261 
262 /**
263  * struct devlink_dpipe_dump_ctx - context provided to driver in order
264  *				   to dump
265  * @info: info
266  * @cmd: devlink command
267  * @skb: skb
268  * @nest: top attribute
269  * @hdr: hdr
270  */
271 struct devlink_dpipe_dump_ctx {
272 	struct genl_info *info;
273 	enum devlink_command cmd;
274 	struct sk_buff *skb;
275 	struct nlattr *nest;
276 	void *hdr;
277 };
278 
279 struct devlink_dpipe_table_ops;
280 
281 /**
282  * struct devlink_dpipe_table - table object
283  * @priv: private
284  * @name: table name
285  * @counters_enabled: indicates if counters are active
286  * @counter_control_extern: indicates if counter control is in dpipe or
287  *			    external tool
288  * @resource_valid: Indicate that the resource id is valid
289  * @resource_id: relative resource this table is related to
290  * @resource_units: number of resource's unit consumed per table's entry
291  * @table_ops: table operations
292  * @rcu: rcu
293  */
294 struct devlink_dpipe_table {
295 	void *priv;
296 	struct list_head list;
297 	const char *name;
298 	bool counters_enabled;
299 	bool counter_control_extern;
300 	bool resource_valid;
301 	u64 resource_id;
302 	u64 resource_units;
303 	struct devlink_dpipe_table_ops *table_ops;
304 	struct rcu_head rcu;
305 };
306 
307 /**
308  * struct devlink_dpipe_table_ops - dpipe_table ops
309  * @actions_dump - dumps all tables actions
310  * @matches_dump - dumps all tables matches
311  * @entries_dump - dumps all active entries in the table
312  * @counters_set_update - when changing the counter status hardware sync
313  *			  maybe needed to allocate/free counter related
314  *			  resources
315  * @size_get - get size
316  */
317 struct devlink_dpipe_table_ops {
318 	int (*actions_dump)(void *priv, struct sk_buff *skb);
319 	int (*matches_dump)(void *priv, struct sk_buff *skb);
320 	int (*entries_dump)(void *priv, bool counters_enabled,
321 			    struct devlink_dpipe_dump_ctx *dump_ctx);
322 	int (*counters_set_update)(void *priv, bool enable);
323 	u64 (*size_get)(void *priv);
324 };
325 
326 /**
327  * struct devlink_dpipe_headers - dpipe headers
328  * @headers - header array can be shared (global bit) or driver specific
329  * @headers_count - count of headers
330  */
331 struct devlink_dpipe_headers {
332 	struct devlink_dpipe_header **headers;
333 	unsigned int headers_count;
334 };
335 
336 /**
337  * struct devlink_resource_size_params - resource's size parameters
338  * @size_min: minimum size which can be set
339  * @size_max: maximum size which can be set
340  * @size_granularity: size granularity
341  * @size_unit: resource's basic unit
342  */
343 struct devlink_resource_size_params {
344 	u64 size_min;
345 	u64 size_max;
346 	u64 size_granularity;
347 	enum devlink_resource_unit unit;
348 };
349 
350 static inline void
351 devlink_resource_size_params_init(struct devlink_resource_size_params *size_params,
352 				  u64 size_min, u64 size_max,
353 				  u64 size_granularity,
354 				  enum devlink_resource_unit unit)
355 {
356 	size_params->size_min = size_min;
357 	size_params->size_max = size_max;
358 	size_params->size_granularity = size_granularity;
359 	size_params->unit = unit;
360 }
361 
362 typedef u64 devlink_resource_occ_get_t(void *priv);
363 
364 /**
365  * struct devlink_resource - devlink resource
366  * @name: name of the resource
367  * @id: id, per devlink instance
368  * @size: size of the resource
369  * @size_new: updated size of the resource, reload is needed
370  * @size_valid: valid in case the total size of the resource is valid
371  *              including its children
372  * @parent: parent resource
373  * @size_params: size parameters
374  * @list: parent list
375  * @resource_list: list of child resources
376  */
377 struct devlink_resource {
378 	const char *name;
379 	u64 id;
380 	u64 size;
381 	u64 size_new;
382 	bool size_valid;
383 	struct devlink_resource *parent;
384 	struct devlink_resource_size_params size_params;
385 	struct list_head list;
386 	struct list_head resource_list;
387 	devlink_resource_occ_get_t *occ_get;
388 	void *occ_get_priv;
389 };
390 
391 #define DEVLINK_RESOURCE_ID_PARENT_TOP 0
392 
393 #define DEVLINK_RESOURCE_GENERIC_NAME_PORTS "physical_ports"
394 
395 #define __DEVLINK_PARAM_MAX_STRING_VALUE 32
396 enum devlink_param_type {
397 	DEVLINK_PARAM_TYPE_U8,
398 	DEVLINK_PARAM_TYPE_U16,
399 	DEVLINK_PARAM_TYPE_U32,
400 	DEVLINK_PARAM_TYPE_STRING,
401 	DEVLINK_PARAM_TYPE_BOOL,
402 };
403 
404 union devlink_param_value {
405 	u8 vu8;
406 	u16 vu16;
407 	u32 vu32;
408 	char vstr[__DEVLINK_PARAM_MAX_STRING_VALUE];
409 	bool vbool;
410 };
411 
412 struct devlink_param_gset_ctx {
413 	union devlink_param_value val;
414 	enum devlink_param_cmode cmode;
415 };
416 
417 /**
418  * struct devlink_flash_notify - devlink dev flash notify data
419  * @status_msg: current status string
420  * @component: firmware component being updated
421  * @done: amount of work completed of total amount
422  * @total: amount of work expected to be done
423  * @timeout: expected max timeout in seconds
424  *
425  * These are values to be given to userland to be displayed in order
426  * to show current activity in a firmware update process.
427  */
428 struct devlink_flash_notify {
429 	const char *status_msg;
430 	const char *component;
431 	unsigned long done;
432 	unsigned long total;
433 	unsigned long timeout;
434 };
435 
436 /**
437  * struct devlink_param - devlink configuration parameter data
438  * @name: name of the parameter
439  * @generic: indicates if the parameter is generic or driver specific
440  * @type: parameter type
441  * @supported_cmodes: bitmap of supported configuration modes
442  * @get: get parameter value, used for runtime and permanent
443  *       configuration modes
444  * @set: set parameter value, used for runtime and permanent
445  *       configuration modes
446  * @validate: validate input value is applicable (within value range, etc.)
447  *
448  * This struct should be used by the driver to fill the data for
449  * a parameter it registers.
450  */
451 struct devlink_param {
452 	u32 id;
453 	const char *name;
454 	bool generic;
455 	enum devlink_param_type type;
456 	unsigned long supported_cmodes;
457 	int (*get)(struct devlink *devlink, u32 id,
458 		   struct devlink_param_gset_ctx *ctx);
459 	int (*set)(struct devlink *devlink, u32 id,
460 		   struct devlink_param_gset_ctx *ctx);
461 	int (*validate)(struct devlink *devlink, u32 id,
462 			union devlink_param_value val,
463 			struct netlink_ext_ack *extack);
464 };
465 
466 struct devlink_param_item {
467 	struct list_head list;
468 	const struct devlink_param *param;
469 	union devlink_param_value driverinit_value;
470 	bool driverinit_value_valid;
471 	bool published;
472 };
473 
474 enum devlink_param_generic_id {
475 	DEVLINK_PARAM_GENERIC_ID_INT_ERR_RESET,
476 	DEVLINK_PARAM_GENERIC_ID_MAX_MACS,
477 	DEVLINK_PARAM_GENERIC_ID_ENABLE_SRIOV,
478 	DEVLINK_PARAM_GENERIC_ID_REGION_SNAPSHOT,
479 	DEVLINK_PARAM_GENERIC_ID_IGNORE_ARI,
480 	DEVLINK_PARAM_GENERIC_ID_MSIX_VEC_PER_PF_MAX,
481 	DEVLINK_PARAM_GENERIC_ID_MSIX_VEC_PER_PF_MIN,
482 	DEVLINK_PARAM_GENERIC_ID_FW_LOAD_POLICY,
483 	DEVLINK_PARAM_GENERIC_ID_RESET_DEV_ON_DRV_PROBE,
484 	DEVLINK_PARAM_GENERIC_ID_ENABLE_ROCE,
485 	DEVLINK_PARAM_GENERIC_ID_ENABLE_REMOTE_DEV_RESET,
486 	DEVLINK_PARAM_GENERIC_ID_ENABLE_ETH,
487 	DEVLINK_PARAM_GENERIC_ID_ENABLE_RDMA,
488 	DEVLINK_PARAM_GENERIC_ID_ENABLE_VNET,
489 
490 	/* add new param generic ids above here*/
491 	__DEVLINK_PARAM_GENERIC_ID_MAX,
492 	DEVLINK_PARAM_GENERIC_ID_MAX = __DEVLINK_PARAM_GENERIC_ID_MAX - 1,
493 };
494 
495 #define DEVLINK_PARAM_GENERIC_INT_ERR_RESET_NAME "internal_error_reset"
496 #define DEVLINK_PARAM_GENERIC_INT_ERR_RESET_TYPE DEVLINK_PARAM_TYPE_BOOL
497 
498 #define DEVLINK_PARAM_GENERIC_MAX_MACS_NAME "max_macs"
499 #define DEVLINK_PARAM_GENERIC_MAX_MACS_TYPE DEVLINK_PARAM_TYPE_U32
500 
501 #define DEVLINK_PARAM_GENERIC_ENABLE_SRIOV_NAME "enable_sriov"
502 #define DEVLINK_PARAM_GENERIC_ENABLE_SRIOV_TYPE DEVLINK_PARAM_TYPE_BOOL
503 
504 #define DEVLINK_PARAM_GENERIC_REGION_SNAPSHOT_NAME "region_snapshot_enable"
505 #define DEVLINK_PARAM_GENERIC_REGION_SNAPSHOT_TYPE DEVLINK_PARAM_TYPE_BOOL
506 
507 #define DEVLINK_PARAM_GENERIC_IGNORE_ARI_NAME "ignore_ari"
508 #define DEVLINK_PARAM_GENERIC_IGNORE_ARI_TYPE DEVLINK_PARAM_TYPE_BOOL
509 
510 #define DEVLINK_PARAM_GENERIC_MSIX_VEC_PER_PF_MAX_NAME "msix_vec_per_pf_max"
511 #define DEVLINK_PARAM_GENERIC_MSIX_VEC_PER_PF_MAX_TYPE DEVLINK_PARAM_TYPE_U32
512 
513 #define DEVLINK_PARAM_GENERIC_MSIX_VEC_PER_PF_MIN_NAME "msix_vec_per_pf_min"
514 #define DEVLINK_PARAM_GENERIC_MSIX_VEC_PER_PF_MIN_TYPE DEVLINK_PARAM_TYPE_U32
515 
516 #define DEVLINK_PARAM_GENERIC_FW_LOAD_POLICY_NAME "fw_load_policy"
517 #define DEVLINK_PARAM_GENERIC_FW_LOAD_POLICY_TYPE DEVLINK_PARAM_TYPE_U8
518 
519 #define DEVLINK_PARAM_GENERIC_RESET_DEV_ON_DRV_PROBE_NAME \
520 	"reset_dev_on_drv_probe"
521 #define DEVLINK_PARAM_GENERIC_RESET_DEV_ON_DRV_PROBE_TYPE DEVLINK_PARAM_TYPE_U8
522 
523 #define DEVLINK_PARAM_GENERIC_ENABLE_ROCE_NAME "enable_roce"
524 #define DEVLINK_PARAM_GENERIC_ENABLE_ROCE_TYPE DEVLINK_PARAM_TYPE_BOOL
525 
526 #define DEVLINK_PARAM_GENERIC_ENABLE_REMOTE_DEV_RESET_NAME "enable_remote_dev_reset"
527 #define DEVLINK_PARAM_GENERIC_ENABLE_REMOTE_DEV_RESET_TYPE DEVLINK_PARAM_TYPE_BOOL
528 
529 #define DEVLINK_PARAM_GENERIC_ENABLE_ETH_NAME "enable_eth"
530 #define DEVLINK_PARAM_GENERIC_ENABLE_ETH_TYPE DEVLINK_PARAM_TYPE_BOOL
531 
532 #define DEVLINK_PARAM_GENERIC_ENABLE_RDMA_NAME "enable_rdma"
533 #define DEVLINK_PARAM_GENERIC_ENABLE_RDMA_TYPE DEVLINK_PARAM_TYPE_BOOL
534 
535 #define DEVLINK_PARAM_GENERIC_ENABLE_VNET_NAME "enable_vnet"
536 #define DEVLINK_PARAM_GENERIC_ENABLE_VNET_TYPE DEVLINK_PARAM_TYPE_BOOL
537 
538 #define DEVLINK_PARAM_GENERIC(_id, _cmodes, _get, _set, _validate)	\
539 {									\
540 	.id = DEVLINK_PARAM_GENERIC_ID_##_id,				\
541 	.name = DEVLINK_PARAM_GENERIC_##_id##_NAME,			\
542 	.type = DEVLINK_PARAM_GENERIC_##_id##_TYPE,			\
543 	.generic = true,						\
544 	.supported_cmodes = _cmodes,					\
545 	.get = _get,							\
546 	.set = _set,							\
547 	.validate = _validate,						\
548 }
549 
550 #define DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes, _get, _set, _validate)	\
551 {									\
552 	.id = _id,							\
553 	.name = _name,							\
554 	.type = _type,							\
555 	.supported_cmodes = _cmodes,					\
556 	.get = _get,							\
557 	.set = _set,							\
558 	.validate = _validate,						\
559 }
560 
561 /* Part number, identifier of board design */
562 #define DEVLINK_INFO_VERSION_GENERIC_BOARD_ID	"board.id"
563 /* Revision of board design */
564 #define DEVLINK_INFO_VERSION_GENERIC_BOARD_REV	"board.rev"
565 /* Maker of the board */
566 #define DEVLINK_INFO_VERSION_GENERIC_BOARD_MANUFACTURE	"board.manufacture"
567 
568 /* Part number, identifier of asic design */
569 #define DEVLINK_INFO_VERSION_GENERIC_ASIC_ID	"asic.id"
570 /* Revision of asic design */
571 #define DEVLINK_INFO_VERSION_GENERIC_ASIC_REV	"asic.rev"
572 
573 /* Overall FW version */
574 #define DEVLINK_INFO_VERSION_GENERIC_FW		"fw"
575 /* Control processor FW version */
576 #define DEVLINK_INFO_VERSION_GENERIC_FW_MGMT	"fw.mgmt"
577 /* FW interface specification version */
578 #define DEVLINK_INFO_VERSION_GENERIC_FW_MGMT_API	"fw.mgmt.api"
579 /* Data path microcode controlling high-speed packet processing */
580 #define DEVLINK_INFO_VERSION_GENERIC_FW_APP	"fw.app"
581 /* UNDI software version */
582 #define DEVLINK_INFO_VERSION_GENERIC_FW_UNDI	"fw.undi"
583 /* NCSI support/handler version */
584 #define DEVLINK_INFO_VERSION_GENERIC_FW_NCSI	"fw.ncsi"
585 /* FW parameter set id */
586 #define DEVLINK_INFO_VERSION_GENERIC_FW_PSID	"fw.psid"
587 /* RoCE FW version */
588 #define DEVLINK_INFO_VERSION_GENERIC_FW_ROCE	"fw.roce"
589 /* Firmware bundle identifier */
590 #define DEVLINK_INFO_VERSION_GENERIC_FW_BUNDLE_ID	"fw.bundle_id"
591 
592 /**
593  * struct devlink_flash_update_params - Flash Update parameters
594  * @fw: pointer to the firmware data to update from
595  * @component: the flash component to update
596  *
597  * With the exception of fw, drivers must opt-in to parameters by
598  * setting the appropriate bit in the supported_flash_update_params field in
599  * their devlink_ops structure.
600  */
601 struct devlink_flash_update_params {
602 	const struct firmware *fw;
603 	const char *component;
604 	u32 overwrite_mask;
605 };
606 
607 #define DEVLINK_SUPPORT_FLASH_UPDATE_COMPONENT		BIT(0)
608 #define DEVLINK_SUPPORT_FLASH_UPDATE_OVERWRITE_MASK	BIT(1)
609 
610 struct devlink_region;
611 struct devlink_info_req;
612 
613 /**
614  * struct devlink_region_ops - Region operations
615  * @name: region name
616  * @destructor: callback used to free snapshot memory when deleting
617  * @snapshot: callback to request an immediate snapshot. On success,
618  *            the data variable must be updated to point to the snapshot data.
619  *            The function will be called while the devlink instance lock is
620  *            held.
621  * @priv: Pointer to driver private data for the region operation
622  */
623 struct devlink_region_ops {
624 	const char *name;
625 	void (*destructor)(const void *data);
626 	int (*snapshot)(struct devlink *devlink,
627 			const struct devlink_region_ops *ops,
628 			struct netlink_ext_ack *extack,
629 			u8 **data);
630 	void *priv;
631 };
632 
633 /**
634  * struct devlink_port_region_ops - Region operations for a port
635  * @name: region name
636  * @destructor: callback used to free snapshot memory when deleting
637  * @snapshot: callback to request an immediate snapshot. On success,
638  *            the data variable must be updated to point to the snapshot data.
639  *            The function will be called while the devlink instance lock is
640  *            held.
641  * @priv: Pointer to driver private data for the region operation
642  */
643 struct devlink_port_region_ops {
644 	const char *name;
645 	void (*destructor)(const void *data);
646 	int (*snapshot)(struct devlink_port *port,
647 			const struct devlink_port_region_ops *ops,
648 			struct netlink_ext_ack *extack,
649 			u8 **data);
650 	void *priv;
651 };
652 
653 struct devlink_fmsg;
654 struct devlink_health_reporter;
655 
656 enum devlink_health_reporter_state {
657 	DEVLINK_HEALTH_REPORTER_STATE_HEALTHY,
658 	DEVLINK_HEALTH_REPORTER_STATE_ERROR,
659 };
660 
661 /**
662  * struct devlink_health_reporter_ops - Reporter operations
663  * @name: reporter name
664  * @recover: callback to recover from reported error
665  *           if priv_ctx is NULL, run a full recover
666  * @dump: callback to dump an object
667  *        if priv_ctx is NULL, run a full dump
668  * @diagnose: callback to diagnose the current status
669  * @test: callback to trigger a test event
670  */
671 
672 struct devlink_health_reporter_ops {
673 	char *name;
674 	int (*recover)(struct devlink_health_reporter *reporter,
675 		       void *priv_ctx, struct netlink_ext_ack *extack);
676 	int (*dump)(struct devlink_health_reporter *reporter,
677 		    struct devlink_fmsg *fmsg, void *priv_ctx,
678 		    struct netlink_ext_ack *extack);
679 	int (*diagnose)(struct devlink_health_reporter *reporter,
680 			struct devlink_fmsg *fmsg,
681 			struct netlink_ext_ack *extack);
682 	int (*test)(struct devlink_health_reporter *reporter,
683 		    struct netlink_ext_ack *extack);
684 };
685 
686 /**
687  * struct devlink_trap_metadata - Packet trap metadata.
688  * @trap_name: Trap name.
689  * @trap_group_name: Trap group name.
690  * @input_dev: Input netdevice.
691  * @fa_cookie: Flow action user cookie.
692  * @trap_type: Trap type.
693  */
694 struct devlink_trap_metadata {
695 	const char *trap_name;
696 	const char *trap_group_name;
697 	struct net_device *input_dev;
698 	const struct flow_action_cookie *fa_cookie;
699 	enum devlink_trap_type trap_type;
700 };
701 
702 /**
703  * struct devlink_trap_policer - Immutable packet trap policer attributes.
704  * @id: Policer identifier.
705  * @init_rate: Initial rate in packets / sec.
706  * @init_burst: Initial burst size in packets.
707  * @max_rate: Maximum rate.
708  * @min_rate: Minimum rate.
709  * @max_burst: Maximum burst size.
710  * @min_burst: Minimum burst size.
711  *
712  * Describes immutable attributes of packet trap policers that drivers register
713  * with devlink.
714  */
715 struct devlink_trap_policer {
716 	u32 id;
717 	u64 init_rate;
718 	u64 init_burst;
719 	u64 max_rate;
720 	u64 min_rate;
721 	u64 max_burst;
722 	u64 min_burst;
723 };
724 
725 /**
726  * struct devlink_trap_group - Immutable packet trap group attributes.
727  * @name: Trap group name.
728  * @id: Trap group identifier.
729  * @generic: Whether the trap group is generic or not.
730  * @init_policer_id: Initial policer identifier.
731  *
732  * Describes immutable attributes of packet trap groups that drivers register
733  * with devlink.
734  */
735 struct devlink_trap_group {
736 	const char *name;
737 	u16 id;
738 	bool generic;
739 	u32 init_policer_id;
740 };
741 
742 #define DEVLINK_TRAP_METADATA_TYPE_F_IN_PORT	BIT(0)
743 #define DEVLINK_TRAP_METADATA_TYPE_F_FA_COOKIE	BIT(1)
744 
745 /**
746  * struct devlink_trap - Immutable packet trap attributes.
747  * @type: Trap type.
748  * @init_action: Initial trap action.
749  * @generic: Whether the trap is generic or not.
750  * @id: Trap identifier.
751  * @name: Trap name.
752  * @init_group_id: Initial group identifier.
753  * @metadata_cap: Metadata types that can be provided by the trap.
754  *
755  * Describes immutable attributes of packet traps that drivers register with
756  * devlink.
757  */
758 struct devlink_trap {
759 	enum devlink_trap_type type;
760 	enum devlink_trap_action init_action;
761 	bool generic;
762 	u16 id;
763 	const char *name;
764 	u16 init_group_id;
765 	u32 metadata_cap;
766 };
767 
768 /* All traps must be documented in
769  * Documentation/networking/devlink/devlink-trap.rst
770  */
771 enum devlink_trap_generic_id {
772 	DEVLINK_TRAP_GENERIC_ID_SMAC_MC,
773 	DEVLINK_TRAP_GENERIC_ID_VLAN_TAG_MISMATCH,
774 	DEVLINK_TRAP_GENERIC_ID_INGRESS_VLAN_FILTER,
775 	DEVLINK_TRAP_GENERIC_ID_INGRESS_STP_FILTER,
776 	DEVLINK_TRAP_GENERIC_ID_EMPTY_TX_LIST,
777 	DEVLINK_TRAP_GENERIC_ID_PORT_LOOPBACK_FILTER,
778 	DEVLINK_TRAP_GENERIC_ID_BLACKHOLE_ROUTE,
779 	DEVLINK_TRAP_GENERIC_ID_TTL_ERROR,
780 	DEVLINK_TRAP_GENERIC_ID_TAIL_DROP,
781 	DEVLINK_TRAP_GENERIC_ID_NON_IP_PACKET,
782 	DEVLINK_TRAP_GENERIC_ID_UC_DIP_MC_DMAC,
783 	DEVLINK_TRAP_GENERIC_ID_DIP_LB,
784 	DEVLINK_TRAP_GENERIC_ID_SIP_MC,
785 	DEVLINK_TRAP_GENERIC_ID_SIP_LB,
786 	DEVLINK_TRAP_GENERIC_ID_CORRUPTED_IP_HDR,
787 	DEVLINK_TRAP_GENERIC_ID_IPV4_SIP_BC,
788 	DEVLINK_TRAP_GENERIC_ID_IPV6_MC_DIP_RESERVED_SCOPE,
789 	DEVLINK_TRAP_GENERIC_ID_IPV6_MC_DIP_INTERFACE_LOCAL_SCOPE,
790 	DEVLINK_TRAP_GENERIC_ID_MTU_ERROR,
791 	DEVLINK_TRAP_GENERIC_ID_UNRESOLVED_NEIGH,
792 	DEVLINK_TRAP_GENERIC_ID_RPF,
793 	DEVLINK_TRAP_GENERIC_ID_REJECT_ROUTE,
794 	DEVLINK_TRAP_GENERIC_ID_IPV4_LPM_UNICAST_MISS,
795 	DEVLINK_TRAP_GENERIC_ID_IPV6_LPM_UNICAST_MISS,
796 	DEVLINK_TRAP_GENERIC_ID_NON_ROUTABLE,
797 	DEVLINK_TRAP_GENERIC_ID_DECAP_ERROR,
798 	DEVLINK_TRAP_GENERIC_ID_OVERLAY_SMAC_MC,
799 	DEVLINK_TRAP_GENERIC_ID_INGRESS_FLOW_ACTION_DROP,
800 	DEVLINK_TRAP_GENERIC_ID_EGRESS_FLOW_ACTION_DROP,
801 	DEVLINK_TRAP_GENERIC_ID_STP,
802 	DEVLINK_TRAP_GENERIC_ID_LACP,
803 	DEVLINK_TRAP_GENERIC_ID_LLDP,
804 	DEVLINK_TRAP_GENERIC_ID_IGMP_QUERY,
805 	DEVLINK_TRAP_GENERIC_ID_IGMP_V1_REPORT,
806 	DEVLINK_TRAP_GENERIC_ID_IGMP_V2_REPORT,
807 	DEVLINK_TRAP_GENERIC_ID_IGMP_V3_REPORT,
808 	DEVLINK_TRAP_GENERIC_ID_IGMP_V2_LEAVE,
809 	DEVLINK_TRAP_GENERIC_ID_MLD_QUERY,
810 	DEVLINK_TRAP_GENERIC_ID_MLD_V1_REPORT,
811 	DEVLINK_TRAP_GENERIC_ID_MLD_V2_REPORT,
812 	DEVLINK_TRAP_GENERIC_ID_MLD_V1_DONE,
813 	DEVLINK_TRAP_GENERIC_ID_IPV4_DHCP,
814 	DEVLINK_TRAP_GENERIC_ID_IPV6_DHCP,
815 	DEVLINK_TRAP_GENERIC_ID_ARP_REQUEST,
816 	DEVLINK_TRAP_GENERIC_ID_ARP_RESPONSE,
817 	DEVLINK_TRAP_GENERIC_ID_ARP_OVERLAY,
818 	DEVLINK_TRAP_GENERIC_ID_IPV6_NEIGH_SOLICIT,
819 	DEVLINK_TRAP_GENERIC_ID_IPV6_NEIGH_ADVERT,
820 	DEVLINK_TRAP_GENERIC_ID_IPV4_BFD,
821 	DEVLINK_TRAP_GENERIC_ID_IPV6_BFD,
822 	DEVLINK_TRAP_GENERIC_ID_IPV4_OSPF,
823 	DEVLINK_TRAP_GENERIC_ID_IPV6_OSPF,
824 	DEVLINK_TRAP_GENERIC_ID_IPV4_BGP,
825 	DEVLINK_TRAP_GENERIC_ID_IPV6_BGP,
826 	DEVLINK_TRAP_GENERIC_ID_IPV4_VRRP,
827 	DEVLINK_TRAP_GENERIC_ID_IPV6_VRRP,
828 	DEVLINK_TRAP_GENERIC_ID_IPV4_PIM,
829 	DEVLINK_TRAP_GENERIC_ID_IPV6_PIM,
830 	DEVLINK_TRAP_GENERIC_ID_UC_LB,
831 	DEVLINK_TRAP_GENERIC_ID_LOCAL_ROUTE,
832 	DEVLINK_TRAP_GENERIC_ID_EXTERNAL_ROUTE,
833 	DEVLINK_TRAP_GENERIC_ID_IPV6_UC_DIP_LINK_LOCAL_SCOPE,
834 	DEVLINK_TRAP_GENERIC_ID_IPV6_DIP_ALL_NODES,
835 	DEVLINK_TRAP_GENERIC_ID_IPV6_DIP_ALL_ROUTERS,
836 	DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_SOLICIT,
837 	DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_ADVERT,
838 	DEVLINK_TRAP_GENERIC_ID_IPV6_REDIRECT,
839 	DEVLINK_TRAP_GENERIC_ID_IPV4_ROUTER_ALERT,
840 	DEVLINK_TRAP_GENERIC_ID_IPV6_ROUTER_ALERT,
841 	DEVLINK_TRAP_GENERIC_ID_PTP_EVENT,
842 	DEVLINK_TRAP_GENERIC_ID_PTP_GENERAL,
843 	DEVLINK_TRAP_GENERIC_ID_FLOW_ACTION_SAMPLE,
844 	DEVLINK_TRAP_GENERIC_ID_FLOW_ACTION_TRAP,
845 	DEVLINK_TRAP_GENERIC_ID_EARLY_DROP,
846 	DEVLINK_TRAP_GENERIC_ID_VXLAN_PARSING,
847 	DEVLINK_TRAP_GENERIC_ID_LLC_SNAP_PARSING,
848 	DEVLINK_TRAP_GENERIC_ID_VLAN_PARSING,
849 	DEVLINK_TRAP_GENERIC_ID_PPPOE_PPP_PARSING,
850 	DEVLINK_TRAP_GENERIC_ID_MPLS_PARSING,
851 	DEVLINK_TRAP_GENERIC_ID_ARP_PARSING,
852 	DEVLINK_TRAP_GENERIC_ID_IP_1_PARSING,
853 	DEVLINK_TRAP_GENERIC_ID_IP_N_PARSING,
854 	DEVLINK_TRAP_GENERIC_ID_GRE_PARSING,
855 	DEVLINK_TRAP_GENERIC_ID_UDP_PARSING,
856 	DEVLINK_TRAP_GENERIC_ID_TCP_PARSING,
857 	DEVLINK_TRAP_GENERIC_ID_IPSEC_PARSING,
858 	DEVLINK_TRAP_GENERIC_ID_SCTP_PARSING,
859 	DEVLINK_TRAP_GENERIC_ID_DCCP_PARSING,
860 	DEVLINK_TRAP_GENERIC_ID_GTP_PARSING,
861 	DEVLINK_TRAP_GENERIC_ID_ESP_PARSING,
862 	DEVLINK_TRAP_GENERIC_ID_BLACKHOLE_NEXTHOP,
863 	DEVLINK_TRAP_GENERIC_ID_DMAC_FILTER,
864 
865 	/* Add new generic trap IDs above */
866 	__DEVLINK_TRAP_GENERIC_ID_MAX,
867 	DEVLINK_TRAP_GENERIC_ID_MAX = __DEVLINK_TRAP_GENERIC_ID_MAX - 1,
868 };
869 
870 /* All trap groups must be documented in
871  * Documentation/networking/devlink/devlink-trap.rst
872  */
873 enum devlink_trap_group_generic_id {
874 	DEVLINK_TRAP_GROUP_GENERIC_ID_L2_DROPS,
875 	DEVLINK_TRAP_GROUP_GENERIC_ID_L3_DROPS,
876 	DEVLINK_TRAP_GROUP_GENERIC_ID_L3_EXCEPTIONS,
877 	DEVLINK_TRAP_GROUP_GENERIC_ID_BUFFER_DROPS,
878 	DEVLINK_TRAP_GROUP_GENERIC_ID_TUNNEL_DROPS,
879 	DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_DROPS,
880 	DEVLINK_TRAP_GROUP_GENERIC_ID_STP,
881 	DEVLINK_TRAP_GROUP_GENERIC_ID_LACP,
882 	DEVLINK_TRAP_GROUP_GENERIC_ID_LLDP,
883 	DEVLINK_TRAP_GROUP_GENERIC_ID_MC_SNOOPING,
884 	DEVLINK_TRAP_GROUP_GENERIC_ID_DHCP,
885 	DEVLINK_TRAP_GROUP_GENERIC_ID_NEIGH_DISCOVERY,
886 	DEVLINK_TRAP_GROUP_GENERIC_ID_BFD,
887 	DEVLINK_TRAP_GROUP_GENERIC_ID_OSPF,
888 	DEVLINK_TRAP_GROUP_GENERIC_ID_BGP,
889 	DEVLINK_TRAP_GROUP_GENERIC_ID_VRRP,
890 	DEVLINK_TRAP_GROUP_GENERIC_ID_PIM,
891 	DEVLINK_TRAP_GROUP_GENERIC_ID_UC_LB,
892 	DEVLINK_TRAP_GROUP_GENERIC_ID_LOCAL_DELIVERY,
893 	DEVLINK_TRAP_GROUP_GENERIC_ID_EXTERNAL_DELIVERY,
894 	DEVLINK_TRAP_GROUP_GENERIC_ID_IPV6,
895 	DEVLINK_TRAP_GROUP_GENERIC_ID_PTP_EVENT,
896 	DEVLINK_TRAP_GROUP_GENERIC_ID_PTP_GENERAL,
897 	DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_SAMPLE,
898 	DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_TRAP,
899 	DEVLINK_TRAP_GROUP_GENERIC_ID_PARSER_ERROR_DROPS,
900 
901 	/* Add new generic trap group IDs above */
902 	__DEVLINK_TRAP_GROUP_GENERIC_ID_MAX,
903 	DEVLINK_TRAP_GROUP_GENERIC_ID_MAX =
904 		__DEVLINK_TRAP_GROUP_GENERIC_ID_MAX - 1,
905 };
906 
907 #define DEVLINK_TRAP_GENERIC_NAME_SMAC_MC \
908 	"source_mac_is_multicast"
909 #define DEVLINK_TRAP_GENERIC_NAME_VLAN_TAG_MISMATCH \
910 	"vlan_tag_mismatch"
911 #define DEVLINK_TRAP_GENERIC_NAME_INGRESS_VLAN_FILTER \
912 	"ingress_vlan_filter"
913 #define DEVLINK_TRAP_GENERIC_NAME_INGRESS_STP_FILTER \
914 	"ingress_spanning_tree_filter"
915 #define DEVLINK_TRAP_GENERIC_NAME_EMPTY_TX_LIST \
916 	"port_list_is_empty"
917 #define DEVLINK_TRAP_GENERIC_NAME_PORT_LOOPBACK_FILTER \
918 	"port_loopback_filter"
919 #define DEVLINK_TRAP_GENERIC_NAME_BLACKHOLE_ROUTE \
920 	"blackhole_route"
921 #define DEVLINK_TRAP_GENERIC_NAME_TTL_ERROR \
922 	"ttl_value_is_too_small"
923 #define DEVLINK_TRAP_GENERIC_NAME_TAIL_DROP \
924 	"tail_drop"
925 #define DEVLINK_TRAP_GENERIC_NAME_NON_IP_PACKET \
926 	"non_ip"
927 #define DEVLINK_TRAP_GENERIC_NAME_UC_DIP_MC_DMAC \
928 	"uc_dip_over_mc_dmac"
929 #define DEVLINK_TRAP_GENERIC_NAME_DIP_LB \
930 	"dip_is_loopback_address"
931 #define DEVLINK_TRAP_GENERIC_NAME_SIP_MC \
932 	"sip_is_mc"
933 #define DEVLINK_TRAP_GENERIC_NAME_SIP_LB \
934 	"sip_is_loopback_address"
935 #define DEVLINK_TRAP_GENERIC_NAME_CORRUPTED_IP_HDR \
936 	"ip_header_corrupted"
937 #define DEVLINK_TRAP_GENERIC_NAME_IPV4_SIP_BC \
938 	"ipv4_sip_is_limited_bc"
939 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_MC_DIP_RESERVED_SCOPE \
940 	"ipv6_mc_dip_reserved_scope"
941 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_MC_DIP_INTERFACE_LOCAL_SCOPE \
942 	"ipv6_mc_dip_interface_local_scope"
943 #define DEVLINK_TRAP_GENERIC_NAME_MTU_ERROR \
944 	"mtu_value_is_too_small"
945 #define DEVLINK_TRAP_GENERIC_NAME_UNRESOLVED_NEIGH \
946 	"unresolved_neigh"
947 #define DEVLINK_TRAP_GENERIC_NAME_RPF \
948 	"mc_reverse_path_forwarding"
949 #define DEVLINK_TRAP_GENERIC_NAME_REJECT_ROUTE \
950 	"reject_route"
951 #define DEVLINK_TRAP_GENERIC_NAME_IPV4_LPM_UNICAST_MISS \
952 	"ipv4_lpm_miss"
953 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_LPM_UNICAST_MISS \
954 	"ipv6_lpm_miss"
955 #define DEVLINK_TRAP_GENERIC_NAME_NON_ROUTABLE \
956 	"non_routable_packet"
957 #define DEVLINK_TRAP_GENERIC_NAME_DECAP_ERROR \
958 	"decap_error"
959 #define DEVLINK_TRAP_GENERIC_NAME_OVERLAY_SMAC_MC \
960 	"overlay_smac_is_mc"
961 #define DEVLINK_TRAP_GENERIC_NAME_INGRESS_FLOW_ACTION_DROP \
962 	"ingress_flow_action_drop"
963 #define DEVLINK_TRAP_GENERIC_NAME_EGRESS_FLOW_ACTION_DROP \
964 	"egress_flow_action_drop"
965 #define DEVLINK_TRAP_GENERIC_NAME_STP \
966 	"stp"
967 #define DEVLINK_TRAP_GENERIC_NAME_LACP \
968 	"lacp"
969 #define DEVLINK_TRAP_GENERIC_NAME_LLDP \
970 	"lldp"
971 #define DEVLINK_TRAP_GENERIC_NAME_IGMP_QUERY \
972 	"igmp_query"
973 #define DEVLINK_TRAP_GENERIC_NAME_IGMP_V1_REPORT \
974 	"igmp_v1_report"
975 #define DEVLINK_TRAP_GENERIC_NAME_IGMP_V2_REPORT \
976 	"igmp_v2_report"
977 #define DEVLINK_TRAP_GENERIC_NAME_IGMP_V3_REPORT \
978 	"igmp_v3_report"
979 #define DEVLINK_TRAP_GENERIC_NAME_IGMP_V2_LEAVE \
980 	"igmp_v2_leave"
981 #define DEVLINK_TRAP_GENERIC_NAME_MLD_QUERY \
982 	"mld_query"
983 #define DEVLINK_TRAP_GENERIC_NAME_MLD_V1_REPORT \
984 	"mld_v1_report"
985 #define DEVLINK_TRAP_GENERIC_NAME_MLD_V2_REPORT \
986 	"mld_v2_report"
987 #define DEVLINK_TRAP_GENERIC_NAME_MLD_V1_DONE \
988 	"mld_v1_done"
989 #define DEVLINK_TRAP_GENERIC_NAME_IPV4_DHCP \
990 	"ipv4_dhcp"
991 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_DHCP \
992 	"ipv6_dhcp"
993 #define DEVLINK_TRAP_GENERIC_NAME_ARP_REQUEST \
994 	"arp_request"
995 #define DEVLINK_TRAP_GENERIC_NAME_ARP_RESPONSE \
996 	"arp_response"
997 #define DEVLINK_TRAP_GENERIC_NAME_ARP_OVERLAY \
998 	"arp_overlay"
999 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_NEIGH_SOLICIT \
1000 	"ipv6_neigh_solicit"
1001 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_NEIGH_ADVERT \
1002 	"ipv6_neigh_advert"
1003 #define DEVLINK_TRAP_GENERIC_NAME_IPV4_BFD \
1004 	"ipv4_bfd"
1005 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_BFD \
1006 	"ipv6_bfd"
1007 #define DEVLINK_TRAP_GENERIC_NAME_IPV4_OSPF \
1008 	"ipv4_ospf"
1009 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_OSPF \
1010 	"ipv6_ospf"
1011 #define DEVLINK_TRAP_GENERIC_NAME_IPV4_BGP \
1012 	"ipv4_bgp"
1013 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_BGP \
1014 	"ipv6_bgp"
1015 #define DEVLINK_TRAP_GENERIC_NAME_IPV4_VRRP \
1016 	"ipv4_vrrp"
1017 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_VRRP \
1018 	"ipv6_vrrp"
1019 #define DEVLINK_TRAP_GENERIC_NAME_IPV4_PIM \
1020 	"ipv4_pim"
1021 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_PIM \
1022 	"ipv6_pim"
1023 #define DEVLINK_TRAP_GENERIC_NAME_UC_LB \
1024 	"uc_loopback"
1025 #define DEVLINK_TRAP_GENERIC_NAME_LOCAL_ROUTE \
1026 	"local_route"
1027 #define DEVLINK_TRAP_GENERIC_NAME_EXTERNAL_ROUTE \
1028 	"external_route"
1029 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_UC_DIP_LINK_LOCAL_SCOPE \
1030 	"ipv6_uc_dip_link_local_scope"
1031 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_DIP_ALL_NODES \
1032 	"ipv6_dip_all_nodes"
1033 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_DIP_ALL_ROUTERS \
1034 	"ipv6_dip_all_routers"
1035 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_ROUTER_SOLICIT \
1036 	"ipv6_router_solicit"
1037 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_ROUTER_ADVERT \
1038 	"ipv6_router_advert"
1039 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_REDIRECT \
1040 	"ipv6_redirect"
1041 #define DEVLINK_TRAP_GENERIC_NAME_IPV4_ROUTER_ALERT \
1042 	"ipv4_router_alert"
1043 #define DEVLINK_TRAP_GENERIC_NAME_IPV6_ROUTER_ALERT \
1044 	"ipv6_router_alert"
1045 #define DEVLINK_TRAP_GENERIC_NAME_PTP_EVENT \
1046 	"ptp_event"
1047 #define DEVLINK_TRAP_GENERIC_NAME_PTP_GENERAL \
1048 	"ptp_general"
1049 #define DEVLINK_TRAP_GENERIC_NAME_FLOW_ACTION_SAMPLE \
1050 	"flow_action_sample"
1051 #define DEVLINK_TRAP_GENERIC_NAME_FLOW_ACTION_TRAP \
1052 	"flow_action_trap"
1053 #define DEVLINK_TRAP_GENERIC_NAME_EARLY_DROP \
1054 	"early_drop"
1055 #define DEVLINK_TRAP_GENERIC_NAME_VXLAN_PARSING \
1056 	"vxlan_parsing"
1057 #define DEVLINK_TRAP_GENERIC_NAME_LLC_SNAP_PARSING \
1058 	"llc_snap_parsing"
1059 #define DEVLINK_TRAP_GENERIC_NAME_VLAN_PARSING \
1060 	"vlan_parsing"
1061 #define DEVLINK_TRAP_GENERIC_NAME_PPPOE_PPP_PARSING \
1062 	"pppoe_ppp_parsing"
1063 #define DEVLINK_TRAP_GENERIC_NAME_MPLS_PARSING \
1064 	"mpls_parsing"
1065 #define DEVLINK_TRAP_GENERIC_NAME_ARP_PARSING \
1066 	"arp_parsing"
1067 #define DEVLINK_TRAP_GENERIC_NAME_IP_1_PARSING \
1068 	"ip_1_parsing"
1069 #define DEVLINK_TRAP_GENERIC_NAME_IP_N_PARSING \
1070 	"ip_n_parsing"
1071 #define DEVLINK_TRAP_GENERIC_NAME_GRE_PARSING \
1072 	"gre_parsing"
1073 #define DEVLINK_TRAP_GENERIC_NAME_UDP_PARSING \
1074 	"udp_parsing"
1075 #define DEVLINK_TRAP_GENERIC_NAME_TCP_PARSING \
1076 	"tcp_parsing"
1077 #define DEVLINK_TRAP_GENERIC_NAME_IPSEC_PARSING \
1078 	"ipsec_parsing"
1079 #define DEVLINK_TRAP_GENERIC_NAME_SCTP_PARSING \
1080 	"sctp_parsing"
1081 #define DEVLINK_TRAP_GENERIC_NAME_DCCP_PARSING \
1082 	"dccp_parsing"
1083 #define DEVLINK_TRAP_GENERIC_NAME_GTP_PARSING \
1084 	"gtp_parsing"
1085 #define DEVLINK_TRAP_GENERIC_NAME_ESP_PARSING \
1086 	"esp_parsing"
1087 #define DEVLINK_TRAP_GENERIC_NAME_BLACKHOLE_NEXTHOP \
1088 	"blackhole_nexthop"
1089 #define DEVLINK_TRAP_GENERIC_NAME_DMAC_FILTER \
1090 	"dmac_filter"
1091 
1092 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_L2_DROPS \
1093 	"l2_drops"
1094 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_L3_DROPS \
1095 	"l3_drops"
1096 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_L3_EXCEPTIONS \
1097 	"l3_exceptions"
1098 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_BUFFER_DROPS \
1099 	"buffer_drops"
1100 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_TUNNEL_DROPS \
1101 	"tunnel_drops"
1102 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_ACL_DROPS \
1103 	"acl_drops"
1104 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_STP \
1105 	"stp"
1106 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_LACP \
1107 	"lacp"
1108 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_LLDP \
1109 	"lldp"
1110 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_MC_SNOOPING  \
1111 	"mc_snooping"
1112 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_DHCP \
1113 	"dhcp"
1114 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_NEIGH_DISCOVERY \
1115 	"neigh_discovery"
1116 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_BFD \
1117 	"bfd"
1118 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_OSPF \
1119 	"ospf"
1120 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_BGP \
1121 	"bgp"
1122 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_VRRP \
1123 	"vrrp"
1124 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_PIM \
1125 	"pim"
1126 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_UC_LB \
1127 	"uc_loopback"
1128 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_LOCAL_DELIVERY \
1129 	"local_delivery"
1130 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_EXTERNAL_DELIVERY \
1131 	"external_delivery"
1132 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_IPV6 \
1133 	"ipv6"
1134 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_PTP_EVENT \
1135 	"ptp_event"
1136 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_PTP_GENERAL \
1137 	"ptp_general"
1138 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_ACL_SAMPLE \
1139 	"acl_sample"
1140 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_ACL_TRAP \
1141 	"acl_trap"
1142 #define DEVLINK_TRAP_GROUP_GENERIC_NAME_PARSER_ERROR_DROPS \
1143 	"parser_error_drops"
1144 
1145 #define DEVLINK_TRAP_GENERIC(_type, _init_action, _id, _group_id,	      \
1146 			     _metadata_cap)				      \
1147 	{								      \
1148 		.type = DEVLINK_TRAP_TYPE_##_type,			      \
1149 		.init_action = DEVLINK_TRAP_ACTION_##_init_action,	      \
1150 		.generic = true,					      \
1151 		.id = DEVLINK_TRAP_GENERIC_ID_##_id,			      \
1152 		.name = DEVLINK_TRAP_GENERIC_NAME_##_id,		      \
1153 		.init_group_id = _group_id,				      \
1154 		.metadata_cap = _metadata_cap,				      \
1155 	}
1156 
1157 #define DEVLINK_TRAP_DRIVER(_type, _init_action, _id, _name, _group_id,	      \
1158 			    _metadata_cap)				      \
1159 	{								      \
1160 		.type = DEVLINK_TRAP_TYPE_##_type,			      \
1161 		.init_action = DEVLINK_TRAP_ACTION_##_init_action,	      \
1162 		.generic = false,					      \
1163 		.id = _id,						      \
1164 		.name = _name,						      \
1165 		.init_group_id = _group_id,				      \
1166 		.metadata_cap = _metadata_cap,				      \
1167 	}
1168 
1169 #define DEVLINK_TRAP_GROUP_GENERIC(_id, _policer_id)			      \
1170 	{								      \
1171 		.name = DEVLINK_TRAP_GROUP_GENERIC_NAME_##_id,		      \
1172 		.id = DEVLINK_TRAP_GROUP_GENERIC_ID_##_id,		      \
1173 		.generic = true,					      \
1174 		.init_policer_id = _policer_id,				      \
1175 	}
1176 
1177 #define DEVLINK_TRAP_POLICER(_id, _rate, _burst, _max_rate, _min_rate,	      \
1178 			     _max_burst, _min_burst)			      \
1179 	{								      \
1180 		.id = _id,						      \
1181 		.init_rate = _rate,					      \
1182 		.init_burst = _burst,					      \
1183 		.max_rate = _max_rate,					      \
1184 		.min_rate = _min_rate,					      \
1185 		.max_burst = _max_burst,				      \
1186 		.min_burst = _min_burst,				      \
1187 	}
1188 
1189 enum {
1190 	/* device supports reload operations */
1191 	DEVLINK_F_RELOAD = 1UL << 0,
1192 };
1193 
1194 struct devlink_ops {
1195 	/**
1196 	 * @supported_flash_update_params:
1197 	 * mask of parameters supported by the driver's .flash_update
1198 	 * implemementation.
1199 	 */
1200 	u32 supported_flash_update_params;
1201 	unsigned long reload_actions;
1202 	unsigned long reload_limits;
1203 	int (*reload_down)(struct devlink *devlink, bool netns_change,
1204 			   enum devlink_reload_action action,
1205 			   enum devlink_reload_limit limit,
1206 			   struct netlink_ext_ack *extack);
1207 	int (*reload_up)(struct devlink *devlink, enum devlink_reload_action action,
1208 			 enum devlink_reload_limit limit, u32 *actions_performed,
1209 			 struct netlink_ext_ack *extack);
1210 	int (*port_type_set)(struct devlink_port *devlink_port,
1211 			     enum devlink_port_type port_type);
1212 	int (*port_split)(struct devlink *devlink, unsigned int port_index,
1213 			  unsigned int count, struct netlink_ext_ack *extack);
1214 	int (*port_unsplit)(struct devlink *devlink, unsigned int port_index,
1215 			    struct netlink_ext_ack *extack);
1216 	int (*sb_pool_get)(struct devlink *devlink, unsigned int sb_index,
1217 			   u16 pool_index,
1218 			   struct devlink_sb_pool_info *pool_info);
1219 	int (*sb_pool_set)(struct devlink *devlink, unsigned int sb_index,
1220 			   u16 pool_index, u32 size,
1221 			   enum devlink_sb_threshold_type threshold_type,
1222 			   struct netlink_ext_ack *extack);
1223 	int (*sb_port_pool_get)(struct devlink_port *devlink_port,
1224 				unsigned int sb_index, u16 pool_index,
1225 				u32 *p_threshold);
1226 	int (*sb_port_pool_set)(struct devlink_port *devlink_port,
1227 				unsigned int sb_index, u16 pool_index,
1228 				u32 threshold, struct netlink_ext_ack *extack);
1229 	int (*sb_tc_pool_bind_get)(struct devlink_port *devlink_port,
1230 				   unsigned int sb_index,
1231 				   u16 tc_index,
1232 				   enum devlink_sb_pool_type pool_type,
1233 				   u16 *p_pool_index, u32 *p_threshold);
1234 	int (*sb_tc_pool_bind_set)(struct devlink_port *devlink_port,
1235 				   unsigned int sb_index,
1236 				   u16 tc_index,
1237 				   enum devlink_sb_pool_type pool_type,
1238 				   u16 pool_index, u32 threshold,
1239 				   struct netlink_ext_ack *extack);
1240 	int (*sb_occ_snapshot)(struct devlink *devlink,
1241 			       unsigned int sb_index);
1242 	int (*sb_occ_max_clear)(struct devlink *devlink,
1243 				unsigned int sb_index);
1244 	int (*sb_occ_port_pool_get)(struct devlink_port *devlink_port,
1245 				    unsigned int sb_index, u16 pool_index,
1246 				    u32 *p_cur, u32 *p_max);
1247 	int (*sb_occ_tc_port_bind_get)(struct devlink_port *devlink_port,
1248 				       unsigned int sb_index,
1249 				       u16 tc_index,
1250 				       enum devlink_sb_pool_type pool_type,
1251 				       u32 *p_cur, u32 *p_max);
1252 
1253 	int (*eswitch_mode_get)(struct devlink *devlink, u16 *p_mode);
1254 	int (*eswitch_mode_set)(struct devlink *devlink, u16 mode,
1255 				struct netlink_ext_ack *extack);
1256 	int (*eswitch_inline_mode_get)(struct devlink *devlink, u8 *p_inline_mode);
1257 	int (*eswitch_inline_mode_set)(struct devlink *devlink, u8 inline_mode,
1258 				       struct netlink_ext_ack *extack);
1259 	int (*eswitch_encap_mode_get)(struct devlink *devlink,
1260 				      enum devlink_eswitch_encap_mode *p_encap_mode);
1261 	int (*eswitch_encap_mode_set)(struct devlink *devlink,
1262 				      enum devlink_eswitch_encap_mode encap_mode,
1263 				      struct netlink_ext_ack *extack);
1264 	int (*info_get)(struct devlink *devlink, struct devlink_info_req *req,
1265 			struct netlink_ext_ack *extack);
1266 	/**
1267 	 * @flash_update: Device flash update function
1268 	 *
1269 	 * Used to perform a flash update for the device. The set of
1270 	 * parameters supported by the driver should be set in
1271 	 * supported_flash_update_params.
1272 	 */
1273 	int (*flash_update)(struct devlink *devlink,
1274 			    struct devlink_flash_update_params *params,
1275 			    struct netlink_ext_ack *extack);
1276 	/**
1277 	 * @trap_init: Trap initialization function.
1278 	 *
1279 	 * Should be used by device drivers to initialize the trap in the
1280 	 * underlying device. Drivers should also store the provided trap
1281 	 * context, so that they could efficiently pass it to
1282 	 * devlink_trap_report() when the trap is triggered.
1283 	 */
1284 	int (*trap_init)(struct devlink *devlink,
1285 			 const struct devlink_trap *trap, void *trap_ctx);
1286 	/**
1287 	 * @trap_fini: Trap de-initialization function.
1288 	 *
1289 	 * Should be used by device drivers to de-initialize the trap in the
1290 	 * underlying device.
1291 	 */
1292 	void (*trap_fini)(struct devlink *devlink,
1293 			  const struct devlink_trap *trap, void *trap_ctx);
1294 	/**
1295 	 * @trap_action_set: Trap action set function.
1296 	 */
1297 	int (*trap_action_set)(struct devlink *devlink,
1298 			       const struct devlink_trap *trap,
1299 			       enum devlink_trap_action action,
1300 			       struct netlink_ext_ack *extack);
1301 	/**
1302 	 * @trap_group_init: Trap group initialization function.
1303 	 *
1304 	 * Should be used by device drivers to initialize the trap group in the
1305 	 * underlying device.
1306 	 */
1307 	int (*trap_group_init)(struct devlink *devlink,
1308 			       const struct devlink_trap_group *group);
1309 	/**
1310 	 * @trap_group_set: Trap group parameters set function.
1311 	 *
1312 	 * Note: @policer can be NULL when a policer is being unbound from
1313 	 * @group.
1314 	 */
1315 	int (*trap_group_set)(struct devlink *devlink,
1316 			      const struct devlink_trap_group *group,
1317 			      const struct devlink_trap_policer *policer,
1318 			      struct netlink_ext_ack *extack);
1319 	/**
1320 	 * @trap_group_action_set: Trap group action set function.
1321 	 *
1322 	 * If this callback is populated, it will take precedence over looping
1323 	 * over all traps in a group and calling .trap_action_set().
1324 	 */
1325 	int (*trap_group_action_set)(struct devlink *devlink,
1326 				     const struct devlink_trap_group *group,
1327 				     enum devlink_trap_action action,
1328 				     struct netlink_ext_ack *extack);
1329 	/**
1330 	 * @trap_drop_counter_get: Trap drop counter get function.
1331 	 *
1332 	 * Should be used by device drivers to report number of packets
1333 	 * that have been dropped, and cannot be passed to the devlink
1334 	 * subsystem by the underlying device.
1335 	 */
1336 	int (*trap_drop_counter_get)(struct devlink *devlink,
1337 				     const struct devlink_trap *trap,
1338 				     u64 *p_drops);
1339 	/**
1340 	 * @trap_policer_init: Trap policer initialization function.
1341 	 *
1342 	 * Should be used by device drivers to initialize the trap policer in
1343 	 * the underlying device.
1344 	 */
1345 	int (*trap_policer_init)(struct devlink *devlink,
1346 				 const struct devlink_trap_policer *policer);
1347 	/**
1348 	 * @trap_policer_fini: Trap policer de-initialization function.
1349 	 *
1350 	 * Should be used by device drivers to de-initialize the trap policer
1351 	 * in the underlying device.
1352 	 */
1353 	void (*trap_policer_fini)(struct devlink *devlink,
1354 				  const struct devlink_trap_policer *policer);
1355 	/**
1356 	 * @trap_policer_set: Trap policer parameters set function.
1357 	 */
1358 	int (*trap_policer_set)(struct devlink *devlink,
1359 				const struct devlink_trap_policer *policer,
1360 				u64 rate, u64 burst,
1361 				struct netlink_ext_ack *extack);
1362 	/**
1363 	 * @trap_policer_counter_get: Trap policer counter get function.
1364 	 *
1365 	 * Should be used by device drivers to report number of packets dropped
1366 	 * by the policer.
1367 	 */
1368 	int (*trap_policer_counter_get)(struct devlink *devlink,
1369 					const struct devlink_trap_policer *policer,
1370 					u64 *p_drops);
1371 	/**
1372 	 * @port_function_hw_addr_get: Port function's hardware address get function.
1373 	 *
1374 	 * Should be used by device drivers to report the hardware address of a function managed
1375 	 * by the devlink port. Driver should return -EOPNOTSUPP if it doesn't support port
1376 	 * function handling for a particular port.
1377 	 *
1378 	 * Note: @extack can be NULL when port notifier queries the port function.
1379 	 */
1380 	int (*port_function_hw_addr_get)(struct devlink_port *port, u8 *hw_addr,
1381 					 int *hw_addr_len,
1382 					 struct netlink_ext_ack *extack);
1383 	/**
1384 	 * @port_function_hw_addr_set: Port function's hardware address set function.
1385 	 *
1386 	 * Should be used by device drivers to set the hardware address of a function managed
1387 	 * by the devlink port. Driver should return -EOPNOTSUPP if it doesn't support port
1388 	 * function handling for a particular port.
1389 	 */
1390 	int (*port_function_hw_addr_set)(struct devlink_port *port,
1391 					 const u8 *hw_addr, int hw_addr_len,
1392 					 struct netlink_ext_ack *extack);
1393 	/**
1394 	 * port_new() - Add a new port function of a specified flavor
1395 	 * @devlink: Devlink instance
1396 	 * @attrs: attributes of the new port
1397 	 * @extack: extack for reporting error messages
1398 	 * @new_port_index: index of the new port
1399 	 *
1400 	 * Devlink core will call this device driver function upon user request
1401 	 * to create a new port function of a specified flavor and optional
1402 	 * attributes
1403 	 *
1404 	 * Notes:
1405 	 *	- Called without devlink instance lock being held. Drivers must
1406 	 *	  implement own means of synchronization
1407 	 *	- On success, drivers must register a port with devlink core
1408 	 *
1409 	 * Return: 0 on success, negative value otherwise.
1410 	 */
1411 	int (*port_new)(struct devlink *devlink,
1412 			const struct devlink_port_new_attrs *attrs,
1413 			struct netlink_ext_ack *extack,
1414 			unsigned int *new_port_index);
1415 	/**
1416 	 * port_del() - Delete a port function
1417 	 * @devlink: Devlink instance
1418 	 * @port_index: port function index to delete
1419 	 * @extack: extack for reporting error messages
1420 	 *
1421 	 * Devlink core will call this device driver function upon user request
1422 	 * to delete a previously created port function
1423 	 *
1424 	 * Notes:
1425 	 *	- Called without devlink instance lock being held. Drivers must
1426 	 *	  implement own means of synchronization
1427 	 *	- On success, drivers must unregister the corresponding devlink
1428 	 *	  port
1429 	 *
1430 	 * Return: 0 on success, negative value otherwise.
1431 	 */
1432 	int (*port_del)(struct devlink *devlink, unsigned int port_index,
1433 			struct netlink_ext_ack *extack);
1434 	/**
1435 	 * port_fn_state_get() - Get the state of a port function
1436 	 * @devlink: Devlink instance
1437 	 * @port: The devlink port
1438 	 * @state: Admin configured state
1439 	 * @opstate: Current operational state
1440 	 * @extack: extack for reporting error messages
1441 	 *
1442 	 * Reports the admin and operational state of a devlink port function
1443 	 *
1444 	 * Return: 0 on success, negative value otherwise.
1445 	 */
1446 	int (*port_fn_state_get)(struct devlink_port *port,
1447 				 enum devlink_port_fn_state *state,
1448 				 enum devlink_port_fn_opstate *opstate,
1449 				 struct netlink_ext_ack *extack);
1450 	/**
1451 	 * port_fn_state_set() - Set the admin state of a port function
1452 	 * @devlink: Devlink instance
1453 	 * @port: The devlink port
1454 	 * @state: Admin state
1455 	 * @extack: extack for reporting error messages
1456 	 *
1457 	 * Set the admin state of a devlink port function
1458 	 *
1459 	 * Return: 0 on success, negative value otherwise.
1460 	 */
1461 	int (*port_fn_state_set)(struct devlink_port *port,
1462 				 enum devlink_port_fn_state state,
1463 				 struct netlink_ext_ack *extack);
1464 
1465 	/**
1466 	 * Rate control callbacks.
1467 	 */
1468 	int (*rate_leaf_tx_share_set)(struct devlink_rate *devlink_rate, void *priv,
1469 				      u64 tx_share, struct netlink_ext_ack *extack);
1470 	int (*rate_leaf_tx_max_set)(struct devlink_rate *devlink_rate, void *priv,
1471 				    u64 tx_max, struct netlink_ext_ack *extack);
1472 	int (*rate_node_tx_share_set)(struct devlink_rate *devlink_rate, void *priv,
1473 				      u64 tx_share, struct netlink_ext_ack *extack);
1474 	int (*rate_node_tx_max_set)(struct devlink_rate *devlink_rate, void *priv,
1475 				    u64 tx_max, struct netlink_ext_ack *extack);
1476 	int (*rate_node_new)(struct devlink_rate *rate_node, void **priv,
1477 			     struct netlink_ext_ack *extack);
1478 	int (*rate_node_del)(struct devlink_rate *rate_node, void *priv,
1479 			     struct netlink_ext_ack *extack);
1480 	int (*rate_leaf_parent_set)(struct devlink_rate *child,
1481 				    struct devlink_rate *parent,
1482 				    void *priv_child, void *priv_parent,
1483 				    struct netlink_ext_ack *extack);
1484 	int (*rate_node_parent_set)(struct devlink_rate *child,
1485 				    struct devlink_rate *parent,
1486 				    void *priv_child, void *priv_parent,
1487 				    struct netlink_ext_ack *extack);
1488 };
1489 
1490 void *devlink_priv(struct devlink *devlink);
1491 struct devlink *priv_to_devlink(void *priv);
1492 struct device *devlink_to_dev(const struct devlink *devlink);
1493 
1494 struct ib_device;
1495 
1496 struct net *devlink_net(const struct devlink *devlink);
1497 /* This call is intended for software devices that can create
1498  * devlink instances in other namespaces than init_net.
1499  *
1500  * Drivers that operate on real HW must use devlink_alloc() instead.
1501  */
1502 struct devlink *devlink_alloc_ns(const struct devlink_ops *ops,
1503 				 size_t priv_size, struct net *net,
1504 				 struct device *dev);
1505 static inline struct devlink *devlink_alloc(const struct devlink_ops *ops,
1506 					    size_t priv_size,
1507 					    struct device *dev)
1508 {
1509 	return devlink_alloc_ns(ops, priv_size, &init_net, dev);
1510 }
1511 void devlink_set_features(struct devlink *devlink, u64 features);
1512 void devlink_register(struct devlink *devlink);
1513 void devlink_unregister(struct devlink *devlink);
1514 void devlink_free(struct devlink *devlink);
1515 int devlink_port_register(struct devlink *devlink,
1516 			  struct devlink_port *devlink_port,
1517 			  unsigned int port_index);
1518 void devlink_port_unregister(struct devlink_port *devlink_port);
1519 void devlink_port_type_eth_set(struct devlink_port *devlink_port,
1520 			       struct net_device *netdev);
1521 void devlink_port_type_ib_set(struct devlink_port *devlink_port,
1522 			      struct ib_device *ibdev);
1523 void devlink_port_type_clear(struct devlink_port *devlink_port);
1524 void devlink_port_attrs_set(struct devlink_port *devlink_port,
1525 			    struct devlink_port_attrs *devlink_port_attrs);
1526 void devlink_port_attrs_pci_pf_set(struct devlink_port *devlink_port, u32 controller,
1527 				   u16 pf, bool external);
1528 void devlink_port_attrs_pci_vf_set(struct devlink_port *devlink_port, u32 controller,
1529 				   u16 pf, u16 vf, bool external);
1530 void devlink_port_attrs_pci_sf_set(struct devlink_port *devlink_port,
1531 				   u32 controller, u16 pf, u32 sf,
1532 				   bool external);
1533 int devlink_rate_leaf_create(struct devlink_port *port, void *priv);
1534 void devlink_rate_leaf_destroy(struct devlink_port *devlink_port);
1535 void devlink_rate_nodes_destroy(struct devlink *devlink);
1536 int devlink_sb_register(struct devlink *devlink, unsigned int sb_index,
1537 			u32 size, u16 ingress_pools_count,
1538 			u16 egress_pools_count, u16 ingress_tc_count,
1539 			u16 egress_tc_count);
1540 void devlink_sb_unregister(struct devlink *devlink, unsigned int sb_index);
1541 int devlink_dpipe_table_register(struct devlink *devlink,
1542 				 const char *table_name,
1543 				 struct devlink_dpipe_table_ops *table_ops,
1544 				 void *priv, bool counter_control_extern);
1545 void devlink_dpipe_table_unregister(struct devlink *devlink,
1546 				    const char *table_name);
1547 int devlink_dpipe_headers_register(struct devlink *devlink,
1548 				   struct devlink_dpipe_headers *dpipe_headers);
1549 void devlink_dpipe_headers_unregister(struct devlink *devlink);
1550 bool devlink_dpipe_table_counter_enabled(struct devlink *devlink,
1551 					 const char *table_name);
1552 int devlink_dpipe_entry_ctx_prepare(struct devlink_dpipe_dump_ctx *dump_ctx);
1553 int devlink_dpipe_entry_ctx_append(struct devlink_dpipe_dump_ctx *dump_ctx,
1554 				   struct devlink_dpipe_entry *entry);
1555 int devlink_dpipe_entry_ctx_close(struct devlink_dpipe_dump_ctx *dump_ctx);
1556 void devlink_dpipe_entry_clear(struct devlink_dpipe_entry *entry);
1557 int devlink_dpipe_action_put(struct sk_buff *skb,
1558 			     struct devlink_dpipe_action *action);
1559 int devlink_dpipe_match_put(struct sk_buff *skb,
1560 			    struct devlink_dpipe_match *match);
1561 extern struct devlink_dpipe_header devlink_dpipe_header_ethernet;
1562 extern struct devlink_dpipe_header devlink_dpipe_header_ipv4;
1563 extern struct devlink_dpipe_header devlink_dpipe_header_ipv6;
1564 
1565 int devlink_resource_register(struct devlink *devlink,
1566 			      const char *resource_name,
1567 			      u64 resource_size,
1568 			      u64 resource_id,
1569 			      u64 parent_resource_id,
1570 			      const struct devlink_resource_size_params *size_params);
1571 void devlink_resources_unregister(struct devlink *devlink,
1572 				  struct devlink_resource *resource);
1573 int devlink_resource_size_get(struct devlink *devlink,
1574 			      u64 resource_id,
1575 			      u64 *p_resource_size);
1576 int devlink_dpipe_table_resource_set(struct devlink *devlink,
1577 				     const char *table_name, u64 resource_id,
1578 				     u64 resource_units);
1579 void devlink_resource_occ_get_register(struct devlink *devlink,
1580 				       u64 resource_id,
1581 				       devlink_resource_occ_get_t *occ_get,
1582 				       void *occ_get_priv);
1583 void devlink_resource_occ_get_unregister(struct devlink *devlink,
1584 					 u64 resource_id);
1585 int devlink_params_register(struct devlink *devlink,
1586 			    const struct devlink_param *params,
1587 			    size_t params_count);
1588 void devlink_params_unregister(struct devlink *devlink,
1589 			       const struct devlink_param *params,
1590 			       size_t params_count);
1591 int devlink_param_register(struct devlink *devlink,
1592 			   const struct devlink_param *param);
1593 void devlink_param_unregister(struct devlink *devlink,
1594 			      const struct devlink_param *param);
1595 void devlink_params_publish(struct devlink *devlink);
1596 void devlink_params_unpublish(struct devlink *devlink);
1597 int devlink_param_driverinit_value_get(struct devlink *devlink, u32 param_id,
1598 				       union devlink_param_value *init_val);
1599 int devlink_param_driverinit_value_set(struct devlink *devlink, u32 param_id,
1600 				       union devlink_param_value init_val);
1601 void devlink_param_value_changed(struct devlink *devlink, u32 param_id);
1602 struct devlink_region *
1603 devlink_region_create(struct devlink *devlink,
1604 		      const struct devlink_region_ops *ops,
1605 		      u32 region_max_snapshots, u64 region_size);
1606 struct devlink_region *
1607 devlink_port_region_create(struct devlink_port *port,
1608 			   const struct devlink_port_region_ops *ops,
1609 			   u32 region_max_snapshots, u64 region_size);
1610 void devlink_region_destroy(struct devlink_region *region);
1611 void devlink_port_region_destroy(struct devlink_region *region);
1612 
1613 int devlink_region_snapshot_id_get(struct devlink *devlink, u32 *id);
1614 void devlink_region_snapshot_id_put(struct devlink *devlink, u32 id);
1615 int devlink_region_snapshot_create(struct devlink_region *region,
1616 				   u8 *data, u32 snapshot_id);
1617 int devlink_info_serial_number_put(struct devlink_info_req *req,
1618 				   const char *sn);
1619 int devlink_info_driver_name_put(struct devlink_info_req *req,
1620 				 const char *name);
1621 int devlink_info_board_serial_number_put(struct devlink_info_req *req,
1622 					 const char *bsn);
1623 int devlink_info_version_fixed_put(struct devlink_info_req *req,
1624 				   const char *version_name,
1625 				   const char *version_value);
1626 int devlink_info_version_stored_put(struct devlink_info_req *req,
1627 				    const char *version_name,
1628 				    const char *version_value);
1629 int devlink_info_version_running_put(struct devlink_info_req *req,
1630 				     const char *version_name,
1631 				     const char *version_value);
1632 
1633 int devlink_fmsg_obj_nest_start(struct devlink_fmsg *fmsg);
1634 int devlink_fmsg_obj_nest_end(struct devlink_fmsg *fmsg);
1635 
1636 int devlink_fmsg_pair_nest_start(struct devlink_fmsg *fmsg, const char *name);
1637 int devlink_fmsg_pair_nest_end(struct devlink_fmsg *fmsg);
1638 
1639 int devlink_fmsg_arr_pair_nest_start(struct devlink_fmsg *fmsg,
1640 				     const char *name);
1641 int devlink_fmsg_arr_pair_nest_end(struct devlink_fmsg *fmsg);
1642 int devlink_fmsg_binary_pair_nest_start(struct devlink_fmsg *fmsg,
1643 					const char *name);
1644 int devlink_fmsg_binary_pair_nest_end(struct devlink_fmsg *fmsg);
1645 
1646 int devlink_fmsg_u32_put(struct devlink_fmsg *fmsg, u32 value);
1647 int devlink_fmsg_string_put(struct devlink_fmsg *fmsg, const char *value);
1648 int devlink_fmsg_binary_put(struct devlink_fmsg *fmsg, const void *value,
1649 			    u16 value_len);
1650 
1651 int devlink_fmsg_bool_pair_put(struct devlink_fmsg *fmsg, const char *name,
1652 			       bool value);
1653 int devlink_fmsg_u8_pair_put(struct devlink_fmsg *fmsg, const char *name,
1654 			     u8 value);
1655 int devlink_fmsg_u32_pair_put(struct devlink_fmsg *fmsg, const char *name,
1656 			      u32 value);
1657 int devlink_fmsg_u64_pair_put(struct devlink_fmsg *fmsg, const char *name,
1658 			      u64 value);
1659 int devlink_fmsg_string_pair_put(struct devlink_fmsg *fmsg, const char *name,
1660 				 const char *value);
1661 int devlink_fmsg_binary_pair_put(struct devlink_fmsg *fmsg, const char *name,
1662 				 const void *value, u32 value_len);
1663 
1664 struct devlink_health_reporter *
1665 devlink_health_reporter_create(struct devlink *devlink,
1666 			       const struct devlink_health_reporter_ops *ops,
1667 			       u64 graceful_period, void *priv);
1668 
1669 struct devlink_health_reporter *
1670 devlink_port_health_reporter_create(struct devlink_port *port,
1671 				    const struct devlink_health_reporter_ops *ops,
1672 				    u64 graceful_period, void *priv);
1673 
1674 void
1675 devlink_health_reporter_destroy(struct devlink_health_reporter *reporter);
1676 
1677 void
1678 devlink_port_health_reporter_destroy(struct devlink_health_reporter *reporter);
1679 
1680 void *
1681 devlink_health_reporter_priv(struct devlink_health_reporter *reporter);
1682 int devlink_health_report(struct devlink_health_reporter *reporter,
1683 			  const char *msg, void *priv_ctx);
1684 void
1685 devlink_health_reporter_state_update(struct devlink_health_reporter *reporter,
1686 				     enum devlink_health_reporter_state state);
1687 void
1688 devlink_health_reporter_recovery_done(struct devlink_health_reporter *reporter);
1689 
1690 bool devlink_is_reload_failed(const struct devlink *devlink);
1691 void devlink_remote_reload_actions_performed(struct devlink *devlink,
1692 					     enum devlink_reload_limit limit,
1693 					     u32 actions_performed);
1694 
1695 void devlink_flash_update_status_notify(struct devlink *devlink,
1696 					const char *status_msg,
1697 					const char *component,
1698 					unsigned long done,
1699 					unsigned long total);
1700 void devlink_flash_update_timeout_notify(struct devlink *devlink,
1701 					 const char *status_msg,
1702 					 const char *component,
1703 					 unsigned long timeout);
1704 
1705 int devlink_traps_register(struct devlink *devlink,
1706 			   const struct devlink_trap *traps,
1707 			   size_t traps_count, void *priv);
1708 void devlink_traps_unregister(struct devlink *devlink,
1709 			      const struct devlink_trap *traps,
1710 			      size_t traps_count);
1711 void devlink_trap_report(struct devlink *devlink, struct sk_buff *skb,
1712 			 void *trap_ctx, struct devlink_port *in_devlink_port,
1713 			 const struct flow_action_cookie *fa_cookie);
1714 void *devlink_trap_ctx_priv(void *trap_ctx);
1715 int devlink_trap_groups_register(struct devlink *devlink,
1716 				 const struct devlink_trap_group *groups,
1717 				 size_t groups_count);
1718 void devlink_trap_groups_unregister(struct devlink *devlink,
1719 				    const struct devlink_trap_group *groups,
1720 				    size_t groups_count);
1721 int
1722 devlink_trap_policers_register(struct devlink *devlink,
1723 			       const struct devlink_trap_policer *policers,
1724 			       size_t policers_count);
1725 void
1726 devlink_trap_policers_unregister(struct devlink *devlink,
1727 				 const struct devlink_trap_policer *policers,
1728 				 size_t policers_count);
1729 
1730 #if IS_ENABLED(CONFIG_NET_DEVLINK)
1731 
1732 void devlink_compat_running_version(struct net_device *dev,
1733 				    char *buf, size_t len);
1734 int devlink_compat_flash_update(struct net_device *dev, const char *file_name);
1735 int devlink_compat_phys_port_name_get(struct net_device *dev,
1736 				      char *name, size_t len);
1737 int devlink_compat_switch_id_get(struct net_device *dev,
1738 				 struct netdev_phys_item_id *ppid);
1739 
1740 #else
1741 
1742 static inline void
1743 devlink_compat_running_version(struct net_device *dev, char *buf, size_t len)
1744 {
1745 }
1746 
1747 static inline int
1748 devlink_compat_flash_update(struct net_device *dev, const char *file_name)
1749 {
1750 	return -EOPNOTSUPP;
1751 }
1752 
1753 static inline int
1754 devlink_compat_phys_port_name_get(struct net_device *dev,
1755 				  char *name, size_t len)
1756 {
1757 	return -EOPNOTSUPP;
1758 }
1759 
1760 static inline int
1761 devlink_compat_switch_id_get(struct net_device *dev,
1762 			     struct netdev_phys_item_id *ppid)
1763 {
1764 	return -EOPNOTSUPP;
1765 }
1766 
1767 #endif
1768 
1769 #endif /* _NET_DEVLINK_H_ */
1770