1 /* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */ 2 /* Copyright (c) 2015-2018 Mellanox Technologies. All rights reserved */ 3 4 #ifndef _MLXSW_SPECTRUM_H 5 #define _MLXSW_SPECTRUM_H 6 7 #include <linux/ethtool.h> 8 #include <linux/types.h> 9 #include <linux/netdevice.h> 10 #include <linux/rhashtable.h> 11 #include <linux/bitops.h> 12 #include <linux/if_bridge.h> 13 #include <linux/if_vlan.h> 14 #include <linux/list.h> 15 #include <linux/dcbnl.h> 16 #include <linux/in6.h> 17 #include <linux/notifier.h> 18 #include <linux/net_namespace.h> 19 #include <linux/spinlock.h> 20 #include <net/psample.h> 21 #include <net/pkt_cls.h> 22 #include <net/red.h> 23 #include <net/vxlan.h> 24 #include <net/flow_offload.h> 25 #include <net/inet_ecn.h> 26 27 #include "port.h" 28 #include "core.h" 29 #include "core_acl_flex_keys.h" 30 #include "core_acl_flex_actions.h" 31 #include "reg.h" 32 33 #define MLXSW_SP_DEFAULT_VID (VLAN_N_VID - 1) 34 35 #define MLXSW_SP_FID_8021D_MAX 1024 36 37 #define MLXSW_SP_MID_MAX 7000 38 39 #define MLXSW_SP_KVD_LINEAR_SIZE 98304 /* entries */ 40 #define MLXSW_SP_KVD_GRANULARITY 128 41 42 #define MLXSW_SP_RESOURCE_NAME_KVD "kvd" 43 #define MLXSW_SP_RESOURCE_NAME_KVD_LINEAR "linear" 44 #define MLXSW_SP_RESOURCE_NAME_KVD_HASH_SINGLE "hash_single" 45 #define MLXSW_SP_RESOURCE_NAME_KVD_HASH_DOUBLE "hash_double" 46 #define MLXSW_SP_RESOURCE_NAME_KVD_LINEAR_SINGLES "singles" 47 #define MLXSW_SP_RESOURCE_NAME_KVD_LINEAR_CHUNKS "chunks" 48 #define MLXSW_SP_RESOURCE_NAME_KVD_LINEAR_LARGE_CHUNKS "large_chunks" 49 50 #define MLXSW_SP_RESOURCE_NAME_SPAN "span_agents" 51 52 #define MLXSW_SP_RESOURCE_NAME_COUNTERS "counters" 53 #define MLXSW_SP_RESOURCE_NAME_COUNTERS_FLOW "flow" 54 #define MLXSW_SP_RESOURCE_NAME_COUNTERS_RIF "rif" 55 56 enum mlxsw_sp_resource_id { 57 MLXSW_SP_RESOURCE_KVD = MLXSW_CORE_RESOURCE_MAX, 58 MLXSW_SP_RESOURCE_KVD_LINEAR, 59 MLXSW_SP_RESOURCE_KVD_HASH_SINGLE, 60 MLXSW_SP_RESOURCE_KVD_HASH_DOUBLE, 61 MLXSW_SP_RESOURCE_KVD_LINEAR_SINGLE, 62 MLXSW_SP_RESOURCE_KVD_LINEAR_CHUNKS, 63 MLXSW_SP_RESOURCE_KVD_LINEAR_LARGE_CHUNKS, 64 MLXSW_SP_RESOURCE_SPAN, 65 MLXSW_SP_RESOURCE_COUNTERS, 66 MLXSW_SP_RESOURCE_COUNTERS_FLOW, 67 MLXSW_SP_RESOURCE_COUNTERS_RIF, 68 MLXSW_SP_RESOURCE_GLOBAL_POLICERS, 69 MLXSW_SP_RESOURCE_SINGLE_RATE_POLICERS, 70 }; 71 72 struct mlxsw_sp_port; 73 struct mlxsw_sp_rif; 74 struct mlxsw_sp_span_entry; 75 enum mlxsw_sp_l3proto; 76 union mlxsw_sp_l3addr; 77 78 struct mlxsw_sp_upper { 79 struct net_device *dev; 80 unsigned int ref_count; 81 }; 82 83 enum mlxsw_sp_rif_type { 84 MLXSW_SP_RIF_TYPE_SUBPORT, 85 MLXSW_SP_RIF_TYPE_VLAN, 86 MLXSW_SP_RIF_TYPE_FID, 87 MLXSW_SP_RIF_TYPE_IPIP_LB, /* IP-in-IP loopback. */ 88 MLXSW_SP_RIF_TYPE_MAX, 89 }; 90 91 struct mlxsw_sp_router_ops; 92 93 extern const struct mlxsw_sp_router_ops mlxsw_sp1_router_ops; 94 extern const struct mlxsw_sp_router_ops mlxsw_sp2_router_ops; 95 96 struct mlxsw_sp_switchdev_ops; 97 98 extern const struct mlxsw_sp_switchdev_ops mlxsw_sp1_switchdev_ops; 99 extern const struct mlxsw_sp_switchdev_ops mlxsw_sp2_switchdev_ops; 100 101 enum mlxsw_sp_fid_type { 102 MLXSW_SP_FID_TYPE_8021Q, 103 MLXSW_SP_FID_TYPE_8021D, 104 MLXSW_SP_FID_TYPE_RFID, 105 MLXSW_SP_FID_TYPE_DUMMY, 106 MLXSW_SP_FID_TYPE_MAX, 107 }; 108 109 enum mlxsw_sp_nve_type { 110 MLXSW_SP_NVE_TYPE_VXLAN, 111 }; 112 113 struct mlxsw_sp_mid { 114 struct list_head list; 115 unsigned char addr[ETH_ALEN]; 116 u16 fid; 117 u16 mid; 118 bool in_hw; 119 unsigned long *ports_in_mid; /* bits array */ 120 }; 121 122 struct mlxsw_sp_sb; 123 struct mlxsw_sp_bridge; 124 struct mlxsw_sp_router; 125 struct mlxsw_sp_mr; 126 struct mlxsw_sp_acl; 127 struct mlxsw_sp_counter_pool; 128 struct mlxsw_sp_fid_core; 129 struct mlxsw_sp_kvdl; 130 struct mlxsw_sp_nve; 131 struct mlxsw_sp_kvdl_ops; 132 struct mlxsw_sp_mr_tcam_ops; 133 struct mlxsw_sp_acl_rulei_ops; 134 struct mlxsw_sp_acl_tcam_ops; 135 struct mlxsw_sp_nve_ops; 136 struct mlxsw_sp_sb_ops; 137 struct mlxsw_sp_sb_vals; 138 struct mlxsw_sp_port_type_speed_ops; 139 struct mlxsw_sp_ptp_state; 140 struct mlxsw_sp_ptp_ops; 141 struct mlxsw_sp_span_ops; 142 struct mlxsw_sp_qdisc_state; 143 struct mlxsw_sp_mall_entry; 144 145 struct mlxsw_sp_port_mapping { 146 u8 module; 147 u8 width; /* Number of lanes used by the port */ 148 u8 module_width; /* Number of lanes in the module (static) */ 149 u8 lane; 150 }; 151 152 struct mlxsw_sp_parsing { 153 refcount_t parsing_depth_ref; 154 u16 parsing_depth; 155 u16 vxlan_udp_dport; 156 struct mutex lock; /* Protects parsing configuration */ 157 }; 158 159 struct mlxsw_sp { 160 struct mlxsw_sp_port **ports; 161 struct mlxsw_core *core; 162 const struct mlxsw_bus_info *bus_info; 163 unsigned char base_mac[ETH_ALEN]; 164 const unsigned char *mac_mask; 165 struct mlxsw_sp_upper *lags; 166 struct mlxsw_sp_port_mapping **port_mapping; 167 struct rhashtable sample_trigger_ht; 168 struct mlxsw_sp_sb *sb; 169 struct mlxsw_sp_bridge *bridge; 170 struct mlxsw_sp_router *router; 171 struct mlxsw_sp_mr *mr; 172 struct mlxsw_afa *afa; 173 struct mlxsw_sp_acl *acl; 174 struct mlxsw_sp_fid_core *fid_core; 175 struct mlxsw_sp_policer_core *policer_core; 176 struct mlxsw_sp_kvdl *kvdl; 177 struct mlxsw_sp_nve *nve; 178 struct notifier_block netdevice_nb; 179 struct mlxsw_sp_ptp_clock *clock; 180 struct mlxsw_sp_ptp_state *ptp_state; 181 struct mlxsw_sp_counter_pool *counter_pool; 182 struct mlxsw_sp_span *span; 183 struct mlxsw_sp_trap *trap; 184 struct mlxsw_sp_parsing parsing; 185 const struct mlxsw_sp_switchdev_ops *switchdev_ops; 186 const struct mlxsw_sp_kvdl_ops *kvdl_ops; 187 const struct mlxsw_afa_ops *afa_ops; 188 const struct mlxsw_afk_ops *afk_ops; 189 const struct mlxsw_sp_mr_tcam_ops *mr_tcam_ops; 190 const struct mlxsw_sp_acl_rulei_ops *acl_rulei_ops; 191 const struct mlxsw_sp_acl_tcam_ops *acl_tcam_ops; 192 const struct mlxsw_sp_nve_ops **nve_ops_arr; 193 const struct mlxsw_sp_sb_vals *sb_vals; 194 const struct mlxsw_sp_sb_ops *sb_ops; 195 const struct mlxsw_sp_port_type_speed_ops *port_type_speed_ops; 196 const struct mlxsw_sp_ptp_ops *ptp_ops; 197 const struct mlxsw_sp_span_ops *span_ops; 198 const struct mlxsw_sp_policer_core_ops *policer_core_ops; 199 const struct mlxsw_sp_trap_ops *trap_ops; 200 const struct mlxsw_sp_mall_ops *mall_ops; 201 const struct mlxsw_sp_router_ops *router_ops; 202 const struct mlxsw_listener *listeners; 203 size_t listeners_count; 204 u32 lowest_shaper_bs; 205 }; 206 207 struct mlxsw_sp_ptp_ops { 208 struct mlxsw_sp_ptp_clock * 209 (*clock_init)(struct mlxsw_sp *mlxsw_sp, struct device *dev); 210 void (*clock_fini)(struct mlxsw_sp_ptp_clock *clock); 211 212 struct mlxsw_sp_ptp_state *(*init)(struct mlxsw_sp *mlxsw_sp); 213 void (*fini)(struct mlxsw_sp_ptp_state *ptp_state); 214 215 /* Notify a driver that a packet that might be PTP was received. Driver 216 * is responsible for freeing the passed-in SKB. 217 */ 218 void (*receive)(struct mlxsw_sp *mlxsw_sp, struct sk_buff *skb, 219 u8 local_port); 220 221 /* Notify a driver that a timestamped packet was transmitted. Driver 222 * is responsible for freeing the passed-in SKB. 223 */ 224 void (*transmitted)(struct mlxsw_sp *mlxsw_sp, struct sk_buff *skb, 225 u8 local_port); 226 227 int (*hwtstamp_get)(struct mlxsw_sp_port *mlxsw_sp_port, 228 struct hwtstamp_config *config); 229 int (*hwtstamp_set)(struct mlxsw_sp_port *mlxsw_sp_port, 230 struct hwtstamp_config *config); 231 void (*shaper_work)(struct work_struct *work); 232 int (*get_ts_info)(struct mlxsw_sp *mlxsw_sp, 233 struct ethtool_ts_info *info); 234 int (*get_stats_count)(void); 235 void (*get_stats_strings)(u8 **p); 236 void (*get_stats)(struct mlxsw_sp_port *mlxsw_sp_port, 237 u64 *data, int data_index); 238 }; 239 240 static inline struct mlxsw_sp_upper * 241 mlxsw_sp_lag_get(struct mlxsw_sp *mlxsw_sp, u16 lag_id) 242 { 243 return &mlxsw_sp->lags[lag_id]; 244 } 245 246 struct mlxsw_sp_port_pcpu_stats { 247 u64 rx_packets; 248 u64 rx_bytes; 249 u64 tx_packets; 250 u64 tx_bytes; 251 struct u64_stats_sync syncp; 252 u32 tx_dropped; 253 }; 254 255 enum mlxsw_sp_sample_trigger_type { 256 MLXSW_SP_SAMPLE_TRIGGER_TYPE_INGRESS, 257 MLXSW_SP_SAMPLE_TRIGGER_TYPE_EGRESS, 258 MLXSW_SP_SAMPLE_TRIGGER_TYPE_POLICY_ENGINE, 259 }; 260 261 struct mlxsw_sp_sample_trigger { 262 enum mlxsw_sp_sample_trigger_type type; 263 u8 local_port; /* Reserved when trigger type is not ingress / egress. */ 264 }; 265 266 struct mlxsw_sp_sample_params { 267 struct psample_group *psample_group; 268 u32 trunc_size; 269 u32 rate; 270 bool truncate; 271 }; 272 273 struct mlxsw_sp_bridge_port; 274 struct mlxsw_sp_fid; 275 276 struct mlxsw_sp_port_vlan { 277 struct list_head list; 278 struct mlxsw_sp_port *mlxsw_sp_port; 279 struct mlxsw_sp_fid *fid; 280 u16 vid; 281 struct mlxsw_sp_bridge_port *bridge_port; 282 struct list_head bridge_vlan_node; 283 }; 284 285 /* No need an internal lock; At worse - miss a single periodic iteration */ 286 struct mlxsw_sp_port_xstats { 287 u64 ecn; 288 u64 wred_drop[TC_MAX_QUEUE]; 289 u64 tail_drop[TC_MAX_QUEUE]; 290 u64 backlog[TC_MAX_QUEUE]; 291 u64 tx_bytes[IEEE_8021QAZ_MAX_TCS]; 292 u64 tx_packets[IEEE_8021QAZ_MAX_TCS]; 293 }; 294 295 struct mlxsw_sp_ptp_port_dir_stats { 296 u64 packets; 297 u64 timestamps; 298 }; 299 300 struct mlxsw_sp_ptp_port_stats { 301 struct mlxsw_sp_ptp_port_dir_stats rx_gcd; 302 struct mlxsw_sp_ptp_port_dir_stats tx_gcd; 303 }; 304 305 struct mlxsw_sp_port { 306 struct net_device *dev; 307 struct mlxsw_sp_port_pcpu_stats __percpu *pcpu_stats; 308 struct mlxsw_sp *mlxsw_sp; 309 u8 local_port; 310 u8 lagged:1, 311 split:1; 312 u16 pvid; 313 u16 lag_id; 314 struct { 315 u8 tx_pause:1, 316 rx_pause:1, 317 autoneg:1; 318 } link; 319 struct { 320 struct ieee_ets *ets; 321 struct ieee_maxrate *maxrate; 322 struct ieee_pfc *pfc; 323 enum mlxsw_reg_qpts_trust_state trust_state; 324 } dcb; 325 struct mlxsw_sp_port_mapping mapping; /* mapping is constant during the 326 * mlxsw_sp_port lifetime, however 327 * the same localport can have 328 * different mapping. 329 */ 330 struct { 331 #define MLXSW_HW_STATS_UPDATE_TIME HZ 332 struct rtnl_link_stats64 stats; 333 struct mlxsw_sp_port_xstats xstats; 334 struct delayed_work update_dw; 335 } periodic_hw_stats; 336 struct list_head vlans_list; 337 struct mlxsw_sp_port_vlan *default_vlan; 338 struct mlxsw_sp_qdisc_state *qdisc; 339 unsigned acl_rule_count; 340 struct mlxsw_sp_flow_block *ing_flow_block; 341 struct mlxsw_sp_flow_block *eg_flow_block; 342 struct { 343 struct delayed_work shaper_dw; 344 struct hwtstamp_config hwtstamp_config; 345 u16 ing_types; 346 u16 egr_types; 347 struct mlxsw_sp_ptp_port_stats stats; 348 } ptp; 349 int max_mtu; 350 u32 max_speed; 351 struct mlxsw_sp_hdroom *hdroom; 352 u64 module_overheat_initial_val; 353 }; 354 355 struct mlxsw_sp_port_type_speed_ops { 356 void (*from_ptys_supported_port)(struct mlxsw_sp *mlxsw_sp, 357 u32 ptys_eth_proto, 358 struct ethtool_link_ksettings *cmd); 359 void (*from_ptys_link)(struct mlxsw_sp *mlxsw_sp, u32 ptys_eth_proto, 360 unsigned long *mode); 361 u32 (*from_ptys_speed)(struct mlxsw_sp *mlxsw_sp, u32 ptys_eth_proto); 362 void (*from_ptys_link_mode)(struct mlxsw_sp *mlxsw_sp, 363 bool carrier_ok, u32 ptys_eth_proto, 364 struct ethtool_link_ksettings *cmd); 365 int (*ptys_max_speed)(struct mlxsw_sp_port *mlxsw_sp_port, u32 *p_max_speed); 366 u32 (*to_ptys_advert_link)(struct mlxsw_sp *mlxsw_sp, 367 const struct ethtool_link_ksettings *cmd); 368 u32 (*to_ptys_speed_lanes)(struct mlxsw_sp *mlxsw_sp, u8 width, 369 const struct ethtool_link_ksettings *cmd); 370 void (*reg_ptys_eth_pack)(struct mlxsw_sp *mlxsw_sp, char *payload, 371 u8 local_port, u32 proto_admin, bool autoneg); 372 void (*reg_ptys_eth_unpack)(struct mlxsw_sp *mlxsw_sp, char *payload, 373 u32 *p_eth_proto_cap, 374 u32 *p_eth_proto_admin, 375 u32 *p_eth_proto_oper); 376 u32 (*ptys_proto_cap_masked_get)(u32 eth_proto_cap); 377 }; 378 379 static inline u8 mlxsw_sp_tunnel_ecn_decap(u8 outer_ecn, u8 inner_ecn, 380 bool *trap_en) 381 { 382 bool set_ce = false; 383 384 *trap_en = !!__INET_ECN_decapsulate(outer_ecn, inner_ecn, &set_ce); 385 if (set_ce) 386 return INET_ECN_CE; 387 else if (outer_ecn == INET_ECN_ECT_1 && inner_ecn == INET_ECN_ECT_0) 388 return INET_ECN_ECT_1; 389 else 390 return inner_ecn; 391 } 392 393 static inline struct net_device * 394 mlxsw_sp_bridge_vxlan_dev_find(struct net_device *br_dev) 395 { 396 struct net_device *dev; 397 struct list_head *iter; 398 399 netdev_for_each_lower_dev(br_dev, dev, iter) { 400 if (netif_is_vxlan(dev)) 401 return dev; 402 } 403 404 return NULL; 405 } 406 407 static inline bool mlxsw_sp_bridge_has_vxlan(struct net_device *br_dev) 408 { 409 return !!mlxsw_sp_bridge_vxlan_dev_find(br_dev); 410 } 411 412 static inline int 413 mlxsw_sp_vxlan_mapped_vid(const struct net_device *vxlan_dev, u16 *p_vid) 414 { 415 struct bridge_vlan_info vinfo; 416 u16 vid = 0; 417 int err; 418 419 err = br_vlan_get_pvid(vxlan_dev, &vid); 420 if (err || !vid) 421 goto out; 422 423 err = br_vlan_get_info(vxlan_dev, vid, &vinfo); 424 if (err || !(vinfo.flags & BRIDGE_VLAN_INFO_UNTAGGED)) 425 vid = 0; 426 427 out: 428 *p_vid = vid; 429 return err; 430 } 431 432 static inline bool 433 mlxsw_sp_port_is_pause_en(const struct mlxsw_sp_port *mlxsw_sp_port) 434 { 435 return mlxsw_sp_port->link.tx_pause || mlxsw_sp_port->link.rx_pause; 436 } 437 438 static inline struct mlxsw_sp_port * 439 mlxsw_sp_port_lagged_get(struct mlxsw_sp *mlxsw_sp, u16 lag_id, u8 port_index) 440 { 441 struct mlxsw_sp_port *mlxsw_sp_port; 442 u8 local_port; 443 444 local_port = mlxsw_core_lag_mapping_get(mlxsw_sp->core, 445 lag_id, port_index); 446 mlxsw_sp_port = mlxsw_sp->ports[local_port]; 447 return mlxsw_sp_port && mlxsw_sp_port->lagged ? mlxsw_sp_port : NULL; 448 } 449 450 static inline struct mlxsw_sp_port_vlan * 451 mlxsw_sp_port_vlan_find_by_vid(const struct mlxsw_sp_port *mlxsw_sp_port, 452 u16 vid) 453 { 454 struct mlxsw_sp_port_vlan *mlxsw_sp_port_vlan; 455 456 list_for_each_entry(mlxsw_sp_port_vlan, &mlxsw_sp_port->vlans_list, 457 list) { 458 if (mlxsw_sp_port_vlan->vid == vid) 459 return mlxsw_sp_port_vlan; 460 } 461 462 return NULL; 463 } 464 465 enum mlxsw_sp_flood_type { 466 MLXSW_SP_FLOOD_TYPE_UC, 467 MLXSW_SP_FLOOD_TYPE_BC, 468 MLXSW_SP_FLOOD_TYPE_MC, 469 }; 470 471 int mlxsw_sp_port_get_stats_raw(struct net_device *dev, int grp, 472 int prio, char *ppcnt_pl); 473 int mlxsw_sp_port_admin_status_set(struct mlxsw_sp_port *mlxsw_sp_port, 474 bool is_up); 475 int 476 mlxsw_sp_port_vlan_classification_set(struct mlxsw_sp_port *mlxsw_sp_port, 477 bool is_8021ad_tagged, 478 bool is_8021q_tagged); 479 480 /* spectrum_buffers.c */ 481 struct mlxsw_sp_hdroom_prio { 482 /* Number of port buffer associated with this priority. This is the 483 * actually configured value. 484 */ 485 u8 buf_idx; 486 /* Value of buf_idx deduced from the DCB ETS configuration. */ 487 u8 ets_buf_idx; 488 /* Value of buf_idx taken from the dcbnl_setbuffer configuration. */ 489 u8 set_buf_idx; 490 bool lossy; 491 }; 492 493 struct mlxsw_sp_hdroom_buf { 494 u32 thres_cells; 495 u32 size_cells; 496 /* Size requirement form dcbnl_setbuffer. */ 497 u32 set_size_cells; 498 bool lossy; 499 }; 500 501 enum mlxsw_sp_hdroom_mode { 502 MLXSW_SP_HDROOM_MODE_DCB, 503 MLXSW_SP_HDROOM_MODE_TC, 504 }; 505 506 #define MLXSW_SP_PB_COUNT 10 507 508 struct mlxsw_sp_hdroom { 509 enum mlxsw_sp_hdroom_mode mode; 510 511 struct { 512 struct mlxsw_sp_hdroom_prio prio[IEEE_8021Q_MAX_PRIORITIES]; 513 } prios; 514 struct { 515 struct mlxsw_sp_hdroom_buf buf[MLXSW_SP_PB_COUNT]; 516 } bufs; 517 struct { 518 /* Size actually configured for the internal buffer. Equal to 519 * reserve when internal buffer is enabled. 520 */ 521 u32 size_cells; 522 /* Space reserved in the headroom for the internal buffer. Port 523 * buffers are not allowed to grow into this space. 524 */ 525 u32 reserve_cells; 526 bool enable; 527 } int_buf; 528 int delay_bytes; 529 int mtu; 530 }; 531 532 int mlxsw_sp_buffers_init(struct mlxsw_sp *mlxsw_sp); 533 void mlxsw_sp_buffers_fini(struct mlxsw_sp *mlxsw_sp); 534 int mlxsw_sp_port_buffers_init(struct mlxsw_sp_port *mlxsw_sp_port); 535 void mlxsw_sp_port_buffers_fini(struct mlxsw_sp_port *mlxsw_sp_port); 536 int mlxsw_sp_sb_pool_get(struct mlxsw_core *mlxsw_core, 537 unsigned int sb_index, u16 pool_index, 538 struct devlink_sb_pool_info *pool_info); 539 int mlxsw_sp_sb_pool_set(struct mlxsw_core *mlxsw_core, 540 unsigned int sb_index, u16 pool_index, u32 size, 541 enum devlink_sb_threshold_type threshold_type, 542 struct netlink_ext_ack *extack); 543 int mlxsw_sp_sb_port_pool_get(struct mlxsw_core_port *mlxsw_core_port, 544 unsigned int sb_index, u16 pool_index, 545 u32 *p_threshold); 546 int mlxsw_sp_sb_port_pool_set(struct mlxsw_core_port *mlxsw_core_port, 547 unsigned int sb_index, u16 pool_index, 548 u32 threshold, struct netlink_ext_ack *extack); 549 int mlxsw_sp_sb_tc_pool_bind_get(struct mlxsw_core_port *mlxsw_core_port, 550 unsigned int sb_index, u16 tc_index, 551 enum devlink_sb_pool_type pool_type, 552 u16 *p_pool_index, u32 *p_threshold); 553 int mlxsw_sp_sb_tc_pool_bind_set(struct mlxsw_core_port *mlxsw_core_port, 554 unsigned int sb_index, u16 tc_index, 555 enum devlink_sb_pool_type pool_type, 556 u16 pool_index, u32 threshold, 557 struct netlink_ext_ack *extack); 558 int mlxsw_sp_sb_occ_snapshot(struct mlxsw_core *mlxsw_core, 559 unsigned int sb_index); 560 int mlxsw_sp_sb_occ_max_clear(struct mlxsw_core *mlxsw_core, 561 unsigned int sb_index); 562 int mlxsw_sp_sb_occ_port_pool_get(struct mlxsw_core_port *mlxsw_core_port, 563 unsigned int sb_index, u16 pool_index, 564 u32 *p_cur, u32 *p_max); 565 int mlxsw_sp_sb_occ_tc_port_bind_get(struct mlxsw_core_port *mlxsw_core_port, 566 unsigned int sb_index, u16 tc_index, 567 enum devlink_sb_pool_type pool_type, 568 u32 *p_cur, u32 *p_max); 569 u32 mlxsw_sp_cells_bytes(const struct mlxsw_sp *mlxsw_sp, u32 cells); 570 u32 mlxsw_sp_bytes_cells(const struct mlxsw_sp *mlxsw_sp, u32 bytes); 571 void mlxsw_sp_hdroom_prios_reset_buf_idx(struct mlxsw_sp_hdroom *hdroom); 572 void mlxsw_sp_hdroom_bufs_reset_lossiness(struct mlxsw_sp_hdroom *hdroom); 573 void mlxsw_sp_hdroom_bufs_reset_sizes(struct mlxsw_sp_port *mlxsw_sp_port, 574 struct mlxsw_sp_hdroom *hdroom); 575 int mlxsw_sp_hdroom_configure(struct mlxsw_sp_port *mlxsw_sp_port, 576 const struct mlxsw_sp_hdroom *hdroom); 577 struct mlxsw_sp_sample_params * 578 mlxsw_sp_sample_trigger_params_lookup(struct mlxsw_sp *mlxsw_sp, 579 const struct mlxsw_sp_sample_trigger *trigger); 580 int 581 mlxsw_sp_sample_trigger_params_set(struct mlxsw_sp *mlxsw_sp, 582 const struct mlxsw_sp_sample_trigger *trigger, 583 const struct mlxsw_sp_sample_params *params, 584 struct netlink_ext_ack *extack); 585 void 586 mlxsw_sp_sample_trigger_params_unset(struct mlxsw_sp *mlxsw_sp, 587 const struct mlxsw_sp_sample_trigger *trigger); 588 589 extern const struct mlxsw_sp_sb_vals mlxsw_sp1_sb_vals; 590 extern const struct mlxsw_sp_sb_vals mlxsw_sp2_sb_vals; 591 592 extern const struct mlxsw_sp_sb_ops mlxsw_sp1_sb_ops; 593 extern const struct mlxsw_sp_sb_ops mlxsw_sp2_sb_ops; 594 extern const struct mlxsw_sp_sb_ops mlxsw_sp3_sb_ops; 595 596 /* spectrum_switchdev.c */ 597 int mlxsw_sp_switchdev_init(struct mlxsw_sp *mlxsw_sp); 598 void mlxsw_sp_switchdev_fini(struct mlxsw_sp *mlxsw_sp); 599 int mlxsw_sp_rif_fdb_op(struct mlxsw_sp *mlxsw_sp, const char *mac, u16 fid, 600 bool adding); 601 void 602 mlxsw_sp_port_vlan_bridge_leave(struct mlxsw_sp_port_vlan *mlxsw_sp_port_vlan); 603 int mlxsw_sp_port_bridge_join(struct mlxsw_sp_port *mlxsw_sp_port, 604 struct net_device *brport_dev, 605 struct net_device *br_dev, 606 struct netlink_ext_ack *extack); 607 void mlxsw_sp_port_bridge_leave(struct mlxsw_sp_port *mlxsw_sp_port, 608 struct net_device *brport_dev, 609 struct net_device *br_dev); 610 bool mlxsw_sp_bridge_device_is_offloaded(const struct mlxsw_sp *mlxsw_sp, 611 const struct net_device *br_dev); 612 int mlxsw_sp_bridge_vxlan_join(struct mlxsw_sp *mlxsw_sp, 613 const struct net_device *br_dev, 614 const struct net_device *vxlan_dev, u16 vid, 615 struct netlink_ext_ack *extack); 616 void mlxsw_sp_bridge_vxlan_leave(struct mlxsw_sp *mlxsw_sp, 617 const struct net_device *vxlan_dev); 618 extern struct notifier_block mlxsw_sp_switchdev_notifier; 619 620 /* spectrum.c */ 621 void mlxsw_sp_rx_listener_no_mark_func(struct sk_buff *skb, 622 u8 local_port, void *priv); 623 void mlxsw_sp_ptp_receive(struct mlxsw_sp *mlxsw_sp, struct sk_buff *skb, 624 u8 local_port); 625 int mlxsw_sp_port_speed_get(struct mlxsw_sp_port *mlxsw_sp_port, u32 *speed); 626 int mlxsw_sp_port_ets_set(struct mlxsw_sp_port *mlxsw_sp_port, 627 enum mlxsw_reg_qeec_hr hr, u8 index, u8 next_index, 628 bool dwrr, u8 dwrr_weight); 629 int mlxsw_sp_port_prio_tc_set(struct mlxsw_sp_port *mlxsw_sp_port, 630 u8 switch_prio, u8 tclass); 631 int mlxsw_sp_port_ets_maxrate_set(struct mlxsw_sp_port *mlxsw_sp_port, 632 enum mlxsw_reg_qeec_hr hr, u8 index, 633 u8 next_index, u32 maxrate, u8 burst_size); 634 enum mlxsw_reg_spms_state mlxsw_sp_stp_spms_state(u8 stp_state); 635 int mlxsw_sp_port_vid_stp_set(struct mlxsw_sp_port *mlxsw_sp_port, u16 vid, 636 u8 state); 637 int mlxsw_sp_port_vp_mode_set(struct mlxsw_sp_port *mlxsw_sp_port, bool enable); 638 int mlxsw_sp_port_vid_learning_set(struct mlxsw_sp_port *mlxsw_sp_port, u16 vid, 639 bool learn_enable); 640 int mlxsw_sp_ethtype_to_sver_type(u16 ethtype, u8 *p_sver_type); 641 int mlxsw_sp_port_egress_ethtype_set(struct mlxsw_sp_port *mlxsw_sp_port, 642 u16 ethtype); 643 int mlxsw_sp_port_pvid_set(struct mlxsw_sp_port *mlxsw_sp_port, u16 vid, 644 u16 ethtype); 645 struct mlxsw_sp_port_vlan * 646 mlxsw_sp_port_vlan_create(struct mlxsw_sp_port *mlxsw_sp_port, u16 vid); 647 void mlxsw_sp_port_vlan_destroy(struct mlxsw_sp_port_vlan *mlxsw_sp_port_vlan); 648 int mlxsw_sp_port_vlan_set(struct mlxsw_sp_port *mlxsw_sp_port, u16 vid_begin, 649 u16 vid_end, bool is_member, bool untagged); 650 int mlxsw_sp_flow_counter_get(struct mlxsw_sp *mlxsw_sp, 651 unsigned int counter_index, u64 *packets, 652 u64 *bytes); 653 int mlxsw_sp_flow_counter_alloc(struct mlxsw_sp *mlxsw_sp, 654 unsigned int *p_counter_index); 655 void mlxsw_sp_flow_counter_free(struct mlxsw_sp *mlxsw_sp, 656 unsigned int counter_index); 657 bool mlxsw_sp_port_dev_check(const struct net_device *dev); 658 struct mlxsw_sp *mlxsw_sp_lower_get(struct net_device *dev); 659 struct mlxsw_sp_port *mlxsw_sp_port_dev_lower_find(struct net_device *dev); 660 struct mlxsw_sp_port *mlxsw_sp_port_lower_dev_hold(struct net_device *dev); 661 void mlxsw_sp_port_dev_put(struct mlxsw_sp_port *mlxsw_sp_port); 662 struct mlxsw_sp_port *mlxsw_sp_port_dev_lower_find_rcu(struct net_device *dev); 663 int mlxsw_sp_parsing_depth_inc(struct mlxsw_sp *mlxsw_sp); 664 void mlxsw_sp_parsing_depth_dec(struct mlxsw_sp *mlxsw_sp); 665 int mlxsw_sp_parsing_vxlan_udp_dport_set(struct mlxsw_sp *mlxsw_sp, 666 __be16 udp_dport); 667 668 /* spectrum_dcb.c */ 669 #ifdef CONFIG_MLXSW_SPECTRUM_DCB 670 int mlxsw_sp_port_dcb_init(struct mlxsw_sp_port *mlxsw_sp_port); 671 void mlxsw_sp_port_dcb_fini(struct mlxsw_sp_port *mlxsw_sp_port); 672 #else 673 static inline int mlxsw_sp_port_dcb_init(struct mlxsw_sp_port *mlxsw_sp_port) 674 { 675 return 0; 676 } 677 static inline void mlxsw_sp_port_dcb_fini(struct mlxsw_sp_port *mlxsw_sp_port) 678 {} 679 #endif 680 681 /* spectrum_router.c */ 682 enum mlxsw_sp_l3proto { 683 MLXSW_SP_L3_PROTO_IPV4, 684 MLXSW_SP_L3_PROTO_IPV6, 685 #define MLXSW_SP_L3_PROTO_MAX (MLXSW_SP_L3_PROTO_IPV6 + 1) 686 }; 687 688 union mlxsw_sp_l3addr { 689 __be32 addr4; 690 struct in6_addr addr6; 691 }; 692 693 int mlxsw_sp_router_init(struct mlxsw_sp *mlxsw_sp, 694 struct netlink_ext_ack *extack); 695 void mlxsw_sp_router_fini(struct mlxsw_sp *mlxsw_sp); 696 int mlxsw_sp_netdevice_router_port_event(struct net_device *dev, 697 unsigned long event, void *ptr); 698 void mlxsw_sp_rif_macvlan_del(struct mlxsw_sp *mlxsw_sp, 699 const struct net_device *macvlan_dev); 700 int mlxsw_sp_inetaddr_valid_event(struct notifier_block *unused, 701 unsigned long event, void *ptr); 702 int mlxsw_sp_inet6addr_valid_event(struct notifier_block *unused, 703 unsigned long event, void *ptr); 704 int mlxsw_sp_netdevice_vrf_event(struct net_device *l3_dev, unsigned long event, 705 struct netdev_notifier_changeupper_info *info); 706 bool mlxsw_sp_netdev_is_ipip_ol(const struct mlxsw_sp *mlxsw_sp, 707 const struct net_device *dev); 708 bool mlxsw_sp_netdev_is_ipip_ul(struct mlxsw_sp *mlxsw_sp, 709 const struct net_device *dev); 710 int mlxsw_sp_netdevice_ipip_ol_event(struct mlxsw_sp *mlxsw_sp, 711 struct net_device *l3_dev, 712 unsigned long event, 713 struct netdev_notifier_info *info); 714 int 715 mlxsw_sp_netdevice_ipip_ul_event(struct mlxsw_sp *mlxsw_sp, 716 struct net_device *l3_dev, 717 unsigned long event, 718 struct netdev_notifier_info *info); 719 int 720 mlxsw_sp_port_vlan_router_join(struct mlxsw_sp_port_vlan *mlxsw_sp_port_vlan, 721 struct net_device *l3_dev, 722 struct netlink_ext_ack *extack); 723 void 724 mlxsw_sp_port_vlan_router_leave(struct mlxsw_sp_port_vlan *mlxsw_sp_port_vlan); 725 void mlxsw_sp_rif_destroy_by_dev(struct mlxsw_sp *mlxsw_sp, 726 struct net_device *dev); 727 bool mlxsw_sp_rif_exists(struct mlxsw_sp *mlxsw_sp, 728 const struct net_device *dev); 729 u16 mlxsw_sp_rif_vid(struct mlxsw_sp *mlxsw_sp, const struct net_device *dev); 730 u8 mlxsw_sp_router_port(const struct mlxsw_sp *mlxsw_sp); 731 int mlxsw_sp_router_nve_promote_decap(struct mlxsw_sp *mlxsw_sp, u32 ul_tb_id, 732 enum mlxsw_sp_l3proto ul_proto, 733 const union mlxsw_sp_l3addr *ul_sip, 734 u32 tunnel_index); 735 void mlxsw_sp_router_nve_demote_decap(struct mlxsw_sp *mlxsw_sp, u32 ul_tb_id, 736 enum mlxsw_sp_l3proto ul_proto, 737 const union mlxsw_sp_l3addr *ul_sip); 738 int mlxsw_sp_router_tb_id_vr_id(struct mlxsw_sp *mlxsw_sp, u32 tb_id, 739 u16 *vr_id); 740 int mlxsw_sp_router_ul_rif_get(struct mlxsw_sp *mlxsw_sp, u32 ul_tb_id, 741 u16 *ul_rif_index); 742 void mlxsw_sp_router_ul_rif_put(struct mlxsw_sp *mlxsw_sp, u16 ul_rif_index); 743 744 /* spectrum_kvdl.c */ 745 enum mlxsw_sp_kvdl_entry_type { 746 MLXSW_SP_KVDL_ENTRY_TYPE_ADJ, 747 MLXSW_SP_KVDL_ENTRY_TYPE_ACTSET, 748 MLXSW_SP_KVDL_ENTRY_TYPE_PBS, 749 MLXSW_SP_KVDL_ENTRY_TYPE_MCRIGR, 750 MLXSW_SP_KVDL_ENTRY_TYPE_IPV6_ADDRESS, 751 MLXSW_SP_KVDL_ENTRY_TYPE_TNUMT, 752 }; 753 754 static inline unsigned int 755 mlxsw_sp_kvdl_entry_size(enum mlxsw_sp_kvdl_entry_type type) 756 { 757 switch (type) { 758 case MLXSW_SP_KVDL_ENTRY_TYPE_ADJ: 759 case MLXSW_SP_KVDL_ENTRY_TYPE_ACTSET: 760 case MLXSW_SP_KVDL_ENTRY_TYPE_PBS: 761 case MLXSW_SP_KVDL_ENTRY_TYPE_MCRIGR: 762 case MLXSW_SP_KVDL_ENTRY_TYPE_IPV6_ADDRESS: 763 case MLXSW_SP_KVDL_ENTRY_TYPE_TNUMT: 764 default: 765 return 1; 766 } 767 } 768 769 struct mlxsw_sp_kvdl_ops { 770 size_t priv_size; 771 int (*init)(struct mlxsw_sp *mlxsw_sp, void *priv); 772 void (*fini)(struct mlxsw_sp *mlxsw_sp, void *priv); 773 int (*alloc)(struct mlxsw_sp *mlxsw_sp, void *priv, 774 enum mlxsw_sp_kvdl_entry_type type, 775 unsigned int entry_count, u32 *p_entry_index); 776 void (*free)(struct mlxsw_sp *mlxsw_sp, void *priv, 777 enum mlxsw_sp_kvdl_entry_type type, 778 unsigned int entry_count, int entry_index); 779 int (*alloc_size_query)(struct mlxsw_sp *mlxsw_sp, void *priv, 780 enum mlxsw_sp_kvdl_entry_type type, 781 unsigned int entry_count, 782 unsigned int *p_alloc_count); 783 int (*resources_register)(struct mlxsw_sp *mlxsw_sp, void *priv); 784 }; 785 786 int mlxsw_sp_kvdl_init(struct mlxsw_sp *mlxsw_sp); 787 void mlxsw_sp_kvdl_fini(struct mlxsw_sp *mlxsw_sp); 788 int mlxsw_sp_kvdl_alloc(struct mlxsw_sp *mlxsw_sp, 789 enum mlxsw_sp_kvdl_entry_type type, 790 unsigned int entry_count, u32 *p_entry_index); 791 void mlxsw_sp_kvdl_free(struct mlxsw_sp *mlxsw_sp, 792 enum mlxsw_sp_kvdl_entry_type type, 793 unsigned int entry_count, int entry_index); 794 int mlxsw_sp_kvdl_alloc_count_query(struct mlxsw_sp *mlxsw_sp, 795 enum mlxsw_sp_kvdl_entry_type type, 796 unsigned int entry_count, 797 unsigned int *p_alloc_count); 798 799 /* spectrum1_kvdl.c */ 800 extern const struct mlxsw_sp_kvdl_ops mlxsw_sp1_kvdl_ops; 801 int mlxsw_sp1_kvdl_resources_register(struct mlxsw_core *mlxsw_core); 802 803 /* spectrum2_kvdl.c */ 804 extern const struct mlxsw_sp_kvdl_ops mlxsw_sp2_kvdl_ops; 805 806 struct mlxsw_sp_acl_rule_info { 807 unsigned int priority; 808 struct mlxsw_afk_element_values values; 809 struct mlxsw_afa_block *act_block; 810 u8 action_created:1, 811 ingress_bind_blocker:1, 812 egress_bind_blocker:1, 813 counter_valid:1, 814 policer_index_valid:1; 815 unsigned int counter_index; 816 u16 policer_index; 817 }; 818 819 /* spectrum_flow.c */ 820 struct mlxsw_sp_flow_block { 821 struct list_head binding_list; 822 struct { 823 struct list_head list; 824 unsigned int min_prio; 825 unsigned int max_prio; 826 } mall; 827 struct mlxsw_sp_acl_ruleset *ruleset_zero; 828 struct mlxsw_sp *mlxsw_sp; 829 unsigned int rule_count; 830 unsigned int disable_count; 831 unsigned int ingress_blocker_rule_count; 832 unsigned int egress_blocker_rule_count; 833 unsigned int ingress_binding_count; 834 unsigned int egress_binding_count; 835 struct net *net; 836 }; 837 838 struct mlxsw_sp_flow_block_binding { 839 struct list_head list; 840 struct mlxsw_sp_port *mlxsw_sp_port; 841 bool ingress; 842 }; 843 844 static inline struct mlxsw_sp * 845 mlxsw_sp_flow_block_mlxsw_sp(struct mlxsw_sp_flow_block *block) 846 { 847 return block->mlxsw_sp; 848 } 849 850 static inline unsigned int 851 mlxsw_sp_flow_block_rule_count(const struct mlxsw_sp_flow_block *block) 852 { 853 return block ? block->rule_count : 0; 854 } 855 856 static inline void 857 mlxsw_sp_flow_block_disable_inc(struct mlxsw_sp_flow_block *block) 858 { 859 if (block) 860 block->disable_count++; 861 } 862 863 static inline void 864 mlxsw_sp_flow_block_disable_dec(struct mlxsw_sp_flow_block *block) 865 { 866 if (block) 867 block->disable_count--; 868 } 869 870 static inline bool 871 mlxsw_sp_flow_block_disabled(const struct mlxsw_sp_flow_block *block) 872 { 873 return block->disable_count; 874 } 875 876 static inline bool 877 mlxsw_sp_flow_block_is_egress_bound(const struct mlxsw_sp_flow_block *block) 878 { 879 return block->egress_binding_count; 880 } 881 882 static inline bool 883 mlxsw_sp_flow_block_is_ingress_bound(const struct mlxsw_sp_flow_block *block) 884 { 885 return block->ingress_binding_count; 886 } 887 888 static inline bool 889 mlxsw_sp_flow_block_is_mixed_bound(const struct mlxsw_sp_flow_block *block) 890 { 891 return block->ingress_binding_count && block->egress_binding_count; 892 } 893 894 struct mlxsw_sp_flow_block *mlxsw_sp_flow_block_create(struct mlxsw_sp *mlxsw_sp, 895 struct net *net); 896 void mlxsw_sp_flow_block_destroy(struct mlxsw_sp_flow_block *block); 897 int mlxsw_sp_setup_tc_block_clsact(struct mlxsw_sp_port *mlxsw_sp_port, 898 struct flow_block_offload *f, 899 bool ingress); 900 901 /* spectrum_acl.c */ 902 struct mlxsw_sp_acl_ruleset; 903 904 enum mlxsw_sp_acl_profile { 905 MLXSW_SP_ACL_PROFILE_FLOWER, 906 MLXSW_SP_ACL_PROFILE_MR, 907 }; 908 909 struct mlxsw_afk *mlxsw_sp_acl_afk(struct mlxsw_sp_acl *acl); 910 911 int mlxsw_sp_acl_ruleset_bind(struct mlxsw_sp *mlxsw_sp, 912 struct mlxsw_sp_flow_block *block, 913 struct mlxsw_sp_flow_block_binding *binding); 914 void mlxsw_sp_acl_ruleset_unbind(struct mlxsw_sp *mlxsw_sp, 915 struct mlxsw_sp_flow_block *block, 916 struct mlxsw_sp_flow_block_binding *binding); 917 struct mlxsw_sp_acl_ruleset * 918 mlxsw_sp_acl_ruleset_lookup(struct mlxsw_sp *mlxsw_sp, 919 struct mlxsw_sp_flow_block *block, u32 chain_index, 920 enum mlxsw_sp_acl_profile profile); 921 struct mlxsw_sp_acl_ruleset * 922 mlxsw_sp_acl_ruleset_get(struct mlxsw_sp *mlxsw_sp, 923 struct mlxsw_sp_flow_block *block, u32 chain_index, 924 enum mlxsw_sp_acl_profile profile, 925 struct mlxsw_afk_element_usage *tmplt_elusage); 926 void mlxsw_sp_acl_ruleset_put(struct mlxsw_sp *mlxsw_sp, 927 struct mlxsw_sp_acl_ruleset *ruleset); 928 u16 mlxsw_sp_acl_ruleset_group_id(struct mlxsw_sp_acl_ruleset *ruleset); 929 void mlxsw_sp_acl_ruleset_prio_get(struct mlxsw_sp_acl_ruleset *ruleset, 930 unsigned int *p_min_prio, 931 unsigned int *p_max_prio); 932 933 struct mlxsw_sp_acl_rule_info * 934 mlxsw_sp_acl_rulei_create(struct mlxsw_sp_acl *acl, 935 struct mlxsw_afa_block *afa_block); 936 void mlxsw_sp_acl_rulei_destroy(struct mlxsw_sp_acl_rule_info *rulei); 937 int mlxsw_sp_acl_rulei_commit(struct mlxsw_sp_acl_rule_info *rulei); 938 void mlxsw_sp_acl_rulei_priority(struct mlxsw_sp_acl_rule_info *rulei, 939 unsigned int priority); 940 void mlxsw_sp_acl_rulei_keymask_u32(struct mlxsw_sp_acl_rule_info *rulei, 941 enum mlxsw_afk_element element, 942 u32 key_value, u32 mask_value); 943 void mlxsw_sp_acl_rulei_keymask_buf(struct mlxsw_sp_acl_rule_info *rulei, 944 enum mlxsw_afk_element element, 945 const char *key_value, 946 const char *mask_value, unsigned int len); 947 int mlxsw_sp_acl_rulei_act_continue(struct mlxsw_sp_acl_rule_info *rulei); 948 int mlxsw_sp_acl_rulei_act_jump(struct mlxsw_sp_acl_rule_info *rulei, 949 u16 group_id); 950 int mlxsw_sp_acl_rulei_act_terminate(struct mlxsw_sp_acl_rule_info *rulei); 951 int mlxsw_sp_acl_rulei_act_drop(struct mlxsw_sp_acl_rule_info *rulei, 952 bool ingress, 953 const struct flow_action_cookie *fa_cookie, 954 struct netlink_ext_ack *extack); 955 int mlxsw_sp_acl_rulei_act_trap(struct mlxsw_sp_acl_rule_info *rulei); 956 int mlxsw_sp_acl_rulei_act_mirror(struct mlxsw_sp *mlxsw_sp, 957 struct mlxsw_sp_acl_rule_info *rulei, 958 struct mlxsw_sp_flow_block *block, 959 struct net_device *out_dev, 960 struct netlink_ext_ack *extack); 961 int mlxsw_sp_acl_rulei_act_fwd(struct mlxsw_sp *mlxsw_sp, 962 struct mlxsw_sp_acl_rule_info *rulei, 963 struct net_device *out_dev, 964 struct netlink_ext_ack *extack); 965 int mlxsw_sp_acl_rulei_act_vlan(struct mlxsw_sp *mlxsw_sp, 966 struct mlxsw_sp_acl_rule_info *rulei, 967 u32 action, u16 vid, u16 proto, u8 prio, 968 struct netlink_ext_ack *extack); 969 int mlxsw_sp_acl_rulei_act_priority(struct mlxsw_sp *mlxsw_sp, 970 struct mlxsw_sp_acl_rule_info *rulei, 971 u32 prio, struct netlink_ext_ack *extack); 972 int mlxsw_sp_acl_rulei_act_mangle(struct mlxsw_sp *mlxsw_sp, 973 struct mlxsw_sp_acl_rule_info *rulei, 974 enum flow_action_mangle_base htype, 975 u32 offset, u32 mask, u32 val, 976 struct netlink_ext_ack *extack); 977 int mlxsw_sp_acl_rulei_act_police(struct mlxsw_sp *mlxsw_sp, 978 struct mlxsw_sp_acl_rule_info *rulei, 979 u32 index, u64 rate_bytes_ps, 980 u32 burst, struct netlink_ext_ack *extack); 981 int mlxsw_sp_acl_rulei_act_count(struct mlxsw_sp *mlxsw_sp, 982 struct mlxsw_sp_acl_rule_info *rulei, 983 struct netlink_ext_ack *extack); 984 int mlxsw_sp_acl_rulei_act_fid_set(struct mlxsw_sp *mlxsw_sp, 985 struct mlxsw_sp_acl_rule_info *rulei, 986 u16 fid, struct netlink_ext_ack *extack); 987 int mlxsw_sp_acl_rulei_act_sample(struct mlxsw_sp *mlxsw_sp, 988 struct mlxsw_sp_acl_rule_info *rulei, 989 struct mlxsw_sp_flow_block *block, 990 struct psample_group *psample_group, u32 rate, 991 u32 trunc_size, bool truncate, 992 struct netlink_ext_ack *extack); 993 994 struct mlxsw_sp_acl_rule; 995 996 struct mlxsw_sp_acl_rule * 997 mlxsw_sp_acl_rule_create(struct mlxsw_sp *mlxsw_sp, 998 struct mlxsw_sp_acl_ruleset *ruleset, 999 unsigned long cookie, 1000 struct mlxsw_afa_block *afa_block, 1001 struct netlink_ext_ack *extack); 1002 void mlxsw_sp_acl_rule_destroy(struct mlxsw_sp *mlxsw_sp, 1003 struct mlxsw_sp_acl_rule *rule); 1004 int mlxsw_sp_acl_rule_add(struct mlxsw_sp *mlxsw_sp, 1005 struct mlxsw_sp_acl_rule *rule); 1006 void mlxsw_sp_acl_rule_del(struct mlxsw_sp *mlxsw_sp, 1007 struct mlxsw_sp_acl_rule *rule); 1008 int mlxsw_sp_acl_rule_action_replace(struct mlxsw_sp *mlxsw_sp, 1009 struct mlxsw_sp_acl_rule *rule, 1010 struct mlxsw_afa_block *afa_block); 1011 struct mlxsw_sp_acl_rule * 1012 mlxsw_sp_acl_rule_lookup(struct mlxsw_sp *mlxsw_sp, 1013 struct mlxsw_sp_acl_ruleset *ruleset, 1014 unsigned long cookie); 1015 struct mlxsw_sp_acl_rule_info * 1016 mlxsw_sp_acl_rule_rulei(struct mlxsw_sp_acl_rule *rule); 1017 int mlxsw_sp_acl_rule_get_stats(struct mlxsw_sp *mlxsw_sp, 1018 struct mlxsw_sp_acl_rule *rule, 1019 u64 *packets, u64 *bytes, u64 *drops, 1020 u64 *last_use, 1021 enum flow_action_hw_stats *used_hw_stats); 1022 1023 struct mlxsw_sp_fid *mlxsw_sp_acl_dummy_fid(struct mlxsw_sp *mlxsw_sp); 1024 1025 static inline const struct flow_action_cookie * 1026 mlxsw_sp_acl_act_cookie_lookup(struct mlxsw_sp *mlxsw_sp, u32 cookie_index) 1027 { 1028 return mlxsw_afa_cookie_lookup(mlxsw_sp->afa, cookie_index); 1029 } 1030 1031 int mlxsw_sp_acl_init(struct mlxsw_sp *mlxsw_sp); 1032 void mlxsw_sp_acl_fini(struct mlxsw_sp *mlxsw_sp); 1033 u32 mlxsw_sp_acl_region_rehash_intrvl_get(struct mlxsw_sp *mlxsw_sp); 1034 int mlxsw_sp_acl_region_rehash_intrvl_set(struct mlxsw_sp *mlxsw_sp, u32 val); 1035 1036 struct mlxsw_sp_acl_mangle_action; 1037 1038 struct mlxsw_sp_acl_rulei_ops { 1039 int (*act_mangle_field)(struct mlxsw_sp *mlxsw_sp, struct mlxsw_sp_acl_rule_info *rulei, 1040 struct mlxsw_sp_acl_mangle_action *mact, u32 val, 1041 struct netlink_ext_ack *extack); 1042 }; 1043 1044 extern struct mlxsw_sp_acl_rulei_ops mlxsw_sp1_acl_rulei_ops; 1045 extern struct mlxsw_sp_acl_rulei_ops mlxsw_sp2_acl_rulei_ops; 1046 1047 /* spectrum_acl_tcam.c */ 1048 struct mlxsw_sp_acl_tcam; 1049 struct mlxsw_sp_acl_tcam_region; 1050 1051 struct mlxsw_sp_acl_tcam_ops { 1052 enum mlxsw_reg_ptar_key_type key_type; 1053 size_t priv_size; 1054 int (*init)(struct mlxsw_sp *mlxsw_sp, void *priv, 1055 struct mlxsw_sp_acl_tcam *tcam); 1056 void (*fini)(struct mlxsw_sp *mlxsw_sp, void *priv); 1057 size_t region_priv_size; 1058 int (*region_init)(struct mlxsw_sp *mlxsw_sp, void *region_priv, 1059 void *tcam_priv, 1060 struct mlxsw_sp_acl_tcam_region *region, 1061 void *hints_priv); 1062 void (*region_fini)(struct mlxsw_sp *mlxsw_sp, void *region_priv); 1063 int (*region_associate)(struct mlxsw_sp *mlxsw_sp, 1064 struct mlxsw_sp_acl_tcam_region *region); 1065 void * (*region_rehash_hints_get)(void *region_priv); 1066 void (*region_rehash_hints_put)(void *hints_priv); 1067 size_t chunk_priv_size; 1068 void (*chunk_init)(void *region_priv, void *chunk_priv, 1069 unsigned int priority); 1070 void (*chunk_fini)(void *chunk_priv); 1071 size_t entry_priv_size; 1072 int (*entry_add)(struct mlxsw_sp *mlxsw_sp, 1073 void *region_priv, void *chunk_priv, 1074 void *entry_priv, 1075 struct mlxsw_sp_acl_rule_info *rulei); 1076 void (*entry_del)(struct mlxsw_sp *mlxsw_sp, 1077 void *region_priv, void *chunk_priv, 1078 void *entry_priv); 1079 int (*entry_action_replace)(struct mlxsw_sp *mlxsw_sp, 1080 void *region_priv, void *entry_priv, 1081 struct mlxsw_sp_acl_rule_info *rulei); 1082 int (*entry_activity_get)(struct mlxsw_sp *mlxsw_sp, 1083 void *region_priv, void *entry_priv, 1084 bool *activity); 1085 }; 1086 1087 /* spectrum1_acl_tcam.c */ 1088 extern const struct mlxsw_sp_acl_tcam_ops mlxsw_sp1_acl_tcam_ops; 1089 1090 /* spectrum2_acl_tcam.c */ 1091 extern const struct mlxsw_sp_acl_tcam_ops mlxsw_sp2_acl_tcam_ops; 1092 1093 /* spectrum_acl_flex_actions.c */ 1094 extern const struct mlxsw_afa_ops mlxsw_sp1_act_afa_ops; 1095 extern const struct mlxsw_afa_ops mlxsw_sp2_act_afa_ops; 1096 1097 /* spectrum_acl_flex_keys.c */ 1098 extern const struct mlxsw_afk_ops mlxsw_sp1_afk_ops; 1099 extern const struct mlxsw_afk_ops mlxsw_sp2_afk_ops; 1100 1101 /* spectrum_matchall.c */ 1102 struct mlxsw_sp_mall_ops { 1103 int (*sample_add)(struct mlxsw_sp *mlxsw_sp, 1104 struct mlxsw_sp_port *mlxsw_sp_port, 1105 struct mlxsw_sp_mall_entry *mall_entry, 1106 struct netlink_ext_ack *extack); 1107 void (*sample_del)(struct mlxsw_sp *mlxsw_sp, 1108 struct mlxsw_sp_port *mlxsw_sp_port, 1109 struct mlxsw_sp_mall_entry *mall_entry); 1110 }; 1111 1112 extern const struct mlxsw_sp_mall_ops mlxsw_sp1_mall_ops; 1113 extern const struct mlxsw_sp_mall_ops mlxsw_sp2_mall_ops; 1114 1115 enum mlxsw_sp_mall_action_type { 1116 MLXSW_SP_MALL_ACTION_TYPE_MIRROR, 1117 MLXSW_SP_MALL_ACTION_TYPE_SAMPLE, 1118 MLXSW_SP_MALL_ACTION_TYPE_TRAP, 1119 }; 1120 1121 struct mlxsw_sp_mall_mirror_entry { 1122 const struct net_device *to_dev; 1123 int span_id; 1124 }; 1125 1126 struct mlxsw_sp_mall_trap_entry { 1127 int span_id; 1128 }; 1129 1130 struct mlxsw_sp_mall_sample_entry { 1131 struct mlxsw_sp_sample_params params; 1132 int span_id; /* Relevant for Spectrum-2 onwards. */ 1133 }; 1134 1135 struct mlxsw_sp_mall_entry { 1136 struct list_head list; 1137 unsigned long cookie; 1138 unsigned int priority; 1139 enum mlxsw_sp_mall_action_type type; 1140 bool ingress; 1141 union { 1142 struct mlxsw_sp_mall_mirror_entry mirror; 1143 struct mlxsw_sp_mall_trap_entry trap; 1144 struct mlxsw_sp_mall_sample_entry sample; 1145 }; 1146 struct rcu_head rcu; 1147 }; 1148 1149 int mlxsw_sp_mall_replace(struct mlxsw_sp *mlxsw_sp, 1150 struct mlxsw_sp_flow_block *block, 1151 struct tc_cls_matchall_offload *f); 1152 void mlxsw_sp_mall_destroy(struct mlxsw_sp_flow_block *block, 1153 struct tc_cls_matchall_offload *f); 1154 int mlxsw_sp_mall_port_bind(struct mlxsw_sp_flow_block *block, 1155 struct mlxsw_sp_port *mlxsw_sp_port, 1156 struct netlink_ext_ack *extack); 1157 void mlxsw_sp_mall_port_unbind(struct mlxsw_sp_flow_block *block, 1158 struct mlxsw_sp_port *mlxsw_sp_port); 1159 int mlxsw_sp_mall_prio_get(struct mlxsw_sp_flow_block *block, u32 chain_index, 1160 unsigned int *p_min_prio, unsigned int *p_max_prio); 1161 1162 /* spectrum_flower.c */ 1163 int mlxsw_sp_flower_replace(struct mlxsw_sp *mlxsw_sp, 1164 struct mlxsw_sp_flow_block *block, 1165 struct flow_cls_offload *f); 1166 void mlxsw_sp_flower_destroy(struct mlxsw_sp *mlxsw_sp, 1167 struct mlxsw_sp_flow_block *block, 1168 struct flow_cls_offload *f); 1169 int mlxsw_sp_flower_stats(struct mlxsw_sp *mlxsw_sp, 1170 struct mlxsw_sp_flow_block *block, 1171 struct flow_cls_offload *f); 1172 int mlxsw_sp_flower_tmplt_create(struct mlxsw_sp *mlxsw_sp, 1173 struct mlxsw_sp_flow_block *block, 1174 struct flow_cls_offload *f); 1175 void mlxsw_sp_flower_tmplt_destroy(struct mlxsw_sp *mlxsw_sp, 1176 struct mlxsw_sp_flow_block *block, 1177 struct flow_cls_offload *f); 1178 int mlxsw_sp_flower_prio_get(struct mlxsw_sp *mlxsw_sp, 1179 struct mlxsw_sp_flow_block *block, 1180 u32 chain_index, unsigned int *p_min_prio, 1181 unsigned int *p_max_prio); 1182 1183 /* spectrum_qdisc.c */ 1184 int mlxsw_sp_tc_qdisc_init(struct mlxsw_sp_port *mlxsw_sp_port); 1185 void mlxsw_sp_tc_qdisc_fini(struct mlxsw_sp_port *mlxsw_sp_port); 1186 int mlxsw_sp_setup_tc_red(struct mlxsw_sp_port *mlxsw_sp_port, 1187 struct tc_red_qopt_offload *p); 1188 int mlxsw_sp_setup_tc_prio(struct mlxsw_sp_port *mlxsw_sp_port, 1189 struct tc_prio_qopt_offload *p); 1190 int mlxsw_sp_setup_tc_ets(struct mlxsw_sp_port *mlxsw_sp_port, 1191 struct tc_ets_qopt_offload *p); 1192 int mlxsw_sp_setup_tc_tbf(struct mlxsw_sp_port *mlxsw_sp_port, 1193 struct tc_tbf_qopt_offload *p); 1194 int mlxsw_sp_setup_tc_fifo(struct mlxsw_sp_port *mlxsw_sp_port, 1195 struct tc_fifo_qopt_offload *p); 1196 int mlxsw_sp_setup_tc_block_qevent_early_drop(struct mlxsw_sp_port *mlxsw_sp_port, 1197 struct flow_block_offload *f); 1198 1199 /* spectrum_fid.c */ 1200 bool mlxsw_sp_fid_is_dummy(struct mlxsw_sp *mlxsw_sp, u16 fid_index); 1201 bool mlxsw_sp_fid_lag_vid_valid(const struct mlxsw_sp_fid *fid); 1202 struct mlxsw_sp_fid *mlxsw_sp_fid_lookup_by_index(struct mlxsw_sp *mlxsw_sp, 1203 u16 fid_index); 1204 int mlxsw_sp_fid_nve_ifindex(const struct mlxsw_sp_fid *fid, int *nve_ifindex); 1205 int mlxsw_sp_fid_nve_type(const struct mlxsw_sp_fid *fid, 1206 enum mlxsw_sp_nve_type *p_type); 1207 struct mlxsw_sp_fid *mlxsw_sp_fid_lookup_by_vni(struct mlxsw_sp *mlxsw_sp, 1208 __be32 vni); 1209 int mlxsw_sp_fid_vni(const struct mlxsw_sp_fid *fid, __be32 *vni); 1210 int mlxsw_sp_fid_nve_flood_index_set(struct mlxsw_sp_fid *fid, 1211 u32 nve_flood_index); 1212 void mlxsw_sp_fid_nve_flood_index_clear(struct mlxsw_sp_fid *fid); 1213 bool mlxsw_sp_fid_nve_flood_index_is_set(const struct mlxsw_sp_fid *fid); 1214 int mlxsw_sp_fid_vni_set(struct mlxsw_sp_fid *fid, enum mlxsw_sp_nve_type type, 1215 __be32 vni, int nve_ifindex); 1216 void mlxsw_sp_fid_vni_clear(struct mlxsw_sp_fid *fid); 1217 bool mlxsw_sp_fid_vni_is_set(const struct mlxsw_sp_fid *fid); 1218 void mlxsw_sp_fid_fdb_clear_offload(const struct mlxsw_sp_fid *fid, 1219 const struct net_device *nve_dev); 1220 int mlxsw_sp_fid_flood_set(struct mlxsw_sp_fid *fid, 1221 enum mlxsw_sp_flood_type packet_type, u8 local_port, 1222 bool member); 1223 int mlxsw_sp_fid_port_vid_map(struct mlxsw_sp_fid *fid, 1224 struct mlxsw_sp_port *mlxsw_sp_port, u16 vid); 1225 void mlxsw_sp_fid_port_vid_unmap(struct mlxsw_sp_fid *fid, 1226 struct mlxsw_sp_port *mlxsw_sp_port, u16 vid); 1227 u16 mlxsw_sp_fid_index(const struct mlxsw_sp_fid *fid); 1228 enum mlxsw_sp_fid_type mlxsw_sp_fid_type(const struct mlxsw_sp_fid *fid); 1229 void mlxsw_sp_fid_rif_set(struct mlxsw_sp_fid *fid, struct mlxsw_sp_rif *rif); 1230 struct mlxsw_sp_rif *mlxsw_sp_fid_rif(const struct mlxsw_sp_fid *fid); 1231 enum mlxsw_sp_rif_type 1232 mlxsw_sp_fid_type_rif_type(const struct mlxsw_sp *mlxsw_sp, 1233 enum mlxsw_sp_fid_type type); 1234 u16 mlxsw_sp_fid_8021q_vid(const struct mlxsw_sp_fid *fid); 1235 struct mlxsw_sp_fid *mlxsw_sp_fid_8021q_get(struct mlxsw_sp *mlxsw_sp, u16 vid); 1236 struct mlxsw_sp_fid *mlxsw_sp_fid_8021d_get(struct mlxsw_sp *mlxsw_sp, 1237 int br_ifindex); 1238 struct mlxsw_sp_fid *mlxsw_sp_fid_8021q_lookup(struct mlxsw_sp *mlxsw_sp, 1239 u16 vid); 1240 struct mlxsw_sp_fid *mlxsw_sp_fid_8021d_lookup(struct mlxsw_sp *mlxsw_sp, 1241 int br_ifindex); 1242 struct mlxsw_sp_fid *mlxsw_sp_fid_rfid_get(struct mlxsw_sp *mlxsw_sp, 1243 u16 rif_index); 1244 struct mlxsw_sp_fid *mlxsw_sp_fid_dummy_get(struct mlxsw_sp *mlxsw_sp); 1245 void mlxsw_sp_fid_put(struct mlxsw_sp_fid *fid); 1246 int mlxsw_sp_port_fids_init(struct mlxsw_sp_port *mlxsw_sp_port); 1247 void mlxsw_sp_port_fids_fini(struct mlxsw_sp_port *mlxsw_sp_port); 1248 int mlxsw_sp_fids_init(struct mlxsw_sp *mlxsw_sp); 1249 void mlxsw_sp_fids_fini(struct mlxsw_sp *mlxsw_sp); 1250 1251 /* spectrum_mr.c */ 1252 enum mlxsw_sp_mr_route_prio { 1253 MLXSW_SP_MR_ROUTE_PRIO_SG, 1254 MLXSW_SP_MR_ROUTE_PRIO_STARG, 1255 MLXSW_SP_MR_ROUTE_PRIO_CATCHALL, 1256 __MLXSW_SP_MR_ROUTE_PRIO_MAX 1257 }; 1258 1259 #define MLXSW_SP_MR_ROUTE_PRIO_MAX (__MLXSW_SP_MR_ROUTE_PRIO_MAX - 1) 1260 1261 struct mlxsw_sp_mr_route_key; 1262 1263 struct mlxsw_sp_mr_tcam_ops { 1264 size_t priv_size; 1265 int (*init)(struct mlxsw_sp *mlxsw_sp, void *priv); 1266 void (*fini)(void *priv); 1267 size_t route_priv_size; 1268 int (*route_create)(struct mlxsw_sp *mlxsw_sp, void *priv, 1269 void *route_priv, 1270 struct mlxsw_sp_mr_route_key *key, 1271 struct mlxsw_afa_block *afa_block, 1272 enum mlxsw_sp_mr_route_prio prio); 1273 void (*route_destroy)(struct mlxsw_sp *mlxsw_sp, void *priv, 1274 void *route_priv, 1275 struct mlxsw_sp_mr_route_key *key); 1276 int (*route_update)(struct mlxsw_sp *mlxsw_sp, void *route_priv, 1277 struct mlxsw_sp_mr_route_key *key, 1278 struct mlxsw_afa_block *afa_block); 1279 }; 1280 1281 /* spectrum1_mr_tcam.c */ 1282 extern const struct mlxsw_sp_mr_tcam_ops mlxsw_sp1_mr_tcam_ops; 1283 1284 /* spectrum2_mr_tcam.c */ 1285 extern const struct mlxsw_sp_mr_tcam_ops mlxsw_sp2_mr_tcam_ops; 1286 1287 /* spectrum_nve.c */ 1288 struct mlxsw_sp_nve_params { 1289 enum mlxsw_sp_nve_type type; 1290 __be32 vni; 1291 const struct net_device *dev; 1292 u16 ethertype; 1293 }; 1294 1295 extern const struct mlxsw_sp_nve_ops *mlxsw_sp1_nve_ops_arr[]; 1296 extern const struct mlxsw_sp_nve_ops *mlxsw_sp2_nve_ops_arr[]; 1297 1298 int mlxsw_sp_nve_learned_ip_resolve(struct mlxsw_sp *mlxsw_sp, u32 uip, 1299 enum mlxsw_sp_l3proto proto, 1300 union mlxsw_sp_l3addr *addr); 1301 int mlxsw_sp_nve_flood_ip_add(struct mlxsw_sp *mlxsw_sp, 1302 struct mlxsw_sp_fid *fid, 1303 enum mlxsw_sp_l3proto proto, 1304 union mlxsw_sp_l3addr *addr); 1305 void mlxsw_sp_nve_flood_ip_del(struct mlxsw_sp *mlxsw_sp, 1306 struct mlxsw_sp_fid *fid, 1307 enum mlxsw_sp_l3proto proto, 1308 union mlxsw_sp_l3addr *addr); 1309 int mlxsw_sp_nve_fid_enable(struct mlxsw_sp *mlxsw_sp, struct mlxsw_sp_fid *fid, 1310 struct mlxsw_sp_nve_params *params, 1311 struct netlink_ext_ack *extack); 1312 void mlxsw_sp_nve_fid_disable(struct mlxsw_sp *mlxsw_sp, 1313 struct mlxsw_sp_fid *fid); 1314 int mlxsw_sp_port_nve_init(struct mlxsw_sp_port *mlxsw_sp_port); 1315 void mlxsw_sp_port_nve_fini(struct mlxsw_sp_port *mlxsw_sp_port); 1316 int mlxsw_sp_nve_init(struct mlxsw_sp *mlxsw_sp); 1317 void mlxsw_sp_nve_fini(struct mlxsw_sp *mlxsw_sp); 1318 1319 /* spectrum_nve_vxlan.c */ 1320 int mlxsw_sp_nve_inc_parsing_depth_get(struct mlxsw_sp *mlxsw_sp); 1321 void mlxsw_sp_nve_inc_parsing_depth_put(struct mlxsw_sp *mlxsw_sp); 1322 1323 /* spectrum_trap.c */ 1324 int mlxsw_sp_devlink_traps_init(struct mlxsw_sp *mlxsw_sp); 1325 void mlxsw_sp_devlink_traps_fini(struct mlxsw_sp *mlxsw_sp); 1326 int mlxsw_sp_trap_init(struct mlxsw_core *mlxsw_core, 1327 const struct devlink_trap *trap, void *trap_ctx); 1328 void mlxsw_sp_trap_fini(struct mlxsw_core *mlxsw_core, 1329 const struct devlink_trap *trap, void *trap_ctx); 1330 int mlxsw_sp_trap_action_set(struct mlxsw_core *mlxsw_core, 1331 const struct devlink_trap *trap, 1332 enum devlink_trap_action action, 1333 struct netlink_ext_ack *extack); 1334 int mlxsw_sp_trap_group_init(struct mlxsw_core *mlxsw_core, 1335 const struct devlink_trap_group *group); 1336 int mlxsw_sp_trap_group_set(struct mlxsw_core *mlxsw_core, 1337 const struct devlink_trap_group *group, 1338 const struct devlink_trap_policer *policer, 1339 struct netlink_ext_ack *extack); 1340 int 1341 mlxsw_sp_trap_policer_init(struct mlxsw_core *mlxsw_core, 1342 const struct devlink_trap_policer *policer); 1343 void mlxsw_sp_trap_policer_fini(struct mlxsw_core *mlxsw_core, 1344 const struct devlink_trap_policer *policer); 1345 int 1346 mlxsw_sp_trap_policer_set(struct mlxsw_core *mlxsw_core, 1347 const struct devlink_trap_policer *policer, 1348 u64 rate, u64 burst, struct netlink_ext_ack *extack); 1349 int 1350 mlxsw_sp_trap_policer_counter_get(struct mlxsw_core *mlxsw_core, 1351 const struct devlink_trap_policer *policer, 1352 u64 *p_drops); 1353 int mlxsw_sp_trap_group_policer_hw_id_get(struct mlxsw_sp *mlxsw_sp, u16 id, 1354 bool *p_enabled, u16 *p_hw_id); 1355 1356 static inline struct net *mlxsw_sp_net(struct mlxsw_sp *mlxsw_sp) 1357 { 1358 return mlxsw_core_net(mlxsw_sp->core); 1359 } 1360 1361 /* spectrum_ethtool.c */ 1362 extern const struct ethtool_ops mlxsw_sp_port_ethtool_ops; 1363 extern const struct mlxsw_sp_port_type_speed_ops mlxsw_sp1_port_type_speed_ops; 1364 extern const struct mlxsw_sp_port_type_speed_ops mlxsw_sp2_port_type_speed_ops; 1365 1366 /* spectrum_policer.c */ 1367 extern const struct mlxsw_sp_policer_core_ops mlxsw_sp1_policer_core_ops; 1368 extern const struct mlxsw_sp_policer_core_ops mlxsw_sp2_policer_core_ops; 1369 1370 enum mlxsw_sp_policer_type { 1371 MLXSW_SP_POLICER_TYPE_SINGLE_RATE, 1372 1373 __MLXSW_SP_POLICER_TYPE_MAX, 1374 MLXSW_SP_POLICER_TYPE_MAX = __MLXSW_SP_POLICER_TYPE_MAX - 1, 1375 }; 1376 1377 struct mlxsw_sp_policer_params { 1378 u64 rate; 1379 u64 burst; 1380 bool bytes; 1381 }; 1382 1383 int mlxsw_sp_policer_add(struct mlxsw_sp *mlxsw_sp, 1384 enum mlxsw_sp_policer_type type, 1385 const struct mlxsw_sp_policer_params *params, 1386 struct netlink_ext_ack *extack, u16 *p_policer_index); 1387 void mlxsw_sp_policer_del(struct mlxsw_sp *mlxsw_sp, 1388 enum mlxsw_sp_policer_type type, 1389 u16 policer_index); 1390 int mlxsw_sp_policer_drops_counter_get(struct mlxsw_sp *mlxsw_sp, 1391 enum mlxsw_sp_policer_type type, 1392 u16 policer_index, u64 *p_drops); 1393 int mlxsw_sp_policers_init(struct mlxsw_sp *mlxsw_sp); 1394 void mlxsw_sp_policers_fini(struct mlxsw_sp *mlxsw_sp); 1395 int mlxsw_sp_policer_resources_register(struct mlxsw_core *mlxsw_core); 1396 1397 #endif 1398