linux/drivers/net/ethernet/mellanox/mlxsw/reg.h
<<
>>
Prefs
   1/*
   2 * drivers/net/ethernet/mellanox/mlxsw/reg.h
   3 * Copyright (c) 2015-2017 Mellanox Technologies. All rights reserved.
   4 * Copyright (c) 2015-2016 Ido Schimmel <idosch@mellanox.com>
   5 * Copyright (c) 2015 Elad Raz <eladr@mellanox.com>
   6 * Copyright (c) 2015-2017 Jiri Pirko <jiri@mellanox.com>
   7 * Copyright (c) 2016 Yotam Gigi <yotamg@mellanox.com>
   8 * Copyright (c) 2017 Petr Machata <petrm@mellanox.com>
   9 *
  10 * Redistribution and use in source and binary forms, with or without
  11 * modification, are permitted provided that the following conditions are met:
  12 *
  13 * 1. Redistributions of source code must retain the above copyright
  14 *    notice, this list of conditions and the following disclaimer.
  15 * 2. Redistributions in binary form must reproduce the above copyright
  16 *    notice, this list of conditions and the following disclaimer in the
  17 *    documentation and/or other materials provided with the distribution.
  18 * 3. Neither the names of the copyright holders nor the names of its
  19 *    contributors may be used to endorse or promote products derived from
  20 *    this software without specific prior written permission.
  21 *
  22 * Alternatively, this software may be distributed under the terms of the
  23 * GNU General Public License ("GPL") version 2 as published by the Free
  24 * Software Foundation.
  25 *
  26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  27 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  29 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  30 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  36 * POSSIBILITY OF SUCH DAMAGE.
  37 */
  38
  39#ifndef _MLXSW_REG_H
  40#define _MLXSW_REG_H
  41
  42#include <linux/string.h>
  43#include <linux/bitops.h>
  44#include <linux/if_vlan.h>
  45
  46#include "item.h"
  47#include "port.h"
  48
  49struct mlxsw_reg_info {
  50        u16 id;
  51        u16 len; /* In u8 */
  52        const char *name;
  53};
  54
  55#define MLXSW_REG_DEFINE(_name, _id, _len)                              \
  56static const struct mlxsw_reg_info mlxsw_reg_##_name = {                \
  57        .id = _id,                                                      \
  58        .len = _len,                                                    \
  59        .name = #_name,                                                 \
  60}
  61
  62#define MLXSW_REG(type) (&mlxsw_reg_##type)
  63#define MLXSW_REG_LEN(type) MLXSW_REG(type)->len
  64#define MLXSW_REG_ZERO(type, payload) memset(payload, 0, MLXSW_REG(type)->len)
  65
  66/* SGCR - Switch General Configuration Register
  67 * --------------------------------------------
  68 * This register is used for configuration of the switch capabilities.
  69 */
  70#define MLXSW_REG_SGCR_ID 0x2000
  71#define MLXSW_REG_SGCR_LEN 0x10
  72
  73MLXSW_REG_DEFINE(sgcr, MLXSW_REG_SGCR_ID, MLXSW_REG_SGCR_LEN);
  74
  75/* reg_sgcr_llb
  76 * Link Local Broadcast (Default=0)
  77 * When set, all Link Local packets (224.0.0.X) will be treated as broadcast
  78 * packets and ignore the IGMP snooping entries.
  79 * Access: RW
  80 */
  81MLXSW_ITEM32(reg, sgcr, llb, 0x04, 0, 1);
  82
  83static inline void mlxsw_reg_sgcr_pack(char *payload, bool llb)
  84{
  85        MLXSW_REG_ZERO(sgcr, payload);
  86        mlxsw_reg_sgcr_llb_set(payload, !!llb);
  87}
  88
  89/* SPAD - Switch Physical Address Register
  90 * ---------------------------------------
  91 * The SPAD register configures the switch physical MAC address.
  92 */
  93#define MLXSW_REG_SPAD_ID 0x2002
  94#define MLXSW_REG_SPAD_LEN 0x10
  95
  96MLXSW_REG_DEFINE(spad, MLXSW_REG_SPAD_ID, MLXSW_REG_SPAD_LEN);
  97
  98/* reg_spad_base_mac
  99 * Base MAC address for the switch partitions.
 100 * Per switch partition MAC address is equal to:
 101 * base_mac + swid
 102 * Access: RW
 103 */
 104MLXSW_ITEM_BUF(reg, spad, base_mac, 0x02, 6);
 105
 106/* SMID - Switch Multicast ID
 107 * --------------------------
 108 * The MID record maps from a MID (Multicast ID), which is a unique identifier
 109 * of the multicast group within the stacking domain, into a list of local
 110 * ports into which the packet is replicated.
 111 */
 112#define MLXSW_REG_SMID_ID 0x2007
 113#define MLXSW_REG_SMID_LEN 0x240
 114
 115MLXSW_REG_DEFINE(smid, MLXSW_REG_SMID_ID, MLXSW_REG_SMID_LEN);
 116
 117/* reg_smid_swid
 118 * Switch partition ID.
 119 * Access: Index
 120 */
 121MLXSW_ITEM32(reg, smid, swid, 0x00, 24, 8);
 122
 123/* reg_smid_mid
 124 * Multicast identifier - global identifier that represents the multicast group
 125 * across all devices.
 126 * Access: Index
 127 */
 128MLXSW_ITEM32(reg, smid, mid, 0x00, 0, 16);
 129
 130/* reg_smid_port
 131 * Local port memebership (1 bit per port).
 132 * Access: RW
 133 */
 134MLXSW_ITEM_BIT_ARRAY(reg, smid, port, 0x20, 0x20, 1);
 135
 136/* reg_smid_port_mask
 137 * Local port mask (1 bit per port).
 138 * Access: W
 139 */
 140MLXSW_ITEM_BIT_ARRAY(reg, smid, port_mask, 0x220, 0x20, 1);
 141
 142static inline void mlxsw_reg_smid_pack(char *payload, u16 mid,
 143                                       u8 port, bool set)
 144{
 145        MLXSW_REG_ZERO(smid, payload);
 146        mlxsw_reg_smid_swid_set(payload, 0);
 147        mlxsw_reg_smid_mid_set(payload, mid);
 148        mlxsw_reg_smid_port_set(payload, port, set);
 149        mlxsw_reg_smid_port_mask_set(payload, port, 1);
 150}
 151
 152/* SSPR - Switch System Port Record Register
 153 * -----------------------------------------
 154 * Configures the system port to local port mapping.
 155 */
 156#define MLXSW_REG_SSPR_ID 0x2008
 157#define MLXSW_REG_SSPR_LEN 0x8
 158
 159MLXSW_REG_DEFINE(sspr, MLXSW_REG_SSPR_ID, MLXSW_REG_SSPR_LEN);
 160
 161/* reg_sspr_m
 162 * Master - if set, then the record describes the master system port.
 163 * This is needed in case a local port is mapped into several system ports
 164 * (for multipathing). That number will be reported as the source system
 165 * port when packets are forwarded to the CPU. Only one master port is allowed
 166 * per local port.
 167 *
 168 * Note: Must be set for Spectrum.
 169 * Access: RW
 170 */
 171MLXSW_ITEM32(reg, sspr, m, 0x00, 31, 1);
 172
 173/* reg_sspr_local_port
 174 * Local port number.
 175 *
 176 * Access: RW
 177 */
 178MLXSW_ITEM32(reg, sspr, local_port, 0x00, 16, 8);
 179
 180/* reg_sspr_sub_port
 181 * Virtual port within the physical port.
 182 * Should be set to 0 when virtual ports are not enabled on the port.
 183 *
 184 * Access: RW
 185 */
 186MLXSW_ITEM32(reg, sspr, sub_port, 0x00, 8, 8);
 187
 188/* reg_sspr_system_port
 189 * Unique identifier within the stacking domain that represents all the ports
 190 * that are available in the system (external ports).
 191 *
 192 * Currently, only single-ASIC configurations are supported, so we default to
 193 * 1:1 mapping between system ports and local ports.
 194 * Access: Index
 195 */
 196MLXSW_ITEM32(reg, sspr, system_port, 0x04, 0, 16);
 197
 198static inline void mlxsw_reg_sspr_pack(char *payload, u8 local_port)
 199{
 200        MLXSW_REG_ZERO(sspr, payload);
 201        mlxsw_reg_sspr_m_set(payload, 1);
 202        mlxsw_reg_sspr_local_port_set(payload, local_port);
 203        mlxsw_reg_sspr_sub_port_set(payload, 0);
 204        mlxsw_reg_sspr_system_port_set(payload, local_port);
 205}
 206
 207/* SFDAT - Switch Filtering Database Aging Time
 208 * --------------------------------------------
 209 * Controls the Switch aging time. Aging time is able to be set per Switch
 210 * Partition.
 211 */
 212#define MLXSW_REG_SFDAT_ID 0x2009
 213#define MLXSW_REG_SFDAT_LEN 0x8
 214
 215MLXSW_REG_DEFINE(sfdat, MLXSW_REG_SFDAT_ID, MLXSW_REG_SFDAT_LEN);
 216
 217/* reg_sfdat_swid
 218 * Switch partition ID.
 219 * Access: Index
 220 */
 221MLXSW_ITEM32(reg, sfdat, swid, 0x00, 24, 8);
 222
 223/* reg_sfdat_age_time
 224 * Aging time in seconds
 225 * Min - 10 seconds
 226 * Max - 1,000,000 seconds
 227 * Default is 300 seconds.
 228 * Access: RW
 229 */
 230MLXSW_ITEM32(reg, sfdat, age_time, 0x04, 0, 20);
 231
 232static inline void mlxsw_reg_sfdat_pack(char *payload, u32 age_time)
 233{
 234        MLXSW_REG_ZERO(sfdat, payload);
 235        mlxsw_reg_sfdat_swid_set(payload, 0);
 236        mlxsw_reg_sfdat_age_time_set(payload, age_time);
 237}
 238
 239/* SFD - Switch Filtering Database
 240 * -------------------------------
 241 * The following register defines the access to the filtering database.
 242 * The register supports querying, adding, removing and modifying the database.
 243 * The access is optimized for bulk updates in which case more than one
 244 * FDB record is present in the same command.
 245 */
 246#define MLXSW_REG_SFD_ID 0x200A
 247#define MLXSW_REG_SFD_BASE_LEN 0x10 /* base length, without records */
 248#define MLXSW_REG_SFD_REC_LEN 0x10 /* record length */
 249#define MLXSW_REG_SFD_REC_MAX_COUNT 64
 250#define MLXSW_REG_SFD_LEN (MLXSW_REG_SFD_BASE_LEN +     \
 251                           MLXSW_REG_SFD_REC_LEN * MLXSW_REG_SFD_REC_MAX_COUNT)
 252
 253MLXSW_REG_DEFINE(sfd, MLXSW_REG_SFD_ID, MLXSW_REG_SFD_LEN);
 254
 255/* reg_sfd_swid
 256 * Switch partition ID for queries. Reserved on Write.
 257 * Access: Index
 258 */
 259MLXSW_ITEM32(reg, sfd, swid, 0x00, 24, 8);
 260
 261enum mlxsw_reg_sfd_op {
 262        /* Dump entire FDB a (process according to record_locator) */
 263        MLXSW_REG_SFD_OP_QUERY_DUMP = 0,
 264        /* Query records by {MAC, VID/FID} value */
 265        MLXSW_REG_SFD_OP_QUERY_QUERY = 1,
 266        /* Query and clear activity. Query records by {MAC, VID/FID} value */
 267        MLXSW_REG_SFD_OP_QUERY_QUERY_AND_CLEAR_ACTIVITY = 2,
 268        /* Test. Response indicates if each of the records could be
 269         * added to the FDB.
 270         */
 271        MLXSW_REG_SFD_OP_WRITE_TEST = 0,
 272        /* Add/modify. Aged-out records cannot be added. This command removes
 273         * the learning notification of the {MAC, VID/FID}. Response includes
 274         * the entries that were added to the FDB.
 275         */
 276        MLXSW_REG_SFD_OP_WRITE_EDIT = 1,
 277        /* Remove record by {MAC, VID/FID}. This command also removes
 278         * the learning notification and aged-out notifications
 279         * of the {MAC, VID/FID}. The response provides current (pre-removal)
 280         * entries as non-aged-out.
 281         */
 282        MLXSW_REG_SFD_OP_WRITE_REMOVE = 2,
 283        /* Remove learned notification by {MAC, VID/FID}. The response provides
 284         * the removed learning notification.
 285         */
 286        MLXSW_REG_SFD_OP_WRITE_REMOVE_NOTIFICATION = 2,
 287};
 288
 289/* reg_sfd_op
 290 * Operation.
 291 * Access: OP
 292 */
 293MLXSW_ITEM32(reg, sfd, op, 0x04, 30, 2);
 294
 295/* reg_sfd_record_locator
 296 * Used for querying the FDB. Use record_locator=0 to initiate the
 297 * query. When a record is returned, a new record_locator is
 298 * returned to be used in the subsequent query.
 299 * Reserved for database update.
 300 * Access: Index
 301 */
 302MLXSW_ITEM32(reg, sfd, record_locator, 0x04, 0, 30);
 303
 304/* reg_sfd_num_rec
 305 * Request: Number of records to read/add/modify/remove
 306 * Response: Number of records read/added/replaced/removed
 307 * See above description for more details.
 308 * Ranges 0..64
 309 * Access: RW
 310 */
 311MLXSW_ITEM32(reg, sfd, num_rec, 0x08, 0, 8);
 312
 313static inline void mlxsw_reg_sfd_pack(char *payload, enum mlxsw_reg_sfd_op op,
 314                                      u32 record_locator)
 315{
 316        MLXSW_REG_ZERO(sfd, payload);
 317        mlxsw_reg_sfd_op_set(payload, op);
 318        mlxsw_reg_sfd_record_locator_set(payload, record_locator);
 319}
 320
 321/* reg_sfd_rec_swid
 322 * Switch partition ID.
 323 * Access: Index
 324 */
 325MLXSW_ITEM32_INDEXED(reg, sfd, rec_swid, MLXSW_REG_SFD_BASE_LEN, 24, 8,
 326                     MLXSW_REG_SFD_REC_LEN, 0x00, false);
 327
 328enum mlxsw_reg_sfd_rec_type {
 329        MLXSW_REG_SFD_REC_TYPE_UNICAST = 0x0,
 330        MLXSW_REG_SFD_REC_TYPE_UNICAST_LAG = 0x1,
 331        MLXSW_REG_SFD_REC_TYPE_MULTICAST = 0x2,
 332};
 333
 334/* reg_sfd_rec_type
 335 * FDB record type.
 336 * Access: RW
 337 */
 338MLXSW_ITEM32_INDEXED(reg, sfd, rec_type, MLXSW_REG_SFD_BASE_LEN, 20, 4,
 339                     MLXSW_REG_SFD_REC_LEN, 0x00, false);
 340
 341enum mlxsw_reg_sfd_rec_policy {
 342        /* Replacement disabled, aging disabled. */
 343        MLXSW_REG_SFD_REC_POLICY_STATIC_ENTRY = 0,
 344        /* (mlag remote): Replacement enabled, aging disabled,
 345         * learning notification enabled on this port.
 346         */
 347        MLXSW_REG_SFD_REC_POLICY_DYNAMIC_ENTRY_MLAG = 1,
 348        /* (ingress device): Replacement enabled, aging enabled. */
 349        MLXSW_REG_SFD_REC_POLICY_DYNAMIC_ENTRY_INGRESS = 3,
 350};
 351
 352/* reg_sfd_rec_policy
 353 * Policy.
 354 * Access: RW
 355 */
 356MLXSW_ITEM32_INDEXED(reg, sfd, rec_policy, MLXSW_REG_SFD_BASE_LEN, 18, 2,
 357                     MLXSW_REG_SFD_REC_LEN, 0x00, false);
 358
 359/* reg_sfd_rec_a
 360 * Activity. Set for new static entries. Set for static entries if a frame SMAC
 361 * lookup hits on the entry.
 362 * To clear the a bit, use "query and clear activity" op.
 363 * Access: RO
 364 */
 365MLXSW_ITEM32_INDEXED(reg, sfd, rec_a, MLXSW_REG_SFD_BASE_LEN, 16, 1,
 366                     MLXSW_REG_SFD_REC_LEN, 0x00, false);
 367
 368/* reg_sfd_rec_mac
 369 * MAC address.
 370 * Access: Index
 371 */
 372MLXSW_ITEM_BUF_INDEXED(reg, sfd, rec_mac, MLXSW_REG_SFD_BASE_LEN, 6,
 373                       MLXSW_REG_SFD_REC_LEN, 0x02);
 374
 375enum mlxsw_reg_sfd_rec_action {
 376        /* forward */
 377        MLXSW_REG_SFD_REC_ACTION_NOP = 0,
 378        /* forward and trap, trap_id is FDB_TRAP */
 379        MLXSW_REG_SFD_REC_ACTION_MIRROR_TO_CPU = 1,
 380        /* trap and do not forward, trap_id is FDB_TRAP */
 381        MLXSW_REG_SFD_REC_ACTION_TRAP = 2,
 382        /* forward to IP router */
 383        MLXSW_REG_SFD_REC_ACTION_FORWARD_IP_ROUTER = 3,
 384        MLXSW_REG_SFD_REC_ACTION_DISCARD_ERROR = 15,
 385};
 386
 387/* reg_sfd_rec_action
 388 * Action to apply on the packet.
 389 * Note: Dynamic entries can only be configured with NOP action.
 390 * Access: RW
 391 */
 392MLXSW_ITEM32_INDEXED(reg, sfd, rec_action, MLXSW_REG_SFD_BASE_LEN, 28, 4,
 393                     MLXSW_REG_SFD_REC_LEN, 0x0C, false);
 394
 395/* reg_sfd_uc_sub_port
 396 * VEPA channel on local port.
 397 * Valid only if local port is a non-stacking port. Must be 0 if multichannel
 398 * VEPA is not enabled.
 399 * Access: RW
 400 */
 401MLXSW_ITEM32_INDEXED(reg, sfd, uc_sub_port, MLXSW_REG_SFD_BASE_LEN, 16, 8,
 402                     MLXSW_REG_SFD_REC_LEN, 0x08, false);
 403
 404/* reg_sfd_uc_fid_vid
 405 * Filtering ID or VLAN ID
 406 * For SwitchX and SwitchX-2:
 407 * - Dynamic entries (policy 2,3) use FID
 408 * - Static entries (policy 0) use VID
 409 * - When independent learning is configured, VID=FID
 410 * For Spectrum: use FID for both Dynamic and Static entries.
 411 * VID should not be used.
 412 * Access: Index
 413 */
 414MLXSW_ITEM32_INDEXED(reg, sfd, uc_fid_vid, MLXSW_REG_SFD_BASE_LEN, 0, 16,
 415                     MLXSW_REG_SFD_REC_LEN, 0x08, false);
 416
 417/* reg_sfd_uc_system_port
 418 * Unique port identifier for the final destination of the packet.
 419 * Access: RW
 420 */
 421MLXSW_ITEM32_INDEXED(reg, sfd, uc_system_port, MLXSW_REG_SFD_BASE_LEN, 0, 16,
 422                     MLXSW_REG_SFD_REC_LEN, 0x0C, false);
 423
 424static inline void mlxsw_reg_sfd_rec_pack(char *payload, int rec_index,
 425                                          enum mlxsw_reg_sfd_rec_type rec_type,
 426                                          const char *mac,
 427                                          enum mlxsw_reg_sfd_rec_action action)
 428{
 429        u8 num_rec = mlxsw_reg_sfd_num_rec_get(payload);
 430
 431        if (rec_index >= num_rec)
 432                mlxsw_reg_sfd_num_rec_set(payload, rec_index + 1);
 433        mlxsw_reg_sfd_rec_swid_set(payload, rec_index, 0);
 434        mlxsw_reg_sfd_rec_type_set(payload, rec_index, rec_type);
 435        mlxsw_reg_sfd_rec_mac_memcpy_to(payload, rec_index, mac);
 436        mlxsw_reg_sfd_rec_action_set(payload, rec_index, action);
 437}
 438
 439static inline void mlxsw_reg_sfd_uc_pack(char *payload, int rec_index,
 440                                         enum mlxsw_reg_sfd_rec_policy policy,
 441                                         const char *mac, u16 fid_vid,
 442                                         enum mlxsw_reg_sfd_rec_action action,
 443                                         u8 local_port)
 444{
 445        mlxsw_reg_sfd_rec_pack(payload, rec_index,
 446                               MLXSW_REG_SFD_REC_TYPE_UNICAST, mac, action);
 447        mlxsw_reg_sfd_rec_policy_set(payload, rec_index, policy);
 448        mlxsw_reg_sfd_uc_sub_port_set(payload, rec_index, 0);
 449        mlxsw_reg_sfd_uc_fid_vid_set(payload, rec_index, fid_vid);
 450        mlxsw_reg_sfd_uc_system_port_set(payload, rec_index, local_port);
 451}
 452
 453static inline void mlxsw_reg_sfd_uc_unpack(char *payload, int rec_index,
 454                                           char *mac, u16 *p_fid_vid,
 455                                           u8 *p_local_port)
 456{
 457        mlxsw_reg_sfd_rec_mac_memcpy_from(payload, rec_index, mac);
 458        *p_fid_vid = mlxsw_reg_sfd_uc_fid_vid_get(payload, rec_index);
 459        *p_local_port = mlxsw_reg_sfd_uc_system_port_get(payload, rec_index);
 460}
 461
 462/* reg_sfd_uc_lag_sub_port
 463 * LAG sub port.
 464 * Must be 0 if multichannel VEPA is not enabled.
 465 * Access: RW
 466 */
 467MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_sub_port, MLXSW_REG_SFD_BASE_LEN, 16, 8,
 468                     MLXSW_REG_SFD_REC_LEN, 0x08, false);
 469
 470/* reg_sfd_uc_lag_fid_vid
 471 * Filtering ID or VLAN ID
 472 * For SwitchX and SwitchX-2:
 473 * - Dynamic entries (policy 2,3) use FID
 474 * - Static entries (policy 0) use VID
 475 * - When independent learning is configured, VID=FID
 476 * For Spectrum: use FID for both Dynamic and Static entries.
 477 * VID should not be used.
 478 * Access: Index
 479 */
 480MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_fid_vid, MLXSW_REG_SFD_BASE_LEN, 0, 16,
 481                     MLXSW_REG_SFD_REC_LEN, 0x08, false);
 482
 483/* reg_sfd_uc_lag_lag_vid
 484 * Indicates VID in case of vFIDs. Reserved for FIDs.
 485 * Access: RW
 486 */
 487MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_lag_vid, MLXSW_REG_SFD_BASE_LEN, 16, 12,
 488                     MLXSW_REG_SFD_REC_LEN, 0x0C, false);
 489
 490/* reg_sfd_uc_lag_lag_id
 491 * LAG Identifier - pointer into the LAG descriptor table.
 492 * Access: RW
 493 */
 494MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_lag_id, MLXSW_REG_SFD_BASE_LEN, 0, 10,
 495                     MLXSW_REG_SFD_REC_LEN, 0x0C, false);
 496
 497static inline void
 498mlxsw_reg_sfd_uc_lag_pack(char *payload, int rec_index,
 499                          enum mlxsw_reg_sfd_rec_policy policy,
 500                          const char *mac, u16 fid_vid,
 501                          enum mlxsw_reg_sfd_rec_action action, u16 lag_vid,
 502                          u16 lag_id)
 503{
 504        mlxsw_reg_sfd_rec_pack(payload, rec_index,
 505                               MLXSW_REG_SFD_REC_TYPE_UNICAST_LAG,
 506                               mac, action);
 507        mlxsw_reg_sfd_rec_policy_set(payload, rec_index, policy);
 508        mlxsw_reg_sfd_uc_lag_sub_port_set(payload, rec_index, 0);
 509        mlxsw_reg_sfd_uc_lag_fid_vid_set(payload, rec_index, fid_vid);
 510        mlxsw_reg_sfd_uc_lag_lag_vid_set(payload, rec_index, lag_vid);
 511        mlxsw_reg_sfd_uc_lag_lag_id_set(payload, rec_index, lag_id);
 512}
 513
 514static inline void mlxsw_reg_sfd_uc_lag_unpack(char *payload, int rec_index,
 515                                               char *mac, u16 *p_vid,
 516                                               u16 *p_lag_id)
 517{
 518        mlxsw_reg_sfd_rec_mac_memcpy_from(payload, rec_index, mac);
 519        *p_vid = mlxsw_reg_sfd_uc_lag_fid_vid_get(payload, rec_index);
 520        *p_lag_id = mlxsw_reg_sfd_uc_lag_lag_id_get(payload, rec_index);
 521}
 522
 523/* reg_sfd_mc_pgi
 524 *
 525 * Multicast port group index - index into the port group table.
 526 * Value 0x1FFF indicates the pgi should point to the MID entry.
 527 * For Spectrum this value must be set to 0x1FFF
 528 * Access: RW
 529 */
 530MLXSW_ITEM32_INDEXED(reg, sfd, mc_pgi, MLXSW_REG_SFD_BASE_LEN, 16, 13,
 531                     MLXSW_REG_SFD_REC_LEN, 0x08, false);
 532
 533/* reg_sfd_mc_fid_vid
 534 *
 535 * Filtering ID or VLAN ID
 536 * Access: Index
 537 */
 538MLXSW_ITEM32_INDEXED(reg, sfd, mc_fid_vid, MLXSW_REG_SFD_BASE_LEN, 0, 16,
 539                     MLXSW_REG_SFD_REC_LEN, 0x08, false);
 540
 541/* reg_sfd_mc_mid
 542 *
 543 * Multicast identifier - global identifier that represents the multicast
 544 * group across all devices.
 545 * Access: RW
 546 */
 547MLXSW_ITEM32_INDEXED(reg, sfd, mc_mid, MLXSW_REG_SFD_BASE_LEN, 0, 16,
 548                     MLXSW_REG_SFD_REC_LEN, 0x0C, false);
 549
 550static inline void
 551mlxsw_reg_sfd_mc_pack(char *payload, int rec_index,
 552                      const char *mac, u16 fid_vid,
 553                      enum mlxsw_reg_sfd_rec_action action, u16 mid)
 554{
 555        mlxsw_reg_sfd_rec_pack(payload, rec_index,
 556                               MLXSW_REG_SFD_REC_TYPE_MULTICAST, mac, action);
 557        mlxsw_reg_sfd_mc_pgi_set(payload, rec_index, 0x1FFF);
 558        mlxsw_reg_sfd_mc_fid_vid_set(payload, rec_index, fid_vid);
 559        mlxsw_reg_sfd_mc_mid_set(payload, rec_index, mid);
 560}
 561
 562/* SFN - Switch FDB Notification Register
 563 * -------------------------------------------
 564 * The switch provides notifications on newly learned FDB entries and
 565 * aged out entries. The notifications can be polled by software.
 566 */
 567#define MLXSW_REG_SFN_ID 0x200B
 568#define MLXSW_REG_SFN_BASE_LEN 0x10 /* base length, without records */
 569#define MLXSW_REG_SFN_REC_LEN 0x10 /* record length */
 570#define MLXSW_REG_SFN_REC_MAX_COUNT 64
 571#define MLXSW_REG_SFN_LEN (MLXSW_REG_SFN_BASE_LEN +     \
 572                           MLXSW_REG_SFN_REC_LEN * MLXSW_REG_SFN_REC_MAX_COUNT)
 573
 574MLXSW_REG_DEFINE(sfn, MLXSW_REG_SFN_ID, MLXSW_REG_SFN_LEN);
 575
 576/* reg_sfn_swid
 577 * Switch partition ID.
 578 * Access: Index
 579 */
 580MLXSW_ITEM32(reg, sfn, swid, 0x00, 24, 8);
 581
 582/* reg_sfn_end
 583 * Forces the current session to end.
 584 * Access: OP
 585 */
 586MLXSW_ITEM32(reg, sfn, end, 0x04, 20, 1);
 587
 588/* reg_sfn_num_rec
 589 * Request: Number of learned notifications and aged-out notification
 590 * records requested.
 591 * Response: Number of notification records returned (must be smaller
 592 * than or equal to the value requested)
 593 * Ranges 0..64
 594 * Access: OP
 595 */
 596MLXSW_ITEM32(reg, sfn, num_rec, 0x04, 0, 8);
 597
 598static inline void mlxsw_reg_sfn_pack(char *payload)
 599{
 600        MLXSW_REG_ZERO(sfn, payload);
 601        mlxsw_reg_sfn_swid_set(payload, 0);
 602        mlxsw_reg_sfn_end_set(payload, 1);
 603        mlxsw_reg_sfn_num_rec_set(payload, MLXSW_REG_SFN_REC_MAX_COUNT);
 604}
 605
 606/* reg_sfn_rec_swid
 607 * Switch partition ID.
 608 * Access: RO
 609 */
 610MLXSW_ITEM32_INDEXED(reg, sfn, rec_swid, MLXSW_REG_SFN_BASE_LEN, 24, 8,
 611                     MLXSW_REG_SFN_REC_LEN, 0x00, false);
 612
 613enum mlxsw_reg_sfn_rec_type {
 614        /* MAC addresses learned on a regular port. */
 615        MLXSW_REG_SFN_REC_TYPE_LEARNED_MAC = 0x5,
 616        /* MAC addresses learned on a LAG port. */
 617        MLXSW_REG_SFN_REC_TYPE_LEARNED_MAC_LAG = 0x6,
 618        /* Aged-out MAC address on a regular port. */
 619        MLXSW_REG_SFN_REC_TYPE_AGED_OUT_MAC = 0x7,
 620        /* Aged-out MAC address on a LAG port. */
 621        MLXSW_REG_SFN_REC_TYPE_AGED_OUT_MAC_LAG = 0x8,
 622};
 623
 624/* reg_sfn_rec_type
 625 * Notification record type.
 626 * Access: RO
 627 */
 628MLXSW_ITEM32_INDEXED(reg, sfn, rec_type, MLXSW_REG_SFN_BASE_LEN, 20, 4,
 629                     MLXSW_REG_SFN_REC_LEN, 0x00, false);
 630
 631/* reg_sfn_rec_mac
 632 * MAC address.
 633 * Access: RO
 634 */
 635MLXSW_ITEM_BUF_INDEXED(reg, sfn, rec_mac, MLXSW_REG_SFN_BASE_LEN, 6,
 636                       MLXSW_REG_SFN_REC_LEN, 0x02);
 637
 638/* reg_sfn_mac_sub_port
 639 * VEPA channel on the local port.
 640 * 0 if multichannel VEPA is not enabled.
 641 * Access: RO
 642 */
 643MLXSW_ITEM32_INDEXED(reg, sfn, mac_sub_port, MLXSW_REG_SFN_BASE_LEN, 16, 8,
 644                     MLXSW_REG_SFN_REC_LEN, 0x08, false);
 645
 646/* reg_sfn_mac_fid
 647 * Filtering identifier.
 648 * Access: RO
 649 */
 650MLXSW_ITEM32_INDEXED(reg, sfn, mac_fid, MLXSW_REG_SFN_BASE_LEN, 0, 16,
 651                     MLXSW_REG_SFN_REC_LEN, 0x08, false);
 652
 653/* reg_sfn_mac_system_port
 654 * Unique port identifier for the final destination of the packet.
 655 * Access: RO
 656 */
 657MLXSW_ITEM32_INDEXED(reg, sfn, mac_system_port, MLXSW_REG_SFN_BASE_LEN, 0, 16,
 658                     MLXSW_REG_SFN_REC_LEN, 0x0C, false);
 659
 660static inline void mlxsw_reg_sfn_mac_unpack(char *payload, int rec_index,
 661                                            char *mac, u16 *p_vid,
 662                                            u8 *p_local_port)
 663{
 664        mlxsw_reg_sfn_rec_mac_memcpy_from(payload, rec_index, mac);
 665        *p_vid = mlxsw_reg_sfn_mac_fid_get(payload, rec_index);
 666        *p_local_port = mlxsw_reg_sfn_mac_system_port_get(payload, rec_index);
 667}
 668
 669/* reg_sfn_mac_lag_lag_id
 670 * LAG ID (pointer into the LAG descriptor table).
 671 * Access: RO
 672 */
 673MLXSW_ITEM32_INDEXED(reg, sfn, mac_lag_lag_id, MLXSW_REG_SFN_BASE_LEN, 0, 10,
 674                     MLXSW_REG_SFN_REC_LEN, 0x0C, false);
 675
 676static inline void mlxsw_reg_sfn_mac_lag_unpack(char *payload, int rec_index,
 677                                                char *mac, u16 *p_vid,
 678                                                u16 *p_lag_id)
 679{
 680        mlxsw_reg_sfn_rec_mac_memcpy_from(payload, rec_index, mac);
 681        *p_vid = mlxsw_reg_sfn_mac_fid_get(payload, rec_index);
 682        *p_lag_id = mlxsw_reg_sfn_mac_lag_lag_id_get(payload, rec_index);
 683}
 684
 685/* SPMS - Switch Port MSTP/RSTP State Register
 686 * -------------------------------------------
 687 * Configures the spanning tree state of a physical port.
 688 */
 689#define MLXSW_REG_SPMS_ID 0x200D
 690#define MLXSW_REG_SPMS_LEN 0x404
 691
 692MLXSW_REG_DEFINE(spms, MLXSW_REG_SPMS_ID, MLXSW_REG_SPMS_LEN);
 693
 694/* reg_spms_local_port
 695 * Local port number.
 696 * Access: Index
 697 */
 698MLXSW_ITEM32(reg, spms, local_port, 0x00, 16, 8);
 699
 700enum mlxsw_reg_spms_state {
 701        MLXSW_REG_SPMS_STATE_NO_CHANGE,
 702        MLXSW_REG_SPMS_STATE_DISCARDING,
 703        MLXSW_REG_SPMS_STATE_LEARNING,
 704        MLXSW_REG_SPMS_STATE_FORWARDING,
 705};
 706
 707/* reg_spms_state
 708 * Spanning tree state of each VLAN ID (VID) of the local port.
 709 * 0 - Do not change spanning tree state (used only when writing).
 710 * 1 - Discarding. No learning or forwarding to/from this port (default).
 711 * 2 - Learning. Port is learning, but not forwarding.
 712 * 3 - Forwarding. Port is learning and forwarding.
 713 * Access: RW
 714 */
 715MLXSW_ITEM_BIT_ARRAY(reg, spms, state, 0x04, 0x400, 2);
 716
 717static inline void mlxsw_reg_spms_pack(char *payload, u8 local_port)
 718{
 719        MLXSW_REG_ZERO(spms, payload);
 720        mlxsw_reg_spms_local_port_set(payload, local_port);
 721}
 722
 723static inline void mlxsw_reg_spms_vid_pack(char *payload, u16 vid,
 724                                           enum mlxsw_reg_spms_state state)
 725{
 726        mlxsw_reg_spms_state_set(payload, vid, state);
 727}
 728
 729/* SPVID - Switch Port VID
 730 * -----------------------
 731 * The switch port VID configures the default VID for a port.
 732 */
 733#define MLXSW_REG_SPVID_ID 0x200E
 734#define MLXSW_REG_SPVID_LEN 0x08
 735
 736MLXSW_REG_DEFINE(spvid, MLXSW_REG_SPVID_ID, MLXSW_REG_SPVID_LEN);
 737
 738/* reg_spvid_local_port
 739 * Local port number.
 740 * Access: Index
 741 */
 742MLXSW_ITEM32(reg, spvid, local_port, 0x00, 16, 8);
 743
 744/* reg_spvid_sub_port
 745 * Virtual port within the physical port.
 746 * Should be set to 0 when virtual ports are not enabled on the port.
 747 * Access: Index
 748 */
 749MLXSW_ITEM32(reg, spvid, sub_port, 0x00, 8, 8);
 750
 751/* reg_spvid_pvid
 752 * Port default VID
 753 * Access: RW
 754 */
 755MLXSW_ITEM32(reg, spvid, pvid, 0x04, 0, 12);
 756
 757static inline void mlxsw_reg_spvid_pack(char *payload, u8 local_port, u16 pvid)
 758{
 759        MLXSW_REG_ZERO(spvid, payload);
 760        mlxsw_reg_spvid_local_port_set(payload, local_port);
 761        mlxsw_reg_spvid_pvid_set(payload, pvid);
 762}
 763
 764/* SPVM - Switch Port VLAN Membership
 765 * ----------------------------------
 766 * The Switch Port VLAN Membership register configures the VLAN membership
 767 * of a port in a VLAN denoted by VID. VLAN membership is managed per
 768 * virtual port. The register can be used to add and remove VID(s) from a port.
 769 */
 770#define MLXSW_REG_SPVM_ID 0x200F
 771#define MLXSW_REG_SPVM_BASE_LEN 0x04 /* base length, without records */
 772#define MLXSW_REG_SPVM_REC_LEN 0x04 /* record length */
 773#define MLXSW_REG_SPVM_REC_MAX_COUNT 255
 774#define MLXSW_REG_SPVM_LEN (MLXSW_REG_SPVM_BASE_LEN +   \
 775                    MLXSW_REG_SPVM_REC_LEN * MLXSW_REG_SPVM_REC_MAX_COUNT)
 776
 777MLXSW_REG_DEFINE(spvm, MLXSW_REG_SPVM_ID, MLXSW_REG_SPVM_LEN);
 778
 779/* reg_spvm_pt
 780 * Priority tagged. If this bit is set, packets forwarded to the port with
 781 * untagged VLAN membership (u bit is set) will be tagged with priority tag
 782 * (VID=0)
 783 * Access: RW
 784 */
 785MLXSW_ITEM32(reg, spvm, pt, 0x00, 31, 1);
 786
 787/* reg_spvm_pte
 788 * Priority Tagged Update Enable. On Write operations, if this bit is cleared,
 789 * the pt bit will NOT be updated. To update the pt bit, pte must be set.
 790 * Access: WO
 791 */
 792MLXSW_ITEM32(reg, spvm, pte, 0x00, 30, 1);
 793
 794/* reg_spvm_local_port
 795 * Local port number.
 796 * Access: Index
 797 */
 798MLXSW_ITEM32(reg, spvm, local_port, 0x00, 16, 8);
 799
 800/* reg_spvm_sub_port
 801 * Virtual port within the physical port.
 802 * Should be set to 0 when virtual ports are not enabled on the port.
 803 * Access: Index
 804 */
 805MLXSW_ITEM32(reg, spvm, sub_port, 0x00, 8, 8);
 806
 807/* reg_spvm_num_rec
 808 * Number of records to update. Each record contains: i, e, u, vid.
 809 * Access: OP
 810 */
 811MLXSW_ITEM32(reg, spvm, num_rec, 0x00, 0, 8);
 812
 813/* reg_spvm_rec_i
 814 * Ingress membership in VLAN ID.
 815 * Access: Index
 816 */
 817MLXSW_ITEM32_INDEXED(reg, spvm, rec_i,
 818                     MLXSW_REG_SPVM_BASE_LEN, 14, 1,
 819                     MLXSW_REG_SPVM_REC_LEN, 0, false);
 820
 821/* reg_spvm_rec_e
 822 * Egress membership in VLAN ID.
 823 * Access: Index
 824 */
 825MLXSW_ITEM32_INDEXED(reg, spvm, rec_e,
 826                     MLXSW_REG_SPVM_BASE_LEN, 13, 1,
 827                     MLXSW_REG_SPVM_REC_LEN, 0, false);
 828
 829/* reg_spvm_rec_u
 830 * Untagged - port is an untagged member - egress transmission uses untagged
 831 * frames on VID<n>
 832 * Access: Index
 833 */
 834MLXSW_ITEM32_INDEXED(reg, spvm, rec_u,
 835                     MLXSW_REG_SPVM_BASE_LEN, 12, 1,
 836                     MLXSW_REG_SPVM_REC_LEN, 0, false);
 837
 838/* reg_spvm_rec_vid
 839 * Egress membership in VLAN ID.
 840 * Access: Index
 841 */
 842MLXSW_ITEM32_INDEXED(reg, spvm, rec_vid,
 843                     MLXSW_REG_SPVM_BASE_LEN, 0, 12,
 844                     MLXSW_REG_SPVM_REC_LEN, 0, false);
 845
 846static inline void mlxsw_reg_spvm_pack(char *payload, u8 local_port,
 847                                       u16 vid_begin, u16 vid_end,
 848                                       bool is_member, bool untagged)
 849{
 850        int size = vid_end - vid_begin + 1;
 851        int i;
 852
 853        MLXSW_REG_ZERO(spvm, payload);
 854        mlxsw_reg_spvm_local_port_set(payload, local_port);
 855        mlxsw_reg_spvm_num_rec_set(payload, size);
 856
 857        for (i = 0; i < size; i++) {
 858                mlxsw_reg_spvm_rec_i_set(payload, i, is_member);
 859                mlxsw_reg_spvm_rec_e_set(payload, i, is_member);
 860                mlxsw_reg_spvm_rec_u_set(payload, i, untagged);
 861                mlxsw_reg_spvm_rec_vid_set(payload, i, vid_begin + i);
 862        }
 863}
 864
 865/* SPAFT - Switch Port Acceptable Frame Types
 866 * ------------------------------------------
 867 * The Switch Port Acceptable Frame Types register configures the frame
 868 * admittance of the port.
 869 */
 870#define MLXSW_REG_SPAFT_ID 0x2010
 871#define MLXSW_REG_SPAFT_LEN 0x08
 872
 873MLXSW_REG_DEFINE(spaft, MLXSW_REG_SPAFT_ID, MLXSW_REG_SPAFT_LEN);
 874
 875/* reg_spaft_local_port
 876 * Local port number.
 877 * Access: Index
 878 *
 879 * Note: CPU port is not supported (all tag types are allowed).
 880 */
 881MLXSW_ITEM32(reg, spaft, local_port, 0x00, 16, 8);
 882
 883/* reg_spaft_sub_port
 884 * Virtual port within the physical port.
 885 * Should be set to 0 when virtual ports are not enabled on the port.
 886 * Access: RW
 887 */
 888MLXSW_ITEM32(reg, spaft, sub_port, 0x00, 8, 8);
 889
 890/* reg_spaft_allow_untagged
 891 * When set, untagged frames on the ingress are allowed (default).
 892 * Access: RW
 893 */
 894MLXSW_ITEM32(reg, spaft, allow_untagged, 0x04, 31, 1);
 895
 896/* reg_spaft_allow_prio_tagged
 897 * When set, priority tagged frames on the ingress are allowed (default).
 898 * Access: RW
 899 */
 900MLXSW_ITEM32(reg, spaft, allow_prio_tagged, 0x04, 30, 1);
 901
 902/* reg_spaft_allow_tagged
 903 * When set, tagged frames on the ingress are allowed (default).
 904 * Access: RW
 905 */
 906MLXSW_ITEM32(reg, spaft, allow_tagged, 0x04, 29, 1);
 907
 908static inline void mlxsw_reg_spaft_pack(char *payload, u8 local_port,
 909                                        bool allow_untagged)
 910{
 911        MLXSW_REG_ZERO(spaft, payload);
 912        mlxsw_reg_spaft_local_port_set(payload, local_port);
 913        mlxsw_reg_spaft_allow_untagged_set(payload, allow_untagged);
 914        mlxsw_reg_spaft_allow_prio_tagged_set(payload, true);
 915        mlxsw_reg_spaft_allow_tagged_set(payload, true);
 916}
 917
 918/* SFGC - Switch Flooding Group Configuration
 919 * ------------------------------------------
 920 * The following register controls the association of flooding tables and MIDs
 921 * to packet types used for flooding.
 922 */
 923#define MLXSW_REG_SFGC_ID 0x2011
 924#define MLXSW_REG_SFGC_LEN 0x10
 925
 926MLXSW_REG_DEFINE(sfgc, MLXSW_REG_SFGC_ID, MLXSW_REG_SFGC_LEN);
 927
 928enum mlxsw_reg_sfgc_type {
 929        MLXSW_REG_SFGC_TYPE_BROADCAST,
 930        MLXSW_REG_SFGC_TYPE_UNKNOWN_UNICAST,
 931        MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_IPV4,
 932        MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_IPV6,
 933        MLXSW_REG_SFGC_TYPE_RESERVED,
 934        MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_NON_IP,
 935        MLXSW_REG_SFGC_TYPE_IPV4_LINK_LOCAL,
 936        MLXSW_REG_SFGC_TYPE_IPV6_ALL_HOST,
 937        MLXSW_REG_SFGC_TYPE_MAX,
 938};
 939
 940/* reg_sfgc_type
 941 * The traffic type to reach the flooding table.
 942 * Access: Index
 943 */
 944MLXSW_ITEM32(reg, sfgc, type, 0x00, 0, 4);
 945
 946enum mlxsw_reg_sfgc_bridge_type {
 947        MLXSW_REG_SFGC_BRIDGE_TYPE_1Q_FID = 0,
 948        MLXSW_REG_SFGC_BRIDGE_TYPE_VFID = 1,
 949};
 950
 951/* reg_sfgc_bridge_type
 952 * Access: Index
 953 *
 954 * Note: SwitchX-2 only supports 802.1Q mode.
 955 */
 956MLXSW_ITEM32(reg, sfgc, bridge_type, 0x04, 24, 3);
 957
 958enum mlxsw_flood_table_type {
 959        MLXSW_REG_SFGC_TABLE_TYPE_VID = 1,
 960        MLXSW_REG_SFGC_TABLE_TYPE_SINGLE = 2,
 961        MLXSW_REG_SFGC_TABLE_TYPE_ANY = 0,
 962        MLXSW_REG_SFGC_TABLE_TYPE_FID_OFFSET = 3,
 963        MLXSW_REG_SFGC_TABLE_TYPE_FID = 4,
 964};
 965
 966/* reg_sfgc_table_type
 967 * See mlxsw_flood_table_type
 968 * Access: RW
 969 *
 970 * Note: FID offset and FID types are not supported in SwitchX-2.
 971 */
 972MLXSW_ITEM32(reg, sfgc, table_type, 0x04, 16, 3);
 973
 974/* reg_sfgc_flood_table
 975 * Flooding table index to associate with the specific type on the specific
 976 * switch partition.
 977 * Access: RW
 978 */
 979MLXSW_ITEM32(reg, sfgc, flood_table, 0x04, 0, 6);
 980
 981/* reg_sfgc_mid
 982 * The multicast ID for the swid. Not supported for Spectrum
 983 * Access: RW
 984 */
 985MLXSW_ITEM32(reg, sfgc, mid, 0x08, 0, 16);
 986
 987/* reg_sfgc_counter_set_type
 988 * Counter Set Type for flow counters.
 989 * Access: RW
 990 */
 991MLXSW_ITEM32(reg, sfgc, counter_set_type, 0x0C, 24, 8);
 992
 993/* reg_sfgc_counter_index
 994 * Counter Index for flow counters.
 995 * Access: RW
 996 */
 997MLXSW_ITEM32(reg, sfgc, counter_index, 0x0C, 0, 24);
 998
 999static inline void
1000mlxsw_reg_sfgc_pack(char *payload, enum mlxsw_reg_sfgc_type type,
1001                    enum mlxsw_reg_sfgc_bridge_type bridge_type,
1002                    enum mlxsw_flood_table_type table_type,
1003                    unsigned int flood_table)
1004{
1005        MLXSW_REG_ZERO(sfgc, payload);
1006        mlxsw_reg_sfgc_type_set(payload, type);
1007        mlxsw_reg_sfgc_bridge_type_set(payload, bridge_type);
1008        mlxsw_reg_sfgc_table_type_set(payload, table_type);
1009        mlxsw_reg_sfgc_flood_table_set(payload, flood_table);
1010        mlxsw_reg_sfgc_mid_set(payload, MLXSW_PORT_MID);
1011}
1012
1013/* SFTR - Switch Flooding Table Register
1014 * -------------------------------------
1015 * The switch flooding table is used for flooding packet replication. The table
1016 * defines a bit mask of ports for packet replication.
1017 */
1018#define MLXSW_REG_SFTR_ID 0x2012
1019#define MLXSW_REG_SFTR_LEN 0x420
1020
1021MLXSW_REG_DEFINE(sftr, MLXSW_REG_SFTR_ID, MLXSW_REG_SFTR_LEN);
1022
1023/* reg_sftr_swid
1024 * Switch partition ID with which to associate the port.
1025 * Access: Index
1026 */
1027MLXSW_ITEM32(reg, sftr, swid, 0x00, 24, 8);
1028
1029/* reg_sftr_flood_table
1030 * Flooding table index to associate with the specific type on the specific
1031 * switch partition.
1032 * Access: Index
1033 */
1034MLXSW_ITEM32(reg, sftr, flood_table, 0x00, 16, 6);
1035
1036/* reg_sftr_index
1037 * Index. Used as an index into the Flooding Table in case the table is
1038 * configured to use VID / FID or FID Offset.
1039 * Access: Index
1040 */
1041MLXSW_ITEM32(reg, sftr, index, 0x00, 0, 16);
1042
1043/* reg_sftr_table_type
1044 * See mlxsw_flood_table_type
1045 * Access: RW
1046 */
1047MLXSW_ITEM32(reg, sftr, table_type, 0x04, 16, 3);
1048
1049/* reg_sftr_range
1050 * Range of entries to update
1051 * Access: Index
1052 */
1053MLXSW_ITEM32(reg, sftr, range, 0x04, 0, 16);
1054
1055/* reg_sftr_port
1056 * Local port membership (1 bit per port).
1057 * Access: RW
1058 */
1059MLXSW_ITEM_BIT_ARRAY(reg, sftr, port, 0x20, 0x20, 1);
1060
1061/* reg_sftr_cpu_port_mask
1062 * CPU port mask (1 bit per port).
1063 * Access: W
1064 */
1065MLXSW_ITEM_BIT_ARRAY(reg, sftr, port_mask, 0x220, 0x20, 1);
1066
1067static inline void mlxsw_reg_sftr_pack(char *payload,
1068                                       unsigned int flood_table,
1069                                       unsigned int index,
1070                                       enum mlxsw_flood_table_type table_type,
1071                                       unsigned int range, u8 port, bool set)
1072{
1073        MLXSW_REG_ZERO(sftr, payload);
1074        mlxsw_reg_sftr_swid_set(payload, 0);
1075        mlxsw_reg_sftr_flood_table_set(payload, flood_table);
1076        mlxsw_reg_sftr_index_set(payload, index);
1077        mlxsw_reg_sftr_table_type_set(payload, table_type);
1078        mlxsw_reg_sftr_range_set(payload, range);
1079        mlxsw_reg_sftr_port_set(payload, port, set);
1080        mlxsw_reg_sftr_port_mask_set(payload, port, 1);
1081}
1082
1083/* SFDF - Switch Filtering DB Flush
1084 * --------------------------------
1085 * The switch filtering DB flush register is used to flush the FDB.
1086 * Note that FDB notifications are flushed as well.
1087 */
1088#define MLXSW_REG_SFDF_ID 0x2013
1089#define MLXSW_REG_SFDF_LEN 0x14
1090
1091MLXSW_REG_DEFINE(sfdf, MLXSW_REG_SFDF_ID, MLXSW_REG_SFDF_LEN);
1092
1093/* reg_sfdf_swid
1094 * Switch partition ID.
1095 * Access: Index
1096 */
1097MLXSW_ITEM32(reg, sfdf, swid, 0x00, 24, 8);
1098
1099enum mlxsw_reg_sfdf_flush_type {
1100        MLXSW_REG_SFDF_FLUSH_PER_SWID,
1101        MLXSW_REG_SFDF_FLUSH_PER_FID,
1102        MLXSW_REG_SFDF_FLUSH_PER_PORT,
1103        MLXSW_REG_SFDF_FLUSH_PER_PORT_AND_FID,
1104        MLXSW_REG_SFDF_FLUSH_PER_LAG,
1105        MLXSW_REG_SFDF_FLUSH_PER_LAG_AND_FID,
1106};
1107
1108/* reg_sfdf_flush_type
1109 * Flush type.
1110 * 0 - All SWID dynamic entries are flushed.
1111 * 1 - All FID dynamic entries are flushed.
1112 * 2 - All dynamic entries pointing to port are flushed.
1113 * 3 - All FID dynamic entries pointing to port are flushed.
1114 * 4 - All dynamic entries pointing to LAG are flushed.
1115 * 5 - All FID dynamic entries pointing to LAG are flushed.
1116 * Access: RW
1117 */
1118MLXSW_ITEM32(reg, sfdf, flush_type, 0x04, 28, 4);
1119
1120/* reg_sfdf_flush_static
1121 * Static.
1122 * 0 - Flush only dynamic entries.
1123 * 1 - Flush both dynamic and static entries.
1124 * Access: RW
1125 */
1126MLXSW_ITEM32(reg, sfdf, flush_static, 0x04, 24, 1);
1127
1128static inline void mlxsw_reg_sfdf_pack(char *payload,
1129                                       enum mlxsw_reg_sfdf_flush_type type)
1130{
1131        MLXSW_REG_ZERO(sfdf, payload);
1132        mlxsw_reg_sfdf_flush_type_set(payload, type);
1133        mlxsw_reg_sfdf_flush_static_set(payload, true);
1134}
1135
1136/* reg_sfdf_fid
1137 * FID to flush.
1138 * Access: RW
1139 */
1140MLXSW_ITEM32(reg, sfdf, fid, 0x0C, 0, 16);
1141
1142/* reg_sfdf_system_port
1143 * Port to flush.
1144 * Access: RW
1145 */
1146MLXSW_ITEM32(reg, sfdf, system_port, 0x0C, 0, 16);
1147
1148/* reg_sfdf_port_fid_system_port
1149 * Port to flush, pointed to by FID.
1150 * Access: RW
1151 */
1152MLXSW_ITEM32(reg, sfdf, port_fid_system_port, 0x08, 0, 16);
1153
1154/* reg_sfdf_lag_id
1155 * LAG ID to flush.
1156 * Access: RW
1157 */
1158MLXSW_ITEM32(reg, sfdf, lag_id, 0x0C, 0, 10);
1159
1160/* reg_sfdf_lag_fid_lag_id
1161 * LAG ID to flush, pointed to by FID.
1162 * Access: RW
1163 */
1164MLXSW_ITEM32(reg, sfdf, lag_fid_lag_id, 0x08, 0, 10);
1165
1166/* SLDR - Switch LAG Descriptor Register
1167 * -----------------------------------------
1168 * The switch LAG descriptor register is populated by LAG descriptors.
1169 * Each LAG descriptor is indexed by lag_id. The LAG ID runs from 0 to
1170 * max_lag-1.
1171 */
1172#define MLXSW_REG_SLDR_ID 0x2014
1173#define MLXSW_REG_SLDR_LEN 0x0C /* counting in only one port in list */
1174
1175MLXSW_REG_DEFINE(sldr, MLXSW_REG_SLDR_ID, MLXSW_REG_SLDR_LEN);
1176
1177enum mlxsw_reg_sldr_op {
1178        /* Indicates a creation of a new LAG-ID, lag_id must be valid */
1179        MLXSW_REG_SLDR_OP_LAG_CREATE,
1180        MLXSW_REG_SLDR_OP_LAG_DESTROY,
1181        /* Ports that appear in the list have the Distributor enabled */
1182        MLXSW_REG_SLDR_OP_LAG_ADD_PORT_LIST,
1183        /* Removes ports from the disributor list */
1184        MLXSW_REG_SLDR_OP_LAG_REMOVE_PORT_LIST,
1185};
1186
1187/* reg_sldr_op
1188 * Operation.
1189 * Access: RW
1190 */
1191MLXSW_ITEM32(reg, sldr, op, 0x00, 29, 3);
1192
1193/* reg_sldr_lag_id
1194 * LAG identifier. The lag_id is the index into the LAG descriptor table.
1195 * Access: Index
1196 */
1197MLXSW_ITEM32(reg, sldr, lag_id, 0x00, 0, 10);
1198
1199static inline void mlxsw_reg_sldr_lag_create_pack(char *payload, u8 lag_id)
1200{
1201        MLXSW_REG_ZERO(sldr, payload);
1202        mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_CREATE);
1203        mlxsw_reg_sldr_lag_id_set(payload, lag_id);
1204}
1205
1206static inline void mlxsw_reg_sldr_lag_destroy_pack(char *payload, u8 lag_id)
1207{
1208        MLXSW_REG_ZERO(sldr, payload);
1209        mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_DESTROY);
1210        mlxsw_reg_sldr_lag_id_set(payload, lag_id);
1211}
1212
1213/* reg_sldr_num_ports
1214 * The number of member ports of the LAG.
1215 * Reserved for Create / Destroy operations
1216 * For Add / Remove operations - indicates the number of ports in the list.
1217 * Access: RW
1218 */
1219MLXSW_ITEM32(reg, sldr, num_ports, 0x04, 24, 8);
1220
1221/* reg_sldr_system_port
1222 * System port.
1223 * Access: RW
1224 */
1225MLXSW_ITEM32_INDEXED(reg, sldr, system_port, 0x08, 0, 16, 4, 0, false);
1226
1227static inline void mlxsw_reg_sldr_lag_add_port_pack(char *payload, u8 lag_id,
1228                                                    u8 local_port)
1229{
1230        MLXSW_REG_ZERO(sldr, payload);
1231        mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_ADD_PORT_LIST);
1232        mlxsw_reg_sldr_lag_id_set(payload, lag_id);
1233        mlxsw_reg_sldr_num_ports_set(payload, 1);
1234        mlxsw_reg_sldr_system_port_set(payload, 0, local_port);
1235}
1236
1237static inline void mlxsw_reg_sldr_lag_remove_port_pack(char *payload, u8 lag_id,
1238                                                       u8 local_port)
1239{
1240        MLXSW_REG_ZERO(sldr, payload);
1241        mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_REMOVE_PORT_LIST);
1242        mlxsw_reg_sldr_lag_id_set(payload, lag_id);
1243        mlxsw_reg_sldr_num_ports_set(payload, 1);
1244        mlxsw_reg_sldr_system_port_set(payload, 0, local_port);
1245}
1246
1247/* SLCR - Switch LAG Configuration 2 Register
1248 * -------------------------------------------
1249 * The Switch LAG Configuration register is used for configuring the
1250 * LAG properties of the switch.
1251 */
1252#define MLXSW_REG_SLCR_ID 0x2015
1253#define MLXSW_REG_SLCR_LEN 0x10
1254
1255MLXSW_REG_DEFINE(slcr, MLXSW_REG_SLCR_ID, MLXSW_REG_SLCR_LEN);
1256
1257enum mlxsw_reg_slcr_pp {
1258        /* Global Configuration (for all ports) */
1259        MLXSW_REG_SLCR_PP_GLOBAL,
1260        /* Per port configuration, based on local_port field */
1261        MLXSW_REG_SLCR_PP_PER_PORT,
1262};
1263
1264/* reg_slcr_pp
1265 * Per Port Configuration
1266 * Note: Reading at Global mode results in reading port 1 configuration.
1267 * Access: Index
1268 */
1269MLXSW_ITEM32(reg, slcr, pp, 0x00, 24, 1);
1270
1271/* reg_slcr_local_port
1272 * Local port number
1273 * Supported from CPU port
1274 * Not supported from router port
1275 * Reserved when pp = Global Configuration
1276 * Access: Index
1277 */
1278MLXSW_ITEM32(reg, slcr, local_port, 0x00, 16, 8);
1279
1280enum mlxsw_reg_slcr_type {
1281        MLXSW_REG_SLCR_TYPE_CRC, /* default */
1282        MLXSW_REG_SLCR_TYPE_XOR,
1283        MLXSW_REG_SLCR_TYPE_RANDOM,
1284};
1285
1286/* reg_slcr_type
1287 * Hash type
1288 * Access: RW
1289 */
1290MLXSW_ITEM32(reg, slcr, type, 0x00, 0, 4);
1291
1292/* Ingress port */
1293#define MLXSW_REG_SLCR_LAG_HASH_IN_PORT         BIT(0)
1294/* SMAC - for IPv4 and IPv6 packets */
1295#define MLXSW_REG_SLCR_LAG_HASH_SMAC_IP         BIT(1)
1296/* SMAC - for non-IP packets */
1297#define MLXSW_REG_SLCR_LAG_HASH_SMAC_NONIP      BIT(2)
1298#define MLXSW_REG_SLCR_LAG_HASH_SMAC \
1299        (MLXSW_REG_SLCR_LAG_HASH_SMAC_IP | \
1300         MLXSW_REG_SLCR_LAG_HASH_SMAC_NONIP)
1301/* DMAC - for IPv4 and IPv6 packets */
1302#define MLXSW_REG_SLCR_LAG_HASH_DMAC_IP         BIT(3)
1303/* DMAC - for non-IP packets */
1304#define MLXSW_REG_SLCR_LAG_HASH_DMAC_NONIP      BIT(4)
1305#define MLXSW_REG_SLCR_LAG_HASH_DMAC \
1306        (MLXSW_REG_SLCR_LAG_HASH_DMAC_IP | \
1307         MLXSW_REG_SLCR_LAG_HASH_DMAC_NONIP)
1308/* Ethertype - for IPv4 and IPv6 packets */
1309#define MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_IP    BIT(5)
1310/* Ethertype - for non-IP packets */
1311#define MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_NONIP BIT(6)
1312#define MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE \
1313        (MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_IP | \
1314         MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_NONIP)
1315/* VLAN ID - for IPv4 and IPv6 packets */
1316#define MLXSW_REG_SLCR_LAG_HASH_VLANID_IP       BIT(7)
1317/* VLAN ID - for non-IP packets */
1318#define MLXSW_REG_SLCR_LAG_HASH_VLANID_NONIP    BIT(8)
1319#define MLXSW_REG_SLCR_LAG_HASH_VLANID \
1320        (MLXSW_REG_SLCR_LAG_HASH_VLANID_IP | \
1321         MLXSW_REG_SLCR_LAG_HASH_VLANID_NONIP)
1322/* Source IP address (can be IPv4 or IPv6) */
1323#define MLXSW_REG_SLCR_LAG_HASH_SIP             BIT(9)
1324/* Destination IP address (can be IPv4 or IPv6) */
1325#define MLXSW_REG_SLCR_LAG_HASH_DIP             BIT(10)
1326/* TCP/UDP source port */
1327#define MLXSW_REG_SLCR_LAG_HASH_SPORT           BIT(11)
1328/* TCP/UDP destination port*/
1329#define MLXSW_REG_SLCR_LAG_HASH_DPORT           BIT(12)
1330/* IPv4 Protocol/IPv6 Next Header */
1331#define MLXSW_REG_SLCR_LAG_HASH_IPPROTO         BIT(13)
1332/* IPv6 Flow label */
1333#define MLXSW_REG_SLCR_LAG_HASH_FLOWLABEL       BIT(14)
1334/* SID - FCoE source ID */
1335#define MLXSW_REG_SLCR_LAG_HASH_FCOE_SID        BIT(15)
1336/* DID - FCoE destination ID */
1337#define MLXSW_REG_SLCR_LAG_HASH_FCOE_DID        BIT(16)
1338/* OXID - FCoE originator exchange ID */
1339#define MLXSW_REG_SLCR_LAG_HASH_FCOE_OXID       BIT(17)
1340/* Destination QP number - for RoCE packets */
1341#define MLXSW_REG_SLCR_LAG_HASH_ROCE_DQP        BIT(19)
1342
1343/* reg_slcr_lag_hash
1344 * LAG hashing configuration. This is a bitmask, in which each set
1345 * bit includes the corresponding item in the LAG hash calculation.
1346 * The default lag_hash contains SMAC, DMAC, VLANID and
1347 * Ethertype (for all packet types).
1348 * Access: RW
1349 */
1350MLXSW_ITEM32(reg, slcr, lag_hash, 0x04, 0, 20);
1351
1352static inline void mlxsw_reg_slcr_pack(char *payload, u16 lag_hash)
1353{
1354        MLXSW_REG_ZERO(slcr, payload);
1355        mlxsw_reg_slcr_pp_set(payload, MLXSW_REG_SLCR_PP_GLOBAL);
1356        mlxsw_reg_slcr_type_set(payload, MLXSW_REG_SLCR_TYPE_CRC);
1357        mlxsw_reg_slcr_lag_hash_set(payload, lag_hash);
1358}
1359
1360/* SLCOR - Switch LAG Collector Register
1361 * -------------------------------------
1362 * The Switch LAG Collector register controls the Local Port membership
1363 * in a LAG and enablement of the collector.
1364 */
1365#define MLXSW_REG_SLCOR_ID 0x2016
1366#define MLXSW_REG_SLCOR_LEN 0x10
1367
1368MLXSW_REG_DEFINE(slcor, MLXSW_REG_SLCOR_ID, MLXSW_REG_SLCOR_LEN);
1369
1370enum mlxsw_reg_slcor_col {
1371        /* Port is added with collector disabled */
1372        MLXSW_REG_SLCOR_COL_LAG_ADD_PORT,
1373        MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_ENABLED,
1374        MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_DISABLED,
1375        MLXSW_REG_SLCOR_COL_LAG_REMOVE_PORT,
1376};
1377
1378/* reg_slcor_col
1379 * Collector configuration
1380 * Access: RW
1381 */
1382MLXSW_ITEM32(reg, slcor, col, 0x00, 30, 2);
1383
1384/* reg_slcor_local_port
1385 * Local port number
1386 * Not supported for CPU port
1387 * Access: Index
1388 */
1389MLXSW_ITEM32(reg, slcor, local_port, 0x00, 16, 8);
1390
1391/* reg_slcor_lag_id
1392 * LAG Identifier. Index into the LAG descriptor table.
1393 * Access: Index
1394 */
1395MLXSW_ITEM32(reg, slcor, lag_id, 0x00, 0, 10);
1396
1397/* reg_slcor_port_index
1398 * Port index in the LAG list. Only valid on Add Port to LAG col.
1399 * Valid range is from 0 to cap_max_lag_members-1
1400 * Access: RW
1401 */
1402MLXSW_ITEM32(reg, slcor, port_index, 0x04, 0, 10);
1403
1404static inline void mlxsw_reg_slcor_pack(char *payload,
1405                                        u8 local_port, u16 lag_id,
1406                                        enum mlxsw_reg_slcor_col col)
1407{
1408        MLXSW_REG_ZERO(slcor, payload);
1409        mlxsw_reg_slcor_col_set(payload, col);
1410        mlxsw_reg_slcor_local_port_set(payload, local_port);
1411        mlxsw_reg_slcor_lag_id_set(payload, lag_id);
1412}
1413
1414static inline void mlxsw_reg_slcor_port_add_pack(char *payload,
1415                                                 u8 local_port, u16 lag_id,
1416                                                 u8 port_index)
1417{
1418        mlxsw_reg_slcor_pack(payload, local_port, lag_id,
1419                             MLXSW_REG_SLCOR_COL_LAG_ADD_PORT);
1420        mlxsw_reg_slcor_port_index_set(payload, port_index);
1421}
1422
1423static inline void mlxsw_reg_slcor_port_remove_pack(char *payload,
1424                                                    u8 local_port, u16 lag_id)
1425{
1426        mlxsw_reg_slcor_pack(payload, local_port, lag_id,
1427                             MLXSW_REG_SLCOR_COL_LAG_REMOVE_PORT);
1428}
1429
1430static inline void mlxsw_reg_slcor_col_enable_pack(char *payload,
1431                                                   u8 local_port, u16 lag_id)
1432{
1433        mlxsw_reg_slcor_pack(payload, local_port, lag_id,
1434                             MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_ENABLED);
1435}
1436
1437static inline void mlxsw_reg_slcor_col_disable_pack(char *payload,
1438                                                    u8 local_port, u16 lag_id)
1439{
1440        mlxsw_reg_slcor_pack(payload, local_port, lag_id,
1441                             MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_ENABLED);
1442}
1443
1444/* SPMLR - Switch Port MAC Learning Register
1445 * -----------------------------------------
1446 * Controls the Switch MAC learning policy per port.
1447 */
1448#define MLXSW_REG_SPMLR_ID 0x2018
1449#define MLXSW_REG_SPMLR_LEN 0x8
1450
1451MLXSW_REG_DEFINE(spmlr, MLXSW_REG_SPMLR_ID, MLXSW_REG_SPMLR_LEN);
1452
1453/* reg_spmlr_local_port
1454 * Local port number.
1455 * Access: Index
1456 */
1457MLXSW_ITEM32(reg, spmlr, local_port, 0x00, 16, 8);
1458
1459/* reg_spmlr_sub_port
1460 * Virtual port within the physical port.
1461 * Should be set to 0 when virtual ports are not enabled on the port.
1462 * Access: Index
1463 */
1464MLXSW_ITEM32(reg, spmlr, sub_port, 0x00, 8, 8);
1465
1466enum mlxsw_reg_spmlr_learn_mode {
1467        MLXSW_REG_SPMLR_LEARN_MODE_DISABLE = 0,
1468        MLXSW_REG_SPMLR_LEARN_MODE_ENABLE = 2,
1469        MLXSW_REG_SPMLR_LEARN_MODE_SEC = 3,
1470};
1471
1472/* reg_spmlr_learn_mode
1473 * Learning mode on the port.
1474 * 0 - Learning disabled.
1475 * 2 - Learning enabled.
1476 * 3 - Security mode.
1477 *
1478 * In security mode the switch does not learn MACs on the port, but uses the
1479 * SMAC to see if it exists on another ingress port. If so, the packet is
1480 * classified as a bad packet and is discarded unless the software registers
1481 * to receive port security error packets usign HPKT.
1482 */
1483MLXSW_ITEM32(reg, spmlr, learn_mode, 0x04, 30, 2);
1484
1485static inline void mlxsw_reg_spmlr_pack(char *payload, u8 local_port,
1486                                        enum mlxsw_reg_spmlr_learn_mode mode)
1487{
1488        MLXSW_REG_ZERO(spmlr, payload);
1489        mlxsw_reg_spmlr_local_port_set(payload, local_port);
1490        mlxsw_reg_spmlr_sub_port_set(payload, 0);
1491        mlxsw_reg_spmlr_learn_mode_set(payload, mode);
1492}
1493
1494/* SVFA - Switch VID to FID Allocation Register
1495 * --------------------------------------------
1496 * Controls the VID to FID mapping and {Port, VID} to FID mapping for
1497 * virtualized ports.
1498 */
1499#define MLXSW_REG_SVFA_ID 0x201C
1500#define MLXSW_REG_SVFA_LEN 0x10
1501
1502MLXSW_REG_DEFINE(svfa, MLXSW_REG_SVFA_ID, MLXSW_REG_SVFA_LEN);
1503
1504/* reg_svfa_swid
1505 * Switch partition ID.
1506 * Access: Index
1507 */
1508MLXSW_ITEM32(reg, svfa, swid, 0x00, 24, 8);
1509
1510/* reg_svfa_local_port
1511 * Local port number.
1512 * Access: Index
1513 *
1514 * Note: Reserved for 802.1Q FIDs.
1515 */
1516MLXSW_ITEM32(reg, svfa, local_port, 0x00, 16, 8);
1517
1518enum mlxsw_reg_svfa_mt {
1519        MLXSW_REG_SVFA_MT_VID_TO_FID,
1520        MLXSW_REG_SVFA_MT_PORT_VID_TO_FID,
1521};
1522
1523/* reg_svfa_mapping_table
1524 * Mapping table:
1525 * 0 - VID to FID
1526 * 1 - {Port, VID} to FID
1527 * Access: Index
1528 *
1529 * Note: Reserved for SwitchX-2.
1530 */
1531MLXSW_ITEM32(reg, svfa, mapping_table, 0x00, 8, 3);
1532
1533/* reg_svfa_v
1534 * Valid.
1535 * Valid if set.
1536 * Access: RW
1537 *
1538 * Note: Reserved for SwitchX-2.
1539 */
1540MLXSW_ITEM32(reg, svfa, v, 0x00, 0, 1);
1541
1542/* reg_svfa_fid
1543 * Filtering ID.
1544 * Access: RW
1545 */
1546MLXSW_ITEM32(reg, svfa, fid, 0x04, 16, 16);
1547
1548/* reg_svfa_vid
1549 * VLAN ID.
1550 * Access: Index
1551 */
1552MLXSW_ITEM32(reg, svfa, vid, 0x04, 0, 12);
1553
1554/* reg_svfa_counter_set_type
1555 * Counter set type for flow counters.
1556 * Access: RW
1557 *
1558 * Note: Reserved for SwitchX-2.
1559 */
1560MLXSW_ITEM32(reg, svfa, counter_set_type, 0x08, 24, 8);
1561
1562/* reg_svfa_counter_index
1563 * Counter index for flow counters.
1564 * Access: RW
1565 *
1566 * Note: Reserved for SwitchX-2.
1567 */
1568MLXSW_ITEM32(reg, svfa, counter_index, 0x08, 0, 24);
1569
1570static inline void mlxsw_reg_svfa_pack(char *payload, u8 local_port,
1571                                       enum mlxsw_reg_svfa_mt mt, bool valid,
1572                                       u16 fid, u16 vid)
1573{
1574        MLXSW_REG_ZERO(svfa, payload);
1575        local_port = mt == MLXSW_REG_SVFA_MT_VID_TO_FID ? 0 : local_port;
1576        mlxsw_reg_svfa_swid_set(payload, 0);
1577        mlxsw_reg_svfa_local_port_set(payload, local_port);
1578        mlxsw_reg_svfa_mapping_table_set(payload, mt);
1579        mlxsw_reg_svfa_v_set(payload, valid);
1580        mlxsw_reg_svfa_fid_set(payload, fid);
1581        mlxsw_reg_svfa_vid_set(payload, vid);
1582}
1583
1584/* SVPE - Switch Virtual-Port Enabling Register
1585 * --------------------------------------------
1586 * Enables port virtualization.
1587 */
1588#define MLXSW_REG_SVPE_ID 0x201E
1589#define MLXSW_REG_SVPE_LEN 0x4
1590
1591MLXSW_REG_DEFINE(svpe, MLXSW_REG_SVPE_ID, MLXSW_REG_SVPE_LEN);
1592
1593/* reg_svpe_local_port
1594 * Local port number
1595 * Access: Index
1596 *
1597 * Note: CPU port is not supported (uses VLAN mode only).
1598 */
1599MLXSW_ITEM32(reg, svpe, local_port, 0x00, 16, 8);
1600
1601/* reg_svpe_vp_en
1602 * Virtual port enable.
1603 * 0 - Disable, VLAN mode (VID to FID).
1604 * 1 - Enable, Virtual port mode ({Port, VID} to FID).
1605 * Access: RW
1606 */
1607MLXSW_ITEM32(reg, svpe, vp_en, 0x00, 8, 1);
1608
1609static inline void mlxsw_reg_svpe_pack(char *payload, u8 local_port,
1610                                       bool enable)
1611{
1612        MLXSW_REG_ZERO(svpe, payload);
1613        mlxsw_reg_svpe_local_port_set(payload, local_port);
1614        mlxsw_reg_svpe_vp_en_set(payload, enable);
1615}
1616
1617/* SFMR - Switch FID Management Register
1618 * -------------------------------------
1619 * Creates and configures FIDs.
1620 */
1621#define MLXSW_REG_SFMR_ID 0x201F
1622#define MLXSW_REG_SFMR_LEN 0x18
1623
1624MLXSW_REG_DEFINE(sfmr, MLXSW_REG_SFMR_ID, MLXSW_REG_SFMR_LEN);
1625
1626enum mlxsw_reg_sfmr_op {
1627        MLXSW_REG_SFMR_OP_CREATE_FID,
1628        MLXSW_REG_SFMR_OP_DESTROY_FID,
1629};
1630
1631/* reg_sfmr_op
1632 * Operation.
1633 * 0 - Create or edit FID.
1634 * 1 - Destroy FID.
1635 * Access: WO
1636 */
1637MLXSW_ITEM32(reg, sfmr, op, 0x00, 24, 4);
1638
1639/* reg_sfmr_fid
1640 * Filtering ID.
1641 * Access: Index
1642 */
1643MLXSW_ITEM32(reg, sfmr, fid, 0x00, 0, 16);
1644
1645/* reg_sfmr_fid_offset
1646 * FID offset.
1647 * Used to point into the flooding table selected by SFGC register if
1648 * the table is of type FID-Offset. Otherwise, this field is reserved.
1649 * Access: RW
1650 */
1651MLXSW_ITEM32(reg, sfmr, fid_offset, 0x08, 0, 16);
1652
1653/* reg_sfmr_vtfp
1654 * Valid Tunnel Flood Pointer.
1655 * If not set, then nve_tunnel_flood_ptr is reserved and considered NULL.
1656 * Access: RW
1657 *
1658 * Note: Reserved for 802.1Q FIDs.
1659 */
1660MLXSW_ITEM32(reg, sfmr, vtfp, 0x0C, 31, 1);
1661
1662/* reg_sfmr_nve_tunnel_flood_ptr
1663 * Underlay Flooding and BC Pointer.
1664 * Used as a pointer to the first entry of the group based link lists of
1665 * flooding or BC entries (for NVE tunnels).
1666 * Access: RW
1667 */
1668MLXSW_ITEM32(reg, sfmr, nve_tunnel_flood_ptr, 0x0C, 0, 24);
1669
1670/* reg_sfmr_vv
1671 * VNI Valid.
1672 * If not set, then vni is reserved.
1673 * Access: RW
1674 *
1675 * Note: Reserved for 802.1Q FIDs.
1676 */
1677MLXSW_ITEM32(reg, sfmr, vv, 0x10, 31, 1);
1678
1679/* reg_sfmr_vni
1680 * Virtual Network Identifier.
1681 * Access: RW
1682 *
1683 * Note: A given VNI can only be assigned to one FID.
1684 */
1685MLXSW_ITEM32(reg, sfmr, vni, 0x10, 0, 24);
1686
1687static inline void mlxsw_reg_sfmr_pack(char *payload,
1688                                       enum mlxsw_reg_sfmr_op op, u16 fid,
1689                                       u16 fid_offset)
1690{
1691        MLXSW_REG_ZERO(sfmr, payload);
1692        mlxsw_reg_sfmr_op_set(payload, op);
1693        mlxsw_reg_sfmr_fid_set(payload, fid);
1694        mlxsw_reg_sfmr_fid_offset_set(payload, fid_offset);
1695        mlxsw_reg_sfmr_vtfp_set(payload, false);
1696        mlxsw_reg_sfmr_vv_set(payload, false);
1697}
1698
1699/* SPVMLR - Switch Port VLAN MAC Learning Register
1700 * -----------------------------------------------
1701 * Controls the switch MAC learning policy per {Port, VID}.
1702 */
1703#define MLXSW_REG_SPVMLR_ID 0x2020
1704#define MLXSW_REG_SPVMLR_BASE_LEN 0x04 /* base length, without records */
1705#define MLXSW_REG_SPVMLR_REC_LEN 0x04 /* record length */
1706#define MLXSW_REG_SPVMLR_REC_MAX_COUNT 255
1707#define MLXSW_REG_SPVMLR_LEN (MLXSW_REG_SPVMLR_BASE_LEN + \
1708                              MLXSW_REG_SPVMLR_REC_LEN * \
1709                              MLXSW_REG_SPVMLR_REC_MAX_COUNT)
1710
1711MLXSW_REG_DEFINE(spvmlr, MLXSW_REG_SPVMLR_ID, MLXSW_REG_SPVMLR_LEN);
1712
1713/* reg_spvmlr_local_port
1714 * Local ingress port.
1715 * Access: Index
1716 *
1717 * Note: CPU port is not supported.
1718 */
1719MLXSW_ITEM32(reg, spvmlr, local_port, 0x00, 16, 8);
1720
1721/* reg_spvmlr_num_rec
1722 * Number of records to update.
1723 * Access: OP
1724 */
1725MLXSW_ITEM32(reg, spvmlr, num_rec, 0x00, 0, 8);
1726
1727/* reg_spvmlr_rec_learn_enable
1728 * 0 - Disable learning for {Port, VID}.
1729 * 1 - Enable learning for {Port, VID}.
1730 * Access: RW
1731 */
1732MLXSW_ITEM32_INDEXED(reg, spvmlr, rec_learn_enable, MLXSW_REG_SPVMLR_BASE_LEN,
1733                     31, 1, MLXSW_REG_SPVMLR_REC_LEN, 0x00, false);
1734
1735/* reg_spvmlr_rec_vid
1736 * VLAN ID to be added/removed from port or for querying.
1737 * Access: Index
1738 */
1739MLXSW_ITEM32_INDEXED(reg, spvmlr, rec_vid, MLXSW_REG_SPVMLR_BASE_LEN, 0, 12,
1740                     MLXSW_REG_SPVMLR_REC_LEN, 0x00, false);
1741
1742static inline void mlxsw_reg_spvmlr_pack(char *payload, u8 local_port,
1743                                         u16 vid_begin, u16 vid_end,
1744                                         bool learn_enable)
1745{
1746        int num_rec = vid_end - vid_begin + 1;
1747        int i;
1748
1749        WARN_ON(num_rec < 1 || num_rec > MLXSW_REG_SPVMLR_REC_MAX_COUNT);
1750
1751        MLXSW_REG_ZERO(spvmlr, payload);
1752        mlxsw_reg_spvmlr_local_port_set(payload, local_port);
1753        mlxsw_reg_spvmlr_num_rec_set(payload, num_rec);
1754
1755        for (i = 0; i < num_rec; i++) {
1756                mlxsw_reg_spvmlr_rec_learn_enable_set(payload, i, learn_enable);
1757                mlxsw_reg_spvmlr_rec_vid_set(payload, i, vid_begin + i);
1758        }
1759}
1760
1761/* CWTP - Congetion WRED ECN TClass Profile
1762 * ----------------------------------------
1763 * Configures the profiles for queues of egress port and traffic class
1764 */
1765#define MLXSW_REG_CWTP_ID 0x2802
1766#define MLXSW_REG_CWTP_BASE_LEN 0x28
1767#define MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN 0x08
1768#define MLXSW_REG_CWTP_LEN 0x40
1769
1770MLXSW_REG_DEFINE(cwtp, MLXSW_REG_CWTP_ID, MLXSW_REG_CWTP_LEN);
1771
1772/* reg_cwtp_local_port
1773 * Local port number
1774 * Not supported for CPU port
1775 * Access: Index
1776 */
1777MLXSW_ITEM32(reg, cwtp, local_port, 0, 16, 8);
1778
1779/* reg_cwtp_traffic_class
1780 * Traffic Class to configure
1781 * Access: Index
1782 */
1783MLXSW_ITEM32(reg, cwtp, traffic_class, 32, 0, 8);
1784
1785/* reg_cwtp_profile_min
1786 * Minimum Average Queue Size of the profile in cells.
1787 * Access: RW
1788 */
1789MLXSW_ITEM32_INDEXED(reg, cwtp, profile_min, MLXSW_REG_CWTP_BASE_LEN,
1790                     0, 20, MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN, 0, false);
1791
1792/* reg_cwtp_profile_percent
1793 * Percentage of WRED and ECN marking for maximum Average Queue size
1794 * Range is 0 to 100, units of integer percentage
1795 * Access: RW
1796 */
1797MLXSW_ITEM32_INDEXED(reg, cwtp, profile_percent, MLXSW_REG_CWTP_BASE_LEN,
1798                     24, 7, MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN, 4, false);
1799
1800/* reg_cwtp_profile_max
1801 * Maximum Average Queue size of the profile in cells
1802 * Access: RW
1803 */
1804MLXSW_ITEM32_INDEXED(reg, cwtp, profile_max, MLXSW_REG_CWTP_BASE_LEN,
1805                     0, 20, MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN, 4, false);
1806
1807#define MLXSW_REG_CWTP_MIN_VALUE 64
1808#define MLXSW_REG_CWTP_MAX_PROFILE 2
1809#define MLXSW_REG_CWTP_DEFAULT_PROFILE 1
1810
1811static inline void mlxsw_reg_cwtp_pack(char *payload, u8 local_port,
1812                                       u8 traffic_class)
1813{
1814        int i;
1815
1816        MLXSW_REG_ZERO(cwtp, payload);
1817        mlxsw_reg_cwtp_local_port_set(payload, local_port);
1818        mlxsw_reg_cwtp_traffic_class_set(payload, traffic_class);
1819
1820        for (i = 0; i <= MLXSW_REG_CWTP_MAX_PROFILE; i++) {
1821                mlxsw_reg_cwtp_profile_min_set(payload, i,
1822                                               MLXSW_REG_CWTP_MIN_VALUE);
1823                mlxsw_reg_cwtp_profile_max_set(payload, i,
1824                                               MLXSW_REG_CWTP_MIN_VALUE);
1825        }
1826}
1827
1828#define MLXSW_REG_CWTP_PROFILE_TO_INDEX(profile) (profile - 1)
1829
1830static inline void
1831mlxsw_reg_cwtp_profile_pack(char *payload, u8 profile, u32 min, u32 max,
1832                            u32 probability)
1833{
1834        u8 index = MLXSW_REG_CWTP_PROFILE_TO_INDEX(profile);
1835
1836        mlxsw_reg_cwtp_profile_min_set(payload, index, min);
1837        mlxsw_reg_cwtp_profile_max_set(payload, index, max);
1838        mlxsw_reg_cwtp_profile_percent_set(payload, index, probability);
1839}
1840
1841/* CWTPM - Congestion WRED ECN TClass and Pool Mapping
1842 * ---------------------------------------------------
1843 * The CWTPM register maps each egress port and traffic class to profile num.
1844 */
1845#define MLXSW_REG_CWTPM_ID 0x2803
1846#define MLXSW_REG_CWTPM_LEN 0x44
1847
1848MLXSW_REG_DEFINE(cwtpm, MLXSW_REG_CWTPM_ID, MLXSW_REG_CWTPM_LEN);
1849
1850/* reg_cwtpm_local_port
1851 * Local port number
1852 * Not supported for CPU port
1853 * Access: Index
1854 */
1855MLXSW_ITEM32(reg, cwtpm, local_port, 0, 16, 8);
1856
1857/* reg_cwtpm_traffic_class
1858 * Traffic Class to configure
1859 * Access: Index
1860 */
1861MLXSW_ITEM32(reg, cwtpm, traffic_class, 32, 0, 8);
1862
1863/* reg_cwtpm_ew
1864 * Control enablement of WRED for traffic class:
1865 * 0 - Disable
1866 * 1 - Enable
1867 * Access: RW
1868 */
1869MLXSW_ITEM32(reg, cwtpm, ew, 36, 1, 1);
1870
1871/* reg_cwtpm_ee
1872 * Control enablement of ECN for traffic class:
1873 * 0 - Disable
1874 * 1 - Enable
1875 * Access: RW
1876 */
1877MLXSW_ITEM32(reg, cwtpm, ee, 36, 0, 1);
1878
1879/* reg_cwtpm_tcp_g
1880 * TCP Green Profile.
1881 * Index of the profile within {port, traffic class} to use.
1882 * 0 for disabling both WRED and ECN for this type of traffic.
1883 * Access: RW
1884 */
1885MLXSW_ITEM32(reg, cwtpm, tcp_g, 52, 0, 2);
1886
1887/* reg_cwtpm_tcp_y
1888 * TCP Yellow Profile.
1889 * Index of the profile within {port, traffic class} to use.
1890 * 0 for disabling both WRED and ECN for this type of traffic.
1891 * Access: RW
1892 */
1893MLXSW_ITEM32(reg, cwtpm, tcp_y, 56, 16, 2);
1894
1895/* reg_cwtpm_tcp_r
1896 * TCP Red Profile.
1897 * Index of the profile within {port, traffic class} to use.
1898 * 0 for disabling both WRED and ECN for this type of traffic.
1899 * Access: RW
1900 */
1901MLXSW_ITEM32(reg, cwtpm, tcp_r, 56, 0, 2);
1902
1903/* reg_cwtpm_ntcp_g
1904 * Non-TCP Green Profile.
1905 * Index of the profile within {port, traffic class} to use.
1906 * 0 for disabling both WRED and ECN for this type of traffic.
1907 * Access: RW
1908 */
1909MLXSW_ITEM32(reg, cwtpm, ntcp_g, 60, 0, 2);
1910
1911/* reg_cwtpm_ntcp_y
1912 * Non-TCP Yellow Profile.
1913 * Index of the profile within {port, traffic class} to use.
1914 * 0 for disabling both WRED and ECN for this type of traffic.
1915 * Access: RW
1916 */
1917MLXSW_ITEM32(reg, cwtpm, ntcp_y, 64, 16, 2);
1918
1919/* reg_cwtpm_ntcp_r
1920 * Non-TCP Red Profile.
1921 * Index of the profile within {port, traffic class} to use.
1922 * 0 for disabling both WRED and ECN for this type of traffic.
1923 * Access: RW
1924 */
1925MLXSW_ITEM32(reg, cwtpm, ntcp_r, 64, 0, 2);
1926
1927#define MLXSW_REG_CWTPM_RESET_PROFILE 0
1928
1929static inline void mlxsw_reg_cwtpm_pack(char *payload, u8 local_port,
1930                                        u8 traffic_class, u8 profile,
1931                                        bool wred, bool ecn)
1932{
1933        MLXSW_REG_ZERO(cwtpm, payload);
1934        mlxsw_reg_cwtpm_local_port_set(payload, local_port);
1935        mlxsw_reg_cwtpm_traffic_class_set(payload, traffic_class);
1936        mlxsw_reg_cwtpm_ew_set(payload, wred);
1937        mlxsw_reg_cwtpm_ee_set(payload, ecn);
1938        mlxsw_reg_cwtpm_tcp_g_set(payload, profile);
1939        mlxsw_reg_cwtpm_tcp_y_set(payload, profile);
1940        mlxsw_reg_cwtpm_tcp_r_set(payload, profile);
1941        mlxsw_reg_cwtpm_ntcp_g_set(payload, profile);
1942        mlxsw_reg_cwtpm_ntcp_y_set(payload, profile);
1943        mlxsw_reg_cwtpm_ntcp_r_set(payload, profile);
1944}
1945
1946/* PPBT - Policy-Engine Port Binding Table
1947 * ---------------------------------------
1948 * This register is used for configuration of the Port Binding Table.
1949 */
1950#define MLXSW_REG_PPBT_ID 0x3002
1951#define MLXSW_REG_PPBT_LEN 0x14
1952
1953MLXSW_REG_DEFINE(ppbt, MLXSW_REG_PPBT_ID, MLXSW_REG_PPBT_LEN);
1954
1955enum mlxsw_reg_pxbt_e {
1956        MLXSW_REG_PXBT_E_IACL,
1957        MLXSW_REG_PXBT_E_EACL,
1958};
1959
1960/* reg_ppbt_e
1961 * Access: Index
1962 */
1963MLXSW_ITEM32(reg, ppbt, e, 0x00, 31, 1);
1964
1965enum mlxsw_reg_pxbt_op {
1966        MLXSW_REG_PXBT_OP_BIND,
1967        MLXSW_REG_PXBT_OP_UNBIND,
1968};
1969
1970/* reg_ppbt_op
1971 * Access: RW
1972 */
1973MLXSW_ITEM32(reg, ppbt, op, 0x00, 28, 3);
1974
1975/* reg_ppbt_local_port
1976 * Local port. Not including CPU port.
1977 * Access: Index
1978 */
1979MLXSW_ITEM32(reg, ppbt, local_port, 0x00, 16, 8);
1980
1981/* reg_ppbt_g
1982 * group - When set, the binding is of an ACL group. When cleared,
1983 * the binding is of an ACL.
1984 * Must be set to 1 for Spectrum.
1985 * Access: RW
1986 */
1987MLXSW_ITEM32(reg, ppbt, g, 0x10, 31, 1);
1988
1989/* reg_ppbt_acl_info
1990 * ACL/ACL group identifier. If the g bit is set, this field should hold
1991 * the acl_group_id, else it should hold the acl_id.
1992 * Access: RW
1993 */
1994MLXSW_ITEM32(reg, ppbt, acl_info, 0x10, 0, 16);
1995
1996static inline void mlxsw_reg_ppbt_pack(char *payload, enum mlxsw_reg_pxbt_e e,
1997                                       enum mlxsw_reg_pxbt_op op,
1998                                       u8 local_port, u16 acl_info)
1999{
2000        MLXSW_REG_ZERO(ppbt, payload);
2001        mlxsw_reg_ppbt_e_set(payload, e);
2002        mlxsw_reg_ppbt_op_set(payload, op);
2003        mlxsw_reg_ppbt_local_port_set(payload, local_port);
2004        mlxsw_reg_ppbt_g_set(payload, true);
2005        mlxsw_reg_ppbt_acl_info_set(payload, acl_info);
2006}
2007
2008/* PACL - Policy-Engine ACL Register
2009 * ---------------------------------
2010 * This register is used for configuration of the ACL.
2011 */
2012#define MLXSW_REG_PACL_ID 0x3004
2013#define MLXSW_REG_PACL_LEN 0x70
2014
2015MLXSW_REG_DEFINE(pacl, MLXSW_REG_PACL_ID, MLXSW_REG_PACL_LEN);
2016
2017/* reg_pacl_v
2018 * Valid. Setting the v bit makes the ACL valid. It should not be cleared
2019 * while the ACL is bounded to either a port, VLAN or ACL rule.
2020 * Access: RW
2021 */
2022MLXSW_ITEM32(reg, pacl, v, 0x00, 24, 1);
2023
2024/* reg_pacl_acl_id
2025 * An identifier representing the ACL (managed by software)
2026 * Range 0 .. cap_max_acl_regions - 1
2027 * Access: Index
2028 */
2029MLXSW_ITEM32(reg, pacl, acl_id, 0x08, 0, 16);
2030
2031#define MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN 16
2032
2033/* reg_pacl_tcam_region_info
2034 * Opaque object that represents a TCAM region.
2035 * Obtained through PTAR register.
2036 * Access: RW
2037 */
2038MLXSW_ITEM_BUF(reg, pacl, tcam_region_info, 0x30,
2039               MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2040
2041static inline void mlxsw_reg_pacl_pack(char *payload, u16 acl_id,
2042                                       bool valid, const char *tcam_region_info)
2043{
2044        MLXSW_REG_ZERO(pacl, payload);
2045        mlxsw_reg_pacl_acl_id_set(payload, acl_id);
2046        mlxsw_reg_pacl_v_set(payload, valid);
2047        mlxsw_reg_pacl_tcam_region_info_memcpy_to(payload, tcam_region_info);
2048}
2049
2050/* PAGT - Policy-Engine ACL Group Table
2051 * ------------------------------------
2052 * This register is used for configuration of the ACL Group Table.
2053 */
2054#define MLXSW_REG_PAGT_ID 0x3005
2055#define MLXSW_REG_PAGT_BASE_LEN 0x30
2056#define MLXSW_REG_PAGT_ACL_LEN 4
2057#define MLXSW_REG_PAGT_ACL_MAX_NUM 16
2058#define MLXSW_REG_PAGT_LEN (MLXSW_REG_PAGT_BASE_LEN + \
2059                MLXSW_REG_PAGT_ACL_MAX_NUM * MLXSW_REG_PAGT_ACL_LEN)
2060
2061MLXSW_REG_DEFINE(pagt, MLXSW_REG_PAGT_ID, MLXSW_REG_PAGT_LEN);
2062
2063/* reg_pagt_size
2064 * Number of ACLs in the group.
2065 * Size 0 invalidates a group.
2066 * Range 0 .. cap_max_acl_group_size (hard coded to 16 for now)
2067 * Total number of ACLs in all groups must be lower or equal
2068 * to cap_max_acl_tot_groups
2069 * Note: a group which is binded must not be invalidated
2070 * Access: Index
2071 */
2072MLXSW_ITEM32(reg, pagt, size, 0x00, 0, 8);
2073
2074/* reg_pagt_acl_group_id
2075 * An identifier (numbered from 0..cap_max_acl_groups-1) representing
2076 * the ACL Group identifier (managed by software).
2077 * Access: Index
2078 */
2079MLXSW_ITEM32(reg, pagt, acl_group_id, 0x08, 0, 16);
2080
2081/* reg_pagt_acl_id
2082 * ACL identifier
2083 * Access: RW
2084 */
2085MLXSW_ITEM32_INDEXED(reg, pagt, acl_id, 0x30, 0, 16, 0x04, 0x00, false);
2086
2087static inline void mlxsw_reg_pagt_pack(char *payload, u16 acl_group_id)
2088{
2089        MLXSW_REG_ZERO(pagt, payload);
2090        mlxsw_reg_pagt_acl_group_id_set(payload, acl_group_id);
2091}
2092
2093static inline void mlxsw_reg_pagt_acl_id_pack(char *payload, int index,
2094                                              u16 acl_id)
2095{
2096        u8 size = mlxsw_reg_pagt_size_get(payload);
2097
2098        if (index >= size)
2099                mlxsw_reg_pagt_size_set(payload, index + 1);
2100        mlxsw_reg_pagt_acl_id_set(payload, index, acl_id);
2101}
2102
2103/* PTAR - Policy-Engine TCAM Allocation Register
2104 * ---------------------------------------------
2105 * This register is used for allocation of regions in the TCAM.
2106 * Note: Query method is not supported on this register.
2107 */
2108#define MLXSW_REG_PTAR_ID 0x3006
2109#define MLXSW_REG_PTAR_BASE_LEN 0x20
2110#define MLXSW_REG_PTAR_KEY_ID_LEN 1
2111#define MLXSW_REG_PTAR_KEY_ID_MAX_NUM 16
2112#define MLXSW_REG_PTAR_LEN (MLXSW_REG_PTAR_BASE_LEN + \
2113                MLXSW_REG_PTAR_KEY_ID_MAX_NUM * MLXSW_REG_PTAR_KEY_ID_LEN)
2114
2115MLXSW_REG_DEFINE(ptar, MLXSW_REG_PTAR_ID, MLXSW_REG_PTAR_LEN);
2116
2117enum mlxsw_reg_ptar_op {
2118        /* allocate a TCAM region */
2119        MLXSW_REG_PTAR_OP_ALLOC,
2120        /* resize a TCAM region */
2121        MLXSW_REG_PTAR_OP_RESIZE,
2122        /* deallocate TCAM region */
2123        MLXSW_REG_PTAR_OP_FREE,
2124        /* test allocation */
2125        MLXSW_REG_PTAR_OP_TEST,
2126};
2127
2128/* reg_ptar_op
2129 * Access: OP
2130 */
2131MLXSW_ITEM32(reg, ptar, op, 0x00, 28, 4);
2132
2133/* reg_ptar_action_set_type
2134 * Type of action set to be used on this region.
2135 * For Spectrum, this is always type 2 - "flexible"
2136 * Access: WO
2137 */
2138MLXSW_ITEM32(reg, ptar, action_set_type, 0x00, 16, 8);
2139
2140/* reg_ptar_key_type
2141 * TCAM key type for the region.
2142 * For Spectrum, this is always type 0x50 - "FLEX_KEY"
2143 * Access: WO
2144 */
2145MLXSW_ITEM32(reg, ptar, key_type, 0x00, 0, 8);
2146
2147/* reg_ptar_region_size
2148 * TCAM region size. When allocating/resizing this is the requested size,
2149 * the response is the actual size. Note that actual size may be
2150 * larger than requested.
2151 * Allowed range 1 .. cap_max_rules-1
2152 * Reserved during op deallocate.
2153 * Access: WO
2154 */
2155MLXSW_ITEM32(reg, ptar, region_size, 0x04, 0, 16);
2156
2157/* reg_ptar_region_id
2158 * Region identifier
2159 * Range 0 .. cap_max_regions-1
2160 * Access: Index
2161 */
2162MLXSW_ITEM32(reg, ptar, region_id, 0x08, 0, 16);
2163
2164/* reg_ptar_tcam_region_info
2165 * Opaque object that represents the TCAM region.
2166 * Returned when allocating a region.
2167 * Provided by software for ACL generation and region deallocation and resize.
2168 * Access: RW
2169 */
2170MLXSW_ITEM_BUF(reg, ptar, tcam_region_info, 0x10,
2171               MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2172
2173/* reg_ptar_flexible_key_id
2174 * Identifier of the Flexible Key.
2175 * Only valid if key_type == "FLEX_KEY"
2176 * The key size will be rounded up to one of the following values:
2177 * 9B, 18B, 36B, 54B.
2178 * This field is reserved for in resize operation.
2179 * Access: WO
2180 */
2181MLXSW_ITEM8_INDEXED(reg, ptar, flexible_key_id, 0x20, 0, 8,
2182                    MLXSW_REG_PTAR_KEY_ID_LEN, 0x00, false);
2183
2184static inline void mlxsw_reg_ptar_pack(char *payload, enum mlxsw_reg_ptar_op op,
2185                                       u16 region_size, u16 region_id,
2186                                       const char *tcam_region_info)
2187{
2188        MLXSW_REG_ZERO(ptar, payload);
2189        mlxsw_reg_ptar_op_set(payload, op);
2190        mlxsw_reg_ptar_action_set_type_set(payload, 2); /* "flexible" */
2191        mlxsw_reg_ptar_key_type_set(payload, 0x50); /* "FLEX_KEY" */
2192        mlxsw_reg_ptar_region_size_set(payload, region_size);
2193        mlxsw_reg_ptar_region_id_set(payload, region_id);
2194        mlxsw_reg_ptar_tcam_region_info_memcpy_to(payload, tcam_region_info);
2195}
2196
2197static inline void mlxsw_reg_ptar_key_id_pack(char *payload, int index,
2198                                              u16 key_id)
2199{
2200        mlxsw_reg_ptar_flexible_key_id_set(payload, index, key_id);
2201}
2202
2203static inline void mlxsw_reg_ptar_unpack(char *payload, char *tcam_region_info)
2204{
2205        mlxsw_reg_ptar_tcam_region_info_memcpy_from(payload, tcam_region_info);
2206}
2207
2208/* PPBS - Policy-Engine Policy Based Switching Register
2209 * ----------------------------------------------------
2210 * This register retrieves and sets Policy Based Switching Table entries.
2211 */
2212#define MLXSW_REG_PPBS_ID 0x300C
2213#define MLXSW_REG_PPBS_LEN 0x14
2214
2215MLXSW_REG_DEFINE(ppbs, MLXSW_REG_PPBS_ID, MLXSW_REG_PPBS_LEN);
2216
2217/* reg_ppbs_pbs_ptr
2218 * Index into the PBS table.
2219 * For Spectrum, the index points to the KVD Linear.
2220 * Access: Index
2221 */
2222MLXSW_ITEM32(reg, ppbs, pbs_ptr, 0x08, 0, 24);
2223
2224/* reg_ppbs_system_port
2225 * Unique port identifier for the final destination of the packet.
2226 * Access: RW
2227 */
2228MLXSW_ITEM32(reg, ppbs, system_port, 0x10, 0, 16);
2229
2230static inline void mlxsw_reg_ppbs_pack(char *payload, u32 pbs_ptr,
2231                                       u16 system_port)
2232{
2233        MLXSW_REG_ZERO(ppbs, payload);
2234        mlxsw_reg_ppbs_pbs_ptr_set(payload, pbs_ptr);
2235        mlxsw_reg_ppbs_system_port_set(payload, system_port);
2236}
2237
2238/* PRCR - Policy-Engine Rules Copy Register
2239 * ----------------------------------------
2240 * This register is used for accessing rules within a TCAM region.
2241 */
2242#define MLXSW_REG_PRCR_ID 0x300D
2243#define MLXSW_REG_PRCR_LEN 0x40
2244
2245MLXSW_REG_DEFINE(prcr, MLXSW_REG_PRCR_ID, MLXSW_REG_PRCR_LEN);
2246
2247enum mlxsw_reg_prcr_op {
2248        /* Move rules. Moves the rules from "tcam_region_info" starting
2249         * at offset "offset" to "dest_tcam_region_info"
2250         * at offset "dest_offset."
2251         */
2252        MLXSW_REG_PRCR_OP_MOVE,
2253        /* Copy rules. Copies the rules from "tcam_region_info" starting
2254         * at offset "offset" to "dest_tcam_region_info"
2255         * at offset "dest_offset."
2256         */
2257        MLXSW_REG_PRCR_OP_COPY,
2258};
2259
2260/* reg_prcr_op
2261 * Access: OP
2262 */
2263MLXSW_ITEM32(reg, prcr, op, 0x00, 28, 4);
2264
2265/* reg_prcr_offset
2266 * Offset within the source region to copy/move from.
2267 * Access: Index
2268 */
2269MLXSW_ITEM32(reg, prcr, offset, 0x00, 0, 16);
2270
2271/* reg_prcr_size
2272 * The number of rules to copy/move.
2273 * Access: WO
2274 */
2275MLXSW_ITEM32(reg, prcr, size, 0x04, 0, 16);
2276
2277/* reg_prcr_tcam_region_info
2278 * Opaque object that represents the source TCAM region.
2279 * Access: Index
2280 */
2281MLXSW_ITEM_BUF(reg, prcr, tcam_region_info, 0x10,
2282               MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2283
2284/* reg_prcr_dest_offset
2285 * Offset within the source region to copy/move to.
2286 * Access: Index
2287 */
2288MLXSW_ITEM32(reg, prcr, dest_offset, 0x20, 0, 16);
2289
2290/* reg_prcr_dest_tcam_region_info
2291 * Opaque object that represents the destination TCAM region.
2292 * Access: Index
2293 */
2294MLXSW_ITEM_BUF(reg, prcr, dest_tcam_region_info, 0x30,
2295               MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2296
2297static inline void mlxsw_reg_prcr_pack(char *payload, enum mlxsw_reg_prcr_op op,
2298                                       const char *src_tcam_region_info,
2299                                       u16 src_offset,
2300                                       const char *dest_tcam_region_info,
2301                                       u16 dest_offset, u16 size)
2302{
2303        MLXSW_REG_ZERO(prcr, payload);
2304        mlxsw_reg_prcr_op_set(payload, op);
2305        mlxsw_reg_prcr_offset_set(payload, src_offset);
2306        mlxsw_reg_prcr_size_set(payload, size);
2307        mlxsw_reg_prcr_tcam_region_info_memcpy_to(payload,
2308                                                  src_tcam_region_info);
2309        mlxsw_reg_prcr_dest_offset_set(payload, dest_offset);
2310        mlxsw_reg_prcr_dest_tcam_region_info_memcpy_to(payload,
2311                                                       dest_tcam_region_info);
2312}
2313
2314/* PEFA - Policy-Engine Extended Flexible Action Register
2315 * ------------------------------------------------------
2316 * This register is used for accessing an extended flexible action entry
2317 * in the central KVD Linear Database.
2318 */
2319#define MLXSW_REG_PEFA_ID 0x300F
2320#define MLXSW_REG_PEFA_LEN 0xB0
2321
2322MLXSW_REG_DEFINE(pefa, MLXSW_REG_PEFA_ID, MLXSW_REG_PEFA_LEN);
2323
2324/* reg_pefa_index
2325 * Index in the KVD Linear Centralized Database.
2326 * Access: Index
2327 */
2328MLXSW_ITEM32(reg, pefa, index, 0x00, 0, 24);
2329
2330#define MLXSW_REG_FLEX_ACTION_SET_LEN 0xA8
2331
2332/* reg_pefa_flex_action_set
2333 * Action-set to perform when rule is matched.
2334 * Must be zero padded if action set is shorter.
2335 * Access: RW
2336 */
2337MLXSW_ITEM_BUF(reg, pefa, flex_action_set, 0x08, MLXSW_REG_FLEX_ACTION_SET_LEN);
2338
2339static inline void mlxsw_reg_pefa_pack(char *payload, u32 index,
2340                                       const char *flex_action_set)
2341{
2342        MLXSW_REG_ZERO(pefa, payload);
2343        mlxsw_reg_pefa_index_set(payload, index);
2344        mlxsw_reg_pefa_flex_action_set_memcpy_to(payload, flex_action_set);
2345}
2346
2347/* PTCE-V2 - Policy-Engine TCAM Entry Register Version 2
2348 * -----------------------------------------------------
2349 * This register is used for accessing rules within a TCAM region.
2350 * It is a new version of PTCE in order to support wider key,
2351 * mask and action within a TCAM region. This register is not supported
2352 * by SwitchX and SwitchX-2.
2353 */
2354#define MLXSW_REG_PTCE2_ID 0x3017
2355#define MLXSW_REG_PTCE2_LEN 0x1D8
2356
2357MLXSW_REG_DEFINE(ptce2, MLXSW_REG_PTCE2_ID, MLXSW_REG_PTCE2_LEN);
2358
2359/* reg_ptce2_v
2360 * Valid.
2361 * Access: RW
2362 */
2363MLXSW_ITEM32(reg, ptce2, v, 0x00, 31, 1);
2364
2365/* reg_ptce2_a
2366 * Activity. Set if a packet lookup has hit on the specific entry.
2367 * To clear the "a" bit, use "clear activity" op or "clear on read" op.
2368 * Access: RO
2369 */
2370MLXSW_ITEM32(reg, ptce2, a, 0x00, 30, 1);
2371
2372enum mlxsw_reg_ptce2_op {
2373        /* Read operation. */
2374        MLXSW_REG_PTCE2_OP_QUERY_READ = 0,
2375        /* clear on read operation. Used to read entry
2376         * and clear Activity bit.
2377         */
2378        MLXSW_REG_PTCE2_OP_QUERY_CLEAR_ON_READ = 1,
2379        /* Write operation. Used to write a new entry to the table.
2380         * All R/W fields are relevant for new entry. Activity bit is set
2381         * for new entries - Note write with v = 0 will delete the entry.
2382         */
2383        MLXSW_REG_PTCE2_OP_WRITE_WRITE = 0,
2384        /* Update action. Only action set will be updated. */
2385        MLXSW_REG_PTCE2_OP_WRITE_UPDATE = 1,
2386        /* Clear activity. A bit is cleared for the entry. */
2387        MLXSW_REG_PTCE2_OP_WRITE_CLEAR_ACTIVITY = 2,
2388};
2389
2390/* reg_ptce2_op
2391 * Access: OP
2392 */
2393MLXSW_ITEM32(reg, ptce2, op, 0x00, 20, 3);
2394
2395/* reg_ptce2_offset
2396 * Access: Index
2397 */
2398MLXSW_ITEM32(reg, ptce2, offset, 0x00, 0, 16);
2399
2400/* reg_ptce2_tcam_region_info
2401 * Opaque object that represents the TCAM region.
2402 * Access: Index
2403 */
2404MLXSW_ITEM_BUF(reg, ptce2, tcam_region_info, 0x10,
2405               MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2406
2407#define MLXSW_REG_PTCE2_FLEX_KEY_BLOCKS_LEN 96
2408
2409/* reg_ptce2_flex_key_blocks
2410 * ACL Key.
2411 * Access: RW
2412 */
2413MLXSW_ITEM_BUF(reg, ptce2, flex_key_blocks, 0x20,
2414               MLXSW_REG_PTCE2_FLEX_KEY_BLOCKS_LEN);
2415
2416/* reg_ptce2_mask
2417 * mask- in the same size as key. A bit that is set directs the TCAM
2418 * to compare the corresponding bit in key. A bit that is clear directs
2419 * the TCAM to ignore the corresponding bit in key.
2420 * Access: RW
2421 */
2422MLXSW_ITEM_BUF(reg, ptce2, mask, 0x80,
2423               MLXSW_REG_PTCE2_FLEX_KEY_BLOCKS_LEN);
2424
2425/* reg_ptce2_flex_action_set
2426 * ACL action set.
2427 * Access: RW
2428 */
2429MLXSW_ITEM_BUF(reg, ptce2, flex_action_set, 0xE0,
2430               MLXSW_REG_FLEX_ACTION_SET_LEN);
2431
2432static inline void mlxsw_reg_ptce2_pack(char *payload, bool valid,
2433                                        enum mlxsw_reg_ptce2_op op,
2434                                        const char *tcam_region_info,
2435                                        u16 offset)
2436{
2437        MLXSW_REG_ZERO(ptce2, payload);
2438        mlxsw_reg_ptce2_v_set(payload, valid);
2439        mlxsw_reg_ptce2_op_set(payload, op);
2440        mlxsw_reg_ptce2_offset_set(payload, offset);
2441        mlxsw_reg_ptce2_tcam_region_info_memcpy_to(payload, tcam_region_info);
2442}
2443
2444/* QPCR - QoS Policer Configuration Register
2445 * -----------------------------------------
2446 * The QPCR register is used to create policers - that limit
2447 * the rate of bytes or packets via some trap group.
2448 */
2449#define MLXSW_REG_QPCR_ID 0x4004
2450#define MLXSW_REG_QPCR_LEN 0x28
2451
2452MLXSW_REG_DEFINE(qpcr, MLXSW_REG_QPCR_ID, MLXSW_REG_QPCR_LEN);
2453
2454enum mlxsw_reg_qpcr_g {
2455        MLXSW_REG_QPCR_G_GLOBAL = 2,
2456        MLXSW_REG_QPCR_G_STORM_CONTROL = 3,
2457};
2458
2459/* reg_qpcr_g
2460 * The policer type.
2461 * Access: Index
2462 */
2463MLXSW_ITEM32(reg, qpcr, g, 0x00, 14, 2);
2464
2465/* reg_qpcr_pid
2466 * Policer ID.
2467 * Access: Index
2468 */
2469MLXSW_ITEM32(reg, qpcr, pid, 0x00, 0, 14);
2470
2471/* reg_qpcr_color_aware
2472 * Is the policer aware of colors.
2473 * Must be 0 (unaware) for cpu port.
2474 * Access: RW for unbounded policer. RO for bounded policer.
2475 */
2476MLXSW_ITEM32(reg, qpcr, color_aware, 0x04, 15, 1);
2477
2478/* reg_qpcr_bytes
2479 * Is policer limit is for bytes per sec or packets per sec.
2480 * 0 - packets
2481 * 1 - bytes
2482 * Access: RW for unbounded policer. RO for bounded policer.
2483 */
2484MLXSW_ITEM32(reg, qpcr, bytes, 0x04, 14, 1);
2485
2486enum mlxsw_reg_qpcr_ir_units {
2487        MLXSW_REG_QPCR_IR_UNITS_M,
2488        MLXSW_REG_QPCR_IR_UNITS_K,
2489};
2490
2491/* reg_qpcr_ir_units
2492 * Policer's units for cir and eir fields (for bytes limits only)
2493 * 1 - 10^3
2494 * 0 - 10^6
2495 * Access: OP
2496 */
2497MLXSW_ITEM32(reg, qpcr, ir_units, 0x04, 12, 1);
2498
2499enum mlxsw_reg_qpcr_rate_type {
2500        MLXSW_REG_QPCR_RATE_TYPE_SINGLE = 1,
2501        MLXSW_REG_QPCR_RATE_TYPE_DOUBLE = 2,
2502};
2503
2504/* reg_qpcr_rate_type
2505 * Policer can have one limit (single rate) or 2 limits with specific operation
2506 * for packets that exceed the lower rate but not the upper one.
2507 * (For cpu port must be single rate)
2508 * Access: RW for unbounded policer. RO for bounded policer.
2509 */
2510MLXSW_ITEM32(reg, qpcr, rate_type, 0x04, 8, 2);
2511
2512/* reg_qpc_cbs
2513 * Policer's committed burst size.
2514 * The policer is working with time slices of 50 nano sec. By default every
2515 * slice is granted the proportionate share of the committed rate. If we want to
2516 * allow a slice to exceed that share (while still keeping the rate per sec) we
2517 * can allow burst. The burst size is between the default proportionate share
2518 * (and no lower than 8) to 32Gb. (Even though giving a number higher than the
2519 * committed rate will result in exceeding the rate). The burst size must be a
2520 * log of 2 and will be determined by 2^cbs.
2521 * Access: RW
2522 */
2523MLXSW_ITEM32(reg, qpcr, cbs, 0x08, 24, 6);
2524
2525/* reg_qpcr_cir
2526 * Policer's committed rate.
2527 * The rate used for sungle rate, the lower rate for double rate.
2528 * For bytes limits, the rate will be this value * the unit from ir_units.
2529 * (Resolution error is up to 1%).
2530 * Access: RW
2531 */
2532MLXSW_ITEM32(reg, qpcr, cir, 0x0C, 0, 32);
2533
2534/* reg_qpcr_eir
2535 * Policer's exceed rate.
2536 * The higher rate for double rate, reserved for single rate.
2537 * Lower rate for double rate policer.
2538 * For bytes limits, the rate will be this value * the unit from ir_units.
2539 * (Resolution error is up to 1%).
2540 * Access: RW
2541 */
2542MLXSW_ITEM32(reg, qpcr, eir, 0x10, 0, 32);
2543
2544#define MLXSW_REG_QPCR_DOUBLE_RATE_ACTION 2
2545
2546/* reg_qpcr_exceed_action.
2547 * What to do with packets between the 2 limits for double rate.
2548 * Access: RW for unbounded policer. RO for bounded policer.
2549 */
2550MLXSW_ITEM32(reg, qpcr, exceed_action, 0x14, 0, 4);
2551
2552enum mlxsw_reg_qpcr_action {
2553        /* Discard */
2554        MLXSW_REG_QPCR_ACTION_DISCARD = 1,
2555        /* Forward and set color to red.
2556         * If the packet is intended to cpu port, it will be dropped.
2557         */
2558        MLXSW_REG_QPCR_ACTION_FORWARD = 2,
2559};
2560
2561/* reg_qpcr_violate_action
2562 * What to do with packets that cross the cir limit (for single rate) or the eir
2563 * limit (for double rate).
2564 * Access: RW for unbounded policer. RO for bounded policer.
2565 */
2566MLXSW_ITEM32(reg, qpcr, violate_action, 0x18, 0, 4);
2567
2568static inline void mlxsw_reg_qpcr_pack(char *payload, u16 pid,
2569                                       enum mlxsw_reg_qpcr_ir_units ir_units,
2570                                       bool bytes, u32 cir, u16 cbs)
2571{
2572        MLXSW_REG_ZERO(qpcr, payload);
2573        mlxsw_reg_qpcr_pid_set(payload, pid);
2574        mlxsw_reg_qpcr_g_set(payload, MLXSW_REG_QPCR_G_GLOBAL);
2575        mlxsw_reg_qpcr_rate_type_set(payload, MLXSW_REG_QPCR_RATE_TYPE_SINGLE);
2576        mlxsw_reg_qpcr_violate_action_set(payload,
2577                                          MLXSW_REG_QPCR_ACTION_DISCARD);
2578        mlxsw_reg_qpcr_cir_set(payload, cir);
2579        mlxsw_reg_qpcr_ir_units_set(payload, ir_units);
2580        mlxsw_reg_qpcr_bytes_set(payload, bytes);
2581        mlxsw_reg_qpcr_cbs_set(payload, cbs);
2582}
2583
2584/* QTCT - QoS Switch Traffic Class Table
2585 * -------------------------------------
2586 * Configures the mapping between the packet switch priority and the
2587 * traffic class on the transmit port.
2588 */
2589#define MLXSW_REG_QTCT_ID 0x400A
2590#define MLXSW_REG_QTCT_LEN 0x08
2591
2592MLXSW_REG_DEFINE(qtct, MLXSW_REG_QTCT_ID, MLXSW_REG_QTCT_LEN);
2593
2594/* reg_qtct_local_port
2595 * Local port number.
2596 * Access: Index
2597 *
2598 * Note: CPU port is not supported.
2599 */
2600MLXSW_ITEM32(reg, qtct, local_port, 0x00, 16, 8);
2601
2602/* reg_qtct_sub_port
2603 * Virtual port within the physical port.
2604 * Should be set to 0 when virtual ports are not enabled on the port.
2605 * Access: Index
2606 */
2607MLXSW_ITEM32(reg, qtct, sub_port, 0x00, 8, 8);
2608
2609/* reg_qtct_switch_prio
2610 * Switch priority.
2611 * Access: Index
2612 */
2613MLXSW_ITEM32(reg, qtct, switch_prio, 0x00, 0, 4);
2614
2615/* reg_qtct_tclass
2616 * Traffic class.
2617 * Default values:
2618 * switch_prio 0 : tclass 1
2619 * switch_prio 1 : tclass 0
2620 * switch_prio i : tclass i, for i > 1
2621 * Access: RW
2622 */
2623MLXSW_ITEM32(reg, qtct, tclass, 0x04, 0, 4);
2624
2625static inline void mlxsw_reg_qtct_pack(char *payload, u8 local_port,
2626                                       u8 switch_prio, u8 tclass)
2627{
2628        MLXSW_REG_ZERO(qtct, payload);
2629        mlxsw_reg_qtct_local_port_set(payload, local_port);
2630        mlxsw_reg_qtct_switch_prio_set(payload, switch_prio);
2631        mlxsw_reg_qtct_tclass_set(payload, tclass);
2632}
2633
2634/* QEEC - QoS ETS Element Configuration Register
2635 * ---------------------------------------------
2636 * Configures the ETS elements.
2637 */
2638#define MLXSW_REG_QEEC_ID 0x400D
2639#define MLXSW_REG_QEEC_LEN 0x1C
2640
2641MLXSW_REG_DEFINE(qeec, MLXSW_REG_QEEC_ID, MLXSW_REG_QEEC_LEN);
2642
2643/* reg_qeec_local_port
2644 * Local port number.
2645 * Access: Index
2646 *
2647 * Note: CPU port is supported.
2648 */
2649MLXSW_ITEM32(reg, qeec, local_port, 0x00, 16, 8);
2650
2651enum mlxsw_reg_qeec_hr {
2652        MLXSW_REG_QEEC_HIERARCY_PORT,
2653        MLXSW_REG_QEEC_HIERARCY_GROUP,
2654        MLXSW_REG_QEEC_HIERARCY_SUBGROUP,
2655        MLXSW_REG_QEEC_HIERARCY_TC,
2656};
2657
2658/* reg_qeec_element_hierarchy
2659 * 0 - Port
2660 * 1 - Group
2661 * 2 - Subgroup
2662 * 3 - Traffic Class
2663 * Access: Index
2664 */
2665MLXSW_ITEM32(reg, qeec, element_hierarchy, 0x04, 16, 4);
2666
2667/* reg_qeec_element_index
2668 * The index of the element in the hierarchy.
2669 * Access: Index
2670 */
2671MLXSW_ITEM32(reg, qeec, element_index, 0x04, 0, 8);
2672
2673/* reg_qeec_next_element_index
2674 * The index of the next (lower) element in the hierarchy.
2675 * Access: RW
2676 *
2677 * Note: Reserved for element_hierarchy 0.
2678 */
2679MLXSW_ITEM32(reg, qeec, next_element_index, 0x08, 0, 8);
2680
2681enum {
2682        MLXSW_REG_QEEC_BYTES_MODE,
2683        MLXSW_REG_QEEC_PACKETS_MODE,
2684};
2685
2686/* reg_qeec_pb
2687 * Packets or bytes mode.
2688 * 0 - Bytes mode
2689 * 1 - Packets mode
2690 * Access: RW
2691 *
2692 * Note: Used for max shaper configuration. For Spectrum, packets mode
2693 * is supported only for traffic classes of CPU port.
2694 */
2695MLXSW_ITEM32(reg, qeec, pb, 0x0C, 28, 1);
2696
2697/* reg_qeec_mase
2698 * Max shaper configuration enable. Enables configuration of the max
2699 * shaper on this ETS element.
2700 * 0 - Disable
2701 * 1 - Enable
2702 * Access: RW
2703 */
2704MLXSW_ITEM32(reg, qeec, mase, 0x10, 31, 1);
2705
2706/* A large max rate will disable the max shaper. */
2707#define MLXSW_REG_QEEC_MAS_DIS  200000000       /* Kbps */
2708
2709/* reg_qeec_max_shaper_rate
2710 * Max shaper information rate.
2711 * For CPU port, can only be configured for port hierarchy.
2712 * When in bytes mode, value is specified in units of 1000bps.
2713 * Access: RW
2714 */
2715MLXSW_ITEM32(reg, qeec, max_shaper_rate, 0x10, 0, 28);
2716
2717/* reg_qeec_de
2718 * DWRR configuration enable. Enables configuration of the dwrr and
2719 * dwrr_weight.
2720 * 0 - Disable
2721 * 1 - Enable
2722 * Access: RW
2723 */
2724MLXSW_ITEM32(reg, qeec, de, 0x18, 31, 1);
2725
2726/* reg_qeec_dwrr
2727 * Transmission selection algorithm to use on the link going down from
2728 * the ETS element.
2729 * 0 - Strict priority
2730 * 1 - DWRR
2731 * Access: RW
2732 */
2733MLXSW_ITEM32(reg, qeec, dwrr, 0x18, 15, 1);
2734
2735/* reg_qeec_dwrr_weight
2736 * DWRR weight on the link going down from the ETS element. The
2737 * percentage of bandwidth guaranteed to an ETS element within
2738 * its hierarchy. The sum of all weights across all ETS elements
2739 * within one hierarchy should be equal to 100. Reserved when
2740 * transmission selection algorithm is strict priority.
2741 * Access: RW
2742 */
2743MLXSW_ITEM32(reg, qeec, dwrr_weight, 0x18, 0, 8);
2744
2745static inline void mlxsw_reg_qeec_pack(char *payload, u8 local_port,
2746                                       enum mlxsw_reg_qeec_hr hr, u8 index,
2747                                       u8 next_index)
2748{
2749        MLXSW_REG_ZERO(qeec, payload);
2750        mlxsw_reg_qeec_local_port_set(payload, local_port);
2751        mlxsw_reg_qeec_element_hierarchy_set(payload, hr);
2752        mlxsw_reg_qeec_element_index_set(payload, index);
2753        mlxsw_reg_qeec_next_element_index_set(payload, next_index);
2754}
2755
2756/* PMLP - Ports Module to Local Port Register
2757 * ------------------------------------------
2758 * Configures the assignment of modules to local ports.
2759 */
2760#define MLXSW_REG_PMLP_ID 0x5002
2761#define MLXSW_REG_PMLP_LEN 0x40
2762
2763MLXSW_REG_DEFINE(pmlp, MLXSW_REG_PMLP_ID, MLXSW_REG_PMLP_LEN);
2764
2765/* reg_pmlp_rxtx
2766 * 0 - Tx value is used for both Tx and Rx.
2767 * 1 - Rx value is taken from a separte field.
2768 * Access: RW
2769 */
2770MLXSW_ITEM32(reg, pmlp, rxtx, 0x00, 31, 1);
2771
2772/* reg_pmlp_local_port
2773 * Local port number.
2774 * Access: Index
2775 */
2776MLXSW_ITEM32(reg, pmlp, local_port, 0x00, 16, 8);
2777
2778/* reg_pmlp_width
2779 * 0 - Unmap local port.
2780 * 1 - Lane 0 is used.
2781 * 2 - Lanes 0 and 1 are used.
2782 * 4 - Lanes 0, 1, 2 and 3 are used.
2783 * Access: RW
2784 */
2785MLXSW_ITEM32(reg, pmlp, width, 0x00, 0, 8);
2786
2787/* reg_pmlp_module
2788 * Module number.
2789 * Access: RW
2790 */
2791MLXSW_ITEM32_INDEXED(reg, pmlp, module, 0x04, 0, 8, 0x04, 0x00, false);
2792
2793/* reg_pmlp_tx_lane
2794 * Tx Lane. When rxtx field is cleared, this field is used for Rx as well.
2795 * Access: RW
2796 */
2797MLXSW_ITEM32_INDEXED(reg, pmlp, tx_lane, 0x04, 16, 2, 0x04, 0x00, false);
2798
2799/* reg_pmlp_rx_lane
2800 * Rx Lane. When rxtx field is cleared, this field is ignored and Rx lane is
2801 * equal to Tx lane.
2802 * Access: RW
2803 */
2804MLXSW_ITEM32_INDEXED(reg, pmlp, rx_lane, 0x04, 24, 2, 0x04, 0x00, false);
2805
2806static inline void mlxsw_reg_pmlp_pack(char *payload, u8 local_port)
2807{
2808        MLXSW_REG_ZERO(pmlp, payload);
2809        mlxsw_reg_pmlp_local_port_set(payload, local_port);
2810}
2811
2812/* PMTU - Port MTU Register
2813 * ------------------------
2814 * Configures and reports the port MTU.
2815 */
2816#define MLXSW_REG_PMTU_ID 0x5003
2817#define MLXSW_REG_PMTU_LEN 0x10
2818
2819MLXSW_REG_DEFINE(pmtu, MLXSW_REG_PMTU_ID, MLXSW_REG_PMTU_LEN);
2820
2821/* reg_pmtu_local_port
2822 * Local port number.
2823 * Access: Index
2824 */
2825MLXSW_ITEM32(reg, pmtu, local_port, 0x00, 16, 8);
2826
2827/* reg_pmtu_max_mtu
2828 * Maximum MTU.
2829 * When port type (e.g. Ethernet) is configured, the relevant MTU is
2830 * reported, otherwise the minimum between the max_mtu of the different
2831 * types is reported.
2832 * Access: RO
2833 */
2834MLXSW_ITEM32(reg, pmtu, max_mtu, 0x04, 16, 16);
2835
2836/* reg_pmtu_admin_mtu
2837 * MTU value to set port to. Must be smaller or equal to max_mtu.
2838 * Note: If port type is Infiniband, then port must be disabled, when its
2839 * MTU is set.
2840 * Access: RW
2841 */
2842MLXSW_ITEM32(reg, pmtu, admin_mtu, 0x08, 16, 16);
2843
2844/* reg_pmtu_oper_mtu
2845 * The actual MTU configured on the port. Packets exceeding this size
2846 * will be dropped.
2847 * Note: In Ethernet and FC oper_mtu == admin_mtu, however, in Infiniband
2848 * oper_mtu might be smaller than admin_mtu.
2849 * Access: RO
2850 */
2851MLXSW_ITEM32(reg, pmtu, oper_mtu, 0x0C, 16, 16);
2852
2853static inline void mlxsw_reg_pmtu_pack(char *payload, u8 local_port,
2854                                       u16 new_mtu)
2855{
2856        MLXSW_REG_ZERO(pmtu, payload);
2857        mlxsw_reg_pmtu_local_port_set(payload, local_port);
2858        mlxsw_reg_pmtu_max_mtu_set(payload, 0);
2859        mlxsw_reg_pmtu_admin_mtu_set(payload, new_mtu);
2860        mlxsw_reg_pmtu_oper_mtu_set(payload, 0);
2861}
2862
2863/* PTYS - Port Type and Speed Register
2864 * -----------------------------------
2865 * Configures and reports the port speed type.
2866 *
2867 * Note: When set while the link is up, the changes will not take effect
2868 * until the port transitions from down to up state.
2869 */
2870#define MLXSW_REG_PTYS_ID 0x5004
2871#define MLXSW_REG_PTYS_LEN 0x40
2872
2873MLXSW_REG_DEFINE(ptys, MLXSW_REG_PTYS_ID, MLXSW_REG_PTYS_LEN);
2874
2875/* reg_ptys_local_port
2876 * Local port number.
2877 * Access: Index
2878 */
2879MLXSW_ITEM32(reg, ptys, local_port, 0x00, 16, 8);
2880
2881#define MLXSW_REG_PTYS_PROTO_MASK_IB    BIT(0)
2882#define MLXSW_REG_PTYS_PROTO_MASK_ETH   BIT(2)
2883
2884/* reg_ptys_proto_mask
2885 * Protocol mask. Indicates which protocol is used.
2886 * 0 - Infiniband.
2887 * 1 - Fibre Channel.
2888 * 2 - Ethernet.
2889 * Access: Index
2890 */
2891MLXSW_ITEM32(reg, ptys, proto_mask, 0x00, 0, 3);
2892
2893enum {
2894        MLXSW_REG_PTYS_AN_STATUS_NA,
2895        MLXSW_REG_PTYS_AN_STATUS_OK,
2896        MLXSW_REG_PTYS_AN_STATUS_FAIL,
2897};
2898
2899/* reg_ptys_an_status
2900 * Autonegotiation status.
2901 * Access: RO
2902 */
2903MLXSW_ITEM32(reg, ptys, an_status, 0x04, 28, 4);
2904
2905#define MLXSW_REG_PTYS_ETH_SPEED_SGMII                  BIT(0)
2906#define MLXSW_REG_PTYS_ETH_SPEED_1000BASE_KX            BIT(1)
2907#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_CX4            BIT(2)
2908#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_KX4            BIT(3)
2909#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_KR             BIT(4)
2910#define MLXSW_REG_PTYS_ETH_SPEED_20GBASE_KR2            BIT(5)
2911#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_CR4            BIT(6)
2912#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_KR4            BIT(7)
2913#define MLXSW_REG_PTYS_ETH_SPEED_56GBASE_R4             BIT(8)
2914#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_CR             BIT(12)
2915#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_SR             BIT(13)
2916#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_ER_LR          BIT(14)
2917#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_SR4            BIT(15)
2918#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_LR4_ER4        BIT(16)
2919#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_SR2            BIT(18)
2920#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_KR4            BIT(19)
2921#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_CR4           BIT(20)
2922#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_SR4           BIT(21)
2923#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_KR4           BIT(22)
2924#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_LR4_ER4       BIT(23)
2925#define MLXSW_REG_PTYS_ETH_SPEED_100BASE_TX             BIT(24)
2926#define MLXSW_REG_PTYS_ETH_SPEED_100BASE_T              BIT(25)
2927#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_T              BIT(26)
2928#define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_CR             BIT(27)
2929#define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_KR             BIT(28)
2930#define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_SR             BIT(29)
2931#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_CR2            BIT(30)
2932#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_KR2            BIT(31)
2933
2934/* reg_ptys_eth_proto_cap
2935 * Ethernet port supported speeds and protocols.
2936 * Access: RO
2937 */
2938MLXSW_ITEM32(reg, ptys, eth_proto_cap, 0x0C, 0, 32);
2939
2940/* reg_ptys_ib_link_width_cap
2941 * IB port supported widths.
2942 * Access: RO
2943 */
2944MLXSW_ITEM32(reg, ptys, ib_link_width_cap, 0x10, 16, 16);
2945
2946#define MLXSW_REG_PTYS_IB_SPEED_SDR     BIT(0)
2947#define MLXSW_REG_PTYS_IB_SPEED_DDR     BIT(1)
2948#define MLXSW_REG_PTYS_IB_SPEED_QDR     BIT(2)
2949#define MLXSW_REG_PTYS_IB_SPEED_FDR10   BIT(3)
2950#define MLXSW_REG_PTYS_IB_SPEED_FDR     BIT(4)
2951#define MLXSW_REG_PTYS_IB_SPEED_EDR     BIT(5)
2952
2953/* reg_ptys_ib_proto_cap
2954 * IB port supported speeds and protocols.
2955 * Access: RO
2956 */
2957MLXSW_ITEM32(reg, ptys, ib_proto_cap, 0x10, 0, 16);
2958
2959/* reg_ptys_eth_proto_admin
2960 * Speed and protocol to set port to.
2961 * Access: RW
2962 */
2963MLXSW_ITEM32(reg, ptys, eth_proto_admin, 0x18, 0, 32);
2964
2965/* reg_ptys_ib_link_width_admin
2966 * IB width to set port to.
2967 * Access: RW
2968 */
2969MLXSW_ITEM32(reg, ptys, ib_link_width_admin, 0x1C, 16, 16);
2970
2971/* reg_ptys_ib_proto_admin
2972 * IB speeds and protocols to set port to.
2973 * Access: RW
2974 */
2975MLXSW_ITEM32(reg, ptys, ib_proto_admin, 0x1C, 0, 16);
2976
2977/* reg_ptys_eth_proto_oper
2978 * The current speed and protocol configured for the port.
2979 * Access: RO
2980 */
2981MLXSW_ITEM32(reg, ptys, eth_proto_oper, 0x24, 0, 32);
2982
2983/* reg_ptys_ib_link_width_oper
2984 * The current IB width to set port to.
2985 * Access: RO
2986 */
2987MLXSW_ITEM32(reg, ptys, ib_link_width_oper, 0x28, 16, 16);
2988
2989/* reg_ptys_ib_proto_oper
2990 * The current IB speed and protocol.
2991 * Access: RO
2992 */
2993MLXSW_ITEM32(reg, ptys, ib_proto_oper, 0x28, 0, 16);
2994
2995/* reg_ptys_eth_proto_lp_advertise
2996 * The protocols that were advertised by the link partner during
2997 * autonegotiation.
2998 * Access: RO
2999 */
3000MLXSW_ITEM32(reg, ptys, eth_proto_lp_advertise, 0x30, 0, 32);
3001
3002static inline void mlxsw_reg_ptys_eth_pack(char *payload, u8 local_port,
3003                                           u32 proto_admin)
3004{
3005        MLXSW_REG_ZERO(ptys, payload);
3006        mlxsw_reg_ptys_local_port_set(payload, local_port);
3007        mlxsw_reg_ptys_proto_mask_set(payload, MLXSW_REG_PTYS_PROTO_MASK_ETH);
3008        mlxsw_reg_ptys_eth_proto_admin_set(payload, proto_admin);
3009}
3010
3011static inline void mlxsw_reg_ptys_eth_unpack(char *payload,
3012                                             u32 *p_eth_proto_cap,
3013                                             u32 *p_eth_proto_adm,
3014                                             u32 *p_eth_proto_oper)
3015{
3016        if (p_eth_proto_cap)
3017                *p_eth_proto_cap = mlxsw_reg_ptys_eth_proto_cap_get(payload);
3018        if (p_eth_proto_adm)
3019                *p_eth_proto_adm = mlxsw_reg_ptys_eth_proto_admin_get(payload);
3020        if (p_eth_proto_oper)
3021                *p_eth_proto_oper = mlxsw_reg_ptys_eth_proto_oper_get(payload);
3022}
3023
3024static inline void mlxsw_reg_ptys_ib_pack(char *payload, u8 local_port,
3025                                          u16 proto_admin, u16 link_width)
3026{
3027        MLXSW_REG_ZERO(ptys, payload);
3028        mlxsw_reg_ptys_local_port_set(payload, local_port);
3029        mlxsw_reg_ptys_proto_mask_set(payload, MLXSW_REG_PTYS_PROTO_MASK_IB);
3030        mlxsw_reg_ptys_ib_proto_admin_set(payload, proto_admin);
3031        mlxsw_reg_ptys_ib_link_width_admin_set(payload, link_width);
3032}
3033
3034static inline void mlxsw_reg_ptys_ib_unpack(char *payload, u16 *p_ib_proto_cap,
3035                                            u16 *p_ib_link_width_cap,
3036                                            u16 *p_ib_proto_oper,
3037                                            u16 *p_ib_link_width_oper)
3038{
3039        if (p_ib_proto_cap)
3040                *p_ib_proto_cap = mlxsw_reg_ptys_ib_proto_cap_get(payload);
3041        if (p_ib_link_width_cap)
3042                *p_ib_link_width_cap =
3043                        mlxsw_reg_ptys_ib_link_width_cap_get(payload);
3044        if (p_ib_proto_oper)
3045                *p_ib_proto_oper = mlxsw_reg_ptys_ib_proto_oper_get(payload);
3046        if (p_ib_link_width_oper)
3047                *p_ib_link_width_oper =
3048                        mlxsw_reg_ptys_ib_link_width_oper_get(payload);
3049}
3050
3051/* PPAD - Port Physical Address Register
3052 * -------------------------------------
3053 * The PPAD register configures the per port physical MAC address.
3054 */
3055#define MLXSW_REG_PPAD_ID 0x5005
3056#define MLXSW_REG_PPAD_LEN 0x10
3057
3058MLXSW_REG_DEFINE(ppad, MLXSW_REG_PPAD_ID, MLXSW_REG_PPAD_LEN);
3059
3060/* reg_ppad_single_base_mac
3061 * 0: base_mac, local port should be 0 and mac[7:0] is
3062 * reserved. HW will set incremental
3063 * 1: single_mac - mac of the local_port
3064 * Access: RW
3065 */
3066MLXSW_ITEM32(reg, ppad, single_base_mac, 0x00, 28, 1);
3067
3068/* reg_ppad_local_port
3069 * port number, if single_base_mac = 0 then local_port is reserved
3070 * Access: RW
3071 */
3072MLXSW_ITEM32(reg, ppad, local_port, 0x00, 16, 8);
3073
3074/* reg_ppad_mac
3075 * If single_base_mac = 0 - base MAC address, mac[7:0] is reserved.
3076 * If single_base_mac = 1 - the per port MAC address
3077 * Access: RW
3078 */
3079MLXSW_ITEM_BUF(reg, ppad, mac, 0x02, 6);
3080
3081static inline void mlxsw_reg_ppad_pack(char *payload, bool single_base_mac,
3082                                       u8 local_port)
3083{
3084        MLXSW_REG_ZERO(ppad, payload);
3085        mlxsw_reg_ppad_single_base_mac_set(payload, !!single_base_mac);
3086        mlxsw_reg_ppad_local_port_set(payload, local_port);
3087}
3088
3089/* PAOS - Ports Administrative and Operational Status Register
3090 * -----------------------------------------------------------
3091 * Configures and retrieves per port administrative and operational status.
3092 */
3093#define MLXSW_REG_PAOS_ID 0x5006
3094#define MLXSW_REG_PAOS_LEN 0x10
3095
3096MLXSW_REG_DEFINE(paos, MLXSW_REG_PAOS_ID, MLXSW_REG_PAOS_LEN);
3097
3098/* reg_paos_swid
3099 * Switch partition ID with which to associate the port.
3100 * Note: while external ports uses unique local port numbers (and thus swid is
3101 * redundant), router ports use the same local port number where swid is the
3102 * only indication for the relevant port.
3103 * Access: Index
3104 */
3105MLXSW_ITEM32(reg, paos, swid, 0x00, 24, 8);
3106
3107/* reg_paos_local_port
3108 * Local port number.
3109 * Access: Index
3110 */
3111MLXSW_ITEM32(reg, paos, local_port, 0x00, 16, 8);
3112
3113/* reg_paos_admin_status
3114 * Port administrative state (the desired state of the port):
3115 * 1 - Up.
3116 * 2 - Down.
3117 * 3 - Up once. This means that in case of link failure, the port won't go
3118 *     into polling mode, but will wait to be re-enabled by software.
3119 * 4 - Disabled by system. Can only be set by hardware.
3120 * Access: RW
3121 */
3122MLXSW_ITEM32(reg, paos, admin_status, 0x00, 8, 4);
3123
3124/* reg_paos_oper_status
3125 * Port operational state (the current state):
3126 * 1 - Up.
3127 * 2 - Down.
3128 * 3 - Down by port failure. This means that the device will not let the
3129 *     port up again until explicitly specified by software.
3130 * Access: RO
3131 */
3132MLXSW_ITEM32(reg, paos, oper_status, 0x00, 0, 4);
3133
3134/* reg_paos_ase
3135 * Admin state update enabled.
3136 * Access: WO
3137 */
3138MLXSW_ITEM32(reg, paos, ase, 0x04, 31, 1);
3139
3140/* reg_paos_ee
3141 * Event update enable. If this bit is set, event generation will be
3142 * updated based on the e field.
3143 * Access: WO
3144 */
3145MLXSW_ITEM32(reg, paos, ee, 0x04, 30, 1);
3146
3147/* reg_paos_e
3148 * Event generation on operational state change:
3149 * 0 - Do not generate event.
3150 * 1 - Generate Event.
3151 * 2 - Generate Single Event.
3152 * Access: RW
3153 */
3154MLXSW_ITEM32(reg, paos, e, 0x04, 0, 2);
3155
3156static inline void mlxsw_reg_paos_pack(char *payload, u8 local_port,
3157                                       enum mlxsw_port_admin_status status)
3158{
3159        MLXSW_REG_ZERO(paos, payload);
3160        mlxsw_reg_paos_swid_set(payload, 0);
3161        mlxsw_reg_paos_local_port_set(payload, local_port);
3162        mlxsw_reg_paos_admin_status_set(payload, status);
3163        mlxsw_reg_paos_oper_status_set(payload, 0);
3164        mlxsw_reg_paos_ase_set(payload, 1);
3165        mlxsw_reg_paos_ee_set(payload, 1);
3166        mlxsw_reg_paos_e_set(payload, 1);
3167}
3168
3169/* PFCC - Ports Flow Control Configuration Register
3170 * ------------------------------------------------
3171 * Configures and retrieves the per port flow control configuration.
3172 */
3173#define MLXSW_REG_PFCC_ID 0x5007
3174#define MLXSW_REG_PFCC_LEN 0x20
3175
3176MLXSW_REG_DEFINE(pfcc, MLXSW_REG_PFCC_ID, MLXSW_REG_PFCC_LEN);
3177
3178/* reg_pfcc_local_port
3179 * Local port number.
3180 * Access: Index
3181 */
3182MLXSW_ITEM32(reg, pfcc, local_port, 0x00, 16, 8);
3183
3184/* reg_pfcc_pnat
3185 * Port number access type. Determines the way local_port is interpreted:
3186 * 0 - Local port number.
3187 * 1 - IB / label port number.
3188 * Access: Index
3189 */
3190MLXSW_ITEM32(reg, pfcc, pnat, 0x00, 14, 2);
3191
3192/* reg_pfcc_shl_cap
3193 * Send to higher layers capabilities:
3194 * 0 - No capability of sending Pause and PFC frames to higher layers.
3195 * 1 - Device has capability of sending Pause and PFC frames to higher
3196 *     layers.
3197 * Access: RO
3198 */
3199MLXSW_ITEM32(reg, pfcc, shl_cap, 0x00, 1, 1);
3200
3201/* reg_pfcc_shl_opr
3202 * Send to higher layers operation:
3203 * 0 - Pause and PFC frames are handled by the port (default).
3204 * 1 - Pause and PFC frames are handled by the port and also sent to
3205 *     higher layers. Only valid if shl_cap = 1.
3206 * Access: RW
3207 */
3208MLXSW_ITEM32(reg, pfcc, shl_opr, 0x00, 0, 1);
3209
3210/* reg_pfcc_ppan
3211 * Pause policy auto negotiation.
3212 * 0 - Disabled. Generate / ignore Pause frames based on pptx / pprtx.
3213 * 1 - Enabled. When auto-negotiation is performed, set the Pause policy
3214 *     based on the auto-negotiation resolution.
3215 * Access: RW
3216 *
3217 * Note: The auto-negotiation advertisement is set according to pptx and
3218 * pprtx. When PFC is set on Tx / Rx, ppan must be set to 0.
3219 */
3220MLXSW_ITEM32(reg, pfcc, ppan, 0x04, 28, 4);
3221
3222/* reg_pfcc_prio_mask_tx
3223 * Bit per priority indicating if Tx flow control policy should be
3224 * updated based on bit pfctx.
3225 * Access: WO
3226 */
3227MLXSW_ITEM32(reg, pfcc, prio_mask_tx, 0x04, 16, 8);
3228
3229/* reg_pfcc_prio_mask_rx
3230 * Bit per priority indicating if Rx flow control policy should be
3231 * updated based on bit pfcrx.
3232 * Access: WO
3233 */
3234MLXSW_ITEM32(reg, pfcc, prio_mask_rx, 0x04, 0, 8);
3235
3236/* reg_pfcc_pptx
3237 * Admin Pause policy on Tx.
3238 * 0 - Never generate Pause frames (default).
3239 * 1 - Generate Pause frames according to Rx buffer threshold.
3240 * Access: RW
3241 */
3242MLXSW_ITEM32(reg, pfcc, pptx, 0x08, 31, 1);
3243
3244/* reg_pfcc_aptx
3245 * Active (operational) Pause policy on Tx.
3246 * 0 - Never generate Pause frames.
3247 * 1 - Generate Pause frames according to Rx buffer threshold.
3248 * Access: RO
3249 */
3250MLXSW_ITEM32(reg, pfcc, aptx, 0x08, 30, 1);
3251
3252/* reg_pfcc_pfctx
3253 * Priority based flow control policy on Tx[7:0]. Per-priority bit mask:
3254 * 0 - Never generate priority Pause frames on the specified priority
3255 *     (default).
3256 * 1 - Generate priority Pause frames according to Rx buffer threshold on
3257 *     the specified priority.
3258 * Access: RW
3259 *
3260 * Note: pfctx and pptx must be mutually exclusive.
3261 */
3262MLXSW_ITEM32(reg, pfcc, pfctx, 0x08, 16, 8);
3263
3264/* reg_pfcc_pprx
3265 * Admin Pause policy on Rx.
3266 * 0 - Ignore received Pause frames (default).
3267 * 1 - Respect received Pause frames.
3268 * Access: RW
3269 */
3270MLXSW_ITEM32(reg, pfcc, pprx, 0x0C, 31, 1);
3271
3272/* reg_pfcc_aprx
3273 * Active (operational) Pause policy on Rx.
3274 * 0 - Ignore received Pause frames.
3275 * 1 - Respect received Pause frames.
3276 * Access: RO
3277 */
3278MLXSW_ITEM32(reg, pfcc, aprx, 0x0C, 30, 1);
3279
3280/* reg_pfcc_pfcrx
3281 * Priority based flow control policy on Rx[7:0]. Per-priority bit mask:
3282 * 0 - Ignore incoming priority Pause frames on the specified priority
3283 *     (default).
3284 * 1 - Respect incoming priority Pause frames on the specified priority.
3285 * Access: RW
3286 */
3287MLXSW_ITEM32(reg, pfcc, pfcrx, 0x0C, 16, 8);
3288
3289#define MLXSW_REG_PFCC_ALL_PRIO 0xFF
3290
3291static inline void mlxsw_reg_pfcc_prio_pack(char *payload, u8 pfc_en)
3292{
3293        mlxsw_reg_pfcc_prio_mask_tx_set(payload, MLXSW_REG_PFCC_ALL_PRIO);
3294        mlxsw_reg_pfcc_prio_mask_rx_set(payload, MLXSW_REG_PFCC_ALL_PRIO);
3295        mlxsw_reg_pfcc_pfctx_set(payload, pfc_en);
3296        mlxsw_reg_pfcc_pfcrx_set(payload, pfc_en);
3297}
3298
3299static inline void mlxsw_reg_pfcc_pack(char *payload, u8 local_port)
3300{
3301        MLXSW_REG_ZERO(pfcc, payload);
3302        mlxsw_reg_pfcc_local_port_set(payload, local_port);
3303}
3304
3305/* PPCNT - Ports Performance Counters Register
3306 * -------------------------------------------
3307 * The PPCNT register retrieves per port performance counters.
3308 */
3309#define MLXSW_REG_PPCNT_ID 0x5008
3310#define MLXSW_REG_PPCNT_LEN 0x100
3311#define MLXSW_REG_PPCNT_COUNTERS_OFFSET 0x08
3312
3313MLXSW_REG_DEFINE(ppcnt, MLXSW_REG_PPCNT_ID, MLXSW_REG_PPCNT_LEN);
3314
3315/* reg_ppcnt_swid
3316 * For HCA: must be always 0.
3317 * Switch partition ID to associate port with.
3318 * Switch partitions are numbered from 0 to 7 inclusively.
3319 * Switch partition 254 indicates stacking ports.
3320 * Switch partition 255 indicates all switch partitions.
3321 * Only valid on Set() operation with local_port=255.
3322 * Access: Index
3323 */
3324MLXSW_ITEM32(reg, ppcnt, swid, 0x00, 24, 8);
3325
3326/* reg_ppcnt_local_port
3327 * Local port number.
3328 * 255 indicates all ports on the device, and is only allowed
3329 * for Set() operation.
3330 * Access: Index
3331 */
3332MLXSW_ITEM32(reg, ppcnt, local_port, 0x00, 16, 8);
3333
3334/* reg_ppcnt_pnat
3335 * Port number access type:
3336 * 0 - Local port number
3337 * 1 - IB port number
3338 * Access: Index
3339 */
3340MLXSW_ITEM32(reg, ppcnt, pnat, 0x00, 14, 2);
3341
3342enum mlxsw_reg_ppcnt_grp {
3343        MLXSW_REG_PPCNT_IEEE_8023_CNT = 0x0,
3344        MLXSW_REG_PPCNT_EXT_CNT = 0x5,
3345        MLXSW_REG_PPCNT_PRIO_CNT = 0x10,
3346        MLXSW_REG_PPCNT_TC_CNT = 0x11,
3347        MLXSW_REG_PPCNT_TC_CONG_TC = 0x13,
3348};
3349
3350/* reg_ppcnt_grp
3351 * Performance counter group.
3352 * Group 63 indicates all groups. Only valid on Set() operation with
3353 * clr bit set.
3354 * 0x0: IEEE 802.3 Counters
3355 * 0x1: RFC 2863 Counters
3356 * 0x2: RFC 2819 Counters
3357 * 0x3: RFC 3635 Counters
3358 * 0x5: Ethernet Extended Counters
3359 * 0x8: Link Level Retransmission Counters
3360 * 0x10: Per Priority Counters
3361 * 0x11: Per Traffic Class Counters
3362 * 0x12: Physical Layer Counters
3363 * 0x13: Per Traffic Class Congestion Counters
3364 * Access: Index
3365 */
3366MLXSW_ITEM32(reg, ppcnt, grp, 0x00, 0, 6);
3367
3368/* reg_ppcnt_clr
3369 * Clear counters. Setting the clr bit will reset the counter value
3370 * for all counters in the counter group. This bit can be set
3371 * for both Set() and Get() operation.
3372 * Access: OP
3373 */
3374MLXSW_ITEM32(reg, ppcnt, clr, 0x04, 31, 1);
3375
3376/* reg_ppcnt_prio_tc
3377 * Priority for counter set that support per priority, valid values: 0-7.
3378 * Traffic class for counter set that support per traffic class,
3379 * valid values: 0- cap_max_tclass-1 .
3380 * For HCA: cap_max_tclass is always 8.
3381 * Otherwise must be 0.
3382 * Access: Index
3383 */
3384MLXSW_ITEM32(reg, ppcnt, prio_tc, 0x04, 0, 5);
3385
3386/* Ethernet IEEE 802.3 Counter Group */
3387
3388/* reg_ppcnt_a_frames_transmitted_ok
3389 * Access: RO
3390 */
3391MLXSW_ITEM64(reg, ppcnt, a_frames_transmitted_ok,
3392             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64);
3393
3394/* reg_ppcnt_a_frames_received_ok
3395 * Access: RO
3396 */
3397MLXSW_ITEM64(reg, ppcnt, a_frames_received_ok,
3398             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64);
3399
3400/* reg_ppcnt_a_frame_check_sequence_errors
3401 * Access: RO
3402 */
3403MLXSW_ITEM64(reg, ppcnt, a_frame_check_sequence_errors,
3404             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x10, 0, 64);
3405
3406/* reg_ppcnt_a_alignment_errors
3407 * Access: RO
3408 */
3409MLXSW_ITEM64(reg, ppcnt, a_alignment_errors,
3410             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x18, 0, 64);
3411
3412/* reg_ppcnt_a_octets_transmitted_ok
3413 * Access: RO
3414 */
3415MLXSW_ITEM64(reg, ppcnt, a_octets_transmitted_ok,
3416             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x20, 0, 64);
3417
3418/* reg_ppcnt_a_octets_received_ok
3419 * Access: RO
3420 */
3421MLXSW_ITEM64(reg, ppcnt, a_octets_received_ok,
3422             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x28, 0, 64);
3423
3424/* reg_ppcnt_a_multicast_frames_xmitted_ok
3425 * Access: RO
3426 */
3427MLXSW_ITEM64(reg, ppcnt, a_multicast_frames_xmitted_ok,
3428             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x30, 0, 64);
3429
3430/* reg_ppcnt_a_broadcast_frames_xmitted_ok
3431 * Access: RO
3432 */
3433MLXSW_ITEM64(reg, ppcnt, a_broadcast_frames_xmitted_ok,
3434             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x38, 0, 64);
3435
3436/* reg_ppcnt_a_multicast_frames_received_ok
3437 * Access: RO
3438 */
3439MLXSW_ITEM64(reg, ppcnt, a_multicast_frames_received_ok,
3440             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x40, 0, 64);
3441
3442/* reg_ppcnt_a_broadcast_frames_received_ok
3443 * Access: RO
3444 */
3445MLXSW_ITEM64(reg, ppcnt, a_broadcast_frames_received_ok,
3446             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x48, 0, 64);
3447
3448/* reg_ppcnt_a_in_range_length_errors
3449 * Access: RO
3450 */
3451MLXSW_ITEM64(reg, ppcnt, a_in_range_length_errors,
3452             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x50, 0, 64);
3453
3454/* reg_ppcnt_a_out_of_range_length_field
3455 * Access: RO
3456 */
3457MLXSW_ITEM64(reg, ppcnt, a_out_of_range_length_field,
3458             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x58, 0, 64);
3459
3460/* reg_ppcnt_a_frame_too_long_errors
3461 * Access: RO
3462 */
3463MLXSW_ITEM64(reg, ppcnt, a_frame_too_long_errors,
3464             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64);
3465
3466/* reg_ppcnt_a_symbol_error_during_carrier
3467 * Access: RO
3468 */
3469MLXSW_ITEM64(reg, ppcnt, a_symbol_error_during_carrier,
3470             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x68, 0, 64);
3471
3472/* reg_ppcnt_a_mac_control_frames_transmitted
3473 * Access: RO
3474 */
3475MLXSW_ITEM64(reg, ppcnt, a_mac_control_frames_transmitted,
3476             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64);
3477
3478/* reg_ppcnt_a_mac_control_frames_received
3479 * Access: RO
3480 */
3481MLXSW_ITEM64(reg, ppcnt, a_mac_control_frames_received,
3482             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x78, 0, 64);
3483
3484/* reg_ppcnt_a_unsupported_opcodes_received
3485 * Access: RO
3486 */
3487MLXSW_ITEM64(reg, ppcnt, a_unsupported_opcodes_received,
3488             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x80, 0, 64);
3489
3490/* reg_ppcnt_a_pause_mac_ctrl_frames_received
3491 * Access: RO
3492 */
3493MLXSW_ITEM64(reg, ppcnt, a_pause_mac_ctrl_frames_received,
3494             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x88, 0, 64);
3495
3496/* reg_ppcnt_a_pause_mac_ctrl_frames_transmitted
3497 * Access: RO
3498 */
3499MLXSW_ITEM64(reg, ppcnt, a_pause_mac_ctrl_frames_transmitted,
3500             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x90, 0, 64);
3501
3502/* Ethernet Extended Counter Group Counters */
3503
3504/* reg_ppcnt_ecn_marked
3505 * Access: RO
3506 */
3507MLXSW_ITEM64(reg, ppcnt, ecn_marked,
3508             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64);
3509
3510/* Ethernet Per Priority Group Counters */
3511
3512/* reg_ppcnt_rx_octets
3513 * Access: RO
3514 */
3515MLXSW_ITEM64(reg, ppcnt, rx_octets,
3516             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64);
3517
3518/* reg_ppcnt_rx_frames
3519 * Access: RO
3520 */
3521MLXSW_ITEM64(reg, ppcnt, rx_frames,
3522             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x20, 0, 64);
3523
3524/* reg_ppcnt_tx_octets
3525 * Access: RO
3526 */
3527MLXSW_ITEM64(reg, ppcnt, tx_octets,
3528             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x28, 0, 64);
3529
3530/* reg_ppcnt_tx_frames
3531 * Access: RO
3532 */
3533MLXSW_ITEM64(reg, ppcnt, tx_frames,
3534             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x48, 0, 64);
3535
3536/* reg_ppcnt_rx_pause
3537 * Access: RO
3538 */
3539MLXSW_ITEM64(reg, ppcnt, rx_pause,
3540             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x50, 0, 64);
3541
3542/* reg_ppcnt_rx_pause_duration
3543 * Access: RO
3544 */
3545MLXSW_ITEM64(reg, ppcnt, rx_pause_duration,
3546             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x58, 0, 64);
3547
3548/* reg_ppcnt_tx_pause
3549 * Access: RO
3550 */
3551MLXSW_ITEM64(reg, ppcnt, tx_pause,
3552             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64);
3553
3554/* reg_ppcnt_tx_pause_duration
3555 * Access: RO
3556 */
3557MLXSW_ITEM64(reg, ppcnt, tx_pause_duration,
3558             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x68, 0, 64);
3559
3560/* reg_ppcnt_rx_pause_transition
3561 * Access: RO
3562 */
3563MLXSW_ITEM64(reg, ppcnt, tx_pause_transition,
3564             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64);
3565
3566/* Ethernet Per Traffic Group Counters */
3567
3568/* reg_ppcnt_tc_transmit_queue
3569 * Contains the transmit queue depth in cells of traffic class
3570 * selected by prio_tc and the port selected by local_port.
3571 * The field cannot be cleared.
3572 * Access: RO
3573 */
3574MLXSW_ITEM64(reg, ppcnt, tc_transmit_queue,
3575             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64);
3576
3577/* reg_ppcnt_tc_no_buffer_discard_uc
3578 * The number of unicast packets dropped due to lack of shared
3579 * buffer resources.
3580 * Access: RO
3581 */
3582MLXSW_ITEM64(reg, ppcnt, tc_no_buffer_discard_uc,
3583             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64);
3584
3585/* Ethernet Per Traffic Class Congestion Group Counters */
3586
3587/* reg_ppcnt_wred_discard
3588 * Access: RO
3589 */
3590MLXSW_ITEM64(reg, ppcnt, wred_discard,
3591             MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64);
3592
3593static inline void mlxsw_reg_ppcnt_pack(char *payload, u8 local_port,
3594                                        enum mlxsw_reg_ppcnt_grp grp,
3595                                        u8 prio_tc)
3596{
3597        MLXSW_REG_ZERO(ppcnt, payload);
3598        mlxsw_reg_ppcnt_swid_set(payload, 0);
3599        mlxsw_reg_ppcnt_local_port_set(payload, local_port);
3600        mlxsw_reg_ppcnt_pnat_set(payload, 0);
3601        mlxsw_reg_ppcnt_grp_set(payload, grp);
3602        mlxsw_reg_ppcnt_clr_set(payload, 0);
3603        mlxsw_reg_ppcnt_prio_tc_set(payload, prio_tc);
3604}
3605
3606/* PLIB - Port Local to InfiniBand Port
3607 * ------------------------------------
3608 * The PLIB register performs mapping from Local Port into InfiniBand Port.
3609 */
3610#define MLXSW_REG_PLIB_ID 0x500A
3611#define MLXSW_REG_PLIB_LEN 0x10
3612
3613MLXSW_REG_DEFINE(plib, MLXSW_REG_PLIB_ID, MLXSW_REG_PLIB_LEN);
3614
3615/* reg_plib_local_port
3616 * Local port number.
3617 * Access: Index
3618 */
3619MLXSW_ITEM32(reg, plib, local_port, 0x00, 16, 8);
3620
3621/* reg_plib_ib_port
3622 * InfiniBand port remapping for local_port.
3623 * Access: RW
3624 */
3625MLXSW_ITEM32(reg, plib, ib_port, 0x00, 0, 8);
3626
3627/* PPTB - Port Prio To Buffer Register
3628 * -----------------------------------
3629 * Configures the switch priority to buffer table.
3630 */
3631#define MLXSW_REG_PPTB_ID 0x500B
3632#define MLXSW_REG_PPTB_LEN 0x10
3633
3634MLXSW_REG_DEFINE(pptb, MLXSW_REG_PPTB_ID, MLXSW_REG_PPTB_LEN);
3635
3636enum {
3637        MLXSW_REG_PPTB_MM_UM,
3638        MLXSW_REG_PPTB_MM_UNICAST,
3639        MLXSW_REG_PPTB_MM_MULTICAST,
3640};
3641
3642/* reg_pptb_mm
3643 * Mapping mode.
3644 * 0 - Map both unicast and multicast packets to the same buffer.
3645 * 1 - Map only unicast packets.
3646 * 2 - Map only multicast packets.
3647 * Access: Index
3648 *
3649 * Note: SwitchX-2 only supports the first option.
3650 */
3651MLXSW_ITEM32(reg, pptb, mm, 0x00, 28, 2);
3652
3653/* reg_pptb_local_port
3654 * Local port number.
3655 * Access: Index
3656 */
3657MLXSW_ITEM32(reg, pptb, local_port, 0x00, 16, 8);
3658
3659/* reg_pptb_um
3660 * Enables the update of the untagged_buf field.
3661 * Access: RW
3662 */
3663MLXSW_ITEM32(reg, pptb, um, 0x00, 8, 1);
3664
3665/* reg_pptb_pm
3666 * Enables the update of the prio_to_buff field.
3667 * Bit <i> is a flag for updating the mapping for switch priority <i>.
3668 * Access: RW
3669 */
3670MLXSW_ITEM32(reg, pptb, pm, 0x00, 0, 8);
3671
3672/* reg_pptb_prio_to_buff
3673 * Mapping of switch priority <i> to one of the allocated receive port
3674 * buffers.
3675 * Access: RW
3676 */
3677MLXSW_ITEM_BIT_ARRAY(reg, pptb, prio_to_buff, 0x04, 0x04, 4);
3678
3679/* reg_pptb_pm_msb
3680 * Enables the update of the prio_to_buff field.
3681 * Bit <i> is a flag for updating the mapping for switch priority <i+8>.
3682 * Access: RW
3683 */
3684MLXSW_ITEM32(reg, pptb, pm_msb, 0x08, 24, 8);
3685
3686/* reg_pptb_untagged_buff
3687 * Mapping of untagged frames to one of the allocated receive port buffers.
3688 * Access: RW
3689 *
3690 * Note: In SwitchX-2 this field must be mapped to buffer 8. Reserved for
3691 * Spectrum, as it maps untagged packets based on the default switch priority.
3692 */
3693MLXSW_ITEM32(reg, pptb, untagged_buff, 0x08, 0, 4);
3694
3695/* reg_pptb_prio_to_buff_msb
3696 * Mapping of switch priority <i+8> to one of the allocated receive port
3697 * buffers.
3698 * Access: RW
3699 */
3700MLXSW_ITEM_BIT_ARRAY(reg, pptb, prio_to_buff_msb, 0x0C, 0x04, 4);
3701
3702#define MLXSW_REG_PPTB_ALL_PRIO 0xFF
3703
3704static inline void mlxsw_reg_pptb_pack(char *payload, u8 local_port)
3705{
3706        MLXSW_REG_ZERO(pptb, payload);
3707        mlxsw_reg_pptb_mm_set(payload, MLXSW_REG_PPTB_MM_UM);
3708        mlxsw_reg_pptb_local_port_set(payload, local_port);
3709        mlxsw_reg_pptb_pm_set(payload, MLXSW_REG_PPTB_ALL_PRIO);
3710        mlxsw_reg_pptb_pm_msb_set(payload, MLXSW_REG_PPTB_ALL_PRIO);
3711}
3712
3713static inline void mlxsw_reg_pptb_prio_to_buff_pack(char *payload, u8 prio,
3714                                                    u8 buff)
3715{
3716        mlxsw_reg_pptb_prio_to_buff_set(payload, prio, buff);
3717        mlxsw_reg_pptb_prio_to_buff_msb_set(payload, prio, buff);
3718}
3719
3720/* PBMC - Port Buffer Management Control Register
3721 * ----------------------------------------------
3722 * The PBMC register configures and retrieves the port packet buffer
3723 * allocation for different Prios, and the Pause threshold management.
3724 */
3725#define MLXSW_REG_PBMC_ID 0x500C
3726#define MLXSW_REG_PBMC_LEN 0x6C
3727
3728MLXSW_REG_DEFINE(pbmc, MLXSW_REG_PBMC_ID, MLXSW_REG_PBMC_LEN);
3729
3730/* reg_pbmc_local_port
3731 * Local port number.
3732 * Access: Index
3733 */
3734MLXSW_ITEM32(reg, pbmc, local_port, 0x00, 16, 8);
3735
3736/* reg_pbmc_xoff_timer_value
3737 * When device generates a pause frame, it uses this value as the pause
3738 * timer (time for the peer port to pause in quota-512 bit time).
3739 * Access: RW
3740 */
3741MLXSW_ITEM32(reg, pbmc, xoff_timer_value, 0x04, 16, 16);
3742
3743/* reg_pbmc_xoff_refresh
3744 * The time before a new pause frame should be sent to refresh the pause RW
3745 * state. Using the same units as xoff_timer_value above (in quota-512 bit
3746 * time).
3747 * Access: RW
3748 */
3749MLXSW_ITEM32(reg, pbmc, xoff_refresh, 0x04, 0, 16);
3750
3751#define MLXSW_REG_PBMC_PORT_SHARED_BUF_IDX 11
3752
3753/* reg_pbmc_buf_lossy
3754 * The field indicates if the buffer is lossy.
3755 * 0 - Lossless
3756 * 1 - Lossy
3757 * Access: RW
3758 */
3759MLXSW_ITEM32_INDEXED(reg, pbmc, buf_lossy, 0x0C, 25, 1, 0x08, 0x00, false);
3760
3761/* reg_pbmc_buf_epsb
3762 * Eligible for Port Shared buffer.
3763 * If epsb is set, packets assigned to buffer are allowed to insert the port
3764 * shared buffer.
3765 * When buf_lossy is MLXSW_REG_PBMC_LOSSY_LOSSY this field is reserved.
3766 * Access: RW
3767 */
3768MLXSW_ITEM32_INDEXED(reg, pbmc, buf_epsb, 0x0C, 24, 1, 0x08, 0x00, false);
3769
3770/* reg_pbmc_buf_size
3771 * The part of the packet buffer array is allocated for the specific buffer.
3772 * Units are represented in cells.
3773 * Access: RW
3774 */
3775MLXSW_ITEM32_INDEXED(reg, pbmc, buf_size, 0x0C, 0, 16, 0x08, 0x00, false);
3776
3777/* reg_pbmc_buf_xoff_threshold
3778 * Once the amount of data in the buffer goes above this value, device
3779 * starts sending PFC frames for all priorities associated with the
3780 * buffer. Units are represented in cells. Reserved in case of lossy
3781 * buffer.
3782 * Access: RW
3783 *
3784 * Note: In Spectrum, reserved for buffer[9].
3785 */
3786MLXSW_ITEM32_INDEXED(reg, pbmc, buf_xoff_threshold, 0x0C, 16, 16,
3787                     0x08, 0x04, false);
3788
3789/* reg_pbmc_buf_xon_threshold
3790 * When the amount of data in the buffer goes below this value, device
3791 * stops sending PFC frames for the priorities associated with the
3792 * buffer. Units are represented in cells. Reserved in case of lossy
3793 * buffer.
3794 * Access: RW
3795 *
3796 * Note: In Spectrum, reserved for buffer[9].
3797 */
3798MLXSW_ITEM32_INDEXED(reg, pbmc, buf_xon_threshold, 0x0C, 0, 16,
3799                     0x08, 0x04, false);
3800
3801static inline void mlxsw_reg_pbmc_pack(char *payload, u8 local_port,
3802                                       u16 xoff_timer_value, u16 xoff_refresh)
3803{
3804        MLXSW_REG_ZERO(pbmc, payload);
3805        mlxsw_reg_pbmc_local_port_set(payload, local_port);
3806        mlxsw_reg_pbmc_xoff_timer_value_set(payload, xoff_timer_value);
3807        mlxsw_reg_pbmc_xoff_refresh_set(payload, xoff_refresh);
3808}
3809
3810static inline void mlxsw_reg_pbmc_lossy_buffer_pack(char *payload,
3811                                                    int buf_index,
3812                                                    u16 size)
3813{
3814        mlxsw_reg_pbmc_buf_lossy_set(payload, buf_index, 1);
3815        mlxsw_reg_pbmc_buf_epsb_set(payload, buf_index, 0);
3816        mlxsw_reg_pbmc_buf_size_set(payload, buf_index, size);
3817}
3818
3819static inline void mlxsw_reg_pbmc_lossless_buffer_pack(char *payload,
3820                                                       int buf_index, u16 size,
3821                                                       u16 threshold)
3822{
3823        mlxsw_reg_pbmc_buf_lossy_set(payload, buf_index, 0);
3824        mlxsw_reg_pbmc_buf_epsb_set(payload, buf_index, 0);
3825        mlxsw_reg_pbmc_buf_size_set(payload, buf_index, size);
3826        mlxsw_reg_pbmc_buf_xoff_threshold_set(payload, buf_index, threshold);
3827        mlxsw_reg_pbmc_buf_xon_threshold_set(payload, buf_index, threshold);
3828}
3829
3830/* PSPA - Port Switch Partition Allocation
3831 * ---------------------------------------
3832 * Controls the association of a port with a switch partition and enables
3833 * configuring ports as stacking ports.
3834 */
3835#define MLXSW_REG_PSPA_ID 0x500D
3836#define MLXSW_REG_PSPA_LEN 0x8
3837
3838MLXSW_REG_DEFINE(pspa, MLXSW_REG_PSPA_ID, MLXSW_REG_PSPA_LEN);
3839
3840/* reg_pspa_swid
3841 * Switch partition ID.
3842 * Access: RW
3843 */
3844MLXSW_ITEM32(reg, pspa, swid, 0x00, 24, 8);
3845
3846/* reg_pspa_local_port
3847 * Local port number.
3848 * Access: Index
3849 */
3850MLXSW_ITEM32(reg, pspa, local_port, 0x00, 16, 8);
3851
3852/* reg_pspa_sub_port
3853 * Virtual port within the local port. Set to 0 when virtual ports are
3854 * disabled on the local port.
3855 * Access: Index
3856 */
3857MLXSW_ITEM32(reg, pspa, sub_port, 0x00, 8, 8);
3858
3859static inline void mlxsw_reg_pspa_pack(char *payload, u8 swid, u8 local_port)
3860{
3861        MLXSW_REG_ZERO(pspa, payload);
3862        mlxsw_reg_pspa_swid_set(payload, swid);
3863        mlxsw_reg_pspa_local_port_set(payload, local_port);
3864        mlxsw_reg_pspa_sub_port_set(payload, 0);
3865}
3866
3867/* HTGT - Host Trap Group Table
3868 * ----------------------------
3869 * Configures the properties for forwarding to CPU.
3870 */
3871#define MLXSW_REG_HTGT_ID 0x7002
3872#define MLXSW_REG_HTGT_LEN 0x20
3873
3874MLXSW_REG_DEFINE(htgt, MLXSW_REG_HTGT_ID, MLXSW_REG_HTGT_LEN);
3875
3876/* reg_htgt_swid
3877 * Switch partition ID.
3878 * Access: Index
3879 */
3880MLXSW_ITEM32(reg, htgt, swid, 0x00, 24, 8);
3881
3882#define MLXSW_REG_HTGT_PATH_TYPE_LOCAL 0x0      /* For locally attached CPU */
3883
3884/* reg_htgt_type
3885 * CPU path type.
3886 * Access: RW
3887 */
3888MLXSW_ITEM32(reg, htgt, type, 0x00, 8, 4);
3889
3890enum mlxsw_reg_htgt_trap_group {
3891        MLXSW_REG_HTGT_TRAP_GROUP_EMAD,
3892        MLXSW_REG_HTGT_TRAP_GROUP_SX2_RX,
3893        MLXSW_REG_HTGT_TRAP_GROUP_SX2_CTRL,
3894        MLXSW_REG_HTGT_TRAP_GROUP_SP_STP,
3895        MLXSW_REG_HTGT_TRAP_GROUP_SP_LACP,
3896        MLXSW_REG_HTGT_TRAP_GROUP_SP_LLDP,
3897        MLXSW_REG_HTGT_TRAP_GROUP_SP_IGMP,
3898        MLXSW_REG_HTGT_TRAP_GROUP_SP_BGP,
3899        MLXSW_REG_HTGT_TRAP_GROUP_SP_OSPF,
3900        MLXSW_REG_HTGT_TRAP_GROUP_SP_PIM,
3901        MLXSW_REG_HTGT_TRAP_GROUP_SP_MULTICAST,
3902        MLXSW_REG_HTGT_TRAP_GROUP_SP_ARP,
3903        MLXSW_REG_HTGT_TRAP_GROUP_SP_HOST_MISS,
3904        MLXSW_REG_HTGT_TRAP_GROUP_SP_ROUTER_EXP,
3905        MLXSW_REG_HTGT_TRAP_GROUP_SP_REMOTE_ROUTE,
3906        MLXSW_REG_HTGT_TRAP_GROUP_SP_IP2ME,
3907        MLXSW_REG_HTGT_TRAP_GROUP_SP_DHCP,
3908        MLXSW_REG_HTGT_TRAP_GROUP_SP_RPF,
3909        MLXSW_REG_HTGT_TRAP_GROUP_SP_EVENT,
3910        MLXSW_REG_HTGT_TRAP_GROUP_SP_IPV6_MLD,
3911        MLXSW_REG_HTGT_TRAP_GROUP_SP_IPV6_ND,
3912};
3913
3914/* reg_htgt_trap_group
3915 * Trap group number. User defined number specifying which trap groups
3916 * should be forwarded to the CPU. The mapping between trap IDs and trap
3917 * groups is configured using HPKT register.
3918 * Access: Index
3919 */
3920MLXSW_ITEM32(reg, htgt, trap_group, 0x00, 0, 8);
3921
3922enum {
3923        MLXSW_REG_HTGT_POLICER_DISABLE,
3924        MLXSW_REG_HTGT_POLICER_ENABLE,
3925};
3926
3927/* reg_htgt_pide
3928 * Enable policer ID specified using 'pid' field.
3929 * Access: RW
3930 */
3931MLXSW_ITEM32(reg, htgt, pide, 0x04, 15, 1);
3932
3933#define MLXSW_REG_HTGT_INVALID_POLICER 0xff
3934
3935/* reg_htgt_pid
3936 * Policer ID for the trap group.
3937 * Access: RW
3938 */
3939MLXSW_ITEM32(reg, htgt, pid, 0x04, 0, 8);
3940
3941#define MLXSW_REG_HTGT_TRAP_TO_CPU 0x0
3942
3943/* reg_htgt_mirror_action
3944 * Mirror action to use.
3945 * 0 - Trap to CPU.
3946 * 1 - Trap to CPU and mirror to a mirroring agent.
3947 * 2 - Mirror to a mirroring agent and do not trap to CPU.
3948 * Access: RW
3949 *
3950 * Note: Mirroring to a mirroring agent is only supported in Spectrum.
3951 */
3952MLXSW_ITEM32(reg, htgt, mirror_action, 0x08, 8, 2);
3953
3954/* reg_htgt_mirroring_agent
3955 * Mirroring agent.
3956 * Access: RW
3957 */
3958MLXSW_ITEM32(reg, htgt, mirroring_agent, 0x08, 0, 3);
3959
3960#define MLXSW_REG_HTGT_DEFAULT_PRIORITY 0
3961
3962/* reg_htgt_priority
3963 * Trap group priority.
3964 * In case a packet matches multiple classification rules, the packet will
3965 * only be trapped once, based on the trap ID associated with the group (via
3966 * register HPKT) with the highest priority.
3967 * Supported values are 0-7, with 7 represnting the highest priority.
3968 * Access: RW
3969 *
3970 * Note: In SwitchX-2 this field is ignored and the priority value is replaced
3971 * by the 'trap_group' field.
3972 */
3973MLXSW_ITEM32(reg, htgt, priority, 0x0C, 0, 4);
3974
3975#define MLXSW_REG_HTGT_DEFAULT_TC 7
3976
3977/* reg_htgt_local_path_cpu_tclass
3978 * CPU ingress traffic class for the trap group.
3979 * Access: RW
3980 */
3981MLXSW_ITEM32(reg, htgt, local_path_cpu_tclass, 0x10, 16, 6);
3982
3983enum mlxsw_reg_htgt_local_path_rdq {
3984        MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_CTRL = 0x13,
3985        MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_RX = 0x14,
3986        MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_EMAD = 0x15,
3987        MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SIB_EMAD = 0x15,
3988};
3989/* reg_htgt_local_path_rdq
3990 * Receive descriptor queue (RDQ) to use for the trap group.
3991 * Access: RW
3992 */
3993MLXSW_ITEM32(reg, htgt, local_path_rdq, 0x10, 0, 6);
3994
3995static inline void mlxsw_reg_htgt_pack(char *payload, u8 group, u8 policer_id,
3996                                       u8 priority, u8 tc)
3997{
3998        MLXSW_REG_ZERO(htgt, payload);
3999
4000        if (policer_id == MLXSW_REG_HTGT_INVALID_POLICER) {
4001                mlxsw_reg_htgt_pide_set(payload,
4002                                        MLXSW_REG_HTGT_POLICER_DISABLE);
4003        } else {
4004                mlxsw_reg_htgt_pide_set(payload,
4005                                        MLXSW_REG_HTGT_POLICER_ENABLE);
4006                mlxsw_reg_htgt_pid_set(payload, policer_id);
4007        }
4008
4009        mlxsw_reg_htgt_type_set(payload, MLXSW_REG_HTGT_PATH_TYPE_LOCAL);
4010        mlxsw_reg_htgt_trap_group_set(payload, group);
4011        mlxsw_reg_htgt_mirror_action_set(payload, MLXSW_REG_HTGT_TRAP_TO_CPU);
4012        mlxsw_reg_htgt_mirroring_agent_set(payload, 0);
4013        mlxsw_reg_htgt_priority_set(payload, priority);
4014        mlxsw_reg_htgt_local_path_cpu_tclass_set(payload, tc);
4015        mlxsw_reg_htgt_local_path_rdq_set(payload, group);
4016}
4017
4018/* HPKT - Host Packet Trap
4019 * -----------------------
4020 * Configures trap IDs inside trap groups.
4021 */
4022#define MLXSW_REG_HPKT_ID 0x7003
4023#define MLXSW_REG_HPKT_LEN 0x10
4024
4025MLXSW_REG_DEFINE(hpkt, MLXSW_REG_HPKT_ID, MLXSW_REG_HPKT_LEN);
4026
4027enum {
4028        MLXSW_REG_HPKT_ACK_NOT_REQUIRED,
4029        MLXSW_REG_HPKT_ACK_REQUIRED,
4030};
4031
4032/* reg_hpkt_ack
4033 * Require acknowledgements from the host for events.
4034 * If set, then the device will wait for the event it sent to be acknowledged
4035 * by the host. This option is only relevant for event trap IDs.
4036 * Access: RW
4037 *
4038 * Note: Currently not supported by firmware.
4039 */
4040MLXSW_ITEM32(reg, hpkt, ack, 0x00, 24, 1);
4041
4042enum mlxsw_reg_hpkt_action {
4043        MLXSW_REG_HPKT_ACTION_FORWARD,
4044        MLXSW_REG_HPKT_ACTION_TRAP_TO_CPU,
4045        MLXSW_REG_HPKT_ACTION_MIRROR_TO_CPU,
4046        MLXSW_REG_HPKT_ACTION_DISCARD,
4047        MLXSW_REG_HPKT_ACTION_SOFT_DISCARD,
4048        MLXSW_REG_HPKT_ACTION_TRAP_AND_SOFT_DISCARD,
4049};
4050
4051/* reg_hpkt_action
4052 * Action to perform on packet when trapped.
4053 * 0 - No action. Forward to CPU based on switching rules.
4054 * 1 - Trap to CPU (CPU receives sole copy).
4055 * 2 - Mirror to CPU (CPU receives a replica of the packet).
4056 * 3 - Discard.
4057 * 4 - Soft discard (allow other traps to act on the packet).
4058 * 5 - Trap and soft discard (allow other traps to overwrite this trap).
4059 * Access: RW
4060 *
4061 * Note: Must be set to 0 (forward) for event trap IDs, as they are already
4062 * addressed to the CPU.
4063 */
4064MLXSW_ITEM32(reg, hpkt, action, 0x00, 20, 3);
4065
4066/* reg_hpkt_trap_group
4067 * Trap group to associate the trap with.
4068 * Access: RW
4069 */
4070MLXSW_ITEM32(reg, hpkt, trap_group, 0x00, 12, 6);
4071
4072/* reg_hpkt_trap_id
4073 * Trap ID.
4074 * Access: Index
4075 *
4076 * Note: A trap ID can only be associated with a single trap group. The device
4077 * will associate the trap ID with the last trap group configured.
4078 */
4079MLXSW_ITEM32(reg, hpkt, trap_id, 0x00, 0, 9);
4080
4081enum {
4082        MLXSW_REG_HPKT_CTRL_PACKET_DEFAULT,
4083        MLXSW_REG_HPKT_CTRL_PACKET_NO_BUFFER,
4084        MLXSW_REG_HPKT_CTRL_PACKET_USE_BUFFER,
4085};
4086
4087/* reg_hpkt_ctrl
4088 * Configure dedicated buffer resources for control packets.
4089 * Ignored by SwitchX-2.
4090 * 0 - Keep factory defaults.
4091 * 1 - Do not use control buffer for this trap ID.
4092 * 2 - Use control buffer for this trap ID.
4093 * Access: RW
4094 */
4095MLXSW_ITEM32(reg, hpkt, ctrl, 0x04, 16, 2);
4096
4097static inline void mlxsw_reg_hpkt_pack(char *payload, u8 action, u16 trap_id,
4098                                       enum mlxsw_reg_htgt_trap_group trap_group,
4099                                       bool is_ctrl)
4100{
4101        MLXSW_REG_ZERO(hpkt, payload);
4102        mlxsw_reg_hpkt_ack_set(payload, MLXSW_REG_HPKT_ACK_NOT_REQUIRED);
4103        mlxsw_reg_hpkt_action_set(payload, action);
4104        mlxsw_reg_hpkt_trap_group_set(payload, trap_group);
4105        mlxsw_reg_hpkt_trap_id_set(payload, trap_id);
4106        mlxsw_reg_hpkt_ctrl_set(payload, is_ctrl ?
4107                                MLXSW_REG_HPKT_CTRL_PACKET_USE_BUFFER :
4108                                MLXSW_REG_HPKT_CTRL_PACKET_NO_BUFFER);
4109}
4110
4111/* RGCR - Router General Configuration Register
4112 * --------------------------------------------
4113 * The register is used for setting up the router configuration.
4114 */
4115#define MLXSW_REG_RGCR_ID 0x8001
4116#define MLXSW_REG_RGCR_LEN 0x28
4117
4118MLXSW_REG_DEFINE(rgcr, MLXSW_REG_RGCR_ID, MLXSW_REG_RGCR_LEN);
4119
4120/* reg_rgcr_ipv4_en
4121 * IPv4 router enable.
4122 * Access: RW
4123 */
4124MLXSW_ITEM32(reg, rgcr, ipv4_en, 0x00, 31, 1);
4125
4126/* reg_rgcr_ipv6_en
4127 * IPv6 router enable.
4128 * Access: RW
4129 */
4130MLXSW_ITEM32(reg, rgcr, ipv6_en, 0x00, 30, 1);
4131
4132/* reg_rgcr_max_router_interfaces
4133 * Defines the maximum number of active router interfaces for all virtual
4134 * routers.
4135 * Access: RW
4136 */
4137MLXSW_ITEM32(reg, rgcr, max_router_interfaces, 0x10, 0, 16);
4138
4139/* reg_rgcr_usp
4140 * Update switch priority and packet color.
4141 * 0 - Preserve the value of Switch Priority and packet color.
4142 * 1 - Recalculate the value of Switch Priority and packet color.
4143 * Access: RW
4144 *
4145 * Note: Not supported by SwitchX and SwitchX-2.
4146 */
4147MLXSW_ITEM32(reg, rgcr, usp, 0x18, 20, 1);
4148
4149/* reg_rgcr_pcp_rw
4150 * Indicates how to handle the pcp_rewrite_en value:
4151 * 0 - Preserve the value of pcp_rewrite_en.
4152 * 2 - Disable PCP rewrite.
4153 * 3 - Enable PCP rewrite.
4154 * Access: RW
4155 *
4156 * Note: Not supported by SwitchX and SwitchX-2.
4157 */
4158MLXSW_ITEM32(reg, rgcr, pcp_rw, 0x18, 16, 2);
4159
4160/* reg_rgcr_activity_dis
4161 * Activity disable:
4162 * 0 - Activity will be set when an entry is hit (default).
4163 * 1 - Activity will not be set when an entry is hit.
4164 *
4165 * Bit 0 - Disable activity bit in Router Algorithmic LPM Unicast Entry
4166 * (RALUE).
4167 * Bit 1 - Disable activity bit in Router Algorithmic LPM Unicast Host
4168 * Entry (RAUHT).
4169 * Bits 2:7 are reserved.
4170 * Access: RW
4171 *
4172 * Note: Not supported by SwitchX, SwitchX-2 and Switch-IB.
4173 */
4174MLXSW_ITEM32(reg, rgcr, activity_dis, 0x20, 0, 8);
4175
4176static inline void mlxsw_reg_rgcr_pack(char *payload, bool ipv4_en,
4177                                       bool ipv6_en)
4178{
4179        MLXSW_REG_ZERO(rgcr, payload);
4180        mlxsw_reg_rgcr_ipv4_en_set(payload, ipv4_en);
4181        mlxsw_reg_rgcr_ipv6_en_set(payload, ipv6_en);
4182}
4183
4184/* RITR - Router Interface Table Register
4185 * --------------------------------------
4186 * The register is used to configure the router interface table.
4187 */
4188#define MLXSW_REG_RITR_ID 0x8002
4189#define MLXSW_REG_RITR_LEN 0x40
4190
4191MLXSW_REG_DEFINE(ritr, MLXSW_REG_RITR_ID, MLXSW_REG_RITR_LEN);
4192
4193/* reg_ritr_enable
4194 * Enables routing on the router interface.
4195 * Access: RW
4196 */
4197MLXSW_ITEM32(reg, ritr, enable, 0x00, 31, 1);
4198
4199/* reg_ritr_ipv4
4200 * IPv4 routing enable. Enables routing of IPv4 traffic on the router
4201 * interface.
4202 * Access: RW
4203 */
4204MLXSW_ITEM32(reg, ritr, ipv4, 0x00, 29, 1);
4205
4206/* reg_ritr_ipv6
4207 * IPv6 routing enable. Enables routing of IPv6 traffic on the router
4208 * interface.
4209 * Access: RW
4210 */
4211MLXSW_ITEM32(reg, ritr, ipv6, 0x00, 28, 1);
4212
4213/* reg_ritr_ipv4_mc
4214 * IPv4 multicast routing enable.
4215 * Access: RW
4216 */
4217MLXSW_ITEM32(reg, ritr, ipv4_mc, 0x00, 27, 1);
4218
4219enum mlxsw_reg_ritr_if_type {
4220        /* VLAN interface. */
4221        MLXSW_REG_RITR_VLAN_IF,
4222        /* FID interface. */
4223        MLXSW_REG_RITR_FID_IF,
4224        /* Sub-port interface. */
4225        MLXSW_REG_RITR_SP_IF,
4226        /* Loopback Interface. */
4227        MLXSW_REG_RITR_LOOPBACK_IF,
4228};
4229
4230/* reg_ritr_type
4231 * Router interface type as per enum mlxsw_reg_ritr_if_type.
4232 * Access: RW
4233 */
4234MLXSW_ITEM32(reg, ritr, type, 0x00, 23, 3);
4235
4236enum {
4237        MLXSW_REG_RITR_RIF_CREATE,
4238        MLXSW_REG_RITR_RIF_DEL,
4239};
4240
4241/* reg_ritr_op
4242 * Opcode:
4243 * 0 - Create or edit RIF.
4244 * 1 - Delete RIF.
4245 * Reserved for SwitchX-2. For Spectrum, editing of interface properties
4246 * is not supported. An interface must be deleted and re-created in order
4247 * to update properties.
4248 * Access: WO
4249 */
4250MLXSW_ITEM32(reg, ritr, op, 0x00, 20, 2);
4251
4252/* reg_ritr_rif
4253 * Router interface index. A pointer to the Router Interface Table.
4254 * Access: Index
4255 */
4256MLXSW_ITEM32(reg, ritr, rif, 0x00, 0, 16);
4257
4258/* reg_ritr_ipv4_fe
4259 * IPv4 Forwarding Enable.
4260 * Enables routing of IPv4 traffic on the router interface. When disabled,
4261 * forwarding is blocked but local traffic (traps and IP2ME) will be enabled.
4262 * Not supported in SwitchX-2.
4263 * Access: RW
4264 */
4265MLXSW_ITEM32(reg, ritr, ipv4_fe, 0x04, 29, 1);
4266
4267/* reg_ritr_ipv6_fe
4268 * IPv6 Forwarding Enable.
4269 * Enables routing of IPv6 traffic on the router interface. When disabled,
4270 * forwarding is blocked but local traffic (traps and IP2ME) will be enabled.
4271 * Not supported in SwitchX-2.
4272 * Access: RW
4273 */
4274MLXSW_ITEM32(reg, ritr, ipv6_fe, 0x04, 28, 1);
4275
4276/* reg_ritr_ipv4_mc_fe
4277 * IPv4 Multicast Forwarding Enable.
4278 * When disabled, forwarding is blocked but local traffic (traps and IP to me)
4279 * will be enabled.
4280 * Access: RW
4281 */
4282MLXSW_ITEM32(reg, ritr, ipv4_mc_fe, 0x04, 27, 1);
4283
4284/* reg_ritr_lb_en
4285 * Loop-back filter enable for unicast packets.
4286 * If the flag is set then loop-back filter for unicast packets is
4287 * implemented on the RIF. Multicast packets are always subject to
4288 * loop-back filtering.
4289 * Access: RW
4290 */
4291MLXSW_ITEM32(reg, ritr, lb_en, 0x04, 24, 1);
4292
4293/* reg_ritr_virtual_router
4294 * Virtual router ID associated with the router interface.
4295 * Access: RW
4296 */
4297MLXSW_ITEM32(reg, ritr, virtual_router, 0x04, 0, 16);
4298
4299/* reg_ritr_mtu
4300 * Router interface MTU.
4301 * Access: RW
4302 */
4303MLXSW_ITEM32(reg, ritr, mtu, 0x34, 0, 16);
4304
4305/* reg_ritr_if_swid
4306 * Switch partition ID.
4307 * Access: RW
4308 */
4309MLXSW_ITEM32(reg, ritr, if_swid, 0x08, 24, 8);
4310
4311/* reg_ritr_if_mac
4312 * Router interface MAC address.
4313 * In Spectrum, all MAC addresses must have the same 38 MSBits.
4314 * Access: RW
4315 */
4316MLXSW_ITEM_BUF(reg, ritr, if_mac, 0x12, 6);
4317
4318/* VLAN Interface */
4319
4320/* reg_ritr_vlan_if_vid
4321 * VLAN ID.
4322 * Access: RW
4323 */
4324MLXSW_ITEM32(reg, ritr, vlan_if_vid, 0x08, 0, 12);
4325
4326/* FID Interface */
4327
4328/* reg_ritr_fid_if_fid
4329 * Filtering ID. Used to connect a bridge to the router. Only FIDs from
4330 * the vFID range are supported.
4331 * Access: RW
4332 */
4333MLXSW_ITEM32(reg, ritr, fid_if_fid, 0x08, 0, 16);
4334
4335static inline void mlxsw_reg_ritr_fid_set(char *payload,
4336                                          enum mlxsw_reg_ritr_if_type rif_type,
4337                                          u16 fid)
4338{
4339        if (rif_type == MLXSW_REG_RITR_FID_IF)
4340                mlxsw_reg_ritr_fid_if_fid_set(payload, fid);
4341        else
4342                mlxsw_reg_ritr_vlan_if_vid_set(payload, fid);
4343}
4344
4345/* Sub-port Interface */
4346
4347/* reg_ritr_sp_if_lag
4348 * LAG indication. When this bit is set the system_port field holds the
4349 * LAG identifier.
4350 * Access: RW
4351 */
4352MLXSW_ITEM32(reg, ritr, sp_if_lag, 0x08, 24, 1);
4353
4354/* reg_ritr_sp_system_port
4355 * Port unique indentifier. When lag bit is set, this field holds the
4356 * lag_id in bits 0:9.
4357 * Access: RW
4358 */
4359MLXSW_ITEM32(reg, ritr, sp_if_system_port, 0x08, 0, 16);
4360
4361/* reg_ritr_sp_if_vid
4362 * VLAN ID.
4363 * Access: RW
4364 */
4365MLXSW_ITEM32(reg, ritr, sp_if_vid, 0x18, 0, 12);
4366
4367/* Loopback Interface */
4368
4369enum mlxsw_reg_ritr_loopback_protocol {
4370        /* IPinIP IPv4 underlay Unicast */
4371        MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV4,
4372        /* IPinIP IPv6 underlay Unicast */
4373        MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV6,
4374};
4375
4376/* reg_ritr_loopback_protocol
4377 * Access: RW
4378 */
4379MLXSW_ITEM32(reg, ritr, loopback_protocol, 0x08, 28, 4);
4380
4381enum mlxsw_reg_ritr_loopback_ipip_type {
4382        /* Tunnel is IPinIP. */
4383        MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_IP,
4384        /* Tunnel is GRE, no key. */
4385        MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_GRE_IN_IP,
4386        /* Tunnel is GRE, with a key. */
4387        MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_GRE_KEY_IN_IP,
4388};
4389
4390/* reg_ritr_loopback_ipip_type
4391 * Encapsulation type.
4392 * Access: RW
4393 */
4394MLXSW_ITEM32(reg, ritr, loopback_ipip_type, 0x10, 24, 4);
4395
4396enum mlxsw_reg_ritr_loopback_ipip_options {
4397        /* The key is defined by gre_key. */
4398        MLXSW_REG_RITR_LOOPBACK_IPIP_OPTIONS_GRE_KEY_PRESET,
4399};
4400
4401/* reg_ritr_loopback_ipip_options
4402 * Access: RW
4403 */
4404MLXSW_ITEM32(reg, ritr, loopback_ipip_options, 0x10, 20, 4);
4405
4406/* reg_ritr_loopback_ipip_uvr
4407 * Underlay Virtual Router ID.
4408 * Range is 0..cap_max_virtual_routers-1.
4409 * Reserved for Spectrum-2.
4410 * Access: RW
4411 */
4412MLXSW_ITEM32(reg, ritr, loopback_ipip_uvr, 0x10, 0, 16);
4413
4414/* reg_ritr_loopback_ipip_usip*
4415 * Encapsulation Underlay source IP.
4416 * Access: RW
4417 */
4418MLXSW_ITEM_BUF(reg, ritr, loopback_ipip_usip6, 0x18, 16);
4419MLXSW_ITEM32(reg, ritr, loopback_ipip_usip4, 0x24, 0, 32);
4420
4421/* reg_ritr_loopback_ipip_gre_key
4422 * GRE Key.
4423 * Reserved when ipip_type is not IP_IN_GRE_KEY_IN_IP.
4424 * Access: RW
4425 */
4426MLXSW_ITEM32(reg, ritr, loopback_ipip_gre_key, 0x28, 0, 32);
4427
4428/* Shared between ingress/egress */
4429enum mlxsw_reg_ritr_counter_set_type {
4430        /* No Count. */
4431        MLXSW_REG_RITR_COUNTER_SET_TYPE_NO_COUNT = 0x0,
4432        /* Basic. Used for router interfaces, counting the following:
4433         *      - Error and Discard counters.
4434         *      - Unicast, Multicast and Broadcast counters. Sharing the
4435         *        same set of counters for the different type of traffic
4436         *        (IPv4, IPv6 and mpls).
4437         */
4438        MLXSW_REG_RITR_COUNTER_SET_TYPE_BASIC = 0x9,
4439};
4440
4441/* reg_ritr_ingress_counter_index
4442 * Counter Index for flow counter.
4443 * Access: RW
4444 */
4445MLXSW_ITEM32(reg, ritr, ingress_counter_index, 0x38, 0, 24);
4446
4447/* reg_ritr_ingress_counter_set_type
4448 * Igress Counter Set Type for router interface counter.
4449 * Access: RW
4450 */
4451MLXSW_ITEM32(reg, ritr, ingress_counter_set_type, 0x38, 24, 8);
4452
4453/* reg_ritr_egress_counter_index
4454 * Counter Index for flow counter.
4455 * Access: RW
4456 */
4457MLXSW_ITEM32(reg, ritr, egress_counter_index, 0x3C, 0, 24);
4458
4459/* reg_ritr_egress_counter_set_type
4460 * Egress Counter Set Type for router interface counter.
4461 * Access: RW
4462 */
4463MLXSW_ITEM32(reg, ritr, egress_counter_set_type, 0x3C, 24, 8);
4464
4465static inline void mlxsw_reg_ritr_counter_pack(char *payload, u32 index,
4466                                               bool enable, bool egress)
4467{
4468        enum mlxsw_reg_ritr_counter_set_type set_type;
4469
4470        if (enable)
4471                set_type = MLXSW_REG_RITR_COUNTER_SET_TYPE_BASIC;
4472        else
4473                set_type = MLXSW_REG_RITR_COUNTER_SET_TYPE_NO_COUNT;
4474        mlxsw_reg_ritr_egress_counter_set_type_set(payload, set_type);
4475
4476        if (egress)
4477                mlxsw_reg_ritr_egress_counter_index_set(payload, index);
4478        else
4479                mlxsw_reg_ritr_ingress_counter_index_set(payload, index);
4480}
4481
4482static inline void mlxsw_reg_ritr_rif_pack(char *payload, u16 rif)
4483{
4484        MLXSW_REG_ZERO(ritr, payload);
4485        mlxsw_reg_ritr_rif_set(payload, rif);
4486}
4487
4488static inline void mlxsw_reg_ritr_sp_if_pack(char *payload, bool lag,
4489                                             u16 system_port, u16 vid)
4490{
4491        mlxsw_reg_ritr_sp_if_lag_set(payload, lag);
4492        mlxsw_reg_ritr_sp_if_system_port_set(payload, system_port);
4493        mlxsw_reg_ritr_sp_if_vid_set(payload, vid);
4494}
4495
4496static inline void mlxsw_reg_ritr_pack(char *payload, bool enable,
4497                                       enum mlxsw_reg_ritr_if_type type,
4498                                       u16 rif, u16 vr_id, u16 mtu)
4499{
4500        bool op = enable ? MLXSW_REG_RITR_RIF_CREATE : MLXSW_REG_RITR_RIF_DEL;
4501
4502        MLXSW_REG_ZERO(ritr, payload);
4503        mlxsw_reg_ritr_enable_set(payload, enable);
4504        mlxsw_reg_ritr_ipv4_set(payload, 1);
4505        mlxsw_reg_ritr_ipv6_set(payload, 1);
4506        mlxsw_reg_ritr_ipv4_mc_set(payload, 1);
4507        mlxsw_reg_ritr_type_set(payload, type);
4508        mlxsw_reg_ritr_op_set(payload, op);
4509        mlxsw_reg_ritr_rif_set(payload, rif);
4510        mlxsw_reg_ritr_ipv4_fe_set(payload, 1);
4511        mlxsw_reg_ritr_ipv6_fe_set(payload, 1);
4512        mlxsw_reg_ritr_ipv4_mc_fe_set(payload, 1);
4513        mlxsw_reg_ritr_lb_en_set(payload, 1);
4514        mlxsw_reg_ritr_virtual_router_set(payload, vr_id);
4515        mlxsw_reg_ritr_mtu_set(payload, mtu);
4516}
4517
4518static inline void mlxsw_reg_ritr_mac_pack(char *payload, const char *mac)
4519{
4520        mlxsw_reg_ritr_if_mac_memcpy_to(payload, mac);
4521}
4522
4523static inline void
4524mlxsw_reg_ritr_loopback_ipip_common_pack(char *payload,
4525                            enum mlxsw_reg_ritr_loopback_ipip_type ipip_type,
4526                            enum mlxsw_reg_ritr_loopback_ipip_options options,
4527                            u16 uvr_id, u32 gre_key)
4528{
4529        mlxsw_reg_ritr_loopback_ipip_type_set(payload, ipip_type);
4530        mlxsw_reg_ritr_loopback_ipip_options_set(payload, options);
4531        mlxsw_reg_ritr_loopback_ipip_uvr_set(payload, uvr_id);
4532        mlxsw_reg_ritr_loopback_ipip_gre_key_set(payload, gre_key);
4533}
4534
4535static inline void
4536mlxsw_reg_ritr_loopback_ipip4_pack(char *payload,
4537                            enum mlxsw_reg_ritr_loopback_ipip_type ipip_type,
4538                            enum mlxsw_reg_ritr_loopback_ipip_options options,
4539                            u16 uvr_id, u32 usip, u32 gre_key)
4540{
4541        mlxsw_reg_ritr_loopback_protocol_set(payload,
4542                                    MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV4);
4543        mlxsw_reg_ritr_loopback_ipip_common_pack(payload, ipip_type, options,
4544                                                 uvr_id, gre_key);
4545        mlxsw_reg_ritr_loopback_ipip_usip4_set(payload, usip);
4546}
4547
4548/* RTAR - Router TCAM Allocation Register
4549 * --------------------------------------
4550 * This register is used for allocation of regions in the TCAM table.
4551 */
4552#define MLXSW_REG_RTAR_ID 0x8004
4553#define MLXSW_REG_RTAR_LEN 0x20
4554
4555MLXSW_REG_DEFINE(rtar, MLXSW_REG_RTAR_ID, MLXSW_REG_RTAR_LEN);
4556
4557enum mlxsw_reg_rtar_op {
4558        MLXSW_REG_RTAR_OP_ALLOCATE,
4559        MLXSW_REG_RTAR_OP_RESIZE,
4560        MLXSW_REG_RTAR_OP_DEALLOCATE,
4561};
4562
4563/* reg_rtar_op
4564 * Access: WO
4565 */
4566MLXSW_ITEM32(reg, rtar, op, 0x00, 28, 4);
4567
4568enum mlxsw_reg_rtar_key_type {
4569        MLXSW_REG_RTAR_KEY_TYPE_IPV4_MULTICAST = 1,
4570        MLXSW_REG_RTAR_KEY_TYPE_IPV6_MULTICAST = 3
4571};
4572
4573/* reg_rtar_key_type
4574 * TCAM key type for the region.
4575 * Access: WO
4576 */
4577MLXSW_ITEM32(reg, rtar, key_type, 0x00, 0, 8);
4578
4579/* reg_rtar_region_size
4580 * TCAM region size. When allocating/resizing this is the requested
4581 * size, the response is the actual size.
4582 * Note: Actual size may be larger than requested.
4583 * Reserved for op = Deallocate
4584 * Access: WO
4585 */
4586MLXSW_ITEM32(reg, rtar, region_size, 0x04, 0, 16);
4587
4588static inline void mlxsw_reg_rtar_pack(char *payload,
4589                                       enum mlxsw_reg_rtar_op op,
4590                                       enum mlxsw_reg_rtar_key_type key_type,
4591                                       u16 region_size)
4592{
4593        MLXSW_REG_ZERO(rtar, payload);
4594        mlxsw_reg_rtar_op_set(payload, op);
4595        mlxsw_reg_rtar_key_type_set(payload, key_type);
4596        mlxsw_reg_rtar_region_size_set(payload, region_size);
4597}
4598
4599/* RATR - Router Adjacency Table Register
4600 * --------------------------------------
4601 * The RATR register is used to configure the Router Adjacency (next-hop)
4602 * Table.
4603 */
4604#define MLXSW_REG_RATR_ID 0x8008
4605#define MLXSW_REG_RATR_LEN 0x2C
4606
4607MLXSW_REG_DEFINE(ratr, MLXSW_REG_RATR_ID, MLXSW_REG_RATR_LEN);
4608
4609enum mlxsw_reg_ratr_op {
4610        /* Read */
4611        MLXSW_REG_RATR_OP_QUERY_READ = 0,
4612        /* Read and clear activity */
4613        MLXSW_REG_RATR_OP_QUERY_READ_CLEAR = 2,
4614        /* Write Adjacency entry */
4615        MLXSW_REG_RATR_OP_WRITE_WRITE_ENTRY = 1,
4616        /* Write Adjacency entry only if the activity is cleared.
4617         * The write may not succeed if the activity is set. There is not
4618         * direct feedback if the write has succeeded or not, however
4619         * the get will reveal the actual entry (SW can compare the get
4620         * response to the set command).
4621         */
4622        MLXSW_REG_RATR_OP_WRITE_WRITE_ENTRY_ON_ACTIVITY = 3,
4623};
4624
4625/* reg_ratr_op
4626 * Note that Write operation may also be used for updating
4627 * counter_set_type and counter_index. In this case all other
4628 * fields must not be updated.
4629 * Access: OP
4630 */
4631MLXSW_ITEM32(reg, ratr, op, 0x00, 28, 4);
4632
4633/* reg_ratr_v
4634 * Valid bit. Indicates if the adjacency entry is valid.
4635 * Note: the device may need some time before reusing an invalidated
4636 * entry. During this time the entry can not be reused. It is
4637 * recommended to use another entry before reusing an invalidated
4638 * entry (e.g. software can put it at the end of the list for
4639 * reusing). Trying to access an invalidated entry not yet cleared
4640 * by the device results with failure indicating "Try Again" status.
4641 * When valid is '0' then egress_router_interface,trap_action,
4642 * adjacency_parameters and counters are reserved
4643 * Access: RW
4644 */
4645MLXSW_ITEM32(reg, ratr, v, 0x00, 24, 1);
4646
4647/* reg_ratr_a
4648 * Activity. Set for new entries. Set if a packet lookup has hit on
4649 * the specific entry. To clear the a bit, use "clear activity".
4650 * Access: RO
4651 */
4652MLXSW_ITEM32(reg, ratr, a, 0x00, 16, 1);
4653
4654enum mlxsw_reg_ratr_type {
4655        /* Ethernet */
4656        MLXSW_REG_RATR_TYPE_ETHERNET,
4657        /* IPoIB Unicast without GRH.
4658         * Reserved for Spectrum.
4659         */
4660        MLXSW_REG_RATR_TYPE_IPOIB_UC,
4661        /* IPoIB Unicast with GRH. Supported only in table 0 (Ethernet unicast
4662         * adjacency).
4663         * Reserved for Spectrum.
4664         */
4665        MLXSW_REG_RATR_TYPE_IPOIB_UC_W_GRH,
4666        /* IPoIB Multicast.
4667         * Reserved for Spectrum.
4668         */
4669        MLXSW_REG_RATR_TYPE_IPOIB_MC,
4670        /* MPLS.
4671         * Reserved for SwitchX/-2.
4672         */
4673        MLXSW_REG_RATR_TYPE_MPLS,
4674        /* IPinIP Encap.
4675         * Reserved for SwitchX/-2.
4676         */
4677        MLXSW_REG_RATR_TYPE_IPIP,
4678};
4679
4680/* reg_ratr_type
4681 * Adjacency entry type.
4682 * Access: RW
4683 */
4684MLXSW_ITEM32(reg, ratr, type, 0x04, 28, 4);
4685
4686/* reg_ratr_adjacency_index_low
4687 * Bits 15:0 of index into the adjacency table.
4688 * For SwitchX and SwitchX-2, the adjacency table is linear and
4689 * used for adjacency entries only.
4690 * For Spectrum, the index is to the KVD linear.
4691 * Access: Index
4692 */
4693MLXSW_ITEM32(reg, ratr, adjacency_index_low, 0x04, 0, 16);
4694
4695/* reg_ratr_egress_router_interface
4696 * Range is 0 .. cap_max_router_interfaces - 1
4697 * Access: RW
4698 */
4699MLXSW_ITEM32(reg, ratr, egress_router_interface, 0x08, 0, 16);
4700
4701enum mlxsw_reg_ratr_trap_action {
4702        MLXSW_REG_RATR_TRAP_ACTION_NOP,
4703        MLXSW_REG_RATR_TRAP_ACTION_TRAP,
4704        MLXSW_REG_RATR_TRAP_ACTION_MIRROR_TO_CPU,
4705        MLXSW_REG_RATR_TRAP_ACTION_MIRROR,
4706        MLXSW_REG_RATR_TRAP_ACTION_DISCARD_ERRORS,
4707};
4708
4709/* reg_ratr_trap_action
4710 * see mlxsw_reg_ratr_trap_action
4711 * Access: RW
4712 */
4713MLXSW_ITEM32(reg, ratr, trap_action, 0x0C, 28, 4);
4714
4715/* reg_ratr_adjacency_index_high
4716 * Bits 23:16 of the adjacency_index.
4717 * Access: Index
4718 */
4719MLXSW_ITEM32(reg, ratr, adjacency_index_high, 0x0C, 16, 8);
4720
4721enum mlxsw_reg_ratr_trap_id {
4722        MLXSW_REG_RATR_TRAP_ID_RTR_EGRESS0,
4723        MLXSW_REG_RATR_TRAP_ID_RTR_EGRESS1,
4724};
4725
4726/* reg_ratr_trap_id
4727 * Trap ID to be reported to CPU.
4728 * Trap-ID is RTR_EGRESS0 or RTR_EGRESS1.
4729 * For trap_action of NOP, MIRROR and DISCARD_ERROR
4730 * Access: RW
4731 */
4732MLXSW_ITEM32(reg, ratr, trap_id, 0x0C, 0, 8);
4733
4734/* reg_ratr_eth_destination_mac
4735 * MAC address of the destination next-hop.
4736 * Access: RW
4737 */
4738MLXSW_ITEM_BUF(reg, ratr, eth_destination_mac, 0x12, 6);
4739
4740enum mlxsw_reg_ratr_ipip_type {
4741        /* IPv4, address set by mlxsw_reg_ratr_ipip_ipv4_udip. */
4742        MLXSW_REG_RATR_IPIP_TYPE_IPV4,
4743        /* IPv6, address set by mlxsw_reg_ratr_ipip_ipv6_ptr. */
4744        MLXSW_REG_RATR_IPIP_TYPE_IPV6,
4745};
4746
4747/* reg_ratr_ipip_type
4748 * Underlay destination ip type.
4749 * Note: the type field must match the protocol of the router interface.
4750 * Access: RW
4751 */
4752MLXSW_ITEM32(reg, ratr, ipip_type, 0x10, 16, 4);
4753
4754/* reg_ratr_ipip_ipv4_udip
4755 * Underlay ipv4 dip.
4756 * Reserved when ipip_type is IPv6.
4757 * Access: RW
4758 */
4759MLXSW_ITEM32(reg, ratr, ipip_ipv4_udip, 0x18, 0, 32);
4760
4761/* reg_ratr_ipip_ipv6_ptr
4762 * Pointer to IPv6 underlay destination ip address.
4763 * For Spectrum: Pointer to KVD linear space.
4764 * Access: RW
4765 */
4766MLXSW_ITEM32(reg, ratr, ipip_ipv6_ptr, 0x1C, 0, 24);
4767
4768enum mlxsw_reg_flow_counter_set_type {
4769        /* No count */
4770        MLXSW_REG_FLOW_COUNTER_SET_TYPE_NO_COUNT = 0x00,
4771        /* Count packets and bytes */
4772        MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES = 0x03,
4773        /* Count only packets */
4774        MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS = 0x05,
4775};
4776
4777/* reg_ratr_counter_set_type
4778 * Counter set type for flow counters
4779 * Access: RW
4780 */
4781MLXSW_ITEM32(reg, ratr, counter_set_type, 0x28, 24, 8);
4782
4783/* reg_ratr_counter_index
4784 * Counter index for flow counters
4785 * Access: RW
4786 */
4787MLXSW_ITEM32(reg, ratr, counter_index, 0x28, 0, 24);
4788
4789static inline void
4790mlxsw_reg_ratr_pack(char *payload,
4791                    enum mlxsw_reg_ratr_op op, bool valid,
4792                    enum mlxsw_reg_ratr_type type,
4793                    u32 adjacency_index, u16 egress_rif)
4794{
4795        MLXSW_REG_ZERO(ratr, payload);
4796        mlxsw_reg_ratr_op_set(payload, op);
4797        mlxsw_reg_ratr_v_set(payload, valid);
4798        mlxsw_reg_ratr_type_set(payload, type);
4799        mlxsw_reg_ratr_adjacency_index_low_set(payload, adjacency_index);
4800        mlxsw_reg_ratr_adjacency_index_high_set(payload, adjacency_index >> 16);
4801        mlxsw_reg_ratr_egress_router_interface_set(payload, egress_rif);
4802}
4803
4804static inline void mlxsw_reg_ratr_eth_entry_pack(char *payload,
4805                                                 const char *dest_mac)
4806{
4807        mlxsw_reg_ratr_eth_destination_mac_memcpy_to(payload, dest_mac);
4808}
4809
4810static inline void mlxsw_reg_ratr_ipip4_entry_pack(char *payload, u32 ipv4_udip)
4811{
4812        mlxsw_reg_ratr_ipip_type_set(payload, MLXSW_REG_RATR_IPIP_TYPE_IPV4);
4813        mlxsw_reg_ratr_ipip_ipv4_udip_set(payload, ipv4_udip);
4814}
4815
4816static inline void mlxsw_reg_ratr_counter_pack(char *payload, u64 counter_index,
4817                                               bool counter_enable)
4818{
4819        enum mlxsw_reg_flow_counter_set_type set_type;
4820
4821        if (counter_enable)
4822                set_type = MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES;
4823        else
4824                set_type = MLXSW_REG_FLOW_COUNTER_SET_TYPE_NO_COUNT;
4825
4826        mlxsw_reg_ratr_counter_index_set(payload, counter_index);
4827        mlxsw_reg_ratr_counter_set_type_set(payload, set_type);
4828}
4829
4830/* RDPM - Router DSCP to Priority Mapping
4831 * --------------------------------------
4832 * Controls the mapping from DSCP field to switch priority on routed packets
4833 */
4834#define MLXSW_REG_RDPM_ID 0x8009
4835#define MLXSW_REG_RDPM_BASE_LEN 0x00
4836#define MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN 0x01
4837#define MLXSW_REG_RDPM_DSCP_ENTRY_REC_MAX_COUNT 64
4838#define MLXSW_REG_RDPM_LEN 0x40
4839#define MLXSW_REG_RDPM_LAST_ENTRY (MLXSW_REG_RDPM_BASE_LEN + \
4840                                   MLXSW_REG_RDPM_LEN - \
4841                                   MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN)
4842
4843MLXSW_REG_DEFINE(rdpm, MLXSW_REG_RDPM_ID, MLXSW_REG_RDPM_LEN);
4844
4845/* reg_dscp_entry_e
4846 * Enable update of the specific entry
4847 * Access: Index
4848 */
4849MLXSW_ITEM8_INDEXED(reg, rdpm, dscp_entry_e, MLXSW_REG_RDPM_LAST_ENTRY, 7, 1,
4850                    -MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN, 0x00, false);
4851
4852/* reg_dscp_entry_prio
4853 * Switch Priority
4854 * Access: RW
4855 */
4856MLXSW_ITEM8_INDEXED(reg, rdpm, dscp_entry_prio, MLXSW_REG_RDPM_LAST_ENTRY, 0, 4,
4857                    -MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN, 0x00, false);
4858
4859static inline void mlxsw_reg_rdpm_pack(char *payload, unsigned short index,
4860                                       u8 prio)
4861{
4862        mlxsw_reg_rdpm_dscp_entry_e_set(payload, index, 1);
4863        mlxsw_reg_rdpm_dscp_entry_prio_set(payload, index, prio);
4864}
4865
4866/* RICNT - Router Interface Counter Register
4867 * -----------------------------------------
4868 * The RICNT register retrieves per port performance counters
4869 */
4870#define MLXSW_REG_RICNT_ID 0x800B
4871#define MLXSW_REG_RICNT_LEN 0x100
4872
4873MLXSW_REG_DEFINE(ricnt, MLXSW_REG_RICNT_ID, MLXSW_REG_RICNT_LEN);
4874
4875/* reg_ricnt_counter_index
4876 * Counter index
4877 * Access: RW
4878 */
4879MLXSW_ITEM32(reg, ricnt, counter_index, 0x04, 0, 24);
4880
4881enum mlxsw_reg_ricnt_counter_set_type {
4882        /* No Count. */
4883        MLXSW_REG_RICNT_COUNTER_SET_TYPE_NO_COUNT = 0x00,
4884        /* Basic. Used for router interfaces, counting the following:
4885         *      - Error and Discard counters.
4886         *      - Unicast, Multicast and Broadcast counters. Sharing the
4887         *        same set of counters for the different type of traffic
4888         *        (IPv4, IPv6 and mpls).
4889         */
4890        MLXSW_REG_RICNT_COUNTER_SET_TYPE_BASIC = 0x09,
4891};
4892
4893/* reg_ricnt_counter_set_type
4894 * Counter Set Type for router interface counter
4895 * Access: RW
4896 */
4897MLXSW_ITEM32(reg, ricnt, counter_set_type, 0x04, 24, 8);
4898
4899enum mlxsw_reg_ricnt_opcode {
4900        /* Nop. Supported only for read access*/
4901        MLXSW_REG_RICNT_OPCODE_NOP = 0x00,
4902        /* Clear. Setting the clr bit will reset the counter value for
4903         * all counters of the specified Router Interface.
4904         */
4905        MLXSW_REG_RICNT_OPCODE_CLEAR = 0x08,
4906};
4907
4908/* reg_ricnt_opcode
4909 * Opcode
4910 * Access: RW
4911 */
4912MLXSW_ITEM32(reg, ricnt, op, 0x00, 28, 4);
4913
4914/* reg_ricnt_good_unicast_packets
4915 * good unicast packets.
4916 * Access: RW
4917 */
4918MLXSW_ITEM64(reg, ricnt, good_unicast_packets, 0x08, 0, 64);
4919
4920/* reg_ricnt_good_multicast_packets
4921 * good multicast packets.
4922 * Access: RW
4923 */
4924MLXSW_ITEM64(reg, ricnt, good_multicast_packets, 0x10, 0, 64);
4925
4926/* reg_ricnt_good_broadcast_packets
4927 * good broadcast packets
4928 * Access: RW
4929 */
4930MLXSW_ITEM64(reg, ricnt, good_broadcast_packets, 0x18, 0, 64);
4931
4932/* reg_ricnt_good_unicast_bytes
4933 * A count of L3 data and padding octets not including L2 headers
4934 * for good unicast frames.
4935 * Access: RW
4936 */
4937MLXSW_ITEM64(reg, ricnt, good_unicast_bytes, 0x20, 0, 64);
4938
4939/* reg_ricnt_good_multicast_bytes
4940 * A count of L3 data and padding octets not including L2 headers
4941 * for good multicast frames.
4942 * Access: RW
4943 */
4944MLXSW_ITEM64(reg, ricnt, good_multicast_bytes, 0x28, 0, 64);
4945
4946/* reg_ritr_good_broadcast_bytes
4947 * A count of L3 data and padding octets not including L2 headers
4948 * for good broadcast frames.
4949 * Access: RW
4950 */
4951MLXSW_ITEM64(reg, ricnt, good_broadcast_bytes, 0x30, 0, 64);
4952
4953/* reg_ricnt_error_packets
4954 * A count of errored frames that do not pass the router checks.
4955 * Access: RW
4956 */
4957MLXSW_ITEM64(reg, ricnt, error_packets, 0x38, 0, 64);
4958
4959/* reg_ricnt_discrad_packets
4960 * A count of non-errored frames that do not pass the router checks.
4961 * Access: RW
4962 */
4963MLXSW_ITEM64(reg, ricnt, discard_packets, 0x40, 0, 64);
4964
4965/* reg_ricnt_error_bytes
4966 * A count of L3 data and padding octets not including L2 headers
4967 * for errored frames.
4968 * Access: RW
4969 */
4970MLXSW_ITEM64(reg, ricnt, error_bytes, 0x48, 0, 64);
4971
4972/* reg_ricnt_discard_bytes
4973 * A count of L3 data and padding octets not including L2 headers
4974 * for non-errored frames that do not pass the router checks.
4975 * Access: RW
4976 */
4977MLXSW_ITEM64(reg, ricnt, discard_bytes, 0x50, 0, 64);
4978
4979static inline void mlxsw_reg_ricnt_pack(char *payload, u32 index,
4980                                        enum mlxsw_reg_ricnt_opcode op)
4981{
4982        MLXSW_REG_ZERO(ricnt, payload);
4983        mlxsw_reg_ricnt_op_set(payload, op);
4984        mlxsw_reg_ricnt_counter_index_set(payload, index);
4985        mlxsw_reg_ricnt_counter_set_type_set(payload,
4986                                             MLXSW_REG_RICNT_COUNTER_SET_TYPE_BASIC);
4987}
4988
4989/* RRCR - Router Rules Copy Register Layout
4990 * ----------------------------------------
4991 * This register is used for moving and copying route entry rules.
4992 */
4993#define MLXSW_REG_RRCR_ID 0x800F
4994#define MLXSW_REG_RRCR_LEN 0x24
4995
4996MLXSW_REG_DEFINE(rrcr, MLXSW_REG_RRCR_ID, MLXSW_REG_RRCR_LEN);
4997
4998enum mlxsw_reg_rrcr_op {
4999        /* Move rules */
5000        MLXSW_REG_RRCR_OP_MOVE,
5001        /* Copy rules */
5002        MLXSW_REG_RRCR_OP_COPY,
5003};
5004
5005/* reg_rrcr_op
5006 * Access: WO
5007 */
5008MLXSW_ITEM32(reg, rrcr, op, 0x00, 28, 4);
5009
5010/* reg_rrcr_offset
5011 * Offset within the region from which to copy/move.
5012 * Access: Index
5013 */
5014MLXSW_ITEM32(reg, rrcr, offset, 0x00, 0, 16);
5015
5016/* reg_rrcr_size
5017 * The number of rules to copy/move.
5018 * Access: WO
5019 */
5020MLXSW_ITEM32(reg, rrcr, size, 0x04, 0, 16);
5021
5022/* reg_rrcr_table_id
5023 * Identifier of the table on which to perform the operation. Encoding is the
5024 * same as in RTAR.key_type
5025 * Access: Index
5026 */
5027MLXSW_ITEM32(reg, rrcr, table_id, 0x10, 0, 4);
5028
5029/* reg_rrcr_dest_offset
5030 * Offset within the region to which to copy/move
5031 * Access: Index
5032 */
5033MLXSW_ITEM32(reg, rrcr, dest_offset, 0x20, 0, 16);
5034
5035static inline void mlxsw_reg_rrcr_pack(char *payload, enum mlxsw_reg_rrcr_op op,
5036                                       u16 offset, u16 size,
5037                                       enum mlxsw_reg_rtar_key_type table_id,
5038                                       u16 dest_offset)
5039{
5040        MLXSW_REG_ZERO(rrcr, payload);
5041        mlxsw_reg_rrcr_op_set(payload, op);
5042        mlxsw_reg_rrcr_offset_set(payload, offset);
5043        mlxsw_reg_rrcr_size_set(payload, size);
5044        mlxsw_reg_rrcr_table_id_set(payload, table_id);
5045        mlxsw_reg_rrcr_dest_offset_set(payload, dest_offset);
5046}
5047
5048/* RALTA - Router Algorithmic LPM Tree Allocation Register
5049 * -------------------------------------------------------
5050 * RALTA is used to allocate the LPM trees of the SHSPM method.
5051 */
5052#define MLXSW_REG_RALTA_ID 0x8010
5053#define MLXSW_REG_RALTA_LEN 0x04
5054
5055MLXSW_REG_DEFINE(ralta, MLXSW_REG_RALTA_ID, MLXSW_REG_RALTA_LEN);
5056
5057/* reg_ralta_op
5058 * opcode (valid for Write, must be 0 on Read)
5059 * 0 - allocate a tree
5060 * 1 - deallocate a tree
5061 * Access: OP
5062 */
5063MLXSW_ITEM32(reg, ralta, op, 0x00, 28, 2);
5064
5065enum mlxsw_reg_ralxx_protocol {
5066        MLXSW_REG_RALXX_PROTOCOL_IPV4,
5067        MLXSW_REG_RALXX_PROTOCOL_IPV6,
5068};
5069
5070/* reg_ralta_protocol
5071 * Protocol.
5072 * Deallocation opcode: Reserved.
5073 * Access: RW
5074 */
5075MLXSW_ITEM32(reg, ralta, protocol, 0x00, 24, 4);
5076
5077/* reg_ralta_tree_id
5078 * An identifier (numbered from 1..cap_shspm_max_trees-1) representing
5079 * the tree identifier (managed by software).
5080 * Note that tree_id 0 is allocated for a default-route tree.
5081 * Access: Index
5082 */
5083MLXSW_ITEM32(reg, ralta, tree_id, 0x00, 0, 8);
5084
5085static inline void mlxsw_reg_ralta_pack(char *payload, bool alloc,
5086                                        enum mlxsw_reg_ralxx_protocol protocol,
5087                                        u8 tree_id)
5088{
5089        MLXSW_REG_ZERO(ralta, payload);
5090        mlxsw_reg_ralta_op_set(payload, !alloc);
5091        mlxsw_reg_ralta_protocol_set(payload, protocol);
5092        mlxsw_reg_ralta_tree_id_set(payload, tree_id);
5093}
5094
5095/* RALST - Router Algorithmic LPM Structure Tree Register
5096 * ------------------------------------------------------
5097 * RALST is used to set and query the structure of an LPM tree.
5098 * The structure of the tree must be sorted as a sorted binary tree, while
5099 * each node is a bin that is tagged as the length of the prefixes the lookup
5100 * will refer to. Therefore, bin X refers to a set of entries with prefixes
5101 * of X bits to match with the destination address. The bin 0 indicates
5102 * the default action, when there is no match of any prefix.
5103 */
5104#define MLXSW_REG_RALST_ID 0x8011
5105#define MLXSW_REG_RALST_LEN 0x104
5106
5107MLXSW_REG_DEFINE(ralst, MLXSW_REG_RALST_ID, MLXSW_REG_RALST_LEN);
5108
5109/* reg_ralst_root_bin
5110 * The bin number of the root bin.
5111 * 0<root_bin=<(length of IP address)
5112 * For a default-route tree configure 0xff
5113 * Access: RW
5114 */
5115MLXSW_ITEM32(reg, ralst, root_bin, 0x00, 16, 8);
5116
5117/* reg_ralst_tree_id
5118 * Tree identifier numbered from 1..(cap_shspm_max_trees-1).
5119 * Access: Index
5120 */
5121MLXSW_ITEM32(reg, ralst, tree_id, 0x00, 0, 8);
5122
5123#define MLXSW_REG_RALST_BIN_NO_CHILD 0xff
5124#define MLXSW_REG_RALST_BIN_OFFSET 0x04
5125#define MLXSW_REG_RALST_BIN_COUNT 128
5126
5127/* reg_ralst_left_child_bin
5128 * Holding the children of the bin according to the stored tree's structure.
5129 * For trees composed of less than 4 blocks, the bins in excess are reserved.
5130 * Note that tree_id 0 is allocated for a default-route tree, bins are 0xff
5131 * Access: RW
5132 */
5133MLXSW_ITEM16_INDEXED(reg, ralst, left_child_bin, 0x04, 8, 8, 0x02, 0x00, false);
5134
5135/* reg_ralst_right_child_bin
5136 * Holding the children of the bin according to the stored tree's structure.
5137 * For trees composed of less than 4 blocks, the bins in excess are reserved.
5138 * Note that tree_id 0 is allocated for a default-route tree, bins are 0xff
5139 * Access: RW
5140 */
5141MLXSW_ITEM16_INDEXED(reg, ralst, right_child_bin, 0x04, 0, 8, 0x02, 0x00,
5142                     false);
5143
5144static inline void mlxsw_reg_ralst_pack(char *payload, u8 root_bin, u8 tree_id)
5145{
5146        MLXSW_REG_ZERO(ralst, payload);
5147
5148        /* Initialize all bins to have no left or right child */
5149        memset(payload + MLXSW_REG_RALST_BIN_OFFSET,
5150               MLXSW_REG_RALST_BIN_NO_CHILD, MLXSW_REG_RALST_BIN_COUNT * 2);
5151
5152        mlxsw_reg_ralst_root_bin_set(payload, root_bin);
5153        mlxsw_reg_ralst_tree_id_set(payload, tree_id);
5154}
5155
5156static inline void mlxsw_reg_ralst_bin_pack(char *payload, u8 bin_number,
5157                                            u8 left_child_bin,
5158                                            u8 right_child_bin)
5159{
5160        int bin_index = bin_number - 1;
5161
5162        mlxsw_reg_ralst_left_child_bin_set(payload, bin_index, left_child_bin);
5163        mlxsw_reg_ralst_right_child_bin_set(payload, bin_index,
5164                                            right_child_bin);
5165}
5166
5167/* RALTB - Router Algorithmic LPM Tree Binding Register
5168 * ----------------------------------------------------
5169 * RALTB is used to bind virtual router and protocol to an allocated LPM tree.
5170 */
5171#define MLXSW_REG_RALTB_ID 0x8012
5172#define MLXSW_REG_RALTB_LEN 0x04
5173
5174MLXSW_REG_DEFINE(raltb, MLXSW_REG_RALTB_ID, MLXSW_REG_RALTB_LEN);
5175
5176/* reg_raltb_virtual_router
5177 * Virtual Router ID
5178 * Range is 0..cap_max_virtual_routers-1
5179 * Access: Index
5180 */
5181MLXSW_ITEM32(reg, raltb, virtual_router, 0x00, 16, 16);
5182
5183/* reg_raltb_protocol
5184 * Protocol.
5185 * Access: Index
5186 */
5187MLXSW_ITEM32(reg, raltb, protocol, 0x00, 12, 4);
5188
5189/* reg_raltb_tree_id
5190 * Tree to be used for the {virtual_router, protocol}
5191 * Tree identifier numbered from 1..(cap_shspm_max_trees-1).
5192 * By default, all Unicast IPv4 and IPv6 are bound to tree_id 0.
5193 * Access: RW
5194 */
5195MLXSW_ITEM32(reg, raltb, tree_id, 0x00, 0, 8);
5196
5197static inline void mlxsw_reg_raltb_pack(char *payload, u16 virtual_router,
5198                                        enum mlxsw_reg_ralxx_protocol protocol,
5199                                        u8 tree_id)
5200{
5201        MLXSW_REG_ZERO(raltb, payload);
5202        mlxsw_reg_raltb_virtual_router_set(payload, virtual_router);
5203        mlxsw_reg_raltb_protocol_set(payload, protocol);
5204        mlxsw_reg_raltb_tree_id_set(payload, tree_id);
5205}
5206
5207/* RALUE - Router Algorithmic LPM Unicast Entry Register
5208 * -----------------------------------------------------
5209 * RALUE is used to configure and query LPM entries that serve
5210 * the Unicast protocols.
5211 */
5212#define MLXSW_REG_RALUE_ID 0x8013
5213#define MLXSW_REG_RALUE_LEN 0x38
5214
5215MLXSW_REG_DEFINE(ralue, MLXSW_REG_RALUE_ID, MLXSW_REG_RALUE_LEN);
5216
5217/* reg_ralue_protocol
5218 * Protocol.
5219 * Access: Index
5220 */
5221MLXSW_ITEM32(reg, ralue, protocol, 0x00, 24, 4);
5222
5223enum mlxsw_reg_ralue_op {
5224        /* Read operation. If entry doesn't exist, the operation fails. */
5225        MLXSW_REG_RALUE_OP_QUERY_READ = 0,
5226        /* Clear on read operation. Used to read entry and
5227         * clear Activity bit.
5228         */
5229        MLXSW_REG_RALUE_OP_QUERY_CLEAR = 1,
5230        /* Write operation. Used to write a new entry to the table. All RW
5231         * fields are written for new entry. Activity bit is set
5232         * for new entries.
5233         */
5234        MLXSW_REG_RALUE_OP_WRITE_WRITE = 0,
5235        /* Update operation. Used to update an existing route entry and
5236         * only update the RW fields that are detailed in the field
5237         * op_u_mask. If entry doesn't exist, the operation fails.
5238         */
5239        MLXSW_REG_RALUE_OP_WRITE_UPDATE = 1,
5240        /* Clear activity. The Activity bit (the field a) is cleared
5241         * for the entry.
5242         */
5243        MLXSW_REG_RALUE_OP_WRITE_CLEAR = 2,
5244        /* Delete operation. Used to delete an existing entry. If entry
5245         * doesn't exist, the operation fails.
5246         */
5247        MLXSW_REG_RALUE_OP_WRITE_DELETE = 3,
5248};
5249
5250/* reg_ralue_op
5251 * Operation.
5252 * Access: OP
5253 */
5254MLXSW_ITEM32(reg, ralue, op, 0x00, 20, 3);
5255
5256/* reg_ralue_a
5257 * Activity. Set for new entries. Set if a packet lookup has hit on the
5258 * specific entry, only if the entry is a route. To clear the a bit, use
5259 * "clear activity" op.
5260 * Enabled by activity_dis in RGCR
5261 * Access: RO
5262 */
5263MLXSW_ITEM32(reg, ralue, a, 0x00, 16, 1);
5264
5265/* reg_ralue_virtual_router
5266 * Virtual Router ID
5267 * Range is 0..cap_max_virtual_routers-1
5268 * Access: Index
5269 */
5270MLXSW_ITEM32(reg, ralue, virtual_router, 0x04, 16, 16);
5271
5272#define MLXSW_REG_RALUE_OP_U_MASK_ENTRY_TYPE    BIT(0)
5273#define MLXSW_REG_RALUE_OP_U_MASK_BMP_LEN       BIT(1)
5274#define MLXSW_REG_RALUE_OP_U_MASK_ACTION        BIT(2)
5275
5276/* reg_ralue_op_u_mask
5277 * opcode update mask.
5278 * On read operation, this field is reserved.
5279 * This field is valid for update opcode, otherwise - reserved.
5280 * This field is a bitmask of the fields that should be updated.
5281 * Access: WO
5282 */
5283MLXSW_ITEM32(reg, ralue, op_u_mask, 0x04, 8, 3);
5284
5285/* reg_ralue_prefix_len
5286 * Number of bits in the prefix of the LPM route.
5287 * Note that for IPv6 prefixes, if prefix_len>64 the entry consumes
5288 * two entries in the physical HW table.
5289 * Access: Index
5290 */
5291MLXSW_ITEM32(reg, ralue, prefix_len, 0x08, 0, 8);
5292
5293/* reg_ralue_dip*
5294 * The prefix of the route or of the marker that the object of the LPM
5295 * is compared with. The most significant bits of the dip are the prefix.
5296 * The least significant bits must be '0' if the prefix_len is smaller
5297 * than 128 for IPv6 or smaller than 32 for IPv4.
5298 * IPv4 address uses bits dip[31:0] and bits dip[127:32] are reserved.
5299 * Access: Index
5300 */
5301MLXSW_ITEM32(reg, ralue, dip4, 0x18, 0, 32);
5302MLXSW_ITEM_BUF(reg, ralue, dip6, 0x0C, 16);
5303
5304enum mlxsw_reg_ralue_entry_type {
5305        MLXSW_REG_RALUE_ENTRY_TYPE_MARKER_ENTRY = 1,
5306        MLXSW_REG_RALUE_ENTRY_TYPE_ROUTE_ENTRY = 2,
5307        MLXSW_REG_RALUE_ENTRY_TYPE_MARKER_AND_ROUTE_ENTRY = 3,
5308};
5309
5310/* reg_ralue_entry_type
5311 * Entry type.
5312 * Note - for Marker entries, the action_type and action fields are reserved.
5313 * Access: RW
5314 */
5315MLXSW_ITEM32(reg, ralue, entry_type, 0x1C, 30, 2);
5316
5317/* reg_ralue_bmp_len
5318 * The best match prefix length in the case that there is no match for
5319 * longer prefixes.
5320 * If (entry_type != MARKER_ENTRY), bmp_len must be equal to prefix_len
5321 * Note for any update operation with entry_type modification this
5322 * field must be set.
5323 * Access: RW
5324 */
5325MLXSW_ITEM32(reg, ralue, bmp_len, 0x1C, 16, 8);
5326
5327enum mlxsw_reg_ralue_action_type {
5328        MLXSW_REG_RALUE_ACTION_TYPE_REMOTE,
5329        MLXSW_REG_RALUE_ACTION_TYPE_LOCAL,
5330        MLXSW_REG_RALUE_ACTION_TYPE_IP2ME,
5331};
5332
5333/* reg_ralue_action_type
5334 * Action Type
5335 * Indicates how the IP address is connected.
5336 * It can be connected to a local subnet through local_erif or can be
5337 * on a remote subnet connected through a next-hop router,
5338 * or transmitted to the CPU.
5339 * Reserved when entry_type = MARKER_ENTRY
5340 * Access: RW
5341 */
5342MLXSW_ITEM32(reg, ralue, action_type, 0x1C, 0, 2);
5343
5344enum mlxsw_reg_ralue_trap_action {
5345        MLXSW_REG_RALUE_TRAP_ACTION_NOP,
5346        MLXSW_REG_RALUE_TRAP_ACTION_TRAP,
5347        MLXSW_REG_RALUE_TRAP_ACTION_MIRROR_TO_CPU,
5348        MLXSW_REG_RALUE_TRAP_ACTION_MIRROR,
5349        MLXSW_REG_RALUE_TRAP_ACTION_DISCARD_ERROR,
5350};
5351
5352/* reg_ralue_trap_action
5353 * Trap action.
5354 * For IP2ME action, only NOP and MIRROR are possible.
5355 * Access: RW
5356 */
5357MLXSW_ITEM32(reg, ralue, trap_action, 0x20, 28, 4);
5358
5359/* reg_ralue_trap_id
5360 * Trap ID to be reported to CPU.
5361 * Trap ID is RTR_INGRESS0 or RTR_INGRESS1.
5362 * For trap_action of NOP, MIRROR and DISCARD_ERROR, trap_id is reserved.
5363 * Access: RW
5364 */
5365MLXSW_ITEM32(reg, ralue, trap_id, 0x20, 0, 9);
5366
5367/* reg_ralue_adjacency_index
5368 * Points to the first entry of the group-based ECMP.
5369 * Only relevant in case of REMOTE action.
5370 * Access: RW
5371 */
5372MLXSW_ITEM32(reg, ralue, adjacency_index, 0x24, 0, 24);
5373
5374/* reg_ralue_ecmp_size
5375 * Amount of sequential entries starting
5376 * from the adjacency_index (the number of ECMPs).
5377 * The valid range is 1-64, 512, 1024, 2048 and 4096.
5378 * Reserved when trap_action is TRAP or DISCARD_ERROR.
5379 * Only relevant in case of REMOTE action.
5380 * Access: RW
5381 */
5382MLXSW_ITEM32(reg, ralue, ecmp_size, 0x28, 0, 13);
5383
5384/* reg_ralue_local_erif
5385 * Egress Router Interface.
5386 * Only relevant in case of LOCAL action.
5387 * Access: RW
5388 */
5389MLXSW_ITEM32(reg, ralue, local_erif, 0x24, 0, 16);
5390
5391/* reg_ralue_ip2me_v
5392 * Valid bit for the tunnel_ptr field.
5393 * If valid = 0 then trap to CPU as IP2ME trap ID.
5394 * If valid = 1 and the packet format allows NVE or IPinIP tunnel
5395 * decapsulation then tunnel decapsulation is done.
5396 * If valid = 1 and packet format does not allow NVE or IPinIP tunnel
5397 * decapsulation then trap as IP2ME trap ID.
5398 * Only relevant in case of IP2ME action.
5399 * Access: RW
5400 */
5401MLXSW_ITEM32(reg, ralue, ip2me_v, 0x24, 31, 1);
5402
5403/* reg_ralue_ip2me_tunnel_ptr
5404 * Tunnel Pointer for NVE or IPinIP tunnel decapsulation.
5405 * For Spectrum, pointer to KVD Linear.
5406 * Only relevant in case of IP2ME action.
5407 * Access: RW
5408 */
5409MLXSW_ITEM32(reg, ralue, ip2me_tunnel_ptr, 0x24, 0, 24);
5410
5411static inline void mlxsw_reg_ralue_pack(char *payload,
5412                                        enum mlxsw_reg_ralxx_protocol protocol,
5413                                        enum mlxsw_reg_ralue_op op,
5414                                        u16 virtual_router, u8 prefix_len)
5415{
5416        MLXSW_REG_ZERO(ralue, payload);
5417        mlxsw_reg_ralue_protocol_set(payload, protocol);
5418        mlxsw_reg_ralue_op_set(payload, op);
5419        mlxsw_reg_ralue_virtual_router_set(payload, virtual_router);
5420        mlxsw_reg_ralue_prefix_len_set(payload, prefix_len);
5421        mlxsw_reg_ralue_entry_type_set(payload,
5422                                       MLXSW_REG_RALUE_ENTRY_TYPE_ROUTE_ENTRY);
5423        mlxsw_reg_ralue_bmp_len_set(payload, prefix_len);
5424}
5425
5426static inline void mlxsw_reg_ralue_pack4(char *payload,
5427                                         enum mlxsw_reg_ralxx_protocol protocol,
5428                                         enum mlxsw_reg_ralue_op op,
5429                                         u16 virtual_router, u8 prefix_len,
5430                                         u32 dip)
5431{
5432        mlxsw_reg_ralue_pack(payload, protocol, op, virtual_router, prefix_len);
5433        mlxsw_reg_ralue_dip4_set(payload, dip);
5434}
5435
5436static inline void mlxsw_reg_ralue_pack6(char *payload,
5437                                         enum mlxsw_reg_ralxx_protocol protocol,
5438                                         enum mlxsw_reg_ralue_op op,
5439                                         u16 virtual_router, u8 prefix_len,
5440                                         const void *dip)
5441{
5442        mlxsw_reg_ralue_pack(payload, protocol, op, virtual_router, prefix_len);
5443        mlxsw_reg_ralue_dip6_memcpy_to(payload, dip);
5444}
5445
5446static inline void
5447mlxsw_reg_ralue_act_remote_pack(char *payload,
5448                                enum mlxsw_reg_ralue_trap_action trap_action,
5449                                u16 trap_id, u32 adjacency_index, u16 ecmp_size)
5450{
5451        mlxsw_reg_ralue_action_type_set(payload,
5452                                        MLXSW_REG_RALUE_ACTION_TYPE_REMOTE);
5453        mlxsw_reg_ralue_trap_action_set(payload, trap_action);
5454        mlxsw_reg_ralue_trap_id_set(payload, trap_id);
5455        mlxsw_reg_ralue_adjacency_index_set(payload, adjacency_index);
5456        mlxsw_reg_ralue_ecmp_size_set(payload, ecmp_size);
5457}
5458
5459static inline void
5460mlxsw_reg_ralue_act_local_pack(char *payload,
5461                               enum mlxsw_reg_ralue_trap_action trap_action,
5462                               u16 trap_id, u16 local_erif)
5463{
5464        mlxsw_reg_ralue_action_type_set(payload,
5465                                        MLXSW_REG_RALUE_ACTION_TYPE_LOCAL);
5466        mlxsw_reg_ralue_trap_action_set(payload, trap_action);
5467        mlxsw_reg_ralue_trap_id_set(payload, trap_id);
5468        mlxsw_reg_ralue_local_erif_set(payload, local_erif);
5469}
5470
5471static inline void
5472mlxsw_reg_ralue_act_ip2me_pack(char *payload)
5473{
5474        mlxsw_reg_ralue_action_type_set(payload,
5475                                        MLXSW_REG_RALUE_ACTION_TYPE_IP2ME);
5476}
5477
5478static inline void
5479mlxsw_reg_ralue_act_ip2me_tun_pack(char *payload, u32 tunnel_ptr)
5480{
5481        mlxsw_reg_ralue_action_type_set(payload,
5482                                        MLXSW_REG_RALUE_ACTION_TYPE_IP2ME);
5483        mlxsw_reg_ralue_ip2me_v_set(payload, 1);
5484        mlxsw_reg_ralue_ip2me_tunnel_ptr_set(payload, tunnel_ptr);
5485}
5486
5487/* RAUHT - Router Algorithmic LPM Unicast Host Table Register
5488 * ----------------------------------------------------------
5489 * The RAUHT register is used to configure and query the Unicast Host table in
5490 * devices that implement the Algorithmic LPM.
5491 */
5492#define MLXSW_REG_RAUHT_ID 0x8014
5493#define MLXSW_REG_RAUHT_LEN 0x74
5494
5495MLXSW_REG_DEFINE(rauht, MLXSW_REG_RAUHT_ID, MLXSW_REG_RAUHT_LEN);
5496
5497enum mlxsw_reg_rauht_type {
5498        MLXSW_REG_RAUHT_TYPE_IPV4,
5499        MLXSW_REG_RAUHT_TYPE_IPV6,
5500};
5501
5502/* reg_rauht_type
5503 * Access: Index
5504 */
5505MLXSW_ITEM32(reg, rauht, type, 0x00, 24, 2);
5506
5507enum mlxsw_reg_rauht_op {
5508        MLXSW_REG_RAUHT_OP_QUERY_READ = 0,
5509        /* Read operation */
5510        MLXSW_REG_RAUHT_OP_QUERY_CLEAR_ON_READ = 1,
5511        /* Clear on read operation. Used to read entry and clear
5512         * activity bit.
5513         */
5514        MLXSW_REG_RAUHT_OP_WRITE_ADD = 0,
5515        /* Add. Used to write a new entry to the table. All R/W fields are
5516         * relevant for new entry. Activity bit is set for new entries.
5517         */
5518        MLXSW_REG_RAUHT_OP_WRITE_UPDATE = 1,
5519        /* Update action. Used to update an existing route entry and
5520         * only update the following fields:
5521         * trap_action, trap_id, mac, counter_set_type, counter_index
5522         */
5523        MLXSW_REG_RAUHT_OP_WRITE_CLEAR_ACTIVITY = 2,
5524        /* Clear activity. A bit is cleared for the entry. */
5525        MLXSW_REG_RAUHT_OP_WRITE_DELETE = 3,
5526        /* Delete entry */
5527        MLXSW_REG_RAUHT_OP_WRITE_DELETE_ALL = 4,
5528        /* Delete all host entries on a RIF. In this command, dip
5529         * field is reserved.
5530         */
5531};
5532
5533/* reg_rauht_op
5534 * Access: OP
5535 */
5536MLXSW_ITEM32(reg, rauht, op, 0x00, 20, 3);
5537
5538/* reg_rauht_a
5539 * Activity. Set for new entries. Set if a packet lookup has hit on
5540 * the specific entry.
5541 * To clear the a bit, use "clear activity" op.
5542 * Enabled by activity_dis in RGCR
5543 * Access: RO
5544 */
5545MLXSW_ITEM32(reg, rauht, a, 0x00, 16, 1);
5546
5547/* reg_rauht_rif
5548 * Router Interface
5549 * Access: Index
5550 */
5551MLXSW_ITEM32(reg, rauht, rif, 0x00, 0, 16);
5552
5553/* reg_rauht_dip*
5554 * Destination address.
5555 * Access: Index
5556 */
5557MLXSW_ITEM32(reg, rauht, dip4, 0x1C, 0x0, 32);
5558MLXSW_ITEM_BUF(reg, rauht, dip6, 0x10, 16);
5559
5560enum mlxsw_reg_rauht_trap_action {
5561        MLXSW_REG_RAUHT_TRAP_ACTION_NOP,
5562        MLXSW_REG_RAUHT_TRAP_ACTION_TRAP,
5563        MLXSW_REG_RAUHT_TRAP_ACTION_MIRROR_TO_CPU,
5564        MLXSW_REG_RAUHT_TRAP_ACTION_MIRROR,
5565        MLXSW_REG_RAUHT_TRAP_ACTION_DISCARD_ERRORS,
5566};
5567
5568/* reg_rauht_trap_action
5569 * Access: RW
5570 */
5571MLXSW_ITEM32(reg, rauht, trap_action, 0x60, 28, 4);
5572
5573enum mlxsw_reg_rauht_trap_id {
5574        MLXSW_REG_RAUHT_TRAP_ID_RTR_EGRESS0,
5575        MLXSW_REG_RAUHT_TRAP_ID_RTR_EGRESS1,
5576};
5577
5578/* reg_rauht_trap_id
5579 * Trap ID to be reported to CPU.
5580 * Trap-ID is RTR_EGRESS0 or RTR_EGRESS1.
5581 * For trap_action of NOP, MIRROR and DISCARD_ERROR,
5582 * trap_id is reserved.
5583 * Access: RW
5584 */
5585MLXSW_ITEM32(reg, rauht, trap_id, 0x60, 0, 9);
5586
5587/* reg_rauht_counter_set_type
5588 * Counter set type for flow counters
5589 * Access: RW
5590 */
5591MLXSW_ITEM32(reg, rauht, counter_set_type, 0x68, 24, 8);
5592
5593/* reg_rauht_counter_index
5594 * Counter index for flow counters
5595 * Access: RW
5596 */
5597MLXSW_ITEM32(reg, rauht, counter_index, 0x68, 0, 24);
5598
5599/* reg_rauht_mac
5600 * MAC address.
5601 * Access: RW
5602 */
5603MLXSW_ITEM_BUF(reg, rauht, mac, 0x6E, 6);
5604
5605static inline void mlxsw_reg_rauht_pack(char *payload,
5606                                        enum mlxsw_reg_rauht_op op, u16 rif,
5607                                        const char *mac)
5608{
5609        MLXSW_REG_ZERO(rauht, payload);
5610        mlxsw_reg_rauht_op_set(payload, op);
5611        mlxsw_reg_rauht_rif_set(payload, rif);
5612        mlxsw_reg_rauht_mac_memcpy_to(payload, mac);
5613}
5614
5615static inline void mlxsw_reg_rauht_pack4(char *payload,
5616                                         enum mlxsw_reg_rauht_op op, u16 rif,
5617                                         const char *mac, u32 dip)
5618{
5619        mlxsw_reg_rauht_pack(payload, op, rif, mac);
5620        mlxsw_reg_rauht_dip4_set(payload, dip);
5621}
5622
5623static inline void mlxsw_reg_rauht_pack6(char *payload,
5624                                         enum mlxsw_reg_rauht_op op, u16 rif,
5625                                         const char *mac, const char *dip)
5626{
5627        mlxsw_reg_rauht_pack(payload, op, rif, mac);
5628        mlxsw_reg_rauht_type_set(payload, MLXSW_REG_RAUHT_TYPE_IPV6);
5629        mlxsw_reg_rauht_dip6_memcpy_to(payload, dip);
5630}
5631
5632static inline void mlxsw_reg_rauht_pack_counter(char *payload,
5633                                                u64 counter_index)
5634{
5635        mlxsw_reg_rauht_counter_index_set(payload, counter_index);
5636        mlxsw_reg_rauht_counter_set_type_set(payload,
5637                                             MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES);
5638}
5639
5640/* RALEU - Router Algorithmic LPM ECMP Update Register
5641 * ---------------------------------------------------
5642 * The register enables updating the ECMP section in the action for multiple
5643 * LPM Unicast entries in a single operation. The update is executed to
5644 * all entries of a {virtual router, protocol} tuple using the same ECMP group.
5645 */
5646#define MLXSW_REG_RALEU_ID 0x8015
5647#define MLXSW_REG_RALEU_LEN 0x28
5648
5649MLXSW_REG_DEFINE(raleu, MLXSW_REG_RALEU_ID, MLXSW_REG_RALEU_LEN);
5650
5651/* reg_raleu_protocol
5652 * Protocol.
5653 * Access: Index
5654 */
5655MLXSW_ITEM32(reg, raleu, protocol, 0x00, 24, 4);
5656
5657/* reg_raleu_virtual_router
5658 * Virtual Router ID
5659 * Range is 0..cap_max_virtual_routers-1
5660 * Access: Index
5661 */
5662MLXSW_ITEM32(reg, raleu, virtual_router, 0x00, 0, 16);
5663
5664/* reg_raleu_adjacency_index
5665 * Adjacency Index used for matching on the existing entries.
5666 * Access: Index
5667 */
5668MLXSW_ITEM32(reg, raleu, adjacency_index, 0x10, 0, 24);
5669
5670/* reg_raleu_ecmp_size
5671 * ECMP Size used for matching on the existing entries.
5672 * Access: Index
5673 */
5674MLXSW_ITEM32(reg, raleu, ecmp_size, 0x14, 0, 13);
5675
5676/* reg_raleu_new_adjacency_index
5677 * New Adjacency Index.
5678 * Access: WO
5679 */
5680MLXSW_ITEM32(reg, raleu, new_adjacency_index, 0x20, 0, 24);
5681
5682/* reg_raleu_new_ecmp_size
5683 * New ECMP Size.
5684 * Access: WO
5685 */
5686MLXSW_ITEM32(reg, raleu, new_ecmp_size, 0x24, 0, 13);
5687
5688static inline void mlxsw_reg_raleu_pack(char *payload,
5689                                        enum mlxsw_reg_ralxx_protocol protocol,
5690                                        u16 virtual_router,
5691                                        u32 adjacency_index, u16 ecmp_size,
5692                                        u32 new_adjacency_index,
5693                                        u16 new_ecmp_size)
5694{
5695        MLXSW_REG_ZERO(raleu, payload);
5696        mlxsw_reg_raleu_protocol_set(payload, protocol);
5697        mlxsw_reg_raleu_virtual_router_set(payload, virtual_router);
5698        mlxsw_reg_raleu_adjacency_index_set(payload, adjacency_index);
5699        mlxsw_reg_raleu_ecmp_size_set(payload, ecmp_size);
5700        mlxsw_reg_raleu_new_adjacency_index_set(payload, new_adjacency_index);
5701        mlxsw_reg_raleu_new_ecmp_size_set(payload, new_ecmp_size);
5702}
5703
5704/* RAUHTD - Router Algorithmic LPM Unicast Host Table Dump Register
5705 * ----------------------------------------------------------------
5706 * The RAUHTD register allows dumping entries from the Router Unicast Host
5707 * Table. For a given session an entry is dumped no more than one time. The
5708 * first RAUHTD access after reset is a new session. A session ends when the
5709 * num_rec response is smaller than num_rec request or for IPv4 when the
5710 * num_entries is smaller than 4. The clear activity affect the current session
5711 * or the last session if a new session has not started.
5712 */
5713#define MLXSW_REG_RAUHTD_ID 0x8018
5714#define MLXSW_REG_RAUHTD_BASE_LEN 0x20
5715#define MLXSW_REG_RAUHTD_REC_LEN 0x20
5716#define MLXSW_REG_RAUHTD_REC_MAX_NUM 32
5717#define MLXSW_REG_RAUHTD_LEN (MLXSW_REG_RAUHTD_BASE_LEN + \
5718                MLXSW_REG_RAUHTD_REC_MAX_NUM * MLXSW_REG_RAUHTD_REC_LEN)
5719#define MLXSW_REG_RAUHTD_IPV4_ENT_PER_REC 4
5720
5721MLXSW_REG_DEFINE(rauhtd, MLXSW_REG_RAUHTD_ID, MLXSW_REG_RAUHTD_LEN);
5722
5723#define MLXSW_REG_RAUHTD_FILTER_A BIT(0)
5724#define MLXSW_REG_RAUHTD_FILTER_RIF BIT(3)
5725
5726/* reg_rauhtd_filter_fields
5727 * if a bit is '0' then the relevant field is ignored and dump is done
5728 * regardless of the field value
5729 * Bit0 - filter by activity: entry_a
5730 * Bit3 - filter by entry rip: entry_rif
5731 * Access: Index
5732 */
5733MLXSW_ITEM32(reg, rauhtd, filter_fields, 0x00, 0, 8);
5734
5735enum mlxsw_reg_rauhtd_op {
5736        MLXSW_REG_RAUHTD_OP_DUMP,
5737        MLXSW_REG_RAUHTD_OP_DUMP_AND_CLEAR,
5738};
5739
5740/* reg_rauhtd_op
5741 * Access: OP
5742 */
5743MLXSW_ITEM32(reg, rauhtd, op, 0x04, 24, 2);
5744
5745/* reg_rauhtd_num_rec
5746 * At request: number of records requested
5747 * At response: number of records dumped
5748 * For IPv4, each record has 4 entries at request and up to 4 entries
5749 * at response
5750 * Range is 0..MLXSW_REG_RAUHTD_REC_MAX_NUM
5751 * Access: Index
5752 */
5753MLXSW_ITEM32(reg, rauhtd, num_rec, 0x04, 0, 8);
5754
5755/* reg_rauhtd_entry_a
5756 * Dump only if activity has value of entry_a
5757 * Reserved if filter_fields bit0 is '0'
5758 * Access: Index
5759 */
5760MLXSW_ITEM32(reg, rauhtd, entry_a, 0x08, 16, 1);
5761
5762enum mlxsw_reg_rauhtd_type {
5763        MLXSW_REG_RAUHTD_TYPE_IPV4,
5764        MLXSW_REG_RAUHTD_TYPE_IPV6,
5765};
5766
5767/* reg_rauhtd_type
5768 * Dump only if record type is:
5769 * 0 - IPv4
5770 * 1 - IPv6
5771 * Access: Index
5772 */
5773MLXSW_ITEM32(reg, rauhtd, type, 0x08, 0, 4);
5774
5775/* reg_rauhtd_entry_rif
5776 * Dump only if RIF has value of entry_rif
5777 * Reserved if filter_fields bit3 is '0'
5778 * Access: Index
5779 */
5780MLXSW_ITEM32(reg, rauhtd, entry_rif, 0x0C, 0, 16);
5781
5782static inline void mlxsw_reg_rauhtd_pack(char *payload,
5783                                         enum mlxsw_reg_rauhtd_type type)
5784{
5785        MLXSW_REG_ZERO(rauhtd, payload);
5786        mlxsw_reg_rauhtd_filter_fields_set(payload, MLXSW_REG_RAUHTD_FILTER_A);
5787        mlxsw_reg_rauhtd_op_set(payload, MLXSW_REG_RAUHTD_OP_DUMP_AND_CLEAR);
5788        mlxsw_reg_rauhtd_num_rec_set(payload, MLXSW_REG_RAUHTD_REC_MAX_NUM);
5789        mlxsw_reg_rauhtd_entry_a_set(payload, 1);
5790        mlxsw_reg_rauhtd_type_set(payload, type);
5791}
5792
5793/* reg_rauhtd_ipv4_rec_num_entries
5794 * Number of valid entries in this record:
5795 * 0 - 1 valid entry
5796 * 1 - 2 valid entries
5797 * 2 - 3 valid entries
5798 * 3 - 4 valid entries
5799 * Access: RO
5800 */
5801MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_rec_num_entries,
5802                     MLXSW_REG_RAUHTD_BASE_LEN, 28, 2,
5803                     MLXSW_REG_RAUHTD_REC_LEN, 0x00, false);
5804
5805/* reg_rauhtd_rec_type
5806 * Record type.
5807 * 0 - IPv4
5808 * 1 - IPv6
5809 * Access: RO
5810 */
5811MLXSW_ITEM32_INDEXED(reg, rauhtd, rec_type, MLXSW_REG_RAUHTD_BASE_LEN, 24, 2,
5812                     MLXSW_REG_RAUHTD_REC_LEN, 0x00, false);
5813
5814#define MLXSW_REG_RAUHTD_IPV4_ENT_LEN 0x8
5815
5816/* reg_rauhtd_ipv4_ent_a
5817 * Activity. Set for new entries. Set if a packet lookup has hit on the
5818 * specific entry.
5819 * Access: RO
5820 */
5821MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_a, MLXSW_REG_RAUHTD_BASE_LEN, 16, 1,
5822                     MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x00, false);
5823
5824/* reg_rauhtd_ipv4_ent_rif
5825 * Router interface.
5826 * Access: RO
5827 */
5828MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_rif, MLXSW_REG_RAUHTD_BASE_LEN, 0,
5829                     16, MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x00, false);
5830
5831/* reg_rauhtd_ipv4_ent_dip
5832 * Destination IPv4 address.
5833 * Access: RO
5834 */
5835MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_dip, MLXSW_REG_RAUHTD_BASE_LEN, 0,
5836                     32, MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x04, false);
5837
5838#define MLXSW_REG_RAUHTD_IPV6_ENT_LEN 0x20
5839
5840/* reg_rauhtd_ipv6_ent_a
5841 * Activity. Set for new entries. Set if a packet lookup has hit on the
5842 * specific entry.
5843 * Access: RO
5844 */
5845MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv6_ent_a, MLXSW_REG_RAUHTD_BASE_LEN, 16, 1,
5846                     MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x00, false);
5847
5848/* reg_rauhtd_ipv6_ent_rif
5849 * Router interface.
5850 * Access: RO
5851 */
5852MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv6_ent_rif, MLXSW_REG_RAUHTD_BASE_LEN, 0,
5853                     16, MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x00, false);
5854
5855/* reg_rauhtd_ipv6_ent_dip
5856 * Destination IPv6 address.
5857 * Access: RO
5858 */
5859MLXSW_ITEM_BUF_INDEXED(reg, rauhtd, ipv6_ent_dip, MLXSW_REG_RAUHTD_BASE_LEN,
5860                       16, MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x10);
5861
5862static inline void mlxsw_reg_rauhtd_ent_ipv4_unpack(char *payload,
5863                                                    int ent_index, u16 *p_rif,
5864                                                    u32 *p_dip)
5865{
5866        *p_rif = mlxsw_reg_rauhtd_ipv4_ent_rif_get(payload, ent_index);
5867        *p_dip = mlxsw_reg_rauhtd_ipv4_ent_dip_get(payload, ent_index);
5868}
5869
5870static inline void mlxsw_reg_rauhtd_ent_ipv6_unpack(char *payload,
5871                                                    int rec_index, u16 *p_rif,
5872                                                    char *p_dip)
5873{
5874        *p_rif = mlxsw_reg_rauhtd_ipv6_ent_rif_get(payload, rec_index);
5875        mlxsw_reg_rauhtd_ipv6_ent_dip_memcpy_from(payload, rec_index, p_dip);
5876}
5877
5878/* RTDP - Routing Tunnel Decap Properties Register
5879 * -----------------------------------------------
5880 * The RTDP register is used for configuring the tunnel decap properties of NVE
5881 * and IPinIP.
5882 */
5883#define MLXSW_REG_RTDP_ID 0x8020
5884#define MLXSW_REG_RTDP_LEN 0x44
5885
5886MLXSW_REG_DEFINE(rtdp, MLXSW_REG_RTDP_ID, MLXSW_REG_RTDP_LEN);
5887
5888enum mlxsw_reg_rtdp_type {
5889        MLXSW_REG_RTDP_TYPE_NVE,
5890        MLXSW_REG_RTDP_TYPE_IPIP,
5891};
5892
5893/* reg_rtdp_type
5894 * Type of the RTDP entry as per enum mlxsw_reg_rtdp_type.
5895 * Access: RW
5896 */
5897MLXSW_ITEM32(reg, rtdp, type, 0x00, 28, 4);
5898
5899/* reg_rtdp_tunnel_index
5900 * Index to the Decap entry.
5901 * For Spectrum, Index to KVD Linear.
5902 * Access: Index
5903 */
5904MLXSW_ITEM32(reg, rtdp, tunnel_index, 0x00, 0, 24);
5905
5906/* IPinIP */
5907
5908/* reg_rtdp_ipip_irif
5909 * Ingress Router Interface for the overlay router
5910 * Access: RW
5911 */
5912MLXSW_ITEM32(reg, rtdp, ipip_irif, 0x04, 16, 16);
5913
5914enum mlxsw_reg_rtdp_ipip_sip_check {
5915        /* No sip checks. */
5916        MLXSW_REG_RTDP_IPIP_SIP_CHECK_NO,
5917        /* Filter packet if underlay is not IPv4 or if underlay SIP does not
5918         * equal ipv4_usip.
5919         */
5920        MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV4,
5921        /* Filter packet if underlay is not IPv6 or if underlay SIP does not
5922         * equal ipv6_usip.
5923         */
5924        MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV6 = 3,
5925};
5926
5927/* reg_rtdp_ipip_sip_check
5928 * SIP check to perform. If decapsulation failed due to these configurations
5929 * then trap_id is IPIP_DECAP_ERROR.
5930 * Access: RW
5931 */
5932MLXSW_ITEM32(reg, rtdp, ipip_sip_check, 0x04, 0, 3);
5933
5934/* If set, allow decapsulation of IPinIP (without GRE). */
5935#define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_IPIP       BIT(0)
5936/* If set, allow decapsulation of IPinGREinIP without a key. */
5937#define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_GRE        BIT(1)
5938/* If set, allow decapsulation of IPinGREinIP with a key. */
5939#define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_GRE_KEY    BIT(2)
5940
5941/* reg_rtdp_ipip_type_check
5942 * Flags as per MLXSW_REG_RTDP_IPIP_TYPE_CHECK_*. If decapsulation failed due to
5943 * these configurations then trap_id is IPIP_DECAP_ERROR.
5944 * Access: RW
5945 */
5946MLXSW_ITEM32(reg, rtdp, ipip_type_check, 0x08, 24, 3);
5947
5948/* reg_rtdp_ipip_gre_key_check
5949 * Whether GRE key should be checked. When check is enabled:
5950 * - A packet received as IPinIP (without GRE) will always pass.
5951 * - A packet received as IPinGREinIP without a key will not pass the check.
5952 * - A packet received as IPinGREinIP with a key will pass the check only if the
5953 *   key in the packet is equal to expected_gre_key.
5954 * If decapsulation failed due to GRE key then trap_id is IPIP_DECAP_ERROR.
5955 * Access: RW
5956 */
5957MLXSW_ITEM32(reg, rtdp, ipip_gre_key_check, 0x08, 23, 1);
5958
5959/* reg_rtdp_ipip_ipv4_usip
5960 * Underlay IPv4 address for ipv4 source address check.
5961 * Reserved when sip_check is not '1'.
5962 * Access: RW
5963 */
5964MLXSW_ITEM32(reg, rtdp, ipip_ipv4_usip, 0x0C, 0, 32);
5965
5966/* reg_rtdp_ipip_ipv6_usip_ptr
5967 * This field is valid when sip_check is "sipv6 check explicitly". This is a
5968 * pointer to the IPv6 DIP which is configured by RIPS. For Spectrum, the index
5969 * is to the KVD linear.
5970 * Reserved when sip_check is not MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV6.
5971 * Access: RW
5972 */
5973MLXSW_ITEM32(reg, rtdp, ipip_ipv6_usip_ptr, 0x10, 0, 24);
5974
5975/* reg_rtdp_ipip_expected_gre_key
5976 * GRE key for checking.
5977 * Reserved when gre_key_check is '0'.
5978 * Access: RW
5979 */
5980MLXSW_ITEM32(reg, rtdp, ipip_expected_gre_key, 0x14, 0, 32);
5981
5982static inline void mlxsw_reg_rtdp_pack(char *payload,
5983                                       enum mlxsw_reg_rtdp_type type,
5984                                       u32 tunnel_index)
5985{
5986        MLXSW_REG_ZERO(rtdp, payload);
5987        mlxsw_reg_rtdp_type_set(payload, type);
5988        mlxsw_reg_rtdp_tunnel_index_set(payload, tunnel_index);
5989}
5990
5991static inline void
5992mlxsw_reg_rtdp_ipip4_pack(char *payload, u16 irif,
5993                          enum mlxsw_reg_rtdp_ipip_sip_check sip_check,
5994                          unsigned int type_check, bool gre_key_check,
5995                          u32 ipv4_usip, u32 expected_gre_key)
5996{
5997        mlxsw_reg_rtdp_ipip_irif_set(payload, irif);
5998        mlxsw_reg_rtdp_ipip_sip_check_set(payload, sip_check);
5999        mlxsw_reg_rtdp_ipip_type_check_set(payload, type_check);
6000        mlxsw_reg_rtdp_ipip_gre_key_check_set(payload, gre_key_check);
6001        mlxsw_reg_rtdp_ipip_ipv4_usip_set(payload, ipv4_usip);
6002        mlxsw_reg_rtdp_ipip_expected_gre_key_set(payload, expected_gre_key);
6003}
6004
6005/* RIGR-V2 - Router Interface Group Register Version 2
6006 * ---------------------------------------------------
6007 * The RIGR_V2 register is used to add, remove and query egress interface list
6008 * of a multicast forwarding entry.
6009 */
6010#define MLXSW_REG_RIGR2_ID 0x8023
6011#define MLXSW_REG_RIGR2_LEN 0xB0
6012
6013#define MLXSW_REG_RIGR2_MAX_ERIFS 32
6014
6015MLXSW_REG_DEFINE(rigr2, MLXSW_REG_RIGR2_ID, MLXSW_REG_RIGR2_LEN);
6016
6017/* reg_rigr2_rigr_index
6018 * KVD Linear index.
6019 * Access: Index
6020 */
6021MLXSW_ITEM32(reg, rigr2, rigr_index, 0x04, 0, 24);
6022
6023/* reg_rigr2_vnext
6024 * Next RIGR Index is valid.
6025 * Access: RW
6026 */
6027MLXSW_ITEM32(reg, rigr2, vnext, 0x08, 31, 1);
6028
6029/* reg_rigr2_next_rigr_index
6030 * Next RIGR Index. The index is to the KVD linear.
6031 * Reserved when vnxet = '0'.
6032 * Access: RW
6033 */
6034MLXSW_ITEM32(reg, rigr2, next_rigr_index, 0x08, 0, 24);
6035
6036/* reg_rigr2_vrmid
6037 * RMID Index is valid.
6038 * Access: RW
6039 */
6040MLXSW_ITEM32(reg, rigr2, vrmid, 0x20, 31, 1);
6041
6042/* reg_rigr2_rmid_index
6043 * RMID Index.
6044 * Range 0 .. max_mid - 1
6045 * Reserved when vrmid = '0'.
6046 * The index is to the Port Group Table (PGT)
6047 * Access: RW
6048 */
6049MLXSW_ITEM32(reg, rigr2, rmid_index, 0x20, 0, 16);
6050
6051/* reg_rigr2_erif_entry_v
6052 * Egress Router Interface is valid.
6053 * Note that low-entries must be set if high-entries are set. For
6054 * example: if erif_entry[2].v is set then erif_entry[1].v and
6055 * erif_entry[0].v must be set.
6056 * Index can be from 0 to cap_mc_erif_list_entries-1
6057 * Access: RW
6058 */
6059MLXSW_ITEM32_INDEXED(reg, rigr2, erif_entry_v, 0x24, 31, 1, 4, 0, false);
6060
6061/* reg_rigr2_erif_entry_erif
6062 * Egress Router Interface.
6063 * Valid range is from 0 to cap_max_router_interfaces - 1
6064 * Index can be from 0 to MLXSW_REG_RIGR2_MAX_ERIFS - 1
6065 * Access: RW
6066 */
6067MLXSW_ITEM32_INDEXED(reg, rigr2, erif_entry_erif, 0x24, 0, 16, 4, 0, false);
6068
6069static inline void mlxsw_reg_rigr2_pack(char *payload, u32 rigr_index,
6070                                        bool vnext, u32 next_rigr_index)
6071{
6072        MLXSW_REG_ZERO(rigr2, payload);
6073        mlxsw_reg_rigr2_rigr_index_set(payload, rigr_index);
6074        mlxsw_reg_rigr2_vnext_set(payload, vnext);
6075        mlxsw_reg_rigr2_next_rigr_index_set(payload, next_rigr_index);
6076        mlxsw_reg_rigr2_vrmid_set(payload, 0);
6077        mlxsw_reg_rigr2_rmid_index_set(payload, 0);
6078}
6079
6080static inline void mlxsw_reg_rigr2_erif_entry_pack(char *payload, int index,
6081                                                   bool v, u16 erif)
6082{
6083        mlxsw_reg_rigr2_erif_entry_v_set(payload, index, v);
6084        mlxsw_reg_rigr2_erif_entry_erif_set(payload, index, erif);
6085}
6086
6087/* RECR-V2 - Router ECMP Configuration Version 2 Register
6088 * ------------------------------------------------------
6089 */
6090#define MLXSW_REG_RECR2_ID 0x8025
6091#define MLXSW_REG_RECR2_LEN 0x38
6092
6093MLXSW_REG_DEFINE(recr2, MLXSW_REG_RECR2_ID, MLXSW_REG_RECR2_LEN);
6094
6095/* reg_recr2_pp
6096 * Per-port configuration
6097 * Access: Index
6098 */
6099MLXSW_ITEM32(reg, recr2, pp, 0x00, 24, 1);
6100
6101/* reg_recr2_sh
6102 * Symmetric hash
6103 * Access: RW
6104 */
6105MLXSW_ITEM32(reg, recr2, sh, 0x00, 8, 1);
6106
6107/* reg_recr2_seed
6108 * Seed
6109 * Access: RW
6110 */
6111MLXSW_ITEM32(reg, recr2, seed, 0x08, 0, 32);
6112
6113enum {
6114        /* Enable IPv4 fields if packet is not TCP and not UDP */
6115        MLXSW_REG_RECR2_IPV4_EN_NOT_TCP_NOT_UDP = 3,
6116        /* Enable IPv4 fields if packet is TCP or UDP */
6117        MLXSW_REG_RECR2_IPV4_EN_TCP_UDP         = 4,
6118        /* Enable IPv6 fields if packet is not TCP and not UDP */
6119        MLXSW_REG_RECR2_IPV6_EN_NOT_TCP_NOT_UDP = 5,
6120        /* Enable IPv6 fields if packet is TCP or UDP */
6121        MLXSW_REG_RECR2_IPV6_EN_TCP_UDP         = 6,
6122        /* Enable TCP/UDP header fields if packet is IPv4 */
6123        MLXSW_REG_RECR2_TCP_UDP_EN_IPV4         = 7,
6124        /* Enable TCP/UDP header fields if packet is IPv6 */
6125        MLXSW_REG_RECR2_TCP_UDP_EN_IPV6         = 8,
6126};
6127
6128/* reg_recr2_outer_header_enables
6129 * Bit mask where each bit enables a specific layer to be included in
6130 * the hash calculation.
6131 * Access: RW
6132 */
6133MLXSW_ITEM_BIT_ARRAY(reg, recr2, outer_header_enables, 0x10, 0x04, 1);
6134
6135enum {
6136        /* IPv4 Source IP */
6137        MLXSW_REG_RECR2_IPV4_SIP0                       = 9,
6138        MLXSW_REG_RECR2_IPV4_SIP3                       = 12,
6139        /* IPv4 Destination IP */
6140        MLXSW_REG_RECR2_IPV4_DIP0                       = 13,
6141        MLXSW_REG_RECR2_IPV4_DIP3                       = 16,
6142        /* IP Protocol */
6143        MLXSW_REG_RECR2_IPV4_PROTOCOL                   = 17,
6144        /* IPv6 Source IP */
6145        MLXSW_REG_RECR2_IPV6_SIP0_7                     = 21,
6146        MLXSW_REG_RECR2_IPV6_SIP8                       = 29,
6147        MLXSW_REG_RECR2_IPV6_SIP15                      = 36,
6148        /* IPv6 Destination IP */
6149        MLXSW_REG_RECR2_IPV6_DIP0_7                     = 37,
6150        MLXSW_REG_RECR2_IPV6_DIP8                       = 45,
6151        MLXSW_REG_RECR2_IPV6_DIP15                      = 52,
6152        /* IPv6 Next Header */
6153        MLXSW_REG_RECR2_IPV6_NEXT_HEADER                = 53,
6154        /* IPv6 Flow Label */
6155        MLXSW_REG_RECR2_IPV6_FLOW_LABEL                 = 57,
6156        /* TCP/UDP Source Port */
6157        MLXSW_REG_RECR2_TCP_UDP_SPORT                   = 74,
6158        /* TCP/UDP Destination Port */
6159        MLXSW_REG_RECR2_TCP_UDP_DPORT                   = 75,
6160};
6161
6162/* reg_recr2_outer_header_fields_enable
6163 * Packet fields to enable for ECMP hash subject to outer_header_enable.
6164 * Access: RW
6165 */
6166MLXSW_ITEM_BIT_ARRAY(reg, recr2, outer_header_fields_enable, 0x14, 0x14, 1);
6167
6168static inline void mlxsw_reg_recr2_ipv4_sip_enable(char *payload)
6169{
6170        int i;
6171
6172        for (i = MLXSW_REG_RECR2_IPV4_SIP0; i <= MLXSW_REG_RECR2_IPV4_SIP3; i++)
6173                mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i,
6174                                                               true);
6175}
6176
6177static inline void mlxsw_reg_recr2_ipv4_dip_enable(char *payload)
6178{
6179        int i;
6180
6181        for (i = MLXSW_REG_RECR2_IPV4_DIP0; i <= MLXSW_REG_RECR2_IPV4_DIP3; i++)
6182                mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i,
6183                                                               true);
6184}
6185
6186static inline void mlxsw_reg_recr2_ipv6_sip_enable(char *payload)
6187{
6188        int i = MLXSW_REG_RECR2_IPV6_SIP0_7;
6189
6190        mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i, true);
6191
6192        i = MLXSW_REG_RECR2_IPV6_SIP8;
6193        for (; i <= MLXSW_REG_RECR2_IPV6_SIP15; i++)
6194                mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i,
6195                                                               true);
6196}
6197
6198static inline void mlxsw_reg_recr2_ipv6_dip_enable(char *payload)
6199{
6200        int i = MLXSW_REG_RECR2_IPV6_DIP0_7;
6201
6202        mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i, true);
6203
6204        i = MLXSW_REG_RECR2_IPV6_DIP8;
6205        for (; i <= MLXSW_REG_RECR2_IPV6_DIP15; i++)
6206                mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i,
6207                                                               true);
6208}
6209
6210static inline void mlxsw_reg_recr2_pack(char *payload, u32 seed)
6211{
6212        MLXSW_REG_ZERO(recr2, payload);
6213        mlxsw_reg_recr2_pp_set(payload, false);
6214        mlxsw_reg_recr2_sh_set(payload, true);
6215        mlxsw_reg_recr2_seed_set(payload, seed);
6216}
6217
6218/* RMFT-V2 - Router Multicast Forwarding Table Version 2 Register
6219 * --------------------------------------------------------------
6220 * The RMFT_V2 register is used to configure and query the multicast table.
6221 */
6222#define MLXSW_REG_RMFT2_ID 0x8027
6223#define MLXSW_REG_RMFT2_LEN 0x174
6224
6225MLXSW_REG_DEFINE(rmft2, MLXSW_REG_RMFT2_ID, MLXSW_REG_RMFT2_LEN);
6226
6227/* reg_rmft2_v
6228 * Valid
6229 * Access: RW
6230 */
6231MLXSW_ITEM32(reg, rmft2, v, 0x00, 31, 1);
6232
6233enum mlxsw_reg_rmft2_type {
6234        MLXSW_REG_RMFT2_TYPE_IPV4,
6235        MLXSW_REG_RMFT2_TYPE_IPV6
6236};
6237
6238/* reg_rmft2_type
6239 * Access: Index
6240 */
6241MLXSW_ITEM32(reg, rmft2, type, 0x00, 28, 2);
6242
6243enum mlxsw_sp_reg_rmft2_op {
6244        /* For Write:
6245         * Write operation. Used to write a new entry to the table. All RW
6246         * fields are relevant for new entry. Activity bit is set for new
6247         * entries - Note write with v (Valid) 0 will delete the entry.
6248         * For Query:
6249         * Read operation
6250         */
6251        MLXSW_REG_RMFT2_OP_READ_WRITE,
6252};
6253
6254/* reg_rmft2_op
6255 * Operation.
6256 * Access: OP
6257 */
6258MLXSW_ITEM32(reg, rmft2, op, 0x00, 20, 2);
6259
6260/* reg_rmft2_a
6261 * Activity. Set for new entries. Set if a packet lookup has hit on the specific
6262 * entry.
6263 * Access: RO
6264 */
6265MLXSW_ITEM32(reg, rmft2, a, 0x00, 16, 1);
6266
6267/* reg_rmft2_offset
6268 * Offset within the multicast forwarding table to write to.
6269 * Access: Index
6270 */
6271MLXSW_ITEM32(reg, rmft2, offset, 0x00, 0, 16);
6272
6273/* reg_rmft2_virtual_router
6274 * Virtual Router ID. Range from 0..cap_max_virtual_routers-1
6275 * Access: RW
6276 */
6277MLXSW_ITEM32(reg, rmft2, virtual_router, 0x04, 0, 16);
6278
6279enum mlxsw_reg_rmft2_irif_mask {
6280        MLXSW_REG_RMFT2_IRIF_MASK_IGNORE,
6281        MLXSW_REG_RMFT2_IRIF_MASK_COMPARE
6282};
6283
6284/* reg_rmft2_irif_mask
6285 * Ingress RIF mask.
6286 * Access: RW
6287 */
6288MLXSW_ITEM32(reg, rmft2, irif_mask, 0x08, 24, 1);
6289
6290/* reg_rmft2_irif
6291 * Ingress RIF index.
6292 * Access: RW
6293 */
6294MLXSW_ITEM32(reg, rmft2, irif, 0x08, 0, 16);
6295
6296/* reg_rmft2_dip4
6297 * Destination IPv4 address
6298 * Access: RW
6299 */
6300MLXSW_ITEM32(reg, rmft2, dip4, 0x1C, 0, 32);
6301
6302/* reg_rmft2_dip4_mask
6303 * A bit that is set directs the TCAM to compare the corresponding bit in key. A
6304 * bit that is clear directs the TCAM to ignore the corresponding bit in key.
6305 * Access: RW
6306 */
6307MLXSW_ITEM32(reg, rmft2, dip4_mask, 0x2C, 0, 32);
6308
6309/* reg_rmft2_sip4
6310 * Source IPv4 address
6311 * Access: RW
6312 */
6313MLXSW_ITEM32(reg, rmft2, sip4, 0x3C, 0, 32);
6314
6315/* reg_rmft2_sip4_mask
6316 * A bit that is set directs the TCAM to compare the corresponding bit in key. A
6317 * bit that is clear directs the TCAM to ignore the corresponding bit in key.
6318 * Access: RW
6319 */
6320MLXSW_ITEM32(reg, rmft2, sip4_mask, 0x4C, 0, 32);
6321
6322/* reg_rmft2_flexible_action_set
6323 * ACL action set. The only supported action types in this field and in any
6324 * action-set pointed from here are as follows:
6325 * 00h: ACTION_NULL
6326 * 01h: ACTION_MAC_TTL, only TTL configuration is supported.
6327 * 03h: ACTION_TRAP
6328 * 06h: ACTION_QOS
6329 * 08h: ACTION_POLICING_MONITORING
6330 * 10h: ACTION_ROUTER_MC
6331 * Access: RW
6332 */
6333MLXSW_ITEM_BUF(reg, rmft2, flexible_action_set, 0x80,
6334               MLXSW_REG_FLEX_ACTION_SET_LEN);
6335
6336static inline void
6337mlxsw_reg_rmft2_ipv4_pack(char *payload, bool v, u16 offset, u16 virtual_router,
6338                          enum mlxsw_reg_rmft2_irif_mask irif_mask, u16 irif,
6339                          u32 dip4, u32 dip4_mask, u32 sip4, u32 sip4_mask,
6340                          const char *flexible_action_set)
6341{
6342        MLXSW_REG_ZERO(rmft2, payload);
6343        mlxsw_reg_rmft2_v_set(payload, v);
6344        mlxsw_reg_rmft2_type_set(payload, MLXSW_REG_RMFT2_TYPE_IPV4);
6345        mlxsw_reg_rmft2_op_set(payload, MLXSW_REG_RMFT2_OP_READ_WRITE);
6346        mlxsw_reg_rmft2_offset_set(payload, offset);
6347        mlxsw_reg_rmft2_virtual_router_set(payload, virtual_router);
6348        mlxsw_reg_rmft2_irif_mask_set(payload, irif_mask);
6349        mlxsw_reg_rmft2_irif_set(payload, irif);
6350        mlxsw_reg_rmft2_dip4_set(payload, dip4);
6351        mlxsw_reg_rmft2_dip4_mask_set(payload, dip4_mask);
6352        mlxsw_reg_rmft2_sip4_set(payload, sip4);
6353        mlxsw_reg_rmft2_sip4_mask_set(payload, sip4_mask);
6354        if (flexible_action_set)
6355                mlxsw_reg_rmft2_flexible_action_set_memcpy_to(payload,
6356                                                              flexible_action_set);
6357}
6358
6359/* MFCR - Management Fan Control Register
6360 * --------------------------------------
6361 * This register controls the settings of the Fan Speed PWM mechanism.
6362 */
6363#define MLXSW_REG_MFCR_ID 0x9001
6364#define MLXSW_REG_MFCR_LEN 0x08
6365
6366MLXSW_REG_DEFINE(mfcr, MLXSW_REG_MFCR_ID, MLXSW_REG_MFCR_LEN);
6367
6368enum mlxsw_reg_mfcr_pwm_frequency {
6369        MLXSW_REG_MFCR_PWM_FEQ_11HZ = 0x00,
6370        MLXSW_REG_MFCR_PWM_FEQ_14_7HZ = 0x01,
6371        MLXSW_REG_MFCR_PWM_FEQ_22_1HZ = 0x02,
6372        MLXSW_REG_MFCR_PWM_FEQ_1_4KHZ = 0x40,
6373        MLXSW_REG_MFCR_PWM_FEQ_5KHZ = 0x41,
6374        MLXSW_REG_MFCR_PWM_FEQ_20KHZ = 0x42,
6375        MLXSW_REG_MFCR_PWM_FEQ_22_5KHZ = 0x43,
6376        MLXSW_REG_MFCR_PWM_FEQ_25KHZ = 0x44,
6377};
6378
6379/* reg_mfcr_pwm_frequency
6380 * Controls the frequency of the PWM signal.
6381 * Access: RW
6382 */
6383MLXSW_ITEM32(reg, mfcr, pwm_frequency, 0x00, 0, 7);
6384
6385#define MLXSW_MFCR_TACHOS_MAX 10
6386
6387/* reg_mfcr_tacho_active
6388 * Indicates which of the tachometer is active (bit per tachometer).
6389 * Access: RO
6390 */
6391MLXSW_ITEM32(reg, mfcr, tacho_active, 0x04, 16, MLXSW_MFCR_TACHOS_MAX);
6392
6393#define MLXSW_MFCR_PWMS_MAX 5
6394
6395/* reg_mfcr_pwm_active
6396 * Indicates which of the PWM control is active (bit per PWM).
6397 * Access: RO
6398 */
6399MLXSW_ITEM32(reg, mfcr, pwm_active, 0x04, 0, MLXSW_MFCR_PWMS_MAX);
6400
6401static inline void
6402mlxsw_reg_mfcr_pack(char *payload,
6403                    enum mlxsw_reg_mfcr_pwm_frequency pwm_frequency)
6404{
6405        MLXSW_REG_ZERO(mfcr, payload);
6406        mlxsw_reg_mfcr_pwm_frequency_set(payload, pwm_frequency);
6407}
6408
6409static inline void
6410mlxsw_reg_mfcr_unpack(char *payload,
6411                      enum mlxsw_reg_mfcr_pwm_frequency *p_pwm_frequency,
6412                      u16 *p_tacho_active, u8 *p_pwm_active)
6413{
6414        *p_pwm_frequency = mlxsw_reg_mfcr_pwm_frequency_get(payload);
6415        *p_tacho_active = mlxsw_reg_mfcr_tacho_active_get(payload);
6416        *p_pwm_active = mlxsw_reg_mfcr_pwm_active_get(payload);
6417}
6418
6419/* MFSC - Management Fan Speed Control Register
6420 * --------------------------------------------
6421 * This register controls the settings of the Fan Speed PWM mechanism.
6422 */
6423#define MLXSW_REG_MFSC_ID 0x9002
6424#define MLXSW_REG_MFSC_LEN 0x08
6425
6426MLXSW_REG_DEFINE(mfsc, MLXSW_REG_MFSC_ID, MLXSW_REG_MFSC_LEN);
6427
6428/* reg_mfsc_pwm
6429 * Fan pwm to control / monitor.
6430 * Access: Index
6431 */
6432MLXSW_ITEM32(reg, mfsc, pwm, 0x00, 24, 3);
6433
6434/* reg_mfsc_pwm_duty_cycle
6435 * Controls the duty cycle of the PWM. Value range from 0..255 to
6436 * represent duty cycle of 0%...100%.
6437 * Access: RW
6438 */
6439MLXSW_ITEM32(reg, mfsc, pwm_duty_cycle, 0x04, 0, 8);
6440
6441static inline void mlxsw_reg_mfsc_pack(char *payload, u8 pwm,
6442                                       u8 pwm_duty_cycle)
6443{
6444        MLXSW_REG_ZERO(mfsc, payload);
6445        mlxsw_reg_mfsc_pwm_set(payload, pwm);
6446        mlxsw_reg_mfsc_pwm_duty_cycle_set(payload, pwm_duty_cycle);
6447}
6448
6449/* MFSM - Management Fan Speed Measurement
6450 * ---------------------------------------
6451 * This register controls the settings of the Tacho measurements and
6452 * enables reading the Tachometer measurements.
6453 */
6454#define MLXSW_REG_MFSM_ID 0x9003
6455#define MLXSW_REG_MFSM_LEN 0x08
6456
6457MLXSW_REG_DEFINE(mfsm, MLXSW_REG_MFSM_ID, MLXSW_REG_MFSM_LEN);
6458
6459/* reg_mfsm_tacho
6460 * Fan tachometer index.
6461 * Access: Index
6462 */
6463MLXSW_ITEM32(reg, mfsm, tacho, 0x00, 24, 4);
6464
6465/* reg_mfsm_rpm
6466 * Fan speed (round per minute).
6467 * Access: RO
6468 */
6469MLXSW_ITEM32(reg, mfsm, rpm, 0x04, 0, 16);
6470
6471static inline void mlxsw_reg_mfsm_pack(char *payload, u8 tacho)
6472{
6473        MLXSW_REG_ZERO(mfsm, payload);
6474        mlxsw_reg_mfsm_tacho_set(payload, tacho);
6475}
6476
6477/* MFSL - Management Fan Speed Limit Register
6478 * ------------------------------------------
6479 * The Fan Speed Limit register is used to configure the fan speed
6480 * event / interrupt notification mechanism. Fan speed threshold are
6481 * defined for both under-speed and over-speed.
6482 */
6483#define MLXSW_REG_MFSL_ID 0x9004
6484#define MLXSW_REG_MFSL_LEN 0x0C
6485
6486MLXSW_REG_DEFINE(mfsl, MLXSW_REG_MFSL_ID, MLXSW_REG_MFSL_LEN);
6487
6488/* reg_mfsl_tacho
6489 * Fan tachometer index.
6490 * Access: Index
6491 */
6492MLXSW_ITEM32(reg, mfsl, tacho, 0x00, 24, 4);
6493
6494/* reg_mfsl_tach_min
6495 * Tachometer minimum value (minimum RPM).
6496 * Access: RW
6497 */
6498MLXSW_ITEM32(reg, mfsl, tach_min, 0x04, 0, 16);
6499
6500/* reg_mfsl_tach_max
6501 * Tachometer maximum value (maximum RPM).
6502 * Access: RW
6503 */
6504MLXSW_ITEM32(reg, mfsl, tach_max, 0x08, 0, 16);
6505
6506static inline void mlxsw_reg_mfsl_pack(char *payload, u8 tacho,
6507                                       u16 tach_min, u16 tach_max)
6508{
6509        MLXSW_REG_ZERO(mfsl, payload);
6510        mlxsw_reg_mfsl_tacho_set(payload, tacho);
6511        mlxsw_reg_mfsl_tach_min_set(payload, tach_min);
6512        mlxsw_reg_mfsl_tach_max_set(payload, tach_max);
6513}
6514
6515static inline void mlxsw_reg_mfsl_unpack(char *payload, u8 tacho,
6516                                         u16 *p_tach_min, u16 *p_tach_max)
6517{
6518        if (p_tach_min)
6519                *p_tach_min = mlxsw_reg_mfsl_tach_min_get(payload);
6520
6521        if (p_tach_max)
6522                *p_tach_max = mlxsw_reg_mfsl_tach_max_get(payload);
6523}
6524
6525/* MTCAP - Management Temperature Capabilities
6526 * -------------------------------------------
6527 * This register exposes the capabilities of the device and
6528 * system temperature sensing.
6529 */
6530#define MLXSW_REG_MTCAP_ID 0x9009
6531#define MLXSW_REG_MTCAP_LEN 0x08
6532
6533MLXSW_REG_DEFINE(mtcap, MLXSW_REG_MTCAP_ID, MLXSW_REG_MTCAP_LEN);
6534
6535/* reg_mtcap_sensor_count
6536 * Number of sensors supported by the device.
6537 * This includes the QSFP module sensors (if exists in the QSFP module).
6538 * Access: RO
6539 */
6540MLXSW_ITEM32(reg, mtcap, sensor_count, 0x00, 0, 7);
6541
6542/* MTMP - Management Temperature
6543 * -----------------------------
6544 * This register controls the settings of the temperature measurements
6545 * and enables reading the temperature measurements. Note that temperature
6546 * is in 0.125 degrees Celsius.
6547 */
6548#define MLXSW_REG_MTMP_ID 0x900A
6549#define MLXSW_REG_MTMP_LEN 0x20
6550
6551MLXSW_REG_DEFINE(mtmp, MLXSW_REG_MTMP_ID, MLXSW_REG_MTMP_LEN);
6552
6553/* reg_mtmp_sensor_index
6554 * Sensors index to access.
6555 * 64-127 of sensor_index are mapped to the SFP+/QSFP modules sequentially
6556 * (module 0 is mapped to sensor_index 64).
6557 * Access: Index
6558 */
6559MLXSW_ITEM32(reg, mtmp, sensor_index, 0x00, 0, 7);
6560
6561/* Convert to milli degrees Celsius */
6562#define MLXSW_REG_MTMP_TEMP_TO_MC(val) (val * 125)
6563
6564/* reg_mtmp_temperature
6565 * Temperature reading from the sensor. Reading is in 0.125 Celsius
6566 * degrees units.
6567 * Access: RO
6568 */
6569MLXSW_ITEM32(reg, mtmp, temperature, 0x04, 0, 16);
6570
6571/* reg_mtmp_mte
6572 * Max Temperature Enable - enables measuring the max temperature on a sensor.
6573 * Access: RW
6574 */
6575MLXSW_ITEM32(reg, mtmp, mte, 0x08, 31, 1);
6576
6577/* reg_mtmp_mtr
6578 * Max Temperature Reset - clears the value of the max temperature register.
6579 * Access: WO
6580 */
6581MLXSW_ITEM32(reg, mtmp, mtr, 0x08, 30, 1);
6582
6583/* reg_mtmp_max_temperature
6584 * The highest measured temperature from the sensor.
6585 * When the bit mte is cleared, the field max_temperature is reserved.
6586 * Access: RO
6587 */
6588MLXSW_ITEM32(reg, mtmp, max_temperature, 0x08, 0, 16);
6589
6590/* reg_mtmp_tee
6591 * Temperature Event Enable.
6592 * 0 - Do not generate event
6593 * 1 - Generate event
6594 * 2 - Generate single event
6595 * Access: RW
6596 */
6597MLXSW_ITEM32(reg, mtmp, tee, 0x0C, 30, 2);
6598
6599#define MLXSW_REG_MTMP_THRESH_HI 0x348  /* 105 Celsius */
6600
6601/* reg_mtmp_temperature_threshold_hi
6602 * High threshold for Temperature Warning Event. In 0.125 Celsius.
6603 * Access: RW
6604 */
6605MLXSW_ITEM32(reg, mtmp, temperature_threshold_hi, 0x0C, 0, 16);
6606
6607/* reg_mtmp_temperature_threshold_lo
6608 * Low threshold for Temperature Warning Event. In 0.125 Celsius.
6609 * Access: RW
6610 */
6611MLXSW_ITEM32(reg, mtmp, temperature_threshold_lo, 0x10, 0, 16);
6612
6613#define MLXSW_REG_MTMP_SENSOR_NAME_SIZE 8
6614
6615/* reg_mtmp_sensor_name
6616 * Sensor Name
6617 * Access: RO
6618 */
6619MLXSW_ITEM_BUF(reg, mtmp, sensor_name, 0x18, MLXSW_REG_MTMP_SENSOR_NAME_SIZE);
6620
6621static inline void mlxsw_reg_mtmp_pack(char *payload, u8 sensor_index,
6622                                       bool max_temp_enable,
6623                                       bool max_temp_reset)
6624{
6625        MLXSW_REG_ZERO(mtmp, payload);
6626        mlxsw_reg_mtmp_sensor_index_set(payload, sensor_index);
6627        mlxsw_reg_mtmp_mte_set(payload, max_temp_enable);
6628        mlxsw_reg_mtmp_mtr_set(payload, max_temp_reset);
6629        mlxsw_reg_mtmp_temperature_threshold_hi_set(payload,
6630                                                    MLXSW_REG_MTMP_THRESH_HI);
6631}
6632
6633static inline void mlxsw_reg_mtmp_unpack(char *payload, unsigned int *p_temp,
6634                                         unsigned int *p_max_temp,
6635                                         char *sensor_name)
6636{
6637        u16 temp;
6638
6639        if (p_temp) {
6640                temp = mlxsw_reg_mtmp_temperature_get(payload);
6641                *p_temp = MLXSW_REG_MTMP_TEMP_TO_MC(temp);
6642        }
6643        if (p_max_temp) {
6644                temp = mlxsw_reg_mtmp_max_temperature_get(payload);
6645                *p_max_temp = MLXSW_REG_MTMP_TEMP_TO_MC(temp);
6646        }
6647        if (sensor_name)
6648                mlxsw_reg_mtmp_sensor_name_memcpy_from(payload, sensor_name);
6649}
6650
6651/* MCIA - Management Cable Info Access
6652 * -----------------------------------
6653 * MCIA register is used to access the SFP+ and QSFP connector's EPROM.
6654 */
6655
6656#define MLXSW_REG_MCIA_ID 0x9014
6657#define MLXSW_REG_MCIA_LEN 0x40
6658
6659MLXSW_REG_DEFINE(mcia, MLXSW_REG_MCIA_ID, MLXSW_REG_MCIA_LEN);
6660
6661/* reg_mcia_l
6662 * Lock bit. Setting this bit will lock the access to the specific
6663 * cable. Used for updating a full page in a cable EPROM. Any access
6664 * other then subsequence writes will fail while the port is locked.
6665 * Access: RW
6666 */
6667MLXSW_ITEM32(reg, mcia, l, 0x00, 31, 1);
6668
6669/* reg_mcia_module
6670 * Module number.
6671 * Access: Index
6672 */
6673MLXSW_ITEM32(reg, mcia, module, 0x00, 16, 8);
6674
6675/* reg_mcia_status
6676 * Module status.
6677 * Access: RO
6678 */
6679MLXSW_ITEM32(reg, mcia, status, 0x00, 0, 8);
6680
6681/* reg_mcia_i2c_device_address
6682 * I2C device address.
6683 * Access: RW
6684 */
6685MLXSW_ITEM32(reg, mcia, i2c_device_address, 0x04, 24, 8);
6686
6687/* reg_mcia_page_number
6688 * Page number.
6689 * Access: RW
6690 */
6691MLXSW_ITEM32(reg, mcia, page_number, 0x04, 16, 8);
6692
6693/* reg_mcia_device_address
6694 * Device address.
6695 * Access: RW
6696 */
6697MLXSW_ITEM32(reg, mcia, device_address, 0x04, 0, 16);
6698
6699/* reg_mcia_size
6700 * Number of bytes to read/write (up to 48 bytes).
6701 * Access: RW
6702 */
6703MLXSW_ITEM32(reg, mcia, size, 0x08, 0, 16);
6704
6705#define MLXSW_SP_REG_MCIA_EEPROM_SIZE 48
6706
6707/* reg_mcia_eeprom
6708 * Bytes to read/write.
6709 * Access: RW
6710 */
6711MLXSW_ITEM_BUF(reg, mcia, eeprom, 0x10, MLXSW_SP_REG_MCIA_EEPROM_SIZE);
6712
6713static inline void mlxsw_reg_mcia_pack(char *payload, u8 module, u8 lock,
6714                                       u8 page_number, u16 device_addr,
6715                                       u8 size, u8 i2c_device_addr)
6716{
6717        MLXSW_REG_ZERO(mcia, payload);
6718        mlxsw_reg_mcia_module_set(payload, module);
6719        mlxsw_reg_mcia_l_set(payload, lock);
6720        mlxsw_reg_mcia_page_number_set(payload, page_number);
6721        mlxsw_reg_mcia_device_address_set(payload, device_addr);
6722        mlxsw_reg_mcia_size_set(payload, size);
6723        mlxsw_reg_mcia_i2c_device_address_set(payload, i2c_device_addr);
6724}
6725
6726/* MPAT - Monitoring Port Analyzer Table
6727 * -------------------------------------
6728 * MPAT Register is used to query and configure the Switch PortAnalyzer Table.
6729 * For an enabled analyzer, all fields except e (enable) cannot be modified.
6730 */
6731#define MLXSW_REG_MPAT_ID 0x901A
6732#define MLXSW_REG_MPAT_LEN 0x78
6733
6734MLXSW_REG_DEFINE(mpat, MLXSW_REG_MPAT_ID, MLXSW_REG_MPAT_LEN);
6735
6736/* reg_mpat_pa_id
6737 * Port Analyzer ID.
6738 * Access: Index
6739 */
6740MLXSW_ITEM32(reg, mpat, pa_id, 0x00, 28, 4);
6741
6742/* reg_mpat_system_port
6743 * A unique port identifier for the final destination of the packet.
6744 * Access: RW
6745 */
6746MLXSW_ITEM32(reg, mpat, system_port, 0x00, 0, 16);
6747
6748/* reg_mpat_e
6749 * Enable. Indicating the Port Analyzer is enabled.
6750 * Access: RW
6751 */
6752MLXSW_ITEM32(reg, mpat, e, 0x04, 31, 1);
6753
6754/* reg_mpat_qos
6755 * Quality Of Service Mode.
6756 * 0: CONFIGURED - QoS parameters (Switch Priority, and encapsulation
6757 * PCP, DEI, DSCP or VL) are configured.
6758 * 1: MAINTAIN - QoS parameters (Switch Priority, Color) are the
6759 * same as in the original packet that has triggered the mirroring. For
6760 * SPAN also the pcp,dei are maintained.
6761 * Access: RW
6762 */
6763MLXSW_ITEM32(reg, mpat, qos, 0x04, 26, 1);
6764
6765/* reg_mpat_be
6766 * Best effort mode. Indicates mirroring traffic should not cause packet
6767 * drop or back pressure, but will discard the mirrored packets. Mirrored
6768 * packets will be forwarded on a best effort manner.
6769 * 0: Do not discard mirrored packets
6770 * 1: Discard mirrored packets if causing congestion
6771 * Access: RW
6772 */
6773MLXSW_ITEM32(reg, mpat, be, 0x04, 25, 1);
6774
6775static inline void mlxsw_reg_mpat_pack(char *payload, u8 pa_id,
6776                                       u16 system_port, bool e)
6777{
6778        MLXSW_REG_ZERO(mpat, payload);
6779        mlxsw_reg_mpat_pa_id_set(payload, pa_id);
6780        mlxsw_reg_mpat_system_port_set(payload, system_port);
6781        mlxsw_reg_mpat_e_set(payload, e);
6782        mlxsw_reg_mpat_qos_set(payload, 1);
6783        mlxsw_reg_mpat_be_set(payload, 1);
6784}
6785
6786/* MPAR - Monitoring Port Analyzer Register
6787 * ----------------------------------------
6788 * MPAR register is used to query and configure the port analyzer port mirroring
6789 * properties.
6790 */
6791#define MLXSW_REG_MPAR_ID 0x901B
6792#define MLXSW_REG_MPAR_LEN 0x08
6793
6794MLXSW_REG_DEFINE(mpar, MLXSW_REG_MPAR_ID, MLXSW_REG_MPAR_LEN);
6795
6796/* reg_mpar_local_port
6797 * The local port to mirror the packets from.
6798 * Access: Index
6799 */
6800MLXSW_ITEM32(reg, mpar, local_port, 0x00, 16, 8);
6801
6802enum mlxsw_reg_mpar_i_e {
6803        MLXSW_REG_MPAR_TYPE_EGRESS,
6804        MLXSW_REG_MPAR_TYPE_INGRESS,
6805};
6806
6807/* reg_mpar_i_e
6808 * Ingress/Egress
6809 * Access: Index
6810 */
6811MLXSW_ITEM32(reg, mpar, i_e, 0x00, 0, 4);
6812
6813/* reg_mpar_enable
6814 * Enable mirroring
6815 * By default, port mirroring is disabled for all ports.
6816 * Access: RW
6817 */
6818MLXSW_ITEM32(reg, mpar, enable, 0x04, 31, 1);
6819
6820/* reg_mpar_pa_id
6821 * Port Analyzer ID.
6822 * Access: RW
6823 */
6824MLXSW_ITEM32(reg, mpar, pa_id, 0x04, 0, 4);
6825
6826static inline void mlxsw_reg_mpar_pack(char *payload, u8 local_port,
6827                                       enum mlxsw_reg_mpar_i_e i_e,
6828                                       bool enable, u8 pa_id)
6829{
6830        MLXSW_REG_ZERO(mpar, payload);
6831        mlxsw_reg_mpar_local_port_set(payload, local_port);
6832        mlxsw_reg_mpar_enable_set(payload, enable);
6833        mlxsw_reg_mpar_i_e_set(payload, i_e);
6834        mlxsw_reg_mpar_pa_id_set(payload, pa_id);
6835}
6836
6837/* MLCR - Management LED Control Register
6838 * --------------------------------------
6839 * Controls the system LEDs.
6840 */
6841#define MLXSW_REG_MLCR_ID 0x902B
6842#define MLXSW_REG_MLCR_LEN 0x0C
6843
6844MLXSW_REG_DEFINE(mlcr, MLXSW_REG_MLCR_ID, MLXSW_REG_MLCR_LEN);
6845
6846/* reg_mlcr_local_port
6847 * Local port number.
6848 * Access: RW
6849 */
6850MLXSW_ITEM32(reg, mlcr, local_port, 0x00, 16, 8);
6851
6852#define MLXSW_REG_MLCR_DURATION_MAX 0xFFFF
6853
6854/* reg_mlcr_beacon_duration
6855 * Duration of the beacon to be active, in seconds.
6856 * 0x0 - Will turn off the beacon.
6857 * 0xFFFF - Will turn on the beacon until explicitly turned off.
6858 * Access: RW
6859 */
6860MLXSW_ITEM32(reg, mlcr, beacon_duration, 0x04, 0, 16);
6861
6862/* reg_mlcr_beacon_remain
6863 * Remaining duration of the beacon, in seconds.
6864 * 0xFFFF indicates an infinite amount of time.
6865 * Access: RO
6866 */
6867MLXSW_ITEM32(reg, mlcr, beacon_remain, 0x08, 0, 16);
6868
6869static inline void mlxsw_reg_mlcr_pack(char *payload, u8 local_port,
6870                                       bool active)
6871{
6872        MLXSW_REG_ZERO(mlcr, payload);
6873        mlxsw_reg_mlcr_local_port_set(payload, local_port);
6874        mlxsw_reg_mlcr_beacon_duration_set(payload, active ?
6875                                           MLXSW_REG_MLCR_DURATION_MAX : 0);
6876}
6877
6878/* MCQI - Management Component Query Information
6879 * ---------------------------------------------
6880 * This register allows querying information about firmware components.
6881 */
6882#define MLXSW_REG_MCQI_ID 0x9061
6883#define MLXSW_REG_MCQI_BASE_LEN 0x18
6884#define MLXSW_REG_MCQI_CAP_LEN 0x14
6885#define MLXSW_REG_MCQI_LEN (MLXSW_REG_MCQI_BASE_LEN + MLXSW_REG_MCQI_CAP_LEN)
6886
6887MLXSW_REG_DEFINE(mcqi, MLXSW_REG_MCQI_ID, MLXSW_REG_MCQI_LEN);
6888
6889/* reg_mcqi_component_index
6890 * Index of the accessed component.
6891 * Access: Index
6892 */
6893MLXSW_ITEM32(reg, mcqi, component_index, 0x00, 0, 16);
6894
6895enum mlxfw_reg_mcqi_info_type {
6896        MLXSW_REG_MCQI_INFO_TYPE_CAPABILITIES,
6897};
6898
6899/* reg_mcqi_info_type
6900 * Component properties set.
6901 * Access: RW
6902 */
6903MLXSW_ITEM32(reg, mcqi, info_type, 0x08, 0, 5);
6904
6905/* reg_mcqi_offset
6906 * The requested/returned data offset from the section start, given in bytes.
6907 * Must be DWORD aligned.
6908 * Access: RW
6909 */
6910MLXSW_ITEM32(reg, mcqi, offset, 0x10, 0, 32);
6911
6912/* reg_mcqi_data_size
6913 * The requested/returned data size, given in bytes. If data_size is not DWORD
6914 * aligned, the last bytes are zero padded.
6915 * Access: RW
6916 */
6917MLXSW_ITEM32(reg, mcqi, data_size, 0x14, 0, 16);
6918
6919/* reg_mcqi_cap_max_component_size
6920 * Maximum size for this component, given in bytes.
6921 * Access: RO
6922 */
6923MLXSW_ITEM32(reg, mcqi, cap_max_component_size, 0x20, 0, 32);
6924
6925/* reg_mcqi_cap_log_mcda_word_size
6926 * Log 2 of the access word size in bytes. Read and write access must be aligned
6927 * to the word size. Write access must be done for an integer number of words.
6928 * Access: RO
6929 */
6930MLXSW_ITEM32(reg, mcqi, cap_log_mcda_word_size, 0x24, 28, 4);
6931
6932/* reg_mcqi_cap_mcda_max_write_size
6933 * Maximal write size for MCDA register
6934 * Access: RO
6935 */
6936MLXSW_ITEM32(reg, mcqi, cap_mcda_max_write_size, 0x24, 0, 16);
6937
6938static inline void mlxsw_reg_mcqi_pack(char *payload, u16 component_index)
6939{
6940        MLXSW_REG_ZERO(mcqi, payload);
6941        mlxsw_reg_mcqi_component_index_set(payload, component_index);
6942        mlxsw_reg_mcqi_info_type_set(payload,
6943                                     MLXSW_REG_MCQI_INFO_TYPE_CAPABILITIES);
6944        mlxsw_reg_mcqi_offset_set(payload, 0);
6945        mlxsw_reg_mcqi_data_size_set(payload, MLXSW_REG_MCQI_CAP_LEN);
6946}
6947
6948static inline void mlxsw_reg_mcqi_unpack(char *payload,
6949                                         u32 *p_cap_max_component_size,
6950                                         u8 *p_cap_log_mcda_word_size,
6951                                         u16 *p_cap_mcda_max_write_size)
6952{
6953        *p_cap_max_component_size =
6954                mlxsw_reg_mcqi_cap_max_component_size_get(payload);
6955        *p_cap_log_mcda_word_size =
6956                mlxsw_reg_mcqi_cap_log_mcda_word_size_get(payload);
6957        *p_cap_mcda_max_write_size =
6958                mlxsw_reg_mcqi_cap_mcda_max_write_size_get(payload);
6959}
6960
6961/* MCC - Management Component Control
6962 * ----------------------------------
6963 * Controls the firmware component and updates the FSM.
6964 */
6965#define MLXSW_REG_MCC_ID 0x9062
6966#define MLXSW_REG_MCC_LEN 0x1C
6967
6968MLXSW_REG_DEFINE(mcc, MLXSW_REG_MCC_ID, MLXSW_REG_MCC_LEN);
6969
6970enum mlxsw_reg_mcc_instruction {
6971        MLXSW_REG_MCC_INSTRUCTION_LOCK_UPDATE_HANDLE = 0x01,
6972        MLXSW_REG_MCC_INSTRUCTION_RELEASE_UPDATE_HANDLE = 0x02,
6973        MLXSW_REG_MCC_INSTRUCTION_UPDATE_COMPONENT = 0x03,
6974        MLXSW_REG_MCC_INSTRUCTION_VERIFY_COMPONENT = 0x04,
6975        MLXSW_REG_MCC_INSTRUCTION_ACTIVATE = 0x06,
6976        MLXSW_REG_MCC_INSTRUCTION_CANCEL = 0x08,
6977};
6978
6979/* reg_mcc_instruction
6980 * Command to be executed by the FSM.
6981 * Applicable for write operation only.
6982 * Access: RW
6983 */
6984MLXSW_ITEM32(reg, mcc, instruction, 0x00, 0, 8);
6985
6986/* reg_mcc_component_index
6987 * Index of the accessed component. Applicable only for commands that
6988 * refer to components. Otherwise, this field is reserved.
6989 * Access: Index
6990 */
6991MLXSW_ITEM32(reg, mcc, component_index, 0x04, 0, 16);
6992
6993/* reg_mcc_update_handle
6994 * Token representing the current flow executed by the FSM.
6995 * Access: WO
6996 */
6997MLXSW_ITEM32(reg, mcc, update_handle, 0x08, 0, 24);
6998
6999/* reg_mcc_error_code
7000 * Indicates the successful completion of the instruction, or the reason it
7001 * failed
7002 * Access: RO
7003 */
7004MLXSW_ITEM32(reg, mcc, error_code, 0x0C, 8, 8);
7005
7006/* reg_mcc_control_state
7007 * Current FSM state
7008 * Access: RO
7009 */
7010MLXSW_ITEM32(reg, mcc, control_state, 0x0C, 0, 4);
7011
7012/* reg_mcc_component_size
7013 * Component size in bytes. Valid for UPDATE_COMPONENT instruction. Specifying
7014 * the size may shorten the update time. Value 0x0 means that size is
7015 * unspecified.
7016 * Access: WO
7017 */
7018MLXSW_ITEM32(reg, mcc, component_size, 0x10, 0, 32);
7019
7020static inline void mlxsw_reg_mcc_pack(char *payload,
7021                                      enum mlxsw_reg_mcc_instruction instr,
7022                                      u16 component_index, u32 update_handle,
7023                                      u32 component_size)
7024{
7025        MLXSW_REG_ZERO(mcc, payload);
7026        mlxsw_reg_mcc_instruction_set(payload, instr);
7027        mlxsw_reg_mcc_component_index_set(payload, component_index);
7028        mlxsw_reg_mcc_update_handle_set(payload, update_handle);
7029        mlxsw_reg_mcc_component_size_set(payload, component_size);
7030}
7031
7032static inline void mlxsw_reg_mcc_unpack(char *payload, u32 *p_update_handle,
7033                                        u8 *p_error_code, u8 *p_control_state)
7034{
7035        if (p_update_handle)
7036                *p_update_handle = mlxsw_reg_mcc_update_handle_get(payload);
7037        if (p_error_code)
7038                *p_error_code = mlxsw_reg_mcc_error_code_get(payload);
7039        if (p_control_state)
7040                *p_control_state = mlxsw_reg_mcc_control_state_get(payload);
7041}
7042
7043/* MCDA - Management Component Data Access
7044 * ---------------------------------------
7045 * This register allows reading and writing a firmware component.
7046 */
7047#define MLXSW_REG_MCDA_ID 0x9063
7048#define MLXSW_REG_MCDA_BASE_LEN 0x10
7049#define MLXSW_REG_MCDA_MAX_DATA_LEN 0x80
7050#define MLXSW_REG_MCDA_LEN \
7051                (MLXSW_REG_MCDA_BASE_LEN + MLXSW_REG_MCDA_MAX_DATA_LEN)
7052
7053MLXSW_REG_DEFINE(mcda, MLXSW_REG_MCDA_ID, MLXSW_REG_MCDA_LEN);
7054
7055/* reg_mcda_update_handle
7056 * Token representing the current flow executed by the FSM.
7057 * Access: RW
7058 */
7059MLXSW_ITEM32(reg, mcda, update_handle, 0x00, 0, 24);
7060
7061/* reg_mcda_offset
7062 * Offset of accessed address relative to component start. Accesses must be in
7063 * accordance to log_mcda_word_size in MCQI reg.
7064 * Access: RW
7065 */
7066MLXSW_ITEM32(reg, mcda, offset, 0x04, 0, 32);
7067
7068/* reg_mcda_size
7069 * Size of the data accessed, given in bytes.
7070 * Access: RW
7071 */
7072MLXSW_ITEM32(reg, mcda, size, 0x08, 0, 16);
7073
7074/* reg_mcda_data
7075 * Data block accessed.
7076 * Access: RW
7077 */
7078MLXSW_ITEM32_INDEXED(reg, mcda, data, 0x10, 0, 32, 4, 0, false);
7079
7080static inline void mlxsw_reg_mcda_pack(char *payload, u32 update_handle,
7081                                       u32 offset, u16 size, u8 *data)
7082{
7083        int i;
7084
7085        MLXSW_REG_ZERO(mcda, payload);
7086        mlxsw_reg_mcda_update_handle_set(payload, update_handle);
7087        mlxsw_reg_mcda_offset_set(payload, offset);
7088        mlxsw_reg_mcda_size_set(payload, size);
7089
7090        for (i = 0; i < size / 4; i++)
7091                mlxsw_reg_mcda_data_set(payload, i, *(u32 *) &data[i * 4]);
7092}
7093
7094/* MPSC - Monitoring Packet Sampling Configuration Register
7095 * --------------------------------------------------------
7096 * MPSC Register is used to configure the Packet Sampling mechanism.
7097 */
7098#define MLXSW_REG_MPSC_ID 0x9080
7099#define MLXSW_REG_MPSC_LEN 0x1C
7100
7101MLXSW_REG_DEFINE(mpsc, MLXSW_REG_MPSC_ID, MLXSW_REG_MPSC_LEN);
7102
7103/* reg_mpsc_local_port
7104 * Local port number
7105 * Not supported for CPU port
7106 * Access: Index
7107 */
7108MLXSW_ITEM32(reg, mpsc, local_port, 0x00, 16, 8);
7109
7110/* reg_mpsc_e
7111 * Enable sampling on port local_port
7112 * Access: RW
7113 */
7114MLXSW_ITEM32(reg, mpsc, e, 0x04, 30, 1);
7115
7116#define MLXSW_REG_MPSC_RATE_MAX 3500000000UL
7117
7118/* reg_mpsc_rate
7119 * Sampling rate = 1 out of rate packets (with randomization around
7120 * the point). Valid values are: 1 to MLXSW_REG_MPSC_RATE_MAX
7121 * Access: RW
7122 */
7123MLXSW_ITEM32(reg, mpsc, rate, 0x08, 0, 32);
7124
7125static inline void mlxsw_reg_mpsc_pack(char *payload, u8 local_port, bool e,
7126                                       u32 rate)
7127{
7128        MLXSW_REG_ZERO(mpsc, payload);
7129        mlxsw_reg_mpsc_local_port_set(payload, local_port);
7130        mlxsw_reg_mpsc_e_set(payload, e);
7131        mlxsw_reg_mpsc_rate_set(payload, rate);
7132}
7133
7134/* MGPC - Monitoring General Purpose Counter Set Register
7135 * The MGPC register retrieves and sets the General Purpose Counter Set.
7136 */
7137#define MLXSW_REG_MGPC_ID 0x9081
7138#define MLXSW_REG_MGPC_LEN 0x18
7139
7140MLXSW_REG_DEFINE(mgpc, MLXSW_REG_MGPC_ID, MLXSW_REG_MGPC_LEN);
7141
7142/* reg_mgpc_counter_set_type
7143 * Counter set type.
7144 * Access: OP
7145 */
7146MLXSW_ITEM32(reg, mgpc, counter_set_type, 0x00, 24, 8);
7147
7148/* reg_mgpc_counter_index
7149 * Counter index.
7150 * Access: Index
7151 */
7152MLXSW_ITEM32(reg, mgpc, counter_index, 0x00, 0, 24);
7153
7154enum mlxsw_reg_mgpc_opcode {
7155        /* Nop */
7156        MLXSW_REG_MGPC_OPCODE_NOP = 0x00,
7157        /* Clear counters */
7158        MLXSW_REG_MGPC_OPCODE_CLEAR = 0x08,
7159};
7160
7161/* reg_mgpc_opcode
7162 * Opcode.
7163 * Access: OP
7164 */
7165MLXSW_ITEM32(reg, mgpc, opcode, 0x04, 28, 4);
7166
7167/* reg_mgpc_byte_counter
7168 * Byte counter value.
7169 * Access: RW
7170 */
7171MLXSW_ITEM64(reg, mgpc, byte_counter, 0x08, 0, 64);
7172
7173/* reg_mgpc_packet_counter
7174 * Packet counter value.
7175 * Access: RW
7176 */
7177MLXSW_ITEM64(reg, mgpc, packet_counter, 0x10, 0, 64);
7178
7179static inline void mlxsw_reg_mgpc_pack(char *payload, u32 counter_index,
7180                                       enum mlxsw_reg_mgpc_opcode opcode,
7181                                       enum mlxsw_reg_flow_counter_set_type set_type)
7182{
7183        MLXSW_REG_ZERO(mgpc, payload);
7184        mlxsw_reg_mgpc_counter_index_set(payload, counter_index);
7185        mlxsw_reg_mgpc_counter_set_type_set(payload, set_type);
7186        mlxsw_reg_mgpc_opcode_set(payload, opcode);
7187}
7188
7189/* TIGCR - Tunneling IPinIP General Configuration Register
7190 * -------------------------------------------------------
7191 * The TIGCR register is used for setting up the IPinIP Tunnel configuration.
7192 */
7193#define MLXSW_REG_TIGCR_ID 0xA801
7194#define MLXSW_REG_TIGCR_LEN 0x10
7195
7196MLXSW_REG_DEFINE(tigcr, MLXSW_REG_TIGCR_ID, MLXSW_REG_TIGCR_LEN);
7197
7198/* reg_tigcr_ipip_ttlc
7199 * For IPinIP Tunnel encapsulation: whether to copy the ttl from the packet
7200 * header.
7201 * Access: RW
7202 */
7203MLXSW_ITEM32(reg, tigcr, ttlc, 0x04, 8, 1);
7204
7205/* reg_tigcr_ipip_ttl_uc
7206 * The TTL for IPinIP Tunnel encapsulation of unicast packets if
7207 * reg_tigcr_ipip_ttlc is unset.
7208 * Access: RW
7209 */
7210MLXSW_ITEM32(reg, tigcr, ttl_uc, 0x04, 0, 8);
7211
7212static inline void mlxsw_reg_tigcr_pack(char *payload, bool ttlc, u8 ttl_uc)
7213{
7214        MLXSW_REG_ZERO(tigcr, payload);
7215        mlxsw_reg_tigcr_ttlc_set(payload, ttlc);
7216        mlxsw_reg_tigcr_ttl_uc_set(payload, ttl_uc);
7217}
7218
7219/* SBPR - Shared Buffer Pools Register
7220 * -----------------------------------
7221 * The SBPR configures and retrieves the shared buffer pools and configuration.
7222 */
7223#define MLXSW_REG_SBPR_ID 0xB001
7224#define MLXSW_REG_SBPR_LEN 0x14
7225
7226MLXSW_REG_DEFINE(sbpr, MLXSW_REG_SBPR_ID, MLXSW_REG_SBPR_LEN);
7227
7228/* shared direstion enum for SBPR, SBCM, SBPM */
7229enum mlxsw_reg_sbxx_dir {
7230        MLXSW_REG_SBXX_DIR_INGRESS,
7231        MLXSW_REG_SBXX_DIR_EGRESS,
7232};
7233
7234/* reg_sbpr_dir
7235 * Direction.
7236 * Access: Index
7237 */
7238MLXSW_ITEM32(reg, sbpr, dir, 0x00, 24, 2);
7239
7240/* reg_sbpr_pool
7241 * Pool index.
7242 * Access: Index
7243 */
7244MLXSW_ITEM32(reg, sbpr, pool, 0x00, 0, 4);
7245
7246/* reg_sbpr_size
7247 * Pool size in buffer cells.
7248 * Access: RW
7249 */
7250MLXSW_ITEM32(reg, sbpr, size, 0x04, 0, 24);
7251
7252enum mlxsw_reg_sbpr_mode {
7253        MLXSW_REG_SBPR_MODE_STATIC,
7254        MLXSW_REG_SBPR_MODE_DYNAMIC,
7255};
7256
7257/* reg_sbpr_mode
7258 * Pool quota calculation mode.
7259 * Access: RW
7260 */
7261MLXSW_ITEM32(reg, sbpr, mode, 0x08, 0, 4);
7262
7263static inline void mlxsw_reg_sbpr_pack(char *payload, u8 pool,
7264                                       enum mlxsw_reg_sbxx_dir dir,
7265                                       enum mlxsw_reg_sbpr_mode mode, u32 size)
7266{
7267        MLXSW_REG_ZERO(sbpr, payload);
7268        mlxsw_reg_sbpr_pool_set(payload, pool);
7269        mlxsw_reg_sbpr_dir_set(payload, dir);
7270        mlxsw_reg_sbpr_mode_set(payload, mode);
7271        mlxsw_reg_sbpr_size_set(payload, size);
7272}
7273
7274/* SBCM - Shared Buffer Class Management Register
7275 * ----------------------------------------------
7276 * The SBCM register configures and retrieves the shared buffer allocation
7277 * and configuration according to Port-PG, including the binding to pool
7278 * and definition of the associated quota.
7279 */
7280#define MLXSW_REG_SBCM_ID 0xB002
7281#define MLXSW_REG_SBCM_LEN 0x28
7282
7283MLXSW_REG_DEFINE(sbcm, MLXSW_REG_SBCM_ID, MLXSW_REG_SBCM_LEN);
7284
7285/* reg_sbcm_local_port
7286 * Local port number.
7287 * For Ingress: excludes CPU port and Router port
7288 * For Egress: excludes IP Router
7289 * Access: Index
7290 */
7291MLXSW_ITEM32(reg, sbcm, local_port, 0x00, 16, 8);
7292
7293/* reg_sbcm_pg_buff
7294 * PG buffer - Port PG (dir=ingress) / traffic class (dir=egress)
7295 * For PG buffer: range is 0..cap_max_pg_buffers - 1
7296 * For traffic class: range is 0..cap_max_tclass - 1
7297 * Note that when traffic class is in MC aware mode then the traffic
7298 * classes which are MC aware cannot be configured.
7299 * Access: Index
7300 */
7301MLXSW_ITEM32(reg, sbcm, pg_buff, 0x00, 8, 6);
7302
7303/* reg_sbcm_dir
7304 * Direction.
7305 * Access: Index
7306 */
7307MLXSW_ITEM32(reg, sbcm, dir, 0x00, 0, 2);
7308
7309/* reg_sbcm_min_buff
7310 * Minimum buffer size for the limiter, in cells.
7311 * Access: RW
7312 */
7313MLXSW_ITEM32(reg, sbcm, min_buff, 0x18, 0, 24);
7314
7315/* shared max_buff limits for dynamic threshold for SBCM, SBPM */
7316#define MLXSW_REG_SBXX_DYN_MAX_BUFF_MIN 1
7317#define MLXSW_REG_SBXX_DYN_MAX_BUFF_MAX 14
7318
7319/* reg_sbcm_max_buff
7320 * When the pool associated to the port-pg/tclass is configured to
7321 * static, Maximum buffer size for the limiter configured in cells.
7322 * When the pool associated to the port-pg/tclass is configured to
7323 * dynamic, the max_buff holds the "alpha" parameter, supporting
7324 * the following values:
7325 * 0: 0
7326 * i: (1/128)*2^(i-1), for i=1..14
7327 * 0xFF: Infinity
7328 * Access: RW
7329 */
7330MLXSW_ITEM32(reg, sbcm, max_buff, 0x1C, 0, 24);
7331
7332/* reg_sbcm_pool
7333 * Association of the port-priority to a pool.
7334 * Access: RW
7335 */
7336MLXSW_ITEM32(reg, sbcm, pool, 0x24, 0, 4);
7337
7338static inline void mlxsw_reg_sbcm_pack(char *payload, u8 local_port, u8 pg_buff,
7339                                       enum mlxsw_reg_sbxx_dir dir,
7340                                       u32 min_buff, u32 max_buff, u8 pool)
7341{
7342        MLXSW_REG_ZERO(sbcm, payload);
7343        mlxsw_reg_sbcm_local_port_set(payload, local_port);
7344        mlxsw_reg_sbcm_pg_buff_set(payload, pg_buff);
7345        mlxsw_reg_sbcm_dir_set(payload, dir);
7346        mlxsw_reg_sbcm_min_buff_set(payload, min_buff);
7347        mlxsw_reg_sbcm_max_buff_set(payload, max_buff);
7348        mlxsw_reg_sbcm_pool_set(payload, pool);
7349}
7350
7351/* SBPM - Shared Buffer Port Management Register
7352 * ---------------------------------------------
7353 * The SBPM register configures and retrieves the shared buffer allocation
7354 * and configuration according to Port-Pool, including the definition
7355 * of the associated quota.
7356 */
7357#define MLXSW_REG_SBPM_ID 0xB003
7358#define MLXSW_REG_SBPM_LEN 0x28
7359
7360MLXSW_REG_DEFINE(sbpm, MLXSW_REG_SBPM_ID, MLXSW_REG_SBPM_LEN);
7361
7362/* reg_sbpm_local_port
7363 * Local port number.
7364 * For Ingress: excludes CPU port and Router port
7365 * For Egress: excludes IP Router
7366 * Access: Index
7367 */
7368MLXSW_ITEM32(reg, sbpm, local_port, 0x00, 16, 8);
7369
7370/* reg_sbpm_pool
7371 * The pool associated to quota counting on the local_port.
7372 * Access: Index
7373 */
7374MLXSW_ITEM32(reg, sbpm, pool, 0x00, 8, 4);
7375
7376/* reg_sbpm_dir
7377 * Direction.
7378 * Access: Index
7379 */
7380MLXSW_ITEM32(reg, sbpm, dir, 0x00, 0, 2);
7381
7382/* reg_sbpm_buff_occupancy
7383 * Current buffer occupancy in cells.
7384 * Access: RO
7385 */
7386MLXSW_ITEM32(reg, sbpm, buff_occupancy, 0x10, 0, 24);
7387
7388/* reg_sbpm_clr
7389 * Clear Max Buffer Occupancy
7390 * When this bit is set, max_buff_occupancy field is cleared (and a
7391 * new max value is tracked from the time the clear was performed).
7392 * Access: OP
7393 */
7394MLXSW_ITEM32(reg, sbpm, clr, 0x14, 31, 1);
7395
7396/* reg_sbpm_max_buff_occupancy
7397 * Maximum value of buffer occupancy in cells monitored. Cleared by
7398 * writing to the clr field.
7399 * Access: RO
7400 */
7401MLXSW_ITEM32(reg, sbpm, max_buff_occupancy, 0x14, 0, 24);
7402
7403/* reg_sbpm_min_buff
7404 * Minimum buffer size for the limiter, in cells.
7405 * Access: RW
7406 */
7407MLXSW_ITEM32(reg, sbpm, min_buff, 0x18, 0, 24);
7408
7409/* reg_sbpm_max_buff
7410 * When the pool associated to the port-pg/tclass is configured to
7411 * static, Maximum buffer size for the limiter configured in cells.
7412 * When the pool associated to the port-pg/tclass is configured to
7413 * dynamic, the max_buff holds the "alpha" parameter, supporting
7414 * the following values:
7415 * 0: 0
7416 * i: (1/128)*2^(i-1), for i=1..14
7417 * 0xFF: Infinity
7418 * Access: RW
7419 */
7420MLXSW_ITEM32(reg, sbpm, max_buff, 0x1C, 0, 24);
7421
7422static inline void mlxsw_reg_sbpm_pack(char *payload, u8 local_port, u8 pool,
7423                                       enum mlxsw_reg_sbxx_dir dir, bool clr,
7424                                       u32 min_buff, u32 max_buff)
7425{
7426        MLXSW_REG_ZERO(sbpm, payload);
7427        mlxsw_reg_sbpm_local_port_set(payload, local_port);
7428        mlxsw_reg_sbpm_pool_set(payload, pool);
7429        mlxsw_reg_sbpm_dir_set(payload, dir);
7430        mlxsw_reg_sbpm_clr_set(payload, clr);
7431        mlxsw_reg_sbpm_min_buff_set(payload, min_buff);
7432        mlxsw_reg_sbpm_max_buff_set(payload, max_buff);
7433}
7434
7435static inline void mlxsw_reg_sbpm_unpack(char *payload, u32 *p_buff_occupancy,
7436                                         u32 *p_max_buff_occupancy)
7437{
7438        *p_buff_occupancy = mlxsw_reg_sbpm_buff_occupancy_get(payload);
7439        *p_max_buff_occupancy = mlxsw_reg_sbpm_max_buff_occupancy_get(payload);
7440}
7441
7442/* SBMM - Shared Buffer Multicast Management Register
7443 * --------------------------------------------------
7444 * The SBMM register configures and retrieves the shared buffer allocation
7445 * and configuration for MC packets according to Switch-Priority, including
7446 * the binding to pool and definition of the associated quota.
7447 */
7448#define MLXSW_REG_SBMM_ID 0xB004
7449#define MLXSW_REG_SBMM_LEN 0x28
7450
7451MLXSW_REG_DEFINE(sbmm, MLXSW_REG_SBMM_ID, MLXSW_REG_SBMM_LEN);
7452
7453/* reg_sbmm_prio
7454 * Switch Priority.
7455 * Access: Index
7456 */
7457MLXSW_ITEM32(reg, sbmm, prio, 0x00, 8, 4);
7458
7459/* reg_sbmm_min_buff
7460 * Minimum buffer size for the limiter, in cells.
7461 * Access: RW
7462 */
7463MLXSW_ITEM32(reg, sbmm, min_buff, 0x18, 0, 24);
7464
7465/* reg_sbmm_max_buff
7466 * When the pool associated to the port-pg/tclass is configured to
7467 * static, Maximum buffer size for the limiter configured in cells.
7468 * When the pool associated to the port-pg/tclass is configured to
7469 * dynamic, the max_buff holds the "alpha" parameter, supporting
7470 * the following values:
7471 * 0: 0
7472 * i: (1/128)*2^(i-1), for i=1..14
7473 * 0xFF: Infinity
7474 * Access: RW
7475 */
7476MLXSW_ITEM32(reg, sbmm, max_buff, 0x1C, 0, 24);
7477
7478/* reg_sbmm_pool
7479 * Association of the port-priority to a pool.
7480 * Access: RW
7481 */
7482MLXSW_ITEM32(reg, sbmm, pool, 0x24, 0, 4);
7483
7484static inline void mlxsw_reg_sbmm_pack(char *payload, u8 prio, u32 min_buff,
7485                                       u32 max_buff, u8 pool)
7486{
7487        MLXSW_REG_ZERO(sbmm, payload);
7488        mlxsw_reg_sbmm_prio_set(payload, prio);
7489        mlxsw_reg_sbmm_min_buff_set(payload, min_buff);
7490        mlxsw_reg_sbmm_max_buff_set(payload, max_buff);
7491        mlxsw_reg_sbmm_pool_set(payload, pool);
7492}
7493
7494/* SBSR - Shared Buffer Status Register
7495 * ------------------------------------
7496 * The SBSR register retrieves the shared buffer occupancy according to
7497 * Port-Pool. Note that this register enables reading a large amount of data.
7498 * It is the user's responsibility to limit the amount of data to ensure the
7499 * response can match the maximum transfer unit. In case the response exceeds
7500 * the maximum transport unit, it will be truncated with no special notice.
7501 */
7502#define MLXSW_REG_SBSR_ID 0xB005
7503#define MLXSW_REG_SBSR_BASE_LEN 0x5C /* base length, without records */
7504#define MLXSW_REG_SBSR_REC_LEN 0x8 /* record length */
7505#define MLXSW_REG_SBSR_REC_MAX_COUNT 120
7506#define MLXSW_REG_SBSR_LEN (MLXSW_REG_SBSR_BASE_LEN +   \
7507                            MLXSW_REG_SBSR_REC_LEN *    \
7508                            MLXSW_REG_SBSR_REC_MAX_COUNT)
7509
7510MLXSW_REG_DEFINE(sbsr, MLXSW_REG_SBSR_ID, MLXSW_REG_SBSR_LEN);
7511
7512/* reg_sbsr_clr
7513 * Clear Max Buffer Occupancy. When this bit is set, the max_buff_occupancy
7514 * field is cleared (and a new max value is tracked from the time the clear
7515 * was performed).
7516 * Access: OP
7517 */
7518MLXSW_ITEM32(reg, sbsr, clr, 0x00, 31, 1);
7519
7520/* reg_sbsr_ingress_port_mask
7521 * Bit vector for all ingress network ports.
7522 * Indicates which of the ports (for which the relevant bit is set)
7523 * are affected by the set operation. Configuration of any other port
7524 * does not change.
7525 * Access: Index
7526 */
7527MLXSW_ITEM_BIT_ARRAY(reg, sbsr, ingress_port_mask, 0x10, 0x20, 1);
7528
7529/* reg_sbsr_pg_buff_mask
7530 * Bit vector for all switch priority groups.
7531 * Indicates which of the priorities (for which the relevant bit is set)
7532 * are affected by the set operation. Configuration of any other priority
7533 * does not change.
7534 * Range is 0..cap_max_pg_buffers - 1
7535 * Access: Index
7536 */
7537MLXSW_ITEM_BIT_ARRAY(reg, sbsr, pg_buff_mask, 0x30, 0x4, 1);
7538
7539/* reg_sbsr_egress_port_mask
7540 * Bit vector for all egress network ports.
7541 * Indicates which of the ports (for which the relevant bit is set)
7542 * are affected by the set operation. Configuration of any other port
7543 * does not change.
7544 * Access: Index
7545 */
7546MLXSW_ITEM_BIT_ARRAY(reg, sbsr, egress_port_mask, 0x34, 0x20, 1);
7547
7548/* reg_sbsr_tclass_mask
7549 * Bit vector for all traffic classes.
7550 * Indicates which of the traffic classes (for which the relevant bit is
7551 * set) are affected by the set operation. Configuration of any other
7552 * traffic class does not change.
7553 * Range is 0..cap_max_tclass - 1
7554 * Access: Index
7555 */
7556MLXSW_ITEM_BIT_ARRAY(reg, sbsr, tclass_mask, 0x54, 0x8, 1);
7557
7558static inline void mlxsw_reg_sbsr_pack(char *payload, bool clr)
7559{
7560        MLXSW_REG_ZERO(sbsr, payload);
7561        mlxsw_reg_sbsr_clr_set(payload, clr);
7562}
7563
7564/* reg_sbsr_rec_buff_occupancy
7565 * Current buffer occupancy in cells.
7566 * Access: RO
7567 */
7568MLXSW_ITEM32_INDEXED(reg, sbsr, rec_buff_occupancy, MLXSW_REG_SBSR_BASE_LEN,
7569                     0, 24, MLXSW_REG_SBSR_REC_LEN, 0x00, false);
7570
7571/* reg_sbsr_rec_max_buff_occupancy
7572 * Maximum value of buffer occupancy in cells monitored. Cleared by
7573 * writing to the clr field.
7574 * Access: RO
7575 */
7576MLXSW_ITEM32_INDEXED(reg, sbsr, rec_max_buff_occupancy, MLXSW_REG_SBSR_BASE_LEN,
7577                     0, 24, MLXSW_REG_SBSR_REC_LEN, 0x04, false);
7578
7579static inline void mlxsw_reg_sbsr_rec_unpack(char *payload, int rec_index,
7580                                             u32 *p_buff_occupancy,
7581                                             u32 *p_max_buff_occupancy)
7582{
7583        *p_buff_occupancy =
7584                mlxsw_reg_sbsr_rec_buff_occupancy_get(payload, rec_index);
7585        *p_max_buff_occupancy =
7586                mlxsw_reg_sbsr_rec_max_buff_occupancy_get(payload, rec_index);
7587}
7588
7589/* SBIB - Shared Buffer Internal Buffer Register
7590 * ---------------------------------------------
7591 * The SBIB register configures per port buffers for internal use. The internal
7592 * buffers consume memory on the port buffers (note that the port buffers are
7593 * used also by PBMC).
7594 *
7595 * For Spectrum this is used for egress mirroring.
7596 */
7597#define MLXSW_REG_SBIB_ID 0xB006
7598#define MLXSW_REG_SBIB_LEN 0x10
7599
7600MLXSW_REG_DEFINE(sbib, MLXSW_REG_SBIB_ID, MLXSW_REG_SBIB_LEN);
7601
7602/* reg_sbib_local_port
7603 * Local port number
7604 * Not supported for CPU port and router port
7605 * Access: Index
7606 */
7607MLXSW_ITEM32(reg, sbib, local_port, 0x00, 16, 8);
7608
7609/* reg_sbib_buff_size
7610 * Units represented in cells
7611 * Allowed range is 0 to (cap_max_headroom_size - 1)
7612 * Default is 0
7613 * Access: RW
7614 */
7615MLXSW_ITEM32(reg, sbib, buff_size, 0x08, 0, 24);
7616
7617static inline void mlxsw_reg_sbib_pack(char *payload, u8 local_port,
7618                                       u32 buff_size)
7619{
7620        MLXSW_REG_ZERO(sbib, payload);
7621        mlxsw_reg_sbib_local_port_set(payload, local_port);
7622        mlxsw_reg_sbib_buff_size_set(payload, buff_size);
7623}
7624
7625static const struct mlxsw_reg_info *mlxsw_reg_infos[] = {
7626        MLXSW_REG(sgcr),
7627        MLXSW_REG(spad),
7628        MLXSW_REG(smid),
7629        MLXSW_REG(sspr),
7630        MLXSW_REG(sfdat),
7631        MLXSW_REG(sfd),
7632        MLXSW_REG(sfn),
7633        MLXSW_REG(spms),
7634        MLXSW_REG(spvid),
7635        MLXSW_REG(spvm),
7636        MLXSW_REG(spaft),
7637        MLXSW_REG(sfgc),
7638        MLXSW_REG(sftr),
7639        MLXSW_REG(sfdf),
7640        MLXSW_REG(sldr),
7641        MLXSW_REG(slcr),
7642        MLXSW_REG(slcor),
7643        MLXSW_REG(spmlr),
7644        MLXSW_REG(svfa),
7645        MLXSW_REG(svpe),
7646        MLXSW_REG(sfmr),
7647        MLXSW_REG(spvmlr),
7648        MLXSW_REG(cwtp),
7649        MLXSW_REG(cwtpm),
7650        MLXSW_REG(ppbt),
7651        MLXSW_REG(pacl),
7652        MLXSW_REG(pagt),
7653        MLXSW_REG(ptar),
7654        MLXSW_REG(ppbs),
7655        MLXSW_REG(prcr),
7656        MLXSW_REG(pefa),
7657        MLXSW_REG(ptce2),
7658        MLXSW_REG(qpcr),
7659        MLXSW_REG(qtct),
7660        MLXSW_REG(qeec),
7661        MLXSW_REG(pmlp),
7662        MLXSW_REG(pmtu),
7663        MLXSW_REG(ptys),
7664        MLXSW_REG(ppad),
7665        MLXSW_REG(paos),
7666        MLXSW_REG(pfcc),
7667        MLXSW_REG(ppcnt),
7668        MLXSW_REG(plib),
7669        MLXSW_REG(pptb),
7670        MLXSW_REG(pbmc),
7671        MLXSW_REG(pspa),
7672        MLXSW_REG(htgt),
7673        MLXSW_REG(hpkt),
7674        MLXSW_REG(rgcr),
7675        MLXSW_REG(ritr),
7676        MLXSW_REG(rtar),
7677        MLXSW_REG(ratr),
7678        MLXSW_REG(rtdp),
7679        MLXSW_REG(rdpm),
7680        MLXSW_REG(ricnt),
7681        MLXSW_REG(rrcr),
7682        MLXSW_REG(ralta),
7683        MLXSW_REG(ralst),
7684        MLXSW_REG(raltb),
7685        MLXSW_REG(ralue),
7686        MLXSW_REG(rauht),
7687        MLXSW_REG(raleu),
7688        MLXSW_REG(rauhtd),
7689        MLXSW_REG(rigr2),
7690        MLXSW_REG(recr2),
7691        MLXSW_REG(rmft2),
7692        MLXSW_REG(mfcr),
7693        MLXSW_REG(mfsc),
7694        MLXSW_REG(mfsm),
7695        MLXSW_REG(mfsl),
7696        MLXSW_REG(mtcap),
7697        MLXSW_REG(mtmp),
7698        MLXSW_REG(mcia),
7699        MLXSW_REG(mpat),
7700        MLXSW_REG(mpar),
7701        MLXSW_REG(mlcr),
7702        MLXSW_REG(mpsc),
7703        MLXSW_REG(mcqi),
7704        MLXSW_REG(mcc),
7705        MLXSW_REG(mcda),
7706        MLXSW_REG(mgpc),
7707        MLXSW_REG(tigcr),
7708        MLXSW_REG(sbpr),
7709        MLXSW_REG(sbcm),
7710        MLXSW_REG(sbpm),
7711        MLXSW_REG(sbmm),
7712        MLXSW_REG(sbsr),
7713        MLXSW_REG(sbib),
7714};
7715
7716static inline const char *mlxsw_reg_id_str(u16 reg_id)
7717{
7718        const struct mlxsw_reg_info *reg_info;
7719        int i;
7720
7721        for (i = 0; i < ARRAY_SIZE(mlxsw_reg_infos); i++) {
7722                reg_info = mlxsw_reg_infos[i];
7723                if (reg_info->id == reg_id)
7724                        return reg_info->name;
7725        }
7726        return "*UNKNOWN*";
7727}
7728
7729/* PUDE - Port Up / Down Event
7730 * ---------------------------
7731 * Reports the operational state change of a port.
7732 */
7733#define MLXSW_REG_PUDE_LEN 0x10
7734
7735/* reg_pude_swid
7736 * Switch partition ID with which to associate the port.
7737 * Access: Index
7738 */
7739MLXSW_ITEM32(reg, pude, swid, 0x00, 24, 8);
7740
7741/* reg_pude_local_port
7742 * Local port number.
7743 * Access: Index
7744 */
7745MLXSW_ITEM32(reg, pude, local_port, 0x00, 16, 8);
7746
7747/* reg_pude_admin_status
7748 * Port administrative state (the desired state).
7749 * 1 - Up.
7750 * 2 - Down.
7751 * 3 - Up once. This means that in case of link failure, the port won't go
7752 *     into polling mode, but will wait to be re-enabled by software.
7753 * 4 - Disabled by system. Can only be set by hardware.
7754 * Access: RO
7755 */
7756MLXSW_ITEM32(reg, pude, admin_status, 0x00, 8, 4);
7757
7758/* reg_pude_oper_status
7759 * Port operatioanl state.
7760 * 1 - Up.
7761 * 2 - Down.
7762 * 3 - Down by port failure. This means that the device will not let the
7763 *     port up again until explicitly specified by software.
7764 * Access: RO
7765 */
7766MLXSW_ITEM32(reg, pude, oper_status, 0x00, 0, 4);
7767
7768#endif
7769