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_REG_H 5 #define _MLXSW_REG_H 6 7 #include <linux/kernel.h> 8 #include <linux/string.h> 9 #include <linux/bitops.h> 10 #include <linux/if_vlan.h> 11 12 #include "item.h" 13 #include "port.h" 14 15 struct mlxsw_reg_info { 16 u16 id; 17 u16 len; /* In u8 */ 18 const char *name; 19 }; 20 21 #define MLXSW_REG_DEFINE(_name, _id, _len) \ 22 static const struct mlxsw_reg_info mlxsw_reg_##_name = { \ 23 .id = _id, \ 24 .len = _len, \ 25 .name = #_name, \ 26 } 27 28 #define MLXSW_REG(type) (&mlxsw_reg_##type) 29 #define MLXSW_REG_LEN(type) MLXSW_REG(type)->len 30 #define MLXSW_REG_ZERO(type, payload) memset(payload, 0, MLXSW_REG(type)->len) 31 32 /* SGCR - Switch General Configuration Register 33 * -------------------------------------------- 34 * This register is used for configuration of the switch capabilities. 35 */ 36 #define MLXSW_REG_SGCR_ID 0x2000 37 #define MLXSW_REG_SGCR_LEN 0x10 38 39 MLXSW_REG_DEFINE(sgcr, MLXSW_REG_SGCR_ID, MLXSW_REG_SGCR_LEN); 40 41 /* reg_sgcr_llb 42 * Link Local Broadcast (Default=0) 43 * When set, all Link Local packets (224.0.0.X) will be treated as broadcast 44 * packets and ignore the IGMP snooping entries. 45 * Access: RW 46 */ 47 MLXSW_ITEM32(reg, sgcr, llb, 0x04, 0, 1); 48 49 static inline void mlxsw_reg_sgcr_pack(char *payload, bool llb) 50 { 51 MLXSW_REG_ZERO(sgcr, payload); 52 mlxsw_reg_sgcr_llb_set(payload, !!llb); 53 } 54 55 /* SPAD - Switch Physical Address Register 56 * --------------------------------------- 57 * The SPAD register configures the switch physical MAC address. 58 */ 59 #define MLXSW_REG_SPAD_ID 0x2002 60 #define MLXSW_REG_SPAD_LEN 0x10 61 62 MLXSW_REG_DEFINE(spad, MLXSW_REG_SPAD_ID, MLXSW_REG_SPAD_LEN); 63 64 /* reg_spad_base_mac 65 * Base MAC address for the switch partitions. 66 * Per switch partition MAC address is equal to: 67 * base_mac + swid 68 * Access: RW 69 */ 70 MLXSW_ITEM_BUF(reg, spad, base_mac, 0x02, 6); 71 72 /* SSPR - Switch System Port Record Register 73 * ----------------------------------------- 74 * Configures the system port to local port mapping. 75 */ 76 #define MLXSW_REG_SSPR_ID 0x2008 77 #define MLXSW_REG_SSPR_LEN 0x8 78 79 MLXSW_REG_DEFINE(sspr, MLXSW_REG_SSPR_ID, MLXSW_REG_SSPR_LEN); 80 81 /* reg_sspr_m 82 * Master - if set, then the record describes the master system port. 83 * This is needed in case a local port is mapped into several system ports 84 * (for multipathing). That number will be reported as the source system 85 * port when packets are forwarded to the CPU. Only one master port is allowed 86 * per local port. 87 * 88 * Note: Must be set for Spectrum. 89 * Access: RW 90 */ 91 MLXSW_ITEM32(reg, sspr, m, 0x00, 31, 1); 92 93 /* reg_sspr_local_port 94 * Local port number. 95 * 96 * Access: RW 97 */ 98 MLXSW_ITEM32_LP(reg, sspr, 0x00, 16, 0x00, 12); 99 100 /* reg_sspr_sub_port 101 * Virtual port within the physical port. 102 * Should be set to 0 when virtual ports are not enabled on the port. 103 * 104 * Access: RW 105 */ 106 MLXSW_ITEM32(reg, sspr, sub_port, 0x00, 8, 8); 107 108 /* reg_sspr_system_port 109 * Unique identifier within the stacking domain that represents all the ports 110 * that are available in the system (external ports). 111 * 112 * Currently, only single-ASIC configurations are supported, so we default to 113 * 1:1 mapping between system ports and local ports. 114 * Access: Index 115 */ 116 MLXSW_ITEM32(reg, sspr, system_port, 0x04, 0, 16); 117 118 static inline void mlxsw_reg_sspr_pack(char *payload, u16 local_port) 119 { 120 MLXSW_REG_ZERO(sspr, payload); 121 mlxsw_reg_sspr_m_set(payload, 1); 122 mlxsw_reg_sspr_local_port_set(payload, local_port); 123 mlxsw_reg_sspr_sub_port_set(payload, 0); 124 mlxsw_reg_sspr_system_port_set(payload, local_port); 125 } 126 127 /* SFDAT - Switch Filtering Database Aging Time 128 * -------------------------------------------- 129 * Controls the Switch aging time. Aging time is able to be set per Switch 130 * Partition. 131 */ 132 #define MLXSW_REG_SFDAT_ID 0x2009 133 #define MLXSW_REG_SFDAT_LEN 0x8 134 135 MLXSW_REG_DEFINE(sfdat, MLXSW_REG_SFDAT_ID, MLXSW_REG_SFDAT_LEN); 136 137 /* reg_sfdat_swid 138 * Switch partition ID. 139 * Access: Index 140 */ 141 MLXSW_ITEM32(reg, sfdat, swid, 0x00, 24, 8); 142 143 /* reg_sfdat_age_time 144 * Aging time in seconds 145 * Min - 10 seconds 146 * Max - 1,000,000 seconds 147 * Default is 300 seconds. 148 * Access: RW 149 */ 150 MLXSW_ITEM32(reg, sfdat, age_time, 0x04, 0, 20); 151 152 static inline void mlxsw_reg_sfdat_pack(char *payload, u32 age_time) 153 { 154 MLXSW_REG_ZERO(sfdat, payload); 155 mlxsw_reg_sfdat_swid_set(payload, 0); 156 mlxsw_reg_sfdat_age_time_set(payload, age_time); 157 } 158 159 /* SFD - Switch Filtering Database 160 * ------------------------------- 161 * The following register defines the access to the filtering database. 162 * The register supports querying, adding, removing and modifying the database. 163 * The access is optimized for bulk updates in which case more than one 164 * FDB record is present in the same command. 165 */ 166 #define MLXSW_REG_SFD_ID 0x200A 167 #define MLXSW_REG_SFD_BASE_LEN 0x10 /* base length, without records */ 168 #define MLXSW_REG_SFD_REC_LEN 0x10 /* record length */ 169 #define MLXSW_REG_SFD_REC_MAX_COUNT 64 170 #define MLXSW_REG_SFD_LEN (MLXSW_REG_SFD_BASE_LEN + \ 171 MLXSW_REG_SFD_REC_LEN * MLXSW_REG_SFD_REC_MAX_COUNT) 172 173 MLXSW_REG_DEFINE(sfd, MLXSW_REG_SFD_ID, MLXSW_REG_SFD_LEN); 174 175 /* reg_sfd_swid 176 * Switch partition ID for queries. Reserved on Write. 177 * Access: Index 178 */ 179 MLXSW_ITEM32(reg, sfd, swid, 0x00, 24, 8); 180 181 enum mlxsw_reg_sfd_op { 182 /* Dump entire FDB a (process according to record_locator) */ 183 MLXSW_REG_SFD_OP_QUERY_DUMP = 0, 184 /* Query records by {MAC, VID/FID} value */ 185 MLXSW_REG_SFD_OP_QUERY_QUERY = 1, 186 /* Query and clear activity. Query records by {MAC, VID/FID} value */ 187 MLXSW_REG_SFD_OP_QUERY_QUERY_AND_CLEAR_ACTIVITY = 2, 188 /* Test. Response indicates if each of the records could be 189 * added to the FDB. 190 */ 191 MLXSW_REG_SFD_OP_WRITE_TEST = 0, 192 /* Add/modify. Aged-out records cannot be added. This command removes 193 * the learning notification of the {MAC, VID/FID}. Response includes 194 * the entries that were added to the FDB. 195 */ 196 MLXSW_REG_SFD_OP_WRITE_EDIT = 1, 197 /* Remove record by {MAC, VID/FID}. This command also removes 198 * the learning notification and aged-out notifications 199 * of the {MAC, VID/FID}. The response provides current (pre-removal) 200 * entries as non-aged-out. 201 */ 202 MLXSW_REG_SFD_OP_WRITE_REMOVE = 2, 203 /* Remove learned notification by {MAC, VID/FID}. The response provides 204 * the removed learning notification. 205 */ 206 MLXSW_REG_SFD_OP_WRITE_REMOVE_NOTIFICATION = 2, 207 }; 208 209 /* reg_sfd_op 210 * Operation. 211 * Access: OP 212 */ 213 MLXSW_ITEM32(reg, sfd, op, 0x04, 30, 2); 214 215 /* reg_sfd_record_locator 216 * Used for querying the FDB. Use record_locator=0 to initiate the 217 * query. When a record is returned, a new record_locator is 218 * returned to be used in the subsequent query. 219 * Reserved for database update. 220 * Access: Index 221 */ 222 MLXSW_ITEM32(reg, sfd, record_locator, 0x04, 0, 30); 223 224 /* reg_sfd_num_rec 225 * Request: Number of records to read/add/modify/remove 226 * Response: Number of records read/added/replaced/removed 227 * See above description for more details. 228 * Ranges 0..64 229 * Access: RW 230 */ 231 MLXSW_ITEM32(reg, sfd, num_rec, 0x08, 0, 8); 232 233 static inline void mlxsw_reg_sfd_pack(char *payload, enum mlxsw_reg_sfd_op op, 234 u32 record_locator) 235 { 236 MLXSW_REG_ZERO(sfd, payload); 237 mlxsw_reg_sfd_op_set(payload, op); 238 mlxsw_reg_sfd_record_locator_set(payload, record_locator); 239 } 240 241 /* reg_sfd_rec_swid 242 * Switch partition ID. 243 * Access: Index 244 */ 245 MLXSW_ITEM32_INDEXED(reg, sfd, rec_swid, MLXSW_REG_SFD_BASE_LEN, 24, 8, 246 MLXSW_REG_SFD_REC_LEN, 0x00, false); 247 248 enum mlxsw_reg_sfd_rec_type { 249 MLXSW_REG_SFD_REC_TYPE_UNICAST = 0x0, 250 MLXSW_REG_SFD_REC_TYPE_UNICAST_LAG = 0x1, 251 MLXSW_REG_SFD_REC_TYPE_MULTICAST = 0x2, 252 MLXSW_REG_SFD_REC_TYPE_UNICAST_TUNNEL = 0xC, 253 }; 254 255 /* reg_sfd_rec_type 256 * FDB record type. 257 * Access: RW 258 */ 259 MLXSW_ITEM32_INDEXED(reg, sfd, rec_type, MLXSW_REG_SFD_BASE_LEN, 20, 4, 260 MLXSW_REG_SFD_REC_LEN, 0x00, false); 261 262 enum mlxsw_reg_sfd_rec_policy { 263 /* Replacement disabled, aging disabled. */ 264 MLXSW_REG_SFD_REC_POLICY_STATIC_ENTRY = 0, 265 /* (mlag remote): Replacement enabled, aging disabled, 266 * learning notification enabled on this port. 267 */ 268 MLXSW_REG_SFD_REC_POLICY_DYNAMIC_ENTRY_MLAG = 1, 269 /* (ingress device): Replacement enabled, aging enabled. */ 270 MLXSW_REG_SFD_REC_POLICY_DYNAMIC_ENTRY_INGRESS = 3, 271 }; 272 273 /* reg_sfd_rec_policy 274 * Policy. 275 * Access: RW 276 */ 277 MLXSW_ITEM32_INDEXED(reg, sfd, rec_policy, MLXSW_REG_SFD_BASE_LEN, 18, 2, 278 MLXSW_REG_SFD_REC_LEN, 0x00, false); 279 280 /* reg_sfd_rec_a 281 * Activity. Set for new static entries. Set for static entries if a frame SMAC 282 * lookup hits on the entry. 283 * To clear the a bit, use "query and clear activity" op. 284 * Access: RO 285 */ 286 MLXSW_ITEM32_INDEXED(reg, sfd, rec_a, MLXSW_REG_SFD_BASE_LEN, 16, 1, 287 MLXSW_REG_SFD_REC_LEN, 0x00, false); 288 289 /* reg_sfd_rec_mac 290 * MAC address. 291 * Access: Index 292 */ 293 MLXSW_ITEM_BUF_INDEXED(reg, sfd, rec_mac, MLXSW_REG_SFD_BASE_LEN, 6, 294 MLXSW_REG_SFD_REC_LEN, 0x02); 295 296 enum mlxsw_reg_sfd_rec_action { 297 /* forward */ 298 MLXSW_REG_SFD_REC_ACTION_NOP = 0, 299 /* forward and trap, trap_id is FDB_TRAP */ 300 MLXSW_REG_SFD_REC_ACTION_MIRROR_TO_CPU = 1, 301 /* trap and do not forward, trap_id is FDB_TRAP */ 302 MLXSW_REG_SFD_REC_ACTION_TRAP = 2, 303 /* forward to IP router */ 304 MLXSW_REG_SFD_REC_ACTION_FORWARD_IP_ROUTER = 3, 305 MLXSW_REG_SFD_REC_ACTION_DISCARD_ERROR = 15, 306 }; 307 308 /* reg_sfd_rec_action 309 * Action to apply on the packet. 310 * Note: Dynamic entries can only be configured with NOP action. 311 * Access: RW 312 */ 313 MLXSW_ITEM32_INDEXED(reg, sfd, rec_action, MLXSW_REG_SFD_BASE_LEN, 28, 4, 314 MLXSW_REG_SFD_REC_LEN, 0x0C, false); 315 316 /* reg_sfd_uc_sub_port 317 * VEPA channel on local port. 318 * Valid only if local port is a non-stacking port. Must be 0 if multichannel 319 * VEPA is not enabled. 320 * Access: RW 321 */ 322 MLXSW_ITEM32_INDEXED(reg, sfd, uc_sub_port, MLXSW_REG_SFD_BASE_LEN, 16, 8, 323 MLXSW_REG_SFD_REC_LEN, 0x08, false); 324 325 /* reg_sfd_uc_fid_vid 326 * Filtering ID or VLAN ID 327 * For SwitchX and SwitchX-2: 328 * - Dynamic entries (policy 2,3) use FID 329 * - Static entries (policy 0) use VID 330 * - When independent learning is configured, VID=FID 331 * For Spectrum: use FID for both Dynamic and Static entries. 332 * VID should not be used. 333 * Access: Index 334 */ 335 MLXSW_ITEM32_INDEXED(reg, sfd, uc_fid_vid, MLXSW_REG_SFD_BASE_LEN, 0, 16, 336 MLXSW_REG_SFD_REC_LEN, 0x08, false); 337 338 /* reg_sfd_uc_system_port 339 * Unique port identifier for the final destination of the packet. 340 * Access: RW 341 */ 342 MLXSW_ITEM32_INDEXED(reg, sfd, uc_system_port, MLXSW_REG_SFD_BASE_LEN, 0, 16, 343 MLXSW_REG_SFD_REC_LEN, 0x0C, false); 344 345 static inline void mlxsw_reg_sfd_rec_pack(char *payload, int rec_index, 346 enum mlxsw_reg_sfd_rec_type rec_type, 347 const char *mac, 348 enum mlxsw_reg_sfd_rec_action action) 349 { 350 u8 num_rec = mlxsw_reg_sfd_num_rec_get(payload); 351 352 if (rec_index >= num_rec) 353 mlxsw_reg_sfd_num_rec_set(payload, rec_index + 1); 354 mlxsw_reg_sfd_rec_swid_set(payload, rec_index, 0); 355 mlxsw_reg_sfd_rec_type_set(payload, rec_index, rec_type); 356 mlxsw_reg_sfd_rec_mac_memcpy_to(payload, rec_index, mac); 357 mlxsw_reg_sfd_rec_action_set(payload, rec_index, action); 358 } 359 360 static inline void mlxsw_reg_sfd_uc_pack(char *payload, int rec_index, 361 enum mlxsw_reg_sfd_rec_policy policy, 362 const char *mac, u16 fid_vid, 363 enum mlxsw_reg_sfd_rec_action action, 364 u16 local_port) 365 { 366 mlxsw_reg_sfd_rec_pack(payload, rec_index, 367 MLXSW_REG_SFD_REC_TYPE_UNICAST, mac, action); 368 mlxsw_reg_sfd_rec_policy_set(payload, rec_index, policy); 369 mlxsw_reg_sfd_uc_sub_port_set(payload, rec_index, 0); 370 mlxsw_reg_sfd_uc_fid_vid_set(payload, rec_index, fid_vid); 371 mlxsw_reg_sfd_uc_system_port_set(payload, rec_index, local_port); 372 } 373 374 /* reg_sfd_uc_lag_sub_port 375 * LAG sub port. 376 * Must be 0 if multichannel VEPA is not enabled. 377 * Access: RW 378 */ 379 MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_sub_port, MLXSW_REG_SFD_BASE_LEN, 16, 8, 380 MLXSW_REG_SFD_REC_LEN, 0x08, false); 381 382 /* reg_sfd_uc_lag_fid_vid 383 * Filtering ID or VLAN ID 384 * For SwitchX and SwitchX-2: 385 * - Dynamic entries (policy 2,3) use FID 386 * - Static entries (policy 0) use VID 387 * - When independent learning is configured, VID=FID 388 * For Spectrum: use FID for both Dynamic and Static entries. 389 * VID should not be used. 390 * Access: Index 391 */ 392 MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_fid_vid, MLXSW_REG_SFD_BASE_LEN, 0, 16, 393 MLXSW_REG_SFD_REC_LEN, 0x08, false); 394 395 /* reg_sfd_uc_lag_lag_vid 396 * Indicates VID in case of vFIDs. Reserved for FIDs. 397 * Access: RW 398 */ 399 MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_lag_vid, MLXSW_REG_SFD_BASE_LEN, 16, 12, 400 MLXSW_REG_SFD_REC_LEN, 0x0C, false); 401 402 /* reg_sfd_uc_lag_lag_id 403 * LAG Identifier - pointer into the LAG descriptor table. 404 * Access: RW 405 */ 406 MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_lag_id, MLXSW_REG_SFD_BASE_LEN, 0, 10, 407 MLXSW_REG_SFD_REC_LEN, 0x0C, false); 408 409 static inline void 410 mlxsw_reg_sfd_uc_lag_pack(char *payload, int rec_index, 411 enum mlxsw_reg_sfd_rec_policy policy, 412 const char *mac, u16 fid_vid, 413 enum mlxsw_reg_sfd_rec_action action, u16 lag_vid, 414 u16 lag_id) 415 { 416 mlxsw_reg_sfd_rec_pack(payload, rec_index, 417 MLXSW_REG_SFD_REC_TYPE_UNICAST_LAG, 418 mac, action); 419 mlxsw_reg_sfd_rec_policy_set(payload, rec_index, policy); 420 mlxsw_reg_sfd_uc_lag_sub_port_set(payload, rec_index, 0); 421 mlxsw_reg_sfd_uc_lag_fid_vid_set(payload, rec_index, fid_vid); 422 mlxsw_reg_sfd_uc_lag_lag_vid_set(payload, rec_index, lag_vid); 423 mlxsw_reg_sfd_uc_lag_lag_id_set(payload, rec_index, lag_id); 424 } 425 426 /* reg_sfd_mc_pgi 427 * 428 * Multicast port group index - index into the port group table. 429 * Value 0x1FFF indicates the pgi should point to the MID entry. 430 * For Spectrum this value must be set to 0x1FFF 431 * Access: RW 432 */ 433 MLXSW_ITEM32_INDEXED(reg, sfd, mc_pgi, MLXSW_REG_SFD_BASE_LEN, 16, 13, 434 MLXSW_REG_SFD_REC_LEN, 0x08, false); 435 436 /* reg_sfd_mc_fid_vid 437 * 438 * Filtering ID or VLAN ID 439 * Access: Index 440 */ 441 MLXSW_ITEM32_INDEXED(reg, sfd, mc_fid_vid, MLXSW_REG_SFD_BASE_LEN, 0, 16, 442 MLXSW_REG_SFD_REC_LEN, 0x08, false); 443 444 /* reg_sfd_mc_mid 445 * 446 * Multicast identifier - global identifier that represents the multicast 447 * group across all devices. 448 * Access: RW 449 */ 450 MLXSW_ITEM32_INDEXED(reg, sfd, mc_mid, MLXSW_REG_SFD_BASE_LEN, 0, 16, 451 MLXSW_REG_SFD_REC_LEN, 0x0C, false); 452 453 static inline void 454 mlxsw_reg_sfd_mc_pack(char *payload, int rec_index, 455 const char *mac, u16 fid_vid, 456 enum mlxsw_reg_sfd_rec_action action, u16 mid) 457 { 458 mlxsw_reg_sfd_rec_pack(payload, rec_index, 459 MLXSW_REG_SFD_REC_TYPE_MULTICAST, mac, action); 460 mlxsw_reg_sfd_mc_pgi_set(payload, rec_index, 0x1FFF); 461 mlxsw_reg_sfd_mc_fid_vid_set(payload, rec_index, fid_vid); 462 mlxsw_reg_sfd_mc_mid_set(payload, rec_index, mid); 463 } 464 465 /* reg_sfd_uc_tunnel_uip_msb 466 * When protocol is IPv4, the most significant byte of the underlay IPv4 467 * destination IP. 468 * When protocol is IPv6, reserved. 469 * Access: RW 470 */ 471 MLXSW_ITEM32_INDEXED(reg, sfd, uc_tunnel_uip_msb, MLXSW_REG_SFD_BASE_LEN, 24, 472 8, MLXSW_REG_SFD_REC_LEN, 0x08, false); 473 474 /* reg_sfd_uc_tunnel_fid 475 * Filtering ID. 476 * Access: Index 477 */ 478 MLXSW_ITEM32_INDEXED(reg, sfd, uc_tunnel_fid, MLXSW_REG_SFD_BASE_LEN, 0, 16, 479 MLXSW_REG_SFD_REC_LEN, 0x08, false); 480 481 enum mlxsw_reg_sfd_uc_tunnel_protocol { 482 MLXSW_REG_SFD_UC_TUNNEL_PROTOCOL_IPV4, 483 MLXSW_REG_SFD_UC_TUNNEL_PROTOCOL_IPV6, 484 }; 485 486 /* reg_sfd_uc_tunnel_protocol 487 * IP protocol. 488 * Access: RW 489 */ 490 MLXSW_ITEM32_INDEXED(reg, sfd, uc_tunnel_protocol, MLXSW_REG_SFD_BASE_LEN, 27, 491 1, MLXSW_REG_SFD_REC_LEN, 0x0C, false); 492 493 /* reg_sfd_uc_tunnel_uip_lsb 494 * When protocol is IPv4, the least significant bytes of the underlay 495 * IPv4 destination IP. 496 * When protocol is IPv6, pointer to the underlay IPv6 destination IP 497 * which is configured by RIPS. 498 * Access: RW 499 */ 500 MLXSW_ITEM32_INDEXED(reg, sfd, uc_tunnel_uip_lsb, MLXSW_REG_SFD_BASE_LEN, 0, 501 24, MLXSW_REG_SFD_REC_LEN, 0x0C, false); 502 503 static inline void 504 mlxsw_reg_sfd_uc_tunnel_pack(char *payload, int rec_index, 505 enum mlxsw_reg_sfd_rec_policy policy, 506 const char *mac, u16 fid, 507 enum mlxsw_reg_sfd_rec_action action, 508 enum mlxsw_reg_sfd_uc_tunnel_protocol proto) 509 { 510 mlxsw_reg_sfd_rec_pack(payload, rec_index, 511 MLXSW_REG_SFD_REC_TYPE_UNICAST_TUNNEL, mac, 512 action); 513 mlxsw_reg_sfd_rec_policy_set(payload, rec_index, policy); 514 mlxsw_reg_sfd_uc_tunnel_fid_set(payload, rec_index, fid); 515 mlxsw_reg_sfd_uc_tunnel_protocol_set(payload, rec_index, proto); 516 } 517 518 static inline void 519 mlxsw_reg_sfd_uc_tunnel_pack4(char *payload, int rec_index, 520 enum mlxsw_reg_sfd_rec_policy policy, 521 const char *mac, u16 fid, 522 enum mlxsw_reg_sfd_rec_action action, u32 uip) 523 { 524 mlxsw_reg_sfd_uc_tunnel_uip_msb_set(payload, rec_index, uip >> 24); 525 mlxsw_reg_sfd_uc_tunnel_uip_lsb_set(payload, rec_index, uip); 526 mlxsw_reg_sfd_uc_tunnel_pack(payload, rec_index, policy, mac, fid, 527 action, 528 MLXSW_REG_SFD_UC_TUNNEL_PROTOCOL_IPV4); 529 } 530 531 static inline void 532 mlxsw_reg_sfd_uc_tunnel_pack6(char *payload, int rec_index, const char *mac, 533 u16 fid, enum mlxsw_reg_sfd_rec_action action, 534 u32 uip_ptr) 535 { 536 mlxsw_reg_sfd_uc_tunnel_uip_lsb_set(payload, rec_index, uip_ptr); 537 /* Only static policy is supported for IPv6 unicast tunnel entry. */ 538 mlxsw_reg_sfd_uc_tunnel_pack(payload, rec_index, 539 MLXSW_REG_SFD_REC_POLICY_STATIC_ENTRY, 540 mac, fid, action, 541 MLXSW_REG_SFD_UC_TUNNEL_PROTOCOL_IPV6); 542 } 543 544 enum mlxsw_reg_tunnel_port { 545 MLXSW_REG_TUNNEL_PORT_NVE, 546 MLXSW_REG_TUNNEL_PORT_VPLS, 547 MLXSW_REG_TUNNEL_PORT_FLEX_TUNNEL0, 548 MLXSW_REG_TUNNEL_PORT_FLEX_TUNNEL1, 549 }; 550 551 /* SFN - Switch FDB Notification Register 552 * ------------------------------------------- 553 * The switch provides notifications on newly learned FDB entries and 554 * aged out entries. The notifications can be polled by software. 555 */ 556 #define MLXSW_REG_SFN_ID 0x200B 557 #define MLXSW_REG_SFN_BASE_LEN 0x10 /* base length, without records */ 558 #define MLXSW_REG_SFN_REC_LEN 0x10 /* record length */ 559 #define MLXSW_REG_SFN_REC_MAX_COUNT 64 560 #define MLXSW_REG_SFN_LEN (MLXSW_REG_SFN_BASE_LEN + \ 561 MLXSW_REG_SFN_REC_LEN * MLXSW_REG_SFN_REC_MAX_COUNT) 562 563 MLXSW_REG_DEFINE(sfn, MLXSW_REG_SFN_ID, MLXSW_REG_SFN_LEN); 564 565 /* reg_sfn_swid 566 * Switch partition ID. 567 * Access: Index 568 */ 569 MLXSW_ITEM32(reg, sfn, swid, 0x00, 24, 8); 570 571 /* reg_sfn_end 572 * Forces the current session to end. 573 * Access: OP 574 */ 575 MLXSW_ITEM32(reg, sfn, end, 0x04, 20, 1); 576 577 /* reg_sfn_num_rec 578 * Request: Number of learned notifications and aged-out notification 579 * records requested. 580 * Response: Number of notification records returned (must be smaller 581 * than or equal to the value requested) 582 * Ranges 0..64 583 * Access: OP 584 */ 585 MLXSW_ITEM32(reg, sfn, num_rec, 0x04, 0, 8); 586 587 static inline void mlxsw_reg_sfn_pack(char *payload) 588 { 589 MLXSW_REG_ZERO(sfn, payload); 590 mlxsw_reg_sfn_swid_set(payload, 0); 591 mlxsw_reg_sfn_end_set(payload, 0); 592 mlxsw_reg_sfn_num_rec_set(payload, MLXSW_REG_SFN_REC_MAX_COUNT); 593 } 594 595 /* reg_sfn_rec_swid 596 * Switch partition ID. 597 * Access: RO 598 */ 599 MLXSW_ITEM32_INDEXED(reg, sfn, rec_swid, MLXSW_REG_SFN_BASE_LEN, 24, 8, 600 MLXSW_REG_SFN_REC_LEN, 0x00, false); 601 602 enum mlxsw_reg_sfn_rec_type { 603 /* MAC addresses learned on a regular port. */ 604 MLXSW_REG_SFN_REC_TYPE_LEARNED_MAC = 0x5, 605 /* MAC addresses learned on a LAG port. */ 606 MLXSW_REG_SFN_REC_TYPE_LEARNED_MAC_LAG = 0x6, 607 /* Aged-out MAC address on a regular port. */ 608 MLXSW_REG_SFN_REC_TYPE_AGED_OUT_MAC = 0x7, 609 /* Aged-out MAC address on a LAG port. */ 610 MLXSW_REG_SFN_REC_TYPE_AGED_OUT_MAC_LAG = 0x8, 611 /* Learned unicast tunnel record. */ 612 MLXSW_REG_SFN_REC_TYPE_LEARNED_UNICAST_TUNNEL = 0xD, 613 /* Aged-out unicast tunnel record. */ 614 MLXSW_REG_SFN_REC_TYPE_AGED_OUT_UNICAST_TUNNEL = 0xE, 615 }; 616 617 /* reg_sfn_rec_type 618 * Notification record type. 619 * Access: RO 620 */ 621 MLXSW_ITEM32_INDEXED(reg, sfn, rec_type, MLXSW_REG_SFN_BASE_LEN, 20, 4, 622 MLXSW_REG_SFN_REC_LEN, 0x00, false); 623 624 /* reg_sfn_rec_mac 625 * MAC address. 626 * Access: RO 627 */ 628 MLXSW_ITEM_BUF_INDEXED(reg, sfn, rec_mac, MLXSW_REG_SFN_BASE_LEN, 6, 629 MLXSW_REG_SFN_REC_LEN, 0x02); 630 631 /* reg_sfn_mac_sub_port 632 * VEPA channel on the local port. 633 * 0 if multichannel VEPA is not enabled. 634 * Access: RO 635 */ 636 MLXSW_ITEM32_INDEXED(reg, sfn, mac_sub_port, MLXSW_REG_SFN_BASE_LEN, 16, 8, 637 MLXSW_REG_SFN_REC_LEN, 0x08, false); 638 639 /* reg_sfn_mac_fid 640 * Filtering identifier. 641 * Access: RO 642 */ 643 MLXSW_ITEM32_INDEXED(reg, sfn, mac_fid, MLXSW_REG_SFN_BASE_LEN, 0, 16, 644 MLXSW_REG_SFN_REC_LEN, 0x08, false); 645 646 /* reg_sfn_mac_system_port 647 * Unique port identifier for the final destination of the packet. 648 * Access: RO 649 */ 650 MLXSW_ITEM32_INDEXED(reg, sfn, mac_system_port, MLXSW_REG_SFN_BASE_LEN, 0, 16, 651 MLXSW_REG_SFN_REC_LEN, 0x0C, false); 652 653 static inline void mlxsw_reg_sfn_mac_unpack(char *payload, int rec_index, 654 char *mac, u16 *p_vid, 655 u16 *p_local_port) 656 { 657 mlxsw_reg_sfn_rec_mac_memcpy_from(payload, rec_index, mac); 658 *p_vid = mlxsw_reg_sfn_mac_fid_get(payload, rec_index); 659 *p_local_port = mlxsw_reg_sfn_mac_system_port_get(payload, rec_index); 660 } 661 662 /* reg_sfn_mac_lag_lag_id 663 * LAG ID (pointer into the LAG descriptor table). 664 * Access: RO 665 */ 666 MLXSW_ITEM32_INDEXED(reg, sfn, mac_lag_lag_id, MLXSW_REG_SFN_BASE_LEN, 0, 10, 667 MLXSW_REG_SFN_REC_LEN, 0x0C, false); 668 669 static inline void mlxsw_reg_sfn_mac_lag_unpack(char *payload, int rec_index, 670 char *mac, u16 *p_vid, 671 u16 *p_lag_id) 672 { 673 mlxsw_reg_sfn_rec_mac_memcpy_from(payload, rec_index, mac); 674 *p_vid = mlxsw_reg_sfn_mac_fid_get(payload, rec_index); 675 *p_lag_id = mlxsw_reg_sfn_mac_lag_lag_id_get(payload, rec_index); 676 } 677 678 /* reg_sfn_uc_tunnel_uip_msb 679 * When protocol is IPv4, the most significant byte of the underlay IPv4 680 * address of the remote VTEP. 681 * When protocol is IPv6, reserved. 682 * Access: RO 683 */ 684 MLXSW_ITEM32_INDEXED(reg, sfn, uc_tunnel_uip_msb, MLXSW_REG_SFN_BASE_LEN, 24, 685 8, MLXSW_REG_SFN_REC_LEN, 0x08, false); 686 687 enum mlxsw_reg_sfn_uc_tunnel_protocol { 688 MLXSW_REG_SFN_UC_TUNNEL_PROTOCOL_IPV4, 689 MLXSW_REG_SFN_UC_TUNNEL_PROTOCOL_IPV6, 690 }; 691 692 /* reg_sfn_uc_tunnel_protocol 693 * IP protocol. 694 * Access: RO 695 */ 696 MLXSW_ITEM32_INDEXED(reg, sfn, uc_tunnel_protocol, MLXSW_REG_SFN_BASE_LEN, 27, 697 1, MLXSW_REG_SFN_REC_LEN, 0x0C, false); 698 699 /* reg_sfn_uc_tunnel_uip_lsb 700 * When protocol is IPv4, the least significant bytes of the underlay 701 * IPv4 address of the remote VTEP. 702 * When protocol is IPv6, ipv6_id to be queried from TNIPSD. 703 * Access: RO 704 */ 705 MLXSW_ITEM32_INDEXED(reg, sfn, uc_tunnel_uip_lsb, MLXSW_REG_SFN_BASE_LEN, 0, 706 24, MLXSW_REG_SFN_REC_LEN, 0x0C, false); 707 708 /* reg_sfn_uc_tunnel_port 709 * Tunnel port. 710 * Reserved on Spectrum. 711 * Access: RO 712 */ 713 MLXSW_ITEM32_INDEXED(reg, sfn, tunnel_port, MLXSW_REG_SFN_BASE_LEN, 0, 4, 714 MLXSW_REG_SFN_REC_LEN, 0x10, false); 715 716 static inline void 717 mlxsw_reg_sfn_uc_tunnel_unpack(char *payload, int rec_index, char *mac, 718 u16 *p_fid, u32 *p_uip, 719 enum mlxsw_reg_sfn_uc_tunnel_protocol *p_proto) 720 { 721 u32 uip_msb, uip_lsb; 722 723 mlxsw_reg_sfn_rec_mac_memcpy_from(payload, rec_index, mac); 724 *p_fid = mlxsw_reg_sfn_mac_fid_get(payload, rec_index); 725 uip_msb = mlxsw_reg_sfn_uc_tunnel_uip_msb_get(payload, rec_index); 726 uip_lsb = mlxsw_reg_sfn_uc_tunnel_uip_lsb_get(payload, rec_index); 727 *p_uip = uip_msb << 24 | uip_lsb; 728 *p_proto = mlxsw_reg_sfn_uc_tunnel_protocol_get(payload, rec_index); 729 } 730 731 /* SPMS - Switch Port MSTP/RSTP State Register 732 * ------------------------------------------- 733 * Configures the spanning tree state of a physical port. 734 */ 735 #define MLXSW_REG_SPMS_ID 0x200D 736 #define MLXSW_REG_SPMS_LEN 0x404 737 738 MLXSW_REG_DEFINE(spms, MLXSW_REG_SPMS_ID, MLXSW_REG_SPMS_LEN); 739 740 /* reg_spms_local_port 741 * Local port number. 742 * Access: Index 743 */ 744 MLXSW_ITEM32_LP(reg, spms, 0x00, 16, 0x00, 12); 745 746 enum mlxsw_reg_spms_state { 747 MLXSW_REG_SPMS_STATE_NO_CHANGE, 748 MLXSW_REG_SPMS_STATE_DISCARDING, 749 MLXSW_REG_SPMS_STATE_LEARNING, 750 MLXSW_REG_SPMS_STATE_FORWARDING, 751 }; 752 753 /* reg_spms_state 754 * Spanning tree state of each VLAN ID (VID) of the local port. 755 * 0 - Do not change spanning tree state (used only when writing). 756 * 1 - Discarding. No learning or forwarding to/from this port (default). 757 * 2 - Learning. Port is learning, but not forwarding. 758 * 3 - Forwarding. Port is learning and forwarding. 759 * Access: RW 760 */ 761 MLXSW_ITEM_BIT_ARRAY(reg, spms, state, 0x04, 0x400, 2); 762 763 static inline void mlxsw_reg_spms_pack(char *payload, u16 local_port) 764 { 765 MLXSW_REG_ZERO(spms, payload); 766 mlxsw_reg_spms_local_port_set(payload, local_port); 767 } 768 769 static inline void mlxsw_reg_spms_vid_pack(char *payload, u16 vid, 770 enum mlxsw_reg_spms_state state) 771 { 772 mlxsw_reg_spms_state_set(payload, vid, state); 773 } 774 775 /* SPVID - Switch Port VID 776 * ----------------------- 777 * The switch port VID configures the default VID for a port. 778 */ 779 #define MLXSW_REG_SPVID_ID 0x200E 780 #define MLXSW_REG_SPVID_LEN 0x08 781 782 MLXSW_REG_DEFINE(spvid, MLXSW_REG_SPVID_ID, MLXSW_REG_SPVID_LEN); 783 784 /* reg_spvid_tport 785 * Port is tunnel port. 786 * Reserved when SwitchX/-2 or Spectrum-1. 787 * Access: Index 788 */ 789 MLXSW_ITEM32(reg, spvid, tport, 0x00, 24, 1); 790 791 /* reg_spvid_local_port 792 * When tport = 0: Local port number. Not supported for CPU port. 793 * When tport = 1: Tunnel port. 794 * Access: Index 795 */ 796 MLXSW_ITEM32_LP(reg, spvid, 0x00, 16, 0x00, 12); 797 798 /* reg_spvid_sub_port 799 * Virtual port within the physical port. 800 * Should be set to 0 when virtual ports are not enabled on the port. 801 * Access: Index 802 */ 803 MLXSW_ITEM32(reg, spvid, sub_port, 0x00, 8, 8); 804 805 /* reg_spvid_egr_et_set 806 * When VLAN is pushed at ingress (for untagged packets or for 807 * QinQ push mode) then the EtherType is decided at the egress port. 808 * Reserved when Spectrum-1. 809 * Access: RW 810 */ 811 MLXSW_ITEM32(reg, spvid, egr_et_set, 0x04, 24, 1); 812 813 /* reg_spvid_et_vlan 814 * EtherType used for when VLAN is pushed at ingress (for untagged 815 * packets or for QinQ push mode). 816 * 0: ether_type0 - (default) 817 * 1: ether_type1 818 * 2: ether_type2 - Reserved when Spectrum-1, supported by Spectrum-2 819 * Ethertype IDs are configured by SVER. 820 * Reserved when egr_et_set = 1. 821 * Access: RW 822 */ 823 MLXSW_ITEM32(reg, spvid, et_vlan, 0x04, 16, 2); 824 825 /* reg_spvid_pvid 826 * Port default VID 827 * Access: RW 828 */ 829 MLXSW_ITEM32(reg, spvid, pvid, 0x04, 0, 12); 830 831 static inline void mlxsw_reg_spvid_pack(char *payload, u16 local_port, u16 pvid, 832 u8 et_vlan) 833 { 834 MLXSW_REG_ZERO(spvid, payload); 835 mlxsw_reg_spvid_local_port_set(payload, local_port); 836 mlxsw_reg_spvid_pvid_set(payload, pvid); 837 mlxsw_reg_spvid_et_vlan_set(payload, et_vlan); 838 } 839 840 /* SPVM - Switch Port VLAN Membership 841 * ---------------------------------- 842 * The Switch Port VLAN Membership register configures the VLAN membership 843 * of a port in a VLAN denoted by VID. VLAN membership is managed per 844 * virtual port. The register can be used to add and remove VID(s) from a port. 845 */ 846 #define MLXSW_REG_SPVM_ID 0x200F 847 #define MLXSW_REG_SPVM_BASE_LEN 0x04 /* base length, without records */ 848 #define MLXSW_REG_SPVM_REC_LEN 0x04 /* record length */ 849 #define MLXSW_REG_SPVM_REC_MAX_COUNT 255 850 #define MLXSW_REG_SPVM_LEN (MLXSW_REG_SPVM_BASE_LEN + \ 851 MLXSW_REG_SPVM_REC_LEN * MLXSW_REG_SPVM_REC_MAX_COUNT) 852 853 MLXSW_REG_DEFINE(spvm, MLXSW_REG_SPVM_ID, MLXSW_REG_SPVM_LEN); 854 855 /* reg_spvm_pt 856 * Priority tagged. If this bit is set, packets forwarded to the port with 857 * untagged VLAN membership (u bit is set) will be tagged with priority tag 858 * (VID=0) 859 * Access: RW 860 */ 861 MLXSW_ITEM32(reg, spvm, pt, 0x00, 31, 1); 862 863 /* reg_spvm_pte 864 * Priority Tagged Update Enable. On Write operations, if this bit is cleared, 865 * the pt bit will NOT be updated. To update the pt bit, pte must be set. 866 * Access: WO 867 */ 868 MLXSW_ITEM32(reg, spvm, pte, 0x00, 30, 1); 869 870 /* reg_spvm_local_port 871 * Local port number. 872 * Access: Index 873 */ 874 MLXSW_ITEM32_LP(reg, spvm, 0x00, 16, 0x00, 12); 875 876 /* reg_spvm_sub_port 877 * Virtual port within the physical port. 878 * Should be set to 0 when virtual ports are not enabled on the port. 879 * Access: Index 880 */ 881 MLXSW_ITEM32(reg, spvm, sub_port, 0x00, 8, 8); 882 883 /* reg_spvm_num_rec 884 * Number of records to update. Each record contains: i, e, u, vid. 885 * Access: OP 886 */ 887 MLXSW_ITEM32(reg, spvm, num_rec, 0x00, 0, 8); 888 889 /* reg_spvm_rec_i 890 * Ingress membership in VLAN ID. 891 * Access: Index 892 */ 893 MLXSW_ITEM32_INDEXED(reg, spvm, rec_i, 894 MLXSW_REG_SPVM_BASE_LEN, 14, 1, 895 MLXSW_REG_SPVM_REC_LEN, 0, false); 896 897 /* reg_spvm_rec_e 898 * Egress membership in VLAN ID. 899 * Access: Index 900 */ 901 MLXSW_ITEM32_INDEXED(reg, spvm, rec_e, 902 MLXSW_REG_SPVM_BASE_LEN, 13, 1, 903 MLXSW_REG_SPVM_REC_LEN, 0, false); 904 905 /* reg_spvm_rec_u 906 * Untagged - port is an untagged member - egress transmission uses untagged 907 * frames on VID<n> 908 * Access: Index 909 */ 910 MLXSW_ITEM32_INDEXED(reg, spvm, rec_u, 911 MLXSW_REG_SPVM_BASE_LEN, 12, 1, 912 MLXSW_REG_SPVM_REC_LEN, 0, false); 913 914 /* reg_spvm_rec_vid 915 * Egress membership in VLAN ID. 916 * Access: Index 917 */ 918 MLXSW_ITEM32_INDEXED(reg, spvm, rec_vid, 919 MLXSW_REG_SPVM_BASE_LEN, 0, 12, 920 MLXSW_REG_SPVM_REC_LEN, 0, false); 921 922 static inline void mlxsw_reg_spvm_pack(char *payload, u16 local_port, 923 u16 vid_begin, u16 vid_end, 924 bool is_member, bool untagged) 925 { 926 int size = vid_end - vid_begin + 1; 927 int i; 928 929 MLXSW_REG_ZERO(spvm, payload); 930 mlxsw_reg_spvm_local_port_set(payload, local_port); 931 mlxsw_reg_spvm_num_rec_set(payload, size); 932 933 for (i = 0; i < size; i++) { 934 mlxsw_reg_spvm_rec_i_set(payload, i, is_member); 935 mlxsw_reg_spvm_rec_e_set(payload, i, is_member); 936 mlxsw_reg_spvm_rec_u_set(payload, i, untagged); 937 mlxsw_reg_spvm_rec_vid_set(payload, i, vid_begin + i); 938 } 939 } 940 941 /* SPAFT - Switch Port Acceptable Frame Types 942 * ------------------------------------------ 943 * The Switch Port Acceptable Frame Types register configures the frame 944 * admittance of the port. 945 */ 946 #define MLXSW_REG_SPAFT_ID 0x2010 947 #define MLXSW_REG_SPAFT_LEN 0x08 948 949 MLXSW_REG_DEFINE(spaft, MLXSW_REG_SPAFT_ID, MLXSW_REG_SPAFT_LEN); 950 951 /* reg_spaft_local_port 952 * Local port number. 953 * Access: Index 954 * 955 * Note: CPU port is not supported (all tag types are allowed). 956 */ 957 MLXSW_ITEM32_LP(reg, spaft, 0x00, 16, 0x00, 12); 958 959 /* reg_spaft_sub_port 960 * Virtual port within the physical port. 961 * Should be set to 0 when virtual ports are not enabled on the port. 962 * Access: RW 963 */ 964 MLXSW_ITEM32(reg, spaft, sub_port, 0x00, 8, 8); 965 966 /* reg_spaft_allow_untagged 967 * When set, untagged frames on the ingress are allowed (default). 968 * Access: RW 969 */ 970 MLXSW_ITEM32(reg, spaft, allow_untagged, 0x04, 31, 1); 971 972 /* reg_spaft_allow_prio_tagged 973 * When set, priority tagged frames on the ingress are allowed (default). 974 * Access: RW 975 */ 976 MLXSW_ITEM32(reg, spaft, allow_prio_tagged, 0x04, 30, 1); 977 978 /* reg_spaft_allow_tagged 979 * When set, tagged frames on the ingress are allowed (default). 980 * Access: RW 981 */ 982 MLXSW_ITEM32(reg, spaft, allow_tagged, 0x04, 29, 1); 983 984 static inline void mlxsw_reg_spaft_pack(char *payload, u16 local_port, 985 bool allow_untagged) 986 { 987 MLXSW_REG_ZERO(spaft, payload); 988 mlxsw_reg_spaft_local_port_set(payload, local_port); 989 mlxsw_reg_spaft_allow_untagged_set(payload, allow_untagged); 990 mlxsw_reg_spaft_allow_prio_tagged_set(payload, allow_untagged); 991 mlxsw_reg_spaft_allow_tagged_set(payload, true); 992 } 993 994 /* SFGC - Switch Flooding Group Configuration 995 * ------------------------------------------ 996 * The following register controls the association of flooding tables and MIDs 997 * to packet types used for flooding. 998 */ 999 #define MLXSW_REG_SFGC_ID 0x2011 1000 #define MLXSW_REG_SFGC_LEN 0x10 1001 1002 MLXSW_REG_DEFINE(sfgc, MLXSW_REG_SFGC_ID, MLXSW_REG_SFGC_LEN); 1003 1004 enum mlxsw_reg_sfgc_type { 1005 MLXSW_REG_SFGC_TYPE_BROADCAST, 1006 MLXSW_REG_SFGC_TYPE_UNKNOWN_UNICAST, 1007 MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_IPV4, 1008 MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_IPV6, 1009 MLXSW_REG_SFGC_TYPE_RESERVED, 1010 MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_NON_IP, 1011 MLXSW_REG_SFGC_TYPE_IPV4_LINK_LOCAL, 1012 MLXSW_REG_SFGC_TYPE_IPV6_ALL_HOST, 1013 MLXSW_REG_SFGC_TYPE_MAX, 1014 }; 1015 1016 /* reg_sfgc_type 1017 * The traffic type to reach the flooding table. 1018 * Access: Index 1019 */ 1020 MLXSW_ITEM32(reg, sfgc, type, 0x00, 0, 4); 1021 1022 enum mlxsw_reg_sfgc_bridge_type { 1023 MLXSW_REG_SFGC_BRIDGE_TYPE_1Q_FID = 0, 1024 MLXSW_REG_SFGC_BRIDGE_TYPE_VFID = 1, 1025 }; 1026 1027 /* reg_sfgc_bridge_type 1028 * Access: Index 1029 * 1030 * Note: SwitchX-2 only supports 802.1Q mode. 1031 */ 1032 MLXSW_ITEM32(reg, sfgc, bridge_type, 0x04, 24, 3); 1033 1034 enum mlxsw_flood_table_type { 1035 MLXSW_REG_SFGC_TABLE_TYPE_VID = 1, 1036 MLXSW_REG_SFGC_TABLE_TYPE_SINGLE = 2, 1037 MLXSW_REG_SFGC_TABLE_TYPE_ANY = 0, 1038 MLXSW_REG_SFGC_TABLE_TYPE_FID_OFFSET = 3, 1039 MLXSW_REG_SFGC_TABLE_TYPE_FID = 4, 1040 }; 1041 1042 /* reg_sfgc_table_type 1043 * See mlxsw_flood_table_type 1044 * Access: RW 1045 * 1046 * Note: FID offset and FID types are not supported in SwitchX-2. 1047 */ 1048 MLXSW_ITEM32(reg, sfgc, table_type, 0x04, 16, 3); 1049 1050 /* reg_sfgc_flood_table 1051 * Flooding table index to associate with the specific type on the specific 1052 * switch partition. 1053 * Access: RW 1054 */ 1055 MLXSW_ITEM32(reg, sfgc, flood_table, 0x04, 0, 6); 1056 1057 /* reg_sfgc_mid 1058 * The multicast ID for the swid. Not supported for Spectrum 1059 * Access: RW 1060 */ 1061 MLXSW_ITEM32(reg, sfgc, mid, 0x08, 0, 16); 1062 1063 /* reg_sfgc_counter_set_type 1064 * Counter Set Type for flow counters. 1065 * Access: RW 1066 */ 1067 MLXSW_ITEM32(reg, sfgc, counter_set_type, 0x0C, 24, 8); 1068 1069 /* reg_sfgc_counter_index 1070 * Counter Index for flow counters. 1071 * Access: RW 1072 */ 1073 MLXSW_ITEM32(reg, sfgc, counter_index, 0x0C, 0, 24); 1074 1075 static inline void 1076 mlxsw_reg_sfgc_pack(char *payload, enum mlxsw_reg_sfgc_type type, 1077 enum mlxsw_reg_sfgc_bridge_type bridge_type, 1078 enum mlxsw_flood_table_type table_type, 1079 unsigned int flood_table) 1080 { 1081 MLXSW_REG_ZERO(sfgc, payload); 1082 mlxsw_reg_sfgc_type_set(payload, type); 1083 mlxsw_reg_sfgc_bridge_type_set(payload, bridge_type); 1084 mlxsw_reg_sfgc_table_type_set(payload, table_type); 1085 mlxsw_reg_sfgc_flood_table_set(payload, flood_table); 1086 mlxsw_reg_sfgc_mid_set(payload, MLXSW_PORT_MID); 1087 } 1088 1089 /* SFDF - Switch Filtering DB Flush 1090 * -------------------------------- 1091 * The switch filtering DB flush register is used to flush the FDB. 1092 * Note that FDB notifications are flushed as well. 1093 */ 1094 #define MLXSW_REG_SFDF_ID 0x2013 1095 #define MLXSW_REG_SFDF_LEN 0x14 1096 1097 MLXSW_REG_DEFINE(sfdf, MLXSW_REG_SFDF_ID, MLXSW_REG_SFDF_LEN); 1098 1099 /* reg_sfdf_swid 1100 * Switch partition ID. 1101 * Access: Index 1102 */ 1103 MLXSW_ITEM32(reg, sfdf, swid, 0x00, 24, 8); 1104 1105 enum mlxsw_reg_sfdf_flush_type { 1106 MLXSW_REG_SFDF_FLUSH_PER_SWID, 1107 MLXSW_REG_SFDF_FLUSH_PER_FID, 1108 MLXSW_REG_SFDF_FLUSH_PER_PORT, 1109 MLXSW_REG_SFDF_FLUSH_PER_PORT_AND_FID, 1110 MLXSW_REG_SFDF_FLUSH_PER_LAG, 1111 MLXSW_REG_SFDF_FLUSH_PER_LAG_AND_FID, 1112 MLXSW_REG_SFDF_FLUSH_PER_NVE, 1113 MLXSW_REG_SFDF_FLUSH_PER_NVE_AND_FID, 1114 }; 1115 1116 /* reg_sfdf_flush_type 1117 * Flush type. 1118 * 0 - All SWID dynamic entries are flushed. 1119 * 1 - All FID dynamic entries are flushed. 1120 * 2 - All dynamic entries pointing to port are flushed. 1121 * 3 - All FID dynamic entries pointing to port are flushed. 1122 * 4 - All dynamic entries pointing to LAG are flushed. 1123 * 5 - All FID dynamic entries pointing to LAG are flushed. 1124 * 6 - All entries of type "Unicast Tunnel" or "Multicast Tunnel" are 1125 * flushed. 1126 * 7 - All entries of type "Unicast Tunnel" or "Multicast Tunnel" are 1127 * flushed, per FID. 1128 * Access: RW 1129 */ 1130 MLXSW_ITEM32(reg, sfdf, flush_type, 0x04, 28, 4); 1131 1132 /* reg_sfdf_flush_static 1133 * Static. 1134 * 0 - Flush only dynamic entries. 1135 * 1 - Flush both dynamic and static entries. 1136 * Access: RW 1137 */ 1138 MLXSW_ITEM32(reg, sfdf, flush_static, 0x04, 24, 1); 1139 1140 static inline void mlxsw_reg_sfdf_pack(char *payload, 1141 enum mlxsw_reg_sfdf_flush_type type) 1142 { 1143 MLXSW_REG_ZERO(sfdf, payload); 1144 mlxsw_reg_sfdf_flush_type_set(payload, type); 1145 mlxsw_reg_sfdf_flush_static_set(payload, true); 1146 } 1147 1148 /* reg_sfdf_fid 1149 * FID to flush. 1150 * Access: RW 1151 */ 1152 MLXSW_ITEM32(reg, sfdf, fid, 0x0C, 0, 16); 1153 1154 /* reg_sfdf_system_port 1155 * Port to flush. 1156 * Access: RW 1157 */ 1158 MLXSW_ITEM32(reg, sfdf, system_port, 0x0C, 0, 16); 1159 1160 /* reg_sfdf_port_fid_system_port 1161 * Port to flush, pointed to by FID. 1162 * Access: RW 1163 */ 1164 MLXSW_ITEM32(reg, sfdf, port_fid_system_port, 0x08, 0, 16); 1165 1166 /* reg_sfdf_lag_id 1167 * LAG ID to flush. 1168 * Access: RW 1169 */ 1170 MLXSW_ITEM32(reg, sfdf, lag_id, 0x0C, 0, 10); 1171 1172 /* reg_sfdf_lag_fid_lag_id 1173 * LAG ID to flush, pointed to by FID. 1174 * Access: RW 1175 */ 1176 MLXSW_ITEM32(reg, sfdf, lag_fid_lag_id, 0x08, 0, 10); 1177 1178 /* SLDR - Switch LAG Descriptor Register 1179 * ----------------------------------------- 1180 * The switch LAG descriptor register is populated by LAG descriptors. 1181 * Each LAG descriptor is indexed by lag_id. The LAG ID runs from 0 to 1182 * max_lag-1. 1183 */ 1184 #define MLXSW_REG_SLDR_ID 0x2014 1185 #define MLXSW_REG_SLDR_LEN 0x0C /* counting in only one port in list */ 1186 1187 MLXSW_REG_DEFINE(sldr, MLXSW_REG_SLDR_ID, MLXSW_REG_SLDR_LEN); 1188 1189 enum mlxsw_reg_sldr_op { 1190 /* Indicates a creation of a new LAG-ID, lag_id must be valid */ 1191 MLXSW_REG_SLDR_OP_LAG_CREATE, 1192 MLXSW_REG_SLDR_OP_LAG_DESTROY, 1193 /* Ports that appear in the list have the Distributor enabled */ 1194 MLXSW_REG_SLDR_OP_LAG_ADD_PORT_LIST, 1195 /* Removes ports from the disributor list */ 1196 MLXSW_REG_SLDR_OP_LAG_REMOVE_PORT_LIST, 1197 }; 1198 1199 /* reg_sldr_op 1200 * Operation. 1201 * Access: RW 1202 */ 1203 MLXSW_ITEM32(reg, sldr, op, 0x00, 29, 3); 1204 1205 /* reg_sldr_lag_id 1206 * LAG identifier. The lag_id is the index into the LAG descriptor table. 1207 * Access: Index 1208 */ 1209 MLXSW_ITEM32(reg, sldr, lag_id, 0x00, 0, 10); 1210 1211 static inline void mlxsw_reg_sldr_lag_create_pack(char *payload, u8 lag_id) 1212 { 1213 MLXSW_REG_ZERO(sldr, payload); 1214 mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_CREATE); 1215 mlxsw_reg_sldr_lag_id_set(payload, lag_id); 1216 } 1217 1218 static inline void mlxsw_reg_sldr_lag_destroy_pack(char *payload, u8 lag_id) 1219 { 1220 MLXSW_REG_ZERO(sldr, payload); 1221 mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_DESTROY); 1222 mlxsw_reg_sldr_lag_id_set(payload, lag_id); 1223 } 1224 1225 /* reg_sldr_num_ports 1226 * The number of member ports of the LAG. 1227 * Reserved for Create / Destroy operations 1228 * For Add / Remove operations - indicates the number of ports in the list. 1229 * Access: RW 1230 */ 1231 MLXSW_ITEM32(reg, sldr, num_ports, 0x04, 24, 8); 1232 1233 /* reg_sldr_system_port 1234 * System port. 1235 * Access: RW 1236 */ 1237 MLXSW_ITEM32_INDEXED(reg, sldr, system_port, 0x08, 0, 16, 4, 0, false); 1238 1239 static inline void mlxsw_reg_sldr_lag_add_port_pack(char *payload, u8 lag_id, 1240 u16 local_port) 1241 { 1242 MLXSW_REG_ZERO(sldr, payload); 1243 mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_ADD_PORT_LIST); 1244 mlxsw_reg_sldr_lag_id_set(payload, lag_id); 1245 mlxsw_reg_sldr_num_ports_set(payload, 1); 1246 mlxsw_reg_sldr_system_port_set(payload, 0, local_port); 1247 } 1248 1249 static inline void mlxsw_reg_sldr_lag_remove_port_pack(char *payload, u8 lag_id, 1250 u16 local_port) 1251 { 1252 MLXSW_REG_ZERO(sldr, payload); 1253 mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_REMOVE_PORT_LIST); 1254 mlxsw_reg_sldr_lag_id_set(payload, lag_id); 1255 mlxsw_reg_sldr_num_ports_set(payload, 1); 1256 mlxsw_reg_sldr_system_port_set(payload, 0, local_port); 1257 } 1258 1259 /* SLCR - Switch LAG Configuration 2 Register 1260 * ------------------------------------------- 1261 * The Switch LAG Configuration register is used for configuring the 1262 * LAG properties of the switch. 1263 */ 1264 #define MLXSW_REG_SLCR_ID 0x2015 1265 #define MLXSW_REG_SLCR_LEN 0x10 1266 1267 MLXSW_REG_DEFINE(slcr, MLXSW_REG_SLCR_ID, MLXSW_REG_SLCR_LEN); 1268 1269 enum mlxsw_reg_slcr_pp { 1270 /* Global Configuration (for all ports) */ 1271 MLXSW_REG_SLCR_PP_GLOBAL, 1272 /* Per port configuration, based on local_port field */ 1273 MLXSW_REG_SLCR_PP_PER_PORT, 1274 }; 1275 1276 /* reg_slcr_pp 1277 * Per Port Configuration 1278 * Note: Reading at Global mode results in reading port 1 configuration. 1279 * Access: Index 1280 */ 1281 MLXSW_ITEM32(reg, slcr, pp, 0x00, 24, 1); 1282 1283 /* reg_slcr_local_port 1284 * Local port number 1285 * Supported from CPU port 1286 * Not supported from router port 1287 * Reserved when pp = Global Configuration 1288 * Access: Index 1289 */ 1290 MLXSW_ITEM32_LP(reg, slcr, 0x00, 16, 0x00, 12); 1291 1292 enum mlxsw_reg_slcr_type { 1293 MLXSW_REG_SLCR_TYPE_CRC, /* default */ 1294 MLXSW_REG_SLCR_TYPE_XOR, 1295 MLXSW_REG_SLCR_TYPE_RANDOM, 1296 }; 1297 1298 /* reg_slcr_type 1299 * Hash type 1300 * Access: RW 1301 */ 1302 MLXSW_ITEM32(reg, slcr, type, 0x00, 0, 4); 1303 1304 /* Ingress port */ 1305 #define MLXSW_REG_SLCR_LAG_HASH_IN_PORT BIT(0) 1306 /* SMAC - for IPv4 and IPv6 packets */ 1307 #define MLXSW_REG_SLCR_LAG_HASH_SMAC_IP BIT(1) 1308 /* SMAC - for non-IP packets */ 1309 #define MLXSW_REG_SLCR_LAG_HASH_SMAC_NONIP BIT(2) 1310 #define MLXSW_REG_SLCR_LAG_HASH_SMAC \ 1311 (MLXSW_REG_SLCR_LAG_HASH_SMAC_IP | \ 1312 MLXSW_REG_SLCR_LAG_HASH_SMAC_NONIP) 1313 /* DMAC - for IPv4 and IPv6 packets */ 1314 #define MLXSW_REG_SLCR_LAG_HASH_DMAC_IP BIT(3) 1315 /* DMAC - for non-IP packets */ 1316 #define MLXSW_REG_SLCR_LAG_HASH_DMAC_NONIP BIT(4) 1317 #define MLXSW_REG_SLCR_LAG_HASH_DMAC \ 1318 (MLXSW_REG_SLCR_LAG_HASH_DMAC_IP | \ 1319 MLXSW_REG_SLCR_LAG_HASH_DMAC_NONIP) 1320 /* Ethertype - for IPv4 and IPv6 packets */ 1321 #define MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_IP BIT(5) 1322 /* Ethertype - for non-IP packets */ 1323 #define MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_NONIP BIT(6) 1324 #define MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE \ 1325 (MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_IP | \ 1326 MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_NONIP) 1327 /* VLAN ID - for IPv4 and IPv6 packets */ 1328 #define MLXSW_REG_SLCR_LAG_HASH_VLANID_IP BIT(7) 1329 /* VLAN ID - for non-IP packets */ 1330 #define MLXSW_REG_SLCR_LAG_HASH_VLANID_NONIP BIT(8) 1331 #define MLXSW_REG_SLCR_LAG_HASH_VLANID \ 1332 (MLXSW_REG_SLCR_LAG_HASH_VLANID_IP | \ 1333 MLXSW_REG_SLCR_LAG_HASH_VLANID_NONIP) 1334 /* Source IP address (can be IPv4 or IPv6) */ 1335 #define MLXSW_REG_SLCR_LAG_HASH_SIP BIT(9) 1336 /* Destination IP address (can be IPv4 or IPv6) */ 1337 #define MLXSW_REG_SLCR_LAG_HASH_DIP BIT(10) 1338 /* TCP/UDP source port */ 1339 #define MLXSW_REG_SLCR_LAG_HASH_SPORT BIT(11) 1340 /* TCP/UDP destination port*/ 1341 #define MLXSW_REG_SLCR_LAG_HASH_DPORT BIT(12) 1342 /* IPv4 Protocol/IPv6 Next Header */ 1343 #define MLXSW_REG_SLCR_LAG_HASH_IPPROTO BIT(13) 1344 /* IPv6 Flow label */ 1345 #define MLXSW_REG_SLCR_LAG_HASH_FLOWLABEL BIT(14) 1346 /* SID - FCoE source ID */ 1347 #define MLXSW_REG_SLCR_LAG_HASH_FCOE_SID BIT(15) 1348 /* DID - FCoE destination ID */ 1349 #define MLXSW_REG_SLCR_LAG_HASH_FCOE_DID BIT(16) 1350 /* OXID - FCoE originator exchange ID */ 1351 #define MLXSW_REG_SLCR_LAG_HASH_FCOE_OXID BIT(17) 1352 /* Destination QP number - for RoCE packets */ 1353 #define MLXSW_REG_SLCR_LAG_HASH_ROCE_DQP BIT(19) 1354 1355 /* reg_slcr_lag_hash 1356 * LAG hashing configuration. This is a bitmask, in which each set 1357 * bit includes the corresponding item in the LAG hash calculation. 1358 * The default lag_hash contains SMAC, DMAC, VLANID and 1359 * Ethertype (for all packet types). 1360 * Access: RW 1361 */ 1362 MLXSW_ITEM32(reg, slcr, lag_hash, 0x04, 0, 20); 1363 1364 /* reg_slcr_seed 1365 * LAG seed value. The seed is the same for all ports. 1366 * Access: RW 1367 */ 1368 MLXSW_ITEM32(reg, slcr, seed, 0x08, 0, 32); 1369 1370 static inline void mlxsw_reg_slcr_pack(char *payload, u16 lag_hash, u32 seed) 1371 { 1372 MLXSW_REG_ZERO(slcr, payload); 1373 mlxsw_reg_slcr_pp_set(payload, MLXSW_REG_SLCR_PP_GLOBAL); 1374 mlxsw_reg_slcr_type_set(payload, MLXSW_REG_SLCR_TYPE_CRC); 1375 mlxsw_reg_slcr_lag_hash_set(payload, lag_hash); 1376 mlxsw_reg_slcr_seed_set(payload, seed); 1377 } 1378 1379 /* SLCOR - Switch LAG Collector Register 1380 * ------------------------------------- 1381 * The Switch LAG Collector register controls the Local Port membership 1382 * in a LAG and enablement of the collector. 1383 */ 1384 #define MLXSW_REG_SLCOR_ID 0x2016 1385 #define MLXSW_REG_SLCOR_LEN 0x10 1386 1387 MLXSW_REG_DEFINE(slcor, MLXSW_REG_SLCOR_ID, MLXSW_REG_SLCOR_LEN); 1388 1389 enum mlxsw_reg_slcor_col { 1390 /* Port is added with collector disabled */ 1391 MLXSW_REG_SLCOR_COL_LAG_ADD_PORT, 1392 MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_ENABLED, 1393 MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_DISABLED, 1394 MLXSW_REG_SLCOR_COL_LAG_REMOVE_PORT, 1395 }; 1396 1397 /* reg_slcor_col 1398 * Collector configuration 1399 * Access: RW 1400 */ 1401 MLXSW_ITEM32(reg, slcor, col, 0x00, 30, 2); 1402 1403 /* reg_slcor_local_port 1404 * Local port number 1405 * Not supported for CPU port 1406 * Access: Index 1407 */ 1408 MLXSW_ITEM32_LP(reg, slcor, 0x00, 16, 0x00, 12); 1409 1410 /* reg_slcor_lag_id 1411 * LAG Identifier. Index into the LAG descriptor table. 1412 * Access: Index 1413 */ 1414 MLXSW_ITEM32(reg, slcor, lag_id, 0x00, 0, 10); 1415 1416 /* reg_slcor_port_index 1417 * Port index in the LAG list. Only valid on Add Port to LAG col. 1418 * Valid range is from 0 to cap_max_lag_members-1 1419 * Access: RW 1420 */ 1421 MLXSW_ITEM32(reg, slcor, port_index, 0x04, 0, 10); 1422 1423 static inline void mlxsw_reg_slcor_pack(char *payload, 1424 u16 local_port, u16 lag_id, 1425 enum mlxsw_reg_slcor_col col) 1426 { 1427 MLXSW_REG_ZERO(slcor, payload); 1428 mlxsw_reg_slcor_col_set(payload, col); 1429 mlxsw_reg_slcor_local_port_set(payload, local_port); 1430 mlxsw_reg_slcor_lag_id_set(payload, lag_id); 1431 } 1432 1433 static inline void mlxsw_reg_slcor_port_add_pack(char *payload, 1434 u16 local_port, u16 lag_id, 1435 u8 port_index) 1436 { 1437 mlxsw_reg_slcor_pack(payload, local_port, lag_id, 1438 MLXSW_REG_SLCOR_COL_LAG_ADD_PORT); 1439 mlxsw_reg_slcor_port_index_set(payload, port_index); 1440 } 1441 1442 static inline void mlxsw_reg_slcor_port_remove_pack(char *payload, 1443 u16 local_port, u16 lag_id) 1444 { 1445 mlxsw_reg_slcor_pack(payload, local_port, lag_id, 1446 MLXSW_REG_SLCOR_COL_LAG_REMOVE_PORT); 1447 } 1448 1449 static inline void mlxsw_reg_slcor_col_enable_pack(char *payload, 1450 u16 local_port, u16 lag_id) 1451 { 1452 mlxsw_reg_slcor_pack(payload, local_port, lag_id, 1453 MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_ENABLED); 1454 } 1455 1456 static inline void mlxsw_reg_slcor_col_disable_pack(char *payload, 1457 u16 local_port, u16 lag_id) 1458 { 1459 mlxsw_reg_slcor_pack(payload, local_port, lag_id, 1460 MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_ENABLED); 1461 } 1462 1463 /* SPMLR - Switch Port MAC Learning Register 1464 * ----------------------------------------- 1465 * Controls the Switch MAC learning policy per port. 1466 */ 1467 #define MLXSW_REG_SPMLR_ID 0x2018 1468 #define MLXSW_REG_SPMLR_LEN 0x8 1469 1470 MLXSW_REG_DEFINE(spmlr, MLXSW_REG_SPMLR_ID, MLXSW_REG_SPMLR_LEN); 1471 1472 /* reg_spmlr_local_port 1473 * Local port number. 1474 * Access: Index 1475 */ 1476 MLXSW_ITEM32_LP(reg, spmlr, 0x00, 16, 0x00, 12); 1477 1478 /* reg_spmlr_sub_port 1479 * Virtual port within the physical port. 1480 * Should be set to 0 when virtual ports are not enabled on the port. 1481 * Access: Index 1482 */ 1483 MLXSW_ITEM32(reg, spmlr, sub_port, 0x00, 8, 8); 1484 1485 enum mlxsw_reg_spmlr_learn_mode { 1486 MLXSW_REG_SPMLR_LEARN_MODE_DISABLE = 0, 1487 MLXSW_REG_SPMLR_LEARN_MODE_ENABLE = 2, 1488 MLXSW_REG_SPMLR_LEARN_MODE_SEC = 3, 1489 }; 1490 1491 /* reg_spmlr_learn_mode 1492 * Learning mode on the port. 1493 * 0 - Learning disabled. 1494 * 2 - Learning enabled. 1495 * 3 - Security mode. 1496 * 1497 * In security mode the switch does not learn MACs on the port, but uses the 1498 * SMAC to see if it exists on another ingress port. If so, the packet is 1499 * classified as a bad packet and is discarded unless the software registers 1500 * to receive port security error packets usign HPKT. 1501 */ 1502 MLXSW_ITEM32(reg, spmlr, learn_mode, 0x04, 30, 2); 1503 1504 static inline void mlxsw_reg_spmlr_pack(char *payload, u16 local_port, 1505 enum mlxsw_reg_spmlr_learn_mode mode) 1506 { 1507 MLXSW_REG_ZERO(spmlr, payload); 1508 mlxsw_reg_spmlr_local_port_set(payload, local_port); 1509 mlxsw_reg_spmlr_sub_port_set(payload, 0); 1510 mlxsw_reg_spmlr_learn_mode_set(payload, mode); 1511 } 1512 1513 /* SVFA - Switch VID to FID Allocation Register 1514 * -------------------------------------------- 1515 * Controls the VID to FID mapping and {Port, VID} to FID mapping for 1516 * virtualized ports. 1517 */ 1518 #define MLXSW_REG_SVFA_ID 0x201C 1519 #define MLXSW_REG_SVFA_LEN 0x10 1520 1521 MLXSW_REG_DEFINE(svfa, MLXSW_REG_SVFA_ID, MLXSW_REG_SVFA_LEN); 1522 1523 /* reg_svfa_swid 1524 * Switch partition ID. 1525 * Access: Index 1526 */ 1527 MLXSW_ITEM32(reg, svfa, swid, 0x00, 24, 8); 1528 1529 /* reg_svfa_local_port 1530 * Local port number. 1531 * Access: Index 1532 * 1533 * Note: Reserved for 802.1Q FIDs. 1534 */ 1535 MLXSW_ITEM32_LP(reg, svfa, 0x00, 16, 0x00, 12); 1536 1537 enum mlxsw_reg_svfa_mt { 1538 MLXSW_REG_SVFA_MT_VID_TO_FID, 1539 MLXSW_REG_SVFA_MT_PORT_VID_TO_FID, 1540 }; 1541 1542 /* reg_svfa_mapping_table 1543 * Mapping table: 1544 * 0 - VID to FID 1545 * 1 - {Port, VID} to FID 1546 * Access: Index 1547 * 1548 * Note: Reserved for SwitchX-2. 1549 */ 1550 MLXSW_ITEM32(reg, svfa, mapping_table, 0x00, 8, 3); 1551 1552 /* reg_svfa_v 1553 * Valid. 1554 * Valid if set. 1555 * Access: RW 1556 * 1557 * Note: Reserved for SwitchX-2. 1558 */ 1559 MLXSW_ITEM32(reg, svfa, v, 0x00, 0, 1); 1560 1561 /* reg_svfa_fid 1562 * Filtering ID. 1563 * Access: RW 1564 */ 1565 MLXSW_ITEM32(reg, svfa, fid, 0x04, 16, 16); 1566 1567 /* reg_svfa_vid 1568 * VLAN ID. 1569 * Access: Index 1570 */ 1571 MLXSW_ITEM32(reg, svfa, vid, 0x04, 0, 12); 1572 1573 /* reg_svfa_counter_set_type 1574 * Counter set type for flow counters. 1575 * Access: RW 1576 * 1577 * Note: Reserved for SwitchX-2. 1578 */ 1579 MLXSW_ITEM32(reg, svfa, counter_set_type, 0x08, 24, 8); 1580 1581 /* reg_svfa_counter_index 1582 * Counter index for flow counters. 1583 * Access: RW 1584 * 1585 * Note: Reserved for SwitchX-2. 1586 */ 1587 MLXSW_ITEM32(reg, svfa, counter_index, 0x08, 0, 24); 1588 1589 static inline void mlxsw_reg_svfa_pack(char *payload, u16 local_port, 1590 enum mlxsw_reg_svfa_mt mt, bool valid, 1591 u16 fid, u16 vid) 1592 { 1593 MLXSW_REG_ZERO(svfa, payload); 1594 local_port = mt == MLXSW_REG_SVFA_MT_VID_TO_FID ? 0 : local_port; 1595 mlxsw_reg_svfa_swid_set(payload, 0); 1596 mlxsw_reg_svfa_local_port_set(payload, local_port); 1597 mlxsw_reg_svfa_mapping_table_set(payload, mt); 1598 mlxsw_reg_svfa_v_set(payload, valid); 1599 mlxsw_reg_svfa_fid_set(payload, fid); 1600 mlxsw_reg_svfa_vid_set(payload, vid); 1601 } 1602 1603 /* SPVTR - Switch Port VLAN Stacking Register 1604 * ------------------------------------------ 1605 * The Switch Port VLAN Stacking register configures the VLAN mode of the port 1606 * to enable VLAN stacking. 1607 */ 1608 #define MLXSW_REG_SPVTR_ID 0x201D 1609 #define MLXSW_REG_SPVTR_LEN 0x10 1610 1611 MLXSW_REG_DEFINE(spvtr, MLXSW_REG_SPVTR_ID, MLXSW_REG_SPVTR_LEN); 1612 1613 /* reg_spvtr_tport 1614 * Port is tunnel port. 1615 * Access: Index 1616 * 1617 * Note: Reserved when SwitchX/-2 or Spectrum-1. 1618 */ 1619 MLXSW_ITEM32(reg, spvtr, tport, 0x00, 24, 1); 1620 1621 /* reg_spvtr_local_port 1622 * When tport = 0: local port number (Not supported from/to CPU). 1623 * When tport = 1: tunnel port. 1624 * Access: Index 1625 */ 1626 MLXSW_ITEM32_LP(reg, spvtr, 0x00, 16, 0x00, 12); 1627 1628 /* reg_spvtr_ippe 1629 * Ingress Port Prio Mode Update Enable. 1630 * When set, the Port Prio Mode is updated with the provided ipprio_mode field. 1631 * Reserved on Get operations. 1632 * Access: OP 1633 */ 1634 MLXSW_ITEM32(reg, spvtr, ippe, 0x04, 31, 1); 1635 1636 /* reg_spvtr_ipve 1637 * Ingress Port VID Mode Update Enable. 1638 * When set, the Ingress Port VID Mode is updated with the provided ipvid_mode 1639 * field. 1640 * Reserved on Get operations. 1641 * Access: OP 1642 */ 1643 MLXSW_ITEM32(reg, spvtr, ipve, 0x04, 30, 1); 1644 1645 /* reg_spvtr_epve 1646 * Egress Port VID Mode Update Enable. 1647 * When set, the Egress Port VID Mode is updated with the provided epvid_mode 1648 * field. 1649 * Access: OP 1650 */ 1651 MLXSW_ITEM32(reg, spvtr, epve, 0x04, 29, 1); 1652 1653 /* reg_spvtr_ipprio_mode 1654 * Ingress Port Priority Mode. 1655 * This controls the PCP and DEI of the new outer VLAN 1656 * Note: for SwitchX/-2 the DEI is not affected. 1657 * 0: use port default PCP and DEI (configured by QPDPC). 1658 * 1: use C-VLAN PCP and DEI. 1659 * Has no effect when ipvid_mode = 0. 1660 * Reserved when tport = 1. 1661 * Access: RW 1662 */ 1663 MLXSW_ITEM32(reg, spvtr, ipprio_mode, 0x04, 20, 4); 1664 1665 enum mlxsw_reg_spvtr_ipvid_mode { 1666 /* IEEE Compliant PVID (default) */ 1667 MLXSW_REG_SPVTR_IPVID_MODE_IEEE_COMPLIANT_PVID, 1668 /* Push VLAN (for VLAN stacking, except prio tagged packets) */ 1669 MLXSW_REG_SPVTR_IPVID_MODE_PUSH_VLAN_FOR_UNTAGGED_PACKET, 1670 /* Always push VLAN (also for prio tagged packets) */ 1671 MLXSW_REG_SPVTR_IPVID_MODE_ALWAYS_PUSH_VLAN, 1672 }; 1673 1674 /* reg_spvtr_ipvid_mode 1675 * Ingress Port VLAN-ID Mode. 1676 * For Spectrum family, this affects the values of SPVM.i 1677 * Access: RW 1678 */ 1679 MLXSW_ITEM32(reg, spvtr, ipvid_mode, 0x04, 16, 4); 1680 1681 enum mlxsw_reg_spvtr_epvid_mode { 1682 /* IEEE Compliant VLAN membership */ 1683 MLXSW_REG_SPVTR_EPVID_MODE_IEEE_COMPLIANT_VLAN_MEMBERSHIP, 1684 /* Pop VLAN (for VLAN stacking) */ 1685 MLXSW_REG_SPVTR_EPVID_MODE_POP_VLAN, 1686 }; 1687 1688 /* reg_spvtr_epvid_mode 1689 * Egress Port VLAN-ID Mode. 1690 * For Spectrum family, this affects the values of SPVM.e,u,pt. 1691 * Access: WO 1692 */ 1693 MLXSW_ITEM32(reg, spvtr, epvid_mode, 0x04, 0, 4); 1694 1695 static inline void mlxsw_reg_spvtr_pack(char *payload, bool tport, 1696 u16 local_port, 1697 enum mlxsw_reg_spvtr_ipvid_mode ipvid_mode) 1698 { 1699 MLXSW_REG_ZERO(spvtr, payload); 1700 mlxsw_reg_spvtr_tport_set(payload, tport); 1701 mlxsw_reg_spvtr_local_port_set(payload, local_port); 1702 mlxsw_reg_spvtr_ipvid_mode_set(payload, ipvid_mode); 1703 mlxsw_reg_spvtr_ipve_set(payload, true); 1704 } 1705 1706 /* SVPE - Switch Virtual-Port Enabling Register 1707 * -------------------------------------------- 1708 * Enables port virtualization. 1709 */ 1710 #define MLXSW_REG_SVPE_ID 0x201E 1711 #define MLXSW_REG_SVPE_LEN 0x4 1712 1713 MLXSW_REG_DEFINE(svpe, MLXSW_REG_SVPE_ID, MLXSW_REG_SVPE_LEN); 1714 1715 /* reg_svpe_local_port 1716 * Local port number 1717 * Access: Index 1718 * 1719 * Note: CPU port is not supported (uses VLAN mode only). 1720 */ 1721 MLXSW_ITEM32_LP(reg, svpe, 0x00, 16, 0x00, 12); 1722 1723 /* reg_svpe_vp_en 1724 * Virtual port enable. 1725 * 0 - Disable, VLAN mode (VID to FID). 1726 * 1 - Enable, Virtual port mode ({Port, VID} to FID). 1727 * Access: RW 1728 */ 1729 MLXSW_ITEM32(reg, svpe, vp_en, 0x00, 8, 1); 1730 1731 static inline void mlxsw_reg_svpe_pack(char *payload, u16 local_port, 1732 bool enable) 1733 { 1734 MLXSW_REG_ZERO(svpe, payload); 1735 mlxsw_reg_svpe_local_port_set(payload, local_port); 1736 mlxsw_reg_svpe_vp_en_set(payload, enable); 1737 } 1738 1739 /* SFMR - Switch FID Management Register 1740 * ------------------------------------- 1741 * Creates and configures FIDs. 1742 */ 1743 #define MLXSW_REG_SFMR_ID 0x201F 1744 #define MLXSW_REG_SFMR_LEN 0x18 1745 1746 MLXSW_REG_DEFINE(sfmr, MLXSW_REG_SFMR_ID, MLXSW_REG_SFMR_LEN); 1747 1748 enum mlxsw_reg_sfmr_op { 1749 MLXSW_REG_SFMR_OP_CREATE_FID, 1750 MLXSW_REG_SFMR_OP_DESTROY_FID, 1751 }; 1752 1753 /* reg_sfmr_op 1754 * Operation. 1755 * 0 - Create or edit FID. 1756 * 1 - Destroy FID. 1757 * Access: WO 1758 */ 1759 MLXSW_ITEM32(reg, sfmr, op, 0x00, 24, 4); 1760 1761 /* reg_sfmr_fid 1762 * Filtering ID. 1763 * Access: Index 1764 */ 1765 MLXSW_ITEM32(reg, sfmr, fid, 0x00, 0, 16); 1766 1767 /* reg_sfmr_fid_offset 1768 * FID offset. 1769 * Used to point into the flooding table selected by SFGC register if 1770 * the table is of type FID-Offset. Otherwise, this field is reserved. 1771 * Access: RW 1772 */ 1773 MLXSW_ITEM32(reg, sfmr, fid_offset, 0x08, 0, 16); 1774 1775 /* reg_sfmr_vtfp 1776 * Valid Tunnel Flood Pointer. 1777 * If not set, then nve_tunnel_flood_ptr is reserved and considered NULL. 1778 * Access: RW 1779 * 1780 * Note: Reserved for 802.1Q FIDs. 1781 */ 1782 MLXSW_ITEM32(reg, sfmr, vtfp, 0x0C, 31, 1); 1783 1784 /* reg_sfmr_nve_tunnel_flood_ptr 1785 * Underlay Flooding and BC Pointer. 1786 * Used as a pointer to the first entry of the group based link lists of 1787 * flooding or BC entries (for NVE tunnels). 1788 * Access: RW 1789 */ 1790 MLXSW_ITEM32(reg, sfmr, nve_tunnel_flood_ptr, 0x0C, 0, 24); 1791 1792 /* reg_sfmr_vv 1793 * VNI Valid. 1794 * If not set, then vni is reserved. 1795 * Access: RW 1796 * 1797 * Note: Reserved for 802.1Q FIDs. 1798 */ 1799 MLXSW_ITEM32(reg, sfmr, vv, 0x10, 31, 1); 1800 1801 /* reg_sfmr_vni 1802 * Virtual Network Identifier. 1803 * Access: RW 1804 * 1805 * Note: A given VNI can only be assigned to one FID. 1806 */ 1807 MLXSW_ITEM32(reg, sfmr, vni, 0x10, 0, 24); 1808 1809 static inline void mlxsw_reg_sfmr_pack(char *payload, 1810 enum mlxsw_reg_sfmr_op op, u16 fid, 1811 u16 fid_offset) 1812 { 1813 MLXSW_REG_ZERO(sfmr, payload); 1814 mlxsw_reg_sfmr_op_set(payload, op); 1815 mlxsw_reg_sfmr_fid_set(payload, fid); 1816 mlxsw_reg_sfmr_fid_offset_set(payload, fid_offset); 1817 mlxsw_reg_sfmr_vtfp_set(payload, false); 1818 mlxsw_reg_sfmr_vv_set(payload, false); 1819 } 1820 1821 /* SPVMLR - Switch Port VLAN MAC Learning Register 1822 * ----------------------------------------------- 1823 * Controls the switch MAC learning policy per {Port, VID}. 1824 */ 1825 #define MLXSW_REG_SPVMLR_ID 0x2020 1826 #define MLXSW_REG_SPVMLR_BASE_LEN 0x04 /* base length, without records */ 1827 #define MLXSW_REG_SPVMLR_REC_LEN 0x04 /* record length */ 1828 #define MLXSW_REG_SPVMLR_REC_MAX_COUNT 255 1829 #define MLXSW_REG_SPVMLR_LEN (MLXSW_REG_SPVMLR_BASE_LEN + \ 1830 MLXSW_REG_SPVMLR_REC_LEN * \ 1831 MLXSW_REG_SPVMLR_REC_MAX_COUNT) 1832 1833 MLXSW_REG_DEFINE(spvmlr, MLXSW_REG_SPVMLR_ID, MLXSW_REG_SPVMLR_LEN); 1834 1835 /* reg_spvmlr_local_port 1836 * Local ingress port. 1837 * Access: Index 1838 * 1839 * Note: CPU port is not supported. 1840 */ 1841 MLXSW_ITEM32_LP(reg, spvmlr, 0x00, 16, 0x00, 12); 1842 1843 /* reg_spvmlr_num_rec 1844 * Number of records to update. 1845 * Access: OP 1846 */ 1847 MLXSW_ITEM32(reg, spvmlr, num_rec, 0x00, 0, 8); 1848 1849 /* reg_spvmlr_rec_learn_enable 1850 * 0 - Disable learning for {Port, VID}. 1851 * 1 - Enable learning for {Port, VID}. 1852 * Access: RW 1853 */ 1854 MLXSW_ITEM32_INDEXED(reg, spvmlr, rec_learn_enable, MLXSW_REG_SPVMLR_BASE_LEN, 1855 31, 1, MLXSW_REG_SPVMLR_REC_LEN, 0x00, false); 1856 1857 /* reg_spvmlr_rec_vid 1858 * VLAN ID to be added/removed from port or for querying. 1859 * Access: Index 1860 */ 1861 MLXSW_ITEM32_INDEXED(reg, spvmlr, rec_vid, MLXSW_REG_SPVMLR_BASE_LEN, 0, 12, 1862 MLXSW_REG_SPVMLR_REC_LEN, 0x00, false); 1863 1864 static inline void mlxsw_reg_spvmlr_pack(char *payload, u16 local_port, 1865 u16 vid_begin, u16 vid_end, 1866 bool learn_enable) 1867 { 1868 int num_rec = vid_end - vid_begin + 1; 1869 int i; 1870 1871 WARN_ON(num_rec < 1 || num_rec > MLXSW_REG_SPVMLR_REC_MAX_COUNT); 1872 1873 MLXSW_REG_ZERO(spvmlr, payload); 1874 mlxsw_reg_spvmlr_local_port_set(payload, local_port); 1875 mlxsw_reg_spvmlr_num_rec_set(payload, num_rec); 1876 1877 for (i = 0; i < num_rec; i++) { 1878 mlxsw_reg_spvmlr_rec_learn_enable_set(payload, i, learn_enable); 1879 mlxsw_reg_spvmlr_rec_vid_set(payload, i, vid_begin + i); 1880 } 1881 } 1882 1883 /* SPVC - Switch Port VLAN Classification Register 1884 * ----------------------------------------------- 1885 * Configures the port to identify packets as untagged / single tagged / 1886 * double packets based on the packet EtherTypes. 1887 * Ethertype IDs are configured by SVER. 1888 */ 1889 #define MLXSW_REG_SPVC_ID 0x2026 1890 #define MLXSW_REG_SPVC_LEN 0x0C 1891 1892 MLXSW_REG_DEFINE(spvc, MLXSW_REG_SPVC_ID, MLXSW_REG_SPVC_LEN); 1893 1894 /* reg_spvc_local_port 1895 * Local port. 1896 * Access: Index 1897 * 1898 * Note: applies both to Rx port and Tx port, so if a packet traverses 1899 * through Rx port i and a Tx port j then port i and port j must have the 1900 * same configuration. 1901 */ 1902 MLXSW_ITEM32_LP(reg, spvc, 0x00, 16, 0x00, 12); 1903 1904 /* reg_spvc_inner_et2 1905 * Vlan Tag1 EtherType2 enable. 1906 * Packet is initially classified as double VLAN Tag if in addition to 1907 * being classified with a tag0 VLAN Tag its tag1 EtherType value is 1908 * equal to ether_type2. 1909 * 0: disable (default) 1910 * 1: enable 1911 * Access: RW 1912 */ 1913 MLXSW_ITEM32(reg, spvc, inner_et2, 0x08, 17, 1); 1914 1915 /* reg_spvc_et2 1916 * Vlan Tag0 EtherType2 enable. 1917 * Packet is initially classified as VLAN Tag if its tag0 EtherType is 1918 * equal to ether_type2. 1919 * 0: disable (default) 1920 * 1: enable 1921 * Access: RW 1922 */ 1923 MLXSW_ITEM32(reg, spvc, et2, 0x08, 16, 1); 1924 1925 /* reg_spvc_inner_et1 1926 * Vlan Tag1 EtherType1 enable. 1927 * Packet is initially classified as double VLAN Tag if in addition to 1928 * being classified with a tag0 VLAN Tag its tag1 EtherType value is 1929 * equal to ether_type1. 1930 * 0: disable 1931 * 1: enable (default) 1932 * Access: RW 1933 */ 1934 MLXSW_ITEM32(reg, spvc, inner_et1, 0x08, 9, 1); 1935 1936 /* reg_spvc_et1 1937 * Vlan Tag0 EtherType1 enable. 1938 * Packet is initially classified as VLAN Tag if its tag0 EtherType is 1939 * equal to ether_type1. 1940 * 0: disable 1941 * 1: enable (default) 1942 * Access: RW 1943 */ 1944 MLXSW_ITEM32(reg, spvc, et1, 0x08, 8, 1); 1945 1946 /* reg_inner_et0 1947 * Vlan Tag1 EtherType0 enable. 1948 * Packet is initially classified as double VLAN Tag if in addition to 1949 * being classified with a tag0 VLAN Tag its tag1 EtherType value is 1950 * equal to ether_type0. 1951 * 0: disable 1952 * 1: enable (default) 1953 * Access: RW 1954 */ 1955 MLXSW_ITEM32(reg, spvc, inner_et0, 0x08, 1, 1); 1956 1957 /* reg_et0 1958 * Vlan Tag0 EtherType0 enable. 1959 * Packet is initially classified as VLAN Tag if its tag0 EtherType is 1960 * equal to ether_type0. 1961 * 0: disable 1962 * 1: enable (default) 1963 * Access: RW 1964 */ 1965 MLXSW_ITEM32(reg, spvc, et0, 0x08, 0, 1); 1966 1967 static inline void mlxsw_reg_spvc_pack(char *payload, u16 local_port, bool et1, 1968 bool et0) 1969 { 1970 MLXSW_REG_ZERO(spvc, payload); 1971 mlxsw_reg_spvc_local_port_set(payload, local_port); 1972 /* Enable inner_et1 and inner_et0 to enable identification of double 1973 * tagged packets. 1974 */ 1975 mlxsw_reg_spvc_inner_et1_set(payload, 1); 1976 mlxsw_reg_spvc_inner_et0_set(payload, 1); 1977 mlxsw_reg_spvc_et1_set(payload, et1); 1978 mlxsw_reg_spvc_et0_set(payload, et0); 1979 } 1980 1981 /* SPEVET - Switch Port Egress VLAN EtherType 1982 * ------------------------------------------ 1983 * The switch port egress VLAN EtherType configures which EtherType to push at 1984 * egress for packets incoming through a local port for which 'SPVID.egr_et_set' 1985 * is set. 1986 */ 1987 #define MLXSW_REG_SPEVET_ID 0x202A 1988 #define MLXSW_REG_SPEVET_LEN 0x08 1989 1990 MLXSW_REG_DEFINE(spevet, MLXSW_REG_SPEVET_ID, MLXSW_REG_SPEVET_LEN); 1991 1992 /* reg_spevet_local_port 1993 * Egress Local port number. 1994 * Not supported to CPU port. 1995 * Access: Index 1996 */ 1997 MLXSW_ITEM32_LP(reg, spevet, 0x00, 16, 0x00, 12); 1998 1999 /* reg_spevet_et_vlan 2000 * Egress EtherType VLAN to push when SPVID.egr_et_set field set for the packet: 2001 * 0: ether_type0 - (default) 2002 * 1: ether_type1 2003 * 2: ether_type2 2004 * Access: RW 2005 */ 2006 MLXSW_ITEM32(reg, spevet, et_vlan, 0x04, 16, 2); 2007 2008 static inline void mlxsw_reg_spevet_pack(char *payload, u16 local_port, 2009 u8 et_vlan) 2010 { 2011 MLXSW_REG_ZERO(spevet, payload); 2012 mlxsw_reg_spevet_local_port_set(payload, local_port); 2013 mlxsw_reg_spevet_et_vlan_set(payload, et_vlan); 2014 } 2015 2016 /* SFTR-V2 - Switch Flooding Table Version 2 Register 2017 * -------------------------------------------------- 2018 * The switch flooding table is used for flooding packet replication. The table 2019 * defines a bit mask of ports for packet replication. 2020 */ 2021 #define MLXSW_REG_SFTR2_ID 0x202F 2022 #define MLXSW_REG_SFTR2_LEN 0x120 2023 2024 MLXSW_REG_DEFINE(sftr2, MLXSW_REG_SFTR2_ID, MLXSW_REG_SFTR2_LEN); 2025 2026 /* reg_sftr2_swid 2027 * Switch partition ID with which to associate the port. 2028 * Access: Index 2029 */ 2030 MLXSW_ITEM32(reg, sftr2, swid, 0x00, 24, 8); 2031 2032 /* reg_sftr2_flood_table 2033 * Flooding table index to associate with the specific type on the specific 2034 * switch partition. 2035 * Access: Index 2036 */ 2037 MLXSW_ITEM32(reg, sftr2, flood_table, 0x00, 16, 6); 2038 2039 /* reg_sftr2_index 2040 * Index. Used as an index into the Flooding Table in case the table is 2041 * configured to use VID / FID or FID Offset. 2042 * Access: Index 2043 */ 2044 MLXSW_ITEM32(reg, sftr2, index, 0x00, 0, 16); 2045 2046 /* reg_sftr2_table_type 2047 * See mlxsw_flood_table_type 2048 * Access: RW 2049 */ 2050 MLXSW_ITEM32(reg, sftr2, table_type, 0x04, 16, 3); 2051 2052 /* reg_sftr2_range 2053 * Range of entries to update 2054 * Access: Index 2055 */ 2056 MLXSW_ITEM32(reg, sftr2, range, 0x04, 0, 16); 2057 2058 /* reg_sftr2_port 2059 * Local port membership (1 bit per port). 2060 * Access: RW 2061 */ 2062 MLXSW_ITEM_BIT_ARRAY(reg, sftr2, port, 0x20, 0x80, 1); 2063 2064 /* reg_sftr2_port_mask 2065 * Local port mask (1 bit per port). 2066 * Access: WO 2067 */ 2068 MLXSW_ITEM_BIT_ARRAY(reg, sftr2, port_mask, 0xA0, 0x80, 1); 2069 2070 static inline void mlxsw_reg_sftr2_pack(char *payload, 2071 unsigned int flood_table, 2072 unsigned int index, 2073 enum mlxsw_flood_table_type table_type, 2074 unsigned int range, u16 port, bool set) 2075 { 2076 MLXSW_REG_ZERO(sftr2, payload); 2077 mlxsw_reg_sftr2_swid_set(payload, 0); 2078 mlxsw_reg_sftr2_flood_table_set(payload, flood_table); 2079 mlxsw_reg_sftr2_index_set(payload, index); 2080 mlxsw_reg_sftr2_table_type_set(payload, table_type); 2081 mlxsw_reg_sftr2_range_set(payload, range); 2082 mlxsw_reg_sftr2_port_set(payload, port, set); 2083 mlxsw_reg_sftr2_port_mask_set(payload, port, 1); 2084 } 2085 2086 /* SMID-V2 - Switch Multicast ID Version 2 Register 2087 * ------------------------------------------------ 2088 * The MID record maps from a MID (Multicast ID), which is a unique identifier 2089 * of the multicast group within the stacking domain, into a list of local 2090 * ports into which the packet is replicated. 2091 */ 2092 #define MLXSW_REG_SMID2_ID 0x2034 2093 #define MLXSW_REG_SMID2_LEN 0x120 2094 2095 MLXSW_REG_DEFINE(smid2, MLXSW_REG_SMID2_ID, MLXSW_REG_SMID2_LEN); 2096 2097 /* reg_smid2_swid 2098 * Switch partition ID. 2099 * Access: Index 2100 */ 2101 MLXSW_ITEM32(reg, smid2, swid, 0x00, 24, 8); 2102 2103 /* reg_smid2_mid 2104 * Multicast identifier - global identifier that represents the multicast group 2105 * across all devices. 2106 * Access: Index 2107 */ 2108 MLXSW_ITEM32(reg, smid2, mid, 0x00, 0, 16); 2109 2110 /* reg_smid2_port 2111 * Local port memebership (1 bit per port). 2112 * Access: RW 2113 */ 2114 MLXSW_ITEM_BIT_ARRAY(reg, smid2, port, 0x20, 0x80, 1); 2115 2116 /* reg_smid2_port_mask 2117 * Local port mask (1 bit per port). 2118 * Access: WO 2119 */ 2120 MLXSW_ITEM_BIT_ARRAY(reg, smid2, port_mask, 0xA0, 0x80, 1); 2121 2122 static inline void mlxsw_reg_smid2_pack(char *payload, u16 mid, u16 port, 2123 bool set) 2124 { 2125 MLXSW_REG_ZERO(smid2, payload); 2126 mlxsw_reg_smid2_swid_set(payload, 0); 2127 mlxsw_reg_smid2_mid_set(payload, mid); 2128 mlxsw_reg_smid2_port_set(payload, port, set); 2129 mlxsw_reg_smid2_port_mask_set(payload, port, 1); 2130 } 2131 2132 /* CWTP - Congetion WRED ECN TClass Profile 2133 * ---------------------------------------- 2134 * Configures the profiles for queues of egress port and traffic class 2135 */ 2136 #define MLXSW_REG_CWTP_ID 0x2802 2137 #define MLXSW_REG_CWTP_BASE_LEN 0x28 2138 #define MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN 0x08 2139 #define MLXSW_REG_CWTP_LEN 0x40 2140 2141 MLXSW_REG_DEFINE(cwtp, MLXSW_REG_CWTP_ID, MLXSW_REG_CWTP_LEN); 2142 2143 /* reg_cwtp_local_port 2144 * Local port number 2145 * Not supported for CPU port 2146 * Access: Index 2147 */ 2148 MLXSW_ITEM32_LP(reg, cwtp, 0x00, 16, 0x00, 12); 2149 2150 /* reg_cwtp_traffic_class 2151 * Traffic Class to configure 2152 * Access: Index 2153 */ 2154 MLXSW_ITEM32(reg, cwtp, traffic_class, 32, 0, 8); 2155 2156 /* reg_cwtp_profile_min 2157 * Minimum Average Queue Size of the profile in cells. 2158 * Access: RW 2159 */ 2160 MLXSW_ITEM32_INDEXED(reg, cwtp, profile_min, MLXSW_REG_CWTP_BASE_LEN, 2161 0, 20, MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN, 0, false); 2162 2163 /* reg_cwtp_profile_percent 2164 * Percentage of WRED and ECN marking for maximum Average Queue size 2165 * Range is 0 to 100, units of integer percentage 2166 * Access: RW 2167 */ 2168 MLXSW_ITEM32_INDEXED(reg, cwtp, profile_percent, MLXSW_REG_CWTP_BASE_LEN, 2169 24, 7, MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN, 4, false); 2170 2171 /* reg_cwtp_profile_max 2172 * Maximum Average Queue size of the profile in cells 2173 * Access: RW 2174 */ 2175 MLXSW_ITEM32_INDEXED(reg, cwtp, profile_max, MLXSW_REG_CWTP_BASE_LEN, 2176 0, 20, MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN, 4, false); 2177 2178 #define MLXSW_REG_CWTP_MIN_VALUE 64 2179 #define MLXSW_REG_CWTP_MAX_PROFILE 2 2180 #define MLXSW_REG_CWTP_DEFAULT_PROFILE 1 2181 2182 static inline void mlxsw_reg_cwtp_pack(char *payload, u16 local_port, 2183 u8 traffic_class) 2184 { 2185 int i; 2186 2187 MLXSW_REG_ZERO(cwtp, payload); 2188 mlxsw_reg_cwtp_local_port_set(payload, local_port); 2189 mlxsw_reg_cwtp_traffic_class_set(payload, traffic_class); 2190 2191 for (i = 0; i <= MLXSW_REG_CWTP_MAX_PROFILE; i++) { 2192 mlxsw_reg_cwtp_profile_min_set(payload, i, 2193 MLXSW_REG_CWTP_MIN_VALUE); 2194 mlxsw_reg_cwtp_profile_max_set(payload, i, 2195 MLXSW_REG_CWTP_MIN_VALUE); 2196 } 2197 } 2198 2199 #define MLXSW_REG_CWTP_PROFILE_TO_INDEX(profile) (profile - 1) 2200 2201 static inline void 2202 mlxsw_reg_cwtp_profile_pack(char *payload, u8 profile, u32 min, u32 max, 2203 u32 probability) 2204 { 2205 u8 index = MLXSW_REG_CWTP_PROFILE_TO_INDEX(profile); 2206 2207 mlxsw_reg_cwtp_profile_min_set(payload, index, min); 2208 mlxsw_reg_cwtp_profile_max_set(payload, index, max); 2209 mlxsw_reg_cwtp_profile_percent_set(payload, index, probability); 2210 } 2211 2212 /* CWTPM - Congestion WRED ECN TClass and Pool Mapping 2213 * --------------------------------------------------- 2214 * The CWTPM register maps each egress port and traffic class to profile num. 2215 */ 2216 #define MLXSW_REG_CWTPM_ID 0x2803 2217 #define MLXSW_REG_CWTPM_LEN 0x44 2218 2219 MLXSW_REG_DEFINE(cwtpm, MLXSW_REG_CWTPM_ID, MLXSW_REG_CWTPM_LEN); 2220 2221 /* reg_cwtpm_local_port 2222 * Local port number 2223 * Not supported for CPU port 2224 * Access: Index 2225 */ 2226 MLXSW_ITEM32_LP(reg, cwtpm, 0x00, 16, 0x00, 12); 2227 2228 /* reg_cwtpm_traffic_class 2229 * Traffic Class to configure 2230 * Access: Index 2231 */ 2232 MLXSW_ITEM32(reg, cwtpm, traffic_class, 32, 0, 8); 2233 2234 /* reg_cwtpm_ew 2235 * Control enablement of WRED for traffic class: 2236 * 0 - Disable 2237 * 1 - Enable 2238 * Access: RW 2239 */ 2240 MLXSW_ITEM32(reg, cwtpm, ew, 36, 1, 1); 2241 2242 /* reg_cwtpm_ee 2243 * Control enablement of ECN for traffic class: 2244 * 0 - Disable 2245 * 1 - Enable 2246 * Access: RW 2247 */ 2248 MLXSW_ITEM32(reg, cwtpm, ee, 36, 0, 1); 2249 2250 /* reg_cwtpm_tcp_g 2251 * TCP Green Profile. 2252 * Index of the profile within {port, traffic class} to use. 2253 * 0 for disabling both WRED and ECN for this type of traffic. 2254 * Access: RW 2255 */ 2256 MLXSW_ITEM32(reg, cwtpm, tcp_g, 52, 0, 2); 2257 2258 /* reg_cwtpm_tcp_y 2259 * TCP Yellow Profile. 2260 * Index of the profile within {port, traffic class} to use. 2261 * 0 for disabling both WRED and ECN for this type of traffic. 2262 * Access: RW 2263 */ 2264 MLXSW_ITEM32(reg, cwtpm, tcp_y, 56, 16, 2); 2265 2266 /* reg_cwtpm_tcp_r 2267 * TCP Red Profile. 2268 * Index of the profile within {port, traffic class} to use. 2269 * 0 for disabling both WRED and ECN for this type of traffic. 2270 * Access: RW 2271 */ 2272 MLXSW_ITEM32(reg, cwtpm, tcp_r, 56, 0, 2); 2273 2274 /* reg_cwtpm_ntcp_g 2275 * Non-TCP Green Profile. 2276 * Index of the profile within {port, traffic class} to use. 2277 * 0 for disabling both WRED and ECN for this type of traffic. 2278 * Access: RW 2279 */ 2280 MLXSW_ITEM32(reg, cwtpm, ntcp_g, 60, 0, 2); 2281 2282 /* reg_cwtpm_ntcp_y 2283 * Non-TCP Yellow Profile. 2284 * Index of the profile within {port, traffic class} to use. 2285 * 0 for disabling both WRED and ECN for this type of traffic. 2286 * Access: RW 2287 */ 2288 MLXSW_ITEM32(reg, cwtpm, ntcp_y, 64, 16, 2); 2289 2290 /* reg_cwtpm_ntcp_r 2291 * Non-TCP Red Profile. 2292 * Index of the profile within {port, traffic class} to use. 2293 * 0 for disabling both WRED and ECN for this type of traffic. 2294 * Access: RW 2295 */ 2296 MLXSW_ITEM32(reg, cwtpm, ntcp_r, 64, 0, 2); 2297 2298 #define MLXSW_REG_CWTPM_RESET_PROFILE 0 2299 2300 static inline void mlxsw_reg_cwtpm_pack(char *payload, u16 local_port, 2301 u8 traffic_class, u8 profile, 2302 bool wred, bool ecn) 2303 { 2304 MLXSW_REG_ZERO(cwtpm, payload); 2305 mlxsw_reg_cwtpm_local_port_set(payload, local_port); 2306 mlxsw_reg_cwtpm_traffic_class_set(payload, traffic_class); 2307 mlxsw_reg_cwtpm_ew_set(payload, wred); 2308 mlxsw_reg_cwtpm_ee_set(payload, ecn); 2309 mlxsw_reg_cwtpm_tcp_g_set(payload, profile); 2310 mlxsw_reg_cwtpm_tcp_y_set(payload, profile); 2311 mlxsw_reg_cwtpm_tcp_r_set(payload, profile); 2312 mlxsw_reg_cwtpm_ntcp_g_set(payload, profile); 2313 mlxsw_reg_cwtpm_ntcp_y_set(payload, profile); 2314 mlxsw_reg_cwtpm_ntcp_r_set(payload, profile); 2315 } 2316 2317 /* PGCR - Policy-Engine General Configuration Register 2318 * --------------------------------------------------- 2319 * This register configures general Policy-Engine settings. 2320 */ 2321 #define MLXSW_REG_PGCR_ID 0x3001 2322 #define MLXSW_REG_PGCR_LEN 0x20 2323 2324 MLXSW_REG_DEFINE(pgcr, MLXSW_REG_PGCR_ID, MLXSW_REG_PGCR_LEN); 2325 2326 /* reg_pgcr_default_action_pointer_base 2327 * Default action pointer base. Each region has a default action pointer 2328 * which is equal to default_action_pointer_base + region_id. 2329 * Access: RW 2330 */ 2331 MLXSW_ITEM32(reg, pgcr, default_action_pointer_base, 0x1C, 0, 24); 2332 2333 static inline void mlxsw_reg_pgcr_pack(char *payload, u32 pointer_base) 2334 { 2335 MLXSW_REG_ZERO(pgcr, payload); 2336 mlxsw_reg_pgcr_default_action_pointer_base_set(payload, pointer_base); 2337 } 2338 2339 /* PPBT - Policy-Engine Port Binding Table 2340 * --------------------------------------- 2341 * This register is used for configuration of the Port Binding Table. 2342 */ 2343 #define MLXSW_REG_PPBT_ID 0x3002 2344 #define MLXSW_REG_PPBT_LEN 0x14 2345 2346 MLXSW_REG_DEFINE(ppbt, MLXSW_REG_PPBT_ID, MLXSW_REG_PPBT_LEN); 2347 2348 enum mlxsw_reg_pxbt_e { 2349 MLXSW_REG_PXBT_E_IACL, 2350 MLXSW_REG_PXBT_E_EACL, 2351 }; 2352 2353 /* reg_ppbt_e 2354 * Access: Index 2355 */ 2356 MLXSW_ITEM32(reg, ppbt, e, 0x00, 31, 1); 2357 2358 enum mlxsw_reg_pxbt_op { 2359 MLXSW_REG_PXBT_OP_BIND, 2360 MLXSW_REG_PXBT_OP_UNBIND, 2361 }; 2362 2363 /* reg_ppbt_op 2364 * Access: RW 2365 */ 2366 MLXSW_ITEM32(reg, ppbt, op, 0x00, 28, 3); 2367 2368 /* reg_ppbt_local_port 2369 * Local port. Not including CPU port. 2370 * Access: Index 2371 */ 2372 MLXSW_ITEM32_LP(reg, ppbt, 0x00, 16, 0x00, 12); 2373 2374 /* reg_ppbt_g 2375 * group - When set, the binding is of an ACL group. When cleared, 2376 * the binding is of an ACL. 2377 * Must be set to 1 for Spectrum. 2378 * Access: RW 2379 */ 2380 MLXSW_ITEM32(reg, ppbt, g, 0x10, 31, 1); 2381 2382 /* reg_ppbt_acl_info 2383 * ACL/ACL group identifier. If the g bit is set, this field should hold 2384 * the acl_group_id, else it should hold the acl_id. 2385 * Access: RW 2386 */ 2387 MLXSW_ITEM32(reg, ppbt, acl_info, 0x10, 0, 16); 2388 2389 static inline void mlxsw_reg_ppbt_pack(char *payload, enum mlxsw_reg_pxbt_e e, 2390 enum mlxsw_reg_pxbt_op op, 2391 u16 local_port, u16 acl_info) 2392 { 2393 MLXSW_REG_ZERO(ppbt, payload); 2394 mlxsw_reg_ppbt_e_set(payload, e); 2395 mlxsw_reg_ppbt_op_set(payload, op); 2396 mlxsw_reg_ppbt_local_port_set(payload, local_port); 2397 mlxsw_reg_ppbt_g_set(payload, true); 2398 mlxsw_reg_ppbt_acl_info_set(payload, acl_info); 2399 } 2400 2401 /* PACL - Policy-Engine ACL Register 2402 * --------------------------------- 2403 * This register is used for configuration of the ACL. 2404 */ 2405 #define MLXSW_REG_PACL_ID 0x3004 2406 #define MLXSW_REG_PACL_LEN 0x70 2407 2408 MLXSW_REG_DEFINE(pacl, MLXSW_REG_PACL_ID, MLXSW_REG_PACL_LEN); 2409 2410 /* reg_pacl_v 2411 * Valid. Setting the v bit makes the ACL valid. It should not be cleared 2412 * while the ACL is bounded to either a port, VLAN or ACL rule. 2413 * Access: RW 2414 */ 2415 MLXSW_ITEM32(reg, pacl, v, 0x00, 24, 1); 2416 2417 /* reg_pacl_acl_id 2418 * An identifier representing the ACL (managed by software) 2419 * Range 0 .. cap_max_acl_regions - 1 2420 * Access: Index 2421 */ 2422 MLXSW_ITEM32(reg, pacl, acl_id, 0x08, 0, 16); 2423 2424 #define MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN 16 2425 2426 /* reg_pacl_tcam_region_info 2427 * Opaque object that represents a TCAM region. 2428 * Obtained through PTAR register. 2429 * Access: RW 2430 */ 2431 MLXSW_ITEM_BUF(reg, pacl, tcam_region_info, 0x30, 2432 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN); 2433 2434 static inline void mlxsw_reg_pacl_pack(char *payload, u16 acl_id, 2435 bool valid, const char *tcam_region_info) 2436 { 2437 MLXSW_REG_ZERO(pacl, payload); 2438 mlxsw_reg_pacl_acl_id_set(payload, acl_id); 2439 mlxsw_reg_pacl_v_set(payload, valid); 2440 mlxsw_reg_pacl_tcam_region_info_memcpy_to(payload, tcam_region_info); 2441 } 2442 2443 /* PAGT - Policy-Engine ACL Group Table 2444 * ------------------------------------ 2445 * This register is used for configuration of the ACL Group Table. 2446 */ 2447 #define MLXSW_REG_PAGT_ID 0x3005 2448 #define MLXSW_REG_PAGT_BASE_LEN 0x30 2449 #define MLXSW_REG_PAGT_ACL_LEN 4 2450 #define MLXSW_REG_PAGT_ACL_MAX_NUM 16 2451 #define MLXSW_REG_PAGT_LEN (MLXSW_REG_PAGT_BASE_LEN + \ 2452 MLXSW_REG_PAGT_ACL_MAX_NUM * MLXSW_REG_PAGT_ACL_LEN) 2453 2454 MLXSW_REG_DEFINE(pagt, MLXSW_REG_PAGT_ID, MLXSW_REG_PAGT_LEN); 2455 2456 /* reg_pagt_size 2457 * Number of ACLs in the group. 2458 * Size 0 invalidates a group. 2459 * Range 0 .. cap_max_acl_group_size (hard coded to 16 for now) 2460 * Total number of ACLs in all groups must be lower or equal 2461 * to cap_max_acl_tot_groups 2462 * Note: a group which is binded must not be invalidated 2463 * Access: Index 2464 */ 2465 MLXSW_ITEM32(reg, pagt, size, 0x00, 0, 8); 2466 2467 /* reg_pagt_acl_group_id 2468 * An identifier (numbered from 0..cap_max_acl_groups-1) representing 2469 * the ACL Group identifier (managed by software). 2470 * Access: Index 2471 */ 2472 MLXSW_ITEM32(reg, pagt, acl_group_id, 0x08, 0, 16); 2473 2474 /* reg_pagt_multi 2475 * Multi-ACL 2476 * 0 - This ACL is the last ACL in the multi-ACL 2477 * 1 - This ACL is part of a multi-ACL 2478 * Access: RW 2479 */ 2480 MLXSW_ITEM32_INDEXED(reg, pagt, multi, 0x30, 31, 1, 0x04, 0x00, false); 2481 2482 /* reg_pagt_acl_id 2483 * ACL identifier 2484 * Access: RW 2485 */ 2486 MLXSW_ITEM32_INDEXED(reg, pagt, acl_id, 0x30, 0, 16, 0x04, 0x00, false); 2487 2488 static inline void mlxsw_reg_pagt_pack(char *payload, u16 acl_group_id) 2489 { 2490 MLXSW_REG_ZERO(pagt, payload); 2491 mlxsw_reg_pagt_acl_group_id_set(payload, acl_group_id); 2492 } 2493 2494 static inline void mlxsw_reg_pagt_acl_id_pack(char *payload, int index, 2495 u16 acl_id, bool multi) 2496 { 2497 u8 size = mlxsw_reg_pagt_size_get(payload); 2498 2499 if (index >= size) 2500 mlxsw_reg_pagt_size_set(payload, index + 1); 2501 mlxsw_reg_pagt_multi_set(payload, index, multi); 2502 mlxsw_reg_pagt_acl_id_set(payload, index, acl_id); 2503 } 2504 2505 /* PTAR - Policy-Engine TCAM Allocation Register 2506 * --------------------------------------------- 2507 * This register is used for allocation of regions in the TCAM. 2508 * Note: Query method is not supported on this register. 2509 */ 2510 #define MLXSW_REG_PTAR_ID 0x3006 2511 #define MLXSW_REG_PTAR_BASE_LEN 0x20 2512 #define MLXSW_REG_PTAR_KEY_ID_LEN 1 2513 #define MLXSW_REG_PTAR_KEY_ID_MAX_NUM 16 2514 #define MLXSW_REG_PTAR_LEN (MLXSW_REG_PTAR_BASE_LEN + \ 2515 MLXSW_REG_PTAR_KEY_ID_MAX_NUM * MLXSW_REG_PTAR_KEY_ID_LEN) 2516 2517 MLXSW_REG_DEFINE(ptar, MLXSW_REG_PTAR_ID, MLXSW_REG_PTAR_LEN); 2518 2519 enum mlxsw_reg_ptar_op { 2520 /* allocate a TCAM region */ 2521 MLXSW_REG_PTAR_OP_ALLOC, 2522 /* resize a TCAM region */ 2523 MLXSW_REG_PTAR_OP_RESIZE, 2524 /* deallocate TCAM region */ 2525 MLXSW_REG_PTAR_OP_FREE, 2526 /* test allocation */ 2527 MLXSW_REG_PTAR_OP_TEST, 2528 }; 2529 2530 /* reg_ptar_op 2531 * Access: OP 2532 */ 2533 MLXSW_ITEM32(reg, ptar, op, 0x00, 28, 4); 2534 2535 /* reg_ptar_action_set_type 2536 * Type of action set to be used on this region. 2537 * For Spectrum and Spectrum-2, this is always type 2 - "flexible" 2538 * Access: WO 2539 */ 2540 MLXSW_ITEM32(reg, ptar, action_set_type, 0x00, 16, 8); 2541 2542 enum mlxsw_reg_ptar_key_type { 2543 MLXSW_REG_PTAR_KEY_TYPE_FLEX = 0x50, /* Spetrum */ 2544 MLXSW_REG_PTAR_KEY_TYPE_FLEX2 = 0x51, /* Spectrum-2 */ 2545 }; 2546 2547 /* reg_ptar_key_type 2548 * TCAM key type for the region. 2549 * Access: WO 2550 */ 2551 MLXSW_ITEM32(reg, ptar, key_type, 0x00, 0, 8); 2552 2553 /* reg_ptar_region_size 2554 * TCAM region size. When allocating/resizing this is the requested size, 2555 * the response is the actual size. Note that actual size may be 2556 * larger than requested. 2557 * Allowed range 1 .. cap_max_rules-1 2558 * Reserved during op deallocate. 2559 * Access: WO 2560 */ 2561 MLXSW_ITEM32(reg, ptar, region_size, 0x04, 0, 16); 2562 2563 /* reg_ptar_region_id 2564 * Region identifier 2565 * Range 0 .. cap_max_regions-1 2566 * Access: Index 2567 */ 2568 MLXSW_ITEM32(reg, ptar, region_id, 0x08, 0, 16); 2569 2570 /* reg_ptar_tcam_region_info 2571 * Opaque object that represents the TCAM region. 2572 * Returned when allocating a region. 2573 * Provided by software for ACL generation and region deallocation and resize. 2574 * Access: RW 2575 */ 2576 MLXSW_ITEM_BUF(reg, ptar, tcam_region_info, 0x10, 2577 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN); 2578 2579 /* reg_ptar_flexible_key_id 2580 * Identifier of the Flexible Key. 2581 * Only valid if key_type == "FLEX_KEY" 2582 * The key size will be rounded up to one of the following values: 2583 * 9B, 18B, 36B, 54B. 2584 * This field is reserved for in resize operation. 2585 * Access: WO 2586 */ 2587 MLXSW_ITEM8_INDEXED(reg, ptar, flexible_key_id, 0x20, 0, 8, 2588 MLXSW_REG_PTAR_KEY_ID_LEN, 0x00, false); 2589 2590 static inline void mlxsw_reg_ptar_pack(char *payload, enum mlxsw_reg_ptar_op op, 2591 enum mlxsw_reg_ptar_key_type key_type, 2592 u16 region_size, u16 region_id, 2593 const char *tcam_region_info) 2594 { 2595 MLXSW_REG_ZERO(ptar, payload); 2596 mlxsw_reg_ptar_op_set(payload, op); 2597 mlxsw_reg_ptar_action_set_type_set(payload, 2); /* "flexible" */ 2598 mlxsw_reg_ptar_key_type_set(payload, key_type); 2599 mlxsw_reg_ptar_region_size_set(payload, region_size); 2600 mlxsw_reg_ptar_region_id_set(payload, region_id); 2601 mlxsw_reg_ptar_tcam_region_info_memcpy_to(payload, tcam_region_info); 2602 } 2603 2604 static inline void mlxsw_reg_ptar_key_id_pack(char *payload, int index, 2605 u16 key_id) 2606 { 2607 mlxsw_reg_ptar_flexible_key_id_set(payload, index, key_id); 2608 } 2609 2610 static inline void mlxsw_reg_ptar_unpack(char *payload, char *tcam_region_info) 2611 { 2612 mlxsw_reg_ptar_tcam_region_info_memcpy_from(payload, tcam_region_info); 2613 } 2614 2615 /* PPBS - Policy-Engine Policy Based Switching Register 2616 * ---------------------------------------------------- 2617 * This register retrieves and sets Policy Based Switching Table entries. 2618 */ 2619 #define MLXSW_REG_PPBS_ID 0x300C 2620 #define MLXSW_REG_PPBS_LEN 0x14 2621 2622 MLXSW_REG_DEFINE(ppbs, MLXSW_REG_PPBS_ID, MLXSW_REG_PPBS_LEN); 2623 2624 /* reg_ppbs_pbs_ptr 2625 * Index into the PBS table. 2626 * For Spectrum, the index points to the KVD Linear. 2627 * Access: Index 2628 */ 2629 MLXSW_ITEM32(reg, ppbs, pbs_ptr, 0x08, 0, 24); 2630 2631 /* reg_ppbs_system_port 2632 * Unique port identifier for the final destination of the packet. 2633 * Access: RW 2634 */ 2635 MLXSW_ITEM32(reg, ppbs, system_port, 0x10, 0, 16); 2636 2637 static inline void mlxsw_reg_ppbs_pack(char *payload, u32 pbs_ptr, 2638 u16 system_port) 2639 { 2640 MLXSW_REG_ZERO(ppbs, payload); 2641 mlxsw_reg_ppbs_pbs_ptr_set(payload, pbs_ptr); 2642 mlxsw_reg_ppbs_system_port_set(payload, system_port); 2643 } 2644 2645 /* PRCR - Policy-Engine Rules Copy Register 2646 * ---------------------------------------- 2647 * This register is used for accessing rules within a TCAM region. 2648 */ 2649 #define MLXSW_REG_PRCR_ID 0x300D 2650 #define MLXSW_REG_PRCR_LEN 0x40 2651 2652 MLXSW_REG_DEFINE(prcr, MLXSW_REG_PRCR_ID, MLXSW_REG_PRCR_LEN); 2653 2654 enum mlxsw_reg_prcr_op { 2655 /* Move rules. Moves the rules from "tcam_region_info" starting 2656 * at offset "offset" to "dest_tcam_region_info" 2657 * at offset "dest_offset." 2658 */ 2659 MLXSW_REG_PRCR_OP_MOVE, 2660 /* Copy rules. Copies the rules from "tcam_region_info" starting 2661 * at offset "offset" to "dest_tcam_region_info" 2662 * at offset "dest_offset." 2663 */ 2664 MLXSW_REG_PRCR_OP_COPY, 2665 }; 2666 2667 /* reg_prcr_op 2668 * Access: OP 2669 */ 2670 MLXSW_ITEM32(reg, prcr, op, 0x00, 28, 4); 2671 2672 /* reg_prcr_offset 2673 * Offset within the source region to copy/move from. 2674 * Access: Index 2675 */ 2676 MLXSW_ITEM32(reg, prcr, offset, 0x00, 0, 16); 2677 2678 /* reg_prcr_size 2679 * The number of rules to copy/move. 2680 * Access: WO 2681 */ 2682 MLXSW_ITEM32(reg, prcr, size, 0x04, 0, 16); 2683 2684 /* reg_prcr_tcam_region_info 2685 * Opaque object that represents the source TCAM region. 2686 * Access: Index 2687 */ 2688 MLXSW_ITEM_BUF(reg, prcr, tcam_region_info, 0x10, 2689 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN); 2690 2691 /* reg_prcr_dest_offset 2692 * Offset within the source region to copy/move to. 2693 * Access: Index 2694 */ 2695 MLXSW_ITEM32(reg, prcr, dest_offset, 0x20, 0, 16); 2696 2697 /* reg_prcr_dest_tcam_region_info 2698 * Opaque object that represents the destination TCAM region. 2699 * Access: Index 2700 */ 2701 MLXSW_ITEM_BUF(reg, prcr, dest_tcam_region_info, 0x30, 2702 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN); 2703 2704 static inline void mlxsw_reg_prcr_pack(char *payload, enum mlxsw_reg_prcr_op op, 2705 const char *src_tcam_region_info, 2706 u16 src_offset, 2707 const char *dest_tcam_region_info, 2708 u16 dest_offset, u16 size) 2709 { 2710 MLXSW_REG_ZERO(prcr, payload); 2711 mlxsw_reg_prcr_op_set(payload, op); 2712 mlxsw_reg_prcr_offset_set(payload, src_offset); 2713 mlxsw_reg_prcr_size_set(payload, size); 2714 mlxsw_reg_prcr_tcam_region_info_memcpy_to(payload, 2715 src_tcam_region_info); 2716 mlxsw_reg_prcr_dest_offset_set(payload, dest_offset); 2717 mlxsw_reg_prcr_dest_tcam_region_info_memcpy_to(payload, 2718 dest_tcam_region_info); 2719 } 2720 2721 /* PEFA - Policy-Engine Extended Flexible Action Register 2722 * ------------------------------------------------------ 2723 * This register is used for accessing an extended flexible action entry 2724 * in the central KVD Linear Database. 2725 */ 2726 #define MLXSW_REG_PEFA_ID 0x300F 2727 #define MLXSW_REG_PEFA_LEN 0xB0 2728 2729 MLXSW_REG_DEFINE(pefa, MLXSW_REG_PEFA_ID, MLXSW_REG_PEFA_LEN); 2730 2731 /* reg_pefa_index 2732 * Index in the KVD Linear Centralized Database. 2733 * Access: Index 2734 */ 2735 MLXSW_ITEM32(reg, pefa, index, 0x00, 0, 24); 2736 2737 /* reg_pefa_a 2738 * Index in the KVD Linear Centralized Database. 2739 * Activity 2740 * For a new entry: set if ca=0, clear if ca=1 2741 * Set if a packet lookup has hit on the specific entry 2742 * Access: RO 2743 */ 2744 MLXSW_ITEM32(reg, pefa, a, 0x04, 29, 1); 2745 2746 /* reg_pefa_ca 2747 * Clear activity 2748 * When write: activity is according to this field 2749 * When read: after reading the activity is cleared according to ca 2750 * Access: OP 2751 */ 2752 MLXSW_ITEM32(reg, pefa, ca, 0x04, 24, 1); 2753 2754 #define MLXSW_REG_FLEX_ACTION_SET_LEN 0xA8 2755 2756 /* reg_pefa_flex_action_set 2757 * Action-set to perform when rule is matched. 2758 * Must be zero padded if action set is shorter. 2759 * Access: RW 2760 */ 2761 MLXSW_ITEM_BUF(reg, pefa, flex_action_set, 0x08, MLXSW_REG_FLEX_ACTION_SET_LEN); 2762 2763 static inline void mlxsw_reg_pefa_pack(char *payload, u32 index, bool ca, 2764 const char *flex_action_set) 2765 { 2766 MLXSW_REG_ZERO(pefa, payload); 2767 mlxsw_reg_pefa_index_set(payload, index); 2768 mlxsw_reg_pefa_ca_set(payload, ca); 2769 if (flex_action_set) 2770 mlxsw_reg_pefa_flex_action_set_memcpy_to(payload, 2771 flex_action_set); 2772 } 2773 2774 static inline void mlxsw_reg_pefa_unpack(char *payload, bool *p_a) 2775 { 2776 *p_a = mlxsw_reg_pefa_a_get(payload); 2777 } 2778 2779 /* PEMRBT - Policy-Engine Multicast Router Binding Table Register 2780 * -------------------------------------------------------------- 2781 * This register is used for binding Multicast router to an ACL group 2782 * that serves the MC router. 2783 * This register is not supported by SwitchX/-2 and Spectrum. 2784 */ 2785 #define MLXSW_REG_PEMRBT_ID 0x3014 2786 #define MLXSW_REG_PEMRBT_LEN 0x14 2787 2788 MLXSW_REG_DEFINE(pemrbt, MLXSW_REG_PEMRBT_ID, MLXSW_REG_PEMRBT_LEN); 2789 2790 enum mlxsw_reg_pemrbt_protocol { 2791 MLXSW_REG_PEMRBT_PROTO_IPV4, 2792 MLXSW_REG_PEMRBT_PROTO_IPV6, 2793 }; 2794 2795 /* reg_pemrbt_protocol 2796 * Access: Index 2797 */ 2798 MLXSW_ITEM32(reg, pemrbt, protocol, 0x00, 0, 1); 2799 2800 /* reg_pemrbt_group_id 2801 * ACL group identifier. 2802 * Range 0..cap_max_acl_groups-1 2803 * Access: RW 2804 */ 2805 MLXSW_ITEM32(reg, pemrbt, group_id, 0x10, 0, 16); 2806 2807 static inline void 2808 mlxsw_reg_pemrbt_pack(char *payload, enum mlxsw_reg_pemrbt_protocol protocol, 2809 u16 group_id) 2810 { 2811 MLXSW_REG_ZERO(pemrbt, payload); 2812 mlxsw_reg_pemrbt_protocol_set(payload, protocol); 2813 mlxsw_reg_pemrbt_group_id_set(payload, group_id); 2814 } 2815 2816 /* PTCE-V2 - Policy-Engine TCAM Entry Register Version 2 2817 * ----------------------------------------------------- 2818 * This register is used for accessing rules within a TCAM region. 2819 * It is a new version of PTCE in order to support wider key, 2820 * mask and action within a TCAM region. This register is not supported 2821 * by SwitchX and SwitchX-2. 2822 */ 2823 #define MLXSW_REG_PTCE2_ID 0x3017 2824 #define MLXSW_REG_PTCE2_LEN 0x1D8 2825 2826 MLXSW_REG_DEFINE(ptce2, MLXSW_REG_PTCE2_ID, MLXSW_REG_PTCE2_LEN); 2827 2828 /* reg_ptce2_v 2829 * Valid. 2830 * Access: RW 2831 */ 2832 MLXSW_ITEM32(reg, ptce2, v, 0x00, 31, 1); 2833 2834 /* reg_ptce2_a 2835 * Activity. Set if a packet lookup has hit on the specific entry. 2836 * To clear the "a" bit, use "clear activity" op or "clear on read" op. 2837 * Access: RO 2838 */ 2839 MLXSW_ITEM32(reg, ptce2, a, 0x00, 30, 1); 2840 2841 enum mlxsw_reg_ptce2_op { 2842 /* Read operation. */ 2843 MLXSW_REG_PTCE2_OP_QUERY_READ = 0, 2844 /* clear on read operation. Used to read entry 2845 * and clear Activity bit. 2846 */ 2847 MLXSW_REG_PTCE2_OP_QUERY_CLEAR_ON_READ = 1, 2848 /* Write operation. Used to write a new entry to the table. 2849 * All R/W fields are relevant for new entry. Activity bit is set 2850 * for new entries - Note write with v = 0 will delete the entry. 2851 */ 2852 MLXSW_REG_PTCE2_OP_WRITE_WRITE = 0, 2853 /* Update action. Only action set will be updated. */ 2854 MLXSW_REG_PTCE2_OP_WRITE_UPDATE = 1, 2855 /* Clear activity. A bit is cleared for the entry. */ 2856 MLXSW_REG_PTCE2_OP_WRITE_CLEAR_ACTIVITY = 2, 2857 }; 2858 2859 /* reg_ptce2_op 2860 * Access: OP 2861 */ 2862 MLXSW_ITEM32(reg, ptce2, op, 0x00, 20, 3); 2863 2864 /* reg_ptce2_offset 2865 * Access: Index 2866 */ 2867 MLXSW_ITEM32(reg, ptce2, offset, 0x00, 0, 16); 2868 2869 /* reg_ptce2_priority 2870 * Priority of the rule, higher values win. The range is 1..cap_kvd_size-1. 2871 * Note: priority does not have to be unique per rule. 2872 * Within a region, higher priority should have lower offset (no limitation 2873 * between regions in a multi-region). 2874 * Access: RW 2875 */ 2876 MLXSW_ITEM32(reg, ptce2, priority, 0x04, 0, 24); 2877 2878 /* reg_ptce2_tcam_region_info 2879 * Opaque object that represents the TCAM region. 2880 * Access: Index 2881 */ 2882 MLXSW_ITEM_BUF(reg, ptce2, tcam_region_info, 0x10, 2883 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN); 2884 2885 #define MLXSW_REG_PTCEX_FLEX_KEY_BLOCKS_LEN 96 2886 2887 /* reg_ptce2_flex_key_blocks 2888 * ACL Key. 2889 * Access: RW 2890 */ 2891 MLXSW_ITEM_BUF(reg, ptce2, flex_key_blocks, 0x20, 2892 MLXSW_REG_PTCEX_FLEX_KEY_BLOCKS_LEN); 2893 2894 /* reg_ptce2_mask 2895 * mask- in the same size as key. A bit that is set directs the TCAM 2896 * to compare the corresponding bit in key. A bit that is clear directs 2897 * the TCAM to ignore the corresponding bit in key. 2898 * Access: RW 2899 */ 2900 MLXSW_ITEM_BUF(reg, ptce2, mask, 0x80, 2901 MLXSW_REG_PTCEX_FLEX_KEY_BLOCKS_LEN); 2902 2903 /* reg_ptce2_flex_action_set 2904 * ACL action set. 2905 * Access: RW 2906 */ 2907 MLXSW_ITEM_BUF(reg, ptce2, flex_action_set, 0xE0, 2908 MLXSW_REG_FLEX_ACTION_SET_LEN); 2909 2910 static inline void mlxsw_reg_ptce2_pack(char *payload, bool valid, 2911 enum mlxsw_reg_ptce2_op op, 2912 const char *tcam_region_info, 2913 u16 offset, u32 priority) 2914 { 2915 MLXSW_REG_ZERO(ptce2, payload); 2916 mlxsw_reg_ptce2_v_set(payload, valid); 2917 mlxsw_reg_ptce2_op_set(payload, op); 2918 mlxsw_reg_ptce2_offset_set(payload, offset); 2919 mlxsw_reg_ptce2_priority_set(payload, priority); 2920 mlxsw_reg_ptce2_tcam_region_info_memcpy_to(payload, tcam_region_info); 2921 } 2922 2923 /* PERPT - Policy-Engine ERP Table Register 2924 * ---------------------------------------- 2925 * This register adds and removes eRPs from the eRP table. 2926 */ 2927 #define MLXSW_REG_PERPT_ID 0x3021 2928 #define MLXSW_REG_PERPT_LEN 0x80 2929 2930 MLXSW_REG_DEFINE(perpt, MLXSW_REG_PERPT_ID, MLXSW_REG_PERPT_LEN); 2931 2932 /* reg_perpt_erpt_bank 2933 * eRP table bank. 2934 * Range 0 .. cap_max_erp_table_banks - 1 2935 * Access: Index 2936 */ 2937 MLXSW_ITEM32(reg, perpt, erpt_bank, 0x00, 16, 4); 2938 2939 /* reg_perpt_erpt_index 2940 * Index to eRP table within the eRP bank. 2941 * Range is 0 .. cap_max_erp_table_bank_size - 1 2942 * Access: Index 2943 */ 2944 MLXSW_ITEM32(reg, perpt, erpt_index, 0x00, 0, 8); 2945 2946 enum mlxsw_reg_perpt_key_size { 2947 MLXSW_REG_PERPT_KEY_SIZE_2KB, 2948 MLXSW_REG_PERPT_KEY_SIZE_4KB, 2949 MLXSW_REG_PERPT_KEY_SIZE_8KB, 2950 MLXSW_REG_PERPT_KEY_SIZE_12KB, 2951 }; 2952 2953 /* reg_perpt_key_size 2954 * Access: OP 2955 */ 2956 MLXSW_ITEM32(reg, perpt, key_size, 0x04, 0, 4); 2957 2958 /* reg_perpt_bf_bypass 2959 * 0 - The eRP is used only if bloom filter state is set for the given 2960 * rule. 2961 * 1 - The eRP is used regardless of bloom filter state. 2962 * The bypass is an OR condition of region_id or eRP. See PERCR.bf_bypass 2963 * Access: RW 2964 */ 2965 MLXSW_ITEM32(reg, perpt, bf_bypass, 0x08, 8, 1); 2966 2967 /* reg_perpt_erp_id 2968 * eRP ID for use by the rules. 2969 * Access: RW 2970 */ 2971 MLXSW_ITEM32(reg, perpt, erp_id, 0x08, 0, 4); 2972 2973 /* reg_perpt_erpt_base_bank 2974 * Base eRP table bank, points to head of erp_vector 2975 * Range is 0 .. cap_max_erp_table_banks - 1 2976 * Access: OP 2977 */ 2978 MLXSW_ITEM32(reg, perpt, erpt_base_bank, 0x0C, 16, 4); 2979 2980 /* reg_perpt_erpt_base_index 2981 * Base index to eRP table within the eRP bank 2982 * Range is 0 .. cap_max_erp_table_bank_size - 1 2983 * Access: OP 2984 */ 2985 MLXSW_ITEM32(reg, perpt, erpt_base_index, 0x0C, 0, 8); 2986 2987 /* reg_perpt_erp_index_in_vector 2988 * eRP index in the vector. 2989 * Access: OP 2990 */ 2991 MLXSW_ITEM32(reg, perpt, erp_index_in_vector, 0x10, 0, 4); 2992 2993 /* reg_perpt_erp_vector 2994 * eRP vector. 2995 * Access: OP 2996 */ 2997 MLXSW_ITEM_BIT_ARRAY(reg, perpt, erp_vector, 0x14, 4, 1); 2998 2999 /* reg_perpt_mask 3000 * Mask 3001 * 0 - A-TCAM will ignore the bit in key 3002 * 1 - A-TCAM will compare the bit in key 3003 * Access: RW 3004 */ 3005 MLXSW_ITEM_BUF(reg, perpt, mask, 0x20, MLXSW_REG_PTCEX_FLEX_KEY_BLOCKS_LEN); 3006 3007 static inline void mlxsw_reg_perpt_erp_vector_pack(char *payload, 3008 unsigned long *erp_vector, 3009 unsigned long size) 3010 { 3011 unsigned long bit; 3012 3013 for_each_set_bit(bit, erp_vector, size) 3014 mlxsw_reg_perpt_erp_vector_set(payload, bit, true); 3015 } 3016 3017 static inline void 3018 mlxsw_reg_perpt_pack(char *payload, u8 erpt_bank, u8 erpt_index, 3019 enum mlxsw_reg_perpt_key_size key_size, u8 erp_id, 3020 u8 erpt_base_bank, u8 erpt_base_index, u8 erp_index, 3021 char *mask) 3022 { 3023 MLXSW_REG_ZERO(perpt, payload); 3024 mlxsw_reg_perpt_erpt_bank_set(payload, erpt_bank); 3025 mlxsw_reg_perpt_erpt_index_set(payload, erpt_index); 3026 mlxsw_reg_perpt_key_size_set(payload, key_size); 3027 mlxsw_reg_perpt_bf_bypass_set(payload, false); 3028 mlxsw_reg_perpt_erp_id_set(payload, erp_id); 3029 mlxsw_reg_perpt_erpt_base_bank_set(payload, erpt_base_bank); 3030 mlxsw_reg_perpt_erpt_base_index_set(payload, erpt_base_index); 3031 mlxsw_reg_perpt_erp_index_in_vector_set(payload, erp_index); 3032 mlxsw_reg_perpt_mask_memcpy_to(payload, mask); 3033 } 3034 3035 /* PERAR - Policy-Engine Region Association Register 3036 * ------------------------------------------------- 3037 * This register associates a hw region for region_id's. Changing on the fly 3038 * is supported by the device. 3039 */ 3040 #define MLXSW_REG_PERAR_ID 0x3026 3041 #define MLXSW_REG_PERAR_LEN 0x08 3042 3043 MLXSW_REG_DEFINE(perar, MLXSW_REG_PERAR_ID, MLXSW_REG_PERAR_LEN); 3044 3045 /* reg_perar_region_id 3046 * Region identifier 3047 * Range 0 .. cap_max_regions-1 3048 * Access: Index 3049 */ 3050 MLXSW_ITEM32(reg, perar, region_id, 0x00, 0, 16); 3051 3052 static inline unsigned int 3053 mlxsw_reg_perar_hw_regions_needed(unsigned int block_num) 3054 { 3055 return DIV_ROUND_UP(block_num, 4); 3056 } 3057 3058 /* reg_perar_hw_region 3059 * HW Region 3060 * Range 0 .. cap_max_regions-1 3061 * Default: hw_region = region_id 3062 * For a 8 key block region, 2 consecutive regions are used 3063 * For a 12 key block region, 3 consecutive regions are used 3064 * Access: RW 3065 */ 3066 MLXSW_ITEM32(reg, perar, hw_region, 0x04, 0, 16); 3067 3068 static inline void mlxsw_reg_perar_pack(char *payload, u16 region_id, 3069 u16 hw_region) 3070 { 3071 MLXSW_REG_ZERO(perar, payload); 3072 mlxsw_reg_perar_region_id_set(payload, region_id); 3073 mlxsw_reg_perar_hw_region_set(payload, hw_region); 3074 } 3075 3076 /* PTCE-V3 - Policy-Engine TCAM Entry Register Version 3 3077 * ----------------------------------------------------- 3078 * This register is a new version of PTCE-V2 in order to support the 3079 * A-TCAM. This register is not supported by SwitchX/-2 and Spectrum. 3080 */ 3081 #define MLXSW_REG_PTCE3_ID 0x3027 3082 #define MLXSW_REG_PTCE3_LEN 0xF0 3083 3084 MLXSW_REG_DEFINE(ptce3, MLXSW_REG_PTCE3_ID, MLXSW_REG_PTCE3_LEN); 3085 3086 /* reg_ptce3_v 3087 * Valid. 3088 * Access: RW 3089 */ 3090 MLXSW_ITEM32(reg, ptce3, v, 0x00, 31, 1); 3091 3092 enum mlxsw_reg_ptce3_op { 3093 /* Write operation. Used to write a new entry to the table. 3094 * All R/W fields are relevant for new entry. Activity bit is set 3095 * for new entries. Write with v = 0 will delete the entry. Must 3096 * not be used if an entry exists. 3097 */ 3098 MLXSW_REG_PTCE3_OP_WRITE_WRITE = 0, 3099 /* Update operation */ 3100 MLXSW_REG_PTCE3_OP_WRITE_UPDATE = 1, 3101 /* Read operation */ 3102 MLXSW_REG_PTCE3_OP_QUERY_READ = 0, 3103 }; 3104 3105 /* reg_ptce3_op 3106 * Access: OP 3107 */ 3108 MLXSW_ITEM32(reg, ptce3, op, 0x00, 20, 3); 3109 3110 /* reg_ptce3_priority 3111 * Priority of the rule. Higher values win. 3112 * For Spectrum-2 range is 1..cap_kvd_size - 1 3113 * Note: Priority does not have to be unique per rule. 3114 * Access: RW 3115 */ 3116 MLXSW_ITEM32(reg, ptce3, priority, 0x04, 0, 24); 3117 3118 /* reg_ptce3_tcam_region_info 3119 * Opaque object that represents the TCAM region. 3120 * Access: Index 3121 */ 3122 MLXSW_ITEM_BUF(reg, ptce3, tcam_region_info, 0x10, 3123 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN); 3124 3125 /* reg_ptce3_flex2_key_blocks 3126 * ACL key. The key must be masked according to eRP (if exists) or 3127 * according to master mask. 3128 * Access: Index 3129 */ 3130 MLXSW_ITEM_BUF(reg, ptce3, flex2_key_blocks, 0x20, 3131 MLXSW_REG_PTCEX_FLEX_KEY_BLOCKS_LEN); 3132 3133 /* reg_ptce3_erp_id 3134 * eRP ID. 3135 * Access: Index 3136 */ 3137 MLXSW_ITEM32(reg, ptce3, erp_id, 0x80, 0, 4); 3138 3139 /* reg_ptce3_delta_start 3140 * Start point of delta_value and delta_mask, in bits. Must not exceed 3141 * num_key_blocks * 36 - 8. Reserved when delta_mask = 0. 3142 * Access: Index 3143 */ 3144 MLXSW_ITEM32(reg, ptce3, delta_start, 0x84, 0, 10); 3145 3146 /* reg_ptce3_delta_mask 3147 * Delta mask. 3148 * 0 - Ignore relevant bit in delta_value 3149 * 1 - Compare relevant bit in delta_value 3150 * Delta mask must not be set for reserved fields in the key blocks. 3151 * Note: No delta when no eRPs. Thus, for regions with 3152 * PERERP.erpt_pointer_valid = 0 the delta mask must be 0. 3153 * Access: Index 3154 */ 3155 MLXSW_ITEM32(reg, ptce3, delta_mask, 0x88, 16, 8); 3156 3157 /* reg_ptce3_delta_value 3158 * Delta value. 3159 * Bits which are masked by delta_mask must be 0. 3160 * Access: Index 3161 */ 3162 MLXSW_ITEM32(reg, ptce3, delta_value, 0x88, 0, 8); 3163 3164 /* reg_ptce3_prune_vector 3165 * Pruning vector relative to the PERPT.erp_id. 3166 * Used for reducing lookups. 3167 * 0 - NEED: Do a lookup using the eRP. 3168 * 1 - PRUNE: Do not perform a lookup using the eRP. 3169 * Maybe be modified by PEAPBL and PEAPBM. 3170 * Note: In Spectrum-2, a region of 8 key blocks must be set to either 3171 * all 1's or all 0's. 3172 * Access: RW 3173 */ 3174 MLXSW_ITEM_BIT_ARRAY(reg, ptce3, prune_vector, 0x90, 4, 1); 3175 3176 /* reg_ptce3_prune_ctcam 3177 * Pruning on C-TCAM. Used for reducing lookups. 3178 * 0 - NEED: Do a lookup in the C-TCAM. 3179 * 1 - PRUNE: Do not perform a lookup in the C-TCAM. 3180 * Access: RW 3181 */ 3182 MLXSW_ITEM32(reg, ptce3, prune_ctcam, 0x94, 31, 1); 3183 3184 /* reg_ptce3_large_exists 3185 * Large entry key ID exists. 3186 * Within the region: 3187 * 0 - SINGLE: The large_entry_key_id is not currently in use. 3188 * For rule insert: The MSB of the key (blocks 6..11) will be added. 3189 * For rule delete: The MSB of the key will be removed. 3190 * 1 - NON_SINGLE: The large_entry_key_id is currently in use. 3191 * For rule insert: The MSB of the key (blocks 6..11) will not be added. 3192 * For rule delete: The MSB of the key will not be removed. 3193 * Access: WO 3194 */ 3195 MLXSW_ITEM32(reg, ptce3, large_exists, 0x98, 31, 1); 3196 3197 /* reg_ptce3_large_entry_key_id 3198 * Large entry key ID. 3199 * A key for 12 key blocks rules. Reserved when region has less than 12 key 3200 * blocks. Must be different for different keys which have the same common 3201 * 6 key blocks (MSB, blocks 6..11) key within a region. 3202 * Range is 0..cap_max_pe_large_key_id - 1 3203 * Access: RW 3204 */ 3205 MLXSW_ITEM32(reg, ptce3, large_entry_key_id, 0x98, 0, 24); 3206 3207 /* reg_ptce3_action_pointer 3208 * Pointer to action. 3209 * Range is 0..cap_max_kvd_action_sets - 1 3210 * Access: RW 3211 */ 3212 MLXSW_ITEM32(reg, ptce3, action_pointer, 0xA0, 0, 24); 3213 3214 static inline void mlxsw_reg_ptce3_pack(char *payload, bool valid, 3215 enum mlxsw_reg_ptce3_op op, 3216 u32 priority, 3217 const char *tcam_region_info, 3218 const char *key, u8 erp_id, 3219 u16 delta_start, u8 delta_mask, 3220 u8 delta_value, bool large_exists, 3221 u32 lkey_id, u32 action_pointer) 3222 { 3223 MLXSW_REG_ZERO(ptce3, payload); 3224 mlxsw_reg_ptce3_v_set(payload, valid); 3225 mlxsw_reg_ptce3_op_set(payload, op); 3226 mlxsw_reg_ptce3_priority_set(payload, priority); 3227 mlxsw_reg_ptce3_tcam_region_info_memcpy_to(payload, tcam_region_info); 3228 mlxsw_reg_ptce3_flex2_key_blocks_memcpy_to(payload, key); 3229 mlxsw_reg_ptce3_erp_id_set(payload, erp_id); 3230 mlxsw_reg_ptce3_delta_start_set(payload, delta_start); 3231 mlxsw_reg_ptce3_delta_mask_set(payload, delta_mask); 3232 mlxsw_reg_ptce3_delta_value_set(payload, delta_value); 3233 mlxsw_reg_ptce3_large_exists_set(payload, large_exists); 3234 mlxsw_reg_ptce3_large_entry_key_id_set(payload, lkey_id); 3235 mlxsw_reg_ptce3_action_pointer_set(payload, action_pointer); 3236 } 3237 3238 /* PERCR - Policy-Engine Region Configuration Register 3239 * --------------------------------------------------- 3240 * This register configures the region parameters. The region_id must be 3241 * allocated. 3242 */ 3243 #define MLXSW_REG_PERCR_ID 0x302A 3244 #define MLXSW_REG_PERCR_LEN 0x80 3245 3246 MLXSW_REG_DEFINE(percr, MLXSW_REG_PERCR_ID, MLXSW_REG_PERCR_LEN); 3247 3248 /* reg_percr_region_id 3249 * Region identifier. 3250 * Range 0..cap_max_regions-1 3251 * Access: Index 3252 */ 3253 MLXSW_ITEM32(reg, percr, region_id, 0x00, 0, 16); 3254 3255 /* reg_percr_atcam_ignore_prune 3256 * Ignore prune_vector by other A-TCAM rules. Used e.g., for a new rule. 3257 * Access: RW 3258 */ 3259 MLXSW_ITEM32(reg, percr, atcam_ignore_prune, 0x04, 25, 1); 3260 3261 /* reg_percr_ctcam_ignore_prune 3262 * Ignore prune_ctcam by other A-TCAM rules. Used e.g., for a new rule. 3263 * Access: RW 3264 */ 3265 MLXSW_ITEM32(reg, percr, ctcam_ignore_prune, 0x04, 24, 1); 3266 3267 /* reg_percr_bf_bypass 3268 * Bloom filter bypass. 3269 * 0 - Bloom filter is used (default) 3270 * 1 - Bloom filter is bypassed. The bypass is an OR condition of 3271 * region_id or eRP. See PERPT.bf_bypass 3272 * Access: RW 3273 */ 3274 MLXSW_ITEM32(reg, percr, bf_bypass, 0x04, 16, 1); 3275 3276 /* reg_percr_master_mask 3277 * Master mask. Logical OR mask of all masks of all rules of a region 3278 * (both A-TCAM and C-TCAM). When there are no eRPs 3279 * (erpt_pointer_valid = 0), then this provides the mask. 3280 * Access: RW 3281 */ 3282 MLXSW_ITEM_BUF(reg, percr, master_mask, 0x20, 96); 3283 3284 static inline void mlxsw_reg_percr_pack(char *payload, u16 region_id) 3285 { 3286 MLXSW_REG_ZERO(percr, payload); 3287 mlxsw_reg_percr_region_id_set(payload, region_id); 3288 mlxsw_reg_percr_atcam_ignore_prune_set(payload, false); 3289 mlxsw_reg_percr_ctcam_ignore_prune_set(payload, false); 3290 mlxsw_reg_percr_bf_bypass_set(payload, false); 3291 } 3292 3293 /* PERERP - Policy-Engine Region eRP Register 3294 * ------------------------------------------ 3295 * This register configures the region eRP. The region_id must be 3296 * allocated. 3297 */ 3298 #define MLXSW_REG_PERERP_ID 0x302B 3299 #define MLXSW_REG_PERERP_LEN 0x1C 3300 3301 MLXSW_REG_DEFINE(pererp, MLXSW_REG_PERERP_ID, MLXSW_REG_PERERP_LEN); 3302 3303 /* reg_pererp_region_id 3304 * Region identifier. 3305 * Range 0..cap_max_regions-1 3306 * Access: Index 3307 */ 3308 MLXSW_ITEM32(reg, pererp, region_id, 0x00, 0, 16); 3309 3310 /* reg_pererp_ctcam_le 3311 * C-TCAM lookup enable. Reserved when erpt_pointer_valid = 0. 3312 * Access: RW 3313 */ 3314 MLXSW_ITEM32(reg, pererp, ctcam_le, 0x04, 28, 1); 3315 3316 /* reg_pererp_erpt_pointer_valid 3317 * erpt_pointer is valid. 3318 * Access: RW 3319 */ 3320 MLXSW_ITEM32(reg, pererp, erpt_pointer_valid, 0x10, 31, 1); 3321 3322 /* reg_pererp_erpt_bank_pointer 3323 * Pointer to eRP table bank. May be modified at any time. 3324 * Range 0..cap_max_erp_table_banks-1 3325 * Reserved when erpt_pointer_valid = 0 3326 */ 3327 MLXSW_ITEM32(reg, pererp, erpt_bank_pointer, 0x10, 16, 4); 3328 3329 /* reg_pererp_erpt_pointer 3330 * Pointer to eRP table within the eRP bank. Can be changed for an 3331 * existing region. 3332 * Range 0..cap_max_erp_table_size-1 3333 * Reserved when erpt_pointer_valid = 0 3334 * Access: RW 3335 */ 3336 MLXSW_ITEM32(reg, pererp, erpt_pointer, 0x10, 0, 8); 3337 3338 /* reg_pererp_erpt_vector 3339 * Vector of allowed eRP indexes starting from erpt_pointer within the 3340 * erpt_bank_pointer. Next entries will be in next bank. 3341 * Note that eRP index is used and not eRP ID. 3342 * Reserved when erpt_pointer_valid = 0 3343 * Access: RW 3344 */ 3345 MLXSW_ITEM_BIT_ARRAY(reg, pererp, erpt_vector, 0x14, 4, 1); 3346 3347 /* reg_pererp_master_rp_id 3348 * Master RP ID. When there are no eRPs, then this provides the eRP ID 3349 * for the lookup. Can be changed for an existing region. 3350 * Reserved when erpt_pointer_valid = 1 3351 * Access: RW 3352 */ 3353 MLXSW_ITEM32(reg, pererp, master_rp_id, 0x18, 0, 4); 3354 3355 static inline void mlxsw_reg_pererp_erp_vector_pack(char *payload, 3356 unsigned long *erp_vector, 3357 unsigned long size) 3358 { 3359 unsigned long bit; 3360 3361 for_each_set_bit(bit, erp_vector, size) 3362 mlxsw_reg_pererp_erpt_vector_set(payload, bit, true); 3363 } 3364 3365 static inline void mlxsw_reg_pererp_pack(char *payload, u16 region_id, 3366 bool ctcam_le, bool erpt_pointer_valid, 3367 u8 erpt_bank_pointer, u8 erpt_pointer, 3368 u8 master_rp_id) 3369 { 3370 MLXSW_REG_ZERO(pererp, payload); 3371 mlxsw_reg_pererp_region_id_set(payload, region_id); 3372 mlxsw_reg_pererp_ctcam_le_set(payload, ctcam_le); 3373 mlxsw_reg_pererp_erpt_pointer_valid_set(payload, erpt_pointer_valid); 3374 mlxsw_reg_pererp_erpt_bank_pointer_set(payload, erpt_bank_pointer); 3375 mlxsw_reg_pererp_erpt_pointer_set(payload, erpt_pointer); 3376 mlxsw_reg_pererp_master_rp_id_set(payload, master_rp_id); 3377 } 3378 3379 /* PEABFE - Policy-Engine Algorithmic Bloom Filter Entries Register 3380 * ---------------------------------------------------------------- 3381 * This register configures the Bloom filter entries. 3382 */ 3383 #define MLXSW_REG_PEABFE_ID 0x3022 3384 #define MLXSW_REG_PEABFE_BASE_LEN 0x10 3385 #define MLXSW_REG_PEABFE_BF_REC_LEN 0x4 3386 #define MLXSW_REG_PEABFE_BF_REC_MAX_COUNT 256 3387 #define MLXSW_REG_PEABFE_LEN (MLXSW_REG_PEABFE_BASE_LEN + \ 3388 MLXSW_REG_PEABFE_BF_REC_LEN * \ 3389 MLXSW_REG_PEABFE_BF_REC_MAX_COUNT) 3390 3391 MLXSW_REG_DEFINE(peabfe, MLXSW_REG_PEABFE_ID, MLXSW_REG_PEABFE_LEN); 3392 3393 /* reg_peabfe_size 3394 * Number of BF entries to be updated. 3395 * Range 1..256 3396 * Access: Op 3397 */ 3398 MLXSW_ITEM32(reg, peabfe, size, 0x00, 0, 9); 3399 3400 /* reg_peabfe_bf_entry_state 3401 * Bloom filter state 3402 * 0 - Clear 3403 * 1 - Set 3404 * Access: RW 3405 */ 3406 MLXSW_ITEM32_INDEXED(reg, peabfe, bf_entry_state, 3407 MLXSW_REG_PEABFE_BASE_LEN, 31, 1, 3408 MLXSW_REG_PEABFE_BF_REC_LEN, 0x00, false); 3409 3410 /* reg_peabfe_bf_entry_bank 3411 * Bloom filter bank ID 3412 * Range 0..cap_max_erp_table_banks-1 3413 * Access: Index 3414 */ 3415 MLXSW_ITEM32_INDEXED(reg, peabfe, bf_entry_bank, 3416 MLXSW_REG_PEABFE_BASE_LEN, 24, 4, 3417 MLXSW_REG_PEABFE_BF_REC_LEN, 0x00, false); 3418 3419 /* reg_peabfe_bf_entry_index 3420 * Bloom filter entry index 3421 * Range 0..2^cap_max_bf_log-1 3422 * Access: Index 3423 */ 3424 MLXSW_ITEM32_INDEXED(reg, peabfe, bf_entry_index, 3425 MLXSW_REG_PEABFE_BASE_LEN, 0, 24, 3426 MLXSW_REG_PEABFE_BF_REC_LEN, 0x00, false); 3427 3428 static inline void mlxsw_reg_peabfe_pack(char *payload) 3429 { 3430 MLXSW_REG_ZERO(peabfe, payload); 3431 } 3432 3433 static inline void mlxsw_reg_peabfe_rec_pack(char *payload, int rec_index, 3434 u8 state, u8 bank, u32 bf_index) 3435 { 3436 u8 num_rec = mlxsw_reg_peabfe_size_get(payload); 3437 3438 if (rec_index >= num_rec) 3439 mlxsw_reg_peabfe_size_set(payload, rec_index + 1); 3440 mlxsw_reg_peabfe_bf_entry_state_set(payload, rec_index, state); 3441 mlxsw_reg_peabfe_bf_entry_bank_set(payload, rec_index, bank); 3442 mlxsw_reg_peabfe_bf_entry_index_set(payload, rec_index, bf_index); 3443 } 3444 3445 /* IEDR - Infrastructure Entry Delete Register 3446 * ---------------------------------------------------- 3447 * This register is used for deleting entries from the entry tables. 3448 * It is legitimate to attempt to delete a nonexisting entry (the device will 3449 * respond as a good flow). 3450 */ 3451 #define MLXSW_REG_IEDR_ID 0x3804 3452 #define MLXSW_REG_IEDR_BASE_LEN 0x10 /* base length, without records */ 3453 #define MLXSW_REG_IEDR_REC_LEN 0x8 /* record length */ 3454 #define MLXSW_REG_IEDR_REC_MAX_COUNT 64 3455 #define MLXSW_REG_IEDR_LEN (MLXSW_REG_IEDR_BASE_LEN + \ 3456 MLXSW_REG_IEDR_REC_LEN * \ 3457 MLXSW_REG_IEDR_REC_MAX_COUNT) 3458 3459 MLXSW_REG_DEFINE(iedr, MLXSW_REG_IEDR_ID, MLXSW_REG_IEDR_LEN); 3460 3461 /* reg_iedr_num_rec 3462 * Number of records. 3463 * Access: OP 3464 */ 3465 MLXSW_ITEM32(reg, iedr, num_rec, 0x00, 0, 8); 3466 3467 /* reg_iedr_rec_type 3468 * Resource type. 3469 * Access: OP 3470 */ 3471 MLXSW_ITEM32_INDEXED(reg, iedr, rec_type, MLXSW_REG_IEDR_BASE_LEN, 24, 8, 3472 MLXSW_REG_IEDR_REC_LEN, 0x00, false); 3473 3474 /* reg_iedr_rec_size 3475 * Size of entries do be deleted. The unit is 1 entry, regardless of entry type. 3476 * Access: OP 3477 */ 3478 MLXSW_ITEM32_INDEXED(reg, iedr, rec_size, MLXSW_REG_IEDR_BASE_LEN, 0, 13, 3479 MLXSW_REG_IEDR_REC_LEN, 0x00, false); 3480 3481 /* reg_iedr_rec_index_start 3482 * Resource index start. 3483 * Access: OP 3484 */ 3485 MLXSW_ITEM32_INDEXED(reg, iedr, rec_index_start, MLXSW_REG_IEDR_BASE_LEN, 0, 24, 3486 MLXSW_REG_IEDR_REC_LEN, 0x04, false); 3487 3488 static inline void mlxsw_reg_iedr_pack(char *payload) 3489 { 3490 MLXSW_REG_ZERO(iedr, payload); 3491 } 3492 3493 static inline void mlxsw_reg_iedr_rec_pack(char *payload, int rec_index, 3494 u8 rec_type, u16 rec_size, 3495 u32 rec_index_start) 3496 { 3497 u8 num_rec = mlxsw_reg_iedr_num_rec_get(payload); 3498 3499 if (rec_index >= num_rec) 3500 mlxsw_reg_iedr_num_rec_set(payload, rec_index + 1); 3501 mlxsw_reg_iedr_rec_type_set(payload, rec_index, rec_type); 3502 mlxsw_reg_iedr_rec_size_set(payload, rec_index, rec_size); 3503 mlxsw_reg_iedr_rec_index_start_set(payload, rec_index, rec_index_start); 3504 } 3505 3506 /* QPTS - QoS Priority Trust State Register 3507 * ---------------------------------------- 3508 * This register controls the port policy to calculate the switch priority and 3509 * packet color based on incoming packet fields. 3510 */ 3511 #define MLXSW_REG_QPTS_ID 0x4002 3512 #define MLXSW_REG_QPTS_LEN 0x8 3513 3514 MLXSW_REG_DEFINE(qpts, MLXSW_REG_QPTS_ID, MLXSW_REG_QPTS_LEN); 3515 3516 /* reg_qpts_local_port 3517 * Local port number. 3518 * Access: Index 3519 * 3520 * Note: CPU port is supported. 3521 */ 3522 MLXSW_ITEM32_LP(reg, qpts, 0x00, 16, 0x00, 12); 3523 3524 enum mlxsw_reg_qpts_trust_state { 3525 MLXSW_REG_QPTS_TRUST_STATE_PCP = 1, 3526 MLXSW_REG_QPTS_TRUST_STATE_DSCP = 2, /* For MPLS, trust EXP. */ 3527 }; 3528 3529 /* reg_qpts_trust_state 3530 * Trust state for a given port. 3531 * Access: RW 3532 */ 3533 MLXSW_ITEM32(reg, qpts, trust_state, 0x04, 0, 3); 3534 3535 static inline void mlxsw_reg_qpts_pack(char *payload, u16 local_port, 3536 enum mlxsw_reg_qpts_trust_state ts) 3537 { 3538 MLXSW_REG_ZERO(qpts, payload); 3539 3540 mlxsw_reg_qpts_local_port_set(payload, local_port); 3541 mlxsw_reg_qpts_trust_state_set(payload, ts); 3542 } 3543 3544 /* QPCR - QoS Policer Configuration Register 3545 * ----------------------------------------- 3546 * The QPCR register is used to create policers - that limit 3547 * the rate of bytes or packets via some trap group. 3548 */ 3549 #define MLXSW_REG_QPCR_ID 0x4004 3550 #define MLXSW_REG_QPCR_LEN 0x28 3551 3552 MLXSW_REG_DEFINE(qpcr, MLXSW_REG_QPCR_ID, MLXSW_REG_QPCR_LEN); 3553 3554 enum mlxsw_reg_qpcr_g { 3555 MLXSW_REG_QPCR_G_GLOBAL = 2, 3556 MLXSW_REG_QPCR_G_STORM_CONTROL = 3, 3557 }; 3558 3559 /* reg_qpcr_g 3560 * The policer type. 3561 * Access: Index 3562 */ 3563 MLXSW_ITEM32(reg, qpcr, g, 0x00, 14, 2); 3564 3565 /* reg_qpcr_pid 3566 * Policer ID. 3567 * Access: Index 3568 */ 3569 MLXSW_ITEM32(reg, qpcr, pid, 0x00, 0, 14); 3570 3571 /* reg_qpcr_clear_counter 3572 * Clear counters. 3573 * Access: OP 3574 */ 3575 MLXSW_ITEM32(reg, qpcr, clear_counter, 0x04, 31, 1); 3576 3577 /* reg_qpcr_color_aware 3578 * Is the policer aware of colors. 3579 * Must be 0 (unaware) for cpu port. 3580 * Access: RW for unbounded policer. RO for bounded policer. 3581 */ 3582 MLXSW_ITEM32(reg, qpcr, color_aware, 0x04, 15, 1); 3583 3584 /* reg_qpcr_bytes 3585 * Is policer limit is for bytes per sec or packets per sec. 3586 * 0 - packets 3587 * 1 - bytes 3588 * Access: RW for unbounded policer. RO for bounded policer. 3589 */ 3590 MLXSW_ITEM32(reg, qpcr, bytes, 0x04, 14, 1); 3591 3592 enum mlxsw_reg_qpcr_ir_units { 3593 MLXSW_REG_QPCR_IR_UNITS_M, 3594 MLXSW_REG_QPCR_IR_UNITS_K, 3595 }; 3596 3597 /* reg_qpcr_ir_units 3598 * Policer's units for cir and eir fields (for bytes limits only) 3599 * 1 - 10^3 3600 * 0 - 10^6 3601 * Access: OP 3602 */ 3603 MLXSW_ITEM32(reg, qpcr, ir_units, 0x04, 12, 1); 3604 3605 enum mlxsw_reg_qpcr_rate_type { 3606 MLXSW_REG_QPCR_RATE_TYPE_SINGLE = 1, 3607 MLXSW_REG_QPCR_RATE_TYPE_DOUBLE = 2, 3608 }; 3609 3610 /* reg_qpcr_rate_type 3611 * Policer can have one limit (single rate) or 2 limits with specific operation 3612 * for packets that exceed the lower rate but not the upper one. 3613 * (For cpu port must be single rate) 3614 * Access: RW for unbounded policer. RO for bounded policer. 3615 */ 3616 MLXSW_ITEM32(reg, qpcr, rate_type, 0x04, 8, 2); 3617 3618 /* reg_qpc_cbs 3619 * Policer's committed burst size. 3620 * The policer is working with time slices of 50 nano sec. By default every 3621 * slice is granted the proportionate share of the committed rate. If we want to 3622 * allow a slice to exceed that share (while still keeping the rate per sec) we 3623 * can allow burst. The burst size is between the default proportionate share 3624 * (and no lower than 8) to 32Gb. (Even though giving a number higher than the 3625 * committed rate will result in exceeding the rate). The burst size must be a 3626 * log of 2 and will be determined by 2^cbs. 3627 * Access: RW 3628 */ 3629 MLXSW_ITEM32(reg, qpcr, cbs, 0x08, 24, 6); 3630 3631 /* reg_qpcr_cir 3632 * Policer's committed rate. 3633 * The rate used for sungle rate, the lower rate for double rate. 3634 * For bytes limits, the rate will be this value * the unit from ir_units. 3635 * (Resolution error is up to 1%). 3636 * Access: RW 3637 */ 3638 MLXSW_ITEM32(reg, qpcr, cir, 0x0C, 0, 32); 3639 3640 /* reg_qpcr_eir 3641 * Policer's exceed rate. 3642 * The higher rate for double rate, reserved for single rate. 3643 * Lower rate for double rate policer. 3644 * For bytes limits, the rate will be this value * the unit from ir_units. 3645 * (Resolution error is up to 1%). 3646 * Access: RW 3647 */ 3648 MLXSW_ITEM32(reg, qpcr, eir, 0x10, 0, 32); 3649 3650 #define MLXSW_REG_QPCR_DOUBLE_RATE_ACTION 2 3651 3652 /* reg_qpcr_exceed_action. 3653 * What to do with packets between the 2 limits for double rate. 3654 * Access: RW for unbounded policer. RO for bounded policer. 3655 */ 3656 MLXSW_ITEM32(reg, qpcr, exceed_action, 0x14, 0, 4); 3657 3658 enum mlxsw_reg_qpcr_action { 3659 /* Discard */ 3660 MLXSW_REG_QPCR_ACTION_DISCARD = 1, 3661 /* Forward and set color to red. 3662 * If the packet is intended to cpu port, it will be dropped. 3663 */ 3664 MLXSW_REG_QPCR_ACTION_FORWARD = 2, 3665 }; 3666 3667 /* reg_qpcr_violate_action 3668 * What to do with packets that cross the cir limit (for single rate) or the eir 3669 * limit (for double rate). 3670 * Access: RW for unbounded policer. RO for bounded policer. 3671 */ 3672 MLXSW_ITEM32(reg, qpcr, violate_action, 0x18, 0, 4); 3673 3674 /* reg_qpcr_violate_count 3675 * Counts the number of times violate_action happened on this PID. 3676 * Access: RW 3677 */ 3678 MLXSW_ITEM64(reg, qpcr, violate_count, 0x20, 0, 64); 3679 3680 /* Packets */ 3681 #define MLXSW_REG_QPCR_LOWEST_CIR 1 3682 #define MLXSW_REG_QPCR_HIGHEST_CIR (2 * 1000 * 1000 * 1000) /* 2Gpps */ 3683 #define MLXSW_REG_QPCR_LOWEST_CBS 4 3684 #define MLXSW_REG_QPCR_HIGHEST_CBS 24 3685 3686 /* Bandwidth */ 3687 #define MLXSW_REG_QPCR_LOWEST_CIR_BITS 1024 /* bps */ 3688 #define MLXSW_REG_QPCR_HIGHEST_CIR_BITS 2000000000000ULL /* 2Tbps */ 3689 #define MLXSW_REG_QPCR_LOWEST_CBS_BITS_SP1 4 3690 #define MLXSW_REG_QPCR_LOWEST_CBS_BITS_SP2 4 3691 #define MLXSW_REG_QPCR_HIGHEST_CBS_BITS_SP1 25 3692 #define MLXSW_REG_QPCR_HIGHEST_CBS_BITS_SP2 31 3693 3694 static inline void mlxsw_reg_qpcr_pack(char *payload, u16 pid, 3695 enum mlxsw_reg_qpcr_ir_units ir_units, 3696 bool bytes, u32 cir, u16 cbs) 3697 { 3698 MLXSW_REG_ZERO(qpcr, payload); 3699 mlxsw_reg_qpcr_pid_set(payload, pid); 3700 mlxsw_reg_qpcr_g_set(payload, MLXSW_REG_QPCR_G_GLOBAL); 3701 mlxsw_reg_qpcr_rate_type_set(payload, MLXSW_REG_QPCR_RATE_TYPE_SINGLE); 3702 mlxsw_reg_qpcr_violate_action_set(payload, 3703 MLXSW_REG_QPCR_ACTION_DISCARD); 3704 mlxsw_reg_qpcr_cir_set(payload, cir); 3705 mlxsw_reg_qpcr_ir_units_set(payload, ir_units); 3706 mlxsw_reg_qpcr_bytes_set(payload, bytes); 3707 mlxsw_reg_qpcr_cbs_set(payload, cbs); 3708 } 3709 3710 /* QTCT - QoS Switch Traffic Class Table 3711 * ------------------------------------- 3712 * Configures the mapping between the packet switch priority and the 3713 * traffic class on the transmit port. 3714 */ 3715 #define MLXSW_REG_QTCT_ID 0x400A 3716 #define MLXSW_REG_QTCT_LEN 0x08 3717 3718 MLXSW_REG_DEFINE(qtct, MLXSW_REG_QTCT_ID, MLXSW_REG_QTCT_LEN); 3719 3720 /* reg_qtct_local_port 3721 * Local port number. 3722 * Access: Index 3723 * 3724 * Note: CPU port is not supported. 3725 */ 3726 MLXSW_ITEM32_LP(reg, qtct, 0x00, 16, 0x00, 12); 3727 3728 /* reg_qtct_sub_port 3729 * Virtual port within the physical port. 3730 * Should be set to 0 when virtual ports are not enabled on the port. 3731 * Access: Index 3732 */ 3733 MLXSW_ITEM32(reg, qtct, sub_port, 0x00, 8, 8); 3734 3735 /* reg_qtct_switch_prio 3736 * Switch priority. 3737 * Access: Index 3738 */ 3739 MLXSW_ITEM32(reg, qtct, switch_prio, 0x00, 0, 4); 3740 3741 /* reg_qtct_tclass 3742 * Traffic class. 3743 * Default values: 3744 * switch_prio 0 : tclass 1 3745 * switch_prio 1 : tclass 0 3746 * switch_prio i : tclass i, for i > 1 3747 * Access: RW 3748 */ 3749 MLXSW_ITEM32(reg, qtct, tclass, 0x04, 0, 4); 3750 3751 static inline void mlxsw_reg_qtct_pack(char *payload, u16 local_port, 3752 u8 switch_prio, u8 tclass) 3753 { 3754 MLXSW_REG_ZERO(qtct, payload); 3755 mlxsw_reg_qtct_local_port_set(payload, local_port); 3756 mlxsw_reg_qtct_switch_prio_set(payload, switch_prio); 3757 mlxsw_reg_qtct_tclass_set(payload, tclass); 3758 } 3759 3760 /* QEEC - QoS ETS Element Configuration Register 3761 * --------------------------------------------- 3762 * Configures the ETS elements. 3763 */ 3764 #define MLXSW_REG_QEEC_ID 0x400D 3765 #define MLXSW_REG_QEEC_LEN 0x20 3766 3767 MLXSW_REG_DEFINE(qeec, MLXSW_REG_QEEC_ID, MLXSW_REG_QEEC_LEN); 3768 3769 /* reg_qeec_local_port 3770 * Local port number. 3771 * Access: Index 3772 * 3773 * Note: CPU port is supported. 3774 */ 3775 MLXSW_ITEM32_LP(reg, qeec, 0x00, 16, 0x00, 12); 3776 3777 enum mlxsw_reg_qeec_hr { 3778 MLXSW_REG_QEEC_HR_PORT, 3779 MLXSW_REG_QEEC_HR_GROUP, 3780 MLXSW_REG_QEEC_HR_SUBGROUP, 3781 MLXSW_REG_QEEC_HR_TC, 3782 }; 3783 3784 /* reg_qeec_element_hierarchy 3785 * 0 - Port 3786 * 1 - Group 3787 * 2 - Subgroup 3788 * 3 - Traffic Class 3789 * Access: Index 3790 */ 3791 MLXSW_ITEM32(reg, qeec, element_hierarchy, 0x04, 16, 4); 3792 3793 /* reg_qeec_element_index 3794 * The index of the element in the hierarchy. 3795 * Access: Index 3796 */ 3797 MLXSW_ITEM32(reg, qeec, element_index, 0x04, 0, 8); 3798 3799 /* reg_qeec_next_element_index 3800 * The index of the next (lower) element in the hierarchy. 3801 * Access: RW 3802 * 3803 * Note: Reserved for element_hierarchy 0. 3804 */ 3805 MLXSW_ITEM32(reg, qeec, next_element_index, 0x08, 0, 8); 3806 3807 /* reg_qeec_mise 3808 * Min shaper configuration enable. Enables configuration of the min 3809 * shaper on this ETS element 3810 * 0 - Disable 3811 * 1 - Enable 3812 * Access: RW 3813 */ 3814 MLXSW_ITEM32(reg, qeec, mise, 0x0C, 31, 1); 3815 3816 /* reg_qeec_ptps 3817 * PTP shaper 3818 * 0: regular shaper mode 3819 * 1: PTP oriented shaper 3820 * Allowed only for hierarchy 0 3821 * Not supported for CPU port 3822 * Note that ptps mode may affect the shaper rates of all hierarchies 3823 * Supported only on Spectrum-1 3824 * Access: RW 3825 */ 3826 MLXSW_ITEM32(reg, qeec, ptps, 0x0C, 29, 1); 3827 3828 enum { 3829 MLXSW_REG_QEEC_BYTES_MODE, 3830 MLXSW_REG_QEEC_PACKETS_MODE, 3831 }; 3832 3833 /* reg_qeec_pb 3834 * Packets or bytes mode. 3835 * 0 - Bytes mode 3836 * 1 - Packets mode 3837 * Access: RW 3838 * 3839 * Note: Used for max shaper configuration. For Spectrum, packets mode 3840 * is supported only for traffic classes of CPU port. 3841 */ 3842 MLXSW_ITEM32(reg, qeec, pb, 0x0C, 28, 1); 3843 3844 /* The smallest permitted min shaper rate. */ 3845 #define MLXSW_REG_QEEC_MIS_MIN 200000 /* Kbps */ 3846 3847 /* reg_qeec_min_shaper_rate 3848 * Min shaper information rate. 3849 * For CPU port, can only be configured for port hierarchy. 3850 * When in bytes mode, value is specified in units of 1000bps. 3851 * Access: RW 3852 */ 3853 MLXSW_ITEM32(reg, qeec, min_shaper_rate, 0x0C, 0, 28); 3854 3855 /* reg_qeec_mase 3856 * Max shaper configuration enable. Enables configuration of the max 3857 * shaper on this ETS element. 3858 * 0 - Disable 3859 * 1 - Enable 3860 * Access: RW 3861 */ 3862 MLXSW_ITEM32(reg, qeec, mase, 0x10, 31, 1); 3863 3864 /* The largest max shaper value possible to disable the shaper. */ 3865 #define MLXSW_REG_QEEC_MAS_DIS ((1u << 31) - 1) /* Kbps */ 3866 3867 /* reg_qeec_max_shaper_rate 3868 * Max shaper information rate. 3869 * For CPU port, can only be configured for port hierarchy. 3870 * When in bytes mode, value is specified in units of 1000bps. 3871 * Access: RW 3872 */ 3873 MLXSW_ITEM32(reg, qeec, max_shaper_rate, 0x10, 0, 31); 3874 3875 /* reg_qeec_de 3876 * DWRR configuration enable. Enables configuration of the dwrr and 3877 * dwrr_weight. 3878 * 0 - Disable 3879 * 1 - Enable 3880 * Access: RW 3881 */ 3882 MLXSW_ITEM32(reg, qeec, de, 0x18, 31, 1); 3883 3884 /* reg_qeec_dwrr 3885 * Transmission selection algorithm to use on the link going down from 3886 * the ETS element. 3887 * 0 - Strict priority 3888 * 1 - DWRR 3889 * Access: RW 3890 */ 3891 MLXSW_ITEM32(reg, qeec, dwrr, 0x18, 15, 1); 3892 3893 /* reg_qeec_dwrr_weight 3894 * DWRR weight on the link going down from the ETS element. The 3895 * percentage of bandwidth guaranteed to an ETS element within 3896 * its hierarchy. The sum of all weights across all ETS elements 3897 * within one hierarchy should be equal to 100. Reserved when 3898 * transmission selection algorithm is strict priority. 3899 * Access: RW 3900 */ 3901 MLXSW_ITEM32(reg, qeec, dwrr_weight, 0x18, 0, 8); 3902 3903 /* reg_qeec_max_shaper_bs 3904 * Max shaper burst size 3905 * Burst size is 2^max_shaper_bs * 512 bits 3906 * For Spectrum-1: Range is: 5..25 3907 * For Spectrum-2: Range is: 11..25 3908 * Reserved when ptps = 1 3909 * Access: RW 3910 */ 3911 MLXSW_ITEM32(reg, qeec, max_shaper_bs, 0x1C, 0, 6); 3912 3913 #define MLXSW_REG_QEEC_HIGHEST_SHAPER_BS 25 3914 #define MLXSW_REG_QEEC_LOWEST_SHAPER_BS_SP1 5 3915 #define MLXSW_REG_QEEC_LOWEST_SHAPER_BS_SP2 11 3916 #define MLXSW_REG_QEEC_LOWEST_SHAPER_BS_SP3 11 3917 #define MLXSW_REG_QEEC_LOWEST_SHAPER_BS_SP4 11 3918 3919 static inline void mlxsw_reg_qeec_pack(char *payload, u16 local_port, 3920 enum mlxsw_reg_qeec_hr hr, u8 index, 3921 u8 next_index) 3922 { 3923 MLXSW_REG_ZERO(qeec, payload); 3924 mlxsw_reg_qeec_local_port_set(payload, local_port); 3925 mlxsw_reg_qeec_element_hierarchy_set(payload, hr); 3926 mlxsw_reg_qeec_element_index_set(payload, index); 3927 mlxsw_reg_qeec_next_element_index_set(payload, next_index); 3928 } 3929 3930 static inline void mlxsw_reg_qeec_ptps_pack(char *payload, u16 local_port, 3931 bool ptps) 3932 { 3933 MLXSW_REG_ZERO(qeec, payload); 3934 mlxsw_reg_qeec_local_port_set(payload, local_port); 3935 mlxsw_reg_qeec_element_hierarchy_set(payload, MLXSW_REG_QEEC_HR_PORT); 3936 mlxsw_reg_qeec_ptps_set(payload, ptps); 3937 } 3938 3939 /* QRWE - QoS ReWrite Enable 3940 * ------------------------- 3941 * This register configures the rewrite enable per receive port. 3942 */ 3943 #define MLXSW_REG_QRWE_ID 0x400F 3944 #define MLXSW_REG_QRWE_LEN 0x08 3945 3946 MLXSW_REG_DEFINE(qrwe, MLXSW_REG_QRWE_ID, MLXSW_REG_QRWE_LEN); 3947 3948 /* reg_qrwe_local_port 3949 * Local port number. 3950 * Access: Index 3951 * 3952 * Note: CPU port is supported. No support for router port. 3953 */ 3954 MLXSW_ITEM32_LP(reg, qrwe, 0x00, 16, 0x00, 12); 3955 3956 /* reg_qrwe_dscp 3957 * Whether to enable DSCP rewrite (default is 0, don't rewrite). 3958 * Access: RW 3959 */ 3960 MLXSW_ITEM32(reg, qrwe, dscp, 0x04, 1, 1); 3961 3962 /* reg_qrwe_pcp 3963 * Whether to enable PCP and DEI rewrite (default is 0, don't rewrite). 3964 * Access: RW 3965 */ 3966 MLXSW_ITEM32(reg, qrwe, pcp, 0x04, 0, 1); 3967 3968 static inline void mlxsw_reg_qrwe_pack(char *payload, u16 local_port, 3969 bool rewrite_pcp, bool rewrite_dscp) 3970 { 3971 MLXSW_REG_ZERO(qrwe, payload); 3972 mlxsw_reg_qrwe_local_port_set(payload, local_port); 3973 mlxsw_reg_qrwe_pcp_set(payload, rewrite_pcp); 3974 mlxsw_reg_qrwe_dscp_set(payload, rewrite_dscp); 3975 } 3976 3977 /* QPDSM - QoS Priority to DSCP Mapping 3978 * ------------------------------------ 3979 * QoS Priority to DSCP Mapping Register 3980 */ 3981 #define MLXSW_REG_QPDSM_ID 0x4011 3982 #define MLXSW_REG_QPDSM_BASE_LEN 0x04 /* base length, without records */ 3983 #define MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN 0x4 /* record length */ 3984 #define MLXSW_REG_QPDSM_PRIO_ENTRY_REC_MAX_COUNT 16 3985 #define MLXSW_REG_QPDSM_LEN (MLXSW_REG_QPDSM_BASE_LEN + \ 3986 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN * \ 3987 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_MAX_COUNT) 3988 3989 MLXSW_REG_DEFINE(qpdsm, MLXSW_REG_QPDSM_ID, MLXSW_REG_QPDSM_LEN); 3990 3991 /* reg_qpdsm_local_port 3992 * Local Port. Supported for data packets from CPU port. 3993 * Access: Index 3994 */ 3995 MLXSW_ITEM32_LP(reg, qpdsm, 0x00, 16, 0x00, 12); 3996 3997 /* reg_qpdsm_prio_entry_color0_e 3998 * Enable update of the entry for color 0 and a given port. 3999 * Access: WO 4000 */ 4001 MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color0_e, 4002 MLXSW_REG_QPDSM_BASE_LEN, 31, 1, 4003 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false); 4004 4005 /* reg_qpdsm_prio_entry_color0_dscp 4006 * DSCP field in the outer label of the packet for color 0 and a given port. 4007 * Reserved when e=0. 4008 * Access: RW 4009 */ 4010 MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color0_dscp, 4011 MLXSW_REG_QPDSM_BASE_LEN, 24, 6, 4012 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false); 4013 4014 /* reg_qpdsm_prio_entry_color1_e 4015 * Enable update of the entry for color 1 and a given port. 4016 * Access: WO 4017 */ 4018 MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color1_e, 4019 MLXSW_REG_QPDSM_BASE_LEN, 23, 1, 4020 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false); 4021 4022 /* reg_qpdsm_prio_entry_color1_dscp 4023 * DSCP field in the outer label of the packet for color 1 and a given port. 4024 * Reserved when e=0. 4025 * Access: RW 4026 */ 4027 MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color1_dscp, 4028 MLXSW_REG_QPDSM_BASE_LEN, 16, 6, 4029 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false); 4030 4031 /* reg_qpdsm_prio_entry_color2_e 4032 * Enable update of the entry for color 2 and a given port. 4033 * Access: WO 4034 */ 4035 MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color2_e, 4036 MLXSW_REG_QPDSM_BASE_LEN, 15, 1, 4037 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false); 4038 4039 /* reg_qpdsm_prio_entry_color2_dscp 4040 * DSCP field in the outer label of the packet for color 2 and a given port. 4041 * Reserved when e=0. 4042 * Access: RW 4043 */ 4044 MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color2_dscp, 4045 MLXSW_REG_QPDSM_BASE_LEN, 8, 6, 4046 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false); 4047 4048 static inline void mlxsw_reg_qpdsm_pack(char *payload, u16 local_port) 4049 { 4050 MLXSW_REG_ZERO(qpdsm, payload); 4051 mlxsw_reg_qpdsm_local_port_set(payload, local_port); 4052 } 4053 4054 static inline void 4055 mlxsw_reg_qpdsm_prio_pack(char *payload, unsigned short prio, u8 dscp) 4056 { 4057 mlxsw_reg_qpdsm_prio_entry_color0_e_set(payload, prio, 1); 4058 mlxsw_reg_qpdsm_prio_entry_color0_dscp_set(payload, prio, dscp); 4059 mlxsw_reg_qpdsm_prio_entry_color1_e_set(payload, prio, 1); 4060 mlxsw_reg_qpdsm_prio_entry_color1_dscp_set(payload, prio, dscp); 4061 mlxsw_reg_qpdsm_prio_entry_color2_e_set(payload, prio, 1); 4062 mlxsw_reg_qpdsm_prio_entry_color2_dscp_set(payload, prio, dscp); 4063 } 4064 4065 /* QPDP - QoS Port DSCP to Priority Mapping Register 4066 * ------------------------------------------------- 4067 * This register controls the port default Switch Priority and Color. The 4068 * default Switch Priority and Color are used for frames where the trust state 4069 * uses default values. All member ports of a LAG should be configured with the 4070 * same default values. 4071 */ 4072 #define MLXSW_REG_QPDP_ID 0x4007 4073 #define MLXSW_REG_QPDP_LEN 0x8 4074 4075 MLXSW_REG_DEFINE(qpdp, MLXSW_REG_QPDP_ID, MLXSW_REG_QPDP_LEN); 4076 4077 /* reg_qpdp_local_port 4078 * Local Port. Supported for data packets from CPU port. 4079 * Access: Index 4080 */ 4081 MLXSW_ITEM32_LP(reg, qpdp, 0x00, 16, 0x00, 12); 4082 4083 /* reg_qpdp_switch_prio 4084 * Default port Switch Priority (default 0) 4085 * Access: RW 4086 */ 4087 MLXSW_ITEM32(reg, qpdp, switch_prio, 0x04, 0, 4); 4088 4089 static inline void mlxsw_reg_qpdp_pack(char *payload, u16 local_port, 4090 u8 switch_prio) 4091 { 4092 MLXSW_REG_ZERO(qpdp, payload); 4093 mlxsw_reg_qpdp_local_port_set(payload, local_port); 4094 mlxsw_reg_qpdp_switch_prio_set(payload, switch_prio); 4095 } 4096 4097 /* QPDPM - QoS Port DSCP to Priority Mapping Register 4098 * -------------------------------------------------- 4099 * This register controls the mapping from DSCP field to 4100 * Switch Priority for IP packets. 4101 */ 4102 #define MLXSW_REG_QPDPM_ID 0x4013 4103 #define MLXSW_REG_QPDPM_BASE_LEN 0x4 /* base length, without records */ 4104 #define MLXSW_REG_QPDPM_DSCP_ENTRY_REC_LEN 0x2 /* record length */ 4105 #define MLXSW_REG_QPDPM_DSCP_ENTRY_REC_MAX_COUNT 64 4106 #define MLXSW_REG_QPDPM_LEN (MLXSW_REG_QPDPM_BASE_LEN + \ 4107 MLXSW_REG_QPDPM_DSCP_ENTRY_REC_LEN * \ 4108 MLXSW_REG_QPDPM_DSCP_ENTRY_REC_MAX_COUNT) 4109 4110 MLXSW_REG_DEFINE(qpdpm, MLXSW_REG_QPDPM_ID, MLXSW_REG_QPDPM_LEN); 4111 4112 /* reg_qpdpm_local_port 4113 * Local Port. Supported for data packets from CPU port. 4114 * Access: Index 4115 */ 4116 MLXSW_ITEM32_LP(reg, qpdpm, 0x00, 16, 0x00, 12); 4117 4118 /* reg_qpdpm_dscp_e 4119 * Enable update of the specific entry. When cleared, the switch_prio and color 4120 * fields are ignored and the previous switch_prio and color values are 4121 * preserved. 4122 * Access: WO 4123 */ 4124 MLXSW_ITEM16_INDEXED(reg, qpdpm, dscp_entry_e, MLXSW_REG_QPDPM_BASE_LEN, 15, 1, 4125 MLXSW_REG_QPDPM_DSCP_ENTRY_REC_LEN, 0x00, false); 4126 4127 /* reg_qpdpm_dscp_prio 4128 * The new Switch Priority value for the relevant DSCP value. 4129 * Access: RW 4130 */ 4131 MLXSW_ITEM16_INDEXED(reg, qpdpm, dscp_entry_prio, 4132 MLXSW_REG_QPDPM_BASE_LEN, 0, 4, 4133 MLXSW_REG_QPDPM_DSCP_ENTRY_REC_LEN, 0x00, false); 4134 4135 static inline void mlxsw_reg_qpdpm_pack(char *payload, u16 local_port) 4136 { 4137 MLXSW_REG_ZERO(qpdpm, payload); 4138 mlxsw_reg_qpdpm_local_port_set(payload, local_port); 4139 } 4140 4141 static inline void 4142 mlxsw_reg_qpdpm_dscp_pack(char *payload, unsigned short dscp, u8 prio) 4143 { 4144 mlxsw_reg_qpdpm_dscp_entry_e_set(payload, dscp, 1); 4145 mlxsw_reg_qpdpm_dscp_entry_prio_set(payload, dscp, prio); 4146 } 4147 4148 /* QTCTM - QoS Switch Traffic Class Table is Multicast-Aware Register 4149 * ------------------------------------------------------------------ 4150 * This register configures if the Switch Priority to Traffic Class mapping is 4151 * based on Multicast packet indication. If so, then multicast packets will get 4152 * a Traffic Class that is plus (cap_max_tclass_data/2) the value configured by 4153 * QTCT. 4154 * By default, Switch Priority to Traffic Class mapping is not based on 4155 * Multicast packet indication. 4156 */ 4157 #define MLXSW_REG_QTCTM_ID 0x401A 4158 #define MLXSW_REG_QTCTM_LEN 0x08 4159 4160 MLXSW_REG_DEFINE(qtctm, MLXSW_REG_QTCTM_ID, MLXSW_REG_QTCTM_LEN); 4161 4162 /* reg_qtctm_local_port 4163 * Local port number. 4164 * No support for CPU port. 4165 * Access: Index 4166 */ 4167 MLXSW_ITEM32_LP(reg, qtctm, 0x00, 16, 0x00, 12); 4168 4169 /* reg_qtctm_mc 4170 * Multicast Mode 4171 * Whether Switch Priority to Traffic Class mapping is based on Multicast packet 4172 * indication (default is 0, not based on Multicast packet indication). 4173 */ 4174 MLXSW_ITEM32(reg, qtctm, mc, 0x04, 0, 1); 4175 4176 static inline void 4177 mlxsw_reg_qtctm_pack(char *payload, u16 local_port, bool mc) 4178 { 4179 MLXSW_REG_ZERO(qtctm, payload); 4180 mlxsw_reg_qtctm_local_port_set(payload, local_port); 4181 mlxsw_reg_qtctm_mc_set(payload, mc); 4182 } 4183 4184 /* QPSC - QoS PTP Shaper Configuration Register 4185 * -------------------------------------------- 4186 * The QPSC allows advanced configuration of the shapers when QEEC.ptps=1. 4187 * Supported only on Spectrum-1. 4188 */ 4189 #define MLXSW_REG_QPSC_ID 0x401B 4190 #define MLXSW_REG_QPSC_LEN 0x28 4191 4192 MLXSW_REG_DEFINE(qpsc, MLXSW_REG_QPSC_ID, MLXSW_REG_QPSC_LEN); 4193 4194 enum mlxsw_reg_qpsc_port_speed { 4195 MLXSW_REG_QPSC_PORT_SPEED_100M, 4196 MLXSW_REG_QPSC_PORT_SPEED_1G, 4197 MLXSW_REG_QPSC_PORT_SPEED_10G, 4198 MLXSW_REG_QPSC_PORT_SPEED_25G, 4199 }; 4200 4201 /* reg_qpsc_port_speed 4202 * Port speed. 4203 * Access: Index 4204 */ 4205 MLXSW_ITEM32(reg, qpsc, port_speed, 0x00, 0, 4); 4206 4207 /* reg_qpsc_shaper_time_exp 4208 * The base-time-interval for updating the shapers tokens (for all hierarchies). 4209 * shaper_update_rate = 2 ^ shaper_time_exp * (1 + shaper_time_mantissa) * 32nSec 4210 * shaper_rate = 64bit * shaper_inc / shaper_update_rate 4211 * Access: RW 4212 */ 4213 MLXSW_ITEM32(reg, qpsc, shaper_time_exp, 0x04, 16, 4); 4214 4215 /* reg_qpsc_shaper_time_mantissa 4216 * The base-time-interval for updating the shapers tokens (for all hierarchies). 4217 * shaper_update_rate = 2 ^ shaper_time_exp * (1 + shaper_time_mantissa) * 32nSec 4218 * shaper_rate = 64bit * shaper_inc / shaper_update_rate 4219 * Access: RW 4220 */ 4221 MLXSW_ITEM32(reg, qpsc, shaper_time_mantissa, 0x04, 0, 5); 4222 4223 /* reg_qpsc_shaper_inc 4224 * Number of tokens added to shaper on each update. 4225 * Units of 8B. 4226 * Access: RW 4227 */ 4228 MLXSW_ITEM32(reg, qpsc, shaper_inc, 0x08, 0, 5); 4229 4230 /* reg_qpsc_shaper_bs 4231 * Max shaper Burst size. 4232 * Burst size is 2 ^ max_shaper_bs * 512 [bits] 4233 * Range is: 5..25 (from 2KB..2GB) 4234 * Access: RW 4235 */ 4236 MLXSW_ITEM32(reg, qpsc, shaper_bs, 0x0C, 0, 6); 4237 4238 /* reg_qpsc_ptsc_we 4239 * Write enable to port_to_shaper_credits. 4240 * Access: WO 4241 */ 4242 MLXSW_ITEM32(reg, qpsc, ptsc_we, 0x10, 31, 1); 4243 4244 /* reg_qpsc_port_to_shaper_credits 4245 * For split ports: range 1..57 4246 * For non-split ports: range 1..112 4247 * Written only when ptsc_we is set. 4248 * Access: RW 4249 */ 4250 MLXSW_ITEM32(reg, qpsc, port_to_shaper_credits, 0x10, 0, 8); 4251 4252 /* reg_qpsc_ing_timestamp_inc 4253 * Ingress timestamp increment. 4254 * 2's complement. 4255 * The timestamp of MTPPTR at ingress will be incremented by this value. Global 4256 * value for all ports. 4257 * Same units as used by MTPPTR. 4258 * Access: RW 4259 */ 4260 MLXSW_ITEM32(reg, qpsc, ing_timestamp_inc, 0x20, 0, 32); 4261 4262 /* reg_qpsc_egr_timestamp_inc 4263 * Egress timestamp increment. 4264 * 2's complement. 4265 * The timestamp of MTPPTR at egress will be incremented by this value. Global 4266 * value for all ports. 4267 * Same units as used by MTPPTR. 4268 * Access: RW 4269 */ 4270 MLXSW_ITEM32(reg, qpsc, egr_timestamp_inc, 0x24, 0, 32); 4271 4272 static inline void 4273 mlxsw_reg_qpsc_pack(char *payload, enum mlxsw_reg_qpsc_port_speed port_speed, 4274 u8 shaper_time_exp, u8 shaper_time_mantissa, u8 shaper_inc, 4275 u8 shaper_bs, u8 port_to_shaper_credits, 4276 int ing_timestamp_inc, int egr_timestamp_inc) 4277 { 4278 MLXSW_REG_ZERO(qpsc, payload); 4279 mlxsw_reg_qpsc_port_speed_set(payload, port_speed); 4280 mlxsw_reg_qpsc_shaper_time_exp_set(payload, shaper_time_exp); 4281 mlxsw_reg_qpsc_shaper_time_mantissa_set(payload, shaper_time_mantissa); 4282 mlxsw_reg_qpsc_shaper_inc_set(payload, shaper_inc); 4283 mlxsw_reg_qpsc_shaper_bs_set(payload, shaper_bs); 4284 mlxsw_reg_qpsc_ptsc_we_set(payload, true); 4285 mlxsw_reg_qpsc_port_to_shaper_credits_set(payload, port_to_shaper_credits); 4286 mlxsw_reg_qpsc_ing_timestamp_inc_set(payload, ing_timestamp_inc); 4287 mlxsw_reg_qpsc_egr_timestamp_inc_set(payload, egr_timestamp_inc); 4288 } 4289 4290 /* PMLP - Ports Module to Local Port Register 4291 * ------------------------------------------ 4292 * Configures the assignment of modules to local ports. 4293 */ 4294 #define MLXSW_REG_PMLP_ID 0x5002 4295 #define MLXSW_REG_PMLP_LEN 0x40 4296 4297 MLXSW_REG_DEFINE(pmlp, MLXSW_REG_PMLP_ID, MLXSW_REG_PMLP_LEN); 4298 4299 /* reg_pmlp_rxtx 4300 * 0 - Tx value is used for both Tx and Rx. 4301 * 1 - Rx value is taken from a separte field. 4302 * Access: RW 4303 */ 4304 MLXSW_ITEM32(reg, pmlp, rxtx, 0x00, 31, 1); 4305 4306 /* reg_pmlp_local_port 4307 * Local port number. 4308 * Access: Index 4309 */ 4310 MLXSW_ITEM32_LP(reg, pmlp, 0x00, 16, 0x00, 12); 4311 4312 /* reg_pmlp_width 4313 * 0 - Unmap local port. 4314 * 1 - Lane 0 is used. 4315 * 2 - Lanes 0 and 1 are used. 4316 * 4 - Lanes 0, 1, 2 and 3 are used. 4317 * 8 - Lanes 0-7 are used. 4318 * Access: RW 4319 */ 4320 MLXSW_ITEM32(reg, pmlp, width, 0x00, 0, 8); 4321 4322 /* reg_pmlp_module 4323 * Module number. 4324 * Access: RW 4325 */ 4326 MLXSW_ITEM32_INDEXED(reg, pmlp, module, 0x04, 0, 8, 0x04, 0x00, false); 4327 4328 /* reg_pmlp_tx_lane 4329 * Tx Lane. When rxtx field is cleared, this field is used for Rx as well. 4330 * Access: RW 4331 */ 4332 MLXSW_ITEM32_INDEXED(reg, pmlp, tx_lane, 0x04, 16, 4, 0x04, 0x00, false); 4333 4334 /* reg_pmlp_rx_lane 4335 * Rx Lane. When rxtx field is cleared, this field is ignored and Rx lane is 4336 * equal to Tx lane. 4337 * Access: RW 4338 */ 4339 MLXSW_ITEM32_INDEXED(reg, pmlp, rx_lane, 0x04, 24, 4, 0x04, 0x00, false); 4340 4341 static inline void mlxsw_reg_pmlp_pack(char *payload, u16 local_port) 4342 { 4343 MLXSW_REG_ZERO(pmlp, payload); 4344 mlxsw_reg_pmlp_local_port_set(payload, local_port); 4345 } 4346 4347 /* PMTU - Port MTU Register 4348 * ------------------------ 4349 * Configures and reports the port MTU. 4350 */ 4351 #define MLXSW_REG_PMTU_ID 0x5003 4352 #define MLXSW_REG_PMTU_LEN 0x10 4353 4354 MLXSW_REG_DEFINE(pmtu, MLXSW_REG_PMTU_ID, MLXSW_REG_PMTU_LEN); 4355 4356 /* reg_pmtu_local_port 4357 * Local port number. 4358 * Access: Index 4359 */ 4360 MLXSW_ITEM32_LP(reg, pmtu, 0x00, 16, 0x00, 12); 4361 4362 /* reg_pmtu_max_mtu 4363 * Maximum MTU. 4364 * When port type (e.g. Ethernet) is configured, the relevant MTU is 4365 * reported, otherwise the minimum between the max_mtu of the different 4366 * types is reported. 4367 * Access: RO 4368 */ 4369 MLXSW_ITEM32(reg, pmtu, max_mtu, 0x04, 16, 16); 4370 4371 /* reg_pmtu_admin_mtu 4372 * MTU value to set port to. Must be smaller or equal to max_mtu. 4373 * Note: If port type is Infiniband, then port must be disabled, when its 4374 * MTU is set. 4375 * Access: RW 4376 */ 4377 MLXSW_ITEM32(reg, pmtu, admin_mtu, 0x08, 16, 16); 4378 4379 /* reg_pmtu_oper_mtu 4380 * The actual MTU configured on the port. Packets exceeding this size 4381 * will be dropped. 4382 * Note: In Ethernet and FC oper_mtu == admin_mtu, however, in Infiniband 4383 * oper_mtu might be smaller than admin_mtu. 4384 * Access: RO 4385 */ 4386 MLXSW_ITEM32(reg, pmtu, oper_mtu, 0x0C, 16, 16); 4387 4388 static inline void mlxsw_reg_pmtu_pack(char *payload, u16 local_port, 4389 u16 new_mtu) 4390 { 4391 MLXSW_REG_ZERO(pmtu, payload); 4392 mlxsw_reg_pmtu_local_port_set(payload, local_port); 4393 mlxsw_reg_pmtu_max_mtu_set(payload, 0); 4394 mlxsw_reg_pmtu_admin_mtu_set(payload, new_mtu); 4395 mlxsw_reg_pmtu_oper_mtu_set(payload, 0); 4396 } 4397 4398 /* PTYS - Port Type and Speed Register 4399 * ----------------------------------- 4400 * Configures and reports the port speed type. 4401 * 4402 * Note: When set while the link is up, the changes will not take effect 4403 * until the port transitions from down to up state. 4404 */ 4405 #define MLXSW_REG_PTYS_ID 0x5004 4406 #define MLXSW_REG_PTYS_LEN 0x40 4407 4408 MLXSW_REG_DEFINE(ptys, MLXSW_REG_PTYS_ID, MLXSW_REG_PTYS_LEN); 4409 4410 /* an_disable_admin 4411 * Auto negotiation disable administrative configuration 4412 * 0 - Device doesn't support AN disable. 4413 * 1 - Device supports AN disable. 4414 * Access: RW 4415 */ 4416 MLXSW_ITEM32(reg, ptys, an_disable_admin, 0x00, 30, 1); 4417 4418 /* reg_ptys_local_port 4419 * Local port number. 4420 * Access: Index 4421 */ 4422 MLXSW_ITEM32_LP(reg, ptys, 0x00, 16, 0x00, 12); 4423 4424 #define MLXSW_REG_PTYS_PROTO_MASK_IB BIT(0) 4425 #define MLXSW_REG_PTYS_PROTO_MASK_ETH BIT(2) 4426 4427 /* reg_ptys_proto_mask 4428 * Protocol mask. Indicates which protocol is used. 4429 * 0 - Infiniband. 4430 * 1 - Fibre Channel. 4431 * 2 - Ethernet. 4432 * Access: Index 4433 */ 4434 MLXSW_ITEM32(reg, ptys, proto_mask, 0x00, 0, 3); 4435 4436 enum { 4437 MLXSW_REG_PTYS_AN_STATUS_NA, 4438 MLXSW_REG_PTYS_AN_STATUS_OK, 4439 MLXSW_REG_PTYS_AN_STATUS_FAIL, 4440 }; 4441 4442 /* reg_ptys_an_status 4443 * Autonegotiation status. 4444 * Access: RO 4445 */ 4446 MLXSW_ITEM32(reg, ptys, an_status, 0x04, 28, 4); 4447 4448 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_SGMII_100M BIT(0) 4449 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_1000BASE_X_SGMII BIT(1) 4450 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_5GBASE_R BIT(3) 4451 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_XFI_XAUI_1_10G BIT(4) 4452 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_XLAUI_4_XLPPI_4_40G BIT(5) 4453 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_25GAUI_1_25GBASE_CR_KR BIT(6) 4454 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_50GAUI_2_LAUI_2_50GBASE_CR2_KR2 BIT(7) 4455 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_50GAUI_1_LAUI_1_50GBASE_CR_KR BIT(8) 4456 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_CAUI_4_100GBASE_CR4_KR4 BIT(9) 4457 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_100GAUI_2_100GBASE_CR2_KR2 BIT(10) 4458 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_200GAUI_4_200GBASE_CR4_KR4 BIT(12) 4459 #define MLXSW_REG_PTYS_EXT_ETH_SPEED_400GAUI_8 BIT(15) 4460 4461 /* reg_ptys_ext_eth_proto_cap 4462 * Extended Ethernet port supported speeds and protocols. 4463 * Access: RO 4464 */ 4465 MLXSW_ITEM32(reg, ptys, ext_eth_proto_cap, 0x08, 0, 32); 4466 4467 #define MLXSW_REG_PTYS_ETH_SPEED_SGMII BIT(0) 4468 #define MLXSW_REG_PTYS_ETH_SPEED_1000BASE_KX BIT(1) 4469 #define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_CX4 BIT(2) 4470 #define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_KX4 BIT(3) 4471 #define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_KR BIT(4) 4472 #define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_CR4 BIT(6) 4473 #define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_KR4 BIT(7) 4474 #define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_CR BIT(12) 4475 #define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_SR BIT(13) 4476 #define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_ER_LR BIT(14) 4477 #define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_SR4 BIT(15) 4478 #define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_LR4_ER4 BIT(16) 4479 #define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_SR2 BIT(18) 4480 #define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_KR4 BIT(19) 4481 #define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_CR4 BIT(20) 4482 #define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_SR4 BIT(21) 4483 #define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_KR4 BIT(22) 4484 #define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_LR4_ER4 BIT(23) 4485 #define MLXSW_REG_PTYS_ETH_SPEED_100BASE_T BIT(24) 4486 #define MLXSW_REG_PTYS_ETH_SPEED_1000BASE_T BIT(25) 4487 #define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_CR BIT(27) 4488 #define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_KR BIT(28) 4489 #define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_SR BIT(29) 4490 #define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_CR2 BIT(30) 4491 #define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_KR2 BIT(31) 4492 4493 /* reg_ptys_eth_proto_cap 4494 * Ethernet port supported speeds and protocols. 4495 * Access: RO 4496 */ 4497 MLXSW_ITEM32(reg, ptys, eth_proto_cap, 0x0C, 0, 32); 4498 4499 /* reg_ptys_ib_link_width_cap 4500 * IB port supported widths. 4501 * Access: RO 4502 */ 4503 MLXSW_ITEM32(reg, ptys, ib_link_width_cap, 0x10, 16, 16); 4504 4505 #define MLXSW_REG_PTYS_IB_SPEED_SDR BIT(0) 4506 #define MLXSW_REG_PTYS_IB_SPEED_DDR BIT(1) 4507 #define MLXSW_REG_PTYS_IB_SPEED_QDR BIT(2) 4508 #define MLXSW_REG_PTYS_IB_SPEED_FDR10 BIT(3) 4509 #define MLXSW_REG_PTYS_IB_SPEED_FDR BIT(4) 4510 #define MLXSW_REG_PTYS_IB_SPEED_EDR BIT(5) 4511 4512 /* reg_ptys_ib_proto_cap 4513 * IB port supported speeds and protocols. 4514 * Access: RO 4515 */ 4516 MLXSW_ITEM32(reg, ptys, ib_proto_cap, 0x10, 0, 16); 4517 4518 /* reg_ptys_ext_eth_proto_admin 4519 * Extended speed and protocol to set port to. 4520 * Access: RW 4521 */ 4522 MLXSW_ITEM32(reg, ptys, ext_eth_proto_admin, 0x14, 0, 32); 4523 4524 /* reg_ptys_eth_proto_admin 4525 * Speed and protocol to set port to. 4526 * Access: RW 4527 */ 4528 MLXSW_ITEM32(reg, ptys, eth_proto_admin, 0x18, 0, 32); 4529 4530 /* reg_ptys_ib_link_width_admin 4531 * IB width to set port to. 4532 * Access: RW 4533 */ 4534 MLXSW_ITEM32(reg, ptys, ib_link_width_admin, 0x1C, 16, 16); 4535 4536 /* reg_ptys_ib_proto_admin 4537 * IB speeds and protocols to set port to. 4538 * Access: RW 4539 */ 4540 MLXSW_ITEM32(reg, ptys, ib_proto_admin, 0x1C, 0, 16); 4541 4542 /* reg_ptys_ext_eth_proto_oper 4543 * The extended current speed and protocol configured for the port. 4544 * Access: RO 4545 */ 4546 MLXSW_ITEM32(reg, ptys, ext_eth_proto_oper, 0x20, 0, 32); 4547 4548 /* reg_ptys_eth_proto_oper 4549 * The current speed and protocol configured for the port. 4550 * Access: RO 4551 */ 4552 MLXSW_ITEM32(reg, ptys, eth_proto_oper, 0x24, 0, 32); 4553 4554 /* reg_ptys_ib_link_width_oper 4555 * The current IB width to set port to. 4556 * Access: RO 4557 */ 4558 MLXSW_ITEM32(reg, ptys, ib_link_width_oper, 0x28, 16, 16); 4559 4560 /* reg_ptys_ib_proto_oper 4561 * The current IB speed and protocol. 4562 * Access: RO 4563 */ 4564 MLXSW_ITEM32(reg, ptys, ib_proto_oper, 0x28, 0, 16); 4565 4566 enum mlxsw_reg_ptys_connector_type { 4567 MLXSW_REG_PTYS_CONNECTOR_TYPE_UNKNOWN_OR_NO_CONNECTOR, 4568 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_NONE, 4569 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_TP, 4570 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_AUI, 4571 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_BNC, 4572 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_MII, 4573 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_FIBRE, 4574 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_DA, 4575 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_OTHER, 4576 }; 4577 4578 /* reg_ptys_connector_type 4579 * Connector type indication. 4580 * Access: RO 4581 */ 4582 MLXSW_ITEM32(reg, ptys, connector_type, 0x2C, 0, 4); 4583 4584 static inline void mlxsw_reg_ptys_eth_pack(char *payload, u16 local_port, 4585 u32 proto_admin, bool autoneg) 4586 { 4587 MLXSW_REG_ZERO(ptys, payload); 4588 mlxsw_reg_ptys_local_port_set(payload, local_port); 4589 mlxsw_reg_ptys_proto_mask_set(payload, MLXSW_REG_PTYS_PROTO_MASK_ETH); 4590 mlxsw_reg_ptys_eth_proto_admin_set(payload, proto_admin); 4591 mlxsw_reg_ptys_an_disable_admin_set(payload, !autoneg); 4592 } 4593 4594 static inline void mlxsw_reg_ptys_ext_eth_pack(char *payload, u16 local_port, 4595 u32 proto_admin, bool autoneg) 4596 { 4597 MLXSW_REG_ZERO(ptys, payload); 4598 mlxsw_reg_ptys_local_port_set(payload, local_port); 4599 mlxsw_reg_ptys_proto_mask_set(payload, MLXSW_REG_PTYS_PROTO_MASK_ETH); 4600 mlxsw_reg_ptys_ext_eth_proto_admin_set(payload, proto_admin); 4601 mlxsw_reg_ptys_an_disable_admin_set(payload, !autoneg); 4602 } 4603 4604 static inline void mlxsw_reg_ptys_eth_unpack(char *payload, 4605 u32 *p_eth_proto_cap, 4606 u32 *p_eth_proto_admin, 4607 u32 *p_eth_proto_oper) 4608 { 4609 if (p_eth_proto_cap) 4610 *p_eth_proto_cap = 4611 mlxsw_reg_ptys_eth_proto_cap_get(payload); 4612 if (p_eth_proto_admin) 4613 *p_eth_proto_admin = 4614 mlxsw_reg_ptys_eth_proto_admin_get(payload); 4615 if (p_eth_proto_oper) 4616 *p_eth_proto_oper = 4617 mlxsw_reg_ptys_eth_proto_oper_get(payload); 4618 } 4619 4620 static inline void mlxsw_reg_ptys_ext_eth_unpack(char *payload, 4621 u32 *p_eth_proto_cap, 4622 u32 *p_eth_proto_admin, 4623 u32 *p_eth_proto_oper) 4624 { 4625 if (p_eth_proto_cap) 4626 *p_eth_proto_cap = 4627 mlxsw_reg_ptys_ext_eth_proto_cap_get(payload); 4628 if (p_eth_proto_admin) 4629 *p_eth_proto_admin = 4630 mlxsw_reg_ptys_ext_eth_proto_admin_get(payload); 4631 if (p_eth_proto_oper) 4632 *p_eth_proto_oper = 4633 mlxsw_reg_ptys_ext_eth_proto_oper_get(payload); 4634 } 4635 4636 static inline void mlxsw_reg_ptys_ib_pack(char *payload, u16 local_port, 4637 u16 proto_admin, u16 link_width) 4638 { 4639 MLXSW_REG_ZERO(ptys, payload); 4640 mlxsw_reg_ptys_local_port_set(payload, local_port); 4641 mlxsw_reg_ptys_proto_mask_set(payload, MLXSW_REG_PTYS_PROTO_MASK_IB); 4642 mlxsw_reg_ptys_ib_proto_admin_set(payload, proto_admin); 4643 mlxsw_reg_ptys_ib_link_width_admin_set(payload, link_width); 4644 } 4645 4646 static inline void mlxsw_reg_ptys_ib_unpack(char *payload, u16 *p_ib_proto_cap, 4647 u16 *p_ib_link_width_cap, 4648 u16 *p_ib_proto_oper, 4649 u16 *p_ib_link_width_oper) 4650 { 4651 if (p_ib_proto_cap) 4652 *p_ib_proto_cap = mlxsw_reg_ptys_ib_proto_cap_get(payload); 4653 if (p_ib_link_width_cap) 4654 *p_ib_link_width_cap = 4655 mlxsw_reg_ptys_ib_link_width_cap_get(payload); 4656 if (p_ib_proto_oper) 4657 *p_ib_proto_oper = mlxsw_reg_ptys_ib_proto_oper_get(payload); 4658 if (p_ib_link_width_oper) 4659 *p_ib_link_width_oper = 4660 mlxsw_reg_ptys_ib_link_width_oper_get(payload); 4661 } 4662 4663 /* PPAD - Port Physical Address Register 4664 * ------------------------------------- 4665 * The PPAD register configures the per port physical MAC address. 4666 */ 4667 #define MLXSW_REG_PPAD_ID 0x5005 4668 #define MLXSW_REG_PPAD_LEN 0x10 4669 4670 MLXSW_REG_DEFINE(ppad, MLXSW_REG_PPAD_ID, MLXSW_REG_PPAD_LEN); 4671 4672 /* reg_ppad_single_base_mac 4673 * 0: base_mac, local port should be 0 and mac[7:0] is 4674 * reserved. HW will set incremental 4675 * 1: single_mac - mac of the local_port 4676 * Access: RW 4677 */ 4678 MLXSW_ITEM32(reg, ppad, single_base_mac, 0x00, 28, 1); 4679 4680 /* reg_ppad_local_port 4681 * port number, if single_base_mac = 0 then local_port is reserved 4682 * Access: RW 4683 */ 4684 MLXSW_ITEM32_LP(reg, ppad, 0x00, 16, 0x00, 24); 4685 4686 /* reg_ppad_mac 4687 * If single_base_mac = 0 - base MAC address, mac[7:0] is reserved. 4688 * If single_base_mac = 1 - the per port MAC address 4689 * Access: RW 4690 */ 4691 MLXSW_ITEM_BUF(reg, ppad, mac, 0x02, 6); 4692 4693 static inline void mlxsw_reg_ppad_pack(char *payload, bool single_base_mac, 4694 u16 local_port) 4695 { 4696 MLXSW_REG_ZERO(ppad, payload); 4697 mlxsw_reg_ppad_single_base_mac_set(payload, !!single_base_mac); 4698 mlxsw_reg_ppad_local_port_set(payload, local_port); 4699 } 4700 4701 /* PAOS - Ports Administrative and Operational Status Register 4702 * ----------------------------------------------------------- 4703 * Configures and retrieves per port administrative and operational status. 4704 */ 4705 #define MLXSW_REG_PAOS_ID 0x5006 4706 #define MLXSW_REG_PAOS_LEN 0x10 4707 4708 MLXSW_REG_DEFINE(paos, MLXSW_REG_PAOS_ID, MLXSW_REG_PAOS_LEN); 4709 4710 /* reg_paos_swid 4711 * Switch partition ID with which to associate the port. 4712 * Note: while external ports uses unique local port numbers (and thus swid is 4713 * redundant), router ports use the same local port number where swid is the 4714 * only indication for the relevant port. 4715 * Access: Index 4716 */ 4717 MLXSW_ITEM32(reg, paos, swid, 0x00, 24, 8); 4718 4719 /* reg_paos_local_port 4720 * Local port number. 4721 * Access: Index 4722 */ 4723 MLXSW_ITEM32_LP(reg, paos, 0x00, 16, 0x00, 12); 4724 4725 /* reg_paos_admin_status 4726 * Port administrative state (the desired state of the port): 4727 * 1 - Up. 4728 * 2 - Down. 4729 * 3 - Up once. This means that in case of link failure, the port won't go 4730 * into polling mode, but will wait to be re-enabled by software. 4731 * 4 - Disabled by system. Can only be set by hardware. 4732 * Access: RW 4733 */ 4734 MLXSW_ITEM32(reg, paos, admin_status, 0x00, 8, 4); 4735 4736 /* reg_paos_oper_status 4737 * Port operational state (the current state): 4738 * 1 - Up. 4739 * 2 - Down. 4740 * 3 - Down by port failure. This means that the device will not let the 4741 * port up again until explicitly specified by software. 4742 * Access: RO 4743 */ 4744 MLXSW_ITEM32(reg, paos, oper_status, 0x00, 0, 4); 4745 4746 /* reg_paos_ase 4747 * Admin state update enabled. 4748 * Access: WO 4749 */ 4750 MLXSW_ITEM32(reg, paos, ase, 0x04, 31, 1); 4751 4752 /* reg_paos_ee 4753 * Event update enable. If this bit is set, event generation will be 4754 * updated based on the e field. 4755 * Access: WO 4756 */ 4757 MLXSW_ITEM32(reg, paos, ee, 0x04, 30, 1); 4758 4759 /* reg_paos_e 4760 * Event generation on operational state change: 4761 * 0 - Do not generate event. 4762 * 1 - Generate Event. 4763 * 2 - Generate Single Event. 4764 * Access: RW 4765 */ 4766 MLXSW_ITEM32(reg, paos, e, 0x04, 0, 2); 4767 4768 static inline void mlxsw_reg_paos_pack(char *payload, u16 local_port, 4769 enum mlxsw_port_admin_status status) 4770 { 4771 MLXSW_REG_ZERO(paos, payload); 4772 mlxsw_reg_paos_swid_set(payload, 0); 4773 mlxsw_reg_paos_local_port_set(payload, local_port); 4774 mlxsw_reg_paos_admin_status_set(payload, status); 4775 mlxsw_reg_paos_oper_status_set(payload, 0); 4776 mlxsw_reg_paos_ase_set(payload, 1); 4777 mlxsw_reg_paos_ee_set(payload, 1); 4778 mlxsw_reg_paos_e_set(payload, 1); 4779 } 4780 4781 /* PFCC - Ports Flow Control Configuration Register 4782 * ------------------------------------------------ 4783 * Configures and retrieves the per port flow control configuration. 4784 */ 4785 #define MLXSW_REG_PFCC_ID 0x5007 4786 #define MLXSW_REG_PFCC_LEN 0x20 4787 4788 MLXSW_REG_DEFINE(pfcc, MLXSW_REG_PFCC_ID, MLXSW_REG_PFCC_LEN); 4789 4790 /* reg_pfcc_local_port 4791 * Local port number. 4792 * Access: Index 4793 */ 4794 MLXSW_ITEM32_LP(reg, pfcc, 0x00, 16, 0x00, 12); 4795 4796 /* reg_pfcc_pnat 4797 * Port number access type. Determines the way local_port is interpreted: 4798 * 0 - Local port number. 4799 * 1 - IB / label port number. 4800 * Access: Index 4801 */ 4802 MLXSW_ITEM32(reg, pfcc, pnat, 0x00, 14, 2); 4803 4804 /* reg_pfcc_shl_cap 4805 * Send to higher layers capabilities: 4806 * 0 - No capability of sending Pause and PFC frames to higher layers. 4807 * 1 - Device has capability of sending Pause and PFC frames to higher 4808 * layers. 4809 * Access: RO 4810 */ 4811 MLXSW_ITEM32(reg, pfcc, shl_cap, 0x00, 1, 1); 4812 4813 /* reg_pfcc_shl_opr 4814 * Send to higher layers operation: 4815 * 0 - Pause and PFC frames are handled by the port (default). 4816 * 1 - Pause and PFC frames are handled by the port and also sent to 4817 * higher layers. Only valid if shl_cap = 1. 4818 * Access: RW 4819 */ 4820 MLXSW_ITEM32(reg, pfcc, shl_opr, 0x00, 0, 1); 4821 4822 /* reg_pfcc_ppan 4823 * Pause policy auto negotiation. 4824 * 0 - Disabled. Generate / ignore Pause frames based on pptx / pprtx. 4825 * 1 - Enabled. When auto-negotiation is performed, set the Pause policy 4826 * based on the auto-negotiation resolution. 4827 * Access: RW 4828 * 4829 * Note: The auto-negotiation advertisement is set according to pptx and 4830 * pprtx. When PFC is set on Tx / Rx, ppan must be set to 0. 4831 */ 4832 MLXSW_ITEM32(reg, pfcc, ppan, 0x04, 28, 4); 4833 4834 /* reg_pfcc_prio_mask_tx 4835 * Bit per priority indicating if Tx flow control policy should be 4836 * updated based on bit pfctx. 4837 * Access: WO 4838 */ 4839 MLXSW_ITEM32(reg, pfcc, prio_mask_tx, 0x04, 16, 8); 4840 4841 /* reg_pfcc_prio_mask_rx 4842 * Bit per priority indicating if Rx flow control policy should be 4843 * updated based on bit pfcrx. 4844 * Access: WO 4845 */ 4846 MLXSW_ITEM32(reg, pfcc, prio_mask_rx, 0x04, 0, 8); 4847 4848 /* reg_pfcc_pptx 4849 * Admin Pause policy on Tx. 4850 * 0 - Never generate Pause frames (default). 4851 * 1 - Generate Pause frames according to Rx buffer threshold. 4852 * Access: RW 4853 */ 4854 MLXSW_ITEM32(reg, pfcc, pptx, 0x08, 31, 1); 4855 4856 /* reg_pfcc_aptx 4857 * Active (operational) Pause policy on Tx. 4858 * 0 - Never generate Pause frames. 4859 * 1 - Generate Pause frames according to Rx buffer threshold. 4860 * Access: RO 4861 */ 4862 MLXSW_ITEM32(reg, pfcc, aptx, 0x08, 30, 1); 4863 4864 /* reg_pfcc_pfctx 4865 * Priority based flow control policy on Tx[7:0]. Per-priority bit mask: 4866 * 0 - Never generate priority Pause frames on the specified priority 4867 * (default). 4868 * 1 - Generate priority Pause frames according to Rx buffer threshold on 4869 * the specified priority. 4870 * Access: RW 4871 * 4872 * Note: pfctx and pptx must be mutually exclusive. 4873 */ 4874 MLXSW_ITEM32(reg, pfcc, pfctx, 0x08, 16, 8); 4875 4876 /* reg_pfcc_pprx 4877 * Admin Pause policy on Rx. 4878 * 0 - Ignore received Pause frames (default). 4879 * 1 - Respect received Pause frames. 4880 * Access: RW 4881 */ 4882 MLXSW_ITEM32(reg, pfcc, pprx, 0x0C, 31, 1); 4883 4884 /* reg_pfcc_aprx 4885 * Active (operational) Pause policy on Rx. 4886 * 0 - Ignore received Pause frames. 4887 * 1 - Respect received Pause frames. 4888 * Access: RO 4889 */ 4890 MLXSW_ITEM32(reg, pfcc, aprx, 0x0C, 30, 1); 4891 4892 /* reg_pfcc_pfcrx 4893 * Priority based flow control policy on Rx[7:0]. Per-priority bit mask: 4894 * 0 - Ignore incoming priority Pause frames on the specified priority 4895 * (default). 4896 * 1 - Respect incoming priority Pause frames on the specified priority. 4897 * Access: RW 4898 */ 4899 MLXSW_ITEM32(reg, pfcc, pfcrx, 0x0C, 16, 8); 4900 4901 #define MLXSW_REG_PFCC_ALL_PRIO 0xFF 4902 4903 static inline void mlxsw_reg_pfcc_prio_pack(char *payload, u8 pfc_en) 4904 { 4905 mlxsw_reg_pfcc_prio_mask_tx_set(payload, MLXSW_REG_PFCC_ALL_PRIO); 4906 mlxsw_reg_pfcc_prio_mask_rx_set(payload, MLXSW_REG_PFCC_ALL_PRIO); 4907 mlxsw_reg_pfcc_pfctx_set(payload, pfc_en); 4908 mlxsw_reg_pfcc_pfcrx_set(payload, pfc_en); 4909 } 4910 4911 static inline void mlxsw_reg_pfcc_pack(char *payload, u16 local_port) 4912 { 4913 MLXSW_REG_ZERO(pfcc, payload); 4914 mlxsw_reg_pfcc_local_port_set(payload, local_port); 4915 } 4916 4917 /* PPCNT - Ports Performance Counters Register 4918 * ------------------------------------------- 4919 * The PPCNT register retrieves per port performance counters. 4920 */ 4921 #define MLXSW_REG_PPCNT_ID 0x5008 4922 #define MLXSW_REG_PPCNT_LEN 0x100 4923 #define MLXSW_REG_PPCNT_COUNTERS_OFFSET 0x08 4924 4925 MLXSW_REG_DEFINE(ppcnt, MLXSW_REG_PPCNT_ID, MLXSW_REG_PPCNT_LEN); 4926 4927 /* reg_ppcnt_swid 4928 * For HCA: must be always 0. 4929 * Switch partition ID to associate port with. 4930 * Switch partitions are numbered from 0 to 7 inclusively. 4931 * Switch partition 254 indicates stacking ports. 4932 * Switch partition 255 indicates all switch partitions. 4933 * Only valid on Set() operation with local_port=255. 4934 * Access: Index 4935 */ 4936 MLXSW_ITEM32(reg, ppcnt, swid, 0x00, 24, 8); 4937 4938 /* reg_ppcnt_local_port 4939 * Local port number. 4940 * Access: Index 4941 */ 4942 MLXSW_ITEM32_LP(reg, ppcnt, 0x00, 16, 0x00, 12); 4943 4944 /* reg_ppcnt_pnat 4945 * Port number access type: 4946 * 0 - Local port number 4947 * 1 - IB port number 4948 * Access: Index 4949 */ 4950 MLXSW_ITEM32(reg, ppcnt, pnat, 0x00, 14, 2); 4951 4952 enum mlxsw_reg_ppcnt_grp { 4953 MLXSW_REG_PPCNT_IEEE_8023_CNT = 0x0, 4954 MLXSW_REG_PPCNT_RFC_2863_CNT = 0x1, 4955 MLXSW_REG_PPCNT_RFC_2819_CNT = 0x2, 4956 MLXSW_REG_PPCNT_RFC_3635_CNT = 0x3, 4957 MLXSW_REG_PPCNT_EXT_CNT = 0x5, 4958 MLXSW_REG_PPCNT_DISCARD_CNT = 0x6, 4959 MLXSW_REG_PPCNT_PRIO_CNT = 0x10, 4960 MLXSW_REG_PPCNT_TC_CNT = 0x11, 4961 MLXSW_REG_PPCNT_TC_CONG_CNT = 0x13, 4962 }; 4963 4964 /* reg_ppcnt_grp 4965 * Performance counter group. 4966 * Group 63 indicates all groups. Only valid on Set() operation with 4967 * clr bit set. 4968 * 0x0: IEEE 802.3 Counters 4969 * 0x1: RFC 2863 Counters 4970 * 0x2: RFC 2819 Counters 4971 * 0x3: RFC 3635 Counters 4972 * 0x5: Ethernet Extended Counters 4973 * 0x6: Ethernet Discard Counters 4974 * 0x8: Link Level Retransmission Counters 4975 * 0x10: Per Priority Counters 4976 * 0x11: Per Traffic Class Counters 4977 * 0x12: Physical Layer Counters 4978 * 0x13: Per Traffic Class Congestion Counters 4979 * Access: Index 4980 */ 4981 MLXSW_ITEM32(reg, ppcnt, grp, 0x00, 0, 6); 4982 4983 /* reg_ppcnt_clr 4984 * Clear counters. Setting the clr bit will reset the counter value 4985 * for all counters in the counter group. This bit can be set 4986 * for both Set() and Get() operation. 4987 * Access: OP 4988 */ 4989 MLXSW_ITEM32(reg, ppcnt, clr, 0x04, 31, 1); 4990 4991 /* reg_ppcnt_lp_gl 4992 * Local port global variable. 4993 * 0: local_port 255 = all ports of the device. 4994 * 1: local_port indicates local port number for all ports. 4995 * Access: OP 4996 */ 4997 MLXSW_ITEM32(reg, ppcnt, lp_gl, 0x04, 30, 1); 4998 4999 /* reg_ppcnt_prio_tc 5000 * Priority for counter set that support per priority, valid values: 0-7. 5001 * Traffic class for counter set that support per traffic class, 5002 * valid values: 0- cap_max_tclass-1 . 5003 * For HCA: cap_max_tclass is always 8. 5004 * Otherwise must be 0. 5005 * Access: Index 5006 */ 5007 MLXSW_ITEM32(reg, ppcnt, prio_tc, 0x04, 0, 5); 5008 5009 /* Ethernet IEEE 802.3 Counter Group */ 5010 5011 /* reg_ppcnt_a_frames_transmitted_ok 5012 * Access: RO 5013 */ 5014 MLXSW_ITEM64(reg, ppcnt, a_frames_transmitted_ok, 5015 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64); 5016 5017 /* reg_ppcnt_a_frames_received_ok 5018 * Access: RO 5019 */ 5020 MLXSW_ITEM64(reg, ppcnt, a_frames_received_ok, 5021 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64); 5022 5023 /* reg_ppcnt_a_frame_check_sequence_errors 5024 * Access: RO 5025 */ 5026 MLXSW_ITEM64(reg, ppcnt, a_frame_check_sequence_errors, 5027 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x10, 0, 64); 5028 5029 /* reg_ppcnt_a_alignment_errors 5030 * Access: RO 5031 */ 5032 MLXSW_ITEM64(reg, ppcnt, a_alignment_errors, 5033 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x18, 0, 64); 5034 5035 /* reg_ppcnt_a_octets_transmitted_ok 5036 * Access: RO 5037 */ 5038 MLXSW_ITEM64(reg, ppcnt, a_octets_transmitted_ok, 5039 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x20, 0, 64); 5040 5041 /* reg_ppcnt_a_octets_received_ok 5042 * Access: RO 5043 */ 5044 MLXSW_ITEM64(reg, ppcnt, a_octets_received_ok, 5045 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x28, 0, 64); 5046 5047 /* reg_ppcnt_a_multicast_frames_xmitted_ok 5048 * Access: RO 5049 */ 5050 MLXSW_ITEM64(reg, ppcnt, a_multicast_frames_xmitted_ok, 5051 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x30, 0, 64); 5052 5053 /* reg_ppcnt_a_broadcast_frames_xmitted_ok 5054 * Access: RO 5055 */ 5056 MLXSW_ITEM64(reg, ppcnt, a_broadcast_frames_xmitted_ok, 5057 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x38, 0, 64); 5058 5059 /* reg_ppcnt_a_multicast_frames_received_ok 5060 * Access: RO 5061 */ 5062 MLXSW_ITEM64(reg, ppcnt, a_multicast_frames_received_ok, 5063 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x40, 0, 64); 5064 5065 /* reg_ppcnt_a_broadcast_frames_received_ok 5066 * Access: RO 5067 */ 5068 MLXSW_ITEM64(reg, ppcnt, a_broadcast_frames_received_ok, 5069 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x48, 0, 64); 5070 5071 /* reg_ppcnt_a_in_range_length_errors 5072 * Access: RO 5073 */ 5074 MLXSW_ITEM64(reg, ppcnt, a_in_range_length_errors, 5075 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x50, 0, 64); 5076 5077 /* reg_ppcnt_a_out_of_range_length_field 5078 * Access: RO 5079 */ 5080 MLXSW_ITEM64(reg, ppcnt, a_out_of_range_length_field, 5081 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x58, 0, 64); 5082 5083 /* reg_ppcnt_a_frame_too_long_errors 5084 * Access: RO 5085 */ 5086 MLXSW_ITEM64(reg, ppcnt, a_frame_too_long_errors, 5087 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64); 5088 5089 /* reg_ppcnt_a_symbol_error_during_carrier 5090 * Access: RO 5091 */ 5092 MLXSW_ITEM64(reg, ppcnt, a_symbol_error_during_carrier, 5093 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x68, 0, 64); 5094 5095 /* reg_ppcnt_a_mac_control_frames_transmitted 5096 * Access: RO 5097 */ 5098 MLXSW_ITEM64(reg, ppcnt, a_mac_control_frames_transmitted, 5099 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64); 5100 5101 /* reg_ppcnt_a_mac_control_frames_received 5102 * Access: RO 5103 */ 5104 MLXSW_ITEM64(reg, ppcnt, a_mac_control_frames_received, 5105 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x78, 0, 64); 5106 5107 /* reg_ppcnt_a_unsupported_opcodes_received 5108 * Access: RO 5109 */ 5110 MLXSW_ITEM64(reg, ppcnt, a_unsupported_opcodes_received, 5111 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x80, 0, 64); 5112 5113 /* reg_ppcnt_a_pause_mac_ctrl_frames_received 5114 * Access: RO 5115 */ 5116 MLXSW_ITEM64(reg, ppcnt, a_pause_mac_ctrl_frames_received, 5117 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x88, 0, 64); 5118 5119 /* reg_ppcnt_a_pause_mac_ctrl_frames_transmitted 5120 * Access: RO 5121 */ 5122 MLXSW_ITEM64(reg, ppcnt, a_pause_mac_ctrl_frames_transmitted, 5123 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x90, 0, 64); 5124 5125 /* Ethernet RFC 2863 Counter Group */ 5126 5127 /* reg_ppcnt_if_in_discards 5128 * Access: RO 5129 */ 5130 MLXSW_ITEM64(reg, ppcnt, if_in_discards, 5131 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x10, 0, 64); 5132 5133 /* reg_ppcnt_if_out_discards 5134 * Access: RO 5135 */ 5136 MLXSW_ITEM64(reg, ppcnt, if_out_discards, 5137 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x38, 0, 64); 5138 5139 /* reg_ppcnt_if_out_errors 5140 * Access: RO 5141 */ 5142 MLXSW_ITEM64(reg, ppcnt, if_out_errors, 5143 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x40, 0, 64); 5144 5145 /* Ethernet RFC 2819 Counter Group */ 5146 5147 /* reg_ppcnt_ether_stats_undersize_pkts 5148 * Access: RO 5149 */ 5150 MLXSW_ITEM64(reg, ppcnt, ether_stats_undersize_pkts, 5151 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x30, 0, 64); 5152 5153 /* reg_ppcnt_ether_stats_oversize_pkts 5154 * Access: RO 5155 */ 5156 MLXSW_ITEM64(reg, ppcnt, ether_stats_oversize_pkts, 5157 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x38, 0, 64); 5158 5159 /* reg_ppcnt_ether_stats_fragments 5160 * Access: RO 5161 */ 5162 MLXSW_ITEM64(reg, ppcnt, ether_stats_fragments, 5163 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x40, 0, 64); 5164 5165 /* reg_ppcnt_ether_stats_pkts64octets 5166 * Access: RO 5167 */ 5168 MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts64octets, 5169 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x58, 0, 64); 5170 5171 /* reg_ppcnt_ether_stats_pkts65to127octets 5172 * Access: RO 5173 */ 5174 MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts65to127octets, 5175 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64); 5176 5177 /* reg_ppcnt_ether_stats_pkts128to255octets 5178 * Access: RO 5179 */ 5180 MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts128to255octets, 5181 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x68, 0, 64); 5182 5183 /* reg_ppcnt_ether_stats_pkts256to511octets 5184 * Access: RO 5185 */ 5186 MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts256to511octets, 5187 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64); 5188 5189 /* reg_ppcnt_ether_stats_pkts512to1023octets 5190 * Access: RO 5191 */ 5192 MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts512to1023octets, 5193 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x78, 0, 64); 5194 5195 /* reg_ppcnt_ether_stats_pkts1024to1518octets 5196 * Access: RO 5197 */ 5198 MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts1024to1518octets, 5199 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x80, 0, 64); 5200 5201 /* reg_ppcnt_ether_stats_pkts1519to2047octets 5202 * Access: RO 5203 */ 5204 MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts1519to2047octets, 5205 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x88, 0, 64); 5206 5207 /* reg_ppcnt_ether_stats_pkts2048to4095octets 5208 * Access: RO 5209 */ 5210 MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts2048to4095octets, 5211 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x90, 0, 64); 5212 5213 /* reg_ppcnt_ether_stats_pkts4096to8191octets 5214 * Access: RO 5215 */ 5216 MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts4096to8191octets, 5217 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x98, 0, 64); 5218 5219 /* reg_ppcnt_ether_stats_pkts8192to10239octets 5220 * Access: RO 5221 */ 5222 MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts8192to10239octets, 5223 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0xA0, 0, 64); 5224 5225 /* Ethernet RFC 3635 Counter Group */ 5226 5227 /* reg_ppcnt_dot3stats_fcs_errors 5228 * Access: RO 5229 */ 5230 MLXSW_ITEM64(reg, ppcnt, dot3stats_fcs_errors, 5231 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64); 5232 5233 /* reg_ppcnt_dot3stats_symbol_errors 5234 * Access: RO 5235 */ 5236 MLXSW_ITEM64(reg, ppcnt, dot3stats_symbol_errors, 5237 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64); 5238 5239 /* reg_ppcnt_dot3control_in_unknown_opcodes 5240 * Access: RO 5241 */ 5242 MLXSW_ITEM64(reg, ppcnt, dot3control_in_unknown_opcodes, 5243 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x68, 0, 64); 5244 5245 /* reg_ppcnt_dot3in_pause_frames 5246 * Access: RO 5247 */ 5248 MLXSW_ITEM64(reg, ppcnt, dot3in_pause_frames, 5249 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64); 5250 5251 /* Ethernet Extended Counter Group Counters */ 5252 5253 /* reg_ppcnt_ecn_marked 5254 * Access: RO 5255 */ 5256 MLXSW_ITEM64(reg, ppcnt, ecn_marked, 5257 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64); 5258 5259 /* Ethernet Discard Counter Group Counters */ 5260 5261 /* reg_ppcnt_ingress_general 5262 * Access: RO 5263 */ 5264 MLXSW_ITEM64(reg, ppcnt, ingress_general, 5265 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64); 5266 5267 /* reg_ppcnt_ingress_policy_engine 5268 * Access: RO 5269 */ 5270 MLXSW_ITEM64(reg, ppcnt, ingress_policy_engine, 5271 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64); 5272 5273 /* reg_ppcnt_ingress_vlan_membership 5274 * Access: RO 5275 */ 5276 MLXSW_ITEM64(reg, ppcnt, ingress_vlan_membership, 5277 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x10, 0, 64); 5278 5279 /* reg_ppcnt_ingress_tag_frame_type 5280 * Access: RO 5281 */ 5282 MLXSW_ITEM64(reg, ppcnt, ingress_tag_frame_type, 5283 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x18, 0, 64); 5284 5285 /* reg_ppcnt_egress_vlan_membership 5286 * Access: RO 5287 */ 5288 MLXSW_ITEM64(reg, ppcnt, egress_vlan_membership, 5289 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x20, 0, 64); 5290 5291 /* reg_ppcnt_loopback_filter 5292 * Access: RO 5293 */ 5294 MLXSW_ITEM64(reg, ppcnt, loopback_filter, 5295 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x28, 0, 64); 5296 5297 /* reg_ppcnt_egress_general 5298 * Access: RO 5299 */ 5300 MLXSW_ITEM64(reg, ppcnt, egress_general, 5301 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x30, 0, 64); 5302 5303 /* reg_ppcnt_egress_hoq 5304 * Access: RO 5305 */ 5306 MLXSW_ITEM64(reg, ppcnt, egress_hoq, 5307 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x40, 0, 64); 5308 5309 /* reg_ppcnt_egress_policy_engine 5310 * Access: RO 5311 */ 5312 MLXSW_ITEM64(reg, ppcnt, egress_policy_engine, 5313 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x50, 0, 64); 5314 5315 /* reg_ppcnt_ingress_tx_link_down 5316 * Access: RO 5317 */ 5318 MLXSW_ITEM64(reg, ppcnt, ingress_tx_link_down, 5319 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x58, 0, 64); 5320 5321 /* reg_ppcnt_egress_stp_filter 5322 * Access: RO 5323 */ 5324 MLXSW_ITEM64(reg, ppcnt, egress_stp_filter, 5325 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64); 5326 5327 /* reg_ppcnt_egress_sll 5328 * Access: RO 5329 */ 5330 MLXSW_ITEM64(reg, ppcnt, egress_sll, 5331 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64); 5332 5333 /* Ethernet Per Priority Group Counters */ 5334 5335 /* reg_ppcnt_rx_octets 5336 * Access: RO 5337 */ 5338 MLXSW_ITEM64(reg, ppcnt, rx_octets, 5339 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64); 5340 5341 /* reg_ppcnt_rx_frames 5342 * Access: RO 5343 */ 5344 MLXSW_ITEM64(reg, ppcnt, rx_frames, 5345 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x20, 0, 64); 5346 5347 /* reg_ppcnt_tx_octets 5348 * Access: RO 5349 */ 5350 MLXSW_ITEM64(reg, ppcnt, tx_octets, 5351 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x28, 0, 64); 5352 5353 /* reg_ppcnt_tx_frames 5354 * Access: RO 5355 */ 5356 MLXSW_ITEM64(reg, ppcnt, tx_frames, 5357 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x48, 0, 64); 5358 5359 /* reg_ppcnt_rx_pause 5360 * Access: RO 5361 */ 5362 MLXSW_ITEM64(reg, ppcnt, rx_pause, 5363 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x50, 0, 64); 5364 5365 /* reg_ppcnt_rx_pause_duration 5366 * Access: RO 5367 */ 5368 MLXSW_ITEM64(reg, ppcnt, rx_pause_duration, 5369 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x58, 0, 64); 5370 5371 /* reg_ppcnt_tx_pause 5372 * Access: RO 5373 */ 5374 MLXSW_ITEM64(reg, ppcnt, tx_pause, 5375 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64); 5376 5377 /* reg_ppcnt_tx_pause_duration 5378 * Access: RO 5379 */ 5380 MLXSW_ITEM64(reg, ppcnt, tx_pause_duration, 5381 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x68, 0, 64); 5382 5383 /* reg_ppcnt_rx_pause_transition 5384 * Access: RO 5385 */ 5386 MLXSW_ITEM64(reg, ppcnt, tx_pause_transition, 5387 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64); 5388 5389 /* Ethernet Per Traffic Class Counters */ 5390 5391 /* reg_ppcnt_tc_transmit_queue 5392 * Contains the transmit queue depth in cells of traffic class 5393 * selected by prio_tc and the port selected by local_port. 5394 * The field cannot be cleared. 5395 * Access: RO 5396 */ 5397 MLXSW_ITEM64(reg, ppcnt, tc_transmit_queue, 5398 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64); 5399 5400 /* reg_ppcnt_tc_no_buffer_discard_uc 5401 * The number of unicast packets dropped due to lack of shared 5402 * buffer resources. 5403 * Access: RO 5404 */ 5405 MLXSW_ITEM64(reg, ppcnt, tc_no_buffer_discard_uc, 5406 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64); 5407 5408 /* Ethernet Per Traffic Class Congestion Group Counters */ 5409 5410 /* reg_ppcnt_wred_discard 5411 * Access: RO 5412 */ 5413 MLXSW_ITEM64(reg, ppcnt, wred_discard, 5414 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64); 5415 5416 /* reg_ppcnt_ecn_marked_tc 5417 * Access: RO 5418 */ 5419 MLXSW_ITEM64(reg, ppcnt, ecn_marked_tc, 5420 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64); 5421 5422 static inline void mlxsw_reg_ppcnt_pack(char *payload, u16 local_port, 5423 enum mlxsw_reg_ppcnt_grp grp, 5424 u8 prio_tc) 5425 { 5426 MLXSW_REG_ZERO(ppcnt, payload); 5427 mlxsw_reg_ppcnt_swid_set(payload, 0); 5428 mlxsw_reg_ppcnt_local_port_set(payload, local_port); 5429 mlxsw_reg_ppcnt_pnat_set(payload, 0); 5430 mlxsw_reg_ppcnt_grp_set(payload, grp); 5431 mlxsw_reg_ppcnt_clr_set(payload, 0); 5432 mlxsw_reg_ppcnt_lp_gl_set(payload, 1); 5433 mlxsw_reg_ppcnt_prio_tc_set(payload, prio_tc); 5434 } 5435 5436 /* PLIB - Port Local to InfiniBand Port 5437 * ------------------------------------ 5438 * The PLIB register performs mapping from Local Port into InfiniBand Port. 5439 */ 5440 #define MLXSW_REG_PLIB_ID 0x500A 5441 #define MLXSW_REG_PLIB_LEN 0x10 5442 5443 MLXSW_REG_DEFINE(plib, MLXSW_REG_PLIB_ID, MLXSW_REG_PLIB_LEN); 5444 5445 /* reg_plib_local_port 5446 * Local port number. 5447 * Access: Index 5448 */ 5449 MLXSW_ITEM32_LP(reg, plib, 0x00, 16, 0x00, 12); 5450 5451 /* reg_plib_ib_port 5452 * InfiniBand port remapping for local_port. 5453 * Access: RW 5454 */ 5455 MLXSW_ITEM32(reg, plib, ib_port, 0x00, 0, 8); 5456 5457 /* PPTB - Port Prio To Buffer Register 5458 * ----------------------------------- 5459 * Configures the switch priority to buffer table. 5460 */ 5461 #define MLXSW_REG_PPTB_ID 0x500B 5462 #define MLXSW_REG_PPTB_LEN 0x10 5463 5464 MLXSW_REG_DEFINE(pptb, MLXSW_REG_PPTB_ID, MLXSW_REG_PPTB_LEN); 5465 5466 enum { 5467 MLXSW_REG_PPTB_MM_UM, 5468 MLXSW_REG_PPTB_MM_UNICAST, 5469 MLXSW_REG_PPTB_MM_MULTICAST, 5470 }; 5471 5472 /* reg_pptb_mm 5473 * Mapping mode. 5474 * 0 - Map both unicast and multicast packets to the same buffer. 5475 * 1 - Map only unicast packets. 5476 * 2 - Map only multicast packets. 5477 * Access: Index 5478 * 5479 * Note: SwitchX-2 only supports the first option. 5480 */ 5481 MLXSW_ITEM32(reg, pptb, mm, 0x00, 28, 2); 5482 5483 /* reg_pptb_local_port 5484 * Local port number. 5485 * Access: Index 5486 */ 5487 MLXSW_ITEM32_LP(reg, pptb, 0x00, 16, 0x00, 12); 5488 5489 /* reg_pptb_um 5490 * Enables the update of the untagged_buf field. 5491 * Access: RW 5492 */ 5493 MLXSW_ITEM32(reg, pptb, um, 0x00, 8, 1); 5494 5495 /* reg_pptb_pm 5496 * Enables the update of the prio_to_buff field. 5497 * Bit <i> is a flag for updating the mapping for switch priority <i>. 5498 * Access: RW 5499 */ 5500 MLXSW_ITEM32(reg, pptb, pm, 0x00, 0, 8); 5501 5502 /* reg_pptb_prio_to_buff 5503 * Mapping of switch priority <i> to one of the allocated receive port 5504 * buffers. 5505 * Access: RW 5506 */ 5507 MLXSW_ITEM_BIT_ARRAY(reg, pptb, prio_to_buff, 0x04, 0x04, 4); 5508 5509 /* reg_pptb_pm_msb 5510 * Enables the update of the prio_to_buff field. 5511 * Bit <i> is a flag for updating the mapping for switch priority <i+8>. 5512 * Access: RW 5513 */ 5514 MLXSW_ITEM32(reg, pptb, pm_msb, 0x08, 24, 8); 5515 5516 /* reg_pptb_untagged_buff 5517 * Mapping of untagged frames to one of the allocated receive port buffers. 5518 * Access: RW 5519 * 5520 * Note: In SwitchX-2 this field must be mapped to buffer 8. Reserved for 5521 * Spectrum, as it maps untagged packets based on the default switch priority. 5522 */ 5523 MLXSW_ITEM32(reg, pptb, untagged_buff, 0x08, 0, 4); 5524 5525 /* reg_pptb_prio_to_buff_msb 5526 * Mapping of switch priority <i+8> to one of the allocated receive port 5527 * buffers. 5528 * Access: RW 5529 */ 5530 MLXSW_ITEM_BIT_ARRAY(reg, pptb, prio_to_buff_msb, 0x0C, 0x04, 4); 5531 5532 #define MLXSW_REG_PPTB_ALL_PRIO 0xFF 5533 5534 static inline void mlxsw_reg_pptb_pack(char *payload, u16 local_port) 5535 { 5536 MLXSW_REG_ZERO(pptb, payload); 5537 mlxsw_reg_pptb_mm_set(payload, MLXSW_REG_PPTB_MM_UM); 5538 mlxsw_reg_pptb_local_port_set(payload, local_port); 5539 mlxsw_reg_pptb_pm_set(payload, MLXSW_REG_PPTB_ALL_PRIO); 5540 mlxsw_reg_pptb_pm_msb_set(payload, MLXSW_REG_PPTB_ALL_PRIO); 5541 } 5542 5543 static inline void mlxsw_reg_pptb_prio_to_buff_pack(char *payload, u8 prio, 5544 u8 buff) 5545 { 5546 mlxsw_reg_pptb_prio_to_buff_set(payload, prio, buff); 5547 mlxsw_reg_pptb_prio_to_buff_msb_set(payload, prio, buff); 5548 } 5549 5550 /* PBMC - Port Buffer Management Control Register 5551 * ---------------------------------------------- 5552 * The PBMC register configures and retrieves the port packet buffer 5553 * allocation for different Prios, and the Pause threshold management. 5554 */ 5555 #define MLXSW_REG_PBMC_ID 0x500C 5556 #define MLXSW_REG_PBMC_LEN 0x6C 5557 5558 MLXSW_REG_DEFINE(pbmc, MLXSW_REG_PBMC_ID, MLXSW_REG_PBMC_LEN); 5559 5560 /* reg_pbmc_local_port 5561 * Local port number. 5562 * Access: Index 5563 */ 5564 MLXSW_ITEM32_LP(reg, pbmc, 0x00, 16, 0x00, 12); 5565 5566 /* reg_pbmc_xoff_timer_value 5567 * When device generates a pause frame, it uses this value as the pause 5568 * timer (time for the peer port to pause in quota-512 bit time). 5569 * Access: RW 5570 */ 5571 MLXSW_ITEM32(reg, pbmc, xoff_timer_value, 0x04, 16, 16); 5572 5573 /* reg_pbmc_xoff_refresh 5574 * The time before a new pause frame should be sent to refresh the pause RW 5575 * state. Using the same units as xoff_timer_value above (in quota-512 bit 5576 * time). 5577 * Access: RW 5578 */ 5579 MLXSW_ITEM32(reg, pbmc, xoff_refresh, 0x04, 0, 16); 5580 5581 #define MLXSW_REG_PBMC_PORT_SHARED_BUF_IDX 11 5582 5583 /* reg_pbmc_buf_lossy 5584 * The field indicates if the buffer is lossy. 5585 * 0 - Lossless 5586 * 1 - Lossy 5587 * Access: RW 5588 */ 5589 MLXSW_ITEM32_INDEXED(reg, pbmc, buf_lossy, 0x0C, 25, 1, 0x08, 0x00, false); 5590 5591 /* reg_pbmc_buf_epsb 5592 * Eligible for Port Shared buffer. 5593 * If epsb is set, packets assigned to buffer are allowed to insert the port 5594 * shared buffer. 5595 * When buf_lossy is MLXSW_REG_PBMC_LOSSY_LOSSY this field is reserved. 5596 * Access: RW 5597 */ 5598 MLXSW_ITEM32_INDEXED(reg, pbmc, buf_epsb, 0x0C, 24, 1, 0x08, 0x00, false); 5599 5600 /* reg_pbmc_buf_size 5601 * The part of the packet buffer array is allocated for the specific buffer. 5602 * Units are represented in cells. 5603 * Access: RW 5604 */ 5605 MLXSW_ITEM32_INDEXED(reg, pbmc, buf_size, 0x0C, 0, 16, 0x08, 0x00, false); 5606 5607 /* reg_pbmc_buf_xoff_threshold 5608 * Once the amount of data in the buffer goes above this value, device 5609 * starts sending PFC frames for all priorities associated with the 5610 * buffer. Units are represented in cells. Reserved in case of lossy 5611 * buffer. 5612 * Access: RW 5613 * 5614 * Note: In Spectrum, reserved for buffer[9]. 5615 */ 5616 MLXSW_ITEM32_INDEXED(reg, pbmc, buf_xoff_threshold, 0x0C, 16, 16, 5617 0x08, 0x04, false); 5618 5619 /* reg_pbmc_buf_xon_threshold 5620 * When the amount of data in the buffer goes below this value, device 5621 * stops sending PFC frames for the priorities associated with the 5622 * buffer. Units are represented in cells. Reserved in case of lossy 5623 * buffer. 5624 * Access: RW 5625 * 5626 * Note: In Spectrum, reserved for buffer[9]. 5627 */ 5628 MLXSW_ITEM32_INDEXED(reg, pbmc, buf_xon_threshold, 0x0C, 0, 16, 5629 0x08, 0x04, false); 5630 5631 static inline void mlxsw_reg_pbmc_pack(char *payload, u16 local_port, 5632 u16 xoff_timer_value, u16 xoff_refresh) 5633 { 5634 MLXSW_REG_ZERO(pbmc, payload); 5635 mlxsw_reg_pbmc_local_port_set(payload, local_port); 5636 mlxsw_reg_pbmc_xoff_timer_value_set(payload, xoff_timer_value); 5637 mlxsw_reg_pbmc_xoff_refresh_set(payload, xoff_refresh); 5638 } 5639 5640 static inline void mlxsw_reg_pbmc_lossy_buffer_pack(char *payload, 5641 int buf_index, 5642 u16 size) 5643 { 5644 mlxsw_reg_pbmc_buf_lossy_set(payload, buf_index, 1); 5645 mlxsw_reg_pbmc_buf_epsb_set(payload, buf_index, 0); 5646 mlxsw_reg_pbmc_buf_size_set(payload, buf_index, size); 5647 } 5648 5649 static inline void mlxsw_reg_pbmc_lossless_buffer_pack(char *payload, 5650 int buf_index, u16 size, 5651 u16 threshold) 5652 { 5653 mlxsw_reg_pbmc_buf_lossy_set(payload, buf_index, 0); 5654 mlxsw_reg_pbmc_buf_epsb_set(payload, buf_index, 0); 5655 mlxsw_reg_pbmc_buf_size_set(payload, buf_index, size); 5656 mlxsw_reg_pbmc_buf_xoff_threshold_set(payload, buf_index, threshold); 5657 mlxsw_reg_pbmc_buf_xon_threshold_set(payload, buf_index, threshold); 5658 } 5659 5660 /* PSPA - Port Switch Partition Allocation 5661 * --------------------------------------- 5662 * Controls the association of a port with a switch partition and enables 5663 * configuring ports as stacking ports. 5664 */ 5665 #define MLXSW_REG_PSPA_ID 0x500D 5666 #define MLXSW_REG_PSPA_LEN 0x8 5667 5668 MLXSW_REG_DEFINE(pspa, MLXSW_REG_PSPA_ID, MLXSW_REG_PSPA_LEN); 5669 5670 /* reg_pspa_swid 5671 * Switch partition ID. 5672 * Access: RW 5673 */ 5674 MLXSW_ITEM32(reg, pspa, swid, 0x00, 24, 8); 5675 5676 /* reg_pspa_local_port 5677 * Local port number. 5678 * Access: Index 5679 */ 5680 MLXSW_ITEM32_LP(reg, pspa, 0x00, 16, 0x00, 0); 5681 5682 /* reg_pspa_sub_port 5683 * Virtual port within the local port. Set to 0 when virtual ports are 5684 * disabled on the local port. 5685 * Access: Index 5686 */ 5687 MLXSW_ITEM32(reg, pspa, sub_port, 0x00, 8, 8); 5688 5689 static inline void mlxsw_reg_pspa_pack(char *payload, u8 swid, u16 local_port) 5690 { 5691 MLXSW_REG_ZERO(pspa, payload); 5692 mlxsw_reg_pspa_swid_set(payload, swid); 5693 mlxsw_reg_pspa_local_port_set(payload, local_port); 5694 mlxsw_reg_pspa_sub_port_set(payload, 0); 5695 } 5696 5697 /* PMAOS - Ports Module Administrative and Operational Status 5698 * ---------------------------------------------------------- 5699 * This register configures and retrieves the per module status. 5700 */ 5701 #define MLXSW_REG_PMAOS_ID 0x5012 5702 #define MLXSW_REG_PMAOS_LEN 0x10 5703 5704 MLXSW_REG_DEFINE(pmaos, MLXSW_REG_PMAOS_ID, MLXSW_REG_PMAOS_LEN); 5705 5706 /* reg_pmaos_rst 5707 * Module reset toggle. 5708 * Note: Setting reset while module is plugged-in will result in transition to 5709 * "initializing" operational state. 5710 * Access: OP 5711 */ 5712 MLXSW_ITEM32(reg, pmaos, rst, 0x00, 31, 1); 5713 5714 /* reg_pmaos_slot_index 5715 * Slot index. 5716 * Access: Index 5717 */ 5718 MLXSW_ITEM32(reg, pmaos, slot_index, 0x00, 24, 4); 5719 5720 /* reg_pmaos_module 5721 * Module number. 5722 * Access: Index 5723 */ 5724 MLXSW_ITEM32(reg, pmaos, module, 0x00, 16, 8); 5725 5726 enum mlxsw_reg_pmaos_admin_status { 5727 MLXSW_REG_PMAOS_ADMIN_STATUS_ENABLED = 1, 5728 MLXSW_REG_PMAOS_ADMIN_STATUS_DISABLED = 2, 5729 /* If the module is active and then unplugged, or experienced an error 5730 * event, the operational status should go to "disabled" and can only 5731 * be enabled upon explicit enable command. 5732 */ 5733 MLXSW_REG_PMAOS_ADMIN_STATUS_ENABLED_ONCE = 3, 5734 }; 5735 5736 /* reg_pmaos_admin_status 5737 * Module administrative state (the desired state of the module). 5738 * Note: To disable a module, all ports associated with the port must be 5739 * administatively down first. 5740 * Access: RW 5741 */ 5742 MLXSW_ITEM32(reg, pmaos, admin_status, 0x00, 8, 4); 5743 5744 /* reg_pmaos_ase 5745 * Admin state update enable. 5746 * If this bit is set, admin state will be updated based on admin_state field. 5747 * Only relevant on Set() operations. 5748 * Access: WO 5749 */ 5750 MLXSW_ITEM32(reg, pmaos, ase, 0x04, 31, 1); 5751 5752 /* reg_pmaos_ee 5753 * Event update enable. 5754 * If this bit is set, event generation will be updated based on the e field. 5755 * Only relevant on Set operations. 5756 * Access: WO 5757 */ 5758 MLXSW_ITEM32(reg, pmaos, ee, 0x04, 30, 1); 5759 5760 enum mlxsw_reg_pmaos_e { 5761 MLXSW_REG_PMAOS_E_DO_NOT_GENERATE_EVENT, 5762 MLXSW_REG_PMAOS_E_GENERATE_EVENT, 5763 MLXSW_REG_PMAOS_E_GENERATE_SINGLE_EVENT, 5764 }; 5765 5766 /* reg_pmaos_e 5767 * Event Generation on operational state change. 5768 * Access: RW 5769 */ 5770 MLXSW_ITEM32(reg, pmaos, e, 0x04, 0, 2); 5771 5772 static inline void mlxsw_reg_pmaos_pack(char *payload, u8 module) 5773 { 5774 MLXSW_REG_ZERO(pmaos, payload); 5775 mlxsw_reg_pmaos_module_set(payload, module); 5776 } 5777 5778 /* PPLR - Port Physical Loopback Register 5779 * -------------------------------------- 5780 * This register allows configuration of the port's loopback mode. 5781 */ 5782 #define MLXSW_REG_PPLR_ID 0x5018 5783 #define MLXSW_REG_PPLR_LEN 0x8 5784 5785 MLXSW_REG_DEFINE(pplr, MLXSW_REG_PPLR_ID, MLXSW_REG_PPLR_LEN); 5786 5787 /* reg_pplr_local_port 5788 * Local port number. 5789 * Access: Index 5790 */ 5791 MLXSW_ITEM32_LP(reg, pplr, 0x00, 16, 0x00, 12); 5792 5793 /* Phy local loopback. When set the port's egress traffic is looped back 5794 * to the receiver and the port transmitter is disabled. 5795 */ 5796 #define MLXSW_REG_PPLR_LB_TYPE_BIT_PHY_LOCAL BIT(1) 5797 5798 /* reg_pplr_lb_en 5799 * Loopback enable. 5800 * Access: RW 5801 */ 5802 MLXSW_ITEM32(reg, pplr, lb_en, 0x04, 0, 8); 5803 5804 static inline void mlxsw_reg_pplr_pack(char *payload, u16 local_port, 5805 bool phy_local) 5806 { 5807 MLXSW_REG_ZERO(pplr, payload); 5808 mlxsw_reg_pplr_local_port_set(payload, local_port); 5809 mlxsw_reg_pplr_lb_en_set(payload, 5810 phy_local ? 5811 MLXSW_REG_PPLR_LB_TYPE_BIT_PHY_LOCAL : 0); 5812 } 5813 5814 /* PMTDB - Port Module To local DataBase Register 5815 * ---------------------------------------------- 5816 * The PMTDB register allows to query the possible module<->local port 5817 * mapping than can be used in PMLP. It does not represent the actual/current 5818 * mapping of the local to module. Actual mapping is only defined by PMLP. 5819 */ 5820 #define MLXSW_REG_PMTDB_ID 0x501A 5821 #define MLXSW_REG_PMTDB_LEN 0x40 5822 5823 MLXSW_REG_DEFINE(pmtdb, MLXSW_REG_PMTDB_ID, MLXSW_REG_PMTDB_LEN); 5824 5825 /* reg_pmtdb_slot_index 5826 * Slot index (0: Main board). 5827 * Access: Index 5828 */ 5829 MLXSW_ITEM32(reg, pmtdb, slot_index, 0x00, 24, 4); 5830 5831 /* reg_pmtdb_module 5832 * Module number. 5833 * Access: Index 5834 */ 5835 MLXSW_ITEM32(reg, pmtdb, module, 0x00, 16, 8); 5836 5837 /* reg_pmtdb_ports_width 5838 * Port's width 5839 * Access: Index 5840 */ 5841 MLXSW_ITEM32(reg, pmtdb, ports_width, 0x00, 12, 4); 5842 5843 /* reg_pmtdb_num_ports 5844 * Number of ports in a single module (split/breakout) 5845 * Access: Index 5846 */ 5847 MLXSW_ITEM32(reg, pmtdb, num_ports, 0x00, 8, 4); 5848 5849 enum mlxsw_reg_pmtdb_status { 5850 MLXSW_REG_PMTDB_STATUS_SUCCESS, 5851 }; 5852 5853 /* reg_pmtdb_status 5854 * Status 5855 * Access: RO 5856 */ 5857 MLXSW_ITEM32(reg, pmtdb, status, 0x00, 0, 4); 5858 5859 /* reg_pmtdb_port_num 5860 * The local_port value which can be assigned to the module. 5861 * In case of more than one port, port<x> represent the /<x> port of 5862 * the module. 5863 * Access: RO 5864 */ 5865 MLXSW_ITEM16_INDEXED(reg, pmtdb, port_num, 0x04, 0, 10, 0x02, 0x00, false); 5866 5867 static inline void mlxsw_reg_pmtdb_pack(char *payload, u8 slot_index, u8 module, 5868 u8 ports_width, u8 num_ports) 5869 { 5870 MLXSW_REG_ZERO(pmtdb, payload); 5871 mlxsw_reg_pmtdb_slot_index_set(payload, slot_index); 5872 mlxsw_reg_pmtdb_module_set(payload, module); 5873 mlxsw_reg_pmtdb_ports_width_set(payload, ports_width); 5874 mlxsw_reg_pmtdb_num_ports_set(payload, num_ports); 5875 } 5876 5877 /* PMPE - Port Module Plug/Unplug Event Register 5878 * --------------------------------------------- 5879 * This register reports any operational status change of a module. 5880 * A change in the module’s state will generate an event only if the change 5881 * happens after arming the event mechanism. Any changes to the module state 5882 * while the event mechanism is not armed will not be reported. Software can 5883 * query the PMPE register for module status. 5884 */ 5885 #define MLXSW_REG_PMPE_ID 0x5024 5886 #define MLXSW_REG_PMPE_LEN 0x10 5887 5888 MLXSW_REG_DEFINE(pmpe, MLXSW_REG_PMPE_ID, MLXSW_REG_PMPE_LEN); 5889 5890 /* reg_pmpe_slot_index 5891 * Slot index. 5892 * Access: Index 5893 */ 5894 MLXSW_ITEM32(reg, pmpe, slot_index, 0x00, 24, 4); 5895 5896 /* reg_pmpe_module 5897 * Module number. 5898 * Access: Index 5899 */ 5900 MLXSW_ITEM32(reg, pmpe, module, 0x00, 16, 8); 5901 5902 enum mlxsw_reg_pmpe_module_status { 5903 MLXSW_REG_PMPE_MODULE_STATUS_PLUGGED_ENABLED = 1, 5904 MLXSW_REG_PMPE_MODULE_STATUS_UNPLUGGED, 5905 MLXSW_REG_PMPE_MODULE_STATUS_PLUGGED_ERROR, 5906 MLXSW_REG_PMPE_MODULE_STATUS_PLUGGED_DISABLED, 5907 }; 5908 5909 /* reg_pmpe_module_status 5910 * Module status. 5911 * Access: RO 5912 */ 5913 MLXSW_ITEM32(reg, pmpe, module_status, 0x00, 0, 4); 5914 5915 /* reg_pmpe_error_type 5916 * Module error details. 5917 * Access: RO 5918 */ 5919 MLXSW_ITEM32(reg, pmpe, error_type, 0x04, 8, 4); 5920 5921 /* PDDR - Port Diagnostics Database Register 5922 * ----------------------------------------- 5923 * The PDDR enables to read the Phy debug database 5924 */ 5925 #define MLXSW_REG_PDDR_ID 0x5031 5926 #define MLXSW_REG_PDDR_LEN 0x100 5927 5928 MLXSW_REG_DEFINE(pddr, MLXSW_REG_PDDR_ID, MLXSW_REG_PDDR_LEN); 5929 5930 /* reg_pddr_local_port 5931 * Local port number. 5932 * Access: Index 5933 */ 5934 MLXSW_ITEM32_LP(reg, pddr, 0x00, 16, 0x00, 12); 5935 5936 enum mlxsw_reg_pddr_page_select { 5937 MLXSW_REG_PDDR_PAGE_SELECT_TROUBLESHOOTING_INFO = 1, 5938 }; 5939 5940 /* reg_pddr_page_select 5941 * Page select index. 5942 * Access: Index 5943 */ 5944 MLXSW_ITEM32(reg, pddr, page_select, 0x04, 0, 8); 5945 5946 enum mlxsw_reg_pddr_trblsh_group_opcode { 5947 /* Monitor opcodes */ 5948 MLXSW_REG_PDDR_TRBLSH_GROUP_OPCODE_MONITOR, 5949 }; 5950 5951 /* reg_pddr_group_opcode 5952 * Group selector. 5953 * Access: Index 5954 */ 5955 MLXSW_ITEM32(reg, pddr, trblsh_group_opcode, 0x08, 0, 16); 5956 5957 /* reg_pddr_status_opcode 5958 * Group selector. 5959 * Access: RO 5960 */ 5961 MLXSW_ITEM32(reg, pddr, trblsh_status_opcode, 0x0C, 0, 16); 5962 5963 static inline void mlxsw_reg_pddr_pack(char *payload, u16 local_port, 5964 u8 page_select) 5965 { 5966 MLXSW_REG_ZERO(pddr, payload); 5967 mlxsw_reg_pddr_local_port_set(payload, local_port); 5968 mlxsw_reg_pddr_page_select_set(payload, page_select); 5969 } 5970 5971 /* PMMP - Port Module Memory Map Properties Register 5972 * ------------------------------------------------- 5973 * The PMMP register allows to override the module memory map advertisement. 5974 * The register can only be set when the module is disabled by PMAOS register. 5975 */ 5976 #define MLXSW_REG_PMMP_ID 0x5044 5977 #define MLXSW_REG_PMMP_LEN 0x2C 5978 5979 MLXSW_REG_DEFINE(pmmp, MLXSW_REG_PMMP_ID, MLXSW_REG_PMMP_LEN); 5980 5981 /* reg_pmmp_module 5982 * Module number. 5983 * Access: Index 5984 */ 5985 MLXSW_ITEM32(reg, pmmp, module, 0x00, 16, 8); 5986 5987 /* reg_pmmp_sticky 5988 * When set, will keep eeprom_override values after plug-out event. 5989 * Access: OP 5990 */ 5991 MLXSW_ITEM32(reg, pmmp, sticky, 0x00, 0, 1); 5992 5993 /* reg_pmmp_eeprom_override_mask 5994 * Write mask bit (negative polarity). 5995 * 0 - Allow write 5996 * 1 - Ignore write 5997 * On write, indicates which of the bits from eeprom_override field are 5998 * updated. 5999 * Access: WO 6000 */ 6001 MLXSW_ITEM32(reg, pmmp, eeprom_override_mask, 0x04, 16, 16); 6002 6003 enum { 6004 /* Set module to low power mode */ 6005 MLXSW_REG_PMMP_EEPROM_OVERRIDE_LOW_POWER_MASK = BIT(8), 6006 }; 6007 6008 /* reg_pmmp_eeprom_override 6009 * Override / ignore EEPROM advertisement properties bitmask 6010 * Access: RW 6011 */ 6012 MLXSW_ITEM32(reg, pmmp, eeprom_override, 0x04, 0, 16); 6013 6014 static inline void mlxsw_reg_pmmp_pack(char *payload, u8 module) 6015 { 6016 MLXSW_REG_ZERO(pmmp, payload); 6017 mlxsw_reg_pmmp_module_set(payload, module); 6018 } 6019 6020 /* PLLP - Port Local port to Label Port mapping Register 6021 * ----------------------------------------------------- 6022 * The PLLP register returns the mapping from Local Port into Label Port. 6023 */ 6024 #define MLXSW_REG_PLLP_ID 0x504A 6025 #define MLXSW_REG_PLLP_LEN 0x10 6026 6027 MLXSW_REG_DEFINE(pllp, MLXSW_REG_PLLP_ID, MLXSW_REG_PLLP_LEN); 6028 6029 /* reg_pllp_local_port 6030 * Local port number. 6031 * Access: Index 6032 */ 6033 MLXSW_ITEM32_LP(reg, pllp, 0x00, 16, 0x00, 12); 6034 6035 /* reg_pllp_label_port 6036 * Front panel label of the port. 6037 * Access: RO 6038 */ 6039 MLXSW_ITEM32(reg, pllp, label_port, 0x00, 0, 8); 6040 6041 /* reg_pllp_split_num 6042 * Label split mapping for local_port. 6043 * Access: RO 6044 */ 6045 MLXSW_ITEM32(reg, pllp, split_num, 0x04, 0, 4); 6046 6047 /* reg_pllp_slot_index 6048 * Slot index (0: Main board). 6049 * Access: RO 6050 */ 6051 MLXSW_ITEM32(reg, pllp, slot_index, 0x08, 0, 4); 6052 6053 static inline void mlxsw_reg_pllp_pack(char *payload, u16 local_port) 6054 { 6055 MLXSW_REG_ZERO(pllp, payload); 6056 mlxsw_reg_pllp_local_port_set(payload, local_port); 6057 } 6058 6059 static inline void mlxsw_reg_pllp_unpack(char *payload, u8 *label_port, 6060 u8 *split_num, u8 *slot_index) 6061 { 6062 *label_port = mlxsw_reg_pllp_label_port_get(payload); 6063 *split_num = mlxsw_reg_pllp_split_num_get(payload); 6064 *slot_index = mlxsw_reg_pllp_slot_index_get(payload); 6065 } 6066 6067 /* PMTM - Port Module Type Mapping Register 6068 * ---------------------------------------- 6069 * The PMTM register allows query or configuration of module types. 6070 * The register can only be set when the module is disabled by PMAOS register 6071 */ 6072 #define MLXSW_REG_PMTM_ID 0x5067 6073 #define MLXSW_REG_PMTM_LEN 0x10 6074 6075 MLXSW_REG_DEFINE(pmtm, MLXSW_REG_PMTM_ID, MLXSW_REG_PMTM_LEN); 6076 6077 /* reg_pmtm_slot_index 6078 * Slot index. 6079 * Access: Index 6080 */ 6081 MLXSW_ITEM32(reg, pmtm, slot_index, 0x00, 24, 4); 6082 6083 /* reg_pmtm_module 6084 * Module number. 6085 * Access: Index 6086 */ 6087 MLXSW_ITEM32(reg, pmtm, module, 0x00, 16, 8); 6088 6089 enum mlxsw_reg_pmtm_module_type { 6090 MLXSW_REG_PMTM_MODULE_TYPE_BACKPLANE_4_LANES = 0, 6091 MLXSW_REG_PMTM_MODULE_TYPE_QSFP = 1, 6092 MLXSW_REG_PMTM_MODULE_TYPE_SFP = 2, 6093 MLXSW_REG_PMTM_MODULE_TYPE_BACKPLANE_SINGLE_LANE = 4, 6094 MLXSW_REG_PMTM_MODULE_TYPE_BACKPLANE_2_LANES = 8, 6095 MLXSW_REG_PMTM_MODULE_TYPE_CHIP2CHIP4X = 10, 6096 MLXSW_REG_PMTM_MODULE_TYPE_CHIP2CHIP2X = 11, 6097 MLXSW_REG_PMTM_MODULE_TYPE_CHIP2CHIP1X = 12, 6098 MLXSW_REG_PMTM_MODULE_TYPE_QSFP_DD = 14, 6099 MLXSW_REG_PMTM_MODULE_TYPE_OSFP = 15, 6100 MLXSW_REG_PMTM_MODULE_TYPE_SFP_DD = 16, 6101 MLXSW_REG_PMTM_MODULE_TYPE_DSFP = 17, 6102 MLXSW_REG_PMTM_MODULE_TYPE_CHIP2CHIP8X = 18, 6103 MLXSW_REG_PMTM_MODULE_TYPE_TWISTED_PAIR = 19, 6104 }; 6105 6106 /* reg_pmtm_module_type 6107 * Module type. 6108 * Access: RW 6109 */ 6110 MLXSW_ITEM32(reg, pmtm, module_type, 0x04, 0, 5); 6111 6112 static inline void mlxsw_reg_pmtm_pack(char *payload, u8 slot_index, u8 module) 6113 { 6114 MLXSW_REG_ZERO(pmtm, payload); 6115 mlxsw_reg_pmtm_slot_index_set(payload, slot_index); 6116 mlxsw_reg_pmtm_module_set(payload, module); 6117 } 6118 6119 /* HTGT - Host Trap Group Table 6120 * ---------------------------- 6121 * Configures the properties for forwarding to CPU. 6122 */ 6123 #define MLXSW_REG_HTGT_ID 0x7002 6124 #define MLXSW_REG_HTGT_LEN 0x20 6125 6126 MLXSW_REG_DEFINE(htgt, MLXSW_REG_HTGT_ID, MLXSW_REG_HTGT_LEN); 6127 6128 /* reg_htgt_swid 6129 * Switch partition ID. 6130 * Access: Index 6131 */ 6132 MLXSW_ITEM32(reg, htgt, swid, 0x00, 24, 8); 6133 6134 #define MLXSW_REG_HTGT_PATH_TYPE_LOCAL 0x0 /* For locally attached CPU */ 6135 6136 /* reg_htgt_type 6137 * CPU path type. 6138 * Access: RW 6139 */ 6140 MLXSW_ITEM32(reg, htgt, type, 0x00, 8, 4); 6141 6142 enum mlxsw_reg_htgt_trap_group { 6143 MLXSW_REG_HTGT_TRAP_GROUP_EMAD, 6144 MLXSW_REG_HTGT_TRAP_GROUP_CORE_EVENT, 6145 MLXSW_REG_HTGT_TRAP_GROUP_SP_STP, 6146 MLXSW_REG_HTGT_TRAP_GROUP_SP_LACP, 6147 MLXSW_REG_HTGT_TRAP_GROUP_SP_LLDP, 6148 MLXSW_REG_HTGT_TRAP_GROUP_SP_MC_SNOOPING, 6149 MLXSW_REG_HTGT_TRAP_GROUP_SP_BGP, 6150 MLXSW_REG_HTGT_TRAP_GROUP_SP_OSPF, 6151 MLXSW_REG_HTGT_TRAP_GROUP_SP_PIM, 6152 MLXSW_REG_HTGT_TRAP_GROUP_SP_MULTICAST, 6153 MLXSW_REG_HTGT_TRAP_GROUP_SP_NEIGH_DISCOVERY, 6154 MLXSW_REG_HTGT_TRAP_GROUP_SP_ROUTER_EXP, 6155 MLXSW_REG_HTGT_TRAP_GROUP_SP_EXTERNAL_ROUTE, 6156 MLXSW_REG_HTGT_TRAP_GROUP_SP_IP2ME, 6157 MLXSW_REG_HTGT_TRAP_GROUP_SP_DHCP, 6158 MLXSW_REG_HTGT_TRAP_GROUP_SP_EVENT, 6159 MLXSW_REG_HTGT_TRAP_GROUP_SP_IPV6, 6160 MLXSW_REG_HTGT_TRAP_GROUP_SP_LBERROR, 6161 MLXSW_REG_HTGT_TRAP_GROUP_SP_PTP0, 6162 MLXSW_REG_HTGT_TRAP_GROUP_SP_PTP1, 6163 MLXSW_REG_HTGT_TRAP_GROUP_SP_VRRP, 6164 MLXSW_REG_HTGT_TRAP_GROUP_SP_PKT_SAMPLE, 6165 MLXSW_REG_HTGT_TRAP_GROUP_SP_FLOW_LOGGING, 6166 MLXSW_REG_HTGT_TRAP_GROUP_SP_FID_MISS, 6167 MLXSW_REG_HTGT_TRAP_GROUP_SP_BFD, 6168 MLXSW_REG_HTGT_TRAP_GROUP_SP_DUMMY, 6169 MLXSW_REG_HTGT_TRAP_GROUP_SP_L2_DISCARDS, 6170 MLXSW_REG_HTGT_TRAP_GROUP_SP_L3_DISCARDS, 6171 MLXSW_REG_HTGT_TRAP_GROUP_SP_L3_EXCEPTIONS, 6172 MLXSW_REG_HTGT_TRAP_GROUP_SP_TUNNEL_DISCARDS, 6173 MLXSW_REG_HTGT_TRAP_GROUP_SP_ACL_DISCARDS, 6174 MLXSW_REG_HTGT_TRAP_GROUP_SP_BUFFER_DISCARDS, 6175 6176 __MLXSW_REG_HTGT_TRAP_GROUP_MAX, 6177 MLXSW_REG_HTGT_TRAP_GROUP_MAX = __MLXSW_REG_HTGT_TRAP_GROUP_MAX - 1 6178 }; 6179 6180 /* reg_htgt_trap_group 6181 * Trap group number. User defined number specifying which trap groups 6182 * should be forwarded to the CPU. The mapping between trap IDs and trap 6183 * groups is configured using HPKT register. 6184 * Access: Index 6185 */ 6186 MLXSW_ITEM32(reg, htgt, trap_group, 0x00, 0, 8); 6187 6188 enum { 6189 MLXSW_REG_HTGT_POLICER_DISABLE, 6190 MLXSW_REG_HTGT_POLICER_ENABLE, 6191 }; 6192 6193 /* reg_htgt_pide 6194 * Enable policer ID specified using 'pid' field. 6195 * Access: RW 6196 */ 6197 MLXSW_ITEM32(reg, htgt, pide, 0x04, 15, 1); 6198 6199 #define MLXSW_REG_HTGT_INVALID_POLICER 0xff 6200 6201 /* reg_htgt_pid 6202 * Policer ID for the trap group. 6203 * Access: RW 6204 */ 6205 MLXSW_ITEM32(reg, htgt, pid, 0x04, 0, 8); 6206 6207 #define MLXSW_REG_HTGT_TRAP_TO_CPU 0x0 6208 6209 /* reg_htgt_mirror_action 6210 * Mirror action to use. 6211 * 0 - Trap to CPU. 6212 * 1 - Trap to CPU and mirror to a mirroring agent. 6213 * 2 - Mirror to a mirroring agent and do not trap to CPU. 6214 * Access: RW 6215 * 6216 * Note: Mirroring to a mirroring agent is only supported in Spectrum. 6217 */ 6218 MLXSW_ITEM32(reg, htgt, mirror_action, 0x08, 8, 2); 6219 6220 /* reg_htgt_mirroring_agent 6221 * Mirroring agent. 6222 * Access: RW 6223 */ 6224 MLXSW_ITEM32(reg, htgt, mirroring_agent, 0x08, 0, 3); 6225 6226 #define MLXSW_REG_HTGT_DEFAULT_PRIORITY 0 6227 6228 /* reg_htgt_priority 6229 * Trap group priority. 6230 * In case a packet matches multiple classification rules, the packet will 6231 * only be trapped once, based on the trap ID associated with the group (via 6232 * register HPKT) with the highest priority. 6233 * Supported values are 0-7, with 7 represnting the highest priority. 6234 * Access: RW 6235 * 6236 * Note: In SwitchX-2 this field is ignored and the priority value is replaced 6237 * by the 'trap_group' field. 6238 */ 6239 MLXSW_ITEM32(reg, htgt, priority, 0x0C, 0, 4); 6240 6241 #define MLXSW_REG_HTGT_DEFAULT_TC 7 6242 6243 /* reg_htgt_local_path_cpu_tclass 6244 * CPU ingress traffic class for the trap group. 6245 * Access: RW 6246 */ 6247 MLXSW_ITEM32(reg, htgt, local_path_cpu_tclass, 0x10, 16, 6); 6248 6249 enum mlxsw_reg_htgt_local_path_rdq { 6250 MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_CTRL = 0x13, 6251 MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_RX = 0x14, 6252 MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_EMAD = 0x15, 6253 MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SIB_EMAD = 0x15, 6254 }; 6255 /* reg_htgt_local_path_rdq 6256 * Receive descriptor queue (RDQ) to use for the trap group. 6257 * Access: RW 6258 */ 6259 MLXSW_ITEM32(reg, htgt, local_path_rdq, 0x10, 0, 6); 6260 6261 static inline void mlxsw_reg_htgt_pack(char *payload, u8 group, u8 policer_id, 6262 u8 priority, u8 tc) 6263 { 6264 MLXSW_REG_ZERO(htgt, payload); 6265 6266 if (policer_id == MLXSW_REG_HTGT_INVALID_POLICER) { 6267 mlxsw_reg_htgt_pide_set(payload, 6268 MLXSW_REG_HTGT_POLICER_DISABLE); 6269 } else { 6270 mlxsw_reg_htgt_pide_set(payload, 6271 MLXSW_REG_HTGT_POLICER_ENABLE); 6272 mlxsw_reg_htgt_pid_set(payload, policer_id); 6273 } 6274 6275 mlxsw_reg_htgt_type_set(payload, MLXSW_REG_HTGT_PATH_TYPE_LOCAL); 6276 mlxsw_reg_htgt_trap_group_set(payload, group); 6277 mlxsw_reg_htgt_mirror_action_set(payload, MLXSW_REG_HTGT_TRAP_TO_CPU); 6278 mlxsw_reg_htgt_mirroring_agent_set(payload, 0); 6279 mlxsw_reg_htgt_priority_set(payload, priority); 6280 mlxsw_reg_htgt_local_path_cpu_tclass_set(payload, tc); 6281 mlxsw_reg_htgt_local_path_rdq_set(payload, group); 6282 } 6283 6284 /* HPKT - Host Packet Trap 6285 * ----------------------- 6286 * Configures trap IDs inside trap groups. 6287 */ 6288 #define MLXSW_REG_HPKT_ID 0x7003 6289 #define MLXSW_REG_HPKT_LEN 0x10 6290 6291 MLXSW_REG_DEFINE(hpkt, MLXSW_REG_HPKT_ID, MLXSW_REG_HPKT_LEN); 6292 6293 enum { 6294 MLXSW_REG_HPKT_ACK_NOT_REQUIRED, 6295 MLXSW_REG_HPKT_ACK_REQUIRED, 6296 }; 6297 6298 /* reg_hpkt_ack 6299 * Require acknowledgements from the host for events. 6300 * If set, then the device will wait for the event it sent to be acknowledged 6301 * by the host. This option is only relevant for event trap IDs. 6302 * Access: RW 6303 * 6304 * Note: Currently not supported by firmware. 6305 */ 6306 MLXSW_ITEM32(reg, hpkt, ack, 0x00, 24, 1); 6307 6308 enum mlxsw_reg_hpkt_action { 6309 MLXSW_REG_HPKT_ACTION_FORWARD, 6310 MLXSW_REG_HPKT_ACTION_TRAP_TO_CPU, 6311 MLXSW_REG_HPKT_ACTION_MIRROR_TO_CPU, 6312 MLXSW_REG_HPKT_ACTION_DISCARD, 6313 MLXSW_REG_HPKT_ACTION_SOFT_DISCARD, 6314 MLXSW_REG_HPKT_ACTION_TRAP_AND_SOFT_DISCARD, 6315 MLXSW_REG_HPKT_ACTION_TRAP_EXCEPTION_TO_CPU, 6316 MLXSW_REG_HPKT_ACTION_SET_FW_DEFAULT = 15, 6317 }; 6318 6319 /* reg_hpkt_action 6320 * Action to perform on packet when trapped. 6321 * 0 - No action. Forward to CPU based on switching rules. 6322 * 1 - Trap to CPU (CPU receives sole copy). 6323 * 2 - Mirror to CPU (CPU receives a replica of the packet). 6324 * 3 - Discard. 6325 * 4 - Soft discard (allow other traps to act on the packet). 6326 * 5 - Trap and soft discard (allow other traps to overwrite this trap). 6327 * 6 - Trap to CPU (CPU receives sole copy) and count it as error. 6328 * 15 - Restore the firmware's default action. 6329 * Access: RW 6330 * 6331 * Note: Must be set to 0 (forward) for event trap IDs, as they are already 6332 * addressed to the CPU. 6333 */ 6334 MLXSW_ITEM32(reg, hpkt, action, 0x00, 20, 3); 6335 6336 /* reg_hpkt_trap_group 6337 * Trap group to associate the trap with. 6338 * Access: RW 6339 */ 6340 MLXSW_ITEM32(reg, hpkt, trap_group, 0x00, 12, 6); 6341 6342 /* reg_hpkt_trap_id 6343 * Trap ID. 6344 * Access: Index 6345 * 6346 * Note: A trap ID can only be associated with a single trap group. The device 6347 * will associate the trap ID with the last trap group configured. 6348 */ 6349 MLXSW_ITEM32(reg, hpkt, trap_id, 0x00, 0, 10); 6350 6351 enum { 6352 MLXSW_REG_HPKT_CTRL_PACKET_DEFAULT, 6353 MLXSW_REG_HPKT_CTRL_PACKET_NO_BUFFER, 6354 MLXSW_REG_HPKT_CTRL_PACKET_USE_BUFFER, 6355 }; 6356 6357 /* reg_hpkt_ctrl 6358 * Configure dedicated buffer resources for control packets. 6359 * Ignored by SwitchX-2. 6360 * 0 - Keep factory defaults. 6361 * 1 - Do not use control buffer for this trap ID. 6362 * 2 - Use control buffer for this trap ID. 6363 * Access: RW 6364 */ 6365 MLXSW_ITEM32(reg, hpkt, ctrl, 0x04, 16, 2); 6366 6367 static inline void mlxsw_reg_hpkt_pack(char *payload, u8 action, u16 trap_id, 6368 enum mlxsw_reg_htgt_trap_group trap_group, 6369 bool is_ctrl) 6370 { 6371 MLXSW_REG_ZERO(hpkt, payload); 6372 mlxsw_reg_hpkt_ack_set(payload, MLXSW_REG_HPKT_ACK_NOT_REQUIRED); 6373 mlxsw_reg_hpkt_action_set(payload, action); 6374 mlxsw_reg_hpkt_trap_group_set(payload, trap_group); 6375 mlxsw_reg_hpkt_trap_id_set(payload, trap_id); 6376 mlxsw_reg_hpkt_ctrl_set(payload, is_ctrl ? 6377 MLXSW_REG_HPKT_CTRL_PACKET_USE_BUFFER : 6378 MLXSW_REG_HPKT_CTRL_PACKET_NO_BUFFER); 6379 } 6380 6381 /* RGCR - Router General Configuration Register 6382 * -------------------------------------------- 6383 * The register is used for setting up the router configuration. 6384 */ 6385 #define MLXSW_REG_RGCR_ID 0x8001 6386 #define MLXSW_REG_RGCR_LEN 0x28 6387 6388 MLXSW_REG_DEFINE(rgcr, MLXSW_REG_RGCR_ID, MLXSW_REG_RGCR_LEN); 6389 6390 /* reg_rgcr_ipv4_en 6391 * IPv4 router enable. 6392 * Access: RW 6393 */ 6394 MLXSW_ITEM32(reg, rgcr, ipv4_en, 0x00, 31, 1); 6395 6396 /* reg_rgcr_ipv6_en 6397 * IPv6 router enable. 6398 * Access: RW 6399 */ 6400 MLXSW_ITEM32(reg, rgcr, ipv6_en, 0x00, 30, 1); 6401 6402 /* reg_rgcr_max_router_interfaces 6403 * Defines the maximum number of active router interfaces for all virtual 6404 * routers. 6405 * Access: RW 6406 */ 6407 MLXSW_ITEM32(reg, rgcr, max_router_interfaces, 0x10, 0, 16); 6408 6409 /* reg_rgcr_usp 6410 * Update switch priority and packet color. 6411 * 0 - Preserve the value of Switch Priority and packet color. 6412 * 1 - Recalculate the value of Switch Priority and packet color. 6413 * Access: RW 6414 * 6415 * Note: Not supported by SwitchX and SwitchX-2. 6416 */ 6417 MLXSW_ITEM32(reg, rgcr, usp, 0x18, 20, 1); 6418 6419 /* reg_rgcr_pcp_rw 6420 * Indicates how to handle the pcp_rewrite_en value: 6421 * 0 - Preserve the value of pcp_rewrite_en. 6422 * 2 - Disable PCP rewrite. 6423 * 3 - Enable PCP rewrite. 6424 * Access: RW 6425 * 6426 * Note: Not supported by SwitchX and SwitchX-2. 6427 */ 6428 MLXSW_ITEM32(reg, rgcr, pcp_rw, 0x18, 16, 2); 6429 6430 /* reg_rgcr_activity_dis 6431 * Activity disable: 6432 * 0 - Activity will be set when an entry is hit (default). 6433 * 1 - Activity will not be set when an entry is hit. 6434 * 6435 * Bit 0 - Disable activity bit in Router Algorithmic LPM Unicast Entry 6436 * (RALUE). 6437 * Bit 1 - Disable activity bit in Router Algorithmic LPM Unicast Host 6438 * Entry (RAUHT). 6439 * Bits 2:7 are reserved. 6440 * Access: RW 6441 * 6442 * Note: Not supported by SwitchX, SwitchX-2 and Switch-IB. 6443 */ 6444 MLXSW_ITEM32(reg, rgcr, activity_dis, 0x20, 0, 8); 6445 6446 static inline void mlxsw_reg_rgcr_pack(char *payload, bool ipv4_en, 6447 bool ipv6_en) 6448 { 6449 MLXSW_REG_ZERO(rgcr, payload); 6450 mlxsw_reg_rgcr_ipv4_en_set(payload, ipv4_en); 6451 mlxsw_reg_rgcr_ipv6_en_set(payload, ipv6_en); 6452 } 6453 6454 /* RITR - Router Interface Table Register 6455 * -------------------------------------- 6456 * The register is used to configure the router interface table. 6457 */ 6458 #define MLXSW_REG_RITR_ID 0x8002 6459 #define MLXSW_REG_RITR_LEN 0x40 6460 6461 MLXSW_REG_DEFINE(ritr, MLXSW_REG_RITR_ID, MLXSW_REG_RITR_LEN); 6462 6463 /* reg_ritr_enable 6464 * Enables routing on the router interface. 6465 * Access: RW 6466 */ 6467 MLXSW_ITEM32(reg, ritr, enable, 0x00, 31, 1); 6468 6469 /* reg_ritr_ipv4 6470 * IPv4 routing enable. Enables routing of IPv4 traffic on the router 6471 * interface. 6472 * Access: RW 6473 */ 6474 MLXSW_ITEM32(reg, ritr, ipv4, 0x00, 29, 1); 6475 6476 /* reg_ritr_ipv6 6477 * IPv6 routing enable. Enables routing of IPv6 traffic on the router 6478 * interface. 6479 * Access: RW 6480 */ 6481 MLXSW_ITEM32(reg, ritr, ipv6, 0x00, 28, 1); 6482 6483 /* reg_ritr_ipv4_mc 6484 * IPv4 multicast routing enable. 6485 * Access: RW 6486 */ 6487 MLXSW_ITEM32(reg, ritr, ipv4_mc, 0x00, 27, 1); 6488 6489 /* reg_ritr_ipv6_mc 6490 * IPv6 multicast routing enable. 6491 * Access: RW 6492 */ 6493 MLXSW_ITEM32(reg, ritr, ipv6_mc, 0x00, 26, 1); 6494 6495 enum mlxsw_reg_ritr_if_type { 6496 /* VLAN interface. */ 6497 MLXSW_REG_RITR_VLAN_IF, 6498 /* FID interface. */ 6499 MLXSW_REG_RITR_FID_IF, 6500 /* Sub-port interface. */ 6501 MLXSW_REG_RITR_SP_IF, 6502 /* Loopback Interface. */ 6503 MLXSW_REG_RITR_LOOPBACK_IF, 6504 }; 6505 6506 /* reg_ritr_type 6507 * Router interface type as per enum mlxsw_reg_ritr_if_type. 6508 * Access: RW 6509 */ 6510 MLXSW_ITEM32(reg, ritr, type, 0x00, 23, 3); 6511 6512 enum { 6513 MLXSW_REG_RITR_RIF_CREATE, 6514 MLXSW_REG_RITR_RIF_DEL, 6515 }; 6516 6517 /* reg_ritr_op 6518 * Opcode: 6519 * 0 - Create or edit RIF. 6520 * 1 - Delete RIF. 6521 * Reserved for SwitchX-2. For Spectrum, editing of interface properties 6522 * is not supported. An interface must be deleted and re-created in order 6523 * to update properties. 6524 * Access: WO 6525 */ 6526 MLXSW_ITEM32(reg, ritr, op, 0x00, 20, 2); 6527 6528 /* reg_ritr_rif 6529 * Router interface index. A pointer to the Router Interface Table. 6530 * Access: Index 6531 */ 6532 MLXSW_ITEM32(reg, ritr, rif, 0x00, 0, 16); 6533 6534 /* reg_ritr_ipv4_fe 6535 * IPv4 Forwarding Enable. 6536 * Enables routing of IPv4 traffic on the router interface. When disabled, 6537 * forwarding is blocked but local traffic (traps and IP2ME) will be enabled. 6538 * Not supported in SwitchX-2. 6539 * Access: RW 6540 */ 6541 MLXSW_ITEM32(reg, ritr, ipv4_fe, 0x04, 29, 1); 6542 6543 /* reg_ritr_ipv6_fe 6544 * IPv6 Forwarding Enable. 6545 * Enables routing of IPv6 traffic on the router interface. When disabled, 6546 * forwarding is blocked but local traffic (traps and IP2ME) will be enabled. 6547 * Not supported in SwitchX-2. 6548 * Access: RW 6549 */ 6550 MLXSW_ITEM32(reg, ritr, ipv6_fe, 0x04, 28, 1); 6551 6552 /* reg_ritr_ipv4_mc_fe 6553 * IPv4 Multicast Forwarding Enable. 6554 * When disabled, forwarding is blocked but local traffic (traps and IP to me) 6555 * will be enabled. 6556 * Access: RW 6557 */ 6558 MLXSW_ITEM32(reg, ritr, ipv4_mc_fe, 0x04, 27, 1); 6559 6560 /* reg_ritr_ipv6_mc_fe 6561 * IPv6 Multicast Forwarding Enable. 6562 * When disabled, forwarding is blocked but local traffic (traps and IP to me) 6563 * will be enabled. 6564 * Access: RW 6565 */ 6566 MLXSW_ITEM32(reg, ritr, ipv6_mc_fe, 0x04, 26, 1); 6567 6568 /* reg_ritr_lb_en 6569 * Loop-back filter enable for unicast packets. 6570 * If the flag is set then loop-back filter for unicast packets is 6571 * implemented on the RIF. Multicast packets are always subject to 6572 * loop-back filtering. 6573 * Access: RW 6574 */ 6575 MLXSW_ITEM32(reg, ritr, lb_en, 0x04, 24, 1); 6576 6577 /* reg_ritr_virtual_router 6578 * Virtual router ID associated with the router interface. 6579 * Access: RW 6580 */ 6581 MLXSW_ITEM32(reg, ritr, virtual_router, 0x04, 0, 16); 6582 6583 /* reg_ritr_mtu 6584 * Router interface MTU. 6585 * Access: RW 6586 */ 6587 MLXSW_ITEM32(reg, ritr, mtu, 0x34, 0, 16); 6588 6589 /* reg_ritr_if_swid 6590 * Switch partition ID. 6591 * Access: RW 6592 */ 6593 MLXSW_ITEM32(reg, ritr, if_swid, 0x08, 24, 8); 6594 6595 /* reg_ritr_if_mac_profile_id 6596 * MAC msb profile ID. 6597 * Access: RW 6598 */ 6599 MLXSW_ITEM32(reg, ritr, if_mac_profile_id, 0x10, 16, 4); 6600 6601 /* reg_ritr_if_mac 6602 * Router interface MAC address. 6603 * In Spectrum, all MAC addresses must have the same 38 MSBits. 6604 * Access: RW 6605 */ 6606 MLXSW_ITEM_BUF(reg, ritr, if_mac, 0x12, 6); 6607 6608 /* reg_ritr_if_vrrp_id_ipv6 6609 * VRRP ID for IPv6 6610 * Note: Reserved for RIF types other than VLAN, FID and Sub-port. 6611 * Access: RW 6612 */ 6613 MLXSW_ITEM32(reg, ritr, if_vrrp_id_ipv6, 0x1C, 8, 8); 6614 6615 /* reg_ritr_if_vrrp_id_ipv4 6616 * VRRP ID for IPv4 6617 * Note: Reserved for RIF types other than VLAN, FID and Sub-port. 6618 * Access: RW 6619 */ 6620 MLXSW_ITEM32(reg, ritr, if_vrrp_id_ipv4, 0x1C, 0, 8); 6621 6622 /* VLAN Interface */ 6623 6624 /* reg_ritr_vlan_if_vid 6625 * VLAN ID. 6626 * Access: RW 6627 */ 6628 MLXSW_ITEM32(reg, ritr, vlan_if_vid, 0x08, 0, 12); 6629 6630 /* FID Interface */ 6631 6632 /* reg_ritr_fid_if_fid 6633 * Filtering ID. Used to connect a bridge to the router. Only FIDs from 6634 * the vFID range are supported. 6635 * Access: RW 6636 */ 6637 MLXSW_ITEM32(reg, ritr, fid_if_fid, 0x08, 0, 16); 6638 6639 static inline void mlxsw_reg_ritr_fid_set(char *payload, 6640 enum mlxsw_reg_ritr_if_type rif_type, 6641 u16 fid) 6642 { 6643 if (rif_type == MLXSW_REG_RITR_FID_IF) 6644 mlxsw_reg_ritr_fid_if_fid_set(payload, fid); 6645 else 6646 mlxsw_reg_ritr_vlan_if_vid_set(payload, fid); 6647 } 6648 6649 /* Sub-port Interface */ 6650 6651 /* reg_ritr_sp_if_lag 6652 * LAG indication. When this bit is set the system_port field holds the 6653 * LAG identifier. 6654 * Access: RW 6655 */ 6656 MLXSW_ITEM32(reg, ritr, sp_if_lag, 0x08, 24, 1); 6657 6658 /* reg_ritr_sp_system_port 6659 * Port unique indentifier. When lag bit is set, this field holds the 6660 * lag_id in bits 0:9. 6661 * Access: RW 6662 */ 6663 MLXSW_ITEM32(reg, ritr, sp_if_system_port, 0x08, 0, 16); 6664 6665 /* reg_ritr_sp_if_vid 6666 * VLAN ID. 6667 * Access: RW 6668 */ 6669 MLXSW_ITEM32(reg, ritr, sp_if_vid, 0x18, 0, 12); 6670 6671 /* Loopback Interface */ 6672 6673 enum mlxsw_reg_ritr_loopback_protocol { 6674 /* IPinIP IPv4 underlay Unicast */ 6675 MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV4, 6676 /* IPinIP IPv6 underlay Unicast */ 6677 MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV6, 6678 /* IPinIP generic - used for Spectrum-2 underlay RIF */ 6679 MLXSW_REG_RITR_LOOPBACK_GENERIC, 6680 }; 6681 6682 /* reg_ritr_loopback_protocol 6683 * Access: RW 6684 */ 6685 MLXSW_ITEM32(reg, ritr, loopback_protocol, 0x08, 28, 4); 6686 6687 enum mlxsw_reg_ritr_loopback_ipip_type { 6688 /* Tunnel is IPinIP. */ 6689 MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_IP, 6690 /* Tunnel is GRE, no key. */ 6691 MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_GRE_IN_IP, 6692 /* Tunnel is GRE, with a key. */ 6693 MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_GRE_KEY_IN_IP, 6694 }; 6695 6696 /* reg_ritr_loopback_ipip_type 6697 * Encapsulation type. 6698 * Access: RW 6699 */ 6700 MLXSW_ITEM32(reg, ritr, loopback_ipip_type, 0x10, 24, 4); 6701 6702 enum mlxsw_reg_ritr_loopback_ipip_options { 6703 /* The key is defined by gre_key. */ 6704 MLXSW_REG_RITR_LOOPBACK_IPIP_OPTIONS_GRE_KEY_PRESET, 6705 }; 6706 6707 /* reg_ritr_loopback_ipip_options 6708 * Access: RW 6709 */ 6710 MLXSW_ITEM32(reg, ritr, loopback_ipip_options, 0x10, 20, 4); 6711 6712 /* reg_ritr_loopback_ipip_uvr 6713 * Underlay Virtual Router ID. 6714 * Range is 0..cap_max_virtual_routers-1. 6715 * Reserved for Spectrum-2. 6716 * Access: RW 6717 */ 6718 MLXSW_ITEM32(reg, ritr, loopback_ipip_uvr, 0x10, 0, 16); 6719 6720 /* reg_ritr_loopback_ipip_underlay_rif 6721 * Underlay ingress router interface. 6722 * Reserved for Spectrum. 6723 * Access: RW 6724 */ 6725 MLXSW_ITEM32(reg, ritr, loopback_ipip_underlay_rif, 0x14, 0, 16); 6726 6727 /* reg_ritr_loopback_ipip_usip* 6728 * Encapsulation Underlay source IP. 6729 * Access: RW 6730 */ 6731 MLXSW_ITEM_BUF(reg, ritr, loopback_ipip_usip6, 0x18, 16); 6732 MLXSW_ITEM32(reg, ritr, loopback_ipip_usip4, 0x24, 0, 32); 6733 6734 /* reg_ritr_loopback_ipip_gre_key 6735 * GRE Key. 6736 * Reserved when ipip_type is not IP_IN_GRE_KEY_IN_IP. 6737 * Access: RW 6738 */ 6739 MLXSW_ITEM32(reg, ritr, loopback_ipip_gre_key, 0x28, 0, 32); 6740 6741 /* Shared between ingress/egress */ 6742 enum mlxsw_reg_ritr_counter_set_type { 6743 /* No Count. */ 6744 MLXSW_REG_RITR_COUNTER_SET_TYPE_NO_COUNT = 0x0, 6745 /* Basic. Used for router interfaces, counting the following: 6746 * - Error and Discard counters. 6747 * - Unicast, Multicast and Broadcast counters. Sharing the 6748 * same set of counters for the different type of traffic 6749 * (IPv4, IPv6 and mpls). 6750 */ 6751 MLXSW_REG_RITR_COUNTER_SET_TYPE_BASIC = 0x9, 6752 }; 6753 6754 /* reg_ritr_ingress_counter_index 6755 * Counter Index for flow counter. 6756 * Access: RW 6757 */ 6758 MLXSW_ITEM32(reg, ritr, ingress_counter_index, 0x38, 0, 24); 6759 6760 /* reg_ritr_ingress_counter_set_type 6761 * Igress Counter Set Type for router interface counter. 6762 * Access: RW 6763 */ 6764 MLXSW_ITEM32(reg, ritr, ingress_counter_set_type, 0x38, 24, 8); 6765 6766 /* reg_ritr_egress_counter_index 6767 * Counter Index for flow counter. 6768 * Access: RW 6769 */ 6770 MLXSW_ITEM32(reg, ritr, egress_counter_index, 0x3C, 0, 24); 6771 6772 /* reg_ritr_egress_counter_set_type 6773 * Egress Counter Set Type for router interface counter. 6774 * Access: RW 6775 */ 6776 MLXSW_ITEM32(reg, ritr, egress_counter_set_type, 0x3C, 24, 8); 6777 6778 static inline void mlxsw_reg_ritr_counter_pack(char *payload, u32 index, 6779 bool enable, bool egress) 6780 { 6781 enum mlxsw_reg_ritr_counter_set_type set_type; 6782 6783 if (enable) 6784 set_type = MLXSW_REG_RITR_COUNTER_SET_TYPE_BASIC; 6785 else 6786 set_type = MLXSW_REG_RITR_COUNTER_SET_TYPE_NO_COUNT; 6787 mlxsw_reg_ritr_egress_counter_set_type_set(payload, set_type); 6788 6789 if (egress) 6790 mlxsw_reg_ritr_egress_counter_index_set(payload, index); 6791 else 6792 mlxsw_reg_ritr_ingress_counter_index_set(payload, index); 6793 } 6794 6795 static inline void mlxsw_reg_ritr_rif_pack(char *payload, u16 rif) 6796 { 6797 MLXSW_REG_ZERO(ritr, payload); 6798 mlxsw_reg_ritr_rif_set(payload, rif); 6799 } 6800 6801 static inline void mlxsw_reg_ritr_sp_if_pack(char *payload, bool lag, 6802 u16 system_port, u16 vid) 6803 { 6804 mlxsw_reg_ritr_sp_if_lag_set(payload, lag); 6805 mlxsw_reg_ritr_sp_if_system_port_set(payload, system_port); 6806 mlxsw_reg_ritr_sp_if_vid_set(payload, vid); 6807 } 6808 6809 static inline void mlxsw_reg_ritr_pack(char *payload, bool enable, 6810 enum mlxsw_reg_ritr_if_type type, 6811 u16 rif, u16 vr_id, u16 mtu) 6812 { 6813 bool op = enable ? MLXSW_REG_RITR_RIF_CREATE : MLXSW_REG_RITR_RIF_DEL; 6814 6815 MLXSW_REG_ZERO(ritr, payload); 6816 mlxsw_reg_ritr_enable_set(payload, enable); 6817 mlxsw_reg_ritr_ipv4_set(payload, 1); 6818 mlxsw_reg_ritr_ipv6_set(payload, 1); 6819 mlxsw_reg_ritr_ipv4_mc_set(payload, 1); 6820 mlxsw_reg_ritr_ipv6_mc_set(payload, 1); 6821 mlxsw_reg_ritr_type_set(payload, type); 6822 mlxsw_reg_ritr_op_set(payload, op); 6823 mlxsw_reg_ritr_rif_set(payload, rif); 6824 mlxsw_reg_ritr_ipv4_fe_set(payload, 1); 6825 mlxsw_reg_ritr_ipv6_fe_set(payload, 1); 6826 mlxsw_reg_ritr_ipv4_mc_fe_set(payload, 1); 6827 mlxsw_reg_ritr_ipv6_mc_fe_set(payload, 1); 6828 mlxsw_reg_ritr_lb_en_set(payload, 1); 6829 mlxsw_reg_ritr_virtual_router_set(payload, vr_id); 6830 mlxsw_reg_ritr_mtu_set(payload, mtu); 6831 } 6832 6833 static inline void mlxsw_reg_ritr_mac_pack(char *payload, const char *mac) 6834 { 6835 mlxsw_reg_ritr_if_mac_memcpy_to(payload, mac); 6836 } 6837 6838 static inline void 6839 mlxsw_reg_ritr_loopback_ipip_common_pack(char *payload, 6840 enum mlxsw_reg_ritr_loopback_ipip_type ipip_type, 6841 enum mlxsw_reg_ritr_loopback_ipip_options options, 6842 u16 uvr_id, u16 underlay_rif, u32 gre_key) 6843 { 6844 mlxsw_reg_ritr_loopback_ipip_type_set(payload, ipip_type); 6845 mlxsw_reg_ritr_loopback_ipip_options_set(payload, options); 6846 mlxsw_reg_ritr_loopback_ipip_uvr_set(payload, uvr_id); 6847 mlxsw_reg_ritr_loopback_ipip_underlay_rif_set(payload, underlay_rif); 6848 mlxsw_reg_ritr_loopback_ipip_gre_key_set(payload, gre_key); 6849 } 6850 6851 static inline void 6852 mlxsw_reg_ritr_loopback_ipip4_pack(char *payload, 6853 enum mlxsw_reg_ritr_loopback_ipip_type ipip_type, 6854 enum mlxsw_reg_ritr_loopback_ipip_options options, 6855 u16 uvr_id, u16 underlay_rif, u32 usip, u32 gre_key) 6856 { 6857 mlxsw_reg_ritr_loopback_protocol_set(payload, 6858 MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV4); 6859 mlxsw_reg_ritr_loopback_ipip_common_pack(payload, ipip_type, options, 6860 uvr_id, underlay_rif, gre_key); 6861 mlxsw_reg_ritr_loopback_ipip_usip4_set(payload, usip); 6862 } 6863 6864 static inline void 6865 mlxsw_reg_ritr_loopback_ipip6_pack(char *payload, 6866 enum mlxsw_reg_ritr_loopback_ipip_type ipip_type, 6867 enum mlxsw_reg_ritr_loopback_ipip_options options, 6868 u16 uvr_id, u16 underlay_rif, 6869 const struct in6_addr *usip, u32 gre_key) 6870 { 6871 enum mlxsw_reg_ritr_loopback_protocol protocol = 6872 MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV6; 6873 6874 mlxsw_reg_ritr_loopback_protocol_set(payload, protocol); 6875 mlxsw_reg_ritr_loopback_ipip_common_pack(payload, ipip_type, options, 6876 uvr_id, underlay_rif, gre_key); 6877 mlxsw_reg_ritr_loopback_ipip_usip6_memcpy_to(payload, 6878 (const char *)usip); 6879 } 6880 6881 /* RTAR - Router TCAM Allocation Register 6882 * -------------------------------------- 6883 * This register is used for allocation of regions in the TCAM table. 6884 */ 6885 #define MLXSW_REG_RTAR_ID 0x8004 6886 #define MLXSW_REG_RTAR_LEN 0x20 6887 6888 MLXSW_REG_DEFINE(rtar, MLXSW_REG_RTAR_ID, MLXSW_REG_RTAR_LEN); 6889 6890 enum mlxsw_reg_rtar_op { 6891 MLXSW_REG_RTAR_OP_ALLOCATE, 6892 MLXSW_REG_RTAR_OP_RESIZE, 6893 MLXSW_REG_RTAR_OP_DEALLOCATE, 6894 }; 6895 6896 /* reg_rtar_op 6897 * Access: WO 6898 */ 6899 MLXSW_ITEM32(reg, rtar, op, 0x00, 28, 4); 6900 6901 enum mlxsw_reg_rtar_key_type { 6902 MLXSW_REG_RTAR_KEY_TYPE_IPV4_MULTICAST = 1, 6903 MLXSW_REG_RTAR_KEY_TYPE_IPV6_MULTICAST = 3 6904 }; 6905 6906 /* reg_rtar_key_type 6907 * TCAM key type for the region. 6908 * Access: WO 6909 */ 6910 MLXSW_ITEM32(reg, rtar, key_type, 0x00, 0, 8); 6911 6912 /* reg_rtar_region_size 6913 * TCAM region size. When allocating/resizing this is the requested 6914 * size, the response is the actual size. 6915 * Note: Actual size may be larger than requested. 6916 * Reserved for op = Deallocate 6917 * Access: WO 6918 */ 6919 MLXSW_ITEM32(reg, rtar, region_size, 0x04, 0, 16); 6920 6921 static inline void mlxsw_reg_rtar_pack(char *payload, 6922 enum mlxsw_reg_rtar_op op, 6923 enum mlxsw_reg_rtar_key_type key_type, 6924 u16 region_size) 6925 { 6926 MLXSW_REG_ZERO(rtar, payload); 6927 mlxsw_reg_rtar_op_set(payload, op); 6928 mlxsw_reg_rtar_key_type_set(payload, key_type); 6929 mlxsw_reg_rtar_region_size_set(payload, region_size); 6930 } 6931 6932 /* RATR - Router Adjacency Table Register 6933 * -------------------------------------- 6934 * The RATR register is used to configure the Router Adjacency (next-hop) 6935 * Table. 6936 */ 6937 #define MLXSW_REG_RATR_ID 0x8008 6938 #define MLXSW_REG_RATR_LEN 0x2C 6939 6940 MLXSW_REG_DEFINE(ratr, MLXSW_REG_RATR_ID, MLXSW_REG_RATR_LEN); 6941 6942 enum mlxsw_reg_ratr_op { 6943 /* Read */ 6944 MLXSW_REG_RATR_OP_QUERY_READ = 0, 6945 /* Read and clear activity */ 6946 MLXSW_REG_RATR_OP_QUERY_READ_CLEAR = 2, 6947 /* Write Adjacency entry */ 6948 MLXSW_REG_RATR_OP_WRITE_WRITE_ENTRY = 1, 6949 /* Write Adjacency entry only if the activity is cleared. 6950 * The write may not succeed if the activity is set. There is not 6951 * direct feedback if the write has succeeded or not, however 6952 * the get will reveal the actual entry (SW can compare the get 6953 * response to the set command). 6954 */ 6955 MLXSW_REG_RATR_OP_WRITE_WRITE_ENTRY_ON_ACTIVITY = 3, 6956 }; 6957 6958 /* reg_ratr_op 6959 * Note that Write operation may also be used for updating 6960 * counter_set_type and counter_index. In this case all other 6961 * fields must not be updated. 6962 * Access: OP 6963 */ 6964 MLXSW_ITEM32(reg, ratr, op, 0x00, 28, 4); 6965 6966 /* reg_ratr_v 6967 * Valid bit. Indicates if the adjacency entry is valid. 6968 * Note: the device may need some time before reusing an invalidated 6969 * entry. During this time the entry can not be reused. It is 6970 * recommended to use another entry before reusing an invalidated 6971 * entry (e.g. software can put it at the end of the list for 6972 * reusing). Trying to access an invalidated entry not yet cleared 6973 * by the device results with failure indicating "Try Again" status. 6974 * When valid is '0' then egress_router_interface,trap_action, 6975 * adjacency_parameters and counters are reserved 6976 * Access: RW 6977 */ 6978 MLXSW_ITEM32(reg, ratr, v, 0x00, 24, 1); 6979 6980 /* reg_ratr_a 6981 * Activity. Set for new entries. Set if a packet lookup has hit on 6982 * the specific entry. To clear the a bit, use "clear activity". 6983 * Access: RO 6984 */ 6985 MLXSW_ITEM32(reg, ratr, a, 0x00, 16, 1); 6986 6987 enum mlxsw_reg_ratr_type { 6988 /* Ethernet */ 6989 MLXSW_REG_RATR_TYPE_ETHERNET, 6990 /* IPoIB Unicast without GRH. 6991 * Reserved for Spectrum. 6992 */ 6993 MLXSW_REG_RATR_TYPE_IPOIB_UC, 6994 /* IPoIB Unicast with GRH. Supported only in table 0 (Ethernet unicast 6995 * adjacency). 6996 * Reserved for Spectrum. 6997 */ 6998 MLXSW_REG_RATR_TYPE_IPOIB_UC_W_GRH, 6999 /* IPoIB Multicast. 7000 * Reserved for Spectrum. 7001 */ 7002 MLXSW_REG_RATR_TYPE_IPOIB_MC, 7003 /* MPLS. 7004 * Reserved for SwitchX/-2. 7005 */ 7006 MLXSW_REG_RATR_TYPE_MPLS, 7007 /* IPinIP Encap. 7008 * Reserved for SwitchX/-2. 7009 */ 7010 MLXSW_REG_RATR_TYPE_IPIP, 7011 }; 7012 7013 /* reg_ratr_type 7014 * Adjacency entry type. 7015 * Access: RW 7016 */ 7017 MLXSW_ITEM32(reg, ratr, type, 0x04, 28, 4); 7018 7019 /* reg_ratr_adjacency_index_low 7020 * Bits 15:0 of index into the adjacency table. 7021 * For SwitchX and SwitchX-2, the adjacency table is linear and 7022 * used for adjacency entries only. 7023 * For Spectrum, the index is to the KVD linear. 7024 * Access: Index 7025 */ 7026 MLXSW_ITEM32(reg, ratr, adjacency_index_low, 0x04, 0, 16); 7027 7028 /* reg_ratr_egress_router_interface 7029 * Range is 0 .. cap_max_router_interfaces - 1 7030 * Access: RW 7031 */ 7032 MLXSW_ITEM32(reg, ratr, egress_router_interface, 0x08, 0, 16); 7033 7034 enum mlxsw_reg_ratr_trap_action { 7035 MLXSW_REG_RATR_TRAP_ACTION_NOP, 7036 MLXSW_REG_RATR_TRAP_ACTION_TRAP, 7037 MLXSW_REG_RATR_TRAP_ACTION_MIRROR_TO_CPU, 7038 MLXSW_REG_RATR_TRAP_ACTION_MIRROR, 7039 MLXSW_REG_RATR_TRAP_ACTION_DISCARD_ERRORS, 7040 }; 7041 7042 /* reg_ratr_trap_action 7043 * see mlxsw_reg_ratr_trap_action 7044 * Access: RW 7045 */ 7046 MLXSW_ITEM32(reg, ratr, trap_action, 0x0C, 28, 4); 7047 7048 /* reg_ratr_adjacency_index_high 7049 * Bits 23:16 of the adjacency_index. 7050 * Access: Index 7051 */ 7052 MLXSW_ITEM32(reg, ratr, adjacency_index_high, 0x0C, 16, 8); 7053 7054 enum mlxsw_reg_ratr_trap_id { 7055 MLXSW_REG_RATR_TRAP_ID_RTR_EGRESS0, 7056 MLXSW_REG_RATR_TRAP_ID_RTR_EGRESS1, 7057 }; 7058 7059 /* reg_ratr_trap_id 7060 * Trap ID to be reported to CPU. 7061 * Trap-ID is RTR_EGRESS0 or RTR_EGRESS1. 7062 * For trap_action of NOP, MIRROR and DISCARD_ERROR 7063 * Access: RW 7064 */ 7065 MLXSW_ITEM32(reg, ratr, trap_id, 0x0C, 0, 8); 7066 7067 /* reg_ratr_eth_destination_mac 7068 * MAC address of the destination next-hop. 7069 * Access: RW 7070 */ 7071 MLXSW_ITEM_BUF(reg, ratr, eth_destination_mac, 0x12, 6); 7072 7073 enum mlxsw_reg_ratr_ipip_type { 7074 /* IPv4, address set by mlxsw_reg_ratr_ipip_ipv4_udip. */ 7075 MLXSW_REG_RATR_IPIP_TYPE_IPV4, 7076 /* IPv6, address set by mlxsw_reg_ratr_ipip_ipv6_ptr. */ 7077 MLXSW_REG_RATR_IPIP_TYPE_IPV6, 7078 }; 7079 7080 /* reg_ratr_ipip_type 7081 * Underlay destination ip type. 7082 * Note: the type field must match the protocol of the router interface. 7083 * Access: RW 7084 */ 7085 MLXSW_ITEM32(reg, ratr, ipip_type, 0x10, 16, 4); 7086 7087 /* reg_ratr_ipip_ipv4_udip 7088 * Underlay ipv4 dip. 7089 * Reserved when ipip_type is IPv6. 7090 * Access: RW 7091 */ 7092 MLXSW_ITEM32(reg, ratr, ipip_ipv4_udip, 0x18, 0, 32); 7093 7094 /* reg_ratr_ipip_ipv6_ptr 7095 * Pointer to IPv6 underlay destination ip address. 7096 * For Spectrum: Pointer to KVD linear space. 7097 * Access: RW 7098 */ 7099 MLXSW_ITEM32(reg, ratr, ipip_ipv6_ptr, 0x1C, 0, 24); 7100 7101 enum mlxsw_reg_flow_counter_set_type { 7102 /* No count */ 7103 MLXSW_REG_FLOW_COUNTER_SET_TYPE_NO_COUNT = 0x00, 7104 /* Count packets and bytes */ 7105 MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES = 0x03, 7106 /* Count only packets */ 7107 MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS = 0x05, 7108 }; 7109 7110 /* reg_ratr_counter_set_type 7111 * Counter set type for flow counters 7112 * Access: RW 7113 */ 7114 MLXSW_ITEM32(reg, ratr, counter_set_type, 0x28, 24, 8); 7115 7116 /* reg_ratr_counter_index 7117 * Counter index for flow counters 7118 * Access: RW 7119 */ 7120 MLXSW_ITEM32(reg, ratr, counter_index, 0x28, 0, 24); 7121 7122 static inline void 7123 mlxsw_reg_ratr_pack(char *payload, 7124 enum mlxsw_reg_ratr_op op, bool valid, 7125 enum mlxsw_reg_ratr_type type, 7126 u32 adjacency_index, u16 egress_rif) 7127 { 7128 MLXSW_REG_ZERO(ratr, payload); 7129 mlxsw_reg_ratr_op_set(payload, op); 7130 mlxsw_reg_ratr_v_set(payload, valid); 7131 mlxsw_reg_ratr_type_set(payload, type); 7132 mlxsw_reg_ratr_adjacency_index_low_set(payload, adjacency_index); 7133 mlxsw_reg_ratr_adjacency_index_high_set(payload, adjacency_index >> 16); 7134 mlxsw_reg_ratr_egress_router_interface_set(payload, egress_rif); 7135 } 7136 7137 static inline void mlxsw_reg_ratr_eth_entry_pack(char *payload, 7138 const char *dest_mac) 7139 { 7140 mlxsw_reg_ratr_eth_destination_mac_memcpy_to(payload, dest_mac); 7141 } 7142 7143 static inline void mlxsw_reg_ratr_ipip4_entry_pack(char *payload, u32 ipv4_udip) 7144 { 7145 mlxsw_reg_ratr_ipip_type_set(payload, MLXSW_REG_RATR_IPIP_TYPE_IPV4); 7146 mlxsw_reg_ratr_ipip_ipv4_udip_set(payload, ipv4_udip); 7147 } 7148 7149 static inline void mlxsw_reg_ratr_ipip6_entry_pack(char *payload, u32 ipv6_ptr) 7150 { 7151 mlxsw_reg_ratr_ipip_type_set(payload, MLXSW_REG_RATR_IPIP_TYPE_IPV6); 7152 mlxsw_reg_ratr_ipip_ipv6_ptr_set(payload, ipv6_ptr); 7153 } 7154 7155 static inline void mlxsw_reg_ratr_counter_pack(char *payload, u64 counter_index, 7156 bool counter_enable) 7157 { 7158 enum mlxsw_reg_flow_counter_set_type set_type; 7159 7160 if (counter_enable) 7161 set_type = MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES; 7162 else 7163 set_type = MLXSW_REG_FLOW_COUNTER_SET_TYPE_NO_COUNT; 7164 7165 mlxsw_reg_ratr_counter_index_set(payload, counter_index); 7166 mlxsw_reg_ratr_counter_set_type_set(payload, set_type); 7167 } 7168 7169 /* RDPM - Router DSCP to Priority Mapping 7170 * -------------------------------------- 7171 * Controls the mapping from DSCP field to switch priority on routed packets 7172 */ 7173 #define MLXSW_REG_RDPM_ID 0x8009 7174 #define MLXSW_REG_RDPM_BASE_LEN 0x00 7175 #define MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN 0x01 7176 #define MLXSW_REG_RDPM_DSCP_ENTRY_REC_MAX_COUNT 64 7177 #define MLXSW_REG_RDPM_LEN 0x40 7178 #define MLXSW_REG_RDPM_LAST_ENTRY (MLXSW_REG_RDPM_BASE_LEN + \ 7179 MLXSW_REG_RDPM_LEN - \ 7180 MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN) 7181 7182 MLXSW_REG_DEFINE(rdpm, MLXSW_REG_RDPM_ID, MLXSW_REG_RDPM_LEN); 7183 7184 /* reg_dscp_entry_e 7185 * Enable update of the specific entry 7186 * Access: Index 7187 */ 7188 MLXSW_ITEM8_INDEXED(reg, rdpm, dscp_entry_e, MLXSW_REG_RDPM_LAST_ENTRY, 7, 1, 7189 -MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN, 0x00, false); 7190 7191 /* reg_dscp_entry_prio 7192 * Switch Priority 7193 * Access: RW 7194 */ 7195 MLXSW_ITEM8_INDEXED(reg, rdpm, dscp_entry_prio, MLXSW_REG_RDPM_LAST_ENTRY, 0, 4, 7196 -MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN, 0x00, false); 7197 7198 static inline void mlxsw_reg_rdpm_pack(char *payload, unsigned short index, 7199 u8 prio) 7200 { 7201 mlxsw_reg_rdpm_dscp_entry_e_set(payload, index, 1); 7202 mlxsw_reg_rdpm_dscp_entry_prio_set(payload, index, prio); 7203 } 7204 7205 /* RICNT - Router Interface Counter Register 7206 * ----------------------------------------- 7207 * The RICNT register retrieves per port performance counters 7208 */ 7209 #define MLXSW_REG_RICNT_ID 0x800B 7210 #define MLXSW_REG_RICNT_LEN 0x100 7211 7212 MLXSW_REG_DEFINE(ricnt, MLXSW_REG_RICNT_ID, MLXSW_REG_RICNT_LEN); 7213 7214 /* reg_ricnt_counter_index 7215 * Counter index 7216 * Access: RW 7217 */ 7218 MLXSW_ITEM32(reg, ricnt, counter_index, 0x04, 0, 24); 7219 7220 enum mlxsw_reg_ricnt_counter_set_type { 7221 /* No Count. */ 7222 MLXSW_REG_RICNT_COUNTER_SET_TYPE_NO_COUNT = 0x00, 7223 /* Basic. Used for router interfaces, counting the following: 7224 * - Error and Discard counters. 7225 * - Unicast, Multicast and Broadcast counters. Sharing the 7226 * same set of counters for the different type of traffic 7227 * (IPv4, IPv6 and mpls). 7228 */ 7229 MLXSW_REG_RICNT_COUNTER_SET_TYPE_BASIC = 0x09, 7230 }; 7231 7232 /* reg_ricnt_counter_set_type 7233 * Counter Set Type for router interface counter 7234 * Access: RW 7235 */ 7236 MLXSW_ITEM32(reg, ricnt, counter_set_type, 0x04, 24, 8); 7237 7238 enum mlxsw_reg_ricnt_opcode { 7239 /* Nop. Supported only for read access*/ 7240 MLXSW_REG_RICNT_OPCODE_NOP = 0x00, 7241 /* Clear. Setting the clr bit will reset the counter value for 7242 * all counters of the specified Router Interface. 7243 */ 7244 MLXSW_REG_RICNT_OPCODE_CLEAR = 0x08, 7245 }; 7246 7247 /* reg_ricnt_opcode 7248 * Opcode 7249 * Access: RW 7250 */ 7251 MLXSW_ITEM32(reg, ricnt, op, 0x00, 28, 4); 7252 7253 /* reg_ricnt_good_unicast_packets 7254 * good unicast packets. 7255 * Access: RW 7256 */ 7257 MLXSW_ITEM64(reg, ricnt, good_unicast_packets, 0x08, 0, 64); 7258 7259 /* reg_ricnt_good_multicast_packets 7260 * good multicast packets. 7261 * Access: RW 7262 */ 7263 MLXSW_ITEM64(reg, ricnt, good_multicast_packets, 0x10, 0, 64); 7264 7265 /* reg_ricnt_good_broadcast_packets 7266 * good broadcast packets 7267 * Access: RW 7268 */ 7269 MLXSW_ITEM64(reg, ricnt, good_broadcast_packets, 0x18, 0, 64); 7270 7271 /* reg_ricnt_good_unicast_bytes 7272 * A count of L3 data and padding octets not including L2 headers 7273 * for good unicast frames. 7274 * Access: RW 7275 */ 7276 MLXSW_ITEM64(reg, ricnt, good_unicast_bytes, 0x20, 0, 64); 7277 7278 /* reg_ricnt_good_multicast_bytes 7279 * A count of L3 data and padding octets not including L2 headers 7280 * for good multicast frames. 7281 * Access: RW 7282 */ 7283 MLXSW_ITEM64(reg, ricnt, good_multicast_bytes, 0x28, 0, 64); 7284 7285 /* reg_ritr_good_broadcast_bytes 7286 * A count of L3 data and padding octets not including L2 headers 7287 * for good broadcast frames. 7288 * Access: RW 7289 */ 7290 MLXSW_ITEM64(reg, ricnt, good_broadcast_bytes, 0x30, 0, 64); 7291 7292 /* reg_ricnt_error_packets 7293 * A count of errored frames that do not pass the router checks. 7294 * Access: RW 7295 */ 7296 MLXSW_ITEM64(reg, ricnt, error_packets, 0x38, 0, 64); 7297 7298 /* reg_ricnt_discrad_packets 7299 * A count of non-errored frames that do not pass the router checks. 7300 * Access: RW 7301 */ 7302 MLXSW_ITEM64(reg, ricnt, discard_packets, 0x40, 0, 64); 7303 7304 /* reg_ricnt_error_bytes 7305 * A count of L3 data and padding octets not including L2 headers 7306 * for errored frames. 7307 * Access: RW 7308 */ 7309 MLXSW_ITEM64(reg, ricnt, error_bytes, 0x48, 0, 64); 7310 7311 /* reg_ricnt_discard_bytes 7312 * A count of L3 data and padding octets not including L2 headers 7313 * for non-errored frames that do not pass the router checks. 7314 * Access: RW 7315 */ 7316 MLXSW_ITEM64(reg, ricnt, discard_bytes, 0x50, 0, 64); 7317 7318 static inline void mlxsw_reg_ricnt_pack(char *payload, u32 index, 7319 enum mlxsw_reg_ricnt_opcode op) 7320 { 7321 MLXSW_REG_ZERO(ricnt, payload); 7322 mlxsw_reg_ricnt_op_set(payload, op); 7323 mlxsw_reg_ricnt_counter_index_set(payload, index); 7324 mlxsw_reg_ricnt_counter_set_type_set(payload, 7325 MLXSW_REG_RICNT_COUNTER_SET_TYPE_BASIC); 7326 } 7327 7328 /* RRCR - Router Rules Copy Register Layout 7329 * ---------------------------------------- 7330 * This register is used for moving and copying route entry rules. 7331 */ 7332 #define MLXSW_REG_RRCR_ID 0x800F 7333 #define MLXSW_REG_RRCR_LEN 0x24 7334 7335 MLXSW_REG_DEFINE(rrcr, MLXSW_REG_RRCR_ID, MLXSW_REG_RRCR_LEN); 7336 7337 enum mlxsw_reg_rrcr_op { 7338 /* Move rules */ 7339 MLXSW_REG_RRCR_OP_MOVE, 7340 /* Copy rules */ 7341 MLXSW_REG_RRCR_OP_COPY, 7342 }; 7343 7344 /* reg_rrcr_op 7345 * Access: WO 7346 */ 7347 MLXSW_ITEM32(reg, rrcr, op, 0x00, 28, 4); 7348 7349 /* reg_rrcr_offset 7350 * Offset within the region from which to copy/move. 7351 * Access: Index 7352 */ 7353 MLXSW_ITEM32(reg, rrcr, offset, 0x00, 0, 16); 7354 7355 /* reg_rrcr_size 7356 * The number of rules to copy/move. 7357 * Access: WO 7358 */ 7359 MLXSW_ITEM32(reg, rrcr, size, 0x04, 0, 16); 7360 7361 /* reg_rrcr_table_id 7362 * Identifier of the table on which to perform the operation. Encoding is the 7363 * same as in RTAR.key_type 7364 * Access: Index 7365 */ 7366 MLXSW_ITEM32(reg, rrcr, table_id, 0x10, 0, 4); 7367 7368 /* reg_rrcr_dest_offset 7369 * Offset within the region to which to copy/move 7370 * Access: Index 7371 */ 7372 MLXSW_ITEM32(reg, rrcr, dest_offset, 0x20, 0, 16); 7373 7374 static inline void mlxsw_reg_rrcr_pack(char *payload, enum mlxsw_reg_rrcr_op op, 7375 u16 offset, u16 size, 7376 enum mlxsw_reg_rtar_key_type table_id, 7377 u16 dest_offset) 7378 { 7379 MLXSW_REG_ZERO(rrcr, payload); 7380 mlxsw_reg_rrcr_op_set(payload, op); 7381 mlxsw_reg_rrcr_offset_set(payload, offset); 7382 mlxsw_reg_rrcr_size_set(payload, size); 7383 mlxsw_reg_rrcr_table_id_set(payload, table_id); 7384 mlxsw_reg_rrcr_dest_offset_set(payload, dest_offset); 7385 } 7386 7387 /* RALTA - Router Algorithmic LPM Tree Allocation Register 7388 * ------------------------------------------------------- 7389 * RALTA is used to allocate the LPM trees of the SHSPM method. 7390 */ 7391 #define MLXSW_REG_RALTA_ID 0x8010 7392 #define MLXSW_REG_RALTA_LEN 0x04 7393 7394 MLXSW_REG_DEFINE(ralta, MLXSW_REG_RALTA_ID, MLXSW_REG_RALTA_LEN); 7395 7396 /* reg_ralta_op 7397 * opcode (valid for Write, must be 0 on Read) 7398 * 0 - allocate a tree 7399 * 1 - deallocate a tree 7400 * Access: OP 7401 */ 7402 MLXSW_ITEM32(reg, ralta, op, 0x00, 28, 2); 7403 7404 enum mlxsw_reg_ralxx_protocol { 7405 MLXSW_REG_RALXX_PROTOCOL_IPV4, 7406 MLXSW_REG_RALXX_PROTOCOL_IPV6, 7407 }; 7408 7409 /* reg_ralta_protocol 7410 * Protocol. 7411 * Deallocation opcode: Reserved. 7412 * Access: RW 7413 */ 7414 MLXSW_ITEM32(reg, ralta, protocol, 0x00, 24, 4); 7415 7416 /* reg_ralta_tree_id 7417 * An identifier (numbered from 1..cap_shspm_max_trees-1) representing 7418 * the tree identifier (managed by software). 7419 * Note that tree_id 0 is allocated for a default-route tree. 7420 * Access: Index 7421 */ 7422 MLXSW_ITEM32(reg, ralta, tree_id, 0x00, 0, 8); 7423 7424 static inline void mlxsw_reg_ralta_pack(char *payload, bool alloc, 7425 enum mlxsw_reg_ralxx_protocol protocol, 7426 u8 tree_id) 7427 { 7428 MLXSW_REG_ZERO(ralta, payload); 7429 mlxsw_reg_ralta_op_set(payload, !alloc); 7430 mlxsw_reg_ralta_protocol_set(payload, protocol); 7431 mlxsw_reg_ralta_tree_id_set(payload, tree_id); 7432 } 7433 7434 /* RALST - Router Algorithmic LPM Structure Tree Register 7435 * ------------------------------------------------------ 7436 * RALST is used to set and query the structure of an LPM tree. 7437 * The structure of the tree must be sorted as a sorted binary tree, while 7438 * each node is a bin that is tagged as the length of the prefixes the lookup 7439 * will refer to. Therefore, bin X refers to a set of entries with prefixes 7440 * of X bits to match with the destination address. The bin 0 indicates 7441 * the default action, when there is no match of any prefix. 7442 */ 7443 #define MLXSW_REG_RALST_ID 0x8011 7444 #define MLXSW_REG_RALST_LEN 0x104 7445 7446 MLXSW_REG_DEFINE(ralst, MLXSW_REG_RALST_ID, MLXSW_REG_RALST_LEN); 7447 7448 /* reg_ralst_root_bin 7449 * The bin number of the root bin. 7450 * 0<root_bin=<(length of IP address) 7451 * For a default-route tree configure 0xff 7452 * Access: RW 7453 */ 7454 MLXSW_ITEM32(reg, ralst, root_bin, 0x00, 16, 8); 7455 7456 /* reg_ralst_tree_id 7457 * Tree identifier numbered from 1..(cap_shspm_max_trees-1). 7458 * Access: Index 7459 */ 7460 MLXSW_ITEM32(reg, ralst, tree_id, 0x00, 0, 8); 7461 7462 #define MLXSW_REG_RALST_BIN_NO_CHILD 0xff 7463 #define MLXSW_REG_RALST_BIN_OFFSET 0x04 7464 #define MLXSW_REG_RALST_BIN_COUNT 128 7465 7466 /* reg_ralst_left_child_bin 7467 * Holding the children of the bin according to the stored tree's structure. 7468 * For trees composed of less than 4 blocks, the bins in excess are reserved. 7469 * Note that tree_id 0 is allocated for a default-route tree, bins are 0xff 7470 * Access: RW 7471 */ 7472 MLXSW_ITEM16_INDEXED(reg, ralst, left_child_bin, 0x04, 8, 8, 0x02, 0x00, false); 7473 7474 /* reg_ralst_right_child_bin 7475 * Holding the children of the bin according to the stored tree's structure. 7476 * For trees composed of less than 4 blocks, the bins in excess are reserved. 7477 * Note that tree_id 0 is allocated for a default-route tree, bins are 0xff 7478 * Access: RW 7479 */ 7480 MLXSW_ITEM16_INDEXED(reg, ralst, right_child_bin, 0x04, 0, 8, 0x02, 0x00, 7481 false); 7482 7483 static inline void mlxsw_reg_ralst_pack(char *payload, u8 root_bin, u8 tree_id) 7484 { 7485 MLXSW_REG_ZERO(ralst, payload); 7486 7487 /* Initialize all bins to have no left or right child */ 7488 memset(payload + MLXSW_REG_RALST_BIN_OFFSET, 7489 MLXSW_REG_RALST_BIN_NO_CHILD, MLXSW_REG_RALST_BIN_COUNT * 2); 7490 7491 mlxsw_reg_ralst_root_bin_set(payload, root_bin); 7492 mlxsw_reg_ralst_tree_id_set(payload, tree_id); 7493 } 7494 7495 static inline void mlxsw_reg_ralst_bin_pack(char *payload, u8 bin_number, 7496 u8 left_child_bin, 7497 u8 right_child_bin) 7498 { 7499 int bin_index = bin_number - 1; 7500 7501 mlxsw_reg_ralst_left_child_bin_set(payload, bin_index, left_child_bin); 7502 mlxsw_reg_ralst_right_child_bin_set(payload, bin_index, 7503 right_child_bin); 7504 } 7505 7506 /* RALTB - Router Algorithmic LPM Tree Binding Register 7507 * ---------------------------------------------------- 7508 * RALTB is used to bind virtual router and protocol to an allocated LPM tree. 7509 */ 7510 #define MLXSW_REG_RALTB_ID 0x8012 7511 #define MLXSW_REG_RALTB_LEN 0x04 7512 7513 MLXSW_REG_DEFINE(raltb, MLXSW_REG_RALTB_ID, MLXSW_REG_RALTB_LEN); 7514 7515 /* reg_raltb_virtual_router 7516 * Virtual Router ID 7517 * Range is 0..cap_max_virtual_routers-1 7518 * Access: Index 7519 */ 7520 MLXSW_ITEM32(reg, raltb, virtual_router, 0x00, 16, 16); 7521 7522 /* reg_raltb_protocol 7523 * Protocol. 7524 * Access: Index 7525 */ 7526 MLXSW_ITEM32(reg, raltb, protocol, 0x00, 12, 4); 7527 7528 /* reg_raltb_tree_id 7529 * Tree to be used for the {virtual_router, protocol} 7530 * Tree identifier numbered from 1..(cap_shspm_max_trees-1). 7531 * By default, all Unicast IPv4 and IPv6 are bound to tree_id 0. 7532 * Access: RW 7533 */ 7534 MLXSW_ITEM32(reg, raltb, tree_id, 0x00, 0, 8); 7535 7536 static inline void mlxsw_reg_raltb_pack(char *payload, u16 virtual_router, 7537 enum mlxsw_reg_ralxx_protocol protocol, 7538 u8 tree_id) 7539 { 7540 MLXSW_REG_ZERO(raltb, payload); 7541 mlxsw_reg_raltb_virtual_router_set(payload, virtual_router); 7542 mlxsw_reg_raltb_protocol_set(payload, protocol); 7543 mlxsw_reg_raltb_tree_id_set(payload, tree_id); 7544 } 7545 7546 /* RALUE - Router Algorithmic LPM Unicast Entry Register 7547 * ----------------------------------------------------- 7548 * RALUE is used to configure and query LPM entries that serve 7549 * the Unicast protocols. 7550 */ 7551 #define MLXSW_REG_RALUE_ID 0x8013 7552 #define MLXSW_REG_RALUE_LEN 0x38 7553 7554 MLXSW_REG_DEFINE(ralue, MLXSW_REG_RALUE_ID, MLXSW_REG_RALUE_LEN); 7555 7556 /* reg_ralue_protocol 7557 * Protocol. 7558 * Access: Index 7559 */ 7560 MLXSW_ITEM32(reg, ralue, protocol, 0x00, 24, 4); 7561 7562 enum mlxsw_reg_ralue_op { 7563 /* Read operation. If entry doesn't exist, the operation fails. */ 7564 MLXSW_REG_RALUE_OP_QUERY_READ = 0, 7565 /* Clear on read operation. Used to read entry and 7566 * clear Activity bit. 7567 */ 7568 MLXSW_REG_RALUE_OP_QUERY_CLEAR = 1, 7569 /* Write operation. Used to write a new entry to the table. All RW 7570 * fields are written for new entry. Activity bit is set 7571 * for new entries. 7572 */ 7573 MLXSW_REG_RALUE_OP_WRITE_WRITE = 0, 7574 /* Update operation. Used to update an existing route entry and 7575 * only update the RW fields that are detailed in the field 7576 * op_u_mask. If entry doesn't exist, the operation fails. 7577 */ 7578 MLXSW_REG_RALUE_OP_WRITE_UPDATE = 1, 7579 /* Clear activity. The Activity bit (the field a) is cleared 7580 * for the entry. 7581 */ 7582 MLXSW_REG_RALUE_OP_WRITE_CLEAR = 2, 7583 /* Delete operation. Used to delete an existing entry. If entry 7584 * doesn't exist, the operation fails. 7585 */ 7586 MLXSW_REG_RALUE_OP_WRITE_DELETE = 3, 7587 }; 7588 7589 /* reg_ralue_op 7590 * Operation. 7591 * Access: OP 7592 */ 7593 MLXSW_ITEM32(reg, ralue, op, 0x00, 20, 3); 7594 7595 /* reg_ralue_a 7596 * Activity. Set for new entries. Set if a packet lookup has hit on the 7597 * specific entry, only if the entry is a route. To clear the a bit, use 7598 * "clear activity" op. 7599 * Enabled by activity_dis in RGCR 7600 * Access: RO 7601 */ 7602 MLXSW_ITEM32(reg, ralue, a, 0x00, 16, 1); 7603 7604 /* reg_ralue_virtual_router 7605 * Virtual Router ID 7606 * Range is 0..cap_max_virtual_routers-1 7607 * Access: Index 7608 */ 7609 MLXSW_ITEM32(reg, ralue, virtual_router, 0x04, 16, 16); 7610 7611 #define MLXSW_REG_RALUE_OP_U_MASK_ENTRY_TYPE BIT(0) 7612 #define MLXSW_REG_RALUE_OP_U_MASK_BMP_LEN BIT(1) 7613 #define MLXSW_REG_RALUE_OP_U_MASK_ACTION BIT(2) 7614 7615 /* reg_ralue_op_u_mask 7616 * opcode update mask. 7617 * On read operation, this field is reserved. 7618 * This field is valid for update opcode, otherwise - reserved. 7619 * This field is a bitmask of the fields that should be updated. 7620 * Access: WO 7621 */ 7622 MLXSW_ITEM32(reg, ralue, op_u_mask, 0x04, 8, 3); 7623 7624 /* reg_ralue_prefix_len 7625 * Number of bits in the prefix of the LPM route. 7626 * Note that for IPv6 prefixes, if prefix_len>64 the entry consumes 7627 * two entries in the physical HW table. 7628 * Access: Index 7629 */ 7630 MLXSW_ITEM32(reg, ralue, prefix_len, 0x08, 0, 8); 7631 7632 /* reg_ralue_dip* 7633 * The prefix of the route or of the marker that the object of the LPM 7634 * is compared with. The most significant bits of the dip are the prefix. 7635 * The least significant bits must be '0' if the prefix_len is smaller 7636 * than 128 for IPv6 or smaller than 32 for IPv4. 7637 * IPv4 address uses bits dip[31:0] and bits dip[127:32] are reserved. 7638 * Access: Index 7639 */ 7640 MLXSW_ITEM32(reg, ralue, dip4, 0x18, 0, 32); 7641 MLXSW_ITEM_BUF(reg, ralue, dip6, 0x0C, 16); 7642 7643 enum mlxsw_reg_ralue_entry_type { 7644 MLXSW_REG_RALUE_ENTRY_TYPE_MARKER_ENTRY = 1, 7645 MLXSW_REG_RALUE_ENTRY_TYPE_ROUTE_ENTRY = 2, 7646 MLXSW_REG_RALUE_ENTRY_TYPE_MARKER_AND_ROUTE_ENTRY = 3, 7647 }; 7648 7649 /* reg_ralue_entry_type 7650 * Entry type. 7651 * Note - for Marker entries, the action_type and action fields are reserved. 7652 * Access: RW 7653 */ 7654 MLXSW_ITEM32(reg, ralue, entry_type, 0x1C, 30, 2); 7655 7656 /* reg_ralue_bmp_len 7657 * The best match prefix length in the case that there is no match for 7658 * longer prefixes. 7659 * If (entry_type != MARKER_ENTRY), bmp_len must be equal to prefix_len 7660 * Note for any update operation with entry_type modification this 7661 * field must be set. 7662 * Access: RW 7663 */ 7664 MLXSW_ITEM32(reg, ralue, bmp_len, 0x1C, 16, 8); 7665 7666 enum mlxsw_reg_ralue_action_type { 7667 MLXSW_REG_RALUE_ACTION_TYPE_REMOTE, 7668 MLXSW_REG_RALUE_ACTION_TYPE_LOCAL, 7669 MLXSW_REG_RALUE_ACTION_TYPE_IP2ME, 7670 }; 7671 7672 /* reg_ralue_action_type 7673 * Action Type 7674 * Indicates how the IP address is connected. 7675 * It can be connected to a local subnet through local_erif or can be 7676 * on a remote subnet connected through a next-hop router, 7677 * or transmitted to the CPU. 7678 * Reserved when entry_type = MARKER_ENTRY 7679 * Access: RW 7680 */ 7681 MLXSW_ITEM32(reg, ralue, action_type, 0x1C, 0, 2); 7682 7683 enum mlxsw_reg_ralue_trap_action { 7684 MLXSW_REG_RALUE_TRAP_ACTION_NOP, 7685 MLXSW_REG_RALUE_TRAP_ACTION_TRAP, 7686 MLXSW_REG_RALUE_TRAP_ACTION_MIRROR_TO_CPU, 7687 MLXSW_REG_RALUE_TRAP_ACTION_MIRROR, 7688 MLXSW_REG_RALUE_TRAP_ACTION_DISCARD_ERROR, 7689 }; 7690 7691 /* reg_ralue_trap_action 7692 * Trap action. 7693 * For IP2ME action, only NOP and MIRROR are possible. 7694 * Access: RW 7695 */ 7696 MLXSW_ITEM32(reg, ralue, trap_action, 0x20, 28, 4); 7697 7698 /* reg_ralue_trap_id 7699 * Trap ID to be reported to CPU. 7700 * Trap ID is RTR_INGRESS0 or RTR_INGRESS1. 7701 * For trap_action of NOP, MIRROR and DISCARD_ERROR, trap_id is reserved. 7702 * Access: RW 7703 */ 7704 MLXSW_ITEM32(reg, ralue, trap_id, 0x20, 0, 9); 7705 7706 /* reg_ralue_adjacency_index 7707 * Points to the first entry of the group-based ECMP. 7708 * Only relevant in case of REMOTE action. 7709 * Access: RW 7710 */ 7711 MLXSW_ITEM32(reg, ralue, adjacency_index, 0x24, 0, 24); 7712 7713 /* reg_ralue_ecmp_size 7714 * Amount of sequential entries starting 7715 * from the adjacency_index (the number of ECMPs). 7716 * The valid range is 1-64, 512, 1024, 2048 and 4096. 7717 * Reserved when trap_action is TRAP or DISCARD_ERROR. 7718 * Only relevant in case of REMOTE action. 7719 * Access: RW 7720 */ 7721 MLXSW_ITEM32(reg, ralue, ecmp_size, 0x28, 0, 13); 7722 7723 /* reg_ralue_local_erif 7724 * Egress Router Interface. 7725 * Only relevant in case of LOCAL action. 7726 * Access: RW 7727 */ 7728 MLXSW_ITEM32(reg, ralue, local_erif, 0x24, 0, 16); 7729 7730 /* reg_ralue_ip2me_v 7731 * Valid bit for the tunnel_ptr field. 7732 * If valid = 0 then trap to CPU as IP2ME trap ID. 7733 * If valid = 1 and the packet format allows NVE or IPinIP tunnel 7734 * decapsulation then tunnel decapsulation is done. 7735 * If valid = 1 and packet format does not allow NVE or IPinIP tunnel 7736 * decapsulation then trap as IP2ME trap ID. 7737 * Only relevant in case of IP2ME action. 7738 * Access: RW 7739 */ 7740 MLXSW_ITEM32(reg, ralue, ip2me_v, 0x24, 31, 1); 7741 7742 /* reg_ralue_ip2me_tunnel_ptr 7743 * Tunnel Pointer for NVE or IPinIP tunnel decapsulation. 7744 * For Spectrum, pointer to KVD Linear. 7745 * Only relevant in case of IP2ME action. 7746 * Access: RW 7747 */ 7748 MLXSW_ITEM32(reg, ralue, ip2me_tunnel_ptr, 0x24, 0, 24); 7749 7750 static inline void mlxsw_reg_ralue_pack(char *payload, 7751 enum mlxsw_reg_ralxx_protocol protocol, 7752 enum mlxsw_reg_ralue_op op, 7753 u16 virtual_router, u8 prefix_len) 7754 { 7755 MLXSW_REG_ZERO(ralue, payload); 7756 mlxsw_reg_ralue_protocol_set(payload, protocol); 7757 mlxsw_reg_ralue_op_set(payload, op); 7758 mlxsw_reg_ralue_virtual_router_set(payload, virtual_router); 7759 mlxsw_reg_ralue_prefix_len_set(payload, prefix_len); 7760 mlxsw_reg_ralue_entry_type_set(payload, 7761 MLXSW_REG_RALUE_ENTRY_TYPE_ROUTE_ENTRY); 7762 mlxsw_reg_ralue_bmp_len_set(payload, prefix_len); 7763 } 7764 7765 static inline void mlxsw_reg_ralue_pack4(char *payload, 7766 enum mlxsw_reg_ralxx_protocol protocol, 7767 enum mlxsw_reg_ralue_op op, 7768 u16 virtual_router, u8 prefix_len, 7769 u32 *dip) 7770 { 7771 mlxsw_reg_ralue_pack(payload, protocol, op, virtual_router, prefix_len); 7772 if (dip) 7773 mlxsw_reg_ralue_dip4_set(payload, *dip); 7774 } 7775 7776 static inline void mlxsw_reg_ralue_pack6(char *payload, 7777 enum mlxsw_reg_ralxx_protocol protocol, 7778 enum mlxsw_reg_ralue_op op, 7779 u16 virtual_router, u8 prefix_len, 7780 const void *dip) 7781 { 7782 mlxsw_reg_ralue_pack(payload, protocol, op, virtual_router, prefix_len); 7783 if (dip) 7784 mlxsw_reg_ralue_dip6_memcpy_to(payload, dip); 7785 } 7786 7787 static inline void 7788 mlxsw_reg_ralue_act_remote_pack(char *payload, 7789 enum mlxsw_reg_ralue_trap_action trap_action, 7790 u16 trap_id, u32 adjacency_index, u16 ecmp_size) 7791 { 7792 mlxsw_reg_ralue_action_type_set(payload, 7793 MLXSW_REG_RALUE_ACTION_TYPE_REMOTE); 7794 mlxsw_reg_ralue_trap_action_set(payload, trap_action); 7795 mlxsw_reg_ralue_trap_id_set(payload, trap_id); 7796 mlxsw_reg_ralue_adjacency_index_set(payload, adjacency_index); 7797 mlxsw_reg_ralue_ecmp_size_set(payload, ecmp_size); 7798 } 7799 7800 static inline void 7801 mlxsw_reg_ralue_act_local_pack(char *payload, 7802 enum mlxsw_reg_ralue_trap_action trap_action, 7803 u16 trap_id, u16 local_erif) 7804 { 7805 mlxsw_reg_ralue_action_type_set(payload, 7806 MLXSW_REG_RALUE_ACTION_TYPE_LOCAL); 7807 mlxsw_reg_ralue_trap_action_set(payload, trap_action); 7808 mlxsw_reg_ralue_trap_id_set(payload, trap_id); 7809 mlxsw_reg_ralue_local_erif_set(payload, local_erif); 7810 } 7811 7812 static inline void 7813 mlxsw_reg_ralue_act_ip2me_pack(char *payload) 7814 { 7815 mlxsw_reg_ralue_action_type_set(payload, 7816 MLXSW_REG_RALUE_ACTION_TYPE_IP2ME); 7817 } 7818 7819 static inline void 7820 mlxsw_reg_ralue_act_ip2me_tun_pack(char *payload, u32 tunnel_ptr) 7821 { 7822 mlxsw_reg_ralue_action_type_set(payload, 7823 MLXSW_REG_RALUE_ACTION_TYPE_IP2ME); 7824 mlxsw_reg_ralue_ip2me_v_set(payload, 1); 7825 mlxsw_reg_ralue_ip2me_tunnel_ptr_set(payload, tunnel_ptr); 7826 } 7827 7828 /* RAUHT - Router Algorithmic LPM Unicast Host Table Register 7829 * ---------------------------------------------------------- 7830 * The RAUHT register is used to configure and query the Unicast Host table in 7831 * devices that implement the Algorithmic LPM. 7832 */ 7833 #define MLXSW_REG_RAUHT_ID 0x8014 7834 #define MLXSW_REG_RAUHT_LEN 0x74 7835 7836 MLXSW_REG_DEFINE(rauht, MLXSW_REG_RAUHT_ID, MLXSW_REG_RAUHT_LEN); 7837 7838 enum mlxsw_reg_rauht_type { 7839 MLXSW_REG_RAUHT_TYPE_IPV4, 7840 MLXSW_REG_RAUHT_TYPE_IPV6, 7841 }; 7842 7843 /* reg_rauht_type 7844 * Access: Index 7845 */ 7846 MLXSW_ITEM32(reg, rauht, type, 0x00, 24, 2); 7847 7848 enum mlxsw_reg_rauht_op { 7849 MLXSW_REG_RAUHT_OP_QUERY_READ = 0, 7850 /* Read operation */ 7851 MLXSW_REG_RAUHT_OP_QUERY_CLEAR_ON_READ = 1, 7852 /* Clear on read operation. Used to read entry and clear 7853 * activity bit. 7854 */ 7855 MLXSW_REG_RAUHT_OP_WRITE_ADD = 0, 7856 /* Add. Used to write a new entry to the table. All R/W fields are 7857 * relevant for new entry. Activity bit is set for new entries. 7858 */ 7859 MLXSW_REG_RAUHT_OP_WRITE_UPDATE = 1, 7860 /* Update action. Used to update an existing route entry and 7861 * only update the following fields: 7862 * trap_action, trap_id, mac, counter_set_type, counter_index 7863 */ 7864 MLXSW_REG_RAUHT_OP_WRITE_CLEAR_ACTIVITY = 2, 7865 /* Clear activity. A bit is cleared for the entry. */ 7866 MLXSW_REG_RAUHT_OP_WRITE_DELETE = 3, 7867 /* Delete entry */ 7868 MLXSW_REG_RAUHT_OP_WRITE_DELETE_ALL = 4, 7869 /* Delete all host entries on a RIF. In this command, dip 7870 * field is reserved. 7871 */ 7872 }; 7873 7874 /* reg_rauht_op 7875 * Access: OP 7876 */ 7877 MLXSW_ITEM32(reg, rauht, op, 0x00, 20, 3); 7878 7879 /* reg_rauht_a 7880 * Activity. Set for new entries. Set if a packet lookup has hit on 7881 * the specific entry. 7882 * To clear the a bit, use "clear activity" op. 7883 * Enabled by activity_dis in RGCR 7884 * Access: RO 7885 */ 7886 MLXSW_ITEM32(reg, rauht, a, 0x00, 16, 1); 7887 7888 /* reg_rauht_rif 7889 * Router Interface 7890 * Access: Index 7891 */ 7892 MLXSW_ITEM32(reg, rauht, rif, 0x00, 0, 16); 7893 7894 /* reg_rauht_dip* 7895 * Destination address. 7896 * Access: Index 7897 */ 7898 MLXSW_ITEM32(reg, rauht, dip4, 0x1C, 0x0, 32); 7899 MLXSW_ITEM_BUF(reg, rauht, dip6, 0x10, 16); 7900 7901 enum mlxsw_reg_rauht_trap_action { 7902 MLXSW_REG_RAUHT_TRAP_ACTION_NOP, 7903 MLXSW_REG_RAUHT_TRAP_ACTION_TRAP, 7904 MLXSW_REG_RAUHT_TRAP_ACTION_MIRROR_TO_CPU, 7905 MLXSW_REG_RAUHT_TRAP_ACTION_MIRROR, 7906 MLXSW_REG_RAUHT_TRAP_ACTION_DISCARD_ERRORS, 7907 }; 7908 7909 /* reg_rauht_trap_action 7910 * Access: RW 7911 */ 7912 MLXSW_ITEM32(reg, rauht, trap_action, 0x60, 28, 4); 7913 7914 enum mlxsw_reg_rauht_trap_id { 7915 MLXSW_REG_RAUHT_TRAP_ID_RTR_EGRESS0, 7916 MLXSW_REG_RAUHT_TRAP_ID_RTR_EGRESS1, 7917 }; 7918 7919 /* reg_rauht_trap_id 7920 * Trap ID to be reported to CPU. 7921 * Trap-ID is RTR_EGRESS0 or RTR_EGRESS1. 7922 * For trap_action of NOP, MIRROR and DISCARD_ERROR, 7923 * trap_id is reserved. 7924 * Access: RW 7925 */ 7926 MLXSW_ITEM32(reg, rauht, trap_id, 0x60, 0, 9); 7927 7928 /* reg_rauht_counter_set_type 7929 * Counter set type for flow counters 7930 * Access: RW 7931 */ 7932 MLXSW_ITEM32(reg, rauht, counter_set_type, 0x68, 24, 8); 7933 7934 /* reg_rauht_counter_index 7935 * Counter index for flow counters 7936 * Access: RW 7937 */ 7938 MLXSW_ITEM32(reg, rauht, counter_index, 0x68, 0, 24); 7939 7940 /* reg_rauht_mac 7941 * MAC address. 7942 * Access: RW 7943 */ 7944 MLXSW_ITEM_BUF(reg, rauht, mac, 0x6E, 6); 7945 7946 static inline void mlxsw_reg_rauht_pack(char *payload, 7947 enum mlxsw_reg_rauht_op op, u16 rif, 7948 const char *mac) 7949 { 7950 MLXSW_REG_ZERO(rauht, payload); 7951 mlxsw_reg_rauht_op_set(payload, op); 7952 mlxsw_reg_rauht_rif_set(payload, rif); 7953 mlxsw_reg_rauht_mac_memcpy_to(payload, mac); 7954 } 7955 7956 static inline void mlxsw_reg_rauht_pack4(char *payload, 7957 enum mlxsw_reg_rauht_op op, u16 rif, 7958 const char *mac, u32 dip) 7959 { 7960 mlxsw_reg_rauht_pack(payload, op, rif, mac); 7961 mlxsw_reg_rauht_dip4_set(payload, dip); 7962 } 7963 7964 static inline void mlxsw_reg_rauht_pack6(char *payload, 7965 enum mlxsw_reg_rauht_op op, u16 rif, 7966 const char *mac, const char *dip) 7967 { 7968 mlxsw_reg_rauht_pack(payload, op, rif, mac); 7969 mlxsw_reg_rauht_type_set(payload, MLXSW_REG_RAUHT_TYPE_IPV6); 7970 mlxsw_reg_rauht_dip6_memcpy_to(payload, dip); 7971 } 7972 7973 static inline void mlxsw_reg_rauht_pack_counter(char *payload, 7974 u64 counter_index) 7975 { 7976 mlxsw_reg_rauht_counter_index_set(payload, counter_index); 7977 mlxsw_reg_rauht_counter_set_type_set(payload, 7978 MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES); 7979 } 7980 7981 /* RALEU - Router Algorithmic LPM ECMP Update Register 7982 * --------------------------------------------------- 7983 * The register enables updating the ECMP section in the action for multiple 7984 * LPM Unicast entries in a single operation. The update is executed to 7985 * all entries of a {virtual router, protocol} tuple using the same ECMP group. 7986 */ 7987 #define MLXSW_REG_RALEU_ID 0x8015 7988 #define MLXSW_REG_RALEU_LEN 0x28 7989 7990 MLXSW_REG_DEFINE(raleu, MLXSW_REG_RALEU_ID, MLXSW_REG_RALEU_LEN); 7991 7992 /* reg_raleu_protocol 7993 * Protocol. 7994 * Access: Index 7995 */ 7996 MLXSW_ITEM32(reg, raleu, protocol, 0x00, 24, 4); 7997 7998 /* reg_raleu_virtual_router 7999 * Virtual Router ID 8000 * Range is 0..cap_max_virtual_routers-1 8001 * Access: Index 8002 */ 8003 MLXSW_ITEM32(reg, raleu, virtual_router, 0x00, 0, 16); 8004 8005 /* reg_raleu_adjacency_index 8006 * Adjacency Index used for matching on the existing entries. 8007 * Access: Index 8008 */ 8009 MLXSW_ITEM32(reg, raleu, adjacency_index, 0x10, 0, 24); 8010 8011 /* reg_raleu_ecmp_size 8012 * ECMP Size used for matching on the existing entries. 8013 * Access: Index 8014 */ 8015 MLXSW_ITEM32(reg, raleu, ecmp_size, 0x14, 0, 13); 8016 8017 /* reg_raleu_new_adjacency_index 8018 * New Adjacency Index. 8019 * Access: WO 8020 */ 8021 MLXSW_ITEM32(reg, raleu, new_adjacency_index, 0x20, 0, 24); 8022 8023 /* reg_raleu_new_ecmp_size 8024 * New ECMP Size. 8025 * Access: WO 8026 */ 8027 MLXSW_ITEM32(reg, raleu, new_ecmp_size, 0x24, 0, 13); 8028 8029 static inline void mlxsw_reg_raleu_pack(char *payload, 8030 enum mlxsw_reg_ralxx_protocol protocol, 8031 u16 virtual_router, 8032 u32 adjacency_index, u16 ecmp_size, 8033 u32 new_adjacency_index, 8034 u16 new_ecmp_size) 8035 { 8036 MLXSW_REG_ZERO(raleu, payload); 8037 mlxsw_reg_raleu_protocol_set(payload, protocol); 8038 mlxsw_reg_raleu_virtual_router_set(payload, virtual_router); 8039 mlxsw_reg_raleu_adjacency_index_set(payload, adjacency_index); 8040 mlxsw_reg_raleu_ecmp_size_set(payload, ecmp_size); 8041 mlxsw_reg_raleu_new_adjacency_index_set(payload, new_adjacency_index); 8042 mlxsw_reg_raleu_new_ecmp_size_set(payload, new_ecmp_size); 8043 } 8044 8045 /* RAUHTD - Router Algorithmic LPM Unicast Host Table Dump Register 8046 * ---------------------------------------------------------------- 8047 * The RAUHTD register allows dumping entries from the Router Unicast Host 8048 * Table. For a given session an entry is dumped no more than one time. The 8049 * first RAUHTD access after reset is a new session. A session ends when the 8050 * num_rec response is smaller than num_rec request or for IPv4 when the 8051 * num_entries is smaller than 4. The clear activity affect the current session 8052 * or the last session if a new session has not started. 8053 */ 8054 #define MLXSW_REG_RAUHTD_ID 0x8018 8055 #define MLXSW_REG_RAUHTD_BASE_LEN 0x20 8056 #define MLXSW_REG_RAUHTD_REC_LEN 0x20 8057 #define MLXSW_REG_RAUHTD_REC_MAX_NUM 32 8058 #define MLXSW_REG_RAUHTD_LEN (MLXSW_REG_RAUHTD_BASE_LEN + \ 8059 MLXSW_REG_RAUHTD_REC_MAX_NUM * MLXSW_REG_RAUHTD_REC_LEN) 8060 #define MLXSW_REG_RAUHTD_IPV4_ENT_PER_REC 4 8061 8062 MLXSW_REG_DEFINE(rauhtd, MLXSW_REG_RAUHTD_ID, MLXSW_REG_RAUHTD_LEN); 8063 8064 #define MLXSW_REG_RAUHTD_FILTER_A BIT(0) 8065 #define MLXSW_REG_RAUHTD_FILTER_RIF BIT(3) 8066 8067 /* reg_rauhtd_filter_fields 8068 * if a bit is '0' then the relevant field is ignored and dump is done 8069 * regardless of the field value 8070 * Bit0 - filter by activity: entry_a 8071 * Bit3 - filter by entry rip: entry_rif 8072 * Access: Index 8073 */ 8074 MLXSW_ITEM32(reg, rauhtd, filter_fields, 0x00, 0, 8); 8075 8076 enum mlxsw_reg_rauhtd_op { 8077 MLXSW_REG_RAUHTD_OP_DUMP, 8078 MLXSW_REG_RAUHTD_OP_DUMP_AND_CLEAR, 8079 }; 8080 8081 /* reg_rauhtd_op 8082 * Access: OP 8083 */ 8084 MLXSW_ITEM32(reg, rauhtd, op, 0x04, 24, 2); 8085 8086 /* reg_rauhtd_num_rec 8087 * At request: number of records requested 8088 * At response: number of records dumped 8089 * For IPv4, each record has 4 entries at request and up to 4 entries 8090 * at response 8091 * Range is 0..MLXSW_REG_RAUHTD_REC_MAX_NUM 8092 * Access: Index 8093 */ 8094 MLXSW_ITEM32(reg, rauhtd, num_rec, 0x04, 0, 8); 8095 8096 /* reg_rauhtd_entry_a 8097 * Dump only if activity has value of entry_a 8098 * Reserved if filter_fields bit0 is '0' 8099 * Access: Index 8100 */ 8101 MLXSW_ITEM32(reg, rauhtd, entry_a, 0x08, 16, 1); 8102 8103 enum mlxsw_reg_rauhtd_type { 8104 MLXSW_REG_RAUHTD_TYPE_IPV4, 8105 MLXSW_REG_RAUHTD_TYPE_IPV6, 8106 }; 8107 8108 /* reg_rauhtd_type 8109 * Dump only if record type is: 8110 * 0 - IPv4 8111 * 1 - IPv6 8112 * Access: Index 8113 */ 8114 MLXSW_ITEM32(reg, rauhtd, type, 0x08, 0, 4); 8115 8116 /* reg_rauhtd_entry_rif 8117 * Dump only if RIF has value of entry_rif 8118 * Reserved if filter_fields bit3 is '0' 8119 * Access: Index 8120 */ 8121 MLXSW_ITEM32(reg, rauhtd, entry_rif, 0x0C, 0, 16); 8122 8123 static inline void mlxsw_reg_rauhtd_pack(char *payload, 8124 enum mlxsw_reg_rauhtd_type type) 8125 { 8126 MLXSW_REG_ZERO(rauhtd, payload); 8127 mlxsw_reg_rauhtd_filter_fields_set(payload, MLXSW_REG_RAUHTD_FILTER_A); 8128 mlxsw_reg_rauhtd_op_set(payload, MLXSW_REG_RAUHTD_OP_DUMP_AND_CLEAR); 8129 mlxsw_reg_rauhtd_num_rec_set(payload, MLXSW_REG_RAUHTD_REC_MAX_NUM); 8130 mlxsw_reg_rauhtd_entry_a_set(payload, 1); 8131 mlxsw_reg_rauhtd_type_set(payload, type); 8132 } 8133 8134 /* reg_rauhtd_ipv4_rec_num_entries 8135 * Number of valid entries in this record: 8136 * 0 - 1 valid entry 8137 * 1 - 2 valid entries 8138 * 2 - 3 valid entries 8139 * 3 - 4 valid entries 8140 * Access: RO 8141 */ 8142 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_rec_num_entries, 8143 MLXSW_REG_RAUHTD_BASE_LEN, 28, 2, 8144 MLXSW_REG_RAUHTD_REC_LEN, 0x00, false); 8145 8146 /* reg_rauhtd_rec_type 8147 * Record type. 8148 * 0 - IPv4 8149 * 1 - IPv6 8150 * Access: RO 8151 */ 8152 MLXSW_ITEM32_INDEXED(reg, rauhtd, rec_type, MLXSW_REG_RAUHTD_BASE_LEN, 24, 2, 8153 MLXSW_REG_RAUHTD_REC_LEN, 0x00, false); 8154 8155 #define MLXSW_REG_RAUHTD_IPV4_ENT_LEN 0x8 8156 8157 /* reg_rauhtd_ipv4_ent_a 8158 * Activity. Set for new entries. Set if a packet lookup has hit on the 8159 * specific entry. 8160 * Access: RO 8161 */ 8162 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_a, MLXSW_REG_RAUHTD_BASE_LEN, 16, 1, 8163 MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x00, false); 8164 8165 /* reg_rauhtd_ipv4_ent_rif 8166 * Router interface. 8167 * Access: RO 8168 */ 8169 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_rif, MLXSW_REG_RAUHTD_BASE_LEN, 0, 8170 16, MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x00, false); 8171 8172 /* reg_rauhtd_ipv4_ent_dip 8173 * Destination IPv4 address. 8174 * Access: RO 8175 */ 8176 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_dip, MLXSW_REG_RAUHTD_BASE_LEN, 0, 8177 32, MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x04, false); 8178 8179 #define MLXSW_REG_RAUHTD_IPV6_ENT_LEN 0x20 8180 8181 /* reg_rauhtd_ipv6_ent_a 8182 * Activity. Set for new entries. Set if a packet lookup has hit on the 8183 * specific entry. 8184 * Access: RO 8185 */ 8186 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv6_ent_a, MLXSW_REG_RAUHTD_BASE_LEN, 16, 1, 8187 MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x00, false); 8188 8189 /* reg_rauhtd_ipv6_ent_rif 8190 * Router interface. 8191 * Access: RO 8192 */ 8193 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv6_ent_rif, MLXSW_REG_RAUHTD_BASE_LEN, 0, 8194 16, MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x00, false); 8195 8196 /* reg_rauhtd_ipv6_ent_dip 8197 * Destination IPv6 address. 8198 * Access: RO 8199 */ 8200 MLXSW_ITEM_BUF_INDEXED(reg, rauhtd, ipv6_ent_dip, MLXSW_REG_RAUHTD_BASE_LEN, 8201 16, MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x10); 8202 8203 static inline void mlxsw_reg_rauhtd_ent_ipv4_unpack(char *payload, 8204 int ent_index, u16 *p_rif, 8205 u32 *p_dip) 8206 { 8207 *p_rif = mlxsw_reg_rauhtd_ipv4_ent_rif_get(payload, ent_index); 8208 *p_dip = mlxsw_reg_rauhtd_ipv4_ent_dip_get(payload, ent_index); 8209 } 8210 8211 static inline void mlxsw_reg_rauhtd_ent_ipv6_unpack(char *payload, 8212 int rec_index, u16 *p_rif, 8213 char *p_dip) 8214 { 8215 *p_rif = mlxsw_reg_rauhtd_ipv6_ent_rif_get(payload, rec_index); 8216 mlxsw_reg_rauhtd_ipv6_ent_dip_memcpy_from(payload, rec_index, p_dip); 8217 } 8218 8219 /* RTDP - Routing Tunnel Decap Properties Register 8220 * ----------------------------------------------- 8221 * The RTDP register is used for configuring the tunnel decap properties of NVE 8222 * and IPinIP. 8223 */ 8224 #define MLXSW_REG_RTDP_ID 0x8020 8225 #define MLXSW_REG_RTDP_LEN 0x44 8226 8227 MLXSW_REG_DEFINE(rtdp, MLXSW_REG_RTDP_ID, MLXSW_REG_RTDP_LEN); 8228 8229 enum mlxsw_reg_rtdp_type { 8230 MLXSW_REG_RTDP_TYPE_NVE, 8231 MLXSW_REG_RTDP_TYPE_IPIP, 8232 }; 8233 8234 /* reg_rtdp_type 8235 * Type of the RTDP entry as per enum mlxsw_reg_rtdp_type. 8236 * Access: RW 8237 */ 8238 MLXSW_ITEM32(reg, rtdp, type, 0x00, 28, 4); 8239 8240 /* reg_rtdp_tunnel_index 8241 * Index to the Decap entry. 8242 * For Spectrum, Index to KVD Linear. 8243 * Access: Index 8244 */ 8245 MLXSW_ITEM32(reg, rtdp, tunnel_index, 0x00, 0, 24); 8246 8247 /* reg_rtdp_egress_router_interface 8248 * Underlay egress router interface. 8249 * Valid range is from 0 to cap_max_router_interfaces - 1 8250 * Access: RW 8251 */ 8252 MLXSW_ITEM32(reg, rtdp, egress_router_interface, 0x40, 0, 16); 8253 8254 /* IPinIP */ 8255 8256 /* reg_rtdp_ipip_irif 8257 * Ingress Router Interface for the overlay router 8258 * Access: RW 8259 */ 8260 MLXSW_ITEM32(reg, rtdp, ipip_irif, 0x04, 16, 16); 8261 8262 enum mlxsw_reg_rtdp_ipip_sip_check { 8263 /* No sip checks. */ 8264 MLXSW_REG_RTDP_IPIP_SIP_CHECK_NO, 8265 /* Filter packet if underlay is not IPv4 or if underlay SIP does not 8266 * equal ipv4_usip. 8267 */ 8268 MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV4, 8269 /* Filter packet if underlay is not IPv6 or if underlay SIP does not 8270 * equal ipv6_usip. 8271 */ 8272 MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV6 = 3, 8273 }; 8274 8275 /* reg_rtdp_ipip_sip_check 8276 * SIP check to perform. If decapsulation failed due to these configurations 8277 * then trap_id is IPIP_DECAP_ERROR. 8278 * Access: RW 8279 */ 8280 MLXSW_ITEM32(reg, rtdp, ipip_sip_check, 0x04, 0, 3); 8281 8282 /* If set, allow decapsulation of IPinIP (without GRE). */ 8283 #define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_IPIP BIT(0) 8284 /* If set, allow decapsulation of IPinGREinIP without a key. */ 8285 #define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_GRE BIT(1) 8286 /* If set, allow decapsulation of IPinGREinIP with a key. */ 8287 #define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_GRE_KEY BIT(2) 8288 8289 /* reg_rtdp_ipip_type_check 8290 * Flags as per MLXSW_REG_RTDP_IPIP_TYPE_CHECK_*. If decapsulation failed due to 8291 * these configurations then trap_id is IPIP_DECAP_ERROR. 8292 * Access: RW 8293 */ 8294 MLXSW_ITEM32(reg, rtdp, ipip_type_check, 0x08, 24, 3); 8295 8296 /* reg_rtdp_ipip_gre_key_check 8297 * Whether GRE key should be checked. When check is enabled: 8298 * - A packet received as IPinIP (without GRE) will always pass. 8299 * - A packet received as IPinGREinIP without a key will not pass the check. 8300 * - A packet received as IPinGREinIP with a key will pass the check only if the 8301 * key in the packet is equal to expected_gre_key. 8302 * If decapsulation failed due to GRE key then trap_id is IPIP_DECAP_ERROR. 8303 * Access: RW 8304 */ 8305 MLXSW_ITEM32(reg, rtdp, ipip_gre_key_check, 0x08, 23, 1); 8306 8307 /* reg_rtdp_ipip_ipv4_usip 8308 * Underlay IPv4 address for ipv4 source address check. 8309 * Reserved when sip_check is not '1'. 8310 * Access: RW 8311 */ 8312 MLXSW_ITEM32(reg, rtdp, ipip_ipv4_usip, 0x0C, 0, 32); 8313 8314 /* reg_rtdp_ipip_ipv6_usip_ptr 8315 * This field is valid when sip_check is "sipv6 check explicitly". This is a 8316 * pointer to the IPv6 DIP which is configured by RIPS. For Spectrum, the index 8317 * is to the KVD linear. 8318 * Reserved when sip_check is not MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV6. 8319 * Access: RW 8320 */ 8321 MLXSW_ITEM32(reg, rtdp, ipip_ipv6_usip_ptr, 0x10, 0, 24); 8322 8323 /* reg_rtdp_ipip_expected_gre_key 8324 * GRE key for checking. 8325 * Reserved when gre_key_check is '0'. 8326 * Access: RW 8327 */ 8328 MLXSW_ITEM32(reg, rtdp, ipip_expected_gre_key, 0x14, 0, 32); 8329 8330 static inline void mlxsw_reg_rtdp_pack(char *payload, 8331 enum mlxsw_reg_rtdp_type type, 8332 u32 tunnel_index) 8333 { 8334 MLXSW_REG_ZERO(rtdp, payload); 8335 mlxsw_reg_rtdp_type_set(payload, type); 8336 mlxsw_reg_rtdp_tunnel_index_set(payload, tunnel_index); 8337 } 8338 8339 static inline void 8340 mlxsw_reg_rtdp_ipip_pack(char *payload, u16 irif, 8341 enum mlxsw_reg_rtdp_ipip_sip_check sip_check, 8342 unsigned int type_check, bool gre_key_check, 8343 u32 expected_gre_key) 8344 { 8345 mlxsw_reg_rtdp_ipip_irif_set(payload, irif); 8346 mlxsw_reg_rtdp_ipip_sip_check_set(payload, sip_check); 8347 mlxsw_reg_rtdp_ipip_type_check_set(payload, type_check); 8348 mlxsw_reg_rtdp_ipip_gre_key_check_set(payload, gre_key_check); 8349 mlxsw_reg_rtdp_ipip_expected_gre_key_set(payload, expected_gre_key); 8350 } 8351 8352 static inline void 8353 mlxsw_reg_rtdp_ipip4_pack(char *payload, u16 irif, 8354 enum mlxsw_reg_rtdp_ipip_sip_check sip_check, 8355 unsigned int type_check, bool gre_key_check, 8356 u32 ipv4_usip, u32 expected_gre_key) 8357 { 8358 mlxsw_reg_rtdp_ipip_pack(payload, irif, sip_check, type_check, 8359 gre_key_check, expected_gre_key); 8360 mlxsw_reg_rtdp_ipip_ipv4_usip_set(payload, ipv4_usip); 8361 } 8362 8363 static inline void 8364 mlxsw_reg_rtdp_ipip6_pack(char *payload, u16 irif, 8365 enum mlxsw_reg_rtdp_ipip_sip_check sip_check, 8366 unsigned int type_check, bool gre_key_check, 8367 u32 ipv6_usip_ptr, u32 expected_gre_key) 8368 { 8369 mlxsw_reg_rtdp_ipip_pack(payload, irif, sip_check, type_check, 8370 gre_key_check, expected_gre_key); 8371 mlxsw_reg_rtdp_ipip_ipv6_usip_ptr_set(payload, ipv6_usip_ptr); 8372 } 8373 8374 /* RIPS - Router IP version Six Register 8375 * ------------------------------------- 8376 * The RIPS register is used to store IPv6 addresses for use by the NVE and 8377 * IPinIP 8378 */ 8379 #define MLXSW_REG_RIPS_ID 0x8021 8380 #define MLXSW_REG_RIPS_LEN 0x14 8381 8382 MLXSW_REG_DEFINE(rips, MLXSW_REG_RIPS_ID, MLXSW_REG_RIPS_LEN); 8383 8384 /* reg_rips_index 8385 * Index to IPv6 address. 8386 * For Spectrum, the index is to the KVD linear. 8387 * Access: Index 8388 */ 8389 MLXSW_ITEM32(reg, rips, index, 0x00, 0, 24); 8390 8391 /* reg_rips_ipv6 8392 * IPv6 address 8393 * Access: RW 8394 */ 8395 MLXSW_ITEM_BUF(reg, rips, ipv6, 0x04, 16); 8396 8397 static inline void mlxsw_reg_rips_pack(char *payload, u32 index, 8398 const struct in6_addr *ipv6) 8399 { 8400 MLXSW_REG_ZERO(rips, payload); 8401 mlxsw_reg_rips_index_set(payload, index); 8402 mlxsw_reg_rips_ipv6_memcpy_to(payload, (const char *)ipv6); 8403 } 8404 8405 /* RATRAD - Router Adjacency Table Activity Dump Register 8406 * ------------------------------------------------------ 8407 * The RATRAD register is used to dump and optionally clear activity bits of 8408 * router adjacency table entries. 8409 */ 8410 #define MLXSW_REG_RATRAD_ID 0x8022 8411 #define MLXSW_REG_RATRAD_LEN 0x210 8412 8413 MLXSW_REG_DEFINE(ratrad, MLXSW_REG_RATRAD_ID, MLXSW_REG_RATRAD_LEN); 8414 8415 enum { 8416 /* Read activity */ 8417 MLXSW_REG_RATRAD_OP_READ_ACTIVITY, 8418 /* Read and clear activity */ 8419 MLXSW_REG_RATRAD_OP_READ_CLEAR_ACTIVITY, 8420 }; 8421 8422 /* reg_ratrad_op 8423 * Access: Operation 8424 */ 8425 MLXSW_ITEM32(reg, ratrad, op, 0x00, 30, 2); 8426 8427 /* reg_ratrad_ecmp_size 8428 * ecmp_size is the amount of sequential entries from adjacency_index. Valid 8429 * ranges: 8430 * Spectrum-1: 32-64, 512, 1024, 2048, 4096 8431 * Spectrum-2/3: 32-128, 256, 512, 1024, 2048, 4096 8432 * Access: Index 8433 */ 8434 MLXSW_ITEM32(reg, ratrad, ecmp_size, 0x00, 0, 13); 8435 8436 /* reg_ratrad_adjacency_index 8437 * Index into the adjacency table. 8438 * Access: Index 8439 */ 8440 MLXSW_ITEM32(reg, ratrad, adjacency_index, 0x04, 0, 24); 8441 8442 /* reg_ratrad_activity_vector 8443 * Activity bit per adjacency index. 8444 * Bits higher than ecmp_size are reserved. 8445 * Access: RO 8446 */ 8447 MLXSW_ITEM_BIT_ARRAY(reg, ratrad, activity_vector, 0x10, 0x200, 1); 8448 8449 static inline void mlxsw_reg_ratrad_pack(char *payload, u32 adjacency_index, 8450 u16 ecmp_size) 8451 { 8452 MLXSW_REG_ZERO(ratrad, payload); 8453 mlxsw_reg_ratrad_op_set(payload, 8454 MLXSW_REG_RATRAD_OP_READ_CLEAR_ACTIVITY); 8455 mlxsw_reg_ratrad_ecmp_size_set(payload, ecmp_size); 8456 mlxsw_reg_ratrad_adjacency_index_set(payload, adjacency_index); 8457 } 8458 8459 /* RIGR-V2 - Router Interface Group Register Version 2 8460 * --------------------------------------------------- 8461 * The RIGR_V2 register is used to add, remove and query egress interface list 8462 * of a multicast forwarding entry. 8463 */ 8464 #define MLXSW_REG_RIGR2_ID 0x8023 8465 #define MLXSW_REG_RIGR2_LEN 0xB0 8466 8467 #define MLXSW_REG_RIGR2_MAX_ERIFS 32 8468 8469 MLXSW_REG_DEFINE(rigr2, MLXSW_REG_RIGR2_ID, MLXSW_REG_RIGR2_LEN); 8470 8471 /* reg_rigr2_rigr_index 8472 * KVD Linear index. 8473 * Access: Index 8474 */ 8475 MLXSW_ITEM32(reg, rigr2, rigr_index, 0x04, 0, 24); 8476 8477 /* reg_rigr2_vnext 8478 * Next RIGR Index is valid. 8479 * Access: RW 8480 */ 8481 MLXSW_ITEM32(reg, rigr2, vnext, 0x08, 31, 1); 8482 8483 /* reg_rigr2_next_rigr_index 8484 * Next RIGR Index. The index is to the KVD linear. 8485 * Reserved when vnxet = '0'. 8486 * Access: RW 8487 */ 8488 MLXSW_ITEM32(reg, rigr2, next_rigr_index, 0x08, 0, 24); 8489 8490 /* reg_rigr2_vrmid 8491 * RMID Index is valid. 8492 * Access: RW 8493 */ 8494 MLXSW_ITEM32(reg, rigr2, vrmid, 0x20, 31, 1); 8495 8496 /* reg_rigr2_rmid_index 8497 * RMID Index. 8498 * Range 0 .. max_mid - 1 8499 * Reserved when vrmid = '0'. 8500 * The index is to the Port Group Table (PGT) 8501 * Access: RW 8502 */ 8503 MLXSW_ITEM32(reg, rigr2, rmid_index, 0x20, 0, 16); 8504 8505 /* reg_rigr2_erif_entry_v 8506 * Egress Router Interface is valid. 8507 * Note that low-entries must be set if high-entries are set. For 8508 * example: if erif_entry[2].v is set then erif_entry[1].v and 8509 * erif_entry[0].v must be set. 8510 * Index can be from 0 to cap_mc_erif_list_entries-1 8511 * Access: RW 8512 */ 8513 MLXSW_ITEM32_INDEXED(reg, rigr2, erif_entry_v, 0x24, 31, 1, 4, 0, false); 8514 8515 /* reg_rigr2_erif_entry_erif 8516 * Egress Router Interface. 8517 * Valid range is from 0 to cap_max_router_interfaces - 1 8518 * Index can be from 0 to MLXSW_REG_RIGR2_MAX_ERIFS - 1 8519 * Access: RW 8520 */ 8521 MLXSW_ITEM32_INDEXED(reg, rigr2, erif_entry_erif, 0x24, 0, 16, 4, 0, false); 8522 8523 static inline void mlxsw_reg_rigr2_pack(char *payload, u32 rigr_index, 8524 bool vnext, u32 next_rigr_index) 8525 { 8526 MLXSW_REG_ZERO(rigr2, payload); 8527 mlxsw_reg_rigr2_rigr_index_set(payload, rigr_index); 8528 mlxsw_reg_rigr2_vnext_set(payload, vnext); 8529 mlxsw_reg_rigr2_next_rigr_index_set(payload, next_rigr_index); 8530 mlxsw_reg_rigr2_vrmid_set(payload, 0); 8531 mlxsw_reg_rigr2_rmid_index_set(payload, 0); 8532 } 8533 8534 static inline void mlxsw_reg_rigr2_erif_entry_pack(char *payload, int index, 8535 bool v, u16 erif) 8536 { 8537 mlxsw_reg_rigr2_erif_entry_v_set(payload, index, v); 8538 mlxsw_reg_rigr2_erif_entry_erif_set(payload, index, erif); 8539 } 8540 8541 /* RECR-V2 - Router ECMP Configuration Version 2 Register 8542 * ------------------------------------------------------ 8543 */ 8544 #define MLXSW_REG_RECR2_ID 0x8025 8545 #define MLXSW_REG_RECR2_LEN 0x38 8546 8547 MLXSW_REG_DEFINE(recr2, MLXSW_REG_RECR2_ID, MLXSW_REG_RECR2_LEN); 8548 8549 /* reg_recr2_pp 8550 * Per-port configuration 8551 * Access: Index 8552 */ 8553 MLXSW_ITEM32(reg, recr2, pp, 0x00, 24, 1); 8554 8555 /* reg_recr2_sh 8556 * Symmetric hash 8557 * Access: RW 8558 */ 8559 MLXSW_ITEM32(reg, recr2, sh, 0x00, 8, 1); 8560 8561 /* reg_recr2_seed 8562 * Seed 8563 * Access: RW 8564 */ 8565 MLXSW_ITEM32(reg, recr2, seed, 0x08, 0, 32); 8566 8567 enum { 8568 /* Enable IPv4 fields if packet is not TCP and not UDP */ 8569 MLXSW_REG_RECR2_IPV4_EN_NOT_TCP_NOT_UDP = 3, 8570 /* Enable IPv4 fields if packet is TCP or UDP */ 8571 MLXSW_REG_RECR2_IPV4_EN_TCP_UDP = 4, 8572 /* Enable IPv6 fields if packet is not TCP and not UDP */ 8573 MLXSW_REG_RECR2_IPV6_EN_NOT_TCP_NOT_UDP = 5, 8574 /* Enable IPv6 fields if packet is TCP or UDP */ 8575 MLXSW_REG_RECR2_IPV6_EN_TCP_UDP = 6, 8576 /* Enable TCP/UDP header fields if packet is IPv4 */ 8577 MLXSW_REG_RECR2_TCP_UDP_EN_IPV4 = 7, 8578 /* Enable TCP/UDP header fields if packet is IPv6 */ 8579 MLXSW_REG_RECR2_TCP_UDP_EN_IPV6 = 8, 8580 8581 __MLXSW_REG_RECR2_HEADER_CNT, 8582 }; 8583 8584 /* reg_recr2_outer_header_enables 8585 * Bit mask where each bit enables a specific layer to be included in 8586 * the hash calculation. 8587 * Access: RW 8588 */ 8589 MLXSW_ITEM_BIT_ARRAY(reg, recr2, outer_header_enables, 0x10, 0x04, 1); 8590 8591 enum { 8592 /* IPv4 Source IP */ 8593 MLXSW_REG_RECR2_IPV4_SIP0 = 9, 8594 MLXSW_REG_RECR2_IPV4_SIP3 = 12, 8595 /* IPv4 Destination IP */ 8596 MLXSW_REG_RECR2_IPV4_DIP0 = 13, 8597 MLXSW_REG_RECR2_IPV4_DIP3 = 16, 8598 /* IP Protocol */ 8599 MLXSW_REG_RECR2_IPV4_PROTOCOL = 17, 8600 /* IPv6 Source IP */ 8601 MLXSW_REG_RECR2_IPV6_SIP0_7 = 21, 8602 MLXSW_REG_RECR2_IPV6_SIP8 = 29, 8603 MLXSW_REG_RECR2_IPV6_SIP15 = 36, 8604 /* IPv6 Destination IP */ 8605 MLXSW_REG_RECR2_IPV6_DIP0_7 = 37, 8606 MLXSW_REG_RECR2_IPV6_DIP8 = 45, 8607 MLXSW_REG_RECR2_IPV6_DIP15 = 52, 8608 /* IPv6 Next Header */ 8609 MLXSW_REG_RECR2_IPV6_NEXT_HEADER = 53, 8610 /* IPv6 Flow Label */ 8611 MLXSW_REG_RECR2_IPV6_FLOW_LABEL = 57, 8612 /* TCP/UDP Source Port */ 8613 MLXSW_REG_RECR2_TCP_UDP_SPORT = 74, 8614 /* TCP/UDP Destination Port */ 8615 MLXSW_REG_RECR2_TCP_UDP_DPORT = 75, 8616 8617 __MLXSW_REG_RECR2_FIELD_CNT, 8618 }; 8619 8620 /* reg_recr2_outer_header_fields_enable 8621 * Packet fields to enable for ECMP hash subject to outer_header_enable. 8622 * Access: RW 8623 */ 8624 MLXSW_ITEM_BIT_ARRAY(reg, recr2, outer_header_fields_enable, 0x14, 0x14, 1); 8625 8626 /* reg_recr2_inner_header_enables 8627 * Bit mask where each bit enables a specific inner layer to be included in the 8628 * hash calculation. Same values as reg_recr2_outer_header_enables. 8629 * Access: RW 8630 */ 8631 MLXSW_ITEM_BIT_ARRAY(reg, recr2, inner_header_enables, 0x2C, 0x04, 1); 8632 8633 enum { 8634 /* Inner IPv4 Source IP */ 8635 MLXSW_REG_RECR2_INNER_IPV4_SIP0 = 3, 8636 MLXSW_REG_RECR2_INNER_IPV4_SIP3 = 6, 8637 /* Inner IPv4 Destination IP */ 8638 MLXSW_REG_RECR2_INNER_IPV4_DIP0 = 7, 8639 MLXSW_REG_RECR2_INNER_IPV4_DIP3 = 10, 8640 /* Inner IP Protocol */ 8641 MLXSW_REG_RECR2_INNER_IPV4_PROTOCOL = 11, 8642 /* Inner IPv6 Source IP */ 8643 MLXSW_REG_RECR2_INNER_IPV6_SIP0_7 = 12, 8644 MLXSW_REG_RECR2_INNER_IPV6_SIP8 = 20, 8645 MLXSW_REG_RECR2_INNER_IPV6_SIP15 = 27, 8646 /* Inner IPv6 Destination IP */ 8647 MLXSW_REG_RECR2_INNER_IPV6_DIP0_7 = 28, 8648 MLXSW_REG_RECR2_INNER_IPV6_DIP8 = 36, 8649 MLXSW_REG_RECR2_INNER_IPV6_DIP15 = 43, 8650 /* Inner IPv6 Next Header */ 8651 MLXSW_REG_RECR2_INNER_IPV6_NEXT_HEADER = 44, 8652 /* Inner IPv6 Flow Label */ 8653 MLXSW_REG_RECR2_INNER_IPV6_FLOW_LABEL = 45, 8654 /* Inner TCP/UDP Source Port */ 8655 MLXSW_REG_RECR2_INNER_TCP_UDP_SPORT = 46, 8656 /* Inner TCP/UDP Destination Port */ 8657 MLXSW_REG_RECR2_INNER_TCP_UDP_DPORT = 47, 8658 8659 __MLXSW_REG_RECR2_INNER_FIELD_CNT, 8660 }; 8661 8662 /* reg_recr2_inner_header_fields_enable 8663 * Inner packet fields to enable for ECMP hash subject to inner_header_enables. 8664 * Access: RW 8665 */ 8666 MLXSW_ITEM_BIT_ARRAY(reg, recr2, inner_header_fields_enable, 0x30, 0x08, 1); 8667 8668 static inline void mlxsw_reg_recr2_pack(char *payload, u32 seed) 8669 { 8670 MLXSW_REG_ZERO(recr2, payload); 8671 mlxsw_reg_recr2_pp_set(payload, false); 8672 mlxsw_reg_recr2_sh_set(payload, true); 8673 mlxsw_reg_recr2_seed_set(payload, seed); 8674 } 8675 8676 /* RMFT-V2 - Router Multicast Forwarding Table Version 2 Register 8677 * -------------------------------------------------------------- 8678 * The RMFT_V2 register is used to configure and query the multicast table. 8679 */ 8680 #define MLXSW_REG_RMFT2_ID 0x8027 8681 #define MLXSW_REG_RMFT2_LEN 0x174 8682 8683 MLXSW_REG_DEFINE(rmft2, MLXSW_REG_RMFT2_ID, MLXSW_REG_RMFT2_LEN); 8684 8685 /* reg_rmft2_v 8686 * Valid 8687 * Access: RW 8688 */ 8689 MLXSW_ITEM32(reg, rmft2, v, 0x00, 31, 1); 8690 8691 enum mlxsw_reg_rmft2_type { 8692 MLXSW_REG_RMFT2_TYPE_IPV4, 8693 MLXSW_REG_RMFT2_TYPE_IPV6 8694 }; 8695 8696 /* reg_rmft2_type 8697 * Access: Index 8698 */ 8699 MLXSW_ITEM32(reg, rmft2, type, 0x00, 28, 2); 8700 8701 enum mlxsw_sp_reg_rmft2_op { 8702 /* For Write: 8703 * Write operation. Used to write a new entry to the table. All RW 8704 * fields are relevant for new entry. Activity bit is set for new 8705 * entries - Note write with v (Valid) 0 will delete the entry. 8706 * For Query: 8707 * Read operation 8708 */ 8709 MLXSW_REG_RMFT2_OP_READ_WRITE, 8710 }; 8711 8712 /* reg_rmft2_op 8713 * Operation. 8714 * Access: OP 8715 */ 8716 MLXSW_ITEM32(reg, rmft2, op, 0x00, 20, 2); 8717 8718 /* reg_rmft2_a 8719 * Activity. Set for new entries. Set if a packet lookup has hit on the specific 8720 * entry. 8721 * Access: RO 8722 */ 8723 MLXSW_ITEM32(reg, rmft2, a, 0x00, 16, 1); 8724 8725 /* reg_rmft2_offset 8726 * Offset within the multicast forwarding table to write to. 8727 * Access: Index 8728 */ 8729 MLXSW_ITEM32(reg, rmft2, offset, 0x00, 0, 16); 8730 8731 /* reg_rmft2_virtual_router 8732 * Virtual Router ID. Range from 0..cap_max_virtual_routers-1 8733 * Access: RW 8734 */ 8735 MLXSW_ITEM32(reg, rmft2, virtual_router, 0x04, 0, 16); 8736 8737 enum mlxsw_reg_rmft2_irif_mask { 8738 MLXSW_REG_RMFT2_IRIF_MASK_IGNORE, 8739 MLXSW_REG_RMFT2_IRIF_MASK_COMPARE 8740 }; 8741 8742 /* reg_rmft2_irif_mask 8743 * Ingress RIF mask. 8744 * Access: RW 8745 */ 8746 MLXSW_ITEM32(reg, rmft2, irif_mask, 0x08, 24, 1); 8747 8748 /* reg_rmft2_irif 8749 * Ingress RIF index. 8750 * Access: RW 8751 */ 8752 MLXSW_ITEM32(reg, rmft2, irif, 0x08, 0, 16); 8753 8754 /* reg_rmft2_dip{4,6} 8755 * Destination IPv4/6 address 8756 * Access: RW 8757 */ 8758 MLXSW_ITEM_BUF(reg, rmft2, dip6, 0x10, 16); 8759 MLXSW_ITEM32(reg, rmft2, dip4, 0x1C, 0, 32); 8760 8761 /* reg_rmft2_dip{4,6}_mask 8762 * A bit that is set directs the TCAM to compare the corresponding bit in key. A 8763 * bit that is clear directs the TCAM to ignore the corresponding bit in key. 8764 * Access: RW 8765 */ 8766 MLXSW_ITEM_BUF(reg, rmft2, dip6_mask, 0x20, 16); 8767 MLXSW_ITEM32(reg, rmft2, dip4_mask, 0x2C, 0, 32); 8768 8769 /* reg_rmft2_sip{4,6} 8770 * Source IPv4/6 address 8771 * Access: RW 8772 */ 8773 MLXSW_ITEM_BUF(reg, rmft2, sip6, 0x30, 16); 8774 MLXSW_ITEM32(reg, rmft2, sip4, 0x3C, 0, 32); 8775 8776 /* reg_rmft2_sip{4,6}_mask 8777 * A bit that is set directs the TCAM to compare the corresponding bit in key. A 8778 * bit that is clear directs the TCAM to ignore the corresponding bit in key. 8779 * Access: RW 8780 */ 8781 MLXSW_ITEM_BUF(reg, rmft2, sip6_mask, 0x40, 16); 8782 MLXSW_ITEM32(reg, rmft2, sip4_mask, 0x4C, 0, 32); 8783 8784 /* reg_rmft2_flexible_action_set 8785 * ACL action set. The only supported action types in this field and in any 8786 * action-set pointed from here are as follows: 8787 * 00h: ACTION_NULL 8788 * 01h: ACTION_MAC_TTL, only TTL configuration is supported. 8789 * 03h: ACTION_TRAP 8790 * 06h: ACTION_QOS 8791 * 08h: ACTION_POLICING_MONITORING 8792 * 10h: ACTION_ROUTER_MC 8793 * Access: RW 8794 */ 8795 MLXSW_ITEM_BUF(reg, rmft2, flexible_action_set, 0x80, 8796 MLXSW_REG_FLEX_ACTION_SET_LEN); 8797 8798 static inline void 8799 mlxsw_reg_rmft2_common_pack(char *payload, bool v, u16 offset, 8800 u16 virtual_router, 8801 enum mlxsw_reg_rmft2_irif_mask irif_mask, u16 irif, 8802 const char *flex_action_set) 8803 { 8804 MLXSW_REG_ZERO(rmft2, payload); 8805 mlxsw_reg_rmft2_v_set(payload, v); 8806 mlxsw_reg_rmft2_op_set(payload, MLXSW_REG_RMFT2_OP_READ_WRITE); 8807 mlxsw_reg_rmft2_offset_set(payload, offset); 8808 mlxsw_reg_rmft2_virtual_router_set(payload, virtual_router); 8809 mlxsw_reg_rmft2_irif_mask_set(payload, irif_mask); 8810 mlxsw_reg_rmft2_irif_set(payload, irif); 8811 if (flex_action_set) 8812 mlxsw_reg_rmft2_flexible_action_set_memcpy_to(payload, 8813 flex_action_set); 8814 } 8815 8816 static inline void 8817 mlxsw_reg_rmft2_ipv4_pack(char *payload, bool v, u16 offset, u16 virtual_router, 8818 enum mlxsw_reg_rmft2_irif_mask irif_mask, u16 irif, 8819 u32 dip4, u32 dip4_mask, u32 sip4, u32 sip4_mask, 8820 const char *flexible_action_set) 8821 { 8822 mlxsw_reg_rmft2_common_pack(payload, v, offset, virtual_router, 8823 irif_mask, irif, flexible_action_set); 8824 mlxsw_reg_rmft2_type_set(payload, MLXSW_REG_RMFT2_TYPE_IPV4); 8825 mlxsw_reg_rmft2_dip4_set(payload, dip4); 8826 mlxsw_reg_rmft2_dip4_mask_set(payload, dip4_mask); 8827 mlxsw_reg_rmft2_sip4_set(payload, sip4); 8828 mlxsw_reg_rmft2_sip4_mask_set(payload, sip4_mask); 8829 } 8830 8831 static inline void 8832 mlxsw_reg_rmft2_ipv6_pack(char *payload, bool v, u16 offset, u16 virtual_router, 8833 enum mlxsw_reg_rmft2_irif_mask irif_mask, u16 irif, 8834 struct in6_addr dip6, struct in6_addr dip6_mask, 8835 struct in6_addr sip6, struct in6_addr sip6_mask, 8836 const char *flexible_action_set) 8837 { 8838 mlxsw_reg_rmft2_common_pack(payload, v, offset, virtual_router, 8839 irif_mask, irif, flexible_action_set); 8840 mlxsw_reg_rmft2_type_set(payload, MLXSW_REG_RMFT2_TYPE_IPV6); 8841 mlxsw_reg_rmft2_dip6_memcpy_to(payload, (void *)&dip6); 8842 mlxsw_reg_rmft2_dip6_mask_memcpy_to(payload, (void *)&dip6_mask); 8843 mlxsw_reg_rmft2_sip6_memcpy_to(payload, (void *)&sip6); 8844 mlxsw_reg_rmft2_sip6_mask_memcpy_to(payload, (void *)&sip6_mask); 8845 } 8846 8847 /* RXLTE - Router XLT Enable Register 8848 * ---------------------------------- 8849 * The RXLTE enables XLT (eXtended Lookup Table) LPM lookups if a capable 8850 * XM is present on the system. 8851 */ 8852 8853 #define MLXSW_REG_RXLTE_ID 0x8050 8854 #define MLXSW_REG_RXLTE_LEN 0x0C 8855 8856 MLXSW_REG_DEFINE(rxlte, MLXSW_REG_RXLTE_ID, MLXSW_REG_RXLTE_LEN); 8857 8858 /* reg_rxlte_virtual_router 8859 * Virtual router ID associated with the router interface. 8860 * Range is 0..cap_max_virtual_routers-1 8861 * Access: Index 8862 */ 8863 MLXSW_ITEM32(reg, rxlte, virtual_router, 0x00, 0, 16); 8864 8865 enum mlxsw_reg_rxlte_protocol { 8866 MLXSW_REG_RXLTE_PROTOCOL_IPV4, 8867 MLXSW_REG_RXLTE_PROTOCOL_IPV6, 8868 }; 8869 8870 /* reg_rxlte_protocol 8871 * Access: Index 8872 */ 8873 MLXSW_ITEM32(reg, rxlte, protocol, 0x04, 0, 4); 8874 8875 /* reg_rxlte_lpm_xlt_en 8876 * Access: RW 8877 */ 8878 MLXSW_ITEM32(reg, rxlte, lpm_xlt_en, 0x08, 0, 1); 8879 8880 static inline void mlxsw_reg_rxlte_pack(char *payload, u16 virtual_router, 8881 enum mlxsw_reg_rxlte_protocol protocol, 8882 bool lpm_xlt_en) 8883 { 8884 MLXSW_REG_ZERO(rxlte, payload); 8885 mlxsw_reg_rxlte_virtual_router_set(payload, virtual_router); 8886 mlxsw_reg_rxlte_protocol_set(payload, protocol); 8887 mlxsw_reg_rxlte_lpm_xlt_en_set(payload, lpm_xlt_en); 8888 } 8889 8890 /* RXLTM - Router XLT M select Register 8891 * ------------------------------------ 8892 * The RXLTM configures and selects the M for the XM lookups. 8893 */ 8894 8895 #define MLXSW_REG_RXLTM_ID 0x8051 8896 #define MLXSW_REG_RXLTM_LEN 0x14 8897 8898 MLXSW_REG_DEFINE(rxltm, MLXSW_REG_RXLTM_ID, MLXSW_REG_RXLTM_LEN); 8899 8900 /* reg_rxltm_m0_val_v6 8901 * Global M0 value For IPv6. 8902 * Range 0..128 8903 * Access: RW 8904 */ 8905 MLXSW_ITEM32(reg, rxltm, m0_val_v6, 0x10, 16, 8); 8906 8907 /* reg_rxltm_m0_val_v4 8908 * Global M0 value For IPv4. 8909 * Range 0..32 8910 * Access: RW 8911 */ 8912 MLXSW_ITEM32(reg, rxltm, m0_val_v4, 0x10, 0, 6); 8913 8914 static inline void mlxsw_reg_rxltm_pack(char *payload, u8 m0_val_v4, u8 m0_val_v6) 8915 { 8916 MLXSW_REG_ZERO(rxltm, payload); 8917 mlxsw_reg_rxltm_m0_val_v6_set(payload, m0_val_v6); 8918 mlxsw_reg_rxltm_m0_val_v4_set(payload, m0_val_v4); 8919 } 8920 8921 /* RLCMLD - Router LPM Cache ML Delete Register 8922 * -------------------------------------------- 8923 * The RLCMLD register is used to bulk delete the XLT-LPM cache ML entries. 8924 * This can be used by SW when L is increased or decreased, thus need to 8925 * remove entries with old ML values. 8926 */ 8927 8928 #define MLXSW_REG_RLCMLD_ID 0x8055 8929 #define MLXSW_REG_RLCMLD_LEN 0x30 8930 8931 MLXSW_REG_DEFINE(rlcmld, MLXSW_REG_RLCMLD_ID, MLXSW_REG_RLCMLD_LEN); 8932 8933 enum mlxsw_reg_rlcmld_select { 8934 MLXSW_REG_RLCMLD_SELECT_ML_ENTRIES, 8935 MLXSW_REG_RLCMLD_SELECT_M_ENTRIES, 8936 MLXSW_REG_RLCMLD_SELECT_M_AND_ML_ENTRIES, 8937 }; 8938 8939 /* reg_rlcmld_select 8940 * Which entries to delete. 8941 * Access: Index 8942 */ 8943 MLXSW_ITEM32(reg, rlcmld, select, 0x00, 16, 2); 8944 8945 enum mlxsw_reg_rlcmld_filter_fields { 8946 MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_PROTOCOL = 0x04, 8947 MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_VIRTUAL_ROUTER = 0x08, 8948 MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_DIP = 0x10, 8949 }; 8950 8951 /* reg_rlcmld_filter_fields 8952 * If a bit is '0' then the relevant field is ignored. 8953 * Access: Index 8954 */ 8955 MLXSW_ITEM32(reg, rlcmld, filter_fields, 0x00, 0, 8); 8956 8957 enum mlxsw_reg_rlcmld_protocol { 8958 MLXSW_REG_RLCMLD_PROTOCOL_UC_IPV4, 8959 MLXSW_REG_RLCMLD_PROTOCOL_UC_IPV6, 8960 }; 8961 8962 /* reg_rlcmld_protocol 8963 * Access: Index 8964 */ 8965 MLXSW_ITEM32(reg, rlcmld, protocol, 0x08, 0, 4); 8966 8967 /* reg_rlcmld_virtual_router 8968 * Virtual router ID. 8969 * Range is 0..cap_max_virtual_routers-1 8970 * Access: Index 8971 */ 8972 MLXSW_ITEM32(reg, rlcmld, virtual_router, 0x0C, 0, 16); 8973 8974 /* reg_rlcmld_dip 8975 * The prefix of the route or of the marker that the object of the LPM 8976 * is compared with. The most significant bits of the dip are the prefix. 8977 * Access: Index 8978 */ 8979 MLXSW_ITEM32(reg, rlcmld, dip4, 0x1C, 0, 32); 8980 MLXSW_ITEM_BUF(reg, rlcmld, dip6, 0x10, 16); 8981 8982 /* reg_rlcmld_dip_mask 8983 * per bit: 8984 * 0: no match 8985 * 1: match 8986 * Access: Index 8987 */ 8988 MLXSW_ITEM32(reg, rlcmld, dip_mask4, 0x2C, 0, 32); 8989 MLXSW_ITEM_BUF(reg, rlcmld, dip_mask6, 0x20, 16); 8990 8991 static inline void __mlxsw_reg_rlcmld_pack(char *payload, 8992 enum mlxsw_reg_rlcmld_select select, 8993 enum mlxsw_reg_rlcmld_protocol protocol, 8994 u16 virtual_router) 8995 { 8996 u8 filter_fields = MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_PROTOCOL | 8997 MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_VIRTUAL_ROUTER | 8998 MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_DIP; 8999 9000 MLXSW_REG_ZERO(rlcmld, payload); 9001 mlxsw_reg_rlcmld_select_set(payload, select); 9002 mlxsw_reg_rlcmld_filter_fields_set(payload, filter_fields); 9003 mlxsw_reg_rlcmld_protocol_set(payload, protocol); 9004 mlxsw_reg_rlcmld_virtual_router_set(payload, virtual_router); 9005 } 9006 9007 static inline void mlxsw_reg_rlcmld_pack4(char *payload, 9008 enum mlxsw_reg_rlcmld_select select, 9009 u16 virtual_router, 9010 u32 dip, u32 dip_mask) 9011 { 9012 __mlxsw_reg_rlcmld_pack(payload, select, 9013 MLXSW_REG_RLCMLD_PROTOCOL_UC_IPV4, 9014 virtual_router); 9015 mlxsw_reg_rlcmld_dip4_set(payload, dip); 9016 mlxsw_reg_rlcmld_dip_mask4_set(payload, dip_mask); 9017 } 9018 9019 static inline void mlxsw_reg_rlcmld_pack6(char *payload, 9020 enum mlxsw_reg_rlcmld_select select, 9021 u16 virtual_router, 9022 const void *dip, const void *dip_mask) 9023 { 9024 __mlxsw_reg_rlcmld_pack(payload, select, 9025 MLXSW_REG_RLCMLD_PROTOCOL_UC_IPV6, 9026 virtual_router); 9027 mlxsw_reg_rlcmld_dip6_memcpy_to(payload, dip); 9028 mlxsw_reg_rlcmld_dip_mask6_memcpy_to(payload, dip_mask); 9029 } 9030 9031 /* RLPMCE - Router LPM Cache Enable Register 9032 * ----------------------------------------- 9033 * Allows disabling the LPM cache. Can be changed on the fly. 9034 */ 9035 9036 #define MLXSW_REG_RLPMCE_ID 0x8056 9037 #define MLXSW_REG_RLPMCE_LEN 0x4 9038 9039 MLXSW_REG_DEFINE(rlpmce, MLXSW_REG_RLPMCE_ID, MLXSW_REG_RLPMCE_LEN); 9040 9041 /* reg_rlpmce_flush 9042 * Flush: 9043 * 0: do not flush the cache (default) 9044 * 1: flush (clear) the cache 9045 * Access: WO 9046 */ 9047 MLXSW_ITEM32(reg, rlpmce, flush, 0x00, 4, 1); 9048 9049 /* reg_rlpmce_disable 9050 * LPM cache: 9051 * 0: enabled (default) 9052 * 1: disabled 9053 * Access: RW 9054 */ 9055 MLXSW_ITEM32(reg, rlpmce, disable, 0x00, 0, 1); 9056 9057 static inline void mlxsw_reg_rlpmce_pack(char *payload, bool flush, 9058 bool disable) 9059 { 9060 MLXSW_REG_ZERO(rlpmce, payload); 9061 mlxsw_reg_rlpmce_flush_set(payload, flush); 9062 mlxsw_reg_rlpmce_disable_set(payload, disable); 9063 } 9064 9065 /* Note that XLTQ, XMDR, XRMT and XRALXX register positions violate the rule 9066 * of ordering register definitions by the ID. However, XRALXX pack helpers are 9067 * using RALXX pack helpers, RALXX registers have higher IDs. 9068 * Also XMDR is using RALUE enums. XLRQ and XRMT are just put alongside with the 9069 * related registers. 9070 */ 9071 9072 /* XLTQ - XM Lookup Table Query Register 9073 * ------------------------------------- 9074 */ 9075 #define MLXSW_REG_XLTQ_ID 0x7802 9076 #define MLXSW_REG_XLTQ_LEN 0x2C 9077 9078 MLXSW_REG_DEFINE(xltq, MLXSW_REG_XLTQ_ID, MLXSW_REG_XLTQ_LEN); 9079 9080 enum mlxsw_reg_xltq_xm_device_id { 9081 MLXSW_REG_XLTQ_XM_DEVICE_ID_UNKNOWN, 9082 MLXSW_REG_XLTQ_XM_DEVICE_ID_XLT = 0xCF71, 9083 }; 9084 9085 /* reg_xltq_xm_device_id 9086 * XM device ID. 9087 * Access: RO 9088 */ 9089 MLXSW_ITEM32(reg, xltq, xm_device_id, 0x04, 0, 16); 9090 9091 /* reg_xltq_xlt_cap_ipv4_lpm 9092 * Access: RO 9093 */ 9094 MLXSW_ITEM32(reg, xltq, xlt_cap_ipv4_lpm, 0x10, 0, 1); 9095 9096 /* reg_xltq_xlt_cap_ipv6_lpm 9097 * Access: RO 9098 */ 9099 MLXSW_ITEM32(reg, xltq, xlt_cap_ipv6_lpm, 0x10, 1, 1); 9100 9101 /* reg_xltq_cap_xlt_entries 9102 * Number of XLT entries 9103 * Note: SW must not fill more than 80% in order to avoid overflow 9104 * Access: RO 9105 */ 9106 MLXSW_ITEM32(reg, xltq, cap_xlt_entries, 0x20, 0, 32); 9107 9108 /* reg_xltq_cap_xlt_mtable 9109 * XLT M-Table max size 9110 * Access: RO 9111 */ 9112 MLXSW_ITEM32(reg, xltq, cap_xlt_mtable, 0x24, 0, 32); 9113 9114 static inline void mlxsw_reg_xltq_pack(char *payload) 9115 { 9116 MLXSW_REG_ZERO(xltq, payload); 9117 } 9118 9119 static inline void mlxsw_reg_xltq_unpack(char *payload, u16 *xm_device_id, bool *xlt_cap_ipv4_lpm, 9120 bool *xlt_cap_ipv6_lpm, u32 *cap_xlt_entries, 9121 u32 *cap_xlt_mtable) 9122 { 9123 *xm_device_id = mlxsw_reg_xltq_xm_device_id_get(payload); 9124 *xlt_cap_ipv4_lpm = mlxsw_reg_xltq_xlt_cap_ipv4_lpm_get(payload); 9125 *xlt_cap_ipv6_lpm = mlxsw_reg_xltq_xlt_cap_ipv6_lpm_get(payload); 9126 *cap_xlt_entries = mlxsw_reg_xltq_cap_xlt_entries_get(payload); 9127 *cap_xlt_mtable = mlxsw_reg_xltq_cap_xlt_mtable_get(payload); 9128 } 9129 9130 /* XMDR - XM Direct Register 9131 * ------------------------- 9132 * The XMDR allows direct access to the XM device via the switch. 9133 * Working in synchronous mode. FW waits for response from the XLT 9134 * for each command. FW acks the XMDR accordingly. 9135 */ 9136 #define MLXSW_REG_XMDR_ID 0x7803 9137 #define MLXSW_REG_XMDR_BASE_LEN 0x20 9138 #define MLXSW_REG_XMDR_TRANS_LEN 0x80 9139 #define MLXSW_REG_XMDR_LEN (MLXSW_REG_XMDR_BASE_LEN + \ 9140 MLXSW_REG_XMDR_TRANS_LEN) 9141 9142 MLXSW_REG_DEFINE(xmdr, MLXSW_REG_XMDR_ID, MLXSW_REG_XMDR_LEN); 9143 9144 /* reg_xmdr_bulk_entry 9145 * Bulk_entry 9146 * 0: Last entry - immediate flush of XRT-cache 9147 * 1: Bulk entry - do not flush the XRT-cache 9148 * Access: OP 9149 */ 9150 MLXSW_ITEM32(reg, xmdr, bulk_entry, 0x04, 8, 1); 9151 9152 /* reg_xmdr_num_rec 9153 * Number of records for Direct access to XM 9154 * Supported: 0..4 commands (except NOP which is a filler) 9155 * 0 commands is reserved when bulk_entry = 1. 9156 * 0 commands is allowed when bulk_entry = 0 for immediate XRT-cache flush. 9157 * Access: OP 9158 */ 9159 MLXSW_ITEM32(reg, xmdr, num_rec, 0x04, 0, 4); 9160 9161 /* reg_xmdr_reply_vect 9162 * Reply Vector 9163 * Bit i for command index i+1 9164 * values per bit: 9165 * 0: failed 9166 * 1: succeeded 9167 * e.g. if commands 1, 2, 4 succeeded and command 3 failed then binary 9168 * value will be 0b1011 9169 * Access: RO 9170 */ 9171 MLXSW_ITEM_BIT_ARRAY(reg, xmdr, reply_vect, 0x08, 4, 1); 9172 9173 static inline void mlxsw_reg_xmdr_pack(char *payload, bool bulk_entry) 9174 { 9175 MLXSW_REG_ZERO(xmdr, payload); 9176 mlxsw_reg_xmdr_bulk_entry_set(payload, bulk_entry); 9177 } 9178 9179 enum mlxsw_reg_xmdr_c_cmd_id { 9180 MLXSW_REG_XMDR_C_CMD_ID_LT_ROUTE_V4 = 0x30, 9181 MLXSW_REG_XMDR_C_CMD_ID_LT_ROUTE_V6 = 0x31, 9182 }; 9183 9184 #define MLXSW_REG_XMDR_C_LT_ROUTE_V4_LEN 32 9185 #define MLXSW_REG_XMDR_C_LT_ROUTE_V6_LEN 48 9186 9187 /* reg_xmdr_c_cmd_id 9188 */ 9189 MLXSW_ITEM32(reg, xmdr_c, cmd_id, 0x00, 24, 8); 9190 9191 /* reg_xmdr_c_seq_number 9192 */ 9193 MLXSW_ITEM32(reg, xmdr_c, seq_number, 0x00, 12, 12); 9194 9195 enum mlxsw_reg_xmdr_c_ltr_op { 9196 /* Activity is set */ 9197 MLXSW_REG_XMDR_C_LTR_OP_WRITE = 0, 9198 /* There is no update mask. All fields are updated. */ 9199 MLXSW_REG_XMDR_C_LTR_OP_UPDATE = 1, 9200 MLXSW_REG_XMDR_C_LTR_OP_DELETE = 2, 9201 }; 9202 9203 /* reg_xmdr_c_ltr_op 9204 * Operation. 9205 */ 9206 MLXSW_ITEM32(reg, xmdr_c, ltr_op, 0x04, 24, 8); 9207 9208 /* reg_xmdr_c_ltr_trap_action 9209 * Trap action. 9210 * Values are defined in enum mlxsw_reg_ralue_trap_action. 9211 */ 9212 MLXSW_ITEM32(reg, xmdr_c, ltr_trap_action, 0x04, 20, 4); 9213 9214 enum mlxsw_reg_xmdr_c_ltr_trap_id_num { 9215 MLXSW_REG_XMDR_C_LTR_TRAP_ID_NUM_RTR_INGRESS0, 9216 MLXSW_REG_XMDR_C_LTR_TRAP_ID_NUM_RTR_INGRESS1, 9217 MLXSW_REG_XMDR_C_LTR_TRAP_ID_NUM_RTR_INGRESS2, 9218 MLXSW_REG_XMDR_C_LTR_TRAP_ID_NUM_RTR_INGRESS3, 9219 }; 9220 9221 /* reg_xmdr_c_ltr_trap_id_num 9222 * Trap-ID number. 9223 */ 9224 MLXSW_ITEM32(reg, xmdr_c, ltr_trap_id_num, 0x04, 16, 4); 9225 9226 /* reg_xmdr_c_ltr_virtual_router 9227 * Virtual Router ID. 9228 * Range is 0..cap_max_virtual_routers-1 9229 */ 9230 MLXSW_ITEM32(reg, xmdr_c, ltr_virtual_router, 0x04, 0, 16); 9231 9232 /* reg_xmdr_c_ltr_prefix_len 9233 * Number of bits in the prefix of the LPM route. 9234 */ 9235 MLXSW_ITEM32(reg, xmdr_c, ltr_prefix_len, 0x08, 24, 8); 9236 9237 /* reg_xmdr_c_ltr_bmp_len 9238 * The best match prefix length in the case that there is no match for 9239 * longer prefixes. 9240 * If (entry_type != MARKER_ENTRY), bmp_len must be equal to prefix_len 9241 */ 9242 MLXSW_ITEM32(reg, xmdr_c, ltr_bmp_len, 0x08, 16, 8); 9243 9244 /* reg_xmdr_c_ltr_entry_type 9245 * Entry type. 9246 * Values are defined in enum mlxsw_reg_ralue_entry_type. 9247 */ 9248 MLXSW_ITEM32(reg, xmdr_c, ltr_entry_type, 0x08, 4, 4); 9249 9250 enum mlxsw_reg_xmdr_c_ltr_action_type { 9251 MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_LOCAL, 9252 MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_REMOTE, 9253 MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_IP2ME, 9254 }; 9255 9256 /* reg_xmdr_c_ltr_action_type 9257 * Action Type. 9258 */ 9259 MLXSW_ITEM32(reg, xmdr_c, ltr_action_type, 0x08, 0, 4); 9260 9261 /* reg_xmdr_c_ltr_erif 9262 * Egress Router Interface. 9263 * Only relevant in case of LOCAL action. 9264 */ 9265 MLXSW_ITEM32(reg, xmdr_c, ltr_erif, 0x10, 0, 16); 9266 9267 /* reg_xmdr_c_ltr_adjacency_index 9268 * Points to the first entry of the group-based ECMP. 9269 * Only relevant in case of REMOTE action. 9270 */ 9271 MLXSW_ITEM32(reg, xmdr_c, ltr_adjacency_index, 0x10, 0, 24); 9272 9273 #define MLXSW_REG_XMDR_C_LTR_POINTER_TO_TUNNEL_DISABLED_MAGIC 0xFFFFFF 9274 9275 /* reg_xmdr_c_ltr_pointer_to_tunnel 9276 * Only relevant in case of IP2ME action. 9277 */ 9278 MLXSW_ITEM32(reg, xmdr_c, ltr_pointer_to_tunnel, 0x10, 0, 24); 9279 9280 /* reg_xmdr_c_ltr_ecmp_size 9281 * Amount of sequential entries starting 9282 * from the adjacency_index (the number of ECMPs). 9283 * The valid range is 1-64, 512, 1024, 2048 and 4096. 9284 * Only relevant in case of REMOTE action. 9285 */ 9286 MLXSW_ITEM32(reg, xmdr_c, ltr_ecmp_size, 0x14, 0, 32); 9287 9288 /* reg_xmdr_c_ltr_dip* 9289 * The prefix of the route or of the marker that the object of the LPM 9290 * is compared with. The most significant bits of the dip are the prefix. 9291 * The least significant bits must be '0' if the prefix_len is smaller 9292 * than 128 for IPv6 or smaller than 32 for IPv4. 9293 */ 9294 MLXSW_ITEM32(reg, xmdr_c, ltr_dip4, 0x1C, 0, 32); 9295 MLXSW_ITEM_BUF(reg, xmdr_c, ltr_dip6, 0x1C, 16); 9296 9297 static inline void 9298 mlxsw_reg_xmdr_c_ltr_pack(char *xmdr_payload, unsigned int trans_offset, 9299 enum mlxsw_reg_xmdr_c_cmd_id cmd_id, u16 seq_number, 9300 enum mlxsw_reg_xmdr_c_ltr_op op, u16 virtual_router, 9301 u8 prefix_len) 9302 { 9303 char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset; 9304 u8 num_rec = mlxsw_reg_xmdr_num_rec_get(xmdr_payload); 9305 9306 mlxsw_reg_xmdr_num_rec_set(xmdr_payload, num_rec + 1); 9307 9308 mlxsw_reg_xmdr_c_cmd_id_set(payload, cmd_id); 9309 mlxsw_reg_xmdr_c_seq_number_set(payload, seq_number); 9310 mlxsw_reg_xmdr_c_ltr_op_set(payload, op); 9311 mlxsw_reg_xmdr_c_ltr_virtual_router_set(payload, virtual_router); 9312 mlxsw_reg_xmdr_c_ltr_prefix_len_set(payload, prefix_len); 9313 mlxsw_reg_xmdr_c_ltr_entry_type_set(payload, 9314 MLXSW_REG_RALUE_ENTRY_TYPE_ROUTE_ENTRY); 9315 mlxsw_reg_xmdr_c_ltr_bmp_len_set(payload, prefix_len); 9316 } 9317 9318 static inline unsigned int 9319 mlxsw_reg_xmdr_c_ltr_pack4(char *xmdr_payload, unsigned int trans_offset, 9320 u16 seq_number, enum mlxsw_reg_xmdr_c_ltr_op op, 9321 u16 virtual_router, u8 prefix_len, u32 *dip) 9322 { 9323 char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset; 9324 9325 mlxsw_reg_xmdr_c_ltr_pack(xmdr_payload, trans_offset, 9326 MLXSW_REG_XMDR_C_CMD_ID_LT_ROUTE_V4, 9327 seq_number, op, virtual_router, prefix_len); 9328 if (dip) 9329 mlxsw_reg_xmdr_c_ltr_dip4_set(payload, *dip); 9330 return MLXSW_REG_XMDR_C_LT_ROUTE_V4_LEN; 9331 } 9332 9333 static inline unsigned int 9334 mlxsw_reg_xmdr_c_ltr_pack6(char *xmdr_payload, unsigned int trans_offset, 9335 u16 seq_number, enum mlxsw_reg_xmdr_c_ltr_op op, 9336 u16 virtual_router, u8 prefix_len, const void *dip) 9337 { 9338 char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset; 9339 9340 mlxsw_reg_xmdr_c_ltr_pack(xmdr_payload, trans_offset, 9341 MLXSW_REG_XMDR_C_CMD_ID_LT_ROUTE_V6, 9342 seq_number, op, virtual_router, prefix_len); 9343 if (dip) 9344 mlxsw_reg_xmdr_c_ltr_dip6_memcpy_to(payload, dip); 9345 return MLXSW_REG_XMDR_C_LT_ROUTE_V6_LEN; 9346 } 9347 9348 static inline void 9349 mlxsw_reg_xmdr_c_ltr_act_remote_pack(char *xmdr_payload, unsigned int trans_offset, 9350 enum mlxsw_reg_ralue_trap_action trap_action, 9351 enum mlxsw_reg_xmdr_c_ltr_trap_id_num trap_id_num, 9352 u32 adjacency_index, u16 ecmp_size) 9353 { 9354 char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset; 9355 9356 mlxsw_reg_xmdr_c_ltr_action_type_set(payload, MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_REMOTE); 9357 mlxsw_reg_xmdr_c_ltr_trap_action_set(payload, trap_action); 9358 mlxsw_reg_xmdr_c_ltr_trap_id_num_set(payload, trap_id_num); 9359 mlxsw_reg_xmdr_c_ltr_adjacency_index_set(payload, adjacency_index); 9360 mlxsw_reg_xmdr_c_ltr_ecmp_size_set(payload, ecmp_size); 9361 } 9362 9363 static inline void 9364 mlxsw_reg_xmdr_c_ltr_act_local_pack(char *xmdr_payload, unsigned int trans_offset, 9365 enum mlxsw_reg_ralue_trap_action trap_action, 9366 enum mlxsw_reg_xmdr_c_ltr_trap_id_num trap_id_num, u16 erif) 9367 { 9368 char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset; 9369 9370 mlxsw_reg_xmdr_c_ltr_action_type_set(payload, MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_LOCAL); 9371 mlxsw_reg_xmdr_c_ltr_trap_action_set(payload, trap_action); 9372 mlxsw_reg_xmdr_c_ltr_trap_id_num_set(payload, trap_id_num); 9373 mlxsw_reg_xmdr_c_ltr_erif_set(payload, erif); 9374 } 9375 9376 static inline void mlxsw_reg_xmdr_c_ltr_act_ip2me_pack(char *xmdr_payload, 9377 unsigned int trans_offset) 9378 { 9379 char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset; 9380 9381 mlxsw_reg_xmdr_c_ltr_action_type_set(payload, MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_IP2ME); 9382 mlxsw_reg_xmdr_c_ltr_pointer_to_tunnel_set(payload, 9383 MLXSW_REG_XMDR_C_LTR_POINTER_TO_TUNNEL_DISABLED_MAGIC); 9384 } 9385 9386 static inline void mlxsw_reg_xmdr_c_ltr_act_ip2me_tun_pack(char *xmdr_payload, 9387 unsigned int trans_offset, 9388 u32 pointer_to_tunnel) 9389 { 9390 char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset; 9391 9392 mlxsw_reg_xmdr_c_ltr_action_type_set(payload, MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_IP2ME); 9393 mlxsw_reg_xmdr_c_ltr_pointer_to_tunnel_set(payload, pointer_to_tunnel); 9394 } 9395 9396 /* XRMT - XM Router M Table Register 9397 * --------------------------------- 9398 * The XRMT configures the M-Table for the XLT-LPM. 9399 */ 9400 #define MLXSW_REG_XRMT_ID 0x7810 9401 #define MLXSW_REG_XRMT_LEN 0x14 9402 9403 MLXSW_REG_DEFINE(xrmt, MLXSW_REG_XRMT_ID, MLXSW_REG_XRMT_LEN); 9404 9405 /* reg_xrmt_index 9406 * Index in M-Table. 9407 * Range 0..cap_xlt_mtable-1 9408 * Access: Index 9409 */ 9410 MLXSW_ITEM32(reg, xrmt, index, 0x04, 0, 20); 9411 9412 /* reg_xrmt_l0_val 9413 * Access: RW 9414 */ 9415 MLXSW_ITEM32(reg, xrmt, l0_val, 0x10, 24, 8); 9416 9417 static inline void mlxsw_reg_xrmt_pack(char *payload, u32 index, u8 l0_val) 9418 { 9419 MLXSW_REG_ZERO(xrmt, payload); 9420 mlxsw_reg_xrmt_index_set(payload, index); 9421 mlxsw_reg_xrmt_l0_val_set(payload, l0_val); 9422 } 9423 9424 /* XRALTA - XM Router Algorithmic LPM Tree Allocation Register 9425 * ----------------------------------------------------------- 9426 * The XRALTA is used to allocate the XLT LPM trees. 9427 * 9428 * This register embeds original RALTA register. 9429 */ 9430 #define MLXSW_REG_XRALTA_ID 0x7811 9431 #define MLXSW_REG_XRALTA_LEN 0x08 9432 #define MLXSW_REG_XRALTA_RALTA_OFFSET 0x04 9433 9434 MLXSW_REG_DEFINE(xralta, MLXSW_REG_XRALTA_ID, MLXSW_REG_XRALTA_LEN); 9435 9436 static inline void mlxsw_reg_xralta_pack(char *payload, bool alloc, 9437 enum mlxsw_reg_ralxx_protocol protocol, 9438 u8 tree_id) 9439 { 9440 char *ralta_payload = payload + MLXSW_REG_XRALTA_RALTA_OFFSET; 9441 9442 MLXSW_REG_ZERO(xralta, payload); 9443 mlxsw_reg_ralta_pack(ralta_payload, alloc, protocol, tree_id); 9444 } 9445 9446 /* XRALST - XM Router Algorithmic LPM Structure Tree Register 9447 * ---------------------------------------------------------- 9448 * The XRALST is used to set and query the structure of an XLT LPM tree. 9449 * 9450 * This register embeds original RALST register. 9451 */ 9452 #define MLXSW_REG_XRALST_ID 0x7812 9453 #define MLXSW_REG_XRALST_LEN 0x108 9454 #define MLXSW_REG_XRALST_RALST_OFFSET 0x04 9455 9456 MLXSW_REG_DEFINE(xralst, MLXSW_REG_XRALST_ID, MLXSW_REG_XRALST_LEN); 9457 9458 static inline void mlxsw_reg_xralst_pack(char *payload, u8 root_bin, u8 tree_id) 9459 { 9460 char *ralst_payload = payload + MLXSW_REG_XRALST_RALST_OFFSET; 9461 9462 MLXSW_REG_ZERO(xralst, payload); 9463 mlxsw_reg_ralst_pack(ralst_payload, root_bin, tree_id); 9464 } 9465 9466 static inline void mlxsw_reg_xralst_bin_pack(char *payload, u8 bin_number, 9467 u8 left_child_bin, 9468 u8 right_child_bin) 9469 { 9470 char *ralst_payload = payload + MLXSW_REG_XRALST_RALST_OFFSET; 9471 9472 mlxsw_reg_ralst_bin_pack(ralst_payload, bin_number, left_child_bin, 9473 right_child_bin); 9474 } 9475 9476 /* XRALTB - XM Router Algorithmic LPM Tree Binding Register 9477 * -------------------------------------------------------- 9478 * The XRALTB register is used to bind virtual router and protocol 9479 * to an allocated LPM tree. 9480 * 9481 * This register embeds original RALTB register. 9482 */ 9483 #define MLXSW_REG_XRALTB_ID 0x7813 9484 #define MLXSW_REG_XRALTB_LEN 0x08 9485 #define MLXSW_REG_XRALTB_RALTB_OFFSET 0x04 9486 9487 MLXSW_REG_DEFINE(xraltb, MLXSW_REG_XRALTB_ID, MLXSW_REG_XRALTB_LEN); 9488 9489 static inline void mlxsw_reg_xraltb_pack(char *payload, u16 virtual_router, 9490 enum mlxsw_reg_ralxx_protocol protocol, 9491 u8 tree_id) 9492 { 9493 char *raltb_payload = payload + MLXSW_REG_XRALTB_RALTB_OFFSET; 9494 9495 MLXSW_REG_ZERO(xraltb, payload); 9496 mlxsw_reg_raltb_pack(raltb_payload, virtual_router, protocol, tree_id); 9497 } 9498 9499 /* MFCR - Management Fan Control Register 9500 * -------------------------------------- 9501 * This register controls the settings of the Fan Speed PWM mechanism. 9502 */ 9503 #define MLXSW_REG_MFCR_ID 0x9001 9504 #define MLXSW_REG_MFCR_LEN 0x08 9505 9506 MLXSW_REG_DEFINE(mfcr, MLXSW_REG_MFCR_ID, MLXSW_REG_MFCR_LEN); 9507 9508 enum mlxsw_reg_mfcr_pwm_frequency { 9509 MLXSW_REG_MFCR_PWM_FEQ_11HZ = 0x00, 9510 MLXSW_REG_MFCR_PWM_FEQ_14_7HZ = 0x01, 9511 MLXSW_REG_MFCR_PWM_FEQ_22_1HZ = 0x02, 9512 MLXSW_REG_MFCR_PWM_FEQ_1_4KHZ = 0x40, 9513 MLXSW_REG_MFCR_PWM_FEQ_5KHZ = 0x41, 9514 MLXSW_REG_MFCR_PWM_FEQ_20KHZ = 0x42, 9515 MLXSW_REG_MFCR_PWM_FEQ_22_5KHZ = 0x43, 9516 MLXSW_REG_MFCR_PWM_FEQ_25KHZ = 0x44, 9517 }; 9518 9519 /* reg_mfcr_pwm_frequency 9520 * Controls the frequency of the PWM signal. 9521 * Access: RW 9522 */ 9523 MLXSW_ITEM32(reg, mfcr, pwm_frequency, 0x00, 0, 7); 9524 9525 #define MLXSW_MFCR_TACHOS_MAX 10 9526 9527 /* reg_mfcr_tacho_active 9528 * Indicates which of the tachometer is active (bit per tachometer). 9529 * Access: RO 9530 */ 9531 MLXSW_ITEM32(reg, mfcr, tacho_active, 0x04, 16, MLXSW_MFCR_TACHOS_MAX); 9532 9533 #define MLXSW_MFCR_PWMS_MAX 5 9534 9535 /* reg_mfcr_pwm_active 9536 * Indicates which of the PWM control is active (bit per PWM). 9537 * Access: RO 9538 */ 9539 MLXSW_ITEM32(reg, mfcr, pwm_active, 0x04, 0, MLXSW_MFCR_PWMS_MAX); 9540 9541 static inline void 9542 mlxsw_reg_mfcr_pack(char *payload, 9543 enum mlxsw_reg_mfcr_pwm_frequency pwm_frequency) 9544 { 9545 MLXSW_REG_ZERO(mfcr, payload); 9546 mlxsw_reg_mfcr_pwm_frequency_set(payload, pwm_frequency); 9547 } 9548 9549 static inline void 9550 mlxsw_reg_mfcr_unpack(char *payload, 9551 enum mlxsw_reg_mfcr_pwm_frequency *p_pwm_frequency, 9552 u16 *p_tacho_active, u8 *p_pwm_active) 9553 { 9554 *p_pwm_frequency = mlxsw_reg_mfcr_pwm_frequency_get(payload); 9555 *p_tacho_active = mlxsw_reg_mfcr_tacho_active_get(payload); 9556 *p_pwm_active = mlxsw_reg_mfcr_pwm_active_get(payload); 9557 } 9558 9559 /* MFSC - Management Fan Speed Control Register 9560 * -------------------------------------------- 9561 * This register controls the settings of the Fan Speed PWM mechanism. 9562 */ 9563 #define MLXSW_REG_MFSC_ID 0x9002 9564 #define MLXSW_REG_MFSC_LEN 0x08 9565 9566 MLXSW_REG_DEFINE(mfsc, MLXSW_REG_MFSC_ID, MLXSW_REG_MFSC_LEN); 9567 9568 /* reg_mfsc_pwm 9569 * Fan pwm to control / monitor. 9570 * Access: Index 9571 */ 9572 MLXSW_ITEM32(reg, mfsc, pwm, 0x00, 24, 3); 9573 9574 /* reg_mfsc_pwm_duty_cycle 9575 * Controls the duty cycle of the PWM. Value range from 0..255 to 9576 * represent duty cycle of 0%...100%. 9577 * Access: RW 9578 */ 9579 MLXSW_ITEM32(reg, mfsc, pwm_duty_cycle, 0x04, 0, 8); 9580 9581 static inline void mlxsw_reg_mfsc_pack(char *payload, u8 pwm, 9582 u8 pwm_duty_cycle) 9583 { 9584 MLXSW_REG_ZERO(mfsc, payload); 9585 mlxsw_reg_mfsc_pwm_set(payload, pwm); 9586 mlxsw_reg_mfsc_pwm_duty_cycle_set(payload, pwm_duty_cycle); 9587 } 9588 9589 /* MFSM - Management Fan Speed Measurement 9590 * --------------------------------------- 9591 * This register controls the settings of the Tacho measurements and 9592 * enables reading the Tachometer measurements. 9593 */ 9594 #define MLXSW_REG_MFSM_ID 0x9003 9595 #define MLXSW_REG_MFSM_LEN 0x08 9596 9597 MLXSW_REG_DEFINE(mfsm, MLXSW_REG_MFSM_ID, MLXSW_REG_MFSM_LEN); 9598 9599 /* reg_mfsm_tacho 9600 * Fan tachometer index. 9601 * Access: Index 9602 */ 9603 MLXSW_ITEM32(reg, mfsm, tacho, 0x00, 24, 4); 9604 9605 /* reg_mfsm_rpm 9606 * Fan speed (round per minute). 9607 * Access: RO 9608 */ 9609 MLXSW_ITEM32(reg, mfsm, rpm, 0x04, 0, 16); 9610 9611 static inline void mlxsw_reg_mfsm_pack(char *payload, u8 tacho) 9612 { 9613 MLXSW_REG_ZERO(mfsm, payload); 9614 mlxsw_reg_mfsm_tacho_set(payload, tacho); 9615 } 9616 9617 /* MFSL - Management Fan Speed Limit Register 9618 * ------------------------------------------ 9619 * The Fan Speed Limit register is used to configure the fan speed 9620 * event / interrupt notification mechanism. Fan speed threshold are 9621 * defined for both under-speed and over-speed. 9622 */ 9623 #define MLXSW_REG_MFSL_ID 0x9004 9624 #define MLXSW_REG_MFSL_LEN 0x0C 9625 9626 MLXSW_REG_DEFINE(mfsl, MLXSW_REG_MFSL_ID, MLXSW_REG_MFSL_LEN); 9627 9628 /* reg_mfsl_tacho 9629 * Fan tachometer index. 9630 * Access: Index 9631 */ 9632 MLXSW_ITEM32(reg, mfsl, tacho, 0x00, 24, 4); 9633 9634 /* reg_mfsl_tach_min 9635 * Tachometer minimum value (minimum RPM). 9636 * Access: RW 9637 */ 9638 MLXSW_ITEM32(reg, mfsl, tach_min, 0x04, 0, 16); 9639 9640 /* reg_mfsl_tach_max 9641 * Tachometer maximum value (maximum RPM). 9642 * Access: RW 9643 */ 9644 MLXSW_ITEM32(reg, mfsl, tach_max, 0x08, 0, 16); 9645 9646 static inline void mlxsw_reg_mfsl_pack(char *payload, u8 tacho, 9647 u16 tach_min, u16 tach_max) 9648 { 9649 MLXSW_REG_ZERO(mfsl, payload); 9650 mlxsw_reg_mfsl_tacho_set(payload, tacho); 9651 mlxsw_reg_mfsl_tach_min_set(payload, tach_min); 9652 mlxsw_reg_mfsl_tach_max_set(payload, tach_max); 9653 } 9654 9655 static inline void mlxsw_reg_mfsl_unpack(char *payload, u8 tacho, 9656 u16 *p_tach_min, u16 *p_tach_max) 9657 { 9658 if (p_tach_min) 9659 *p_tach_min = mlxsw_reg_mfsl_tach_min_get(payload); 9660 9661 if (p_tach_max) 9662 *p_tach_max = mlxsw_reg_mfsl_tach_max_get(payload); 9663 } 9664 9665 /* FORE - Fan Out of Range Event Register 9666 * -------------------------------------- 9667 * This register reports the status of the controlled fans compared to the 9668 * range defined by the MFSL register. 9669 */ 9670 #define MLXSW_REG_FORE_ID 0x9007 9671 #define MLXSW_REG_FORE_LEN 0x0C 9672 9673 MLXSW_REG_DEFINE(fore, MLXSW_REG_FORE_ID, MLXSW_REG_FORE_LEN); 9674 9675 /* fan_under_limit 9676 * Fan speed is below the low limit defined in MFSL register. Each bit relates 9677 * to a single tachometer and indicates the specific tachometer reading is 9678 * below the threshold. 9679 * Access: RO 9680 */ 9681 MLXSW_ITEM32(reg, fore, fan_under_limit, 0x00, 16, 10); 9682 9683 static inline void mlxsw_reg_fore_unpack(char *payload, u8 tacho, 9684 bool *fault) 9685 { 9686 u16 limit; 9687 9688 if (fault) { 9689 limit = mlxsw_reg_fore_fan_under_limit_get(payload); 9690 *fault = limit & BIT(tacho); 9691 } 9692 } 9693 9694 /* MTCAP - Management Temperature Capabilities 9695 * ------------------------------------------- 9696 * This register exposes the capabilities of the device and 9697 * system temperature sensing. 9698 */ 9699 #define MLXSW_REG_MTCAP_ID 0x9009 9700 #define MLXSW_REG_MTCAP_LEN 0x08 9701 9702 MLXSW_REG_DEFINE(mtcap, MLXSW_REG_MTCAP_ID, MLXSW_REG_MTCAP_LEN); 9703 9704 /* reg_mtcap_sensor_count 9705 * Number of sensors supported by the device. 9706 * This includes the QSFP module sensors (if exists in the QSFP module). 9707 * Access: RO 9708 */ 9709 MLXSW_ITEM32(reg, mtcap, sensor_count, 0x00, 0, 7); 9710 9711 /* MTMP - Management Temperature 9712 * ----------------------------- 9713 * This register controls the settings of the temperature measurements 9714 * and enables reading the temperature measurements. Note that temperature 9715 * is in 0.125 degrees Celsius. 9716 */ 9717 #define MLXSW_REG_MTMP_ID 0x900A 9718 #define MLXSW_REG_MTMP_LEN 0x20 9719 9720 MLXSW_REG_DEFINE(mtmp, MLXSW_REG_MTMP_ID, MLXSW_REG_MTMP_LEN); 9721 9722 #define MLXSW_REG_MTMP_MODULE_INDEX_MIN 64 9723 #define MLXSW_REG_MTMP_GBOX_INDEX_MIN 256 9724 /* reg_mtmp_sensor_index 9725 * Sensors index to access. 9726 * 64-127 of sensor_index are mapped to the SFP+/QSFP modules sequentially 9727 * (module 0 is mapped to sensor_index 64). 9728 * Access: Index 9729 */ 9730 MLXSW_ITEM32(reg, mtmp, sensor_index, 0x00, 0, 12); 9731 9732 /* Convert to milli degrees Celsius */ 9733 #define MLXSW_REG_MTMP_TEMP_TO_MC(val) ({ typeof(val) v_ = (val); \ 9734 ((v_) >= 0) ? ((v_) * 125) : \ 9735 ((s16)((GENMASK(15, 0) + (v_) + 1) \ 9736 * 125)); }) 9737 9738 /* reg_mtmp_max_operational_temperature 9739 * The highest temperature in the nominal operational range. Reading is in 9740 * 0.125 Celsius degrees units. 9741 * In case of module this is SFF critical temperature threshold. 9742 * Access: RO 9743 */ 9744 MLXSW_ITEM32(reg, mtmp, max_operational_temperature, 0x04, 16, 16); 9745 9746 /* reg_mtmp_temperature 9747 * Temperature reading from the sensor. Reading is in 0.125 Celsius 9748 * degrees units. 9749 * Access: RO 9750 */ 9751 MLXSW_ITEM32(reg, mtmp, temperature, 0x04, 0, 16); 9752 9753 /* reg_mtmp_mte 9754 * Max Temperature Enable - enables measuring the max temperature on a sensor. 9755 * Access: RW 9756 */ 9757 MLXSW_ITEM32(reg, mtmp, mte, 0x08, 31, 1); 9758 9759 /* reg_mtmp_mtr 9760 * Max Temperature Reset - clears the value of the max temperature register. 9761 * Access: WO 9762 */ 9763 MLXSW_ITEM32(reg, mtmp, mtr, 0x08, 30, 1); 9764 9765 /* reg_mtmp_max_temperature 9766 * The highest measured temperature from the sensor. 9767 * When the bit mte is cleared, the field max_temperature is reserved. 9768 * Access: RO 9769 */ 9770 MLXSW_ITEM32(reg, mtmp, max_temperature, 0x08, 0, 16); 9771 9772 /* reg_mtmp_tee 9773 * Temperature Event Enable. 9774 * 0 - Do not generate event 9775 * 1 - Generate event 9776 * 2 - Generate single event 9777 * Access: RW 9778 */ 9779 9780 enum mlxsw_reg_mtmp_tee { 9781 MLXSW_REG_MTMP_TEE_NO_EVENT, 9782 MLXSW_REG_MTMP_TEE_GENERATE_EVENT, 9783 MLXSW_REG_MTMP_TEE_GENERATE_SINGLE_EVENT, 9784 }; 9785 9786 MLXSW_ITEM32(reg, mtmp, tee, 0x0C, 30, 2); 9787 9788 #define MLXSW_REG_MTMP_THRESH_HI 0x348 /* 105 Celsius */ 9789 9790 /* reg_mtmp_temperature_threshold_hi 9791 * High threshold for Temperature Warning Event. In 0.125 Celsius. 9792 * Access: RW 9793 */ 9794 MLXSW_ITEM32(reg, mtmp, temperature_threshold_hi, 0x0C, 0, 16); 9795 9796 #define MLXSW_REG_MTMP_HYSTERESIS_TEMP 0x28 /* 5 Celsius */ 9797 /* reg_mtmp_temperature_threshold_lo 9798 * Low threshold for Temperature Warning Event. In 0.125 Celsius. 9799 * Access: RW 9800 */ 9801 MLXSW_ITEM32(reg, mtmp, temperature_threshold_lo, 0x10, 0, 16); 9802 9803 #define MLXSW_REG_MTMP_SENSOR_NAME_SIZE 8 9804 9805 /* reg_mtmp_sensor_name 9806 * Sensor Name 9807 * Access: RO 9808 */ 9809 MLXSW_ITEM_BUF(reg, mtmp, sensor_name, 0x18, MLXSW_REG_MTMP_SENSOR_NAME_SIZE); 9810 9811 static inline void mlxsw_reg_mtmp_pack(char *payload, u16 sensor_index, 9812 bool max_temp_enable, 9813 bool max_temp_reset) 9814 { 9815 MLXSW_REG_ZERO(mtmp, payload); 9816 mlxsw_reg_mtmp_sensor_index_set(payload, sensor_index); 9817 mlxsw_reg_mtmp_mte_set(payload, max_temp_enable); 9818 mlxsw_reg_mtmp_mtr_set(payload, max_temp_reset); 9819 mlxsw_reg_mtmp_temperature_threshold_hi_set(payload, 9820 MLXSW_REG_MTMP_THRESH_HI); 9821 } 9822 9823 static inline void mlxsw_reg_mtmp_unpack(char *payload, int *p_temp, 9824 int *p_max_temp, int *p_temp_hi, 9825 int *p_max_oper_temp, 9826 char *sensor_name) 9827 { 9828 s16 temp; 9829 9830 if (p_temp) { 9831 temp = mlxsw_reg_mtmp_temperature_get(payload); 9832 *p_temp = MLXSW_REG_MTMP_TEMP_TO_MC(temp); 9833 } 9834 if (p_max_temp) { 9835 temp = mlxsw_reg_mtmp_max_temperature_get(payload); 9836 *p_max_temp = MLXSW_REG_MTMP_TEMP_TO_MC(temp); 9837 } 9838 if (p_temp_hi) { 9839 temp = mlxsw_reg_mtmp_temperature_threshold_hi_get(payload); 9840 *p_temp_hi = MLXSW_REG_MTMP_TEMP_TO_MC(temp); 9841 } 9842 if (p_max_oper_temp) { 9843 temp = mlxsw_reg_mtmp_max_operational_temperature_get(payload); 9844 *p_max_oper_temp = MLXSW_REG_MTMP_TEMP_TO_MC(temp); 9845 } 9846 if (sensor_name) 9847 mlxsw_reg_mtmp_sensor_name_memcpy_from(payload, sensor_name); 9848 } 9849 9850 /* MTWE - Management Temperature Warning Event 9851 * ------------------------------------------- 9852 * This register is used for over temperature warning. 9853 */ 9854 #define MLXSW_REG_MTWE_ID 0x900B 9855 #define MLXSW_REG_MTWE_LEN 0x10 9856 9857 MLXSW_REG_DEFINE(mtwe, MLXSW_REG_MTWE_ID, MLXSW_REG_MTWE_LEN); 9858 9859 /* reg_mtwe_sensor_warning 9860 * Bit vector indicating which of the sensor reading is above threshold. 9861 * Address 00h bit31 is sensor_warning[127]. 9862 * Address 0Ch bit0 is sensor_warning[0]. 9863 * Access: RO 9864 */ 9865 MLXSW_ITEM_BIT_ARRAY(reg, mtwe, sensor_warning, 0x0, 0x10, 1); 9866 9867 /* MTBR - Management Temperature Bulk Register 9868 * ------------------------------------------- 9869 * This register is used for bulk temperature reading. 9870 */ 9871 #define MLXSW_REG_MTBR_ID 0x900F 9872 #define MLXSW_REG_MTBR_BASE_LEN 0x10 /* base length, without records */ 9873 #define MLXSW_REG_MTBR_REC_LEN 0x04 /* record length */ 9874 #define MLXSW_REG_MTBR_REC_MAX_COUNT 47 /* firmware limitation */ 9875 #define MLXSW_REG_MTBR_LEN (MLXSW_REG_MTBR_BASE_LEN + \ 9876 MLXSW_REG_MTBR_REC_LEN * \ 9877 MLXSW_REG_MTBR_REC_MAX_COUNT) 9878 9879 MLXSW_REG_DEFINE(mtbr, MLXSW_REG_MTBR_ID, MLXSW_REG_MTBR_LEN); 9880 9881 /* reg_mtbr_base_sensor_index 9882 * Base sensors index to access (0 - ASIC sensor, 1-63 - ambient sensors, 9883 * 64-127 are mapped to the SFP+/QSFP modules sequentially). 9884 * Access: Index 9885 */ 9886 MLXSW_ITEM32(reg, mtbr, base_sensor_index, 0x00, 0, 12); 9887 9888 /* reg_mtbr_num_rec 9889 * Request: Number of records to read 9890 * Response: Number of records read 9891 * See above description for more details. 9892 * Range 1..255 9893 * Access: RW 9894 */ 9895 MLXSW_ITEM32(reg, mtbr, num_rec, 0x04, 0, 8); 9896 9897 /* reg_mtbr_rec_max_temp 9898 * The highest measured temperature from the sensor. 9899 * When the bit mte is cleared, the field max_temperature is reserved. 9900 * Access: RO 9901 */ 9902 MLXSW_ITEM32_INDEXED(reg, mtbr, rec_max_temp, MLXSW_REG_MTBR_BASE_LEN, 16, 9903 16, MLXSW_REG_MTBR_REC_LEN, 0x00, false); 9904 9905 /* reg_mtbr_rec_temp 9906 * Temperature reading from the sensor. Reading is in 0..125 Celsius 9907 * degrees units. 9908 * Access: RO 9909 */ 9910 MLXSW_ITEM32_INDEXED(reg, mtbr, rec_temp, MLXSW_REG_MTBR_BASE_LEN, 0, 16, 9911 MLXSW_REG_MTBR_REC_LEN, 0x00, false); 9912 9913 static inline void mlxsw_reg_mtbr_pack(char *payload, u16 base_sensor_index, 9914 u8 num_rec) 9915 { 9916 MLXSW_REG_ZERO(mtbr, payload); 9917 mlxsw_reg_mtbr_base_sensor_index_set(payload, base_sensor_index); 9918 mlxsw_reg_mtbr_num_rec_set(payload, num_rec); 9919 } 9920 9921 /* Error codes from temperatute reading */ 9922 enum mlxsw_reg_mtbr_temp_status { 9923 MLXSW_REG_MTBR_NO_CONN = 0x8000, 9924 MLXSW_REG_MTBR_NO_TEMP_SENS = 0x8001, 9925 MLXSW_REG_MTBR_INDEX_NA = 0x8002, 9926 MLXSW_REG_MTBR_BAD_SENS_INFO = 0x8003, 9927 }; 9928 9929 /* Base index for reading modules temperature */ 9930 #define MLXSW_REG_MTBR_BASE_MODULE_INDEX 64 9931 9932 static inline void mlxsw_reg_mtbr_temp_unpack(char *payload, int rec_ind, 9933 u16 *p_temp, u16 *p_max_temp) 9934 { 9935 if (p_temp) 9936 *p_temp = mlxsw_reg_mtbr_rec_temp_get(payload, rec_ind); 9937 if (p_max_temp) 9938 *p_max_temp = mlxsw_reg_mtbr_rec_max_temp_get(payload, rec_ind); 9939 } 9940 9941 /* MCIA - Management Cable Info Access 9942 * ----------------------------------- 9943 * MCIA register is used to access the SFP+ and QSFP connector's EPROM. 9944 */ 9945 9946 #define MLXSW_REG_MCIA_ID 0x9014 9947 #define MLXSW_REG_MCIA_LEN 0x40 9948 9949 MLXSW_REG_DEFINE(mcia, MLXSW_REG_MCIA_ID, MLXSW_REG_MCIA_LEN); 9950 9951 /* reg_mcia_l 9952 * Lock bit. Setting this bit will lock the access to the specific 9953 * cable. Used for updating a full page in a cable EPROM. Any access 9954 * other then subsequence writes will fail while the port is locked. 9955 * Access: RW 9956 */ 9957 MLXSW_ITEM32(reg, mcia, l, 0x00, 31, 1); 9958 9959 /* reg_mcia_module 9960 * Module number. 9961 * Access: Index 9962 */ 9963 MLXSW_ITEM32(reg, mcia, module, 0x00, 16, 8); 9964 9965 enum { 9966 MLXSW_REG_MCIA_STATUS_GOOD = 0, 9967 /* No response from module's EEPROM. */ 9968 MLXSW_REG_MCIA_STATUS_NO_EEPROM_MODULE = 1, 9969 /* Module type not supported by the device. */ 9970 MLXSW_REG_MCIA_STATUS_MODULE_NOT_SUPPORTED = 2, 9971 /* No module present indication. */ 9972 MLXSW_REG_MCIA_STATUS_MODULE_NOT_CONNECTED = 3, 9973 /* Error occurred while trying to access module's EEPROM using I2C. */ 9974 MLXSW_REG_MCIA_STATUS_I2C_ERROR = 9, 9975 /* Module is disabled. */ 9976 MLXSW_REG_MCIA_STATUS_MODULE_DISABLED = 16, 9977 }; 9978 9979 /* reg_mcia_status 9980 * Module status. 9981 * Access: RO 9982 */ 9983 MLXSW_ITEM32(reg, mcia, status, 0x00, 0, 8); 9984 9985 /* reg_mcia_i2c_device_address 9986 * I2C device address. 9987 * Access: RW 9988 */ 9989 MLXSW_ITEM32(reg, mcia, i2c_device_address, 0x04, 24, 8); 9990 9991 /* reg_mcia_page_number 9992 * Page number. 9993 * Access: RW 9994 */ 9995 MLXSW_ITEM32(reg, mcia, page_number, 0x04, 16, 8); 9996 9997 /* reg_mcia_device_address 9998 * Device address. 9999 * Access: RW 10000 */ 10001 MLXSW_ITEM32(reg, mcia, device_address, 0x04, 0, 16); 10002 10003 /* reg_mcia_bank_number 10004 * Bank number. 10005 * Access: Index 10006 */ 10007 MLXSW_ITEM32(reg, mcia, bank_number, 0x08, 16, 8); 10008 10009 /* reg_mcia_size 10010 * Number of bytes to read/write (up to 48 bytes). 10011 * Access: RW 10012 */ 10013 MLXSW_ITEM32(reg, mcia, size, 0x08, 0, 16); 10014 10015 #define MLXSW_REG_MCIA_EEPROM_PAGE_LENGTH 256 10016 #define MLXSW_REG_MCIA_EEPROM_UP_PAGE_LENGTH 128 10017 #define MLXSW_REG_MCIA_EEPROM_SIZE 48 10018 #define MLXSW_REG_MCIA_I2C_ADDR_LOW 0x50 10019 #define MLXSW_REG_MCIA_I2C_ADDR_HIGH 0x51 10020 #define MLXSW_REG_MCIA_PAGE0_LO_OFF 0xa0 10021 #define MLXSW_REG_MCIA_TH_ITEM_SIZE 2 10022 #define MLXSW_REG_MCIA_TH_PAGE_NUM 3 10023 #define MLXSW_REG_MCIA_TH_PAGE_CMIS_NUM 2 10024 #define MLXSW_REG_MCIA_PAGE0_LO 0 10025 #define MLXSW_REG_MCIA_TH_PAGE_OFF 0x80 10026 #define MLXSW_REG_MCIA_EEPROM_CMIS_FLAT_MEMORY BIT(7) 10027 10028 enum mlxsw_reg_mcia_eeprom_module_info_rev_id { 10029 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID_UNSPC = 0x00, 10030 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID_8436 = 0x01, 10031 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID_8636 = 0x03, 10032 }; 10033 10034 enum mlxsw_reg_mcia_eeprom_module_info_id { 10035 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_SFP = 0x03, 10036 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP = 0x0C, 10037 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP_PLUS = 0x0D, 10038 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP28 = 0x11, 10039 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP_DD = 0x18, 10040 }; 10041 10042 enum mlxsw_reg_mcia_eeprom_module_info { 10043 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID, 10044 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID, 10045 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_TYPE_ID, 10046 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_SIZE, 10047 }; 10048 10049 /* reg_mcia_eeprom 10050 * Bytes to read/write. 10051 * Access: RW 10052 */ 10053 MLXSW_ITEM_BUF(reg, mcia, eeprom, 0x10, MLXSW_REG_MCIA_EEPROM_SIZE); 10054 10055 /* This is used to access the optional upper pages (1-3) in the QSFP+ 10056 * memory map. Page 1 is available on offset 256 through 383, page 2 - 10057 * on offset 384 through 511, page 3 - on offset 512 through 639. 10058 */ 10059 #define MLXSW_REG_MCIA_PAGE_GET(off) (((off) - \ 10060 MLXSW_REG_MCIA_EEPROM_PAGE_LENGTH) / \ 10061 MLXSW_REG_MCIA_EEPROM_UP_PAGE_LENGTH + 1) 10062 10063 static inline void mlxsw_reg_mcia_pack(char *payload, u8 module, u8 lock, 10064 u8 page_number, u16 device_addr, 10065 u8 size, u8 i2c_device_addr) 10066 { 10067 MLXSW_REG_ZERO(mcia, payload); 10068 mlxsw_reg_mcia_module_set(payload, module); 10069 mlxsw_reg_mcia_l_set(payload, lock); 10070 mlxsw_reg_mcia_page_number_set(payload, page_number); 10071 mlxsw_reg_mcia_device_address_set(payload, device_addr); 10072 mlxsw_reg_mcia_size_set(payload, size); 10073 mlxsw_reg_mcia_i2c_device_address_set(payload, i2c_device_addr); 10074 } 10075 10076 /* MPAT - Monitoring Port Analyzer Table 10077 * ------------------------------------- 10078 * MPAT Register is used to query and configure the Switch PortAnalyzer Table. 10079 * For an enabled analyzer, all fields except e (enable) cannot be modified. 10080 */ 10081 #define MLXSW_REG_MPAT_ID 0x901A 10082 #define MLXSW_REG_MPAT_LEN 0x78 10083 10084 MLXSW_REG_DEFINE(mpat, MLXSW_REG_MPAT_ID, MLXSW_REG_MPAT_LEN); 10085 10086 /* reg_mpat_pa_id 10087 * Port Analyzer ID. 10088 * Access: Index 10089 */ 10090 MLXSW_ITEM32(reg, mpat, pa_id, 0x00, 28, 4); 10091 10092 /* reg_mpat_session_id 10093 * Mirror Session ID. 10094 * Used for MIRROR_SESSION<i> trap. 10095 * Access: RW 10096 */ 10097 MLXSW_ITEM32(reg, mpat, session_id, 0x00, 24, 4); 10098 10099 /* reg_mpat_system_port 10100 * A unique port identifier for the final destination of the packet. 10101 * Access: RW 10102 */ 10103 MLXSW_ITEM32(reg, mpat, system_port, 0x00, 0, 16); 10104 10105 /* reg_mpat_e 10106 * Enable. Indicating the Port Analyzer is enabled. 10107 * Access: RW 10108 */ 10109 MLXSW_ITEM32(reg, mpat, e, 0x04, 31, 1); 10110 10111 /* reg_mpat_qos 10112 * Quality Of Service Mode. 10113 * 0: CONFIGURED - QoS parameters (Switch Priority, and encapsulation 10114 * PCP, DEI, DSCP or VL) are configured. 10115 * 1: MAINTAIN - QoS parameters (Switch Priority, Color) are the 10116 * same as in the original packet that has triggered the mirroring. For 10117 * SPAN also the pcp,dei are maintained. 10118 * Access: RW 10119 */ 10120 MLXSW_ITEM32(reg, mpat, qos, 0x04, 26, 1); 10121 10122 /* reg_mpat_be 10123 * Best effort mode. Indicates mirroring traffic should not cause packet 10124 * drop or back pressure, but will discard the mirrored packets. Mirrored 10125 * packets will be forwarded on a best effort manner. 10126 * 0: Do not discard mirrored packets 10127 * 1: Discard mirrored packets if causing congestion 10128 * Access: RW 10129 */ 10130 MLXSW_ITEM32(reg, mpat, be, 0x04, 25, 1); 10131 10132 enum mlxsw_reg_mpat_span_type { 10133 /* Local SPAN Ethernet. 10134 * The original packet is not encapsulated. 10135 */ 10136 MLXSW_REG_MPAT_SPAN_TYPE_LOCAL_ETH = 0x0, 10137 10138 /* Remote SPAN Ethernet VLAN. 10139 * The packet is forwarded to the monitoring port on the monitoring 10140 * VLAN. 10141 */ 10142 MLXSW_REG_MPAT_SPAN_TYPE_REMOTE_ETH = 0x1, 10143 10144 /* Encapsulated Remote SPAN Ethernet L3 GRE. 10145 * The packet is encapsulated with GRE header. 10146 */ 10147 MLXSW_REG_MPAT_SPAN_TYPE_REMOTE_ETH_L3 = 0x3, 10148 }; 10149 10150 /* reg_mpat_span_type 10151 * SPAN type. 10152 * Access: RW 10153 */ 10154 MLXSW_ITEM32(reg, mpat, span_type, 0x04, 0, 4); 10155 10156 /* reg_mpat_pide 10157 * Policer enable. 10158 * Access: RW 10159 */ 10160 MLXSW_ITEM32(reg, mpat, pide, 0x0C, 15, 1); 10161 10162 /* reg_mpat_pid 10163 * Policer ID. 10164 * Access: RW 10165 */ 10166 MLXSW_ITEM32(reg, mpat, pid, 0x0C, 0, 14); 10167 10168 /* Remote SPAN - Ethernet VLAN 10169 * - - - - - - - - - - - - - - 10170 */ 10171 10172 /* reg_mpat_eth_rspan_vid 10173 * Encapsulation header VLAN ID. 10174 * Access: RW 10175 */ 10176 MLXSW_ITEM32(reg, mpat, eth_rspan_vid, 0x18, 0, 12); 10177 10178 /* Encapsulated Remote SPAN - Ethernet L2 10179 * - - - - - - - - - - - - - - - - - - - 10180 */ 10181 10182 enum mlxsw_reg_mpat_eth_rspan_version { 10183 MLXSW_REG_MPAT_ETH_RSPAN_VERSION_NO_HEADER = 15, 10184 }; 10185 10186 /* reg_mpat_eth_rspan_version 10187 * RSPAN mirror header version. 10188 * Access: RW 10189 */ 10190 MLXSW_ITEM32(reg, mpat, eth_rspan_version, 0x10, 18, 4); 10191 10192 /* reg_mpat_eth_rspan_mac 10193 * Destination MAC address. 10194 * Access: RW 10195 */ 10196 MLXSW_ITEM_BUF(reg, mpat, eth_rspan_mac, 0x12, 6); 10197 10198 /* reg_mpat_eth_rspan_tp 10199 * Tag Packet. Indicates whether the mirroring header should be VLAN tagged. 10200 * Access: RW 10201 */ 10202 MLXSW_ITEM32(reg, mpat, eth_rspan_tp, 0x18, 16, 1); 10203 10204 /* Encapsulated Remote SPAN - Ethernet L3 10205 * - - - - - - - - - - - - - - - - - - - 10206 */ 10207 10208 enum mlxsw_reg_mpat_eth_rspan_protocol { 10209 MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV4, 10210 MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV6, 10211 }; 10212 10213 /* reg_mpat_eth_rspan_protocol 10214 * SPAN encapsulation protocol. 10215 * Access: RW 10216 */ 10217 MLXSW_ITEM32(reg, mpat, eth_rspan_protocol, 0x18, 24, 4); 10218 10219 /* reg_mpat_eth_rspan_ttl 10220 * Encapsulation header Time-to-Live/HopLimit. 10221 * Access: RW 10222 */ 10223 MLXSW_ITEM32(reg, mpat, eth_rspan_ttl, 0x1C, 4, 8); 10224 10225 /* reg_mpat_eth_rspan_smac 10226 * Source MAC address 10227 * Access: RW 10228 */ 10229 MLXSW_ITEM_BUF(reg, mpat, eth_rspan_smac, 0x22, 6); 10230 10231 /* reg_mpat_eth_rspan_dip* 10232 * Destination IP address. The IP version is configured by protocol. 10233 * Access: RW 10234 */ 10235 MLXSW_ITEM32(reg, mpat, eth_rspan_dip4, 0x4C, 0, 32); 10236 MLXSW_ITEM_BUF(reg, mpat, eth_rspan_dip6, 0x40, 16); 10237 10238 /* reg_mpat_eth_rspan_sip* 10239 * Source IP address. The IP version is configured by protocol. 10240 * Access: RW 10241 */ 10242 MLXSW_ITEM32(reg, mpat, eth_rspan_sip4, 0x5C, 0, 32); 10243 MLXSW_ITEM_BUF(reg, mpat, eth_rspan_sip6, 0x50, 16); 10244 10245 static inline void mlxsw_reg_mpat_pack(char *payload, u8 pa_id, 10246 u16 system_port, bool e, 10247 enum mlxsw_reg_mpat_span_type span_type) 10248 { 10249 MLXSW_REG_ZERO(mpat, payload); 10250 mlxsw_reg_mpat_pa_id_set(payload, pa_id); 10251 mlxsw_reg_mpat_system_port_set(payload, system_port); 10252 mlxsw_reg_mpat_e_set(payload, e); 10253 mlxsw_reg_mpat_qos_set(payload, 1); 10254 mlxsw_reg_mpat_be_set(payload, 1); 10255 mlxsw_reg_mpat_span_type_set(payload, span_type); 10256 } 10257 10258 static inline void mlxsw_reg_mpat_eth_rspan_pack(char *payload, u16 vid) 10259 { 10260 mlxsw_reg_mpat_eth_rspan_vid_set(payload, vid); 10261 } 10262 10263 static inline void 10264 mlxsw_reg_mpat_eth_rspan_l2_pack(char *payload, 10265 enum mlxsw_reg_mpat_eth_rspan_version version, 10266 const char *mac, 10267 bool tp) 10268 { 10269 mlxsw_reg_mpat_eth_rspan_version_set(payload, version); 10270 mlxsw_reg_mpat_eth_rspan_mac_memcpy_to(payload, mac); 10271 mlxsw_reg_mpat_eth_rspan_tp_set(payload, tp); 10272 } 10273 10274 static inline void 10275 mlxsw_reg_mpat_eth_rspan_l3_ipv4_pack(char *payload, u8 ttl, 10276 const char *smac, 10277 u32 sip, u32 dip) 10278 { 10279 mlxsw_reg_mpat_eth_rspan_ttl_set(payload, ttl); 10280 mlxsw_reg_mpat_eth_rspan_smac_memcpy_to(payload, smac); 10281 mlxsw_reg_mpat_eth_rspan_protocol_set(payload, 10282 MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV4); 10283 mlxsw_reg_mpat_eth_rspan_sip4_set(payload, sip); 10284 mlxsw_reg_mpat_eth_rspan_dip4_set(payload, dip); 10285 } 10286 10287 static inline void 10288 mlxsw_reg_mpat_eth_rspan_l3_ipv6_pack(char *payload, u8 ttl, 10289 const char *smac, 10290 struct in6_addr sip, struct in6_addr dip) 10291 { 10292 mlxsw_reg_mpat_eth_rspan_ttl_set(payload, ttl); 10293 mlxsw_reg_mpat_eth_rspan_smac_memcpy_to(payload, smac); 10294 mlxsw_reg_mpat_eth_rspan_protocol_set(payload, 10295 MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV6); 10296 mlxsw_reg_mpat_eth_rspan_sip6_memcpy_to(payload, (void *)&sip); 10297 mlxsw_reg_mpat_eth_rspan_dip6_memcpy_to(payload, (void *)&dip); 10298 } 10299 10300 /* MPAR - Monitoring Port Analyzer Register 10301 * ---------------------------------------- 10302 * MPAR register is used to query and configure the port analyzer port mirroring 10303 * properties. 10304 */ 10305 #define MLXSW_REG_MPAR_ID 0x901B 10306 #define MLXSW_REG_MPAR_LEN 0x0C 10307 10308 MLXSW_REG_DEFINE(mpar, MLXSW_REG_MPAR_ID, MLXSW_REG_MPAR_LEN); 10309 10310 /* reg_mpar_local_port 10311 * The local port to mirror the packets from. 10312 * Access: Index 10313 */ 10314 MLXSW_ITEM32_LP(reg, mpar, 0x00, 16, 0x00, 4); 10315 10316 enum mlxsw_reg_mpar_i_e { 10317 MLXSW_REG_MPAR_TYPE_EGRESS, 10318 MLXSW_REG_MPAR_TYPE_INGRESS, 10319 }; 10320 10321 /* reg_mpar_i_e 10322 * Ingress/Egress 10323 * Access: Index 10324 */ 10325 MLXSW_ITEM32(reg, mpar, i_e, 0x00, 0, 4); 10326 10327 /* reg_mpar_enable 10328 * Enable mirroring 10329 * By default, port mirroring is disabled for all ports. 10330 * Access: RW 10331 */ 10332 MLXSW_ITEM32(reg, mpar, enable, 0x04, 31, 1); 10333 10334 /* reg_mpar_pa_id 10335 * Port Analyzer ID. 10336 * Access: RW 10337 */ 10338 MLXSW_ITEM32(reg, mpar, pa_id, 0x04, 0, 4); 10339 10340 #define MLXSW_REG_MPAR_RATE_MAX 3500000000UL 10341 10342 /* reg_mpar_probability_rate 10343 * Sampling rate. 10344 * Valid values are: 1 to 3.5*10^9 10345 * Value of 1 means "sample all". Default is 1. 10346 * Reserved when Spectrum-1. 10347 * Access: RW 10348 */ 10349 MLXSW_ITEM32(reg, mpar, probability_rate, 0x08, 0, 32); 10350 10351 static inline void mlxsw_reg_mpar_pack(char *payload, u16 local_port, 10352 enum mlxsw_reg_mpar_i_e i_e, 10353 bool enable, u8 pa_id, 10354 u32 probability_rate) 10355 { 10356 MLXSW_REG_ZERO(mpar, payload); 10357 mlxsw_reg_mpar_local_port_set(payload, local_port); 10358 mlxsw_reg_mpar_enable_set(payload, enable); 10359 mlxsw_reg_mpar_i_e_set(payload, i_e); 10360 mlxsw_reg_mpar_pa_id_set(payload, pa_id); 10361 mlxsw_reg_mpar_probability_rate_set(payload, probability_rate); 10362 } 10363 10364 /* MGIR - Management General Information Register 10365 * ---------------------------------------------- 10366 * MGIR register allows software to query the hardware and firmware general 10367 * information. 10368 */ 10369 #define MLXSW_REG_MGIR_ID 0x9020 10370 #define MLXSW_REG_MGIR_LEN 0x9C 10371 10372 MLXSW_REG_DEFINE(mgir, MLXSW_REG_MGIR_ID, MLXSW_REG_MGIR_LEN); 10373 10374 /* reg_mgir_hw_info_device_hw_revision 10375 * Access: RO 10376 */ 10377 MLXSW_ITEM32(reg, mgir, hw_info_device_hw_revision, 0x0, 16, 16); 10378 10379 #define MLXSW_REG_MGIR_FW_INFO_PSID_SIZE 16 10380 10381 /* reg_mgir_fw_info_psid 10382 * PSID (ASCII string). 10383 * Access: RO 10384 */ 10385 MLXSW_ITEM_BUF(reg, mgir, fw_info_psid, 0x30, MLXSW_REG_MGIR_FW_INFO_PSID_SIZE); 10386 10387 /* reg_mgir_fw_info_extended_major 10388 * Access: RO 10389 */ 10390 MLXSW_ITEM32(reg, mgir, fw_info_extended_major, 0x44, 0, 32); 10391 10392 /* reg_mgir_fw_info_extended_minor 10393 * Access: RO 10394 */ 10395 MLXSW_ITEM32(reg, mgir, fw_info_extended_minor, 0x48, 0, 32); 10396 10397 /* reg_mgir_fw_info_extended_sub_minor 10398 * Access: RO 10399 */ 10400 MLXSW_ITEM32(reg, mgir, fw_info_extended_sub_minor, 0x4C, 0, 32); 10401 10402 static inline void mlxsw_reg_mgir_pack(char *payload) 10403 { 10404 MLXSW_REG_ZERO(mgir, payload); 10405 } 10406 10407 static inline void 10408 mlxsw_reg_mgir_unpack(char *payload, u32 *hw_rev, char *fw_info_psid, 10409 u32 *fw_major, u32 *fw_minor, u32 *fw_sub_minor) 10410 { 10411 *hw_rev = mlxsw_reg_mgir_hw_info_device_hw_revision_get(payload); 10412 mlxsw_reg_mgir_fw_info_psid_memcpy_from(payload, fw_info_psid); 10413 *fw_major = mlxsw_reg_mgir_fw_info_extended_major_get(payload); 10414 *fw_minor = mlxsw_reg_mgir_fw_info_extended_minor_get(payload); 10415 *fw_sub_minor = mlxsw_reg_mgir_fw_info_extended_sub_minor_get(payload); 10416 } 10417 10418 /* MRSR - Management Reset and Shutdown Register 10419 * --------------------------------------------- 10420 * MRSR register is used to reset or shutdown the switch or 10421 * the entire system (when applicable). 10422 */ 10423 #define MLXSW_REG_MRSR_ID 0x9023 10424 #define MLXSW_REG_MRSR_LEN 0x08 10425 10426 MLXSW_REG_DEFINE(mrsr, MLXSW_REG_MRSR_ID, MLXSW_REG_MRSR_LEN); 10427 10428 /* reg_mrsr_command 10429 * Reset/shutdown command 10430 * 0 - do nothing 10431 * 1 - software reset 10432 * Access: WO 10433 */ 10434 MLXSW_ITEM32(reg, mrsr, command, 0x00, 0, 4); 10435 10436 static inline void mlxsw_reg_mrsr_pack(char *payload) 10437 { 10438 MLXSW_REG_ZERO(mrsr, payload); 10439 mlxsw_reg_mrsr_command_set(payload, 1); 10440 } 10441 10442 /* MLCR - Management LED Control Register 10443 * -------------------------------------- 10444 * Controls the system LEDs. 10445 */ 10446 #define MLXSW_REG_MLCR_ID 0x902B 10447 #define MLXSW_REG_MLCR_LEN 0x0C 10448 10449 MLXSW_REG_DEFINE(mlcr, MLXSW_REG_MLCR_ID, MLXSW_REG_MLCR_LEN); 10450 10451 /* reg_mlcr_local_port 10452 * Local port number. 10453 * Access: RW 10454 */ 10455 MLXSW_ITEM32_LP(reg, mlcr, 0x00, 16, 0x00, 24); 10456 10457 #define MLXSW_REG_MLCR_DURATION_MAX 0xFFFF 10458 10459 /* reg_mlcr_beacon_duration 10460 * Duration of the beacon to be active, in seconds. 10461 * 0x0 - Will turn off the beacon. 10462 * 0xFFFF - Will turn on the beacon until explicitly turned off. 10463 * Access: RW 10464 */ 10465 MLXSW_ITEM32(reg, mlcr, beacon_duration, 0x04, 0, 16); 10466 10467 /* reg_mlcr_beacon_remain 10468 * Remaining duration of the beacon, in seconds. 10469 * 0xFFFF indicates an infinite amount of time. 10470 * Access: RO 10471 */ 10472 MLXSW_ITEM32(reg, mlcr, beacon_remain, 0x08, 0, 16); 10473 10474 static inline void mlxsw_reg_mlcr_pack(char *payload, u16 local_port, 10475 bool active) 10476 { 10477 MLXSW_REG_ZERO(mlcr, payload); 10478 mlxsw_reg_mlcr_local_port_set(payload, local_port); 10479 mlxsw_reg_mlcr_beacon_duration_set(payload, active ? 10480 MLXSW_REG_MLCR_DURATION_MAX : 0); 10481 } 10482 10483 /* MCION - Management Cable IO and Notifications Register 10484 * ------------------------------------------------------ 10485 * The MCION register is used to query transceiver modules' IO pins and other 10486 * notifications. 10487 */ 10488 #define MLXSW_REG_MCION_ID 0x9052 10489 #define MLXSW_REG_MCION_LEN 0x18 10490 10491 MLXSW_REG_DEFINE(mcion, MLXSW_REG_MCION_ID, MLXSW_REG_MCION_LEN); 10492 10493 /* reg_mcion_module 10494 * Module number. 10495 * Access: Index 10496 */ 10497 MLXSW_ITEM32(reg, mcion, module, 0x00, 16, 8); 10498 10499 enum { 10500 MLXSW_REG_MCION_MODULE_STATUS_BITS_PRESENT_MASK = BIT(0), 10501 MLXSW_REG_MCION_MODULE_STATUS_BITS_LOW_POWER_MASK = BIT(8), 10502 }; 10503 10504 /* reg_mcion_module_status_bits 10505 * Module IO status as defined by SFF. 10506 * Access: RO 10507 */ 10508 MLXSW_ITEM32(reg, mcion, module_status_bits, 0x04, 0, 16); 10509 10510 static inline void mlxsw_reg_mcion_pack(char *payload, u8 module) 10511 { 10512 MLXSW_REG_ZERO(mcion, payload); 10513 mlxsw_reg_mcion_module_set(payload, module); 10514 } 10515 10516 /* MTPPS - Management Pulse Per Second Register 10517 * -------------------------------------------- 10518 * This register provides the device PPS capabilities, configure the PPS in and 10519 * out modules and holds the PPS in time stamp. 10520 */ 10521 #define MLXSW_REG_MTPPS_ID 0x9053 10522 #define MLXSW_REG_MTPPS_LEN 0x3C 10523 10524 MLXSW_REG_DEFINE(mtpps, MLXSW_REG_MTPPS_ID, MLXSW_REG_MTPPS_LEN); 10525 10526 /* reg_mtpps_enable 10527 * Enables the PPS functionality the specific pin. 10528 * A boolean variable. 10529 * Access: RW 10530 */ 10531 MLXSW_ITEM32(reg, mtpps, enable, 0x20, 31, 1); 10532 10533 enum mlxsw_reg_mtpps_pin_mode { 10534 MLXSW_REG_MTPPS_PIN_MODE_VIRTUAL_PIN = 0x2, 10535 }; 10536 10537 /* reg_mtpps_pin_mode 10538 * Pin mode to be used. The mode must comply with the supported modes of the 10539 * requested pin. 10540 * Access: RW 10541 */ 10542 MLXSW_ITEM32(reg, mtpps, pin_mode, 0x20, 8, 4); 10543 10544 #define MLXSW_REG_MTPPS_PIN_SP_VIRTUAL_PIN 7 10545 10546 /* reg_mtpps_pin 10547 * Pin to be configured or queried out of the supported pins. 10548 * Access: Index 10549 */ 10550 MLXSW_ITEM32(reg, mtpps, pin, 0x20, 0, 8); 10551 10552 /* reg_mtpps_time_stamp 10553 * When pin_mode = pps_in, the latched device time when it was triggered from 10554 * the external GPIO pin. 10555 * When pin_mode = pps_out or virtual_pin or pps_out_and_virtual_pin, the target 10556 * time to generate next output signal. 10557 * Time is in units of device clock. 10558 * Access: RW 10559 */ 10560 MLXSW_ITEM64(reg, mtpps, time_stamp, 0x28, 0, 64); 10561 10562 static inline void 10563 mlxsw_reg_mtpps_vpin_pack(char *payload, u64 time_stamp) 10564 { 10565 MLXSW_REG_ZERO(mtpps, payload); 10566 mlxsw_reg_mtpps_pin_set(payload, MLXSW_REG_MTPPS_PIN_SP_VIRTUAL_PIN); 10567 mlxsw_reg_mtpps_pin_mode_set(payload, 10568 MLXSW_REG_MTPPS_PIN_MODE_VIRTUAL_PIN); 10569 mlxsw_reg_mtpps_enable_set(payload, true); 10570 mlxsw_reg_mtpps_time_stamp_set(payload, time_stamp); 10571 } 10572 10573 /* MTUTC - Management UTC Register 10574 * ------------------------------- 10575 * Configures the HW UTC counter. 10576 */ 10577 #define MLXSW_REG_MTUTC_ID 0x9055 10578 #define MLXSW_REG_MTUTC_LEN 0x1C 10579 10580 MLXSW_REG_DEFINE(mtutc, MLXSW_REG_MTUTC_ID, MLXSW_REG_MTUTC_LEN); 10581 10582 enum mlxsw_reg_mtutc_operation { 10583 MLXSW_REG_MTUTC_OPERATION_SET_TIME_AT_NEXT_SEC = 0, 10584 MLXSW_REG_MTUTC_OPERATION_ADJUST_FREQ = 3, 10585 }; 10586 10587 /* reg_mtutc_operation 10588 * Operation. 10589 * Access: OP 10590 */ 10591 MLXSW_ITEM32(reg, mtutc, operation, 0x00, 0, 4); 10592 10593 /* reg_mtutc_freq_adjustment 10594 * Frequency adjustment: Every PPS the HW frequency will be 10595 * adjusted by this value. Units of HW clock, where HW counts 10596 * 10^9 HW clocks for 1 HW second. 10597 * Access: RW 10598 */ 10599 MLXSW_ITEM32(reg, mtutc, freq_adjustment, 0x04, 0, 32); 10600 10601 /* reg_mtutc_utc_sec 10602 * UTC seconds. 10603 * Access: WO 10604 */ 10605 MLXSW_ITEM32(reg, mtutc, utc_sec, 0x10, 0, 32); 10606 10607 static inline void 10608 mlxsw_reg_mtutc_pack(char *payload, enum mlxsw_reg_mtutc_operation oper, 10609 u32 freq_adj, u32 utc_sec) 10610 { 10611 MLXSW_REG_ZERO(mtutc, payload); 10612 mlxsw_reg_mtutc_operation_set(payload, oper); 10613 mlxsw_reg_mtutc_freq_adjustment_set(payload, freq_adj); 10614 mlxsw_reg_mtutc_utc_sec_set(payload, utc_sec); 10615 } 10616 10617 /* MCQI - Management Component Query Information 10618 * --------------------------------------------- 10619 * This register allows querying information about firmware components. 10620 */ 10621 #define MLXSW_REG_MCQI_ID 0x9061 10622 #define MLXSW_REG_MCQI_BASE_LEN 0x18 10623 #define MLXSW_REG_MCQI_CAP_LEN 0x14 10624 #define MLXSW_REG_MCQI_LEN (MLXSW_REG_MCQI_BASE_LEN + MLXSW_REG_MCQI_CAP_LEN) 10625 10626 MLXSW_REG_DEFINE(mcqi, MLXSW_REG_MCQI_ID, MLXSW_REG_MCQI_LEN); 10627 10628 /* reg_mcqi_component_index 10629 * Index of the accessed component. 10630 * Access: Index 10631 */ 10632 MLXSW_ITEM32(reg, mcqi, component_index, 0x00, 0, 16); 10633 10634 enum mlxfw_reg_mcqi_info_type { 10635 MLXSW_REG_MCQI_INFO_TYPE_CAPABILITIES, 10636 }; 10637 10638 /* reg_mcqi_info_type 10639 * Component properties set. 10640 * Access: RW 10641 */ 10642 MLXSW_ITEM32(reg, mcqi, info_type, 0x08, 0, 5); 10643 10644 /* reg_mcqi_offset 10645 * The requested/returned data offset from the section start, given in bytes. 10646 * Must be DWORD aligned. 10647 * Access: RW 10648 */ 10649 MLXSW_ITEM32(reg, mcqi, offset, 0x10, 0, 32); 10650 10651 /* reg_mcqi_data_size 10652 * The requested/returned data size, given in bytes. If data_size is not DWORD 10653 * aligned, the last bytes are zero padded. 10654 * Access: RW 10655 */ 10656 MLXSW_ITEM32(reg, mcqi, data_size, 0x14, 0, 16); 10657 10658 /* reg_mcqi_cap_max_component_size 10659 * Maximum size for this component, given in bytes. 10660 * Access: RO 10661 */ 10662 MLXSW_ITEM32(reg, mcqi, cap_max_component_size, 0x20, 0, 32); 10663 10664 /* reg_mcqi_cap_log_mcda_word_size 10665 * Log 2 of the access word size in bytes. Read and write access must be aligned 10666 * to the word size. Write access must be done for an integer number of words. 10667 * Access: RO 10668 */ 10669 MLXSW_ITEM32(reg, mcqi, cap_log_mcda_word_size, 0x24, 28, 4); 10670 10671 /* reg_mcqi_cap_mcda_max_write_size 10672 * Maximal write size for MCDA register 10673 * Access: RO 10674 */ 10675 MLXSW_ITEM32(reg, mcqi, cap_mcda_max_write_size, 0x24, 0, 16); 10676 10677 static inline void mlxsw_reg_mcqi_pack(char *payload, u16 component_index) 10678 { 10679 MLXSW_REG_ZERO(mcqi, payload); 10680 mlxsw_reg_mcqi_component_index_set(payload, component_index); 10681 mlxsw_reg_mcqi_info_type_set(payload, 10682 MLXSW_REG_MCQI_INFO_TYPE_CAPABILITIES); 10683 mlxsw_reg_mcqi_offset_set(payload, 0); 10684 mlxsw_reg_mcqi_data_size_set(payload, MLXSW_REG_MCQI_CAP_LEN); 10685 } 10686 10687 static inline void mlxsw_reg_mcqi_unpack(char *payload, 10688 u32 *p_cap_max_component_size, 10689 u8 *p_cap_log_mcda_word_size, 10690 u16 *p_cap_mcda_max_write_size) 10691 { 10692 *p_cap_max_component_size = 10693 mlxsw_reg_mcqi_cap_max_component_size_get(payload); 10694 *p_cap_log_mcda_word_size = 10695 mlxsw_reg_mcqi_cap_log_mcda_word_size_get(payload); 10696 *p_cap_mcda_max_write_size = 10697 mlxsw_reg_mcqi_cap_mcda_max_write_size_get(payload); 10698 } 10699 10700 /* MCC - Management Component Control 10701 * ---------------------------------- 10702 * Controls the firmware component and updates the FSM. 10703 */ 10704 #define MLXSW_REG_MCC_ID 0x9062 10705 #define MLXSW_REG_MCC_LEN 0x1C 10706 10707 MLXSW_REG_DEFINE(mcc, MLXSW_REG_MCC_ID, MLXSW_REG_MCC_LEN); 10708 10709 enum mlxsw_reg_mcc_instruction { 10710 MLXSW_REG_MCC_INSTRUCTION_LOCK_UPDATE_HANDLE = 0x01, 10711 MLXSW_REG_MCC_INSTRUCTION_RELEASE_UPDATE_HANDLE = 0x02, 10712 MLXSW_REG_MCC_INSTRUCTION_UPDATE_COMPONENT = 0x03, 10713 MLXSW_REG_MCC_INSTRUCTION_VERIFY_COMPONENT = 0x04, 10714 MLXSW_REG_MCC_INSTRUCTION_ACTIVATE = 0x06, 10715 MLXSW_REG_MCC_INSTRUCTION_CANCEL = 0x08, 10716 }; 10717 10718 /* reg_mcc_instruction 10719 * Command to be executed by the FSM. 10720 * Applicable for write operation only. 10721 * Access: RW 10722 */ 10723 MLXSW_ITEM32(reg, mcc, instruction, 0x00, 0, 8); 10724 10725 /* reg_mcc_component_index 10726 * Index of the accessed component. Applicable only for commands that 10727 * refer to components. Otherwise, this field is reserved. 10728 * Access: Index 10729 */ 10730 MLXSW_ITEM32(reg, mcc, component_index, 0x04, 0, 16); 10731 10732 /* reg_mcc_update_handle 10733 * Token representing the current flow executed by the FSM. 10734 * Access: WO 10735 */ 10736 MLXSW_ITEM32(reg, mcc, update_handle, 0x08, 0, 24); 10737 10738 /* reg_mcc_error_code 10739 * Indicates the successful completion of the instruction, or the reason it 10740 * failed 10741 * Access: RO 10742 */ 10743 MLXSW_ITEM32(reg, mcc, error_code, 0x0C, 8, 8); 10744 10745 /* reg_mcc_control_state 10746 * Current FSM state 10747 * Access: RO 10748 */ 10749 MLXSW_ITEM32(reg, mcc, control_state, 0x0C, 0, 4); 10750 10751 /* reg_mcc_component_size 10752 * Component size in bytes. Valid for UPDATE_COMPONENT instruction. Specifying 10753 * the size may shorten the update time. Value 0x0 means that size is 10754 * unspecified. 10755 * Access: WO 10756 */ 10757 MLXSW_ITEM32(reg, mcc, component_size, 0x10, 0, 32); 10758 10759 static inline void mlxsw_reg_mcc_pack(char *payload, 10760 enum mlxsw_reg_mcc_instruction instr, 10761 u16 component_index, u32 update_handle, 10762 u32 component_size) 10763 { 10764 MLXSW_REG_ZERO(mcc, payload); 10765 mlxsw_reg_mcc_instruction_set(payload, instr); 10766 mlxsw_reg_mcc_component_index_set(payload, component_index); 10767 mlxsw_reg_mcc_update_handle_set(payload, update_handle); 10768 mlxsw_reg_mcc_component_size_set(payload, component_size); 10769 } 10770 10771 static inline void mlxsw_reg_mcc_unpack(char *payload, u32 *p_update_handle, 10772 u8 *p_error_code, u8 *p_control_state) 10773 { 10774 if (p_update_handle) 10775 *p_update_handle = mlxsw_reg_mcc_update_handle_get(payload); 10776 if (p_error_code) 10777 *p_error_code = mlxsw_reg_mcc_error_code_get(payload); 10778 if (p_control_state) 10779 *p_control_state = mlxsw_reg_mcc_control_state_get(payload); 10780 } 10781 10782 /* MCDA - Management Component Data Access 10783 * --------------------------------------- 10784 * This register allows reading and writing a firmware component. 10785 */ 10786 #define MLXSW_REG_MCDA_ID 0x9063 10787 #define MLXSW_REG_MCDA_BASE_LEN 0x10 10788 #define MLXSW_REG_MCDA_MAX_DATA_LEN 0x80 10789 #define MLXSW_REG_MCDA_LEN \ 10790 (MLXSW_REG_MCDA_BASE_LEN + MLXSW_REG_MCDA_MAX_DATA_LEN) 10791 10792 MLXSW_REG_DEFINE(mcda, MLXSW_REG_MCDA_ID, MLXSW_REG_MCDA_LEN); 10793 10794 /* reg_mcda_update_handle 10795 * Token representing the current flow executed by the FSM. 10796 * Access: RW 10797 */ 10798 MLXSW_ITEM32(reg, mcda, update_handle, 0x00, 0, 24); 10799 10800 /* reg_mcda_offset 10801 * Offset of accessed address relative to component start. Accesses must be in 10802 * accordance to log_mcda_word_size in MCQI reg. 10803 * Access: RW 10804 */ 10805 MLXSW_ITEM32(reg, mcda, offset, 0x04, 0, 32); 10806 10807 /* reg_mcda_size 10808 * Size of the data accessed, given in bytes. 10809 * Access: RW 10810 */ 10811 MLXSW_ITEM32(reg, mcda, size, 0x08, 0, 16); 10812 10813 /* reg_mcda_data 10814 * Data block accessed. 10815 * Access: RW 10816 */ 10817 MLXSW_ITEM32_INDEXED(reg, mcda, data, 0x10, 0, 32, 4, 0, false); 10818 10819 static inline void mlxsw_reg_mcda_pack(char *payload, u32 update_handle, 10820 u32 offset, u16 size, u8 *data) 10821 { 10822 int i; 10823 10824 MLXSW_REG_ZERO(mcda, payload); 10825 mlxsw_reg_mcda_update_handle_set(payload, update_handle); 10826 mlxsw_reg_mcda_offset_set(payload, offset); 10827 mlxsw_reg_mcda_size_set(payload, size); 10828 10829 for (i = 0; i < size / 4; i++) 10830 mlxsw_reg_mcda_data_set(payload, i, *(u32 *) &data[i * 4]); 10831 } 10832 10833 /* MPSC - Monitoring Packet Sampling Configuration Register 10834 * -------------------------------------------------------- 10835 * MPSC Register is used to configure the Packet Sampling mechanism. 10836 */ 10837 #define MLXSW_REG_MPSC_ID 0x9080 10838 #define MLXSW_REG_MPSC_LEN 0x1C 10839 10840 MLXSW_REG_DEFINE(mpsc, MLXSW_REG_MPSC_ID, MLXSW_REG_MPSC_LEN); 10841 10842 /* reg_mpsc_local_port 10843 * Local port number 10844 * Not supported for CPU port 10845 * Access: Index 10846 */ 10847 MLXSW_ITEM32_LP(reg, mpsc, 0x00, 16, 0x00, 12); 10848 10849 /* reg_mpsc_e 10850 * Enable sampling on port local_port 10851 * Access: RW 10852 */ 10853 MLXSW_ITEM32(reg, mpsc, e, 0x04, 30, 1); 10854 10855 #define MLXSW_REG_MPSC_RATE_MAX 3500000000UL 10856 10857 /* reg_mpsc_rate 10858 * Sampling rate = 1 out of rate packets (with randomization around 10859 * the point). Valid values are: 1 to MLXSW_REG_MPSC_RATE_MAX 10860 * Access: RW 10861 */ 10862 MLXSW_ITEM32(reg, mpsc, rate, 0x08, 0, 32); 10863 10864 static inline void mlxsw_reg_mpsc_pack(char *payload, u16 local_port, bool e, 10865 u32 rate) 10866 { 10867 MLXSW_REG_ZERO(mpsc, payload); 10868 mlxsw_reg_mpsc_local_port_set(payload, local_port); 10869 mlxsw_reg_mpsc_e_set(payload, e); 10870 mlxsw_reg_mpsc_rate_set(payload, rate); 10871 } 10872 10873 /* MGPC - Monitoring General Purpose Counter Set Register 10874 * The MGPC register retrieves and sets the General Purpose Counter Set. 10875 */ 10876 #define MLXSW_REG_MGPC_ID 0x9081 10877 #define MLXSW_REG_MGPC_LEN 0x18 10878 10879 MLXSW_REG_DEFINE(mgpc, MLXSW_REG_MGPC_ID, MLXSW_REG_MGPC_LEN); 10880 10881 /* reg_mgpc_counter_set_type 10882 * Counter set type. 10883 * Access: OP 10884 */ 10885 MLXSW_ITEM32(reg, mgpc, counter_set_type, 0x00, 24, 8); 10886 10887 /* reg_mgpc_counter_index 10888 * Counter index. 10889 * Access: Index 10890 */ 10891 MLXSW_ITEM32(reg, mgpc, counter_index, 0x00, 0, 24); 10892 10893 enum mlxsw_reg_mgpc_opcode { 10894 /* Nop */ 10895 MLXSW_REG_MGPC_OPCODE_NOP = 0x00, 10896 /* Clear counters */ 10897 MLXSW_REG_MGPC_OPCODE_CLEAR = 0x08, 10898 }; 10899 10900 /* reg_mgpc_opcode 10901 * Opcode. 10902 * Access: OP 10903 */ 10904 MLXSW_ITEM32(reg, mgpc, opcode, 0x04, 28, 4); 10905 10906 /* reg_mgpc_byte_counter 10907 * Byte counter value. 10908 * Access: RW 10909 */ 10910 MLXSW_ITEM64(reg, mgpc, byte_counter, 0x08, 0, 64); 10911 10912 /* reg_mgpc_packet_counter 10913 * Packet counter value. 10914 * Access: RW 10915 */ 10916 MLXSW_ITEM64(reg, mgpc, packet_counter, 0x10, 0, 64); 10917 10918 static inline void mlxsw_reg_mgpc_pack(char *payload, u32 counter_index, 10919 enum mlxsw_reg_mgpc_opcode opcode, 10920 enum mlxsw_reg_flow_counter_set_type set_type) 10921 { 10922 MLXSW_REG_ZERO(mgpc, payload); 10923 mlxsw_reg_mgpc_counter_index_set(payload, counter_index); 10924 mlxsw_reg_mgpc_counter_set_type_set(payload, set_type); 10925 mlxsw_reg_mgpc_opcode_set(payload, opcode); 10926 } 10927 10928 /* MPRS - Monitoring Parsing State Register 10929 * ---------------------------------------- 10930 * The MPRS register is used for setting up the parsing for hash, 10931 * policy-engine and routing. 10932 */ 10933 #define MLXSW_REG_MPRS_ID 0x9083 10934 #define MLXSW_REG_MPRS_LEN 0x14 10935 10936 MLXSW_REG_DEFINE(mprs, MLXSW_REG_MPRS_ID, MLXSW_REG_MPRS_LEN); 10937 10938 /* reg_mprs_parsing_depth 10939 * Minimum parsing depth. 10940 * Need to enlarge parsing depth according to L3, MPLS, tunnels, ACL 10941 * rules, traps, hash, etc. Default is 96 bytes. Reserved when SwitchX-2. 10942 * Access: RW 10943 */ 10944 MLXSW_ITEM32(reg, mprs, parsing_depth, 0x00, 0, 16); 10945 10946 /* reg_mprs_parsing_en 10947 * Parsing enable. 10948 * Bit 0 - Enable parsing of NVE of types VxLAN, VxLAN-GPE, GENEVE and 10949 * NVGRE. Default is enabled. Reserved when SwitchX-2. 10950 * Access: RW 10951 */ 10952 MLXSW_ITEM32(reg, mprs, parsing_en, 0x04, 0, 16); 10953 10954 /* reg_mprs_vxlan_udp_dport 10955 * VxLAN UDP destination port. 10956 * Used for identifying VxLAN packets and for dport field in 10957 * encapsulation. Default is 4789. 10958 * Access: RW 10959 */ 10960 MLXSW_ITEM32(reg, mprs, vxlan_udp_dport, 0x10, 0, 16); 10961 10962 static inline void mlxsw_reg_mprs_pack(char *payload, u16 parsing_depth, 10963 u16 vxlan_udp_dport) 10964 { 10965 MLXSW_REG_ZERO(mprs, payload); 10966 mlxsw_reg_mprs_parsing_depth_set(payload, parsing_depth); 10967 mlxsw_reg_mprs_parsing_en_set(payload, true); 10968 mlxsw_reg_mprs_vxlan_udp_dport_set(payload, vxlan_udp_dport); 10969 } 10970 10971 /* MOGCR - Monitoring Global Configuration Register 10972 * ------------------------------------------------ 10973 */ 10974 #define MLXSW_REG_MOGCR_ID 0x9086 10975 #define MLXSW_REG_MOGCR_LEN 0x20 10976 10977 MLXSW_REG_DEFINE(mogcr, MLXSW_REG_MOGCR_ID, MLXSW_REG_MOGCR_LEN); 10978 10979 /* reg_mogcr_ptp_iftc 10980 * PTP Ingress FIFO Trap Clear 10981 * The PTP_ING_FIFO trap provides MTPPTR with clr according 10982 * to this value. Default 0. 10983 * Reserved when IB switches and when SwitchX/-2, Spectrum-2 10984 * Access: RW 10985 */ 10986 MLXSW_ITEM32(reg, mogcr, ptp_iftc, 0x00, 1, 1); 10987 10988 /* reg_mogcr_ptp_eftc 10989 * PTP Egress FIFO Trap Clear 10990 * The PTP_EGR_FIFO trap provides MTPPTR with clr according 10991 * to this value. Default 0. 10992 * Reserved when IB switches and when SwitchX/-2, Spectrum-2 10993 * Access: RW 10994 */ 10995 MLXSW_ITEM32(reg, mogcr, ptp_eftc, 0x00, 0, 1); 10996 10997 /* reg_mogcr_mirroring_pid_base 10998 * Base policer id for mirroring policers. 10999 * Must have an even value (e.g. 1000, not 1001). 11000 * Reserved when SwitchX/-2, Switch-IB/2, Spectrum-1 and Quantum. 11001 * Access: RW 11002 */ 11003 MLXSW_ITEM32(reg, mogcr, mirroring_pid_base, 0x0C, 0, 14); 11004 11005 /* MPAGR - Monitoring Port Analyzer Global Register 11006 * ------------------------------------------------ 11007 * This register is used for global port analyzer configurations. 11008 * Note: This register is not supported by current FW versions for Spectrum-1. 11009 */ 11010 #define MLXSW_REG_MPAGR_ID 0x9089 11011 #define MLXSW_REG_MPAGR_LEN 0x0C 11012 11013 MLXSW_REG_DEFINE(mpagr, MLXSW_REG_MPAGR_ID, MLXSW_REG_MPAGR_LEN); 11014 11015 enum mlxsw_reg_mpagr_trigger { 11016 MLXSW_REG_MPAGR_TRIGGER_EGRESS, 11017 MLXSW_REG_MPAGR_TRIGGER_INGRESS, 11018 MLXSW_REG_MPAGR_TRIGGER_INGRESS_WRED, 11019 MLXSW_REG_MPAGR_TRIGGER_INGRESS_SHARED_BUFFER, 11020 MLXSW_REG_MPAGR_TRIGGER_INGRESS_ING_CONG, 11021 MLXSW_REG_MPAGR_TRIGGER_INGRESS_EGR_CONG, 11022 MLXSW_REG_MPAGR_TRIGGER_EGRESS_ECN, 11023 MLXSW_REG_MPAGR_TRIGGER_EGRESS_HIGH_LATENCY, 11024 }; 11025 11026 /* reg_mpagr_trigger 11027 * Mirror trigger. 11028 * Access: Index 11029 */ 11030 MLXSW_ITEM32(reg, mpagr, trigger, 0x00, 0, 4); 11031 11032 /* reg_mpagr_pa_id 11033 * Port analyzer ID. 11034 * Access: RW 11035 */ 11036 MLXSW_ITEM32(reg, mpagr, pa_id, 0x04, 0, 4); 11037 11038 #define MLXSW_REG_MPAGR_RATE_MAX 3500000000UL 11039 11040 /* reg_mpagr_probability_rate 11041 * Sampling rate. 11042 * Valid values are: 1 to 3.5*10^9 11043 * Value of 1 means "sample all". Default is 1. 11044 * Access: RW 11045 */ 11046 MLXSW_ITEM32(reg, mpagr, probability_rate, 0x08, 0, 32); 11047 11048 static inline void mlxsw_reg_mpagr_pack(char *payload, 11049 enum mlxsw_reg_mpagr_trigger trigger, 11050 u8 pa_id, u32 probability_rate) 11051 { 11052 MLXSW_REG_ZERO(mpagr, payload); 11053 mlxsw_reg_mpagr_trigger_set(payload, trigger); 11054 mlxsw_reg_mpagr_pa_id_set(payload, pa_id); 11055 mlxsw_reg_mpagr_probability_rate_set(payload, probability_rate); 11056 } 11057 11058 /* MOMTE - Monitoring Mirror Trigger Enable Register 11059 * ------------------------------------------------- 11060 * This register is used to configure the mirror enable for different mirror 11061 * reasons. 11062 */ 11063 #define MLXSW_REG_MOMTE_ID 0x908D 11064 #define MLXSW_REG_MOMTE_LEN 0x10 11065 11066 MLXSW_REG_DEFINE(momte, MLXSW_REG_MOMTE_ID, MLXSW_REG_MOMTE_LEN); 11067 11068 /* reg_momte_local_port 11069 * Local port number. 11070 * Access: Index 11071 */ 11072 MLXSW_ITEM32_LP(reg, momte, 0x00, 16, 0x00, 12); 11073 11074 enum mlxsw_reg_momte_type { 11075 MLXSW_REG_MOMTE_TYPE_WRED = 0x20, 11076 MLXSW_REG_MOMTE_TYPE_SHARED_BUFFER_TCLASS = 0x31, 11077 MLXSW_REG_MOMTE_TYPE_SHARED_BUFFER_TCLASS_DESCRIPTORS = 0x32, 11078 MLXSW_REG_MOMTE_TYPE_SHARED_BUFFER_EGRESS_PORT = 0x33, 11079 MLXSW_REG_MOMTE_TYPE_ING_CONG = 0x40, 11080 MLXSW_REG_MOMTE_TYPE_EGR_CONG = 0x50, 11081 MLXSW_REG_MOMTE_TYPE_ECN = 0x60, 11082 MLXSW_REG_MOMTE_TYPE_HIGH_LATENCY = 0x70, 11083 }; 11084 11085 /* reg_momte_type 11086 * Type of mirroring. 11087 * Access: Index 11088 */ 11089 MLXSW_ITEM32(reg, momte, type, 0x04, 0, 8); 11090 11091 /* reg_momte_tclass_en 11092 * TClass/PG mirror enable. Each bit represents corresponding tclass. 11093 * 0: disable (default) 11094 * 1: enable 11095 * Access: RW 11096 */ 11097 MLXSW_ITEM_BIT_ARRAY(reg, momte, tclass_en, 0x08, 0x08, 1); 11098 11099 static inline void mlxsw_reg_momte_pack(char *payload, u16 local_port, 11100 enum mlxsw_reg_momte_type type) 11101 { 11102 MLXSW_REG_ZERO(momte, payload); 11103 mlxsw_reg_momte_local_port_set(payload, local_port); 11104 mlxsw_reg_momte_type_set(payload, type); 11105 } 11106 11107 /* MTPPPC - Time Precision Packet Port Configuration 11108 * ------------------------------------------------- 11109 * This register serves for configuration of which PTP messages should be 11110 * timestamped. This is a global configuration, despite the register name. 11111 * 11112 * Reserved when Spectrum-2. 11113 */ 11114 #define MLXSW_REG_MTPPPC_ID 0x9090 11115 #define MLXSW_REG_MTPPPC_LEN 0x28 11116 11117 MLXSW_REG_DEFINE(mtpppc, MLXSW_REG_MTPPPC_ID, MLXSW_REG_MTPPPC_LEN); 11118 11119 /* reg_mtpppc_ing_timestamp_message_type 11120 * Bitwise vector of PTP message types to timestamp at ingress. 11121 * MessageType field as defined by IEEE 1588 11122 * Each bit corresponds to a value (e.g. Bit0: Sync, Bit1: Delay_Req) 11123 * Default all 0 11124 * Access: RW 11125 */ 11126 MLXSW_ITEM32(reg, mtpppc, ing_timestamp_message_type, 0x08, 0, 16); 11127 11128 /* reg_mtpppc_egr_timestamp_message_type 11129 * Bitwise vector of PTP message types to timestamp at egress. 11130 * MessageType field as defined by IEEE 1588 11131 * Each bit corresponds to a value (e.g. Bit0: Sync, Bit1: Delay_Req) 11132 * Default all 0 11133 * Access: RW 11134 */ 11135 MLXSW_ITEM32(reg, mtpppc, egr_timestamp_message_type, 0x0C, 0, 16); 11136 11137 static inline void mlxsw_reg_mtpppc_pack(char *payload, u16 ing, u16 egr) 11138 { 11139 MLXSW_REG_ZERO(mtpppc, payload); 11140 mlxsw_reg_mtpppc_ing_timestamp_message_type_set(payload, ing); 11141 mlxsw_reg_mtpppc_egr_timestamp_message_type_set(payload, egr); 11142 } 11143 11144 /* MTPPTR - Time Precision Packet Timestamping Reading 11145 * --------------------------------------------------- 11146 * The MTPPTR is used for reading the per port PTP timestamp FIFO. 11147 * There is a trap for packets which are latched to the timestamp FIFO, thus the 11148 * SW knows which FIFO to read. Note that packets enter the FIFO before been 11149 * trapped. The sequence number is used to synchronize the timestamp FIFO 11150 * entries and the trapped packets. 11151 * Reserved when Spectrum-2. 11152 */ 11153 11154 #define MLXSW_REG_MTPPTR_ID 0x9091 11155 #define MLXSW_REG_MTPPTR_BASE_LEN 0x10 /* base length, without records */ 11156 #define MLXSW_REG_MTPPTR_REC_LEN 0x10 /* record length */ 11157 #define MLXSW_REG_MTPPTR_REC_MAX_COUNT 4 11158 #define MLXSW_REG_MTPPTR_LEN (MLXSW_REG_MTPPTR_BASE_LEN + \ 11159 MLXSW_REG_MTPPTR_REC_LEN * MLXSW_REG_MTPPTR_REC_MAX_COUNT) 11160 11161 MLXSW_REG_DEFINE(mtpptr, MLXSW_REG_MTPPTR_ID, MLXSW_REG_MTPPTR_LEN); 11162 11163 /* reg_mtpptr_local_port 11164 * Not supported for CPU port. 11165 * Access: Index 11166 */ 11167 MLXSW_ITEM32_LP(reg, mtpptr, 0x00, 16, 0x00, 12); 11168 11169 enum mlxsw_reg_mtpptr_dir { 11170 MLXSW_REG_MTPPTR_DIR_INGRESS, 11171 MLXSW_REG_MTPPTR_DIR_EGRESS, 11172 }; 11173 11174 /* reg_mtpptr_dir 11175 * Direction. 11176 * Access: Index 11177 */ 11178 MLXSW_ITEM32(reg, mtpptr, dir, 0x00, 0, 1); 11179 11180 /* reg_mtpptr_clr 11181 * Clear the records. 11182 * Access: OP 11183 */ 11184 MLXSW_ITEM32(reg, mtpptr, clr, 0x04, 31, 1); 11185 11186 /* reg_mtpptr_num_rec 11187 * Number of valid records in the response 11188 * Range 0.. cap_ptp_timestamp_fifo 11189 * Access: RO 11190 */ 11191 MLXSW_ITEM32(reg, mtpptr, num_rec, 0x08, 0, 4); 11192 11193 /* reg_mtpptr_rec_message_type 11194 * MessageType field as defined by IEEE 1588 Each bit corresponds to a value 11195 * (e.g. Bit0: Sync, Bit1: Delay_Req) 11196 * Access: RO 11197 */ 11198 MLXSW_ITEM32_INDEXED(reg, mtpptr, rec_message_type, 11199 MLXSW_REG_MTPPTR_BASE_LEN, 8, 4, 11200 MLXSW_REG_MTPPTR_REC_LEN, 0, false); 11201 11202 /* reg_mtpptr_rec_domain_number 11203 * DomainNumber field as defined by IEEE 1588 11204 * Access: RO 11205 */ 11206 MLXSW_ITEM32_INDEXED(reg, mtpptr, rec_domain_number, 11207 MLXSW_REG_MTPPTR_BASE_LEN, 0, 8, 11208 MLXSW_REG_MTPPTR_REC_LEN, 0, false); 11209 11210 /* reg_mtpptr_rec_sequence_id 11211 * SequenceId field as defined by IEEE 1588 11212 * Access: RO 11213 */ 11214 MLXSW_ITEM32_INDEXED(reg, mtpptr, rec_sequence_id, 11215 MLXSW_REG_MTPPTR_BASE_LEN, 0, 16, 11216 MLXSW_REG_MTPPTR_REC_LEN, 0x4, false); 11217 11218 /* reg_mtpptr_rec_timestamp_high 11219 * Timestamp of when the PTP packet has passed through the port Units of PLL 11220 * clock time. 11221 * For Spectrum-1 the PLL clock is 156.25Mhz and PLL clock time is 6.4nSec. 11222 * Access: RO 11223 */ 11224 MLXSW_ITEM32_INDEXED(reg, mtpptr, rec_timestamp_high, 11225 MLXSW_REG_MTPPTR_BASE_LEN, 0, 32, 11226 MLXSW_REG_MTPPTR_REC_LEN, 0x8, false); 11227 11228 /* reg_mtpptr_rec_timestamp_low 11229 * See rec_timestamp_high. 11230 * Access: RO 11231 */ 11232 MLXSW_ITEM32_INDEXED(reg, mtpptr, rec_timestamp_low, 11233 MLXSW_REG_MTPPTR_BASE_LEN, 0, 32, 11234 MLXSW_REG_MTPPTR_REC_LEN, 0xC, false); 11235 11236 static inline void mlxsw_reg_mtpptr_unpack(const char *payload, 11237 unsigned int rec, 11238 u8 *p_message_type, 11239 u8 *p_domain_number, 11240 u16 *p_sequence_id, 11241 u64 *p_timestamp) 11242 { 11243 u32 timestamp_high, timestamp_low; 11244 11245 *p_message_type = mlxsw_reg_mtpptr_rec_message_type_get(payload, rec); 11246 *p_domain_number = mlxsw_reg_mtpptr_rec_domain_number_get(payload, rec); 11247 *p_sequence_id = mlxsw_reg_mtpptr_rec_sequence_id_get(payload, rec); 11248 timestamp_high = mlxsw_reg_mtpptr_rec_timestamp_high_get(payload, rec); 11249 timestamp_low = mlxsw_reg_mtpptr_rec_timestamp_low_get(payload, rec); 11250 *p_timestamp = (u64)timestamp_high << 32 | timestamp_low; 11251 } 11252 11253 /* MTPTPT - Monitoring Precision Time Protocol Trap Register 11254 * --------------------------------------------------------- 11255 * This register is used for configuring under which trap to deliver PTP 11256 * packets depending on type of the packet. 11257 */ 11258 #define MLXSW_REG_MTPTPT_ID 0x9092 11259 #define MLXSW_REG_MTPTPT_LEN 0x08 11260 11261 MLXSW_REG_DEFINE(mtptpt, MLXSW_REG_MTPTPT_ID, MLXSW_REG_MTPTPT_LEN); 11262 11263 enum mlxsw_reg_mtptpt_trap_id { 11264 MLXSW_REG_MTPTPT_TRAP_ID_PTP0, 11265 MLXSW_REG_MTPTPT_TRAP_ID_PTP1, 11266 }; 11267 11268 /* reg_mtptpt_trap_id 11269 * Trap id. 11270 * Access: Index 11271 */ 11272 MLXSW_ITEM32(reg, mtptpt, trap_id, 0x00, 0, 4); 11273 11274 /* reg_mtptpt_message_type 11275 * Bitwise vector of PTP message types to trap. This is a necessary but 11276 * non-sufficient condition since need to enable also per port. See MTPPPC. 11277 * Message types are defined by IEEE 1588 Each bit corresponds to a value (e.g. 11278 * Bit0: Sync, Bit1: Delay_Req) 11279 */ 11280 MLXSW_ITEM32(reg, mtptpt, message_type, 0x04, 0, 16); 11281 11282 static inline void mlxsw_reg_mtptptp_pack(char *payload, 11283 enum mlxsw_reg_mtptpt_trap_id trap_id, 11284 u16 message_type) 11285 { 11286 MLXSW_REG_ZERO(mtptpt, payload); 11287 mlxsw_reg_mtptpt_trap_id_set(payload, trap_id); 11288 mlxsw_reg_mtptpt_message_type_set(payload, message_type); 11289 } 11290 11291 /* MFGD - Monitoring FW General Debug Register 11292 * ------------------------------------------- 11293 */ 11294 #define MLXSW_REG_MFGD_ID 0x90F0 11295 #define MLXSW_REG_MFGD_LEN 0x0C 11296 11297 MLXSW_REG_DEFINE(mfgd, MLXSW_REG_MFGD_ID, MLXSW_REG_MFGD_LEN); 11298 11299 /* reg_mfgd_fw_fatal_event_mode 11300 * 0 - don't check FW fatal (default) 11301 * 1 - check FW fatal - enable MFDE trap 11302 * Access: RW 11303 */ 11304 MLXSW_ITEM32(reg, mfgd, fatal_event_mode, 0x00, 9, 2); 11305 11306 /* reg_mfgd_trigger_test 11307 * Access: WO 11308 */ 11309 MLXSW_ITEM32(reg, mfgd, trigger_test, 0x00, 11, 1); 11310 11311 /* MGPIR - Management General Peripheral Information Register 11312 * ---------------------------------------------------------- 11313 * MGPIR register allows software to query the hardware and 11314 * firmware general information of peripheral entities. 11315 */ 11316 #define MLXSW_REG_MGPIR_ID 0x9100 11317 #define MLXSW_REG_MGPIR_LEN 0xA0 11318 11319 MLXSW_REG_DEFINE(mgpir, MLXSW_REG_MGPIR_ID, MLXSW_REG_MGPIR_LEN); 11320 11321 enum mlxsw_reg_mgpir_device_type { 11322 MLXSW_REG_MGPIR_DEVICE_TYPE_NONE, 11323 MLXSW_REG_MGPIR_DEVICE_TYPE_GEARBOX_DIE, 11324 }; 11325 11326 /* device_type 11327 * Access: RO 11328 */ 11329 MLXSW_ITEM32(reg, mgpir, device_type, 0x00, 24, 4); 11330 11331 /* devices_per_flash 11332 * Number of devices of device_type per flash (can be shared by few devices). 11333 * Access: RO 11334 */ 11335 MLXSW_ITEM32(reg, mgpir, devices_per_flash, 0x00, 16, 8); 11336 11337 /* num_of_devices 11338 * Number of devices of device_type. 11339 * Access: RO 11340 */ 11341 MLXSW_ITEM32(reg, mgpir, num_of_devices, 0x00, 0, 8); 11342 11343 /* num_of_modules 11344 * Number of modules. 11345 * Access: RO 11346 */ 11347 MLXSW_ITEM32(reg, mgpir, num_of_modules, 0x04, 0, 8); 11348 11349 static inline void mlxsw_reg_mgpir_pack(char *payload) 11350 { 11351 MLXSW_REG_ZERO(mgpir, payload); 11352 } 11353 11354 static inline void 11355 mlxsw_reg_mgpir_unpack(char *payload, u8 *num_of_devices, 11356 enum mlxsw_reg_mgpir_device_type *device_type, 11357 u8 *devices_per_flash, u8 *num_of_modules) 11358 { 11359 if (num_of_devices) 11360 *num_of_devices = mlxsw_reg_mgpir_num_of_devices_get(payload); 11361 if (device_type) 11362 *device_type = mlxsw_reg_mgpir_device_type_get(payload); 11363 if (devices_per_flash) 11364 *devices_per_flash = 11365 mlxsw_reg_mgpir_devices_per_flash_get(payload); 11366 if (num_of_modules) 11367 *num_of_modules = mlxsw_reg_mgpir_num_of_modules_get(payload); 11368 } 11369 11370 /* MFDE - Monitoring FW Debug Register 11371 * ----------------------------------- 11372 */ 11373 #define MLXSW_REG_MFDE_ID 0x9200 11374 #define MLXSW_REG_MFDE_LEN 0x30 11375 11376 MLXSW_REG_DEFINE(mfde, MLXSW_REG_MFDE_ID, MLXSW_REG_MFDE_LEN); 11377 11378 /* reg_mfde_irisc_id 11379 * Which irisc triggered the event 11380 * Access: RO 11381 */ 11382 MLXSW_ITEM32(reg, mfde, irisc_id, 0x00, 24, 8); 11383 11384 enum mlxsw_reg_mfde_severity { 11385 /* Unrecoverable switch behavior */ 11386 MLXSW_REG_MFDE_SEVERITY_FATL = 2, 11387 /* Unexpected state with possible systemic failure */ 11388 MLXSW_REG_MFDE_SEVERITY_NRML = 3, 11389 /* Unexpected state without systemic failure */ 11390 MLXSW_REG_MFDE_SEVERITY_INTR = 5, 11391 }; 11392 11393 /* reg_mfde_severity 11394 * The severity of the event. 11395 * Access: RO 11396 */ 11397 MLXSW_ITEM32(reg, mfde, severity, 0x00, 16, 8); 11398 11399 enum mlxsw_reg_mfde_event_id { 11400 /* CRspace timeout */ 11401 MLXSW_REG_MFDE_EVENT_ID_CRSPACE_TO = 1, 11402 /* KVD insertion machine stopped */ 11403 MLXSW_REG_MFDE_EVENT_ID_KVD_IM_STOP, 11404 /* Triggered by MFGD.trigger_test */ 11405 MLXSW_REG_MFDE_EVENT_ID_TEST, 11406 /* Triggered when firmware hits an assert */ 11407 MLXSW_REG_MFDE_EVENT_ID_FW_ASSERT, 11408 /* Fatal error interrupt from hardware */ 11409 MLXSW_REG_MFDE_EVENT_ID_FATAL_CAUSE, 11410 }; 11411 11412 /* reg_mfde_event_id 11413 * Access: RO 11414 */ 11415 MLXSW_ITEM32(reg, mfde, event_id, 0x00, 0, 16); 11416 11417 enum mlxsw_reg_mfde_method { 11418 MLXSW_REG_MFDE_METHOD_QUERY, 11419 MLXSW_REG_MFDE_METHOD_WRITE, 11420 }; 11421 11422 /* reg_mfde_method 11423 * Access: RO 11424 */ 11425 MLXSW_ITEM32(reg, mfde, method, 0x04, 29, 1); 11426 11427 /* reg_mfde_long_process 11428 * Indicates if the command is in long_process mode. 11429 * Access: RO 11430 */ 11431 MLXSW_ITEM32(reg, mfde, long_process, 0x04, 28, 1); 11432 11433 enum mlxsw_reg_mfde_command_type { 11434 MLXSW_REG_MFDE_COMMAND_TYPE_MAD, 11435 MLXSW_REG_MFDE_COMMAND_TYPE_EMAD, 11436 MLXSW_REG_MFDE_COMMAND_TYPE_CMDIF, 11437 }; 11438 11439 /* reg_mfde_command_type 11440 * Access: RO 11441 */ 11442 MLXSW_ITEM32(reg, mfde, command_type, 0x04, 24, 2); 11443 11444 /* reg_mfde_reg_attr_id 11445 * EMAD - register id, MAD - attibute id 11446 * Access: RO 11447 */ 11448 MLXSW_ITEM32(reg, mfde, reg_attr_id, 0x04, 0, 16); 11449 11450 /* reg_mfde_crspace_to_log_address 11451 * crspace address accessed, which resulted in timeout. 11452 * Access: RO 11453 */ 11454 MLXSW_ITEM32(reg, mfde, crspace_to_log_address, 0x10, 0, 32); 11455 11456 /* reg_mfde_crspace_to_oe 11457 * 0 - New event 11458 * 1 - Old event, occurred before MFGD activation. 11459 * Access: RO 11460 */ 11461 MLXSW_ITEM32(reg, mfde, crspace_to_oe, 0x14, 24, 1); 11462 11463 /* reg_mfde_crspace_to_log_id 11464 * Which irisc triggered the timeout. 11465 * Access: RO 11466 */ 11467 MLXSW_ITEM32(reg, mfde, crspace_to_log_id, 0x14, 0, 4); 11468 11469 /* reg_mfde_crspace_to_log_ip 11470 * IP (instruction pointer) that triggered the timeout. 11471 * Access: RO 11472 */ 11473 MLXSW_ITEM64(reg, mfde, crspace_to_log_ip, 0x18, 0, 64); 11474 11475 /* reg_mfde_kvd_im_stop_oe 11476 * 0 - New event 11477 * 1 - Old event, occurred before MFGD activation. 11478 * Access: RO 11479 */ 11480 MLXSW_ITEM32(reg, mfde, kvd_im_stop_oe, 0x10, 24, 1); 11481 11482 /* reg_mfde_kvd_im_stop_pipes_mask 11483 * Bit per kvh pipe. 11484 * Access: RO 11485 */ 11486 MLXSW_ITEM32(reg, mfde, kvd_im_stop_pipes_mask, 0x10, 0, 16); 11487 11488 /* reg_mfde_fw_assert_var0-4 11489 * Variables passed to assert. 11490 * Access: RO 11491 */ 11492 MLXSW_ITEM32(reg, mfde, fw_assert_var0, 0x10, 0, 32); 11493 MLXSW_ITEM32(reg, mfde, fw_assert_var1, 0x14, 0, 32); 11494 MLXSW_ITEM32(reg, mfde, fw_assert_var2, 0x18, 0, 32); 11495 MLXSW_ITEM32(reg, mfde, fw_assert_var3, 0x1C, 0, 32); 11496 MLXSW_ITEM32(reg, mfde, fw_assert_var4, 0x20, 0, 32); 11497 11498 /* reg_mfde_fw_assert_existptr 11499 * The instruction pointer when assert was triggered. 11500 * Access: RO 11501 */ 11502 MLXSW_ITEM32(reg, mfde, fw_assert_existptr, 0x24, 0, 32); 11503 11504 /* reg_mfde_fw_assert_callra 11505 * The return address after triggering assert. 11506 * Access: RO 11507 */ 11508 MLXSW_ITEM32(reg, mfde, fw_assert_callra, 0x28, 0, 32); 11509 11510 /* reg_mfde_fw_assert_oe 11511 * 0 - New event 11512 * 1 - Old event, occurred before MFGD activation. 11513 * Access: RO 11514 */ 11515 MLXSW_ITEM32(reg, mfde, fw_assert_oe, 0x2C, 24, 1); 11516 11517 /* reg_mfde_fw_assert_tile_v 11518 * 0: The assert was from main 11519 * 1: The assert was from a tile 11520 * Access: RO 11521 */ 11522 MLXSW_ITEM32(reg, mfde, fw_assert_tile_v, 0x2C, 23, 1); 11523 11524 /* reg_mfde_fw_assert_tile_index 11525 * When tile_v=1, the tile_index that caused the assert. 11526 * Access: RO 11527 */ 11528 MLXSW_ITEM32(reg, mfde, fw_assert_tile_index, 0x2C, 16, 6); 11529 11530 /* reg_mfde_fw_assert_ext_synd 11531 * A generated one-to-one identifier which is specific per-assert. 11532 * Access: RO 11533 */ 11534 MLXSW_ITEM32(reg, mfde, fw_assert_ext_synd, 0x2C, 0, 16); 11535 11536 /* reg_mfde_fatal_cause_id 11537 * HW interrupt cause id. 11538 * Access: RO 11539 */ 11540 MLXSW_ITEM32(reg, mfde, fatal_cause_id, 0x10, 0, 18); 11541 11542 /* reg_mfde_fatal_cause_tile_v 11543 * 0: The assert was from main 11544 * 1: The assert was from a tile 11545 * Access: RO 11546 */ 11547 MLXSW_ITEM32(reg, mfde, fatal_cause_tile_v, 0x14, 23, 1); 11548 11549 /* reg_mfde_fatal_cause_tile_index 11550 * When tile_v=1, the tile_index that caused the assert. 11551 * Access: RO 11552 */ 11553 MLXSW_ITEM32(reg, mfde, fatal_cause_tile_index, 0x14, 16, 6); 11554 11555 /* TNGCR - Tunneling NVE General Configuration Register 11556 * ---------------------------------------------------- 11557 * The TNGCR register is used for setting up the NVE Tunneling configuration. 11558 */ 11559 #define MLXSW_REG_TNGCR_ID 0xA001 11560 #define MLXSW_REG_TNGCR_LEN 0x44 11561 11562 MLXSW_REG_DEFINE(tngcr, MLXSW_REG_TNGCR_ID, MLXSW_REG_TNGCR_LEN); 11563 11564 enum mlxsw_reg_tngcr_type { 11565 MLXSW_REG_TNGCR_TYPE_VXLAN, 11566 MLXSW_REG_TNGCR_TYPE_VXLAN_GPE, 11567 MLXSW_REG_TNGCR_TYPE_GENEVE, 11568 MLXSW_REG_TNGCR_TYPE_NVGRE, 11569 }; 11570 11571 /* reg_tngcr_type 11572 * Tunnel type for encapsulation and decapsulation. The types are mutually 11573 * exclusive. 11574 * Note: For Spectrum the NVE parsing must be enabled in MPRS. 11575 * Access: RW 11576 */ 11577 MLXSW_ITEM32(reg, tngcr, type, 0x00, 0, 4); 11578 11579 /* reg_tngcr_nve_valid 11580 * The VTEP is valid. Allows adding FDB entries for tunnel encapsulation. 11581 * Access: RW 11582 */ 11583 MLXSW_ITEM32(reg, tngcr, nve_valid, 0x04, 31, 1); 11584 11585 /* reg_tngcr_nve_ttl_uc 11586 * The TTL for NVE tunnel encapsulation underlay unicast packets. 11587 * Access: RW 11588 */ 11589 MLXSW_ITEM32(reg, tngcr, nve_ttl_uc, 0x04, 0, 8); 11590 11591 /* reg_tngcr_nve_ttl_mc 11592 * The TTL for NVE tunnel encapsulation underlay multicast packets. 11593 * Access: RW 11594 */ 11595 MLXSW_ITEM32(reg, tngcr, nve_ttl_mc, 0x08, 0, 8); 11596 11597 enum { 11598 /* Do not copy flow label. Calculate flow label using nve_flh. */ 11599 MLXSW_REG_TNGCR_FL_NO_COPY, 11600 /* Copy flow label from inner packet if packet is IPv6 and 11601 * encapsulation is by IPv6. Otherwise, calculate flow label using 11602 * nve_flh. 11603 */ 11604 MLXSW_REG_TNGCR_FL_COPY, 11605 }; 11606 11607 /* reg_tngcr_nve_flc 11608 * For NVE tunnel encapsulation: Flow label copy from inner packet. 11609 * Access: RW 11610 */ 11611 MLXSW_ITEM32(reg, tngcr, nve_flc, 0x0C, 25, 1); 11612 11613 enum { 11614 /* Flow label is static. In Spectrum this means '0'. Spectrum-2 11615 * uses {nve_fl_prefix, nve_fl_suffix}. 11616 */ 11617 MLXSW_REG_TNGCR_FL_NO_HASH, 11618 /* 8 LSBs of the flow label are calculated from ECMP hash of the 11619 * inner packet. 12 MSBs are configured by nve_fl_prefix. 11620 */ 11621 MLXSW_REG_TNGCR_FL_HASH, 11622 }; 11623 11624 /* reg_tngcr_nve_flh 11625 * NVE flow label hash. 11626 * Access: RW 11627 */ 11628 MLXSW_ITEM32(reg, tngcr, nve_flh, 0x0C, 24, 1); 11629 11630 /* reg_tngcr_nve_fl_prefix 11631 * NVE flow label prefix. Constant 12 MSBs of the flow label. 11632 * Access: RW 11633 */ 11634 MLXSW_ITEM32(reg, tngcr, nve_fl_prefix, 0x0C, 8, 12); 11635 11636 /* reg_tngcr_nve_fl_suffix 11637 * NVE flow label suffix. Constant 8 LSBs of the flow label. 11638 * Reserved when nve_flh=1 and for Spectrum. 11639 * Access: RW 11640 */ 11641 MLXSW_ITEM32(reg, tngcr, nve_fl_suffix, 0x0C, 0, 8); 11642 11643 enum { 11644 /* Source UDP port is fixed (default '0') */ 11645 MLXSW_REG_TNGCR_UDP_SPORT_NO_HASH, 11646 /* Source UDP port is calculated based on hash */ 11647 MLXSW_REG_TNGCR_UDP_SPORT_HASH, 11648 }; 11649 11650 /* reg_tngcr_nve_udp_sport_type 11651 * NVE UDP source port type. 11652 * Spectrum uses LAG hash (SLCRv2). Spectrum-2 uses ECMP hash (RECRv2). 11653 * When the source UDP port is calculated based on hash, then the 8 LSBs 11654 * are calculated from hash the 8 MSBs are configured by 11655 * nve_udp_sport_prefix. 11656 * Access: RW 11657 */ 11658 MLXSW_ITEM32(reg, tngcr, nve_udp_sport_type, 0x10, 24, 1); 11659 11660 /* reg_tngcr_nve_udp_sport_prefix 11661 * NVE UDP source port prefix. Constant 8 MSBs of the UDP source port. 11662 * Reserved when NVE type is NVGRE. 11663 * Access: RW 11664 */ 11665 MLXSW_ITEM32(reg, tngcr, nve_udp_sport_prefix, 0x10, 8, 8); 11666 11667 /* reg_tngcr_nve_group_size_mc 11668 * The amount of sequential linked lists of MC entries. The first linked 11669 * list is configured by SFD.underlay_mc_ptr. 11670 * Valid values: 1, 2, 4, 8, 16, 32, 64 11671 * The linked list are configured by TNUMT. 11672 * The hash is set by LAG hash. 11673 * Access: RW 11674 */ 11675 MLXSW_ITEM32(reg, tngcr, nve_group_size_mc, 0x18, 0, 8); 11676 11677 /* reg_tngcr_nve_group_size_flood 11678 * The amount of sequential linked lists of flooding entries. The first 11679 * linked list is configured by SFMR.nve_tunnel_flood_ptr 11680 * Valid values: 1, 2, 4, 8, 16, 32, 64 11681 * The linked list are configured by TNUMT. 11682 * The hash is set by LAG hash. 11683 * Access: RW 11684 */ 11685 MLXSW_ITEM32(reg, tngcr, nve_group_size_flood, 0x1C, 0, 8); 11686 11687 /* reg_tngcr_learn_enable 11688 * During decapsulation, whether to learn from NVE port. 11689 * Reserved when Spectrum-2. See TNPC. 11690 * Access: RW 11691 */ 11692 MLXSW_ITEM32(reg, tngcr, learn_enable, 0x20, 31, 1); 11693 11694 /* reg_tngcr_underlay_virtual_router 11695 * Underlay virtual router. 11696 * Reserved when Spectrum-2. 11697 * Access: RW 11698 */ 11699 MLXSW_ITEM32(reg, tngcr, underlay_virtual_router, 0x20, 0, 16); 11700 11701 /* reg_tngcr_underlay_rif 11702 * Underlay ingress router interface. RIF type should be loopback generic. 11703 * Reserved when Spectrum. 11704 * Access: RW 11705 */ 11706 MLXSW_ITEM32(reg, tngcr, underlay_rif, 0x24, 0, 16); 11707 11708 /* reg_tngcr_usipv4 11709 * Underlay source IPv4 address of the NVE. 11710 * Access: RW 11711 */ 11712 MLXSW_ITEM32(reg, tngcr, usipv4, 0x28, 0, 32); 11713 11714 /* reg_tngcr_usipv6 11715 * Underlay source IPv6 address of the NVE. For Spectrum, must not be 11716 * modified under traffic of NVE tunneling encapsulation. 11717 * Access: RW 11718 */ 11719 MLXSW_ITEM_BUF(reg, tngcr, usipv6, 0x30, 16); 11720 11721 static inline void mlxsw_reg_tngcr_pack(char *payload, 11722 enum mlxsw_reg_tngcr_type type, 11723 bool valid, u8 ttl) 11724 { 11725 MLXSW_REG_ZERO(tngcr, payload); 11726 mlxsw_reg_tngcr_type_set(payload, type); 11727 mlxsw_reg_tngcr_nve_valid_set(payload, valid); 11728 mlxsw_reg_tngcr_nve_ttl_uc_set(payload, ttl); 11729 mlxsw_reg_tngcr_nve_ttl_mc_set(payload, ttl); 11730 mlxsw_reg_tngcr_nve_flc_set(payload, MLXSW_REG_TNGCR_FL_NO_COPY); 11731 mlxsw_reg_tngcr_nve_flh_set(payload, 0); 11732 mlxsw_reg_tngcr_nve_udp_sport_type_set(payload, 11733 MLXSW_REG_TNGCR_UDP_SPORT_HASH); 11734 mlxsw_reg_tngcr_nve_udp_sport_prefix_set(payload, 0); 11735 mlxsw_reg_tngcr_nve_group_size_mc_set(payload, 1); 11736 mlxsw_reg_tngcr_nve_group_size_flood_set(payload, 1); 11737 } 11738 11739 /* TNUMT - Tunneling NVE Underlay Multicast Table Register 11740 * ------------------------------------------------------- 11741 * The TNUMT register is for building the underlay MC table. It is used 11742 * for MC, flooding and BC traffic into the NVE tunnel. 11743 */ 11744 #define MLXSW_REG_TNUMT_ID 0xA003 11745 #define MLXSW_REG_TNUMT_LEN 0x20 11746 11747 MLXSW_REG_DEFINE(tnumt, MLXSW_REG_TNUMT_ID, MLXSW_REG_TNUMT_LEN); 11748 11749 enum mlxsw_reg_tnumt_record_type { 11750 MLXSW_REG_TNUMT_RECORD_TYPE_IPV4, 11751 MLXSW_REG_TNUMT_RECORD_TYPE_IPV6, 11752 MLXSW_REG_TNUMT_RECORD_TYPE_LABEL, 11753 }; 11754 11755 /* reg_tnumt_record_type 11756 * Record type. 11757 * Access: RW 11758 */ 11759 MLXSW_ITEM32(reg, tnumt, record_type, 0x00, 28, 4); 11760 11761 /* reg_tnumt_tunnel_port 11762 * Tunnel port. 11763 * Access: RW 11764 */ 11765 MLXSW_ITEM32(reg, tnumt, tunnel_port, 0x00, 24, 4); 11766 11767 /* reg_tnumt_underlay_mc_ptr 11768 * Index to the underlay multicast table. 11769 * For Spectrum the index is to the KVD linear. 11770 * Access: Index 11771 */ 11772 MLXSW_ITEM32(reg, tnumt, underlay_mc_ptr, 0x00, 0, 24); 11773 11774 /* reg_tnumt_vnext 11775 * The next_underlay_mc_ptr is valid. 11776 * Access: RW 11777 */ 11778 MLXSW_ITEM32(reg, tnumt, vnext, 0x04, 31, 1); 11779 11780 /* reg_tnumt_next_underlay_mc_ptr 11781 * The next index to the underlay multicast table. 11782 * Access: RW 11783 */ 11784 MLXSW_ITEM32(reg, tnumt, next_underlay_mc_ptr, 0x04, 0, 24); 11785 11786 /* reg_tnumt_record_size 11787 * Number of IP addresses in the record. 11788 * Range is 1..cap_max_nve_mc_entries_ipv{4,6} 11789 * Access: RW 11790 */ 11791 MLXSW_ITEM32(reg, tnumt, record_size, 0x08, 0, 3); 11792 11793 /* reg_tnumt_udip 11794 * The underlay IPv4 addresses. udip[i] is reserved if i >= size 11795 * Access: RW 11796 */ 11797 MLXSW_ITEM32_INDEXED(reg, tnumt, udip, 0x0C, 0, 32, 0x04, 0x00, false); 11798 11799 /* reg_tnumt_udip_ptr 11800 * The pointer to the underlay IPv6 addresses. udip_ptr[i] is reserved if 11801 * i >= size. The IPv6 addresses are configured by RIPS. 11802 * Access: RW 11803 */ 11804 MLXSW_ITEM32_INDEXED(reg, tnumt, udip_ptr, 0x0C, 0, 24, 0x04, 0x00, false); 11805 11806 static inline void mlxsw_reg_tnumt_pack(char *payload, 11807 enum mlxsw_reg_tnumt_record_type type, 11808 enum mlxsw_reg_tunnel_port tport, 11809 u32 underlay_mc_ptr, bool vnext, 11810 u32 next_underlay_mc_ptr, 11811 u8 record_size) 11812 { 11813 MLXSW_REG_ZERO(tnumt, payload); 11814 mlxsw_reg_tnumt_record_type_set(payload, type); 11815 mlxsw_reg_tnumt_tunnel_port_set(payload, tport); 11816 mlxsw_reg_tnumt_underlay_mc_ptr_set(payload, underlay_mc_ptr); 11817 mlxsw_reg_tnumt_vnext_set(payload, vnext); 11818 mlxsw_reg_tnumt_next_underlay_mc_ptr_set(payload, next_underlay_mc_ptr); 11819 mlxsw_reg_tnumt_record_size_set(payload, record_size); 11820 } 11821 11822 /* TNQCR - Tunneling NVE QoS Configuration Register 11823 * ------------------------------------------------ 11824 * The TNQCR register configures how QoS is set in encapsulation into the 11825 * underlay network. 11826 */ 11827 #define MLXSW_REG_TNQCR_ID 0xA010 11828 #define MLXSW_REG_TNQCR_LEN 0x0C 11829 11830 MLXSW_REG_DEFINE(tnqcr, MLXSW_REG_TNQCR_ID, MLXSW_REG_TNQCR_LEN); 11831 11832 /* reg_tnqcr_enc_set_dscp 11833 * For encapsulation: How to set DSCP field: 11834 * 0 - Copy the DSCP from the overlay (inner) IP header to the underlay 11835 * (outer) IP header. If there is no IP header, use TNQDR.dscp 11836 * 1 - Set the DSCP field as TNQDR.dscp 11837 * Access: RW 11838 */ 11839 MLXSW_ITEM32(reg, tnqcr, enc_set_dscp, 0x04, 28, 1); 11840 11841 static inline void mlxsw_reg_tnqcr_pack(char *payload) 11842 { 11843 MLXSW_REG_ZERO(tnqcr, payload); 11844 mlxsw_reg_tnqcr_enc_set_dscp_set(payload, 0); 11845 } 11846 11847 /* TNQDR - Tunneling NVE QoS Default Register 11848 * ------------------------------------------ 11849 * The TNQDR register configures the default QoS settings for NVE 11850 * encapsulation. 11851 */ 11852 #define MLXSW_REG_TNQDR_ID 0xA011 11853 #define MLXSW_REG_TNQDR_LEN 0x08 11854 11855 MLXSW_REG_DEFINE(tnqdr, MLXSW_REG_TNQDR_ID, MLXSW_REG_TNQDR_LEN); 11856 11857 /* reg_tnqdr_local_port 11858 * Local port number (receive port). CPU port is supported. 11859 * Access: Index 11860 */ 11861 MLXSW_ITEM32_LP(reg, tnqdr, 0x00, 16, 0x00, 12); 11862 11863 /* reg_tnqdr_dscp 11864 * For encapsulation, the default DSCP. 11865 * Access: RW 11866 */ 11867 MLXSW_ITEM32(reg, tnqdr, dscp, 0x04, 0, 6); 11868 11869 static inline void mlxsw_reg_tnqdr_pack(char *payload, u16 local_port) 11870 { 11871 MLXSW_REG_ZERO(tnqdr, payload); 11872 mlxsw_reg_tnqdr_local_port_set(payload, local_port); 11873 mlxsw_reg_tnqdr_dscp_set(payload, 0); 11874 } 11875 11876 /* TNEEM - Tunneling NVE Encapsulation ECN Mapping Register 11877 * -------------------------------------------------------- 11878 * The TNEEM register maps ECN of the IP header at the ingress to the 11879 * encapsulation to the ECN of the underlay network. 11880 */ 11881 #define MLXSW_REG_TNEEM_ID 0xA012 11882 #define MLXSW_REG_TNEEM_LEN 0x0C 11883 11884 MLXSW_REG_DEFINE(tneem, MLXSW_REG_TNEEM_ID, MLXSW_REG_TNEEM_LEN); 11885 11886 /* reg_tneem_overlay_ecn 11887 * ECN of the IP header in the overlay network. 11888 * Access: Index 11889 */ 11890 MLXSW_ITEM32(reg, tneem, overlay_ecn, 0x04, 24, 2); 11891 11892 /* reg_tneem_underlay_ecn 11893 * ECN of the IP header in the underlay network. 11894 * Access: RW 11895 */ 11896 MLXSW_ITEM32(reg, tneem, underlay_ecn, 0x04, 16, 2); 11897 11898 static inline void mlxsw_reg_tneem_pack(char *payload, u8 overlay_ecn, 11899 u8 underlay_ecn) 11900 { 11901 MLXSW_REG_ZERO(tneem, payload); 11902 mlxsw_reg_tneem_overlay_ecn_set(payload, overlay_ecn); 11903 mlxsw_reg_tneem_underlay_ecn_set(payload, underlay_ecn); 11904 } 11905 11906 /* TNDEM - Tunneling NVE Decapsulation ECN Mapping Register 11907 * -------------------------------------------------------- 11908 * The TNDEM register configures the actions that are done in the 11909 * decapsulation. 11910 */ 11911 #define MLXSW_REG_TNDEM_ID 0xA013 11912 #define MLXSW_REG_TNDEM_LEN 0x0C 11913 11914 MLXSW_REG_DEFINE(tndem, MLXSW_REG_TNDEM_ID, MLXSW_REG_TNDEM_LEN); 11915 11916 /* reg_tndem_underlay_ecn 11917 * ECN field of the IP header in the underlay network. 11918 * Access: Index 11919 */ 11920 MLXSW_ITEM32(reg, tndem, underlay_ecn, 0x04, 24, 2); 11921 11922 /* reg_tndem_overlay_ecn 11923 * ECN field of the IP header in the overlay network. 11924 * Access: Index 11925 */ 11926 MLXSW_ITEM32(reg, tndem, overlay_ecn, 0x04, 16, 2); 11927 11928 /* reg_tndem_eip_ecn 11929 * Egress IP ECN. ECN field of the IP header of the packet which goes out 11930 * from the decapsulation. 11931 * Access: RW 11932 */ 11933 MLXSW_ITEM32(reg, tndem, eip_ecn, 0x04, 8, 2); 11934 11935 /* reg_tndem_trap_en 11936 * Trap enable: 11937 * 0 - No trap due to decap ECN 11938 * 1 - Trap enable with trap_id 11939 * Access: RW 11940 */ 11941 MLXSW_ITEM32(reg, tndem, trap_en, 0x08, 28, 4); 11942 11943 /* reg_tndem_trap_id 11944 * Trap ID. Either DECAP_ECN0 or DECAP_ECN1. 11945 * Reserved when trap_en is '0'. 11946 * Access: RW 11947 */ 11948 MLXSW_ITEM32(reg, tndem, trap_id, 0x08, 0, 9); 11949 11950 static inline void mlxsw_reg_tndem_pack(char *payload, u8 underlay_ecn, 11951 u8 overlay_ecn, u8 ecn, bool trap_en, 11952 u16 trap_id) 11953 { 11954 MLXSW_REG_ZERO(tndem, payload); 11955 mlxsw_reg_tndem_underlay_ecn_set(payload, underlay_ecn); 11956 mlxsw_reg_tndem_overlay_ecn_set(payload, overlay_ecn); 11957 mlxsw_reg_tndem_eip_ecn_set(payload, ecn); 11958 mlxsw_reg_tndem_trap_en_set(payload, trap_en); 11959 mlxsw_reg_tndem_trap_id_set(payload, trap_id); 11960 } 11961 11962 /* TNPC - Tunnel Port Configuration Register 11963 * ----------------------------------------- 11964 * The TNPC register is used for tunnel port configuration. 11965 * Reserved when Spectrum. 11966 */ 11967 #define MLXSW_REG_TNPC_ID 0xA020 11968 #define MLXSW_REG_TNPC_LEN 0x18 11969 11970 MLXSW_REG_DEFINE(tnpc, MLXSW_REG_TNPC_ID, MLXSW_REG_TNPC_LEN); 11971 11972 /* reg_tnpc_tunnel_port 11973 * Tunnel port. 11974 * Access: Index 11975 */ 11976 MLXSW_ITEM32(reg, tnpc, tunnel_port, 0x00, 0, 4); 11977 11978 /* reg_tnpc_learn_enable_v6 11979 * During IPv6 underlay decapsulation, whether to learn from tunnel port. 11980 * Access: RW 11981 */ 11982 MLXSW_ITEM32(reg, tnpc, learn_enable_v6, 0x04, 1, 1); 11983 11984 /* reg_tnpc_learn_enable_v4 11985 * During IPv4 underlay decapsulation, whether to learn from tunnel port. 11986 * Access: RW 11987 */ 11988 MLXSW_ITEM32(reg, tnpc, learn_enable_v4, 0x04, 0, 1); 11989 11990 static inline void mlxsw_reg_tnpc_pack(char *payload, 11991 enum mlxsw_reg_tunnel_port tport, 11992 bool learn_enable) 11993 { 11994 MLXSW_REG_ZERO(tnpc, payload); 11995 mlxsw_reg_tnpc_tunnel_port_set(payload, tport); 11996 mlxsw_reg_tnpc_learn_enable_v4_set(payload, learn_enable); 11997 mlxsw_reg_tnpc_learn_enable_v6_set(payload, learn_enable); 11998 } 11999 12000 /* TIGCR - Tunneling IPinIP General Configuration Register 12001 * ------------------------------------------------------- 12002 * The TIGCR register is used for setting up the IPinIP Tunnel configuration. 12003 */ 12004 #define MLXSW_REG_TIGCR_ID 0xA801 12005 #define MLXSW_REG_TIGCR_LEN 0x10 12006 12007 MLXSW_REG_DEFINE(tigcr, MLXSW_REG_TIGCR_ID, MLXSW_REG_TIGCR_LEN); 12008 12009 /* reg_tigcr_ipip_ttlc 12010 * For IPinIP Tunnel encapsulation: whether to copy the ttl from the packet 12011 * header. 12012 * Access: RW 12013 */ 12014 MLXSW_ITEM32(reg, tigcr, ttlc, 0x04, 8, 1); 12015 12016 /* reg_tigcr_ipip_ttl_uc 12017 * The TTL for IPinIP Tunnel encapsulation of unicast packets if 12018 * reg_tigcr_ipip_ttlc is unset. 12019 * Access: RW 12020 */ 12021 MLXSW_ITEM32(reg, tigcr, ttl_uc, 0x04, 0, 8); 12022 12023 static inline void mlxsw_reg_tigcr_pack(char *payload, bool ttlc, u8 ttl_uc) 12024 { 12025 MLXSW_REG_ZERO(tigcr, payload); 12026 mlxsw_reg_tigcr_ttlc_set(payload, ttlc); 12027 mlxsw_reg_tigcr_ttl_uc_set(payload, ttl_uc); 12028 } 12029 12030 /* TIEEM - Tunneling IPinIP Encapsulation ECN Mapping Register 12031 * ----------------------------------------------------------- 12032 * The TIEEM register maps ECN of the IP header at the ingress to the 12033 * encapsulation to the ECN of the underlay network. 12034 */ 12035 #define MLXSW_REG_TIEEM_ID 0xA812 12036 #define MLXSW_REG_TIEEM_LEN 0x0C 12037 12038 MLXSW_REG_DEFINE(tieem, MLXSW_REG_TIEEM_ID, MLXSW_REG_TIEEM_LEN); 12039 12040 /* reg_tieem_overlay_ecn 12041 * ECN of the IP header in the overlay network. 12042 * Access: Index 12043 */ 12044 MLXSW_ITEM32(reg, tieem, overlay_ecn, 0x04, 24, 2); 12045 12046 /* reg_tineem_underlay_ecn 12047 * ECN of the IP header in the underlay network. 12048 * Access: RW 12049 */ 12050 MLXSW_ITEM32(reg, tieem, underlay_ecn, 0x04, 16, 2); 12051 12052 static inline void mlxsw_reg_tieem_pack(char *payload, u8 overlay_ecn, 12053 u8 underlay_ecn) 12054 { 12055 MLXSW_REG_ZERO(tieem, payload); 12056 mlxsw_reg_tieem_overlay_ecn_set(payload, overlay_ecn); 12057 mlxsw_reg_tieem_underlay_ecn_set(payload, underlay_ecn); 12058 } 12059 12060 /* TIDEM - Tunneling IPinIP Decapsulation ECN Mapping Register 12061 * ----------------------------------------------------------- 12062 * The TIDEM register configures the actions that are done in the 12063 * decapsulation. 12064 */ 12065 #define MLXSW_REG_TIDEM_ID 0xA813 12066 #define MLXSW_REG_TIDEM_LEN 0x0C 12067 12068 MLXSW_REG_DEFINE(tidem, MLXSW_REG_TIDEM_ID, MLXSW_REG_TIDEM_LEN); 12069 12070 /* reg_tidem_underlay_ecn 12071 * ECN field of the IP header in the underlay network. 12072 * Access: Index 12073 */ 12074 MLXSW_ITEM32(reg, tidem, underlay_ecn, 0x04, 24, 2); 12075 12076 /* reg_tidem_overlay_ecn 12077 * ECN field of the IP header in the overlay network. 12078 * Access: Index 12079 */ 12080 MLXSW_ITEM32(reg, tidem, overlay_ecn, 0x04, 16, 2); 12081 12082 /* reg_tidem_eip_ecn 12083 * Egress IP ECN. ECN field of the IP header of the packet which goes out 12084 * from the decapsulation. 12085 * Access: RW 12086 */ 12087 MLXSW_ITEM32(reg, tidem, eip_ecn, 0x04, 8, 2); 12088 12089 /* reg_tidem_trap_en 12090 * Trap enable: 12091 * 0 - No trap due to decap ECN 12092 * 1 - Trap enable with trap_id 12093 * Access: RW 12094 */ 12095 MLXSW_ITEM32(reg, tidem, trap_en, 0x08, 28, 4); 12096 12097 /* reg_tidem_trap_id 12098 * Trap ID. Either DECAP_ECN0 or DECAP_ECN1. 12099 * Reserved when trap_en is '0'. 12100 * Access: RW 12101 */ 12102 MLXSW_ITEM32(reg, tidem, trap_id, 0x08, 0, 9); 12103 12104 static inline void mlxsw_reg_tidem_pack(char *payload, u8 underlay_ecn, 12105 u8 overlay_ecn, u8 eip_ecn, 12106 bool trap_en, u16 trap_id) 12107 { 12108 MLXSW_REG_ZERO(tidem, payload); 12109 mlxsw_reg_tidem_underlay_ecn_set(payload, underlay_ecn); 12110 mlxsw_reg_tidem_overlay_ecn_set(payload, overlay_ecn); 12111 mlxsw_reg_tidem_eip_ecn_set(payload, eip_ecn); 12112 mlxsw_reg_tidem_trap_en_set(payload, trap_en); 12113 mlxsw_reg_tidem_trap_id_set(payload, trap_id); 12114 } 12115 12116 /* SBPR - Shared Buffer Pools Register 12117 * ----------------------------------- 12118 * The SBPR configures and retrieves the shared buffer pools and configuration. 12119 */ 12120 #define MLXSW_REG_SBPR_ID 0xB001 12121 #define MLXSW_REG_SBPR_LEN 0x14 12122 12123 MLXSW_REG_DEFINE(sbpr, MLXSW_REG_SBPR_ID, MLXSW_REG_SBPR_LEN); 12124 12125 /* shared direstion enum for SBPR, SBCM, SBPM */ 12126 enum mlxsw_reg_sbxx_dir { 12127 MLXSW_REG_SBXX_DIR_INGRESS, 12128 MLXSW_REG_SBXX_DIR_EGRESS, 12129 }; 12130 12131 /* reg_sbpr_dir 12132 * Direction. 12133 * Access: Index 12134 */ 12135 MLXSW_ITEM32(reg, sbpr, dir, 0x00, 24, 2); 12136 12137 /* reg_sbpr_pool 12138 * Pool index. 12139 * Access: Index 12140 */ 12141 MLXSW_ITEM32(reg, sbpr, pool, 0x00, 0, 4); 12142 12143 /* reg_sbpr_infi_size 12144 * Size is infinite. 12145 * Access: RW 12146 */ 12147 MLXSW_ITEM32(reg, sbpr, infi_size, 0x04, 31, 1); 12148 12149 /* reg_sbpr_size 12150 * Pool size in buffer cells. 12151 * Reserved when infi_size = 1. 12152 * Access: RW 12153 */ 12154 MLXSW_ITEM32(reg, sbpr, size, 0x04, 0, 24); 12155 12156 enum mlxsw_reg_sbpr_mode { 12157 MLXSW_REG_SBPR_MODE_STATIC, 12158 MLXSW_REG_SBPR_MODE_DYNAMIC, 12159 }; 12160 12161 /* reg_sbpr_mode 12162 * Pool quota calculation mode. 12163 * Access: RW 12164 */ 12165 MLXSW_ITEM32(reg, sbpr, mode, 0x08, 0, 4); 12166 12167 static inline void mlxsw_reg_sbpr_pack(char *payload, u8 pool, 12168 enum mlxsw_reg_sbxx_dir dir, 12169 enum mlxsw_reg_sbpr_mode mode, u32 size, 12170 bool infi_size) 12171 { 12172 MLXSW_REG_ZERO(sbpr, payload); 12173 mlxsw_reg_sbpr_pool_set(payload, pool); 12174 mlxsw_reg_sbpr_dir_set(payload, dir); 12175 mlxsw_reg_sbpr_mode_set(payload, mode); 12176 mlxsw_reg_sbpr_size_set(payload, size); 12177 mlxsw_reg_sbpr_infi_size_set(payload, infi_size); 12178 } 12179 12180 /* SBCM - Shared Buffer Class Management Register 12181 * ---------------------------------------------- 12182 * The SBCM register configures and retrieves the shared buffer allocation 12183 * and configuration according to Port-PG, including the binding to pool 12184 * and definition of the associated quota. 12185 */ 12186 #define MLXSW_REG_SBCM_ID 0xB002 12187 #define MLXSW_REG_SBCM_LEN 0x28 12188 12189 MLXSW_REG_DEFINE(sbcm, MLXSW_REG_SBCM_ID, MLXSW_REG_SBCM_LEN); 12190 12191 /* reg_sbcm_local_port 12192 * Local port number. 12193 * For Ingress: excludes CPU port and Router port 12194 * For Egress: excludes IP Router 12195 * Access: Index 12196 */ 12197 MLXSW_ITEM32_LP(reg, sbcm, 0x00, 16, 0x00, 4); 12198 12199 /* reg_sbcm_pg_buff 12200 * PG buffer - Port PG (dir=ingress) / traffic class (dir=egress) 12201 * For PG buffer: range is 0..cap_max_pg_buffers - 1 12202 * For traffic class: range is 0..cap_max_tclass - 1 12203 * Note that when traffic class is in MC aware mode then the traffic 12204 * classes which are MC aware cannot be configured. 12205 * Access: Index 12206 */ 12207 MLXSW_ITEM32(reg, sbcm, pg_buff, 0x00, 8, 6); 12208 12209 /* reg_sbcm_dir 12210 * Direction. 12211 * Access: Index 12212 */ 12213 MLXSW_ITEM32(reg, sbcm, dir, 0x00, 0, 2); 12214 12215 /* reg_sbcm_min_buff 12216 * Minimum buffer size for the limiter, in cells. 12217 * Access: RW 12218 */ 12219 MLXSW_ITEM32(reg, sbcm, min_buff, 0x18, 0, 24); 12220 12221 /* shared max_buff limits for dynamic threshold for SBCM, SBPM */ 12222 #define MLXSW_REG_SBXX_DYN_MAX_BUFF_MIN 1 12223 #define MLXSW_REG_SBXX_DYN_MAX_BUFF_MAX 14 12224 12225 /* reg_sbcm_infi_max 12226 * Max buffer is infinite. 12227 * Access: RW 12228 */ 12229 MLXSW_ITEM32(reg, sbcm, infi_max, 0x1C, 31, 1); 12230 12231 /* reg_sbcm_max_buff 12232 * When the pool associated to the port-pg/tclass is configured to 12233 * static, Maximum buffer size for the limiter configured in cells. 12234 * When the pool associated to the port-pg/tclass is configured to 12235 * dynamic, the max_buff holds the "alpha" parameter, supporting 12236 * the following values: 12237 * 0: 0 12238 * i: (1/128)*2^(i-1), for i=1..14 12239 * 0xFF: Infinity 12240 * Reserved when infi_max = 1. 12241 * Access: RW 12242 */ 12243 MLXSW_ITEM32(reg, sbcm, max_buff, 0x1C, 0, 24); 12244 12245 /* reg_sbcm_pool 12246 * Association of the port-priority to a pool. 12247 * Access: RW 12248 */ 12249 MLXSW_ITEM32(reg, sbcm, pool, 0x24, 0, 4); 12250 12251 static inline void mlxsw_reg_sbcm_pack(char *payload, u16 local_port, u8 pg_buff, 12252 enum mlxsw_reg_sbxx_dir dir, 12253 u32 min_buff, u32 max_buff, 12254 bool infi_max, u8 pool) 12255 { 12256 MLXSW_REG_ZERO(sbcm, payload); 12257 mlxsw_reg_sbcm_local_port_set(payload, local_port); 12258 mlxsw_reg_sbcm_pg_buff_set(payload, pg_buff); 12259 mlxsw_reg_sbcm_dir_set(payload, dir); 12260 mlxsw_reg_sbcm_min_buff_set(payload, min_buff); 12261 mlxsw_reg_sbcm_max_buff_set(payload, max_buff); 12262 mlxsw_reg_sbcm_infi_max_set(payload, infi_max); 12263 mlxsw_reg_sbcm_pool_set(payload, pool); 12264 } 12265 12266 /* SBPM - Shared Buffer Port Management Register 12267 * --------------------------------------------- 12268 * The SBPM register configures and retrieves the shared buffer allocation 12269 * and configuration according to Port-Pool, including the definition 12270 * of the associated quota. 12271 */ 12272 #define MLXSW_REG_SBPM_ID 0xB003 12273 #define MLXSW_REG_SBPM_LEN 0x28 12274 12275 MLXSW_REG_DEFINE(sbpm, MLXSW_REG_SBPM_ID, MLXSW_REG_SBPM_LEN); 12276 12277 /* reg_sbpm_local_port 12278 * Local port number. 12279 * For Ingress: excludes CPU port and Router port 12280 * For Egress: excludes IP Router 12281 * Access: Index 12282 */ 12283 MLXSW_ITEM32_LP(reg, sbpm, 0x00, 16, 0x00, 12); 12284 12285 /* reg_sbpm_pool 12286 * The pool associated to quota counting on the local_port. 12287 * Access: Index 12288 */ 12289 MLXSW_ITEM32(reg, sbpm, pool, 0x00, 8, 4); 12290 12291 /* reg_sbpm_dir 12292 * Direction. 12293 * Access: Index 12294 */ 12295 MLXSW_ITEM32(reg, sbpm, dir, 0x00, 0, 2); 12296 12297 /* reg_sbpm_buff_occupancy 12298 * Current buffer occupancy in cells. 12299 * Access: RO 12300 */ 12301 MLXSW_ITEM32(reg, sbpm, buff_occupancy, 0x10, 0, 24); 12302 12303 /* reg_sbpm_clr 12304 * Clear Max Buffer Occupancy 12305 * When this bit is set, max_buff_occupancy field is cleared (and a 12306 * new max value is tracked from the time the clear was performed). 12307 * Access: OP 12308 */ 12309 MLXSW_ITEM32(reg, sbpm, clr, 0x14, 31, 1); 12310 12311 /* reg_sbpm_max_buff_occupancy 12312 * Maximum value of buffer occupancy in cells monitored. Cleared by 12313 * writing to the clr field. 12314 * Access: RO 12315 */ 12316 MLXSW_ITEM32(reg, sbpm, max_buff_occupancy, 0x14, 0, 24); 12317 12318 /* reg_sbpm_min_buff 12319 * Minimum buffer size for the limiter, in cells. 12320 * Access: RW 12321 */ 12322 MLXSW_ITEM32(reg, sbpm, min_buff, 0x18, 0, 24); 12323 12324 /* reg_sbpm_max_buff 12325 * When the pool associated to the port-pg/tclass is configured to 12326 * static, Maximum buffer size for the limiter configured in cells. 12327 * When the pool associated to the port-pg/tclass is configured to 12328 * dynamic, the max_buff holds the "alpha" parameter, supporting 12329 * the following values: 12330 * 0: 0 12331 * i: (1/128)*2^(i-1), for i=1..14 12332 * 0xFF: Infinity 12333 * Access: RW 12334 */ 12335 MLXSW_ITEM32(reg, sbpm, max_buff, 0x1C, 0, 24); 12336 12337 static inline void mlxsw_reg_sbpm_pack(char *payload, u16 local_port, u8 pool, 12338 enum mlxsw_reg_sbxx_dir dir, bool clr, 12339 u32 min_buff, u32 max_buff) 12340 { 12341 MLXSW_REG_ZERO(sbpm, payload); 12342 mlxsw_reg_sbpm_local_port_set(payload, local_port); 12343 mlxsw_reg_sbpm_pool_set(payload, pool); 12344 mlxsw_reg_sbpm_dir_set(payload, dir); 12345 mlxsw_reg_sbpm_clr_set(payload, clr); 12346 mlxsw_reg_sbpm_min_buff_set(payload, min_buff); 12347 mlxsw_reg_sbpm_max_buff_set(payload, max_buff); 12348 } 12349 12350 static inline void mlxsw_reg_sbpm_unpack(char *payload, u32 *p_buff_occupancy, 12351 u32 *p_max_buff_occupancy) 12352 { 12353 *p_buff_occupancy = mlxsw_reg_sbpm_buff_occupancy_get(payload); 12354 *p_max_buff_occupancy = mlxsw_reg_sbpm_max_buff_occupancy_get(payload); 12355 } 12356 12357 /* SBMM - Shared Buffer Multicast Management Register 12358 * -------------------------------------------------- 12359 * The SBMM register configures and retrieves the shared buffer allocation 12360 * and configuration for MC packets according to Switch-Priority, including 12361 * the binding to pool and definition of the associated quota. 12362 */ 12363 #define MLXSW_REG_SBMM_ID 0xB004 12364 #define MLXSW_REG_SBMM_LEN 0x28 12365 12366 MLXSW_REG_DEFINE(sbmm, MLXSW_REG_SBMM_ID, MLXSW_REG_SBMM_LEN); 12367 12368 /* reg_sbmm_prio 12369 * Switch Priority. 12370 * Access: Index 12371 */ 12372 MLXSW_ITEM32(reg, sbmm, prio, 0x00, 8, 4); 12373 12374 /* reg_sbmm_min_buff 12375 * Minimum buffer size for the limiter, in cells. 12376 * Access: RW 12377 */ 12378 MLXSW_ITEM32(reg, sbmm, min_buff, 0x18, 0, 24); 12379 12380 /* reg_sbmm_max_buff 12381 * When the pool associated to the port-pg/tclass is configured to 12382 * static, Maximum buffer size for the limiter configured in cells. 12383 * When the pool associated to the port-pg/tclass is configured to 12384 * dynamic, the max_buff holds the "alpha" parameter, supporting 12385 * the following values: 12386 * 0: 0 12387 * i: (1/128)*2^(i-1), for i=1..14 12388 * 0xFF: Infinity 12389 * Access: RW 12390 */ 12391 MLXSW_ITEM32(reg, sbmm, max_buff, 0x1C, 0, 24); 12392 12393 /* reg_sbmm_pool 12394 * Association of the port-priority to a pool. 12395 * Access: RW 12396 */ 12397 MLXSW_ITEM32(reg, sbmm, pool, 0x24, 0, 4); 12398 12399 static inline void mlxsw_reg_sbmm_pack(char *payload, u8 prio, u32 min_buff, 12400 u32 max_buff, u8 pool) 12401 { 12402 MLXSW_REG_ZERO(sbmm, payload); 12403 mlxsw_reg_sbmm_prio_set(payload, prio); 12404 mlxsw_reg_sbmm_min_buff_set(payload, min_buff); 12405 mlxsw_reg_sbmm_max_buff_set(payload, max_buff); 12406 mlxsw_reg_sbmm_pool_set(payload, pool); 12407 } 12408 12409 /* SBSR - Shared Buffer Status Register 12410 * ------------------------------------ 12411 * The SBSR register retrieves the shared buffer occupancy according to 12412 * Port-Pool. Note that this register enables reading a large amount of data. 12413 * It is the user's responsibility to limit the amount of data to ensure the 12414 * response can match the maximum transfer unit. In case the response exceeds 12415 * the maximum transport unit, it will be truncated with no special notice. 12416 */ 12417 #define MLXSW_REG_SBSR_ID 0xB005 12418 #define MLXSW_REG_SBSR_BASE_LEN 0x5C /* base length, without records */ 12419 #define MLXSW_REG_SBSR_REC_LEN 0x8 /* record length */ 12420 #define MLXSW_REG_SBSR_REC_MAX_COUNT 120 12421 #define MLXSW_REG_SBSR_LEN (MLXSW_REG_SBSR_BASE_LEN + \ 12422 MLXSW_REG_SBSR_REC_LEN * \ 12423 MLXSW_REG_SBSR_REC_MAX_COUNT) 12424 12425 MLXSW_REG_DEFINE(sbsr, MLXSW_REG_SBSR_ID, MLXSW_REG_SBSR_LEN); 12426 12427 /* reg_sbsr_clr 12428 * Clear Max Buffer Occupancy. When this bit is set, the max_buff_occupancy 12429 * field is cleared (and a new max value is tracked from the time the clear 12430 * was performed). 12431 * Access: OP 12432 */ 12433 MLXSW_ITEM32(reg, sbsr, clr, 0x00, 31, 1); 12434 12435 #define MLXSW_REG_SBSR_NUM_PORTS_IN_PAGE 256 12436 12437 /* reg_sbsr_port_page 12438 * Determines the range of the ports specified in the 'ingress_port_mask' 12439 * and 'egress_port_mask' bit masks. 12440 * {ingress,egress}_port_mask[x] is (256 * port_page) + x 12441 * Access: Index 12442 */ 12443 MLXSW_ITEM32(reg, sbsr, port_page, 0x04, 0, 4); 12444 12445 /* reg_sbsr_ingress_port_mask 12446 * Bit vector for all ingress network ports. 12447 * Indicates which of the ports (for which the relevant bit is set) 12448 * are affected by the set operation. Configuration of any other port 12449 * does not change. 12450 * Access: Index 12451 */ 12452 MLXSW_ITEM_BIT_ARRAY(reg, sbsr, ingress_port_mask, 0x10, 0x20, 1); 12453 12454 /* reg_sbsr_pg_buff_mask 12455 * Bit vector for all switch priority groups. 12456 * Indicates which of the priorities (for which the relevant bit is set) 12457 * are affected by the set operation. Configuration of any other priority 12458 * does not change. 12459 * Range is 0..cap_max_pg_buffers - 1 12460 * Access: Index 12461 */ 12462 MLXSW_ITEM_BIT_ARRAY(reg, sbsr, pg_buff_mask, 0x30, 0x4, 1); 12463 12464 /* reg_sbsr_egress_port_mask 12465 * Bit vector for all egress network ports. 12466 * Indicates which of the ports (for which the relevant bit is set) 12467 * are affected by the set operation. Configuration of any other port 12468 * does not change. 12469 * Access: Index 12470 */ 12471 MLXSW_ITEM_BIT_ARRAY(reg, sbsr, egress_port_mask, 0x34, 0x20, 1); 12472 12473 /* reg_sbsr_tclass_mask 12474 * Bit vector for all traffic classes. 12475 * Indicates which of the traffic classes (for which the relevant bit is 12476 * set) are affected by the set operation. Configuration of any other 12477 * traffic class does not change. 12478 * Range is 0..cap_max_tclass - 1 12479 * Access: Index 12480 */ 12481 MLXSW_ITEM_BIT_ARRAY(reg, sbsr, tclass_mask, 0x54, 0x8, 1); 12482 12483 static inline void mlxsw_reg_sbsr_pack(char *payload, bool clr) 12484 { 12485 MLXSW_REG_ZERO(sbsr, payload); 12486 mlxsw_reg_sbsr_clr_set(payload, clr); 12487 } 12488 12489 /* reg_sbsr_rec_buff_occupancy 12490 * Current buffer occupancy in cells. 12491 * Access: RO 12492 */ 12493 MLXSW_ITEM32_INDEXED(reg, sbsr, rec_buff_occupancy, MLXSW_REG_SBSR_BASE_LEN, 12494 0, 24, MLXSW_REG_SBSR_REC_LEN, 0x00, false); 12495 12496 /* reg_sbsr_rec_max_buff_occupancy 12497 * Maximum value of buffer occupancy in cells monitored. Cleared by 12498 * writing to the clr field. 12499 * Access: RO 12500 */ 12501 MLXSW_ITEM32_INDEXED(reg, sbsr, rec_max_buff_occupancy, MLXSW_REG_SBSR_BASE_LEN, 12502 0, 24, MLXSW_REG_SBSR_REC_LEN, 0x04, false); 12503 12504 static inline void mlxsw_reg_sbsr_rec_unpack(char *payload, int rec_index, 12505 u32 *p_buff_occupancy, 12506 u32 *p_max_buff_occupancy) 12507 { 12508 *p_buff_occupancy = 12509 mlxsw_reg_sbsr_rec_buff_occupancy_get(payload, rec_index); 12510 *p_max_buff_occupancy = 12511 mlxsw_reg_sbsr_rec_max_buff_occupancy_get(payload, rec_index); 12512 } 12513 12514 /* SBIB - Shared Buffer Internal Buffer Register 12515 * --------------------------------------------- 12516 * The SBIB register configures per port buffers for internal use. The internal 12517 * buffers consume memory on the port buffers (note that the port buffers are 12518 * used also by PBMC). 12519 * 12520 * For Spectrum this is used for egress mirroring. 12521 */ 12522 #define MLXSW_REG_SBIB_ID 0xB006 12523 #define MLXSW_REG_SBIB_LEN 0x10 12524 12525 MLXSW_REG_DEFINE(sbib, MLXSW_REG_SBIB_ID, MLXSW_REG_SBIB_LEN); 12526 12527 /* reg_sbib_local_port 12528 * Local port number 12529 * Not supported for CPU port and router port 12530 * Access: Index 12531 */ 12532 MLXSW_ITEM32_LP(reg, sbib, 0x00, 16, 0x00, 12); 12533 12534 /* reg_sbib_buff_size 12535 * Units represented in cells 12536 * Allowed range is 0 to (cap_max_headroom_size - 1) 12537 * Default is 0 12538 * Access: RW 12539 */ 12540 MLXSW_ITEM32(reg, sbib, buff_size, 0x08, 0, 24); 12541 12542 static inline void mlxsw_reg_sbib_pack(char *payload, u16 local_port, 12543 u32 buff_size) 12544 { 12545 MLXSW_REG_ZERO(sbib, payload); 12546 mlxsw_reg_sbib_local_port_set(payload, local_port); 12547 mlxsw_reg_sbib_buff_size_set(payload, buff_size); 12548 } 12549 12550 static const struct mlxsw_reg_info *mlxsw_reg_infos[] = { 12551 MLXSW_REG(sgcr), 12552 MLXSW_REG(spad), 12553 MLXSW_REG(sspr), 12554 MLXSW_REG(sfdat), 12555 MLXSW_REG(sfd), 12556 MLXSW_REG(sfn), 12557 MLXSW_REG(spms), 12558 MLXSW_REG(spvid), 12559 MLXSW_REG(spvm), 12560 MLXSW_REG(spaft), 12561 MLXSW_REG(sfgc), 12562 MLXSW_REG(sfdf), 12563 MLXSW_REG(sldr), 12564 MLXSW_REG(slcr), 12565 MLXSW_REG(slcor), 12566 MLXSW_REG(spmlr), 12567 MLXSW_REG(svfa), 12568 MLXSW_REG(spvtr), 12569 MLXSW_REG(svpe), 12570 MLXSW_REG(sfmr), 12571 MLXSW_REG(spvmlr), 12572 MLXSW_REG(spvc), 12573 MLXSW_REG(spevet), 12574 MLXSW_REG(sftr2), 12575 MLXSW_REG(smid2), 12576 MLXSW_REG(cwtp), 12577 MLXSW_REG(cwtpm), 12578 MLXSW_REG(pgcr), 12579 MLXSW_REG(ppbt), 12580 MLXSW_REG(pacl), 12581 MLXSW_REG(pagt), 12582 MLXSW_REG(ptar), 12583 MLXSW_REG(ppbs), 12584 MLXSW_REG(prcr), 12585 MLXSW_REG(pefa), 12586 MLXSW_REG(pemrbt), 12587 MLXSW_REG(ptce2), 12588 MLXSW_REG(perpt), 12589 MLXSW_REG(peabfe), 12590 MLXSW_REG(perar), 12591 MLXSW_REG(ptce3), 12592 MLXSW_REG(percr), 12593 MLXSW_REG(pererp), 12594 MLXSW_REG(iedr), 12595 MLXSW_REG(qpts), 12596 MLXSW_REG(qpcr), 12597 MLXSW_REG(qtct), 12598 MLXSW_REG(qeec), 12599 MLXSW_REG(qrwe), 12600 MLXSW_REG(qpdsm), 12601 MLXSW_REG(qpdp), 12602 MLXSW_REG(qpdpm), 12603 MLXSW_REG(qtctm), 12604 MLXSW_REG(qpsc), 12605 MLXSW_REG(pmlp), 12606 MLXSW_REG(pmtu), 12607 MLXSW_REG(ptys), 12608 MLXSW_REG(ppad), 12609 MLXSW_REG(paos), 12610 MLXSW_REG(pfcc), 12611 MLXSW_REG(ppcnt), 12612 MLXSW_REG(plib), 12613 MLXSW_REG(pptb), 12614 MLXSW_REG(pbmc), 12615 MLXSW_REG(pspa), 12616 MLXSW_REG(pmaos), 12617 MLXSW_REG(pplr), 12618 MLXSW_REG(pmtdb), 12619 MLXSW_REG(pmpe), 12620 MLXSW_REG(pddr), 12621 MLXSW_REG(pmmp), 12622 MLXSW_REG(pllp), 12623 MLXSW_REG(pmtm), 12624 MLXSW_REG(htgt), 12625 MLXSW_REG(hpkt), 12626 MLXSW_REG(rgcr), 12627 MLXSW_REG(ritr), 12628 MLXSW_REG(rtar), 12629 MLXSW_REG(ratr), 12630 MLXSW_REG(rtdp), 12631 MLXSW_REG(rips), 12632 MLXSW_REG(ratrad), 12633 MLXSW_REG(rdpm), 12634 MLXSW_REG(ricnt), 12635 MLXSW_REG(rrcr), 12636 MLXSW_REG(ralta), 12637 MLXSW_REG(ralst), 12638 MLXSW_REG(raltb), 12639 MLXSW_REG(ralue), 12640 MLXSW_REG(rauht), 12641 MLXSW_REG(raleu), 12642 MLXSW_REG(rauhtd), 12643 MLXSW_REG(rigr2), 12644 MLXSW_REG(recr2), 12645 MLXSW_REG(rmft2), 12646 MLXSW_REG(rxlte), 12647 MLXSW_REG(rxltm), 12648 MLXSW_REG(rlcmld), 12649 MLXSW_REG(rlpmce), 12650 MLXSW_REG(xltq), 12651 MLXSW_REG(xmdr), 12652 MLXSW_REG(xrmt), 12653 MLXSW_REG(xralta), 12654 MLXSW_REG(xralst), 12655 MLXSW_REG(xraltb), 12656 MLXSW_REG(mfcr), 12657 MLXSW_REG(mfsc), 12658 MLXSW_REG(mfsm), 12659 MLXSW_REG(mfsl), 12660 MLXSW_REG(fore), 12661 MLXSW_REG(mtcap), 12662 MLXSW_REG(mtmp), 12663 MLXSW_REG(mtwe), 12664 MLXSW_REG(mtbr), 12665 MLXSW_REG(mcia), 12666 MLXSW_REG(mpat), 12667 MLXSW_REG(mpar), 12668 MLXSW_REG(mgir), 12669 MLXSW_REG(mrsr), 12670 MLXSW_REG(mlcr), 12671 MLXSW_REG(mcion), 12672 MLXSW_REG(mtpps), 12673 MLXSW_REG(mtutc), 12674 MLXSW_REG(mpsc), 12675 MLXSW_REG(mcqi), 12676 MLXSW_REG(mcc), 12677 MLXSW_REG(mcda), 12678 MLXSW_REG(mgpc), 12679 MLXSW_REG(mprs), 12680 MLXSW_REG(mogcr), 12681 MLXSW_REG(mpagr), 12682 MLXSW_REG(momte), 12683 MLXSW_REG(mtpppc), 12684 MLXSW_REG(mtpptr), 12685 MLXSW_REG(mtptpt), 12686 MLXSW_REG(mfgd), 12687 MLXSW_REG(mgpir), 12688 MLXSW_REG(mfde), 12689 MLXSW_REG(tngcr), 12690 MLXSW_REG(tnumt), 12691 MLXSW_REG(tnqcr), 12692 MLXSW_REG(tnqdr), 12693 MLXSW_REG(tneem), 12694 MLXSW_REG(tndem), 12695 MLXSW_REG(tnpc), 12696 MLXSW_REG(tigcr), 12697 MLXSW_REG(tieem), 12698 MLXSW_REG(tidem), 12699 MLXSW_REG(sbpr), 12700 MLXSW_REG(sbcm), 12701 MLXSW_REG(sbpm), 12702 MLXSW_REG(sbmm), 12703 MLXSW_REG(sbsr), 12704 MLXSW_REG(sbib), 12705 }; 12706 12707 static inline const char *mlxsw_reg_id_str(u16 reg_id) 12708 { 12709 const struct mlxsw_reg_info *reg_info; 12710 int i; 12711 12712 for (i = 0; i < ARRAY_SIZE(mlxsw_reg_infos); i++) { 12713 reg_info = mlxsw_reg_infos[i]; 12714 if (reg_info->id == reg_id) 12715 return reg_info->name; 12716 } 12717 return "*UNKNOWN*"; 12718 } 12719 12720 /* PUDE - Port Up / Down Event 12721 * --------------------------- 12722 * Reports the operational state change of a port. 12723 */ 12724 #define MLXSW_REG_PUDE_LEN 0x10 12725 12726 /* reg_pude_swid 12727 * Switch partition ID with which to associate the port. 12728 * Access: Index 12729 */ 12730 MLXSW_ITEM32(reg, pude, swid, 0x00, 24, 8); 12731 12732 /* reg_pude_local_port 12733 * Local port number. 12734 * Access: Index 12735 */ 12736 MLXSW_ITEM32_LP(reg, pude, 0x00, 16, 0x00, 12); 12737 12738 /* reg_pude_admin_status 12739 * Port administrative state (the desired state). 12740 * 1 - Up. 12741 * 2 - Down. 12742 * 3 - Up once. This means that in case of link failure, the port won't go 12743 * into polling mode, but will wait to be re-enabled by software. 12744 * 4 - Disabled by system. Can only be set by hardware. 12745 * Access: RO 12746 */ 12747 MLXSW_ITEM32(reg, pude, admin_status, 0x00, 8, 4); 12748 12749 /* reg_pude_oper_status 12750 * Port operatioanl state. 12751 * 1 - Up. 12752 * 2 - Down. 12753 * 3 - Down by port failure. This means that the device will not let the 12754 * port up again until explicitly specified by software. 12755 * Access: RO 12756 */ 12757 MLXSW_ITEM32(reg, pude, oper_status, 0x00, 0, 4); 12758 12759 #endif 12760