blob: 2b384a38911bce17f5c58053ec63217a4c2a1369 [file] [log] [blame]
Jiri Pirkobfcd3a42016-02-26 17:32:23 +01001/*
2 * include/net/devlink.h - Network physical device Netlink interface
3 * Copyright (c) 2016 Mellanox Technologies. All rights reserved.
4 * Copyright (c) 2016 Jiri Pirko <jiri@mellanox.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11#ifndef _NET_DEVLINK_H_
12#define _NET_DEVLINK_H_
13
14#include <linux/device.h>
15#include <linux/slab.h>
16#include <linux/gfp.h>
17#include <linux/list.h>
18#include <linux/netdevice.h>
19#include <net/net_namespace.h>
20#include <uapi/linux/devlink.h>
21
22struct devlink_ops;
23
24struct devlink {
25 struct list_head list;
26 struct list_head port_list;
Jiri Pirkobf797472016-04-14 18:19:13 +020027 struct list_head sb_list;
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +020028 struct list_head dpipe_table_list;
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +010029 struct list_head resource_list;
Moshe Shemesheabaef12018-07-04 14:30:28 +030030 struct list_head param_list;
Alex Veskerb16ebe92018-07-12 15:13:08 +030031 struct list_head region_list;
Alex Veskerccadfa42018-07-12 15:13:09 +030032 u32 snapshot_id;
Eran Ben Elishaa0bdcc52019-02-07 11:36:33 +020033 struct list_head reporter_list;
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +020034 struct devlink_dpipe_headers *dpipe_headers;
Jiri Pirkobfcd3a42016-02-26 17:32:23 +010035 const struct devlink_ops *ops;
36 struct device *dev;
37 possible_net_t _net;
Arkadi Sharshevsky2406e7e2018-01-15 08:59:02 +010038 struct mutex lock;
Jiri Pirkobfcd3a42016-02-26 17:32:23 +010039 char priv[0] __aligned(NETDEV_ALIGN);
40};
41
Jiri Pirkob9ffcba2018-05-18 09:29:00 +020042struct devlink_port_attrs {
43 bool set;
Jiri Pirko5ec13802018-05-18 09:29:01 +020044 enum devlink_port_flavour flavour;
Jiri Pirkob9ffcba2018-05-18 09:29:00 +020045 u32 port_number; /* same value as "split group" */
46 bool split;
47 u32 split_subport_number;
48};
49
Jiri Pirkobfcd3a42016-02-26 17:32:23 +010050struct devlink_port {
51 struct list_head list;
Vasundhara Volam39e61602019-01-28 18:00:20 +053052 struct list_head param_list;
Jiri Pirkobfcd3a42016-02-26 17:32:23 +010053 struct devlink *devlink;
54 unsigned index;
55 bool registered;
56 enum devlink_port_type type;
57 enum devlink_port_type desired_type;
58 void *type_dev;
Jiri Pirkob9ffcba2018-05-18 09:29:00 +020059 struct devlink_port_attrs attrs;
Jiri Pirkobfcd3a42016-02-26 17:32:23 +010060};
61
Jiri Pirkobf797472016-04-14 18:19:13 +020062struct devlink_sb_pool_info {
63 enum devlink_sb_pool_type pool_type;
64 u32 size;
65 enum devlink_sb_threshold_type threshold_type;
Jakub Kicinskibff57312019-02-01 17:56:28 -080066 u32 cell_size;
Jiri Pirkobf797472016-04-14 18:19:13 +020067};
68
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +020069/**
70 * struct devlink_dpipe_field - dpipe field object
71 * @name: field name
72 * @id: index inside the headers field array
73 * @bitwidth: bitwidth
74 * @mapping_type: mapping type
75 */
76struct devlink_dpipe_field {
77 const char *name;
78 unsigned int id;
79 unsigned int bitwidth;
80 enum devlink_dpipe_field_mapping_type mapping_type;
81};
82
83/**
84 * struct devlink_dpipe_header - dpipe header object
85 * @name: header name
86 * @id: index, global/local detrmined by global bit
87 * @fields: fields
88 * @fields_count: number of fields
89 * @global: indicates if header is shared like most protocol header
90 * or driver specific
91 */
92struct devlink_dpipe_header {
93 const char *name;
94 unsigned int id;
95 struct devlink_dpipe_field *fields;
96 unsigned int fields_count;
97 bool global;
98};
99
100/**
101 * struct devlink_dpipe_match - represents match operation
102 * @type: type of match
103 * @header_index: header index (packets can have several headers of same
104 * type like in case of tunnels)
105 * @header: header
106 * @fieled_id: field index
107 */
108struct devlink_dpipe_match {
109 enum devlink_dpipe_match_type type;
110 unsigned int header_index;
111 struct devlink_dpipe_header *header;
112 unsigned int field_id;
113};
114
115/**
116 * struct devlink_dpipe_action - represents action operation
117 * @type: type of action
118 * @header_index: header index (packets can have several headers of same
119 * type like in case of tunnels)
120 * @header: header
121 * @fieled_id: field index
122 */
123struct devlink_dpipe_action {
124 enum devlink_dpipe_action_type type;
125 unsigned int header_index;
126 struct devlink_dpipe_header *header;
127 unsigned int field_id;
128};
129
130/**
131 * struct devlink_dpipe_value - represents value of match/action
132 * @action: action
133 * @match: match
134 * @mapping_value: in case the field has some mapping this value
135 * specified the mapping value
136 * @mapping_valid: specify if mapping value is valid
137 * @value_size: value size
138 * @value: value
139 * @mask: bit mask
140 */
141struct devlink_dpipe_value {
142 union {
143 struct devlink_dpipe_action *action;
144 struct devlink_dpipe_match *match;
145 };
146 unsigned int mapping_value;
147 bool mapping_valid;
148 unsigned int value_size;
149 void *value;
150 void *mask;
151};
152
153/**
154 * struct devlink_dpipe_entry - table entry object
155 * @index: index of the entry in the table
156 * @match_values: match values
157 * @matche_values_count: count of matches tuples
158 * @action_values: actions values
159 * @action_values_count: count of actions values
160 * @counter: value of counter
161 * @counter_valid: Specify if value is valid from hardware
162 */
163struct devlink_dpipe_entry {
164 u64 index;
165 struct devlink_dpipe_value *match_values;
166 unsigned int match_values_count;
167 struct devlink_dpipe_value *action_values;
168 unsigned int action_values_count;
169 u64 counter;
170 bool counter_valid;
171};
172
173/**
174 * struct devlink_dpipe_dump_ctx - context provided to driver in order
175 * to dump
176 * @info: info
177 * @cmd: devlink command
178 * @skb: skb
179 * @nest: top attribute
180 * @hdr: hdr
181 */
182struct devlink_dpipe_dump_ctx {
183 struct genl_info *info;
184 enum devlink_command cmd;
185 struct sk_buff *skb;
186 struct nlattr *nest;
187 void *hdr;
188};
189
190struct devlink_dpipe_table_ops;
191
192/**
193 * struct devlink_dpipe_table - table object
194 * @priv: private
195 * @name: table name
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200196 * @counters_enabled: indicates if counters are active
197 * @counter_control_extern: indicates if counter control is in dpipe or
198 * external tool
Arkadi Sharshevsky56dc7cd2018-01-15 08:59:05 +0100199 * @resource_valid: Indicate that the resource id is valid
200 * @resource_id: relative resource this table is related to
201 * @resource_units: number of resource's unit consumed per table's entry
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200202 * @table_ops: table operations
203 * @rcu: rcu
204 */
205struct devlink_dpipe_table {
206 void *priv;
207 struct list_head list;
208 const char *name;
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200209 bool counters_enabled;
210 bool counter_control_extern;
Arkadi Sharshevsky56dc7cd2018-01-15 08:59:05 +0100211 bool resource_valid;
212 u64 resource_id;
213 u64 resource_units;
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200214 struct devlink_dpipe_table_ops *table_ops;
215 struct rcu_head rcu;
216};
217
218/**
219 * struct devlink_dpipe_table_ops - dpipe_table ops
220 * @actions_dump - dumps all tables actions
221 * @matches_dump - dumps all tables matches
222 * @entries_dump - dumps all active entries in the table
223 * @counters_set_update - when changing the counter status hardware sync
224 * maybe needed to allocate/free counter related
225 * resources
Arkadi Sharshevskyffd3cdc2017-08-24 08:40:02 +0200226 * @size_get - get size
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200227 */
228struct devlink_dpipe_table_ops {
229 int (*actions_dump)(void *priv, struct sk_buff *skb);
230 int (*matches_dump)(void *priv, struct sk_buff *skb);
231 int (*entries_dump)(void *priv, bool counters_enabled,
232 struct devlink_dpipe_dump_ctx *dump_ctx);
233 int (*counters_set_update)(void *priv, bool enable);
Arkadi Sharshevskyffd3cdc2017-08-24 08:40:02 +0200234 u64 (*size_get)(void *priv);
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200235};
236
237/**
238 * struct devlink_dpipe_headers - dpipe headers
239 * @headers - header array can be shared (global bit) or driver specific
240 * @headers_count - count of headers
241 */
242struct devlink_dpipe_headers {
243 struct devlink_dpipe_header **headers;
244 unsigned int headers_count;
245};
246
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100247/**
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100248 * struct devlink_resource_size_params - resource's size parameters
249 * @size_min: minimum size which can be set
250 * @size_max: maximum size which can be set
251 * @size_granularity: size granularity
252 * @size_unit: resource's basic unit
253 */
254struct devlink_resource_size_params {
255 u64 size_min;
256 u64 size_max;
257 u64 size_granularity;
258 enum devlink_resource_unit unit;
259};
260
Jiri Pirko77d27092018-02-28 13:12:09 +0100261static inline void
262devlink_resource_size_params_init(struct devlink_resource_size_params *size_params,
263 u64 size_min, u64 size_max,
264 u64 size_granularity,
265 enum devlink_resource_unit unit)
266{
267 size_params->size_min = size_min;
268 size_params->size_max = size_max;
269 size_params->size_granularity = size_granularity;
270 size_params->unit = unit;
271}
272
Jiri Pirkofc56be42018-04-05 22:13:21 +0200273typedef u64 devlink_resource_occ_get_t(void *priv);
274
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100275/**
276 * struct devlink_resource - devlink resource
277 * @name: name of the resource
278 * @id: id, per devlink instance
279 * @size: size of the resource
280 * @size_new: updated size of the resource, reload is needed
281 * @size_valid: valid in case the total size of the resource is valid
282 * including its children
283 * @parent: parent resource
284 * @size_params: size parameters
285 * @list: parent list
286 * @resource_list: list of child resources
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100287 */
288struct devlink_resource {
289 const char *name;
290 u64 id;
291 u64 size;
292 u64 size_new;
293 bool size_valid;
294 struct devlink_resource *parent;
Jiri Pirko77d27092018-02-28 13:12:09 +0100295 struct devlink_resource_size_params size_params;
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100296 struct list_head list;
297 struct list_head resource_list;
Jiri Pirkofc56be42018-04-05 22:13:21 +0200298 devlink_resource_occ_get_t *occ_get;
299 void *occ_get_priv;
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100300};
301
302#define DEVLINK_RESOURCE_ID_PARENT_TOP 0
303
Moshe Shemeshbde74ad12018-10-10 16:09:27 +0300304#define __DEVLINK_PARAM_MAX_STRING_VALUE 32
Moshe Shemesheabaef12018-07-04 14:30:28 +0300305enum devlink_param_type {
306 DEVLINK_PARAM_TYPE_U8,
307 DEVLINK_PARAM_TYPE_U16,
308 DEVLINK_PARAM_TYPE_U32,
309 DEVLINK_PARAM_TYPE_STRING,
310 DEVLINK_PARAM_TYPE_BOOL,
311};
312
313union devlink_param_value {
314 u8 vu8;
315 u16 vu16;
316 u32 vu32;
Moshe Shemeshbde74ad12018-10-10 16:09:27 +0300317 char vstr[__DEVLINK_PARAM_MAX_STRING_VALUE];
Moshe Shemesheabaef12018-07-04 14:30:28 +0300318 bool vbool;
319};
320
321struct devlink_param_gset_ctx {
322 union devlink_param_value val;
323 enum devlink_param_cmode cmode;
324};
325
326/**
327 * struct devlink_param - devlink configuration parameter data
328 * @name: name of the parameter
329 * @generic: indicates if the parameter is generic or driver specific
330 * @type: parameter type
331 * @supported_cmodes: bitmap of supported configuration modes
332 * @get: get parameter value, used for runtime and permanent
333 * configuration modes
334 * @set: set parameter value, used for runtime and permanent
335 * configuration modes
Moshe Shemeshe3b7ca12018-07-04 14:30:30 +0300336 * @validate: validate input value is applicable (within value range, etc.)
Moshe Shemesheabaef12018-07-04 14:30:28 +0300337 *
338 * This struct should be used by the driver to fill the data for
339 * a parameter it registers.
340 */
341struct devlink_param {
342 u32 id;
343 const char *name;
344 bool generic;
345 enum devlink_param_type type;
346 unsigned long supported_cmodes;
347 int (*get)(struct devlink *devlink, u32 id,
348 struct devlink_param_gset_ctx *ctx);
349 int (*set)(struct devlink *devlink, u32 id,
350 struct devlink_param_gset_ctx *ctx);
Moshe Shemeshe3b7ca12018-07-04 14:30:30 +0300351 int (*validate)(struct devlink *devlink, u32 id,
352 union devlink_param_value val,
353 struct netlink_ext_ack *extack);
Moshe Shemesheabaef12018-07-04 14:30:28 +0300354};
355
356struct devlink_param_item {
357 struct list_head list;
358 const struct devlink_param *param;
359 union devlink_param_value driverinit_value;
360 bool driverinit_value_valid;
Jiri Pirko7c62cfb2019-02-07 11:22:45 +0000361 bool published;
Moshe Shemesheabaef12018-07-04 14:30:28 +0300362};
363
364enum devlink_param_generic_id {
Moshe Shemesh036467c2018-07-04 14:30:33 +0300365 DEVLINK_PARAM_GENERIC_ID_INT_ERR_RESET,
366 DEVLINK_PARAM_GENERIC_ID_MAX_MACS,
Vasundhara Volamf567bcd2018-07-04 14:30:36 +0300367 DEVLINK_PARAM_GENERIC_ID_ENABLE_SRIOV,
Alex Veskerf6a698852018-07-12 15:13:17 +0300368 DEVLINK_PARAM_GENERIC_ID_REGION_SNAPSHOT,
Vasundhara Volame3b51062018-10-04 11:13:44 +0530369 DEVLINK_PARAM_GENERIC_ID_IGNORE_ARI,
Vasundhara Volamf61cba42018-10-04 11:13:45 +0530370 DEVLINK_PARAM_GENERIC_ID_MSIX_VEC_PER_PF_MAX,
Vasundhara Volam16511782018-10-04 11:13:46 +0530371 DEVLINK_PARAM_GENERIC_ID_MSIX_VEC_PER_PF_MIN,
Shalom Toledo846e9802018-12-03 07:58:59 +0000372 DEVLINK_PARAM_GENERIC_ID_FW_LOAD_POLICY,
Vasundhara Volamb6395832019-01-28 18:00:26 +0530373 DEVLINK_PARAM_GENERIC_ID_WOL,
Moshe Shemesheabaef12018-07-04 14:30:28 +0300374
375 /* add new param generic ids above here*/
376 __DEVLINK_PARAM_GENERIC_ID_MAX,
377 DEVLINK_PARAM_GENERIC_ID_MAX = __DEVLINK_PARAM_GENERIC_ID_MAX - 1,
378};
379
Vasundhara Volamb6395832019-01-28 18:00:26 +0530380enum devlink_param_wol_types {
381 DEVLINK_PARAM_WAKE_MAGIC = (1 << 0),
382};
383
Moshe Shemesh036467c2018-07-04 14:30:33 +0300384#define DEVLINK_PARAM_GENERIC_INT_ERR_RESET_NAME "internal_error_reset"
385#define DEVLINK_PARAM_GENERIC_INT_ERR_RESET_TYPE DEVLINK_PARAM_TYPE_BOOL
386
387#define DEVLINK_PARAM_GENERIC_MAX_MACS_NAME "max_macs"
388#define DEVLINK_PARAM_GENERIC_MAX_MACS_TYPE DEVLINK_PARAM_TYPE_U32
389
Vasundhara Volamf567bcd2018-07-04 14:30:36 +0300390#define DEVLINK_PARAM_GENERIC_ENABLE_SRIOV_NAME "enable_sriov"
391#define DEVLINK_PARAM_GENERIC_ENABLE_SRIOV_TYPE DEVLINK_PARAM_TYPE_BOOL
392
Alex Veskerf6a698852018-07-12 15:13:17 +0300393#define DEVLINK_PARAM_GENERIC_REGION_SNAPSHOT_NAME "region_snapshot_enable"
394#define DEVLINK_PARAM_GENERIC_REGION_SNAPSHOT_TYPE DEVLINK_PARAM_TYPE_BOOL
395
Vasundhara Volame3b51062018-10-04 11:13:44 +0530396#define DEVLINK_PARAM_GENERIC_IGNORE_ARI_NAME "ignore_ari"
397#define DEVLINK_PARAM_GENERIC_IGNORE_ARI_TYPE DEVLINK_PARAM_TYPE_BOOL
398
Vasundhara Volamf61cba42018-10-04 11:13:45 +0530399#define DEVLINK_PARAM_GENERIC_MSIX_VEC_PER_PF_MAX_NAME "msix_vec_per_pf_max"
400#define DEVLINK_PARAM_GENERIC_MSIX_VEC_PER_PF_MAX_TYPE DEVLINK_PARAM_TYPE_U32
401
Vasundhara Volam16511782018-10-04 11:13:46 +0530402#define DEVLINK_PARAM_GENERIC_MSIX_VEC_PER_PF_MIN_NAME "msix_vec_per_pf_min"
403#define DEVLINK_PARAM_GENERIC_MSIX_VEC_PER_PF_MIN_TYPE DEVLINK_PARAM_TYPE_U32
404
Shalom Toledo846e9802018-12-03 07:58:59 +0000405#define DEVLINK_PARAM_GENERIC_FW_LOAD_POLICY_NAME "fw_load_policy"
406#define DEVLINK_PARAM_GENERIC_FW_LOAD_POLICY_TYPE DEVLINK_PARAM_TYPE_U8
407
Vasundhara Volamb6395832019-01-28 18:00:26 +0530408#define DEVLINK_PARAM_GENERIC_WOL_NAME "wake_on_lan"
409#define DEVLINK_PARAM_GENERIC_WOL_TYPE DEVLINK_PARAM_TYPE_U8
410
Moshe Shemesh036467c2018-07-04 14:30:33 +0300411#define DEVLINK_PARAM_GENERIC(_id, _cmodes, _get, _set, _validate) \
412{ \
413 .id = DEVLINK_PARAM_GENERIC_ID_##_id, \
414 .name = DEVLINK_PARAM_GENERIC_##_id##_NAME, \
415 .type = DEVLINK_PARAM_GENERIC_##_id##_TYPE, \
416 .generic = true, \
417 .supported_cmodes = _cmodes, \
418 .get = _get, \
419 .set = _set, \
420 .validate = _validate, \
421}
422
423#define DEVLINK_PARAM_DRIVER(_id, _name, _type, _cmodes, _get, _set, _validate) \
424{ \
425 .id = _id, \
426 .name = _name, \
427 .type = _type, \
428 .supported_cmodes = _cmodes, \
429 .get = _get, \
430 .set = _set, \
431 .validate = _validate, \
432}
433
Jakub Kicinski785bd552019-01-31 10:50:42 -0800434/* Part number, identifier of board design */
435#define DEVLINK_INFO_VERSION_GENERIC_BOARD_ID "board.id"
436/* Revision of board design */
437#define DEVLINK_INFO_VERSION_GENERIC_BOARD_REV "board.rev"
438
439/* Control processor FW version */
440#define DEVLINK_INFO_VERSION_GENERIC_FW_MGMT "fw.mgmt"
441/* Data path microcode controlling high-speed packet processing */
442#define DEVLINK_INFO_VERSION_GENERIC_FW_APP "fw.app"
443/* UNDI software version */
444#define DEVLINK_INFO_VERSION_GENERIC_FW_UNDI "fw.undi"
445/* NCSI support/handler version */
446#define DEVLINK_INFO_VERSION_GENERIC_FW_NCSI "fw.ncsi"
447
Alex Veskerb16ebe92018-07-12 15:13:08 +0300448struct devlink_region;
Jakub Kicinskif9cf2282019-01-31 10:50:40 -0800449struct devlink_info_req;
Alex Veskerb16ebe92018-07-12 15:13:08 +0300450
Alex Veskerd7e52722018-07-12 15:13:10 +0300451typedef void devlink_snapshot_data_dest_t(const void *data);
452
Eran Ben Elisha1db64e82019-02-07 11:36:32 +0200453struct devlink_fmsg;
Eran Ben Elishaa0bdcc52019-02-07 11:36:33 +0200454struct devlink_health_reporter;
455
456/**
457 * struct devlink_health_reporter_ops - Reporter operations
458 * @name: reporter name
459 * @recover: callback to recover from reported error
460 * if priv_ctx is NULL, run a full recover
461 * @dump: callback to dump an object
462 * if priv_ctx is NULL, run a full dump
463 * @diagnose: callback to diagnose the current status
464 */
465
466struct devlink_health_reporter_ops {
467 char *name;
468 int (*recover)(struct devlink_health_reporter *reporter,
469 void *priv_ctx);
470 int (*dump)(struct devlink_health_reporter *reporter,
471 struct devlink_fmsg *fmsg, void *priv_ctx);
472 int (*diagnose)(struct devlink_health_reporter *reporter,
473 struct devlink_fmsg *fmsg);
474};
Eran Ben Elisha1db64e82019-02-07 11:36:32 +0200475
Jiri Pirkobfcd3a42016-02-26 17:32:23 +0100476struct devlink_ops {
David Ahernac0fc8a2018-06-05 08:14:09 -0700477 int (*reload)(struct devlink *devlink, struct netlink_ext_ack *extack);
Jiri Pirkobfcd3a42016-02-26 17:32:23 +0100478 int (*port_type_set)(struct devlink_port *devlink_port,
479 enum devlink_port_type port_type);
480 int (*port_split)(struct devlink *devlink, unsigned int port_index,
David Ahernac0fc8a2018-06-05 08:14:09 -0700481 unsigned int count, struct netlink_ext_ack *extack);
482 int (*port_unsplit)(struct devlink *devlink, unsigned int port_index,
483 struct netlink_ext_ack *extack);
Jiri Pirkobf797472016-04-14 18:19:13 +0200484 int (*sb_pool_get)(struct devlink *devlink, unsigned int sb_index,
485 u16 pool_index,
486 struct devlink_sb_pool_info *pool_info);
487 int (*sb_pool_set)(struct devlink *devlink, unsigned int sb_index,
488 u16 pool_index, u32 size,
489 enum devlink_sb_threshold_type threshold_type);
490 int (*sb_port_pool_get)(struct devlink_port *devlink_port,
491 unsigned int sb_index, u16 pool_index,
492 u32 *p_threshold);
493 int (*sb_port_pool_set)(struct devlink_port *devlink_port,
494 unsigned int sb_index, u16 pool_index,
495 u32 threshold);
496 int (*sb_tc_pool_bind_get)(struct devlink_port *devlink_port,
497 unsigned int sb_index,
498 u16 tc_index,
499 enum devlink_sb_pool_type pool_type,
500 u16 *p_pool_index, u32 *p_threshold);
501 int (*sb_tc_pool_bind_set)(struct devlink_port *devlink_port,
502 unsigned int sb_index,
503 u16 tc_index,
504 enum devlink_sb_pool_type pool_type,
505 u16 pool_index, u32 threshold);
Jiri Pirkodf38daf2016-04-14 18:19:14 +0200506 int (*sb_occ_snapshot)(struct devlink *devlink,
507 unsigned int sb_index);
508 int (*sb_occ_max_clear)(struct devlink *devlink,
509 unsigned int sb_index);
510 int (*sb_occ_port_pool_get)(struct devlink_port *devlink_port,
511 unsigned int sb_index, u16 pool_index,
512 u32 *p_cur, u32 *p_max);
513 int (*sb_occ_tc_port_bind_get)(struct devlink_port *devlink_port,
514 unsigned int sb_index,
515 u16 tc_index,
516 enum devlink_sb_pool_type pool_type,
517 u32 *p_cur, u32 *p_max);
Or Gerlitz08f4b592016-07-01 14:51:01 +0300518
519 int (*eswitch_mode_get)(struct devlink *devlink, u16 *p_mode);
Eli Britsteindb7ff192018-08-15 16:02:18 +0300520 int (*eswitch_mode_set)(struct devlink *devlink, u16 mode,
521 struct netlink_ext_ack *extack);
Roi Dayan59bfde02016-11-22 23:09:57 +0200522 int (*eswitch_inline_mode_get)(struct devlink *devlink, u8 *p_inline_mode);
Eli Britsteindb7ff192018-08-15 16:02:18 +0300523 int (*eswitch_inline_mode_set)(struct devlink *devlink, u8 inline_mode,
524 struct netlink_ext_ack *extack);
Roi Dayanf43e9b02016-09-25 13:52:44 +0300525 int (*eswitch_encap_mode_get)(struct devlink *devlink, u8 *p_encap_mode);
Eli Britsteindb7ff192018-08-15 16:02:18 +0300526 int (*eswitch_encap_mode_set)(struct devlink *devlink, u8 encap_mode,
527 struct netlink_ext_ack *extack);
Jakub Kicinskif9cf2282019-01-31 10:50:40 -0800528 int (*info_get)(struct devlink *devlink, struct devlink_info_req *req,
529 struct netlink_ext_ack *extack);
Jiri Pirkobfcd3a42016-02-26 17:32:23 +0100530};
531
532static inline void *devlink_priv(struct devlink *devlink)
533{
534 BUG_ON(!devlink);
535 return &devlink->priv;
536}
537
538static inline struct devlink *priv_to_devlink(void *priv)
539{
540 BUG_ON(!priv);
541 return container_of(priv, struct devlink, priv);
542}
543
544struct ib_device;
545
546#if IS_ENABLED(CONFIG_NET_DEVLINK)
547
548struct devlink *devlink_alloc(const struct devlink_ops *ops, size_t priv_size);
549int devlink_register(struct devlink *devlink, struct device *dev);
550void devlink_unregister(struct devlink *devlink);
551void devlink_free(struct devlink *devlink);
552int devlink_port_register(struct devlink *devlink,
553 struct devlink_port *devlink_port,
554 unsigned int port_index);
555void devlink_port_unregister(struct devlink_port *devlink_port);
556void devlink_port_type_eth_set(struct devlink_port *devlink_port,
557 struct net_device *netdev);
558void devlink_port_type_ib_set(struct devlink_port *devlink_port,
559 struct ib_device *ibdev);
560void devlink_port_type_clear(struct devlink_port *devlink_port);
Jiri Pirkob9ffcba2018-05-18 09:29:00 +0200561void devlink_port_attrs_set(struct devlink_port *devlink_port,
Jiri Pirko5ec13802018-05-18 09:29:01 +0200562 enum devlink_port_flavour flavour,
Jiri Pirkob9ffcba2018-05-18 09:29:00 +0200563 u32 port_number, bool split,
564 u32 split_subport_number);
Jiri Pirko08474c12018-05-18 09:29:02 +0200565int devlink_port_get_phys_port_name(struct devlink_port *devlink_port,
566 char *name, size_t len);
Jiri Pirkobf797472016-04-14 18:19:13 +0200567int devlink_sb_register(struct devlink *devlink, unsigned int sb_index,
568 u32 size, u16 ingress_pools_count,
569 u16 egress_pools_count, u16 ingress_tc_count,
570 u16 egress_tc_count);
571void devlink_sb_unregister(struct devlink *devlink, unsigned int sb_index);
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200572int devlink_dpipe_table_register(struct devlink *devlink,
573 const char *table_name,
574 struct devlink_dpipe_table_ops *table_ops,
Arkadi Sharshevskyffd3cdc2017-08-24 08:40:02 +0200575 void *priv, bool counter_control_extern);
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200576void devlink_dpipe_table_unregister(struct devlink *devlink,
577 const char *table_name);
578int devlink_dpipe_headers_register(struct devlink *devlink,
579 struct devlink_dpipe_headers *dpipe_headers);
580void devlink_dpipe_headers_unregister(struct devlink *devlink);
581bool devlink_dpipe_table_counter_enabled(struct devlink *devlink,
582 const char *table_name);
583int devlink_dpipe_entry_ctx_prepare(struct devlink_dpipe_dump_ctx *dump_ctx);
584int devlink_dpipe_entry_ctx_append(struct devlink_dpipe_dump_ctx *dump_ctx,
585 struct devlink_dpipe_entry *entry);
586int devlink_dpipe_entry_ctx_close(struct devlink_dpipe_dump_ctx *dump_ctx);
Arkadi Sharshevsky35807322017-08-24 08:40:03 +0200587void devlink_dpipe_entry_clear(struct devlink_dpipe_entry *entry);
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200588int devlink_dpipe_action_put(struct sk_buff *skb,
589 struct devlink_dpipe_action *action);
590int devlink_dpipe_match_put(struct sk_buff *skb,
591 struct devlink_dpipe_match *match);
Arkadi Sharshevsky11770092017-08-24 08:39:59 +0200592extern struct devlink_dpipe_header devlink_dpipe_header_ethernet;
Arkadi Sharshevsky3fb886e2017-08-24 08:40:00 +0200593extern struct devlink_dpipe_header devlink_dpipe_header_ipv4;
Arkadi Sharshevsky1797f5b2017-08-31 17:59:12 +0200594extern struct devlink_dpipe_header devlink_dpipe_header_ipv6;
Jiri Pirkobfcd3a42016-02-26 17:32:23 +0100595
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100596int devlink_resource_register(struct devlink *devlink,
597 const char *resource_name,
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100598 u64 resource_size,
599 u64 resource_id,
600 u64 parent_resource_id,
Jiri Pirkofc56be42018-04-05 22:13:21 +0200601 const struct devlink_resource_size_params *size_params);
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100602void devlink_resources_unregister(struct devlink *devlink,
603 struct devlink_resource *resource);
604int devlink_resource_size_get(struct devlink *devlink,
605 u64 resource_id,
606 u64 *p_resource_size);
Arkadi Sharshevsky56dc7cd2018-01-15 08:59:05 +0100607int devlink_dpipe_table_resource_set(struct devlink *devlink,
608 const char *table_name, u64 resource_id,
609 u64 resource_units);
Jiri Pirkofc56be42018-04-05 22:13:21 +0200610void devlink_resource_occ_get_register(struct devlink *devlink,
611 u64 resource_id,
612 devlink_resource_occ_get_t *occ_get,
613 void *occ_get_priv);
614void devlink_resource_occ_get_unregister(struct devlink *devlink,
615 u64 resource_id);
Moshe Shemesheabaef12018-07-04 14:30:28 +0300616int devlink_params_register(struct devlink *devlink,
617 const struct devlink_param *params,
618 size_t params_count);
619void devlink_params_unregister(struct devlink *devlink,
620 const struct devlink_param *params,
621 size_t params_count);
Jiri Pirko7c62cfb2019-02-07 11:22:45 +0000622void devlink_params_publish(struct devlink *devlink);
623void devlink_params_unpublish(struct devlink *devlink);
Vasundhara Volam39e61602019-01-28 18:00:20 +0530624int devlink_port_params_register(struct devlink_port *devlink_port,
625 const struct devlink_param *params,
626 size_t params_count);
627void devlink_port_params_unregister(struct devlink_port *devlink_port,
628 const struct devlink_param *params,
629 size_t params_count);
Moshe Shemeshec01aeb2018-07-04 14:30:31 +0300630int devlink_param_driverinit_value_get(struct devlink *devlink, u32 param_id,
631 union devlink_param_value *init_val);
632int devlink_param_driverinit_value_set(struct devlink *devlink, u32 param_id,
633 union devlink_param_value init_val);
Vasundhara Volamffd19b92019-01-28 18:00:23 +0530634int
635devlink_port_param_driverinit_value_get(struct devlink_port *devlink_port,
636 u32 param_id,
637 union devlink_param_value *init_val);
Vasundhara Volam5473a7b2019-01-28 18:00:24 +0530638int devlink_port_param_driverinit_value_set(struct devlink_port *devlink_port,
639 u32 param_id,
640 union devlink_param_value init_val);
Moshe Shemeshea601e12018-07-04 14:30:32 +0300641void devlink_param_value_changed(struct devlink *devlink, u32 param_id);
Vasundhara Volamc1e5786d2019-01-28 18:00:25 +0530642void devlink_port_param_value_changed(struct devlink_port *devlink_port,
643 u32 param_id);
Moshe Shemeshbde74ad12018-10-10 16:09:27 +0300644void devlink_param_value_str_fill(union devlink_param_value *dst_val,
645 const char *src);
Alex Veskerb16ebe92018-07-12 15:13:08 +0300646struct devlink_region *devlink_region_create(struct devlink *devlink,
647 const char *region_name,
648 u32 region_max_snapshots,
649 u64 region_size);
650void devlink_region_destroy(struct devlink_region *region);
Alex Veskerccadfa42018-07-12 15:13:09 +0300651u32 devlink_region_shapshot_id_get(struct devlink *devlink);
Alex Veskerd7e52722018-07-12 15:13:10 +0300652int devlink_region_snapshot_create(struct devlink_region *region, u64 data_len,
653 u8 *data, u32 snapshot_id,
654 devlink_snapshot_data_dest_t *data_destructor);
Jakub Kicinskif9cf2282019-01-31 10:50:40 -0800655int devlink_info_serial_number_put(struct devlink_info_req *req,
656 const char *sn);
657int devlink_info_driver_name_put(struct devlink_info_req *req,
658 const char *name);
Jakub Kicinskifc6fae72019-01-31 10:50:41 -0800659int devlink_info_version_fixed_put(struct devlink_info_req *req,
660 const char *version_name,
661 const char *version_value);
662int devlink_info_version_stored_put(struct devlink_info_req *req,
663 const char *version_name,
664 const char *version_value);
665int devlink_info_version_running_put(struct devlink_info_req *req,
666 const char *version_name,
667 const char *version_value);
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100668
Eran Ben Elisha1db64e82019-02-07 11:36:32 +0200669int devlink_fmsg_obj_nest_start(struct devlink_fmsg *fmsg);
670int devlink_fmsg_obj_nest_end(struct devlink_fmsg *fmsg);
671
672int devlink_fmsg_pair_nest_start(struct devlink_fmsg *fmsg, const char *name);
673int devlink_fmsg_pair_nest_end(struct devlink_fmsg *fmsg);
674
675int devlink_fmsg_arr_pair_nest_start(struct devlink_fmsg *fmsg,
676 const char *name);
677int devlink_fmsg_arr_pair_nest_end(struct devlink_fmsg *fmsg);
678
679int devlink_fmsg_bool_put(struct devlink_fmsg *fmsg, bool value);
680int devlink_fmsg_u8_put(struct devlink_fmsg *fmsg, u8 value);
681int devlink_fmsg_u32_put(struct devlink_fmsg *fmsg, u32 value);
682int devlink_fmsg_u64_put(struct devlink_fmsg *fmsg, u64 value);
683int devlink_fmsg_string_put(struct devlink_fmsg *fmsg, const char *value);
684int devlink_fmsg_binary_put(struct devlink_fmsg *fmsg, const void *value,
685 u16 value_len);
686
687int devlink_fmsg_bool_pair_put(struct devlink_fmsg *fmsg, const char *name,
688 bool value);
689int devlink_fmsg_u8_pair_put(struct devlink_fmsg *fmsg, const char *name,
690 u8 value);
691int devlink_fmsg_u32_pair_put(struct devlink_fmsg *fmsg, const char *name,
692 u32 value);
693int devlink_fmsg_u64_pair_put(struct devlink_fmsg *fmsg, const char *name,
694 u64 value);
695int devlink_fmsg_string_pair_put(struct devlink_fmsg *fmsg, const char *name,
696 const char *value);
697int devlink_fmsg_binary_pair_put(struct devlink_fmsg *fmsg, const char *name,
698 const void *value, u16 value_len);
699
Eran Ben Elishaa0bdcc52019-02-07 11:36:33 +0200700struct devlink_health_reporter *
701devlink_health_reporter_create(struct devlink *devlink,
702 const struct devlink_health_reporter_ops *ops,
703 u64 graceful_period, bool auto_recover,
704 void *priv);
705void
706devlink_health_reporter_destroy(struct devlink_health_reporter *reporter);
707
708void *
709devlink_health_reporter_priv(struct devlink_health_reporter *reporter);
Eran Ben Elishac8e1da02019-02-07 11:36:34 +0200710int devlink_health_report(struct devlink_health_reporter *reporter,
711 const char *msg, void *priv_ctx);
Eran Ben Elishaa0bdcc52019-02-07 11:36:33 +0200712
Jiri Pirkobfcd3a42016-02-26 17:32:23 +0100713#else
714
715static inline struct devlink *devlink_alloc(const struct devlink_ops *ops,
716 size_t priv_size)
717{
718 return kzalloc(sizeof(struct devlink) + priv_size, GFP_KERNEL);
719}
720
721static inline int devlink_register(struct devlink *devlink, struct device *dev)
722{
723 return 0;
724}
725
726static inline void devlink_unregister(struct devlink *devlink)
727{
728}
729
Jiri Pirko7c62cfb2019-02-07 11:22:45 +0000730static inline void devlink_params_publish(struct devlink *devlink)
731{
732}
733
734static inline void devlink_params_unpublish(struct devlink *devlink)
735{
736}
737
Jiri Pirkobfcd3a42016-02-26 17:32:23 +0100738static inline void devlink_free(struct devlink *devlink)
739{
740 kfree(devlink);
741}
742
743static inline int devlink_port_register(struct devlink *devlink,
744 struct devlink_port *devlink_port,
745 unsigned int port_index)
746{
747 return 0;
748}
749
750static inline void devlink_port_unregister(struct devlink_port *devlink_port)
751{
752}
753
754static inline void devlink_port_type_eth_set(struct devlink_port *devlink_port,
755 struct net_device *netdev)
756{
757}
758
759static inline void devlink_port_type_ib_set(struct devlink_port *devlink_port,
760 struct ib_device *ibdev)
761{
762}
763
764static inline void devlink_port_type_clear(struct devlink_port *devlink_port)
765{
766}
767
Jiri Pirkob9ffcba2018-05-18 09:29:00 +0200768static inline void devlink_port_attrs_set(struct devlink_port *devlink_port,
Jiri Pirko5ec13802018-05-18 09:29:01 +0200769 enum devlink_port_flavour flavour,
Jiri Pirkob9ffcba2018-05-18 09:29:00 +0200770 u32 port_number, bool split,
771 u32 split_subport_number)
Jiri Pirkobfcd3a42016-02-26 17:32:23 +0100772{
773}
774
Jiri Pirko08474c12018-05-18 09:29:02 +0200775static inline int
776devlink_port_get_phys_port_name(struct devlink_port *devlink_port,
777 char *name, size_t len)
778{
779 return -EOPNOTSUPP;
780}
781
Jiri Pirkobf797472016-04-14 18:19:13 +0200782static inline int devlink_sb_register(struct devlink *devlink,
783 unsigned int sb_index, u32 size,
784 u16 ingress_pools_count,
Jiri Pirkode33efd2016-04-15 09:17:08 +0200785 u16 egress_pools_count,
786 u16 ingress_tc_count,
787 u16 egress_tc_count)
Jiri Pirkobf797472016-04-14 18:19:13 +0200788{
789 return 0;
790}
791
792static inline void devlink_sb_unregister(struct devlink *devlink,
793 unsigned int sb_index)
794{
795}
796
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200797static inline int
798devlink_dpipe_table_register(struct devlink *devlink,
799 const char *table_name,
800 struct devlink_dpipe_table_ops *table_ops,
David S. Miller790c6052017-08-24 18:10:46 -0700801 void *priv, bool counter_control_extern)
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200802{
803 return 0;
804}
805
806static inline void devlink_dpipe_table_unregister(struct devlink *devlink,
807 const char *table_name)
808{
809}
810
811static inline int devlink_dpipe_headers_register(struct devlink *devlink,
812 struct devlink_dpipe_headers *
813 dpipe_headers)
814{
815 return 0;
816}
817
818static inline void devlink_dpipe_headers_unregister(struct devlink *devlink)
819{
820}
821
822static inline bool devlink_dpipe_table_counter_enabled(struct devlink *devlink,
823 const char *table_name)
824{
825 return false;
826}
827
828static inline int
829devlink_dpipe_entry_ctx_prepare(struct devlink_dpipe_dump_ctx *dump_ctx)
830{
831 return 0;
832}
833
834static inline int
835devlink_dpipe_entry_ctx_append(struct devlink_dpipe_dump_ctx *dump_ctx,
836 struct devlink_dpipe_entry *entry)
837{
838 return 0;
839}
840
841static inline int
842devlink_dpipe_entry_ctx_close(struct devlink_dpipe_dump_ctx *dump_ctx)
843{
844 return 0;
845}
846
Arkadi Sharshevsky35807322017-08-24 08:40:03 +0200847static inline void
848devlink_dpipe_entry_clear(struct devlink_dpipe_entry *entry)
849{
850}
851
Arkadi Sharshevsky1555d202017-03-28 17:24:10 +0200852static inline int
853devlink_dpipe_action_put(struct sk_buff *skb,
854 struct devlink_dpipe_action *action)
855{
856 return 0;
857}
858
859static inline int
860devlink_dpipe_match_put(struct sk_buff *skb,
861 struct devlink_dpipe_match *match)
862{
863 return 0;
864}
865
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100866static inline int
867devlink_resource_register(struct devlink *devlink,
868 const char *resource_name,
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100869 u64 resource_size,
870 u64 resource_id,
871 u64 parent_resource_id,
Jiri Pirkofc56be42018-04-05 22:13:21 +0200872 const struct devlink_resource_size_params *size_params)
Arkadi Sharshevskyd9f9b9a2018-01-15 08:59:03 +0100873{
874 return 0;
875}
876
877static inline void
878devlink_resources_unregister(struct devlink *devlink,
879 struct devlink_resource *resource)
880{
881}
882
883static inline int
884devlink_resource_size_get(struct devlink *devlink, u64 resource_id,
885 u64 *p_resource_size)
886{
887 return -EOPNOTSUPP;
888}
889
Arkadi Sharshevsky56dc7cd2018-01-15 08:59:05 +0100890static inline int
891devlink_dpipe_table_resource_set(struct devlink *devlink,
892 const char *table_name, u64 resource_id,
893 u64 resource_units)
894{
895 return -EOPNOTSUPP;
896}
897
Jiri Pirkofc56be42018-04-05 22:13:21 +0200898static inline void
899devlink_resource_occ_get_register(struct devlink *devlink,
900 u64 resource_id,
901 devlink_resource_occ_get_t *occ_get,
902 void *occ_get_priv)
903{
904}
905
906static inline void
907devlink_resource_occ_get_unregister(struct devlink *devlink,
908 u64 resource_id)
909{
910}
911
Moshe Shemesheabaef12018-07-04 14:30:28 +0300912static inline int
913devlink_params_register(struct devlink *devlink,
914 const struct devlink_param *params,
915 size_t params_count)
916{
917 return 0;
918}
919
920static inline void
921devlink_params_unregister(struct devlink *devlink,
922 const struct devlink_param *params,
923 size_t params_count)
924{
925
926}
927
Moshe Shemeshec01aeb2018-07-04 14:30:31 +0300928static inline int
Vasundhara Volam39e61602019-01-28 18:00:20 +0530929devlink_port_params_register(struct devlink_port *devlink_port,
930 const struct devlink_param *params,
931 size_t params_count)
932{
933 return 0;
934}
935
936static inline void
937devlink_port_params_unregister(struct devlink_port *devlink_port,
938 const struct devlink_param *params,
939 size_t params_count)
940{
941}
942
943static inline int
Moshe Shemeshec01aeb2018-07-04 14:30:31 +0300944devlink_param_driverinit_value_get(struct devlink *devlink, u32 param_id,
945 union devlink_param_value *init_val)
946{
947 return -EOPNOTSUPP;
948}
949
950static inline int
951devlink_param_driverinit_value_set(struct devlink *devlink, u32 param_id,
952 union devlink_param_value init_val)
953{
954 return -EOPNOTSUPP;
955}
956
Vasundhara Volamffd19b92019-01-28 18:00:23 +0530957static inline int
958devlink_port_param_driverinit_value_get(struct devlink_port *devlink_port,
959 u32 param_id,
960 union devlink_param_value *init_val)
961{
962 return -EOPNOTSUPP;
963}
964
Vasundhara Volam5473a7b2019-01-28 18:00:24 +0530965static inline int
966devlink_port_param_driverinit_value_set(struct devlink_port *devlink_port,
967 u32 param_id,
968 union devlink_param_value init_val)
969{
970 return -EOPNOTSUPP;
971}
972
Moshe Shemeshea601e12018-07-04 14:30:32 +0300973static inline void
974devlink_param_value_changed(struct devlink *devlink, u32 param_id)
975{
Moshe Shemeshea601e12018-07-04 14:30:32 +0300976}
977
Moshe Shemeshbde74ad12018-10-10 16:09:27 +0300978static inline void
Vasundhara Volamc1e5786d2019-01-28 18:00:25 +0530979devlink_port_param_value_changed(struct devlink_port *devlink_port,
980 u32 param_id)
981{
982}
983
984static inline void
Moshe Shemeshbde74ad12018-10-10 16:09:27 +0300985devlink_param_value_str_fill(union devlink_param_value *dst_val,
986 const char *src)
987{
988}
989
Alex Veskerb16ebe92018-07-12 15:13:08 +0300990static inline struct devlink_region *
991devlink_region_create(struct devlink *devlink,
992 const char *region_name,
993 u32 region_max_snapshots,
994 u64 region_size)
995{
996 return NULL;
997}
998
999static inline void
1000devlink_region_destroy(struct devlink_region *region)
1001{
1002}
1003
Alex Veskerccadfa42018-07-12 15:13:09 +03001004static inline u32
1005devlink_region_shapshot_id_get(struct devlink *devlink)
1006{
1007 return 0;
1008}
1009
Alex Veskerd7e52722018-07-12 15:13:10 +03001010static inline int
1011devlink_region_snapshot_create(struct devlink_region *region, u64 data_len,
1012 u8 *data, u32 snapshot_id,
1013 devlink_snapshot_data_dest_t *data_destructor)
1014{
1015 return 0;
1016}
1017
Jakub Kicinskif9cf2282019-01-31 10:50:40 -08001018static inline int
1019devlink_info_driver_name_put(struct devlink_info_req *req, const char *name)
1020{
1021 return 0;
1022}
1023
1024static inline int
1025devlink_info_serial_number_put(struct devlink_info_req *req, const char *sn)
1026{
1027 return 0;
1028}
Jakub Kicinskifc6fae72019-01-31 10:50:41 -08001029
1030static inline int
1031devlink_info_version_fixed_put(struct devlink_info_req *req,
1032 const char *version_name,
1033 const char *version_value)
1034{
1035 return 0;
1036}
1037
1038static inline int
1039devlink_info_version_stored_put(struct devlink_info_req *req,
1040 const char *version_name,
1041 const char *version_value)
1042{
1043 return 0;
1044}
1045
1046static inline int
1047devlink_info_version_running_put(struct devlink_info_req *req,
1048 const char *version_name,
1049 const char *version_value)
1050{
1051 return 0;
1052}
Eran Ben Elisha1db64e82019-02-07 11:36:32 +02001053
1054static inline int
1055devlink_fmsg_obj_nest_start(struct devlink_fmsg *fmsg)
1056{
1057 return 0;
1058}
1059
1060static inline int
1061devlink_fmsg_obj_nest_end(struct devlink_fmsg *fmsg)
1062{
1063 return 0;
1064}
1065
1066static inline int
1067devlink_fmsg_pair_nest_start(struct devlink_fmsg *fmsg, const char *name)
1068{
1069 return 0;
1070}
1071
1072static inline int
1073devlink_fmsg_pair_nest_end(struct devlink_fmsg *fmsg)
1074{
1075 return 0;
1076}
1077
1078static inline int
1079devlink_fmsg_arr_pair_nest_start(struct devlink_fmsg *fmsg,
1080 const char *name)
1081{
1082 return 0;
1083}
1084
1085static inline int
1086devlink_fmsg_arr_pair_nest_end(struct devlink_fmsg *fmsg)
1087{
1088 return 0;
1089}
1090
1091static inline int
1092devlink_fmsg_bool_put(struct devlink_fmsg *fmsg, bool value)
1093{
1094 return 0;
1095}
1096
1097static inline int
1098devlink_fmsg_u8_put(struct devlink_fmsg *fmsg, u8 value)
1099{
1100 return 0;
1101}
1102
1103static inline int
1104devlink_fmsg_u32_put(struct devlink_fmsg *fmsg, u32 value)
1105{
1106 return 0;
1107}
1108
1109static inline int
1110devlink_fmsg_u64_put(struct devlink_fmsg *fmsg, u64 value)
1111{
1112 return 0;
1113}
1114
1115static inline int
1116devlink_fmsg_string_put(struct devlink_fmsg *fmsg, const char *value)
1117{
1118 return 0;
1119}
1120
1121static inline int
1122devlink_fmsg_binary_put(struct devlink_fmsg *fmsg, const void *value,
1123 u16 value_len)
1124{
1125 return 0;
1126}
1127
1128static inline int
1129devlink_fmsg_bool_pair_put(struct devlink_fmsg *fmsg, const char *name,
1130 bool value)
1131{
1132 return 0;
1133}
1134
1135static inline int
1136devlink_fmsg_u8_pair_put(struct devlink_fmsg *fmsg, const char *name,
1137 u8 value)
1138{
1139 return 0;
1140}
1141
1142static inline int
1143devlink_fmsg_u32_pair_put(struct devlink_fmsg *fmsg, const char *name,
1144 u32 value)
1145{
1146 return 0;
1147}
1148
1149static inline int
1150devlink_fmsg_u64_pair_put(struct devlink_fmsg *fmsg, const char *name,
1151 u64 value)
1152{
1153 return 0;
1154}
1155
1156static inline int
1157devlink_fmsg_string_pair_put(struct devlink_fmsg *fmsg, const char *name,
1158 const char *value)
1159{
1160 return 0;
1161}
1162
1163static inline int
1164devlink_fmsg_binary_pair_put(struct devlink_fmsg *fmsg, const char *name,
1165 const void *value, u16 value_len)
1166{
1167 return 0;
1168}
Eran Ben Elishaa0bdcc52019-02-07 11:36:33 +02001169
1170static inline struct devlink_health_reporter *
1171devlink_health_reporter_create(struct devlink *devlink,
1172 const struct devlink_health_reporter_ops *ops,
1173 u64 graceful_period, bool auto_recover,
1174 void *priv)
1175{
1176 return NULL;
1177}
1178
1179static inline void
1180devlink_health_reporter_destroy(struct devlink_health_reporter *reporter)
1181{
1182}
1183
1184static inline void *
1185devlink_health_reporter_priv(struct devlink_health_reporter *reporter)
1186{
1187 return NULL;
1188}
Eran Ben Elishac8e1da02019-02-07 11:36:34 +02001189
1190static inline int
1191devlink_health_report(struct devlink_health_reporter *reporter,
1192 const char *msg, void *priv_ctx)
1193{
1194 return 0;
1195}
Jiri Pirkobfcd3a42016-02-26 17:32:23 +01001196#endif
1197
Jakub Kicinskiddb6e992019-01-31 10:50:47 -08001198#if IS_REACHABLE(CONFIG_NET_DEVLINK)
1199void devlink_compat_running_version(struct net_device *dev,
1200 char *buf, size_t len);
1201#else
1202static inline void
1203devlink_compat_running_version(struct net_device *dev, char *buf, size_t len)
1204{
1205}
1206#endif
1207
Jiri Pirkobfcd3a42016-02-26 17:32:23 +01001208#endif /* _NET_DEVLINK_H_ */