blob: d8eb9ef01646b5e0f8367af3b3615369444ea7e9 [file] [log] [blame]
Jiri Pirko9948a062018-08-09 11:59:11 +03001/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
2/* Copyright (c) 2015-2018 Mellanox Technologies. All rights reserved */
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003
4#ifndef _MLXSW_REG_H
5#define _MLXSW_REG_H
6
Jiri Pirko33907872018-07-18 11:14:37 +03007#include <linux/kernel.h>
Ido Schimmel4ec14b72015-07-29 23:33:48 +02008#include <linux/string.h>
9#include <linux/bitops.h>
10#include <linux/if_vlan.h>
11
12#include "item.h"
13#include "port.h"
14
15struct mlxsw_reg_info {
16 u16 id;
17 u16 len; /* In u8 */
Jiri Pirko8e9658d2016-10-21 16:07:21 +020018 const char *name;
Ido Schimmel4ec14b72015-07-29 23:33:48 +020019};
20
Jiri Pirko21978dc2016-10-21 16:07:20 +020021#define MLXSW_REG_DEFINE(_name, _id, _len) \
22static const struct mlxsw_reg_info mlxsw_reg_##_name = { \
23 .id = _id, \
24 .len = _len, \
Jiri Pirko8e9658d2016-10-21 16:07:21 +020025 .name = #_name, \
Jiri Pirko21978dc2016-10-21 16:07:20 +020026}
27
Ido Schimmel4ec14b72015-07-29 23:33:48 +020028#define MLXSW_REG(type) (&mlxsw_reg_##type)
29#define MLXSW_REG_LEN(type) MLXSW_REG(type)->len
30#define MLXSW_REG_ZERO(type, payload) memset(payload, 0, MLXSW_REG(type)->len)
31
32/* SGCR - Switch General Configuration Register
33 * --------------------------------------------
34 * This register is used for configuration of the switch capabilities.
35 */
36#define MLXSW_REG_SGCR_ID 0x2000
37#define MLXSW_REG_SGCR_LEN 0x10
38
Jiri Pirko21978dc2016-10-21 16:07:20 +020039MLXSW_REG_DEFINE(sgcr, MLXSW_REG_SGCR_ID, MLXSW_REG_SGCR_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +020040
41/* reg_sgcr_llb
42 * Link Local Broadcast (Default=0)
43 * When set, all Link Local packets (224.0.0.X) will be treated as broadcast
44 * packets and ignore the IGMP snooping entries.
45 * Access: RW
46 */
47MLXSW_ITEM32(reg, sgcr, llb, 0x04, 0, 1);
48
49static inline void mlxsw_reg_sgcr_pack(char *payload, bool llb)
50{
51 MLXSW_REG_ZERO(sgcr, payload);
52 mlxsw_reg_sgcr_llb_set(payload, !!llb);
53}
54
55/* SPAD - Switch Physical Address Register
56 * ---------------------------------------
57 * The SPAD register configures the switch physical MAC address.
58 */
59#define MLXSW_REG_SPAD_ID 0x2002
60#define MLXSW_REG_SPAD_LEN 0x10
61
Jiri Pirko21978dc2016-10-21 16:07:20 +020062MLXSW_REG_DEFINE(spad, MLXSW_REG_SPAD_ID, MLXSW_REG_SPAD_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +020063
64/* reg_spad_base_mac
65 * Base MAC address for the switch partitions.
66 * Per switch partition MAC address is equal to:
67 * base_mac + swid
68 * Access: RW
69 */
70MLXSW_ITEM_BUF(reg, spad, base_mac, 0x02, 6);
71
Elad Razfabe5482016-01-10 21:06:25 +010072/* SMID - Switch Multicast ID
73 * --------------------------
74 * The MID record maps from a MID (Multicast ID), which is a unique identifier
75 * of the multicast group within the stacking domain, into a list of local
76 * ports into which the packet is replicated.
77 */
78#define MLXSW_REG_SMID_ID 0x2007
79#define MLXSW_REG_SMID_LEN 0x240
80
Jiri Pirko21978dc2016-10-21 16:07:20 +020081MLXSW_REG_DEFINE(smid, MLXSW_REG_SMID_ID, MLXSW_REG_SMID_LEN);
Elad Razfabe5482016-01-10 21:06:25 +010082
83/* reg_smid_swid
84 * Switch partition ID.
85 * Access: Index
86 */
87MLXSW_ITEM32(reg, smid, swid, 0x00, 24, 8);
88
89/* reg_smid_mid
90 * Multicast identifier - global identifier that represents the multicast group
91 * across all devices.
92 * Access: Index
93 */
94MLXSW_ITEM32(reg, smid, mid, 0x00, 0, 16);
95
96/* reg_smid_port
97 * Local port memebership (1 bit per port).
98 * Access: RW
99 */
100MLXSW_ITEM_BIT_ARRAY(reg, smid, port, 0x20, 0x20, 1);
101
102/* reg_smid_port_mask
103 * Local port mask (1 bit per port).
104 * Access: W
105 */
106MLXSW_ITEM_BIT_ARRAY(reg, smid, port_mask, 0x220, 0x20, 1);
107
108static inline void mlxsw_reg_smid_pack(char *payload, u16 mid,
109 u8 port, bool set)
110{
111 MLXSW_REG_ZERO(smid, payload);
112 mlxsw_reg_smid_swid_set(payload, 0);
113 mlxsw_reg_smid_mid_set(payload, mid);
114 mlxsw_reg_smid_port_set(payload, port, set);
115 mlxsw_reg_smid_port_mask_set(payload, port, 1);
116}
117
Ido Schimmele61011b2015-08-06 16:41:53 +0200118/* SSPR - Switch System Port Record Register
119 * -----------------------------------------
120 * Configures the system port to local port mapping.
121 */
122#define MLXSW_REG_SSPR_ID 0x2008
123#define MLXSW_REG_SSPR_LEN 0x8
124
Jiri Pirko21978dc2016-10-21 16:07:20 +0200125MLXSW_REG_DEFINE(sspr, MLXSW_REG_SSPR_ID, MLXSW_REG_SSPR_LEN);
Ido Schimmele61011b2015-08-06 16:41:53 +0200126
127/* reg_sspr_m
128 * Master - if set, then the record describes the master system port.
129 * This is needed in case a local port is mapped into several system ports
130 * (for multipathing). That number will be reported as the source system
131 * port when packets are forwarded to the CPU. Only one master port is allowed
132 * per local port.
133 *
134 * Note: Must be set for Spectrum.
135 * Access: RW
136 */
137MLXSW_ITEM32(reg, sspr, m, 0x00, 31, 1);
138
139/* reg_sspr_local_port
140 * Local port number.
141 *
142 * Access: RW
143 */
144MLXSW_ITEM32(reg, sspr, local_port, 0x00, 16, 8);
145
146/* reg_sspr_sub_port
147 * Virtual port within the physical port.
148 * Should be set to 0 when virtual ports are not enabled on the port.
149 *
150 * Access: RW
151 */
152MLXSW_ITEM32(reg, sspr, sub_port, 0x00, 8, 8);
153
154/* reg_sspr_system_port
155 * Unique identifier within the stacking domain that represents all the ports
156 * that are available in the system (external ports).
157 *
158 * Currently, only single-ASIC configurations are supported, so we default to
159 * 1:1 mapping between system ports and local ports.
160 * Access: Index
161 */
162MLXSW_ITEM32(reg, sspr, system_port, 0x04, 0, 16);
163
164static inline void mlxsw_reg_sspr_pack(char *payload, u8 local_port)
165{
166 MLXSW_REG_ZERO(sspr, payload);
167 mlxsw_reg_sspr_m_set(payload, 1);
168 mlxsw_reg_sspr_local_port_set(payload, local_port);
169 mlxsw_reg_sspr_sub_port_set(payload, 0);
170 mlxsw_reg_sspr_system_port_set(payload, local_port);
171}
172
Jiri Pirkoe534a56a2015-10-16 14:01:35 +0200173/* SFDAT - Switch Filtering Database Aging Time
174 * --------------------------------------------
175 * Controls the Switch aging time. Aging time is able to be set per Switch
176 * Partition.
177 */
178#define MLXSW_REG_SFDAT_ID 0x2009
179#define MLXSW_REG_SFDAT_LEN 0x8
180
Jiri Pirko21978dc2016-10-21 16:07:20 +0200181MLXSW_REG_DEFINE(sfdat, MLXSW_REG_SFDAT_ID, MLXSW_REG_SFDAT_LEN);
Jiri Pirkoe534a56a2015-10-16 14:01:35 +0200182
183/* reg_sfdat_swid
184 * Switch partition ID.
185 * Access: Index
186 */
187MLXSW_ITEM32(reg, sfdat, swid, 0x00, 24, 8);
188
189/* reg_sfdat_age_time
190 * Aging time in seconds
191 * Min - 10 seconds
192 * Max - 1,000,000 seconds
193 * Default is 300 seconds.
194 * Access: RW
195 */
196MLXSW_ITEM32(reg, sfdat, age_time, 0x04, 0, 20);
197
198static inline void mlxsw_reg_sfdat_pack(char *payload, u32 age_time)
199{
200 MLXSW_REG_ZERO(sfdat, payload);
201 mlxsw_reg_sfdat_swid_set(payload, 0);
202 mlxsw_reg_sfdat_age_time_set(payload, age_time);
203}
204
Jiri Pirko236033b2015-10-16 14:01:28 +0200205/* SFD - Switch Filtering Database
206 * -------------------------------
207 * The following register defines the access to the filtering database.
208 * The register supports querying, adding, removing and modifying the database.
209 * The access is optimized for bulk updates in which case more than one
210 * FDB record is present in the same command.
211 */
212#define MLXSW_REG_SFD_ID 0x200A
213#define MLXSW_REG_SFD_BASE_LEN 0x10 /* base length, without records */
214#define MLXSW_REG_SFD_REC_LEN 0x10 /* record length */
215#define MLXSW_REG_SFD_REC_MAX_COUNT 64
216#define MLXSW_REG_SFD_LEN (MLXSW_REG_SFD_BASE_LEN + \
217 MLXSW_REG_SFD_REC_LEN * MLXSW_REG_SFD_REC_MAX_COUNT)
218
Jiri Pirko21978dc2016-10-21 16:07:20 +0200219MLXSW_REG_DEFINE(sfd, MLXSW_REG_SFD_ID, MLXSW_REG_SFD_LEN);
Jiri Pirko236033b2015-10-16 14:01:28 +0200220
221/* reg_sfd_swid
222 * Switch partition ID for queries. Reserved on Write.
223 * Access: Index
224 */
225MLXSW_ITEM32(reg, sfd, swid, 0x00, 24, 8);
226
227enum mlxsw_reg_sfd_op {
228 /* Dump entire FDB a (process according to record_locator) */
229 MLXSW_REG_SFD_OP_QUERY_DUMP = 0,
230 /* Query records by {MAC, VID/FID} value */
231 MLXSW_REG_SFD_OP_QUERY_QUERY = 1,
232 /* Query and clear activity. Query records by {MAC, VID/FID} value */
233 MLXSW_REG_SFD_OP_QUERY_QUERY_AND_CLEAR_ACTIVITY = 2,
234 /* Test. Response indicates if each of the records could be
235 * added to the FDB.
236 */
237 MLXSW_REG_SFD_OP_WRITE_TEST = 0,
238 /* Add/modify. Aged-out records cannot be added. This command removes
239 * the learning notification of the {MAC, VID/FID}. Response includes
240 * the entries that were added to the FDB.
241 */
242 MLXSW_REG_SFD_OP_WRITE_EDIT = 1,
243 /* Remove record by {MAC, VID/FID}. This command also removes
244 * the learning notification and aged-out notifications
245 * of the {MAC, VID/FID}. The response provides current (pre-removal)
246 * entries as non-aged-out.
247 */
248 MLXSW_REG_SFD_OP_WRITE_REMOVE = 2,
249 /* Remove learned notification by {MAC, VID/FID}. The response provides
250 * the removed learning notification.
251 */
252 MLXSW_REG_SFD_OP_WRITE_REMOVE_NOTIFICATION = 2,
253};
254
255/* reg_sfd_op
256 * Operation.
257 * Access: OP
258 */
259MLXSW_ITEM32(reg, sfd, op, 0x04, 30, 2);
260
261/* reg_sfd_record_locator
262 * Used for querying the FDB. Use record_locator=0 to initiate the
263 * query. When a record is returned, a new record_locator is
264 * returned to be used in the subsequent query.
265 * Reserved for database update.
266 * Access: Index
267 */
268MLXSW_ITEM32(reg, sfd, record_locator, 0x04, 0, 30);
269
270/* reg_sfd_num_rec
271 * Request: Number of records to read/add/modify/remove
272 * Response: Number of records read/added/replaced/removed
273 * See above description for more details.
274 * Ranges 0..64
275 * Access: RW
276 */
277MLXSW_ITEM32(reg, sfd, num_rec, 0x08, 0, 8);
278
279static inline void mlxsw_reg_sfd_pack(char *payload, enum mlxsw_reg_sfd_op op,
280 u32 record_locator)
281{
282 MLXSW_REG_ZERO(sfd, payload);
283 mlxsw_reg_sfd_op_set(payload, op);
284 mlxsw_reg_sfd_record_locator_set(payload, record_locator);
285}
286
287/* reg_sfd_rec_swid
288 * Switch partition ID.
289 * Access: Index
290 */
291MLXSW_ITEM32_INDEXED(reg, sfd, rec_swid, MLXSW_REG_SFD_BASE_LEN, 24, 8,
292 MLXSW_REG_SFD_REC_LEN, 0x00, false);
293
294enum mlxsw_reg_sfd_rec_type {
295 MLXSW_REG_SFD_REC_TYPE_UNICAST = 0x0,
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100296 MLXSW_REG_SFD_REC_TYPE_UNICAST_LAG = 0x1,
Elad Raz5230b252016-01-10 21:06:24 +0100297 MLXSW_REG_SFD_REC_TYPE_MULTICAST = 0x2,
Ido Schimmel09337812018-10-11 07:48:07 +0000298 MLXSW_REG_SFD_REC_TYPE_UNICAST_TUNNEL = 0xC,
Jiri Pirko236033b2015-10-16 14:01:28 +0200299};
300
301/* reg_sfd_rec_type
302 * FDB record type.
303 * Access: RW
304 */
305MLXSW_ITEM32_INDEXED(reg, sfd, rec_type, MLXSW_REG_SFD_BASE_LEN, 20, 4,
306 MLXSW_REG_SFD_REC_LEN, 0x00, false);
307
308enum mlxsw_reg_sfd_rec_policy {
309 /* Replacement disabled, aging disabled. */
310 MLXSW_REG_SFD_REC_POLICY_STATIC_ENTRY = 0,
311 /* (mlag remote): Replacement enabled, aging disabled,
312 * learning notification enabled on this port.
313 */
314 MLXSW_REG_SFD_REC_POLICY_DYNAMIC_ENTRY_MLAG = 1,
315 /* (ingress device): Replacement enabled, aging enabled. */
316 MLXSW_REG_SFD_REC_POLICY_DYNAMIC_ENTRY_INGRESS = 3,
317};
318
319/* reg_sfd_rec_policy
320 * Policy.
321 * Access: RW
322 */
323MLXSW_ITEM32_INDEXED(reg, sfd, rec_policy, MLXSW_REG_SFD_BASE_LEN, 18, 2,
324 MLXSW_REG_SFD_REC_LEN, 0x00, false);
325
326/* reg_sfd_rec_a
327 * Activity. Set for new static entries. Set for static entries if a frame SMAC
328 * lookup hits on the entry.
329 * To clear the a bit, use "query and clear activity" op.
330 * Access: RO
331 */
332MLXSW_ITEM32_INDEXED(reg, sfd, rec_a, MLXSW_REG_SFD_BASE_LEN, 16, 1,
333 MLXSW_REG_SFD_REC_LEN, 0x00, false);
334
335/* reg_sfd_rec_mac
336 * MAC address.
337 * Access: Index
338 */
339MLXSW_ITEM_BUF_INDEXED(reg, sfd, rec_mac, MLXSW_REG_SFD_BASE_LEN, 6,
340 MLXSW_REG_SFD_REC_LEN, 0x02);
341
342enum mlxsw_reg_sfd_rec_action {
343 /* forward */
344 MLXSW_REG_SFD_REC_ACTION_NOP = 0,
345 /* forward and trap, trap_id is FDB_TRAP */
346 MLXSW_REG_SFD_REC_ACTION_MIRROR_TO_CPU = 1,
347 /* trap and do not forward, trap_id is FDB_TRAP */
Ido Schimmeld82d8c02016-07-02 11:00:17 +0200348 MLXSW_REG_SFD_REC_ACTION_TRAP = 2,
349 /* forward to IP router */
350 MLXSW_REG_SFD_REC_ACTION_FORWARD_IP_ROUTER = 3,
Jiri Pirko236033b2015-10-16 14:01:28 +0200351 MLXSW_REG_SFD_REC_ACTION_DISCARD_ERROR = 15,
352};
353
354/* reg_sfd_rec_action
355 * Action to apply on the packet.
356 * Note: Dynamic entries can only be configured with NOP action.
357 * Access: RW
358 */
359MLXSW_ITEM32_INDEXED(reg, sfd, rec_action, MLXSW_REG_SFD_BASE_LEN, 28, 4,
360 MLXSW_REG_SFD_REC_LEN, 0x0C, false);
361
362/* reg_sfd_uc_sub_port
Jiri Pirko4e9ec082015-10-28 10:16:59 +0100363 * VEPA channel on local port.
364 * Valid only if local port is a non-stacking port. Must be 0 if multichannel
365 * VEPA is not enabled.
Jiri Pirko236033b2015-10-16 14:01:28 +0200366 * Access: RW
367 */
368MLXSW_ITEM32_INDEXED(reg, sfd, uc_sub_port, MLXSW_REG_SFD_BASE_LEN, 16, 8,
369 MLXSW_REG_SFD_REC_LEN, 0x08, false);
370
371/* reg_sfd_uc_fid_vid
372 * Filtering ID or VLAN ID
373 * For SwitchX and SwitchX-2:
374 * - Dynamic entries (policy 2,3) use FID
375 * - Static entries (policy 0) use VID
376 * - When independent learning is configured, VID=FID
377 * For Spectrum: use FID for both Dynamic and Static entries.
378 * VID should not be used.
379 * Access: Index
380 */
381MLXSW_ITEM32_INDEXED(reg, sfd, uc_fid_vid, MLXSW_REG_SFD_BASE_LEN, 0, 16,
382 MLXSW_REG_SFD_REC_LEN, 0x08, false);
383
384/* reg_sfd_uc_system_port
385 * Unique port identifier for the final destination of the packet.
386 * Access: RW
387 */
388MLXSW_ITEM32_INDEXED(reg, sfd, uc_system_port, MLXSW_REG_SFD_BASE_LEN, 0, 16,
389 MLXSW_REG_SFD_REC_LEN, 0x0C, false);
390
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100391static inline void mlxsw_reg_sfd_rec_pack(char *payload, int rec_index,
392 enum mlxsw_reg_sfd_rec_type rec_type,
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100393 const char *mac,
394 enum mlxsw_reg_sfd_rec_action action)
Jiri Pirko236033b2015-10-16 14:01:28 +0200395{
396 u8 num_rec = mlxsw_reg_sfd_num_rec_get(payload);
397
398 if (rec_index >= num_rec)
399 mlxsw_reg_sfd_num_rec_set(payload, rec_index + 1);
400 mlxsw_reg_sfd_rec_swid_set(payload, rec_index, 0);
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100401 mlxsw_reg_sfd_rec_type_set(payload, rec_index, rec_type);
Jiri Pirko236033b2015-10-16 14:01:28 +0200402 mlxsw_reg_sfd_rec_mac_memcpy_to(payload, rec_index, mac);
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100403 mlxsw_reg_sfd_rec_action_set(payload, rec_index, action);
404}
405
406static inline void mlxsw_reg_sfd_uc_pack(char *payload, int rec_index,
407 enum mlxsw_reg_sfd_rec_policy policy,
Ido Schimmel9de6a802015-12-15 16:03:40 +0100408 const char *mac, u16 fid_vid,
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100409 enum mlxsw_reg_sfd_rec_action action,
410 u8 local_port)
411{
412 mlxsw_reg_sfd_rec_pack(payload, rec_index,
Elad Raz5230b252016-01-10 21:06:24 +0100413 MLXSW_REG_SFD_REC_TYPE_UNICAST, mac, action);
414 mlxsw_reg_sfd_rec_policy_set(payload, rec_index, policy);
Jiri Pirko236033b2015-10-16 14:01:28 +0200415 mlxsw_reg_sfd_uc_sub_port_set(payload, rec_index, 0);
Ido Schimmel9de6a802015-12-15 16:03:40 +0100416 mlxsw_reg_sfd_uc_fid_vid_set(payload, rec_index, fid_vid);
Jiri Pirko236033b2015-10-16 14:01:28 +0200417 mlxsw_reg_sfd_uc_system_port_set(payload, rec_index, local_port);
418}
419
Jiri Pirko75c09282015-10-28 10:17:01 +0100420static inline void mlxsw_reg_sfd_uc_unpack(char *payload, int rec_index,
Ido Schimmel9de6a802015-12-15 16:03:40 +0100421 char *mac, u16 *p_fid_vid,
Jiri Pirko75c09282015-10-28 10:17:01 +0100422 u8 *p_local_port)
Jiri Pirko236033b2015-10-16 14:01:28 +0200423{
424 mlxsw_reg_sfd_rec_mac_memcpy_from(payload, rec_index, mac);
Ido Schimmel9de6a802015-12-15 16:03:40 +0100425 *p_fid_vid = mlxsw_reg_sfd_uc_fid_vid_get(payload, rec_index);
Jiri Pirko236033b2015-10-16 14:01:28 +0200426 *p_local_port = mlxsw_reg_sfd_uc_system_port_get(payload, rec_index);
427}
428
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100429/* reg_sfd_uc_lag_sub_port
430 * LAG sub port.
431 * Must be 0 if multichannel VEPA is not enabled.
432 * Access: RW
433 */
434MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_sub_port, MLXSW_REG_SFD_BASE_LEN, 16, 8,
435 MLXSW_REG_SFD_REC_LEN, 0x08, false);
436
437/* reg_sfd_uc_lag_fid_vid
438 * Filtering ID or VLAN ID
439 * For SwitchX and SwitchX-2:
440 * - Dynamic entries (policy 2,3) use FID
441 * - Static entries (policy 0) use VID
442 * - When independent learning is configured, VID=FID
443 * For Spectrum: use FID for both Dynamic and Static entries.
444 * VID should not be used.
445 * Access: Index
446 */
447MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_fid_vid, MLXSW_REG_SFD_BASE_LEN, 0, 16,
448 MLXSW_REG_SFD_REC_LEN, 0x08, false);
449
Ido Schimmelafd7f972015-12-15 16:03:45 +0100450/* reg_sfd_uc_lag_lag_vid
451 * Indicates VID in case of vFIDs. Reserved for FIDs.
452 * Access: RW
453 */
454MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_lag_vid, MLXSW_REG_SFD_BASE_LEN, 16, 12,
455 MLXSW_REG_SFD_REC_LEN, 0x0C, false);
456
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100457/* reg_sfd_uc_lag_lag_id
458 * LAG Identifier - pointer into the LAG descriptor table.
459 * Access: RW
460 */
461MLXSW_ITEM32_INDEXED(reg, sfd, uc_lag_lag_id, MLXSW_REG_SFD_BASE_LEN, 0, 10,
462 MLXSW_REG_SFD_REC_LEN, 0x0C, false);
463
464static inline void
465mlxsw_reg_sfd_uc_lag_pack(char *payload, int rec_index,
466 enum mlxsw_reg_sfd_rec_policy policy,
Ido Schimmel9de6a802015-12-15 16:03:40 +0100467 const char *mac, u16 fid_vid,
Ido Schimmelafd7f972015-12-15 16:03:45 +0100468 enum mlxsw_reg_sfd_rec_action action, u16 lag_vid,
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100469 u16 lag_id)
470{
471 mlxsw_reg_sfd_rec_pack(payload, rec_index,
472 MLXSW_REG_SFD_REC_TYPE_UNICAST_LAG,
Elad Raz5230b252016-01-10 21:06:24 +0100473 mac, action);
474 mlxsw_reg_sfd_rec_policy_set(payload, rec_index, policy);
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100475 mlxsw_reg_sfd_uc_lag_sub_port_set(payload, rec_index, 0);
Ido Schimmel9de6a802015-12-15 16:03:40 +0100476 mlxsw_reg_sfd_uc_lag_fid_vid_set(payload, rec_index, fid_vid);
Ido Schimmelafd7f972015-12-15 16:03:45 +0100477 mlxsw_reg_sfd_uc_lag_lag_vid_set(payload, rec_index, lag_vid);
Jiri Pirkoe4bfbae2015-12-03 12:12:26 +0100478 mlxsw_reg_sfd_uc_lag_lag_id_set(payload, rec_index, lag_id);
479}
480
481static inline void mlxsw_reg_sfd_uc_lag_unpack(char *payload, int rec_index,
482 char *mac, u16 *p_vid,
483 u16 *p_lag_id)
484{
485 mlxsw_reg_sfd_rec_mac_memcpy_from(payload, rec_index, mac);
486 *p_vid = mlxsw_reg_sfd_uc_lag_fid_vid_get(payload, rec_index);
487 *p_lag_id = mlxsw_reg_sfd_uc_lag_lag_id_get(payload, rec_index);
488}
489
Elad Raz5230b252016-01-10 21:06:24 +0100490/* reg_sfd_mc_pgi
491 *
492 * Multicast port group index - index into the port group table.
493 * Value 0x1FFF indicates the pgi should point to the MID entry.
494 * For Spectrum this value must be set to 0x1FFF
495 * Access: RW
496 */
497MLXSW_ITEM32_INDEXED(reg, sfd, mc_pgi, MLXSW_REG_SFD_BASE_LEN, 16, 13,
498 MLXSW_REG_SFD_REC_LEN, 0x08, false);
499
500/* reg_sfd_mc_fid_vid
501 *
502 * Filtering ID or VLAN ID
503 * Access: Index
504 */
505MLXSW_ITEM32_INDEXED(reg, sfd, mc_fid_vid, MLXSW_REG_SFD_BASE_LEN, 0, 16,
506 MLXSW_REG_SFD_REC_LEN, 0x08, false);
507
508/* reg_sfd_mc_mid
509 *
510 * Multicast identifier - global identifier that represents the multicast
511 * group across all devices.
512 * Access: RW
513 */
514MLXSW_ITEM32_INDEXED(reg, sfd, mc_mid, MLXSW_REG_SFD_BASE_LEN, 0, 16,
515 MLXSW_REG_SFD_REC_LEN, 0x0C, false);
516
517static inline void
518mlxsw_reg_sfd_mc_pack(char *payload, int rec_index,
519 const char *mac, u16 fid_vid,
520 enum mlxsw_reg_sfd_rec_action action, u16 mid)
521{
522 mlxsw_reg_sfd_rec_pack(payload, rec_index,
523 MLXSW_REG_SFD_REC_TYPE_MULTICAST, mac, action);
524 mlxsw_reg_sfd_mc_pgi_set(payload, rec_index, 0x1FFF);
525 mlxsw_reg_sfd_mc_fid_vid_set(payload, rec_index, fid_vid);
526 mlxsw_reg_sfd_mc_mid_set(payload, rec_index, mid);
527}
528
Ido Schimmel09337812018-10-11 07:48:07 +0000529/* reg_sfd_uc_tunnel_uip_msb
530 * When protocol is IPv4, the most significant byte of the underlay IPv4
531 * destination IP.
532 * When protocol is IPv6, reserved.
533 * Access: RW
534 */
535MLXSW_ITEM32_INDEXED(reg, sfd, uc_tunnel_uip_msb, MLXSW_REG_SFD_BASE_LEN, 24,
536 8, MLXSW_REG_SFD_REC_LEN, 0x08, false);
537
538/* reg_sfd_uc_tunnel_fid
539 * Filtering ID.
540 * Access: Index
541 */
542MLXSW_ITEM32_INDEXED(reg, sfd, uc_tunnel_fid, MLXSW_REG_SFD_BASE_LEN, 0, 16,
543 MLXSW_REG_SFD_REC_LEN, 0x08, false);
544
545enum mlxsw_reg_sfd_uc_tunnel_protocol {
546 MLXSW_REG_SFD_UC_TUNNEL_PROTOCOL_IPV4,
547 MLXSW_REG_SFD_UC_TUNNEL_PROTOCOL_IPV6,
548};
549
550/* reg_sfd_uc_tunnel_protocol
551 * IP protocol.
552 * Access: RW
553 */
554MLXSW_ITEM32_INDEXED(reg, sfd, uc_tunnel_protocol, MLXSW_REG_SFD_BASE_LEN, 27,
555 1, MLXSW_REG_SFD_REC_LEN, 0x0C, false);
556
557/* reg_sfd_uc_tunnel_uip_lsb
558 * When protocol is IPv4, the least significant bytes of the underlay
559 * IPv4 destination IP.
560 * When protocol is IPv6, pointer to the underlay IPv6 destination IP
561 * which is configured by RIPS.
562 * Access: RW
563 */
564MLXSW_ITEM32_INDEXED(reg, sfd, uc_tunnel_uip_lsb, MLXSW_REG_SFD_BASE_LEN, 0,
565 24, MLXSW_REG_SFD_REC_LEN, 0x0C, false);
566
567static inline void
568mlxsw_reg_sfd_uc_tunnel_pack(char *payload, int rec_index,
569 enum mlxsw_reg_sfd_rec_policy policy,
570 const char *mac, u16 fid,
571 enum mlxsw_reg_sfd_rec_action action, u32 uip,
572 enum mlxsw_reg_sfd_uc_tunnel_protocol proto)
573{
574 mlxsw_reg_sfd_rec_pack(payload, rec_index,
575 MLXSW_REG_SFD_REC_TYPE_UNICAST_TUNNEL, mac,
576 action);
577 mlxsw_reg_sfd_rec_policy_set(payload, rec_index, policy);
578 mlxsw_reg_sfd_uc_tunnel_uip_msb_set(payload, rec_index, uip >> 24);
579 mlxsw_reg_sfd_uc_tunnel_uip_lsb_set(payload, rec_index, uip);
580 mlxsw_reg_sfd_uc_tunnel_fid_set(payload, rec_index, fid);
581 mlxsw_reg_sfd_uc_tunnel_protocol_set(payload, rec_index, proto);
582}
583
Jiri Pirkof5d88f52015-10-16 14:01:29 +0200584/* SFN - Switch FDB Notification Register
585 * -------------------------------------------
586 * The switch provides notifications on newly learned FDB entries and
587 * aged out entries. The notifications can be polled by software.
588 */
589#define MLXSW_REG_SFN_ID 0x200B
590#define MLXSW_REG_SFN_BASE_LEN 0x10 /* base length, without records */
591#define MLXSW_REG_SFN_REC_LEN 0x10 /* record length */
592#define MLXSW_REG_SFN_REC_MAX_COUNT 64
593#define MLXSW_REG_SFN_LEN (MLXSW_REG_SFN_BASE_LEN + \
594 MLXSW_REG_SFN_REC_LEN * MLXSW_REG_SFN_REC_MAX_COUNT)
595
Jiri Pirko21978dc2016-10-21 16:07:20 +0200596MLXSW_REG_DEFINE(sfn, MLXSW_REG_SFN_ID, MLXSW_REG_SFN_LEN);
Jiri Pirkof5d88f52015-10-16 14:01:29 +0200597
598/* reg_sfn_swid
599 * Switch partition ID.
600 * Access: Index
601 */
602MLXSW_ITEM32(reg, sfn, swid, 0x00, 24, 8);
603
Ido Schimmel1803e0f2016-08-24 12:00:23 +0200604/* reg_sfn_end
605 * Forces the current session to end.
606 * Access: OP
607 */
608MLXSW_ITEM32(reg, sfn, end, 0x04, 20, 1);
609
Jiri Pirkof5d88f52015-10-16 14:01:29 +0200610/* reg_sfn_num_rec
611 * Request: Number of learned notifications and aged-out notification
612 * records requested.
613 * Response: Number of notification records returned (must be smaller
614 * than or equal to the value requested)
615 * Ranges 0..64
616 * Access: OP
617 */
618MLXSW_ITEM32(reg, sfn, num_rec, 0x04, 0, 8);
619
620static inline void mlxsw_reg_sfn_pack(char *payload)
621{
622 MLXSW_REG_ZERO(sfn, payload);
623 mlxsw_reg_sfn_swid_set(payload, 0);
Ido Schimmel1803e0f2016-08-24 12:00:23 +0200624 mlxsw_reg_sfn_end_set(payload, 1);
Jiri Pirkof5d88f52015-10-16 14:01:29 +0200625 mlxsw_reg_sfn_num_rec_set(payload, MLXSW_REG_SFN_REC_MAX_COUNT);
626}
627
628/* reg_sfn_rec_swid
629 * Switch partition ID.
630 * Access: RO
631 */
632MLXSW_ITEM32_INDEXED(reg, sfn, rec_swid, MLXSW_REG_SFN_BASE_LEN, 24, 8,
633 MLXSW_REG_SFN_REC_LEN, 0x00, false);
634
635enum mlxsw_reg_sfn_rec_type {
636 /* MAC addresses learned on a regular port. */
637 MLXSW_REG_SFN_REC_TYPE_LEARNED_MAC = 0x5,
Jiri Pirko3b715712015-12-03 12:12:27 +0100638 /* MAC addresses learned on a LAG port. */
639 MLXSW_REG_SFN_REC_TYPE_LEARNED_MAC_LAG = 0x6,
640 /* Aged-out MAC address on a regular port. */
Jiri Pirkof5d88f52015-10-16 14:01:29 +0200641 MLXSW_REG_SFN_REC_TYPE_AGED_OUT_MAC = 0x7,
Jiri Pirko3b715712015-12-03 12:12:27 +0100642 /* Aged-out MAC address on a LAG port. */
643 MLXSW_REG_SFN_REC_TYPE_AGED_OUT_MAC_LAG = 0x8,
Ido Schimmel933b1ec2018-11-21 08:02:42 +0000644 /* Learned unicast tunnel record. */
645 MLXSW_REG_SFN_REC_TYPE_LEARNED_UNICAST_TUNNEL = 0xD,
646 /* Aged-out unicast tunnel record. */
647 MLXSW_REG_SFN_REC_TYPE_AGED_OUT_UNICAST_TUNNEL = 0xE,
Jiri Pirkof5d88f52015-10-16 14:01:29 +0200648};
649
650/* reg_sfn_rec_type
651 * Notification record type.
652 * Access: RO
653 */
654MLXSW_ITEM32_INDEXED(reg, sfn, rec_type, MLXSW_REG_SFN_BASE_LEN, 20, 4,
655 MLXSW_REG_SFN_REC_LEN, 0x00, false);
656
657/* reg_sfn_rec_mac
658 * MAC address.
659 * Access: RO
660 */
661MLXSW_ITEM_BUF_INDEXED(reg, sfn, rec_mac, MLXSW_REG_SFN_BASE_LEN, 6,
662 MLXSW_REG_SFN_REC_LEN, 0x02);
663
Jiri Pirko8316f082015-10-28 10:17:00 +0100664/* reg_sfn_mac_sub_port
Jiri Pirkof5d88f52015-10-16 14:01:29 +0200665 * VEPA channel on the local port.
666 * 0 if multichannel VEPA is not enabled.
667 * Access: RO
668 */
669MLXSW_ITEM32_INDEXED(reg, sfn, mac_sub_port, MLXSW_REG_SFN_BASE_LEN, 16, 8,
670 MLXSW_REG_SFN_REC_LEN, 0x08, false);
671
Jiri Pirko8316f082015-10-28 10:17:00 +0100672/* reg_sfn_mac_fid
Jiri Pirkof5d88f52015-10-16 14:01:29 +0200673 * Filtering identifier.
674 * Access: RO
675 */
676MLXSW_ITEM32_INDEXED(reg, sfn, mac_fid, MLXSW_REG_SFN_BASE_LEN, 0, 16,
677 MLXSW_REG_SFN_REC_LEN, 0x08, false);
678
Jiri Pirko8316f082015-10-28 10:17:00 +0100679/* reg_sfn_mac_system_port
Jiri Pirkof5d88f52015-10-16 14:01:29 +0200680 * Unique port identifier for the final destination of the packet.
681 * Access: RO
682 */
683MLXSW_ITEM32_INDEXED(reg, sfn, mac_system_port, MLXSW_REG_SFN_BASE_LEN, 0, 16,
684 MLXSW_REG_SFN_REC_LEN, 0x0C, false);
685
686static inline void mlxsw_reg_sfn_mac_unpack(char *payload, int rec_index,
687 char *mac, u16 *p_vid,
688 u8 *p_local_port)
689{
690 mlxsw_reg_sfn_rec_mac_memcpy_from(payload, rec_index, mac);
691 *p_vid = mlxsw_reg_sfn_mac_fid_get(payload, rec_index);
692 *p_local_port = mlxsw_reg_sfn_mac_system_port_get(payload, rec_index);
693}
694
Jiri Pirko3b715712015-12-03 12:12:27 +0100695/* reg_sfn_mac_lag_lag_id
696 * LAG ID (pointer into the LAG descriptor table).
697 * Access: RO
698 */
699MLXSW_ITEM32_INDEXED(reg, sfn, mac_lag_lag_id, MLXSW_REG_SFN_BASE_LEN, 0, 10,
700 MLXSW_REG_SFN_REC_LEN, 0x0C, false);
701
702static inline void mlxsw_reg_sfn_mac_lag_unpack(char *payload, int rec_index,
703 char *mac, u16 *p_vid,
704 u16 *p_lag_id)
705{
706 mlxsw_reg_sfn_rec_mac_memcpy_from(payload, rec_index, mac);
707 *p_vid = mlxsw_reg_sfn_mac_fid_get(payload, rec_index);
708 *p_lag_id = mlxsw_reg_sfn_mac_lag_lag_id_get(payload, rec_index);
709}
710
Ido Schimmel933b1ec2018-11-21 08:02:42 +0000711/* reg_sfn_uc_tunnel_uip_msb
712 * When protocol is IPv4, the most significant byte of the underlay IPv4
713 * address of the remote VTEP.
714 * When protocol is IPv6, reserved.
715 * Access: RO
716 */
717MLXSW_ITEM32_INDEXED(reg, sfn, uc_tunnel_uip_msb, MLXSW_REG_SFN_BASE_LEN, 24,
718 8, MLXSW_REG_SFN_REC_LEN, 0x08, false);
719
720enum mlxsw_reg_sfn_uc_tunnel_protocol {
721 MLXSW_REG_SFN_UC_TUNNEL_PROTOCOL_IPV4,
722 MLXSW_REG_SFN_UC_TUNNEL_PROTOCOL_IPV6,
723};
724
725/* reg_sfn_uc_tunnel_protocol
726 * IP protocol.
727 * Access: RO
728 */
729MLXSW_ITEM32_INDEXED(reg, sfn, uc_tunnel_protocol, MLXSW_REG_SFN_BASE_LEN, 27,
730 1, MLXSW_REG_SFN_REC_LEN, 0x0C, false);
731
732/* reg_sfn_uc_tunnel_uip_lsb
733 * When protocol is IPv4, the least significant bytes of the underlay
734 * IPv4 address of the remote VTEP.
735 * When protocol is IPv6, ipv6_id to be queried from TNIPSD.
736 * Access: RO
737 */
738MLXSW_ITEM32_INDEXED(reg, sfn, uc_tunnel_uip_lsb, MLXSW_REG_SFN_BASE_LEN, 0,
739 24, MLXSW_REG_SFN_REC_LEN, 0x0C, false);
740
741enum mlxsw_reg_sfn_tunnel_port {
742 MLXSW_REG_SFN_TUNNEL_PORT_NVE,
743 MLXSW_REG_SFN_TUNNEL_PORT_VPLS,
744 MLXSW_REG_SFN_TUNNEL_FLEX_TUNNEL0,
745 MLXSW_REG_SFN_TUNNEL_FLEX_TUNNEL1,
746};
747
748/* reg_sfn_uc_tunnel_port
749 * Tunnel port.
750 * Reserved on Spectrum.
751 * Access: RO
752 */
753MLXSW_ITEM32_INDEXED(reg, sfn, tunnel_port, MLXSW_REG_SFN_BASE_LEN, 0, 4,
754 MLXSW_REG_SFN_REC_LEN, 0x10, false);
755
756static inline void
757mlxsw_reg_sfn_uc_tunnel_unpack(char *payload, int rec_index, char *mac,
758 u16 *p_fid, u32 *p_uip,
759 enum mlxsw_reg_sfn_uc_tunnel_protocol *p_proto)
760{
761 u32 uip_msb, uip_lsb;
762
763 mlxsw_reg_sfn_rec_mac_memcpy_from(payload, rec_index, mac);
764 *p_fid = mlxsw_reg_sfn_mac_fid_get(payload, rec_index);
765 uip_msb = mlxsw_reg_sfn_uc_tunnel_uip_msb_get(payload, rec_index);
766 uip_lsb = mlxsw_reg_sfn_uc_tunnel_uip_lsb_get(payload, rec_index);
767 *p_uip = uip_msb << 24 | uip_lsb;
768 *p_proto = mlxsw_reg_sfn_uc_tunnel_protocol_get(payload, rec_index);
769}
770
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200771/* SPMS - Switch Port MSTP/RSTP State Register
772 * -------------------------------------------
773 * Configures the spanning tree state of a physical port.
774 */
Jiri Pirko3f0effd12015-10-15 17:43:23 +0200775#define MLXSW_REG_SPMS_ID 0x200D
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200776#define MLXSW_REG_SPMS_LEN 0x404
777
Jiri Pirko21978dc2016-10-21 16:07:20 +0200778MLXSW_REG_DEFINE(spms, MLXSW_REG_SPMS_ID, MLXSW_REG_SPMS_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200779
780/* reg_spms_local_port
781 * Local port number.
782 * Access: Index
783 */
784MLXSW_ITEM32(reg, spms, local_port, 0x00, 16, 8);
785
786enum mlxsw_reg_spms_state {
787 MLXSW_REG_SPMS_STATE_NO_CHANGE,
788 MLXSW_REG_SPMS_STATE_DISCARDING,
789 MLXSW_REG_SPMS_STATE_LEARNING,
790 MLXSW_REG_SPMS_STATE_FORWARDING,
791};
792
793/* reg_spms_state
794 * Spanning tree state of each VLAN ID (VID) of the local port.
795 * 0 - Do not change spanning tree state (used only when writing).
796 * 1 - Discarding. No learning or forwarding to/from this port (default).
797 * 2 - Learning. Port is learning, but not forwarding.
798 * 3 - Forwarding. Port is learning and forwarding.
799 * Access: RW
800 */
801MLXSW_ITEM_BIT_ARRAY(reg, spms, state, 0x04, 0x400, 2);
802
Jiri Pirkoebb79632015-10-15 17:43:26 +0200803static inline void mlxsw_reg_spms_pack(char *payload, u8 local_port)
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200804{
805 MLXSW_REG_ZERO(spms, payload);
806 mlxsw_reg_spms_local_port_set(payload, local_port);
Jiri Pirkoebb79632015-10-15 17:43:26 +0200807}
808
809static inline void mlxsw_reg_spms_vid_pack(char *payload, u16 vid,
810 enum mlxsw_reg_spms_state state)
811{
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200812 mlxsw_reg_spms_state_set(payload, vid, state);
813}
814
Elad Razb2e345f2015-10-16 14:01:30 +0200815/* SPVID - Switch Port VID
816 * -----------------------
817 * The switch port VID configures the default VID for a port.
818 */
819#define MLXSW_REG_SPVID_ID 0x200E
820#define MLXSW_REG_SPVID_LEN 0x08
821
Jiri Pirko21978dc2016-10-21 16:07:20 +0200822MLXSW_REG_DEFINE(spvid, MLXSW_REG_SPVID_ID, MLXSW_REG_SPVID_LEN);
Elad Razb2e345f2015-10-16 14:01:30 +0200823
824/* reg_spvid_local_port
825 * Local port number.
826 * Access: Index
827 */
828MLXSW_ITEM32(reg, spvid, local_port, 0x00, 16, 8);
829
830/* reg_spvid_sub_port
831 * Virtual port within the physical port.
832 * Should be set to 0 when virtual ports are not enabled on the port.
833 * Access: Index
834 */
835MLXSW_ITEM32(reg, spvid, sub_port, 0x00, 8, 8);
836
837/* reg_spvid_pvid
838 * Port default VID
839 * Access: RW
840 */
841MLXSW_ITEM32(reg, spvid, pvid, 0x04, 0, 12);
842
843static inline void mlxsw_reg_spvid_pack(char *payload, u8 local_port, u16 pvid)
844{
845 MLXSW_REG_ZERO(spvid, payload);
846 mlxsw_reg_spvid_local_port_set(payload, local_port);
847 mlxsw_reg_spvid_pvid_set(payload, pvid);
848}
849
850/* SPVM - Switch Port VLAN Membership
851 * ----------------------------------
852 * The Switch Port VLAN Membership register configures the VLAN membership
853 * of a port in a VLAN denoted by VID. VLAN membership is managed per
854 * virtual port. The register can be used to add and remove VID(s) from a port.
855 */
856#define MLXSW_REG_SPVM_ID 0x200F
857#define MLXSW_REG_SPVM_BASE_LEN 0x04 /* base length, without records */
858#define MLXSW_REG_SPVM_REC_LEN 0x04 /* record length */
Jiri Pirkof004ec02017-03-14 14:00:00 +0100859#define MLXSW_REG_SPVM_REC_MAX_COUNT 255
Elad Razb2e345f2015-10-16 14:01:30 +0200860#define MLXSW_REG_SPVM_LEN (MLXSW_REG_SPVM_BASE_LEN + \
861 MLXSW_REG_SPVM_REC_LEN * MLXSW_REG_SPVM_REC_MAX_COUNT)
862
Jiri Pirko21978dc2016-10-21 16:07:20 +0200863MLXSW_REG_DEFINE(spvm, MLXSW_REG_SPVM_ID, MLXSW_REG_SPVM_LEN);
Elad Razb2e345f2015-10-16 14:01:30 +0200864
865/* reg_spvm_pt
866 * Priority tagged. If this bit is set, packets forwarded to the port with
867 * untagged VLAN membership (u bit is set) will be tagged with priority tag
868 * (VID=0)
869 * Access: RW
870 */
871MLXSW_ITEM32(reg, spvm, pt, 0x00, 31, 1);
872
873/* reg_spvm_pte
874 * Priority Tagged Update Enable. On Write operations, if this bit is cleared,
875 * the pt bit will NOT be updated. To update the pt bit, pte must be set.
876 * Access: WO
877 */
878MLXSW_ITEM32(reg, spvm, pte, 0x00, 30, 1);
879
880/* reg_spvm_local_port
881 * Local port number.
882 * Access: Index
883 */
884MLXSW_ITEM32(reg, spvm, local_port, 0x00, 16, 8);
885
886/* reg_spvm_sub_port
887 * Virtual port within the physical port.
888 * Should be set to 0 when virtual ports are not enabled on the port.
889 * Access: Index
890 */
891MLXSW_ITEM32(reg, spvm, sub_port, 0x00, 8, 8);
892
893/* reg_spvm_num_rec
894 * Number of records to update. Each record contains: i, e, u, vid.
895 * Access: OP
896 */
897MLXSW_ITEM32(reg, spvm, num_rec, 0x00, 0, 8);
898
899/* reg_spvm_rec_i
900 * Ingress membership in VLAN ID.
901 * Access: Index
902 */
903MLXSW_ITEM32_INDEXED(reg, spvm, rec_i,
904 MLXSW_REG_SPVM_BASE_LEN, 14, 1,
905 MLXSW_REG_SPVM_REC_LEN, 0, false);
906
907/* reg_spvm_rec_e
908 * Egress membership in VLAN ID.
909 * Access: Index
910 */
911MLXSW_ITEM32_INDEXED(reg, spvm, rec_e,
912 MLXSW_REG_SPVM_BASE_LEN, 13, 1,
913 MLXSW_REG_SPVM_REC_LEN, 0, false);
914
915/* reg_spvm_rec_u
916 * Untagged - port is an untagged member - egress transmission uses untagged
917 * frames on VID<n>
918 * Access: Index
919 */
920MLXSW_ITEM32_INDEXED(reg, spvm, rec_u,
921 MLXSW_REG_SPVM_BASE_LEN, 12, 1,
922 MLXSW_REG_SPVM_REC_LEN, 0, false);
923
924/* reg_spvm_rec_vid
925 * Egress membership in VLAN ID.
926 * Access: Index
927 */
928MLXSW_ITEM32_INDEXED(reg, spvm, rec_vid,
929 MLXSW_REG_SPVM_BASE_LEN, 0, 12,
930 MLXSW_REG_SPVM_REC_LEN, 0, false);
931
932static inline void mlxsw_reg_spvm_pack(char *payload, u8 local_port,
933 u16 vid_begin, u16 vid_end,
934 bool is_member, bool untagged)
935{
936 int size = vid_end - vid_begin + 1;
937 int i;
938
939 MLXSW_REG_ZERO(spvm, payload);
940 mlxsw_reg_spvm_local_port_set(payload, local_port);
941 mlxsw_reg_spvm_num_rec_set(payload, size);
942
943 for (i = 0; i < size; i++) {
944 mlxsw_reg_spvm_rec_i_set(payload, i, is_member);
945 mlxsw_reg_spvm_rec_e_set(payload, i, is_member);
946 mlxsw_reg_spvm_rec_u_set(payload, i, untagged);
947 mlxsw_reg_spvm_rec_vid_set(payload, i, vid_begin + i);
948 }
949}
950
Ido Schimmel148f4722016-02-18 11:30:01 +0100951/* SPAFT - Switch Port Acceptable Frame Types
952 * ------------------------------------------
953 * The Switch Port Acceptable Frame Types register configures the frame
954 * admittance of the port.
955 */
956#define MLXSW_REG_SPAFT_ID 0x2010
957#define MLXSW_REG_SPAFT_LEN 0x08
958
Jiri Pirko21978dc2016-10-21 16:07:20 +0200959MLXSW_REG_DEFINE(spaft, MLXSW_REG_SPAFT_ID, MLXSW_REG_SPAFT_LEN);
Ido Schimmel148f4722016-02-18 11:30:01 +0100960
961/* reg_spaft_local_port
962 * Local port number.
963 * Access: Index
964 *
965 * Note: CPU port is not supported (all tag types are allowed).
966 */
967MLXSW_ITEM32(reg, spaft, local_port, 0x00, 16, 8);
968
969/* reg_spaft_sub_port
970 * Virtual port within the physical port.
971 * Should be set to 0 when virtual ports are not enabled on the port.
972 * Access: RW
973 */
974MLXSW_ITEM32(reg, spaft, sub_port, 0x00, 8, 8);
975
976/* reg_spaft_allow_untagged
977 * When set, untagged frames on the ingress are allowed (default).
978 * Access: RW
979 */
980MLXSW_ITEM32(reg, spaft, allow_untagged, 0x04, 31, 1);
981
982/* reg_spaft_allow_prio_tagged
983 * When set, priority tagged frames on the ingress are allowed (default).
984 * Access: RW
985 */
986MLXSW_ITEM32(reg, spaft, allow_prio_tagged, 0x04, 30, 1);
987
988/* reg_spaft_allow_tagged
989 * When set, tagged frames on the ingress are allowed (default).
990 * Access: RW
991 */
992MLXSW_ITEM32(reg, spaft, allow_tagged, 0x04, 29, 1);
993
994static inline void mlxsw_reg_spaft_pack(char *payload, u8 local_port,
995 bool allow_untagged)
996{
997 MLXSW_REG_ZERO(spaft, payload);
998 mlxsw_reg_spaft_local_port_set(payload, local_port);
999 mlxsw_reg_spaft_allow_untagged_set(payload, allow_untagged);
1000 mlxsw_reg_spaft_allow_prio_tagged_set(payload, true);
1001 mlxsw_reg_spaft_allow_tagged_set(payload, true);
1002}
1003
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001004/* SFGC - Switch Flooding Group Configuration
1005 * ------------------------------------------
1006 * The following register controls the association of flooding tables and MIDs
1007 * to packet types used for flooding.
1008 */
Jiri Pirko36b78e82015-10-15 17:43:24 +02001009#define MLXSW_REG_SFGC_ID 0x2011
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001010#define MLXSW_REG_SFGC_LEN 0x10
1011
Jiri Pirko21978dc2016-10-21 16:07:20 +02001012MLXSW_REG_DEFINE(sfgc, MLXSW_REG_SFGC_ID, MLXSW_REG_SFGC_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001013
1014enum mlxsw_reg_sfgc_type {
Ido Schimmelfa6ad052015-10-15 17:43:25 +02001015 MLXSW_REG_SFGC_TYPE_BROADCAST,
1016 MLXSW_REG_SFGC_TYPE_UNKNOWN_UNICAST,
1017 MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_IPV4,
1018 MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_IPV6,
1019 MLXSW_REG_SFGC_TYPE_RESERVED,
1020 MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_NON_IP,
1021 MLXSW_REG_SFGC_TYPE_IPV4_LINK_LOCAL,
1022 MLXSW_REG_SFGC_TYPE_IPV6_ALL_HOST,
1023 MLXSW_REG_SFGC_TYPE_MAX,
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001024};
1025
1026/* reg_sfgc_type
1027 * The traffic type to reach the flooding table.
1028 * Access: Index
1029 */
1030MLXSW_ITEM32(reg, sfgc, type, 0x00, 0, 4);
1031
1032enum mlxsw_reg_sfgc_bridge_type {
1033 MLXSW_REG_SFGC_BRIDGE_TYPE_1Q_FID = 0,
1034 MLXSW_REG_SFGC_BRIDGE_TYPE_VFID = 1,
1035};
1036
1037/* reg_sfgc_bridge_type
1038 * Access: Index
1039 *
1040 * Note: SwitchX-2 only supports 802.1Q mode.
1041 */
1042MLXSW_ITEM32(reg, sfgc, bridge_type, 0x04, 24, 3);
1043
1044enum mlxsw_flood_table_type {
1045 MLXSW_REG_SFGC_TABLE_TYPE_VID = 1,
1046 MLXSW_REG_SFGC_TABLE_TYPE_SINGLE = 2,
1047 MLXSW_REG_SFGC_TABLE_TYPE_ANY = 0,
Ido Schimmelda0abcf2017-06-04 16:53:39 +02001048 MLXSW_REG_SFGC_TABLE_TYPE_FID_OFFSET = 3,
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001049 MLXSW_REG_SFGC_TABLE_TYPE_FID = 4,
1050};
1051
1052/* reg_sfgc_table_type
1053 * See mlxsw_flood_table_type
1054 * Access: RW
1055 *
1056 * Note: FID offset and FID types are not supported in SwitchX-2.
1057 */
1058MLXSW_ITEM32(reg, sfgc, table_type, 0x04, 16, 3);
1059
1060/* reg_sfgc_flood_table
1061 * Flooding table index to associate with the specific type on the specific
1062 * switch partition.
1063 * Access: RW
1064 */
1065MLXSW_ITEM32(reg, sfgc, flood_table, 0x04, 0, 6);
1066
1067/* reg_sfgc_mid
1068 * The multicast ID for the swid. Not supported for Spectrum
1069 * Access: RW
1070 */
1071MLXSW_ITEM32(reg, sfgc, mid, 0x08, 0, 16);
1072
1073/* reg_sfgc_counter_set_type
1074 * Counter Set Type for flow counters.
1075 * Access: RW
1076 */
1077MLXSW_ITEM32(reg, sfgc, counter_set_type, 0x0C, 24, 8);
1078
1079/* reg_sfgc_counter_index
1080 * Counter Index for flow counters.
1081 * Access: RW
1082 */
1083MLXSW_ITEM32(reg, sfgc, counter_index, 0x0C, 0, 24);
1084
1085static inline void
1086mlxsw_reg_sfgc_pack(char *payload, enum mlxsw_reg_sfgc_type type,
1087 enum mlxsw_reg_sfgc_bridge_type bridge_type,
1088 enum mlxsw_flood_table_type table_type,
1089 unsigned int flood_table)
1090{
1091 MLXSW_REG_ZERO(sfgc, payload);
1092 mlxsw_reg_sfgc_type_set(payload, type);
1093 mlxsw_reg_sfgc_bridge_type_set(payload, bridge_type);
1094 mlxsw_reg_sfgc_table_type_set(payload, table_type);
1095 mlxsw_reg_sfgc_flood_table_set(payload, flood_table);
1096 mlxsw_reg_sfgc_mid_set(payload, MLXSW_PORT_MID);
1097}
1098
1099/* SFTR - Switch Flooding Table Register
1100 * -------------------------------------
1101 * The switch flooding table is used for flooding packet replication. The table
1102 * defines a bit mask of ports for packet replication.
1103 */
1104#define MLXSW_REG_SFTR_ID 0x2012
1105#define MLXSW_REG_SFTR_LEN 0x420
1106
Jiri Pirko21978dc2016-10-21 16:07:20 +02001107MLXSW_REG_DEFINE(sftr, MLXSW_REG_SFTR_ID, MLXSW_REG_SFTR_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001108
1109/* reg_sftr_swid
1110 * Switch partition ID with which to associate the port.
1111 * Access: Index
1112 */
1113MLXSW_ITEM32(reg, sftr, swid, 0x00, 24, 8);
1114
1115/* reg_sftr_flood_table
1116 * Flooding table index to associate with the specific type on the specific
1117 * switch partition.
1118 * Access: Index
1119 */
1120MLXSW_ITEM32(reg, sftr, flood_table, 0x00, 16, 6);
1121
1122/* reg_sftr_index
1123 * Index. Used as an index into the Flooding Table in case the table is
1124 * configured to use VID / FID or FID Offset.
1125 * Access: Index
1126 */
1127MLXSW_ITEM32(reg, sftr, index, 0x00, 0, 16);
1128
1129/* reg_sftr_table_type
1130 * See mlxsw_flood_table_type
1131 * Access: RW
1132 */
1133MLXSW_ITEM32(reg, sftr, table_type, 0x04, 16, 3);
1134
1135/* reg_sftr_range
1136 * Range of entries to update
1137 * Access: Index
1138 */
1139MLXSW_ITEM32(reg, sftr, range, 0x04, 0, 16);
1140
1141/* reg_sftr_port
1142 * Local port membership (1 bit per port).
1143 * Access: RW
1144 */
1145MLXSW_ITEM_BIT_ARRAY(reg, sftr, port, 0x20, 0x20, 1);
1146
1147/* reg_sftr_cpu_port_mask
1148 * CPU port mask (1 bit per port).
1149 * Access: W
1150 */
1151MLXSW_ITEM_BIT_ARRAY(reg, sftr, port_mask, 0x220, 0x20, 1);
1152
1153static inline void mlxsw_reg_sftr_pack(char *payload,
1154 unsigned int flood_table,
1155 unsigned int index,
1156 enum mlxsw_flood_table_type table_type,
Ido Schimmelbc2055f2015-10-16 14:01:23 +02001157 unsigned int range, u8 port, bool set)
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001158{
1159 MLXSW_REG_ZERO(sftr, payload);
1160 mlxsw_reg_sftr_swid_set(payload, 0);
1161 mlxsw_reg_sftr_flood_table_set(payload, flood_table);
1162 mlxsw_reg_sftr_index_set(payload, index);
1163 mlxsw_reg_sftr_table_type_set(payload, table_type);
1164 mlxsw_reg_sftr_range_set(payload, range);
Ido Schimmelbc2055f2015-10-16 14:01:23 +02001165 mlxsw_reg_sftr_port_set(payload, port, set);
1166 mlxsw_reg_sftr_port_mask_set(payload, port, 1);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001167}
1168
Ido Schimmel41933272016-01-27 15:20:17 +01001169/* SFDF - Switch Filtering DB Flush
1170 * --------------------------------
1171 * The switch filtering DB flush register is used to flush the FDB.
1172 * Note that FDB notifications are flushed as well.
1173 */
1174#define MLXSW_REG_SFDF_ID 0x2013
1175#define MLXSW_REG_SFDF_LEN 0x14
1176
Jiri Pirko21978dc2016-10-21 16:07:20 +02001177MLXSW_REG_DEFINE(sfdf, MLXSW_REG_SFDF_ID, MLXSW_REG_SFDF_LEN);
Ido Schimmel41933272016-01-27 15:20:17 +01001178
1179/* reg_sfdf_swid
1180 * Switch partition ID.
1181 * Access: Index
1182 */
1183MLXSW_ITEM32(reg, sfdf, swid, 0x00, 24, 8);
1184
1185enum mlxsw_reg_sfdf_flush_type {
1186 MLXSW_REG_SFDF_FLUSH_PER_SWID,
1187 MLXSW_REG_SFDF_FLUSH_PER_FID,
1188 MLXSW_REG_SFDF_FLUSH_PER_PORT,
1189 MLXSW_REG_SFDF_FLUSH_PER_PORT_AND_FID,
1190 MLXSW_REG_SFDF_FLUSH_PER_LAG,
1191 MLXSW_REG_SFDF_FLUSH_PER_LAG_AND_FID,
Ido Schimmela682a302018-10-11 07:47:56 +00001192 MLXSW_REG_SFDF_FLUSH_PER_NVE,
1193 MLXSW_REG_SFDF_FLUSH_PER_NVE_AND_FID,
Ido Schimmel41933272016-01-27 15:20:17 +01001194};
1195
1196/* reg_sfdf_flush_type
1197 * Flush type.
1198 * 0 - All SWID dynamic entries are flushed.
1199 * 1 - All FID dynamic entries are flushed.
1200 * 2 - All dynamic entries pointing to port are flushed.
1201 * 3 - All FID dynamic entries pointing to port are flushed.
1202 * 4 - All dynamic entries pointing to LAG are flushed.
1203 * 5 - All FID dynamic entries pointing to LAG are flushed.
Ido Schimmela682a302018-10-11 07:47:56 +00001204 * 6 - All entries of type "Unicast Tunnel" or "Multicast Tunnel" are
1205 * flushed.
1206 * 7 - All entries of type "Unicast Tunnel" or "Multicast Tunnel" are
1207 * flushed, per FID.
Ido Schimmel41933272016-01-27 15:20:17 +01001208 * Access: RW
1209 */
1210MLXSW_ITEM32(reg, sfdf, flush_type, 0x04, 28, 4);
1211
1212/* reg_sfdf_flush_static
1213 * Static.
1214 * 0 - Flush only dynamic entries.
1215 * 1 - Flush both dynamic and static entries.
1216 * Access: RW
1217 */
1218MLXSW_ITEM32(reg, sfdf, flush_static, 0x04, 24, 1);
1219
1220static inline void mlxsw_reg_sfdf_pack(char *payload,
1221 enum mlxsw_reg_sfdf_flush_type type)
1222{
1223 MLXSW_REG_ZERO(sfdf, payload);
1224 mlxsw_reg_sfdf_flush_type_set(payload, type);
1225 mlxsw_reg_sfdf_flush_static_set(payload, true);
1226}
1227
1228/* reg_sfdf_fid
1229 * FID to flush.
1230 * Access: RW
1231 */
1232MLXSW_ITEM32(reg, sfdf, fid, 0x0C, 0, 16);
1233
1234/* reg_sfdf_system_port
1235 * Port to flush.
1236 * Access: RW
1237 */
1238MLXSW_ITEM32(reg, sfdf, system_port, 0x0C, 0, 16);
1239
1240/* reg_sfdf_port_fid_system_port
1241 * Port to flush, pointed to by FID.
1242 * Access: RW
1243 */
1244MLXSW_ITEM32(reg, sfdf, port_fid_system_port, 0x08, 0, 16);
1245
1246/* reg_sfdf_lag_id
1247 * LAG ID to flush.
1248 * Access: RW
1249 */
1250MLXSW_ITEM32(reg, sfdf, lag_id, 0x0C, 0, 10);
1251
1252/* reg_sfdf_lag_fid_lag_id
1253 * LAG ID to flush, pointed to by FID.
1254 * Access: RW
1255 */
1256MLXSW_ITEM32(reg, sfdf, lag_fid_lag_id, 0x08, 0, 10);
1257
Jiri Pirkod1d40be2015-12-03 12:12:25 +01001258/* SLDR - Switch LAG Descriptor Register
1259 * -----------------------------------------
1260 * The switch LAG descriptor register is populated by LAG descriptors.
1261 * Each LAG descriptor is indexed by lag_id. The LAG ID runs from 0 to
1262 * max_lag-1.
1263 */
1264#define MLXSW_REG_SLDR_ID 0x2014
1265#define MLXSW_REG_SLDR_LEN 0x0C /* counting in only one port in list */
1266
Jiri Pirko21978dc2016-10-21 16:07:20 +02001267MLXSW_REG_DEFINE(sldr, MLXSW_REG_SLDR_ID, MLXSW_REG_SLDR_LEN);
Jiri Pirkod1d40be2015-12-03 12:12:25 +01001268
1269enum mlxsw_reg_sldr_op {
1270 /* Indicates a creation of a new LAG-ID, lag_id must be valid */
1271 MLXSW_REG_SLDR_OP_LAG_CREATE,
1272 MLXSW_REG_SLDR_OP_LAG_DESTROY,
1273 /* Ports that appear in the list have the Distributor enabled */
1274 MLXSW_REG_SLDR_OP_LAG_ADD_PORT_LIST,
1275 /* Removes ports from the disributor list */
1276 MLXSW_REG_SLDR_OP_LAG_REMOVE_PORT_LIST,
1277};
1278
1279/* reg_sldr_op
1280 * Operation.
1281 * Access: RW
1282 */
1283MLXSW_ITEM32(reg, sldr, op, 0x00, 29, 3);
1284
1285/* reg_sldr_lag_id
1286 * LAG identifier. The lag_id is the index into the LAG descriptor table.
1287 * Access: Index
1288 */
1289MLXSW_ITEM32(reg, sldr, lag_id, 0x00, 0, 10);
1290
1291static inline void mlxsw_reg_sldr_lag_create_pack(char *payload, u8 lag_id)
1292{
1293 MLXSW_REG_ZERO(sldr, payload);
1294 mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_CREATE);
1295 mlxsw_reg_sldr_lag_id_set(payload, lag_id);
1296}
1297
1298static inline void mlxsw_reg_sldr_lag_destroy_pack(char *payload, u8 lag_id)
1299{
1300 MLXSW_REG_ZERO(sldr, payload);
1301 mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_DESTROY);
1302 mlxsw_reg_sldr_lag_id_set(payload, lag_id);
1303}
1304
1305/* reg_sldr_num_ports
1306 * The number of member ports of the LAG.
1307 * Reserved for Create / Destroy operations
1308 * For Add / Remove operations - indicates the number of ports in the list.
1309 * Access: RW
1310 */
1311MLXSW_ITEM32(reg, sldr, num_ports, 0x04, 24, 8);
1312
1313/* reg_sldr_system_port
1314 * System port.
1315 * Access: RW
1316 */
1317MLXSW_ITEM32_INDEXED(reg, sldr, system_port, 0x08, 0, 16, 4, 0, false);
1318
1319static inline void mlxsw_reg_sldr_lag_add_port_pack(char *payload, u8 lag_id,
1320 u8 local_port)
1321{
1322 MLXSW_REG_ZERO(sldr, payload);
1323 mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_ADD_PORT_LIST);
1324 mlxsw_reg_sldr_lag_id_set(payload, lag_id);
1325 mlxsw_reg_sldr_num_ports_set(payload, 1);
1326 mlxsw_reg_sldr_system_port_set(payload, 0, local_port);
1327}
1328
1329static inline void mlxsw_reg_sldr_lag_remove_port_pack(char *payload, u8 lag_id,
1330 u8 local_port)
1331{
1332 MLXSW_REG_ZERO(sldr, payload);
1333 mlxsw_reg_sldr_op_set(payload, MLXSW_REG_SLDR_OP_LAG_REMOVE_PORT_LIST);
1334 mlxsw_reg_sldr_lag_id_set(payload, lag_id);
1335 mlxsw_reg_sldr_num_ports_set(payload, 1);
1336 mlxsw_reg_sldr_system_port_set(payload, 0, local_port);
1337}
1338
1339/* SLCR - Switch LAG Configuration 2 Register
1340 * -------------------------------------------
1341 * The Switch LAG Configuration register is used for configuring the
1342 * LAG properties of the switch.
1343 */
1344#define MLXSW_REG_SLCR_ID 0x2015
1345#define MLXSW_REG_SLCR_LEN 0x10
1346
Jiri Pirko21978dc2016-10-21 16:07:20 +02001347MLXSW_REG_DEFINE(slcr, MLXSW_REG_SLCR_ID, MLXSW_REG_SLCR_LEN);
Jiri Pirkod1d40be2015-12-03 12:12:25 +01001348
1349enum mlxsw_reg_slcr_pp {
1350 /* Global Configuration (for all ports) */
1351 MLXSW_REG_SLCR_PP_GLOBAL,
1352 /* Per port configuration, based on local_port field */
1353 MLXSW_REG_SLCR_PP_PER_PORT,
1354};
1355
1356/* reg_slcr_pp
1357 * Per Port Configuration
1358 * Note: Reading at Global mode results in reading port 1 configuration.
1359 * Access: Index
1360 */
1361MLXSW_ITEM32(reg, slcr, pp, 0x00, 24, 1);
1362
1363/* reg_slcr_local_port
1364 * Local port number
1365 * Supported from CPU port
1366 * Not supported from router port
1367 * Reserved when pp = Global Configuration
1368 * Access: Index
1369 */
1370MLXSW_ITEM32(reg, slcr, local_port, 0x00, 16, 8);
1371
1372enum mlxsw_reg_slcr_type {
1373 MLXSW_REG_SLCR_TYPE_CRC, /* default */
1374 MLXSW_REG_SLCR_TYPE_XOR,
1375 MLXSW_REG_SLCR_TYPE_RANDOM,
1376};
1377
1378/* reg_slcr_type
1379 * Hash type
1380 * Access: RW
1381 */
1382MLXSW_ITEM32(reg, slcr, type, 0x00, 0, 4);
1383
1384/* Ingress port */
1385#define MLXSW_REG_SLCR_LAG_HASH_IN_PORT BIT(0)
1386/* SMAC - for IPv4 and IPv6 packets */
1387#define MLXSW_REG_SLCR_LAG_HASH_SMAC_IP BIT(1)
1388/* SMAC - for non-IP packets */
1389#define MLXSW_REG_SLCR_LAG_HASH_SMAC_NONIP BIT(2)
1390#define MLXSW_REG_SLCR_LAG_HASH_SMAC \
1391 (MLXSW_REG_SLCR_LAG_HASH_SMAC_IP | \
1392 MLXSW_REG_SLCR_LAG_HASH_SMAC_NONIP)
1393/* DMAC - for IPv4 and IPv6 packets */
1394#define MLXSW_REG_SLCR_LAG_HASH_DMAC_IP BIT(3)
1395/* DMAC - for non-IP packets */
1396#define MLXSW_REG_SLCR_LAG_HASH_DMAC_NONIP BIT(4)
1397#define MLXSW_REG_SLCR_LAG_HASH_DMAC \
1398 (MLXSW_REG_SLCR_LAG_HASH_DMAC_IP | \
1399 MLXSW_REG_SLCR_LAG_HASH_DMAC_NONIP)
1400/* Ethertype - for IPv4 and IPv6 packets */
1401#define MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_IP BIT(5)
1402/* Ethertype - for non-IP packets */
1403#define MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_NONIP BIT(6)
1404#define MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE \
1405 (MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_IP | \
1406 MLXSW_REG_SLCR_LAG_HASH_ETHERTYPE_NONIP)
1407/* VLAN ID - for IPv4 and IPv6 packets */
1408#define MLXSW_REG_SLCR_LAG_HASH_VLANID_IP BIT(7)
1409/* VLAN ID - for non-IP packets */
1410#define MLXSW_REG_SLCR_LAG_HASH_VLANID_NONIP BIT(8)
1411#define MLXSW_REG_SLCR_LAG_HASH_VLANID \
1412 (MLXSW_REG_SLCR_LAG_HASH_VLANID_IP | \
1413 MLXSW_REG_SLCR_LAG_HASH_VLANID_NONIP)
1414/* Source IP address (can be IPv4 or IPv6) */
1415#define MLXSW_REG_SLCR_LAG_HASH_SIP BIT(9)
1416/* Destination IP address (can be IPv4 or IPv6) */
1417#define MLXSW_REG_SLCR_LAG_HASH_DIP BIT(10)
1418/* TCP/UDP source port */
1419#define MLXSW_REG_SLCR_LAG_HASH_SPORT BIT(11)
1420/* TCP/UDP destination port*/
1421#define MLXSW_REG_SLCR_LAG_HASH_DPORT BIT(12)
1422/* IPv4 Protocol/IPv6 Next Header */
1423#define MLXSW_REG_SLCR_LAG_HASH_IPPROTO BIT(13)
1424/* IPv6 Flow label */
1425#define MLXSW_REG_SLCR_LAG_HASH_FLOWLABEL BIT(14)
1426/* SID - FCoE source ID */
1427#define MLXSW_REG_SLCR_LAG_HASH_FCOE_SID BIT(15)
1428/* DID - FCoE destination ID */
1429#define MLXSW_REG_SLCR_LAG_HASH_FCOE_DID BIT(16)
1430/* OXID - FCoE originator exchange ID */
1431#define MLXSW_REG_SLCR_LAG_HASH_FCOE_OXID BIT(17)
1432/* Destination QP number - for RoCE packets */
1433#define MLXSW_REG_SLCR_LAG_HASH_ROCE_DQP BIT(19)
1434
1435/* reg_slcr_lag_hash
1436 * LAG hashing configuration. This is a bitmask, in which each set
1437 * bit includes the corresponding item in the LAG hash calculation.
1438 * The default lag_hash contains SMAC, DMAC, VLANID and
1439 * Ethertype (for all packet types).
1440 * Access: RW
1441 */
1442MLXSW_ITEM32(reg, slcr, lag_hash, 0x04, 0, 20);
1443
Ido Schimmelbeda7f72018-10-11 07:47:57 +00001444/* reg_slcr_seed
1445 * LAG seed value. The seed is the same for all ports.
1446 * Access: RW
1447 */
1448MLXSW_ITEM32(reg, slcr, seed, 0x08, 0, 32);
1449
1450static inline void mlxsw_reg_slcr_pack(char *payload, u16 lag_hash, u32 seed)
Jiri Pirkod1d40be2015-12-03 12:12:25 +01001451{
1452 MLXSW_REG_ZERO(slcr, payload);
1453 mlxsw_reg_slcr_pp_set(payload, MLXSW_REG_SLCR_PP_GLOBAL);
Elad Raz18c2d2c2016-09-19 08:28:24 +02001454 mlxsw_reg_slcr_type_set(payload, MLXSW_REG_SLCR_TYPE_CRC);
Jiri Pirkod1d40be2015-12-03 12:12:25 +01001455 mlxsw_reg_slcr_lag_hash_set(payload, lag_hash);
Ido Schimmelbeda7f72018-10-11 07:47:57 +00001456 mlxsw_reg_slcr_seed_set(payload, seed);
Jiri Pirkod1d40be2015-12-03 12:12:25 +01001457}
1458
1459/* SLCOR - Switch LAG Collector Register
1460 * -------------------------------------
1461 * The Switch LAG Collector register controls the Local Port membership
1462 * in a LAG and enablement of the collector.
1463 */
1464#define MLXSW_REG_SLCOR_ID 0x2016
1465#define MLXSW_REG_SLCOR_LEN 0x10
1466
Jiri Pirko21978dc2016-10-21 16:07:20 +02001467MLXSW_REG_DEFINE(slcor, MLXSW_REG_SLCOR_ID, MLXSW_REG_SLCOR_LEN);
Jiri Pirkod1d40be2015-12-03 12:12:25 +01001468
1469enum mlxsw_reg_slcor_col {
1470 /* Port is added with collector disabled */
1471 MLXSW_REG_SLCOR_COL_LAG_ADD_PORT,
1472 MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_ENABLED,
1473 MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_DISABLED,
1474 MLXSW_REG_SLCOR_COL_LAG_REMOVE_PORT,
1475};
1476
1477/* reg_slcor_col
1478 * Collector configuration
1479 * Access: RW
1480 */
1481MLXSW_ITEM32(reg, slcor, col, 0x00, 30, 2);
1482
1483/* reg_slcor_local_port
1484 * Local port number
1485 * Not supported for CPU port
1486 * Access: Index
1487 */
1488MLXSW_ITEM32(reg, slcor, local_port, 0x00, 16, 8);
1489
1490/* reg_slcor_lag_id
1491 * LAG Identifier. Index into the LAG descriptor table.
1492 * Access: Index
1493 */
1494MLXSW_ITEM32(reg, slcor, lag_id, 0x00, 0, 10);
1495
1496/* reg_slcor_port_index
1497 * Port index in the LAG list. Only valid on Add Port to LAG col.
1498 * Valid range is from 0 to cap_max_lag_members-1
1499 * Access: RW
1500 */
1501MLXSW_ITEM32(reg, slcor, port_index, 0x04, 0, 10);
1502
1503static inline void mlxsw_reg_slcor_pack(char *payload,
1504 u8 local_port, u16 lag_id,
1505 enum mlxsw_reg_slcor_col col)
1506{
1507 MLXSW_REG_ZERO(slcor, payload);
1508 mlxsw_reg_slcor_col_set(payload, col);
1509 mlxsw_reg_slcor_local_port_set(payload, local_port);
1510 mlxsw_reg_slcor_lag_id_set(payload, lag_id);
1511}
1512
1513static inline void mlxsw_reg_slcor_port_add_pack(char *payload,
1514 u8 local_port, u16 lag_id,
1515 u8 port_index)
1516{
1517 mlxsw_reg_slcor_pack(payload, local_port, lag_id,
1518 MLXSW_REG_SLCOR_COL_LAG_ADD_PORT);
1519 mlxsw_reg_slcor_port_index_set(payload, port_index);
1520}
1521
1522static inline void mlxsw_reg_slcor_port_remove_pack(char *payload,
1523 u8 local_port, u16 lag_id)
1524{
1525 mlxsw_reg_slcor_pack(payload, local_port, lag_id,
1526 MLXSW_REG_SLCOR_COL_LAG_REMOVE_PORT);
1527}
1528
1529static inline void mlxsw_reg_slcor_col_enable_pack(char *payload,
1530 u8 local_port, u16 lag_id)
1531{
1532 mlxsw_reg_slcor_pack(payload, local_port, lag_id,
1533 MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_ENABLED);
1534}
1535
1536static inline void mlxsw_reg_slcor_col_disable_pack(char *payload,
1537 u8 local_port, u16 lag_id)
1538{
1539 mlxsw_reg_slcor_pack(payload, local_port, lag_id,
1540 MLXSW_REG_SLCOR_COL_LAG_COLLECTOR_ENABLED);
1541}
1542
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001543/* SPMLR - Switch Port MAC Learning Register
1544 * -----------------------------------------
1545 * Controls the Switch MAC learning policy per port.
1546 */
1547#define MLXSW_REG_SPMLR_ID 0x2018
1548#define MLXSW_REG_SPMLR_LEN 0x8
1549
Jiri Pirko21978dc2016-10-21 16:07:20 +02001550MLXSW_REG_DEFINE(spmlr, MLXSW_REG_SPMLR_ID, MLXSW_REG_SPMLR_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001551
1552/* reg_spmlr_local_port
1553 * Local port number.
1554 * Access: Index
1555 */
1556MLXSW_ITEM32(reg, spmlr, local_port, 0x00, 16, 8);
1557
1558/* reg_spmlr_sub_port
1559 * Virtual port within the physical port.
1560 * Should be set to 0 when virtual ports are not enabled on the port.
1561 * Access: Index
1562 */
1563MLXSW_ITEM32(reg, spmlr, sub_port, 0x00, 8, 8);
1564
1565enum mlxsw_reg_spmlr_learn_mode {
1566 MLXSW_REG_SPMLR_LEARN_MODE_DISABLE = 0,
1567 MLXSW_REG_SPMLR_LEARN_MODE_ENABLE = 2,
1568 MLXSW_REG_SPMLR_LEARN_MODE_SEC = 3,
1569};
1570
1571/* reg_spmlr_learn_mode
1572 * Learning mode on the port.
1573 * 0 - Learning disabled.
1574 * 2 - Learning enabled.
1575 * 3 - Security mode.
1576 *
1577 * In security mode the switch does not learn MACs on the port, but uses the
1578 * SMAC to see if it exists on another ingress port. If so, the packet is
1579 * classified as a bad packet and is discarded unless the software registers
1580 * to receive port security error packets usign HPKT.
1581 */
1582MLXSW_ITEM32(reg, spmlr, learn_mode, 0x04, 30, 2);
1583
1584static inline void mlxsw_reg_spmlr_pack(char *payload, u8 local_port,
1585 enum mlxsw_reg_spmlr_learn_mode mode)
1586{
1587 MLXSW_REG_ZERO(spmlr, payload);
1588 mlxsw_reg_spmlr_local_port_set(payload, local_port);
1589 mlxsw_reg_spmlr_sub_port_set(payload, 0);
1590 mlxsw_reg_spmlr_learn_mode_set(payload, mode);
1591}
1592
Ido Schimmel64790232015-10-16 14:01:33 +02001593/* SVFA - Switch VID to FID Allocation Register
1594 * --------------------------------------------
1595 * Controls the VID to FID mapping and {Port, VID} to FID mapping for
1596 * virtualized ports.
1597 */
1598#define MLXSW_REG_SVFA_ID 0x201C
1599#define MLXSW_REG_SVFA_LEN 0x10
1600
Jiri Pirko21978dc2016-10-21 16:07:20 +02001601MLXSW_REG_DEFINE(svfa, MLXSW_REG_SVFA_ID, MLXSW_REG_SVFA_LEN);
Ido Schimmel64790232015-10-16 14:01:33 +02001602
1603/* reg_svfa_swid
1604 * Switch partition ID.
1605 * Access: Index
1606 */
1607MLXSW_ITEM32(reg, svfa, swid, 0x00, 24, 8);
1608
1609/* reg_svfa_local_port
1610 * Local port number.
1611 * Access: Index
1612 *
1613 * Note: Reserved for 802.1Q FIDs.
1614 */
1615MLXSW_ITEM32(reg, svfa, local_port, 0x00, 16, 8);
1616
1617enum mlxsw_reg_svfa_mt {
1618 MLXSW_REG_SVFA_MT_VID_TO_FID,
1619 MLXSW_REG_SVFA_MT_PORT_VID_TO_FID,
1620};
1621
1622/* reg_svfa_mapping_table
1623 * Mapping table:
1624 * 0 - VID to FID
1625 * 1 - {Port, VID} to FID
1626 * Access: Index
1627 *
1628 * Note: Reserved for SwitchX-2.
1629 */
1630MLXSW_ITEM32(reg, svfa, mapping_table, 0x00, 8, 3);
1631
1632/* reg_svfa_v
1633 * Valid.
1634 * Valid if set.
1635 * Access: RW
1636 *
1637 * Note: Reserved for SwitchX-2.
1638 */
1639MLXSW_ITEM32(reg, svfa, v, 0x00, 0, 1);
1640
1641/* reg_svfa_fid
1642 * Filtering ID.
1643 * Access: RW
1644 */
1645MLXSW_ITEM32(reg, svfa, fid, 0x04, 16, 16);
1646
1647/* reg_svfa_vid
1648 * VLAN ID.
1649 * Access: Index
1650 */
1651MLXSW_ITEM32(reg, svfa, vid, 0x04, 0, 12);
1652
1653/* reg_svfa_counter_set_type
1654 * Counter set type for flow counters.
1655 * Access: RW
1656 *
1657 * Note: Reserved for SwitchX-2.
1658 */
1659MLXSW_ITEM32(reg, svfa, counter_set_type, 0x08, 24, 8);
1660
1661/* reg_svfa_counter_index
1662 * Counter index for flow counters.
1663 * Access: RW
1664 *
1665 * Note: Reserved for SwitchX-2.
1666 */
1667MLXSW_ITEM32(reg, svfa, counter_index, 0x08, 0, 24);
1668
1669static inline void mlxsw_reg_svfa_pack(char *payload, u8 local_port,
1670 enum mlxsw_reg_svfa_mt mt, bool valid,
1671 u16 fid, u16 vid)
1672{
1673 MLXSW_REG_ZERO(svfa, payload);
1674 local_port = mt == MLXSW_REG_SVFA_MT_VID_TO_FID ? 0 : local_port;
1675 mlxsw_reg_svfa_swid_set(payload, 0);
1676 mlxsw_reg_svfa_local_port_set(payload, local_port);
1677 mlxsw_reg_svfa_mapping_table_set(payload, mt);
1678 mlxsw_reg_svfa_v_set(payload, valid);
1679 mlxsw_reg_svfa_fid_set(payload, fid);
1680 mlxsw_reg_svfa_vid_set(payload, vid);
1681}
1682
Ido Schimmel1f65da72015-10-16 14:01:34 +02001683/* SVPE - Switch Virtual-Port Enabling Register
1684 * --------------------------------------------
1685 * Enables port virtualization.
1686 */
1687#define MLXSW_REG_SVPE_ID 0x201E
1688#define MLXSW_REG_SVPE_LEN 0x4
1689
Jiri Pirko21978dc2016-10-21 16:07:20 +02001690MLXSW_REG_DEFINE(svpe, MLXSW_REG_SVPE_ID, MLXSW_REG_SVPE_LEN);
Ido Schimmel1f65da72015-10-16 14:01:34 +02001691
1692/* reg_svpe_local_port
1693 * Local port number
1694 * Access: Index
1695 *
1696 * Note: CPU port is not supported (uses VLAN mode only).
1697 */
1698MLXSW_ITEM32(reg, svpe, local_port, 0x00, 16, 8);
1699
1700/* reg_svpe_vp_en
1701 * Virtual port enable.
1702 * 0 - Disable, VLAN mode (VID to FID).
1703 * 1 - Enable, Virtual port mode ({Port, VID} to FID).
1704 * Access: RW
1705 */
1706MLXSW_ITEM32(reg, svpe, vp_en, 0x00, 8, 1);
1707
1708static inline void mlxsw_reg_svpe_pack(char *payload, u8 local_port,
1709 bool enable)
1710{
1711 MLXSW_REG_ZERO(svpe, payload);
1712 mlxsw_reg_svpe_local_port_set(payload, local_port);
1713 mlxsw_reg_svpe_vp_en_set(payload, enable);
1714}
1715
Ido Schimmelf1fb6932015-10-16 14:01:32 +02001716/* SFMR - Switch FID Management Register
1717 * -------------------------------------
1718 * Creates and configures FIDs.
1719 */
1720#define MLXSW_REG_SFMR_ID 0x201F
1721#define MLXSW_REG_SFMR_LEN 0x18
1722
Jiri Pirko21978dc2016-10-21 16:07:20 +02001723MLXSW_REG_DEFINE(sfmr, MLXSW_REG_SFMR_ID, MLXSW_REG_SFMR_LEN);
Ido Schimmelf1fb6932015-10-16 14:01:32 +02001724
1725enum mlxsw_reg_sfmr_op {
1726 MLXSW_REG_SFMR_OP_CREATE_FID,
1727 MLXSW_REG_SFMR_OP_DESTROY_FID,
1728};
1729
1730/* reg_sfmr_op
1731 * Operation.
1732 * 0 - Create or edit FID.
1733 * 1 - Destroy FID.
1734 * Access: WO
1735 */
1736MLXSW_ITEM32(reg, sfmr, op, 0x00, 24, 4);
1737
1738/* reg_sfmr_fid
1739 * Filtering ID.
1740 * Access: Index
1741 */
1742MLXSW_ITEM32(reg, sfmr, fid, 0x00, 0, 16);
1743
1744/* reg_sfmr_fid_offset
1745 * FID offset.
1746 * Used to point into the flooding table selected by SFGC register if
1747 * the table is of type FID-Offset. Otherwise, this field is reserved.
1748 * Access: RW
1749 */
1750MLXSW_ITEM32(reg, sfmr, fid_offset, 0x08, 0, 16);
1751
1752/* reg_sfmr_vtfp
1753 * Valid Tunnel Flood Pointer.
1754 * If not set, then nve_tunnel_flood_ptr is reserved and considered NULL.
1755 * Access: RW
1756 *
1757 * Note: Reserved for 802.1Q FIDs.
1758 */
1759MLXSW_ITEM32(reg, sfmr, vtfp, 0x0C, 31, 1);
1760
1761/* reg_sfmr_nve_tunnel_flood_ptr
1762 * Underlay Flooding and BC Pointer.
1763 * Used as a pointer to the first entry of the group based link lists of
1764 * flooding or BC entries (for NVE tunnels).
1765 * Access: RW
1766 */
1767MLXSW_ITEM32(reg, sfmr, nve_tunnel_flood_ptr, 0x0C, 0, 24);
1768
1769/* reg_sfmr_vv
1770 * VNI Valid.
1771 * If not set, then vni is reserved.
1772 * Access: RW
1773 *
1774 * Note: Reserved for 802.1Q FIDs.
1775 */
1776MLXSW_ITEM32(reg, sfmr, vv, 0x10, 31, 1);
1777
1778/* reg_sfmr_vni
1779 * Virtual Network Identifier.
1780 * Access: RW
1781 *
1782 * Note: A given VNI can only be assigned to one FID.
1783 */
1784MLXSW_ITEM32(reg, sfmr, vni, 0x10, 0, 24);
1785
1786static inline void mlxsw_reg_sfmr_pack(char *payload,
1787 enum mlxsw_reg_sfmr_op op, u16 fid,
1788 u16 fid_offset)
1789{
1790 MLXSW_REG_ZERO(sfmr, payload);
1791 mlxsw_reg_sfmr_op_set(payload, op);
1792 mlxsw_reg_sfmr_fid_set(payload, fid);
1793 mlxsw_reg_sfmr_fid_offset_set(payload, fid_offset);
1794 mlxsw_reg_sfmr_vtfp_set(payload, false);
1795 mlxsw_reg_sfmr_vv_set(payload, false);
1796}
1797
Ido Schimmela4feea72015-10-16 14:01:36 +02001798/* SPVMLR - Switch Port VLAN MAC Learning Register
1799 * -----------------------------------------------
1800 * Controls the switch MAC learning policy per {Port, VID}.
1801 */
1802#define MLXSW_REG_SPVMLR_ID 0x2020
1803#define MLXSW_REG_SPVMLR_BASE_LEN 0x04 /* base length, without records */
1804#define MLXSW_REG_SPVMLR_REC_LEN 0x04 /* record length */
Jiri Pirkoe9093b12017-03-14 14:00:01 +01001805#define MLXSW_REG_SPVMLR_REC_MAX_COUNT 255
Ido Schimmela4feea72015-10-16 14:01:36 +02001806#define MLXSW_REG_SPVMLR_LEN (MLXSW_REG_SPVMLR_BASE_LEN + \
1807 MLXSW_REG_SPVMLR_REC_LEN * \
1808 MLXSW_REG_SPVMLR_REC_MAX_COUNT)
1809
Jiri Pirko21978dc2016-10-21 16:07:20 +02001810MLXSW_REG_DEFINE(spvmlr, MLXSW_REG_SPVMLR_ID, MLXSW_REG_SPVMLR_LEN);
Ido Schimmela4feea72015-10-16 14:01:36 +02001811
1812/* reg_spvmlr_local_port
1813 * Local ingress port.
1814 * Access: Index
1815 *
1816 * Note: CPU port is not supported.
1817 */
1818MLXSW_ITEM32(reg, spvmlr, local_port, 0x00, 16, 8);
1819
1820/* reg_spvmlr_num_rec
1821 * Number of records to update.
1822 * Access: OP
1823 */
1824MLXSW_ITEM32(reg, spvmlr, num_rec, 0x00, 0, 8);
1825
1826/* reg_spvmlr_rec_learn_enable
1827 * 0 - Disable learning for {Port, VID}.
1828 * 1 - Enable learning for {Port, VID}.
1829 * Access: RW
1830 */
1831MLXSW_ITEM32_INDEXED(reg, spvmlr, rec_learn_enable, MLXSW_REG_SPVMLR_BASE_LEN,
1832 31, 1, MLXSW_REG_SPVMLR_REC_LEN, 0x00, false);
1833
1834/* reg_spvmlr_rec_vid
1835 * VLAN ID to be added/removed from port or for querying.
1836 * Access: Index
1837 */
1838MLXSW_ITEM32_INDEXED(reg, spvmlr, rec_vid, MLXSW_REG_SPVMLR_BASE_LEN, 0, 12,
1839 MLXSW_REG_SPVMLR_REC_LEN, 0x00, false);
1840
1841static inline void mlxsw_reg_spvmlr_pack(char *payload, u8 local_port,
1842 u16 vid_begin, u16 vid_end,
1843 bool learn_enable)
1844{
1845 int num_rec = vid_end - vid_begin + 1;
1846 int i;
1847
1848 WARN_ON(num_rec < 1 || num_rec > MLXSW_REG_SPVMLR_REC_MAX_COUNT);
1849
1850 MLXSW_REG_ZERO(spvmlr, payload);
1851 mlxsw_reg_spvmlr_local_port_set(payload, local_port);
1852 mlxsw_reg_spvmlr_num_rec_set(payload, num_rec);
1853
1854 for (i = 0; i < num_rec; i++) {
1855 mlxsw_reg_spvmlr_rec_learn_enable_set(payload, i, learn_enable);
1856 mlxsw_reg_spvmlr_rec_vid_set(payload, i, vid_begin + i);
1857 }
1858}
1859
Nogah Frankelad53fa02017-11-06 07:23:44 +01001860/* CWTP - Congetion WRED ECN TClass Profile
1861 * ----------------------------------------
1862 * Configures the profiles for queues of egress port and traffic class
1863 */
1864#define MLXSW_REG_CWTP_ID 0x2802
1865#define MLXSW_REG_CWTP_BASE_LEN 0x28
1866#define MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN 0x08
1867#define MLXSW_REG_CWTP_LEN 0x40
1868
1869MLXSW_REG_DEFINE(cwtp, MLXSW_REG_CWTP_ID, MLXSW_REG_CWTP_LEN);
1870
1871/* reg_cwtp_local_port
1872 * Local port number
1873 * Not supported for CPU port
1874 * Access: Index
1875 */
1876MLXSW_ITEM32(reg, cwtp, local_port, 0, 16, 8);
1877
1878/* reg_cwtp_traffic_class
1879 * Traffic Class to configure
1880 * Access: Index
1881 */
1882MLXSW_ITEM32(reg, cwtp, traffic_class, 32, 0, 8);
1883
1884/* reg_cwtp_profile_min
1885 * Minimum Average Queue Size of the profile in cells.
1886 * Access: RW
1887 */
1888MLXSW_ITEM32_INDEXED(reg, cwtp, profile_min, MLXSW_REG_CWTP_BASE_LEN,
1889 0, 20, MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN, 0, false);
1890
1891/* reg_cwtp_profile_percent
1892 * Percentage of WRED and ECN marking for maximum Average Queue size
1893 * Range is 0 to 100, units of integer percentage
1894 * Access: RW
1895 */
1896MLXSW_ITEM32_INDEXED(reg, cwtp, profile_percent, MLXSW_REG_CWTP_BASE_LEN,
1897 24, 7, MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN, 4, false);
1898
1899/* reg_cwtp_profile_max
1900 * Maximum Average Queue size of the profile in cells
1901 * Access: RW
1902 */
1903MLXSW_ITEM32_INDEXED(reg, cwtp, profile_max, MLXSW_REG_CWTP_BASE_LEN,
1904 0, 20, MLXSW_REG_CWTP_PROFILE_DATA_REC_LEN, 4, false);
1905
1906#define MLXSW_REG_CWTP_MIN_VALUE 64
1907#define MLXSW_REG_CWTP_MAX_PROFILE 2
1908#define MLXSW_REG_CWTP_DEFAULT_PROFILE 1
1909
1910static inline void mlxsw_reg_cwtp_pack(char *payload, u8 local_port,
1911 u8 traffic_class)
1912{
1913 int i;
1914
1915 MLXSW_REG_ZERO(cwtp, payload);
1916 mlxsw_reg_cwtp_local_port_set(payload, local_port);
1917 mlxsw_reg_cwtp_traffic_class_set(payload, traffic_class);
1918
1919 for (i = 0; i <= MLXSW_REG_CWTP_MAX_PROFILE; i++) {
1920 mlxsw_reg_cwtp_profile_min_set(payload, i,
1921 MLXSW_REG_CWTP_MIN_VALUE);
1922 mlxsw_reg_cwtp_profile_max_set(payload, i,
1923 MLXSW_REG_CWTP_MIN_VALUE);
1924 }
1925}
1926
1927#define MLXSW_REG_CWTP_PROFILE_TO_INDEX(profile) (profile - 1)
1928
1929static inline void
1930mlxsw_reg_cwtp_profile_pack(char *payload, u8 profile, u32 min, u32 max,
1931 u32 probability)
1932{
1933 u8 index = MLXSW_REG_CWTP_PROFILE_TO_INDEX(profile);
1934
1935 mlxsw_reg_cwtp_profile_min_set(payload, index, min);
1936 mlxsw_reg_cwtp_profile_max_set(payload, index, max);
1937 mlxsw_reg_cwtp_profile_percent_set(payload, index, probability);
1938}
1939
1940/* CWTPM - Congestion WRED ECN TClass and Pool Mapping
1941 * ---------------------------------------------------
1942 * The CWTPM register maps each egress port and traffic class to profile num.
1943 */
1944#define MLXSW_REG_CWTPM_ID 0x2803
1945#define MLXSW_REG_CWTPM_LEN 0x44
1946
1947MLXSW_REG_DEFINE(cwtpm, MLXSW_REG_CWTPM_ID, MLXSW_REG_CWTPM_LEN);
1948
1949/* reg_cwtpm_local_port
1950 * Local port number
1951 * Not supported for CPU port
1952 * Access: Index
1953 */
1954MLXSW_ITEM32(reg, cwtpm, local_port, 0, 16, 8);
1955
1956/* reg_cwtpm_traffic_class
1957 * Traffic Class to configure
1958 * Access: Index
1959 */
1960MLXSW_ITEM32(reg, cwtpm, traffic_class, 32, 0, 8);
1961
1962/* reg_cwtpm_ew
1963 * Control enablement of WRED for traffic class:
1964 * 0 - Disable
1965 * 1 - Enable
1966 * Access: RW
1967 */
1968MLXSW_ITEM32(reg, cwtpm, ew, 36, 1, 1);
1969
1970/* reg_cwtpm_ee
1971 * Control enablement of ECN for traffic class:
1972 * 0 - Disable
1973 * 1 - Enable
1974 * Access: RW
1975 */
1976MLXSW_ITEM32(reg, cwtpm, ee, 36, 0, 1);
1977
1978/* reg_cwtpm_tcp_g
1979 * TCP Green Profile.
1980 * Index of the profile within {port, traffic class} to use.
1981 * 0 for disabling both WRED and ECN for this type of traffic.
1982 * Access: RW
1983 */
1984MLXSW_ITEM32(reg, cwtpm, tcp_g, 52, 0, 2);
1985
1986/* reg_cwtpm_tcp_y
1987 * TCP Yellow Profile.
1988 * Index of the profile within {port, traffic class} to use.
1989 * 0 for disabling both WRED and ECN for this type of traffic.
1990 * Access: RW
1991 */
1992MLXSW_ITEM32(reg, cwtpm, tcp_y, 56, 16, 2);
1993
1994/* reg_cwtpm_tcp_r
1995 * TCP Red Profile.
1996 * Index of the profile within {port, traffic class} to use.
1997 * 0 for disabling both WRED and ECN for this type of traffic.
1998 * Access: RW
1999 */
2000MLXSW_ITEM32(reg, cwtpm, tcp_r, 56, 0, 2);
2001
2002/* reg_cwtpm_ntcp_g
2003 * Non-TCP Green Profile.
2004 * Index of the profile within {port, traffic class} to use.
2005 * 0 for disabling both WRED and ECN for this type of traffic.
2006 * Access: RW
2007 */
2008MLXSW_ITEM32(reg, cwtpm, ntcp_g, 60, 0, 2);
2009
2010/* reg_cwtpm_ntcp_y
2011 * Non-TCP Yellow Profile.
2012 * Index of the profile within {port, traffic class} to use.
2013 * 0 for disabling both WRED and ECN for this type of traffic.
2014 * Access: RW
2015 */
2016MLXSW_ITEM32(reg, cwtpm, ntcp_y, 64, 16, 2);
2017
2018/* reg_cwtpm_ntcp_r
2019 * Non-TCP Red Profile.
2020 * Index of the profile within {port, traffic class} to use.
2021 * 0 for disabling both WRED and ECN for this type of traffic.
2022 * Access: RW
2023 */
2024MLXSW_ITEM32(reg, cwtpm, ntcp_r, 64, 0, 2);
2025
2026#define MLXSW_REG_CWTPM_RESET_PROFILE 0
2027
2028static inline void mlxsw_reg_cwtpm_pack(char *payload, u8 local_port,
2029 u8 traffic_class, u8 profile,
2030 bool wred, bool ecn)
2031{
2032 MLXSW_REG_ZERO(cwtpm, payload);
2033 mlxsw_reg_cwtpm_local_port_set(payload, local_port);
2034 mlxsw_reg_cwtpm_traffic_class_set(payload, traffic_class);
2035 mlxsw_reg_cwtpm_ew_set(payload, wred);
2036 mlxsw_reg_cwtpm_ee_set(payload, ecn);
2037 mlxsw_reg_cwtpm_tcp_g_set(payload, profile);
2038 mlxsw_reg_cwtpm_tcp_y_set(payload, profile);
2039 mlxsw_reg_cwtpm_tcp_r_set(payload, profile);
2040 mlxsw_reg_cwtpm_ntcp_g_set(payload, profile);
2041 mlxsw_reg_cwtpm_ntcp_y_set(payload, profile);
2042 mlxsw_reg_cwtpm_ntcp_r_set(payload, profile);
2043}
2044
Ido Schimmel7050f432018-07-18 11:14:40 +03002045/* PGCR - Policy-Engine General Configuration Register
2046 * ---------------------------------------------------
2047 * This register configures general Policy-Engine settings.
2048 */
2049#define MLXSW_REG_PGCR_ID 0x3001
2050#define MLXSW_REG_PGCR_LEN 0x20
2051
2052MLXSW_REG_DEFINE(pgcr, MLXSW_REG_PGCR_ID, MLXSW_REG_PGCR_LEN);
2053
2054/* reg_pgcr_default_action_pointer_base
2055 * Default action pointer base. Each region has a default action pointer
2056 * which is equal to default_action_pointer_base + region_id.
2057 * Access: RW
2058 */
2059MLXSW_ITEM32(reg, pgcr, default_action_pointer_base, 0x1C, 0, 24);
2060
2061static inline void mlxsw_reg_pgcr_pack(char *payload, u32 pointer_base)
2062{
2063 MLXSW_REG_ZERO(pgcr, payload);
2064 mlxsw_reg_pgcr_default_action_pointer_base_set(payload, pointer_base);
2065}
2066
Jiri Pirkoaf7170e2017-02-03 10:28:57 +01002067/* PPBT - Policy-Engine Port Binding Table
2068 * ---------------------------------------
2069 * This register is used for configuration of the Port Binding Table.
2070 */
2071#define MLXSW_REG_PPBT_ID 0x3002
2072#define MLXSW_REG_PPBT_LEN 0x14
2073
2074MLXSW_REG_DEFINE(ppbt, MLXSW_REG_PPBT_ID, MLXSW_REG_PPBT_LEN);
2075
2076enum mlxsw_reg_pxbt_e {
2077 MLXSW_REG_PXBT_E_IACL,
2078 MLXSW_REG_PXBT_E_EACL,
2079};
2080
2081/* reg_ppbt_e
2082 * Access: Index
2083 */
2084MLXSW_ITEM32(reg, ppbt, e, 0x00, 31, 1);
2085
2086enum mlxsw_reg_pxbt_op {
2087 MLXSW_REG_PXBT_OP_BIND,
2088 MLXSW_REG_PXBT_OP_UNBIND,
2089};
2090
2091/* reg_ppbt_op
2092 * Access: RW
2093 */
2094MLXSW_ITEM32(reg, ppbt, op, 0x00, 28, 3);
2095
2096/* reg_ppbt_local_port
2097 * Local port. Not including CPU port.
2098 * Access: Index
2099 */
2100MLXSW_ITEM32(reg, ppbt, local_port, 0x00, 16, 8);
2101
2102/* reg_ppbt_g
2103 * group - When set, the binding is of an ACL group. When cleared,
2104 * the binding is of an ACL.
2105 * Must be set to 1 for Spectrum.
2106 * Access: RW
2107 */
2108MLXSW_ITEM32(reg, ppbt, g, 0x10, 31, 1);
2109
2110/* reg_ppbt_acl_info
2111 * ACL/ACL group identifier. If the g bit is set, this field should hold
2112 * the acl_group_id, else it should hold the acl_id.
2113 * Access: RW
2114 */
2115MLXSW_ITEM32(reg, ppbt, acl_info, 0x10, 0, 16);
2116
2117static inline void mlxsw_reg_ppbt_pack(char *payload, enum mlxsw_reg_pxbt_e e,
2118 enum mlxsw_reg_pxbt_op op,
2119 u8 local_port, u16 acl_info)
2120{
2121 MLXSW_REG_ZERO(ppbt, payload);
2122 mlxsw_reg_ppbt_e_set(payload, e);
2123 mlxsw_reg_ppbt_op_set(payload, op);
2124 mlxsw_reg_ppbt_local_port_set(payload, local_port);
2125 mlxsw_reg_ppbt_g_set(payload, true);
2126 mlxsw_reg_ppbt_acl_info_set(payload, acl_info);
2127}
2128
Jiri Pirko3279da42017-02-03 10:28:53 +01002129/* PACL - Policy-Engine ACL Register
2130 * ---------------------------------
2131 * This register is used for configuration of the ACL.
2132 */
2133#define MLXSW_REG_PACL_ID 0x3004
2134#define MLXSW_REG_PACL_LEN 0x70
2135
2136MLXSW_REG_DEFINE(pacl, MLXSW_REG_PACL_ID, MLXSW_REG_PACL_LEN);
2137
2138/* reg_pacl_v
2139 * Valid. Setting the v bit makes the ACL valid. It should not be cleared
2140 * while the ACL is bounded to either a port, VLAN or ACL rule.
2141 * Access: RW
2142 */
2143MLXSW_ITEM32(reg, pacl, v, 0x00, 24, 1);
2144
2145/* reg_pacl_acl_id
2146 * An identifier representing the ACL (managed by software)
2147 * Range 0 .. cap_max_acl_regions - 1
2148 * Access: Index
2149 */
2150MLXSW_ITEM32(reg, pacl, acl_id, 0x08, 0, 16);
2151
2152#define MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN 16
2153
2154/* reg_pacl_tcam_region_info
2155 * Opaque object that represents a TCAM region.
2156 * Obtained through PTAR register.
2157 * Access: RW
2158 */
2159MLXSW_ITEM_BUF(reg, pacl, tcam_region_info, 0x30,
2160 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2161
2162static inline void mlxsw_reg_pacl_pack(char *payload, u16 acl_id,
2163 bool valid, const char *tcam_region_info)
2164{
2165 MLXSW_REG_ZERO(pacl, payload);
2166 mlxsw_reg_pacl_acl_id_set(payload, acl_id);
2167 mlxsw_reg_pacl_v_set(payload, valid);
2168 mlxsw_reg_pacl_tcam_region_info_memcpy_to(payload, tcam_region_info);
2169}
2170
Jiri Pirko10fabef2017-02-03 10:28:54 +01002171/* PAGT - Policy-Engine ACL Group Table
2172 * ------------------------------------
2173 * This register is used for configuration of the ACL Group Table.
2174 */
2175#define MLXSW_REG_PAGT_ID 0x3005
2176#define MLXSW_REG_PAGT_BASE_LEN 0x30
2177#define MLXSW_REG_PAGT_ACL_LEN 4
2178#define MLXSW_REG_PAGT_ACL_MAX_NUM 16
2179#define MLXSW_REG_PAGT_LEN (MLXSW_REG_PAGT_BASE_LEN + \
2180 MLXSW_REG_PAGT_ACL_MAX_NUM * MLXSW_REG_PAGT_ACL_LEN)
2181
2182MLXSW_REG_DEFINE(pagt, MLXSW_REG_PAGT_ID, MLXSW_REG_PAGT_LEN);
2183
2184/* reg_pagt_size
2185 * Number of ACLs in the group.
2186 * Size 0 invalidates a group.
2187 * Range 0 .. cap_max_acl_group_size (hard coded to 16 for now)
2188 * Total number of ACLs in all groups must be lower or equal
2189 * to cap_max_acl_tot_groups
2190 * Note: a group which is binded must not be invalidated
2191 * Access: Index
2192 */
2193MLXSW_ITEM32(reg, pagt, size, 0x00, 0, 8);
2194
2195/* reg_pagt_acl_group_id
2196 * An identifier (numbered from 0..cap_max_acl_groups-1) representing
2197 * the ACL Group identifier (managed by software).
2198 * Access: Index
2199 */
2200MLXSW_ITEM32(reg, pagt, acl_group_id, 0x08, 0, 16);
2201
Jiri Pirko5c661f12019-02-07 11:22:53 +00002202/* reg_pagt_multi
2203 * Multi-ACL
2204 * 0 - This ACL is the last ACL in the multi-ACL
2205 * 1 - This ACL is part of a multi-ACL
2206 * Access: RW
2207 */
2208MLXSW_ITEM32_INDEXED(reg, pagt, multi, 0x30, 31, 1, 0x04, 0x00, false);
2209
Jiri Pirko10fabef2017-02-03 10:28:54 +01002210/* reg_pagt_acl_id
2211 * ACL identifier
2212 * Access: RW
2213 */
2214MLXSW_ITEM32_INDEXED(reg, pagt, acl_id, 0x30, 0, 16, 0x04, 0x00, false);
2215
2216static inline void mlxsw_reg_pagt_pack(char *payload, u16 acl_group_id)
2217{
2218 MLXSW_REG_ZERO(pagt, payload);
2219 mlxsw_reg_pagt_acl_group_id_set(payload, acl_group_id);
2220}
2221
2222static inline void mlxsw_reg_pagt_acl_id_pack(char *payload, int index,
Jiri Pirko5c661f12019-02-07 11:22:53 +00002223 u16 acl_id, bool multi)
Jiri Pirko10fabef2017-02-03 10:28:54 +01002224{
2225 u8 size = mlxsw_reg_pagt_size_get(payload);
2226
2227 if (index >= size)
2228 mlxsw_reg_pagt_size_set(payload, index + 1);
Jiri Pirko5c661f12019-02-07 11:22:53 +00002229 mlxsw_reg_pagt_multi_set(payload, index, multi);
Jiri Pirko10fabef2017-02-03 10:28:54 +01002230 mlxsw_reg_pagt_acl_id_set(payload, index, acl_id);
2231}
2232
Jiri Pirkod9c26612017-02-03 10:28:55 +01002233/* PTAR - Policy-Engine TCAM Allocation Register
2234 * ---------------------------------------------
2235 * This register is used for allocation of regions in the TCAM.
2236 * Note: Query method is not supported on this register.
2237 */
2238#define MLXSW_REG_PTAR_ID 0x3006
2239#define MLXSW_REG_PTAR_BASE_LEN 0x20
2240#define MLXSW_REG_PTAR_KEY_ID_LEN 1
2241#define MLXSW_REG_PTAR_KEY_ID_MAX_NUM 16
2242#define MLXSW_REG_PTAR_LEN (MLXSW_REG_PTAR_BASE_LEN + \
2243 MLXSW_REG_PTAR_KEY_ID_MAX_NUM * MLXSW_REG_PTAR_KEY_ID_LEN)
2244
2245MLXSW_REG_DEFINE(ptar, MLXSW_REG_PTAR_ID, MLXSW_REG_PTAR_LEN);
2246
2247enum mlxsw_reg_ptar_op {
2248 /* allocate a TCAM region */
2249 MLXSW_REG_PTAR_OP_ALLOC,
2250 /* resize a TCAM region */
2251 MLXSW_REG_PTAR_OP_RESIZE,
2252 /* deallocate TCAM region */
2253 MLXSW_REG_PTAR_OP_FREE,
2254 /* test allocation */
2255 MLXSW_REG_PTAR_OP_TEST,
2256};
2257
2258/* reg_ptar_op
2259 * Access: OP
2260 */
2261MLXSW_ITEM32(reg, ptar, op, 0x00, 28, 4);
2262
2263/* reg_ptar_action_set_type
2264 * Type of action set to be used on this region.
Jiri Pirko45e0620d2018-07-08 10:00:15 +03002265 * For Spectrum and Spectrum-2, this is always type 2 - "flexible"
Jiri Pirkod9c26612017-02-03 10:28:55 +01002266 * Access: WO
2267 */
2268MLXSW_ITEM32(reg, ptar, action_set_type, 0x00, 16, 8);
2269
Jiri Pirko45e0620d2018-07-08 10:00:15 +03002270enum mlxsw_reg_ptar_key_type {
2271 MLXSW_REG_PTAR_KEY_TYPE_FLEX = 0x50, /* Spetrum */
2272 MLXSW_REG_PTAR_KEY_TYPE_FLEX2 = 0x51, /* Spectrum-2 */
2273};
2274
Jiri Pirkod9c26612017-02-03 10:28:55 +01002275/* reg_ptar_key_type
2276 * TCAM key type for the region.
Jiri Pirkod9c26612017-02-03 10:28:55 +01002277 * Access: WO
2278 */
2279MLXSW_ITEM32(reg, ptar, key_type, 0x00, 0, 8);
2280
2281/* reg_ptar_region_size
2282 * TCAM region size. When allocating/resizing this is the requested size,
2283 * the response is the actual size. Note that actual size may be
2284 * larger than requested.
2285 * Allowed range 1 .. cap_max_rules-1
2286 * Reserved during op deallocate.
2287 * Access: WO
2288 */
2289MLXSW_ITEM32(reg, ptar, region_size, 0x04, 0, 16);
2290
2291/* reg_ptar_region_id
2292 * Region identifier
2293 * Range 0 .. cap_max_regions-1
2294 * Access: Index
2295 */
2296MLXSW_ITEM32(reg, ptar, region_id, 0x08, 0, 16);
2297
2298/* reg_ptar_tcam_region_info
2299 * Opaque object that represents the TCAM region.
2300 * Returned when allocating a region.
2301 * Provided by software for ACL generation and region deallocation and resize.
2302 * Access: RW
2303 */
2304MLXSW_ITEM_BUF(reg, ptar, tcam_region_info, 0x10,
2305 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2306
2307/* reg_ptar_flexible_key_id
2308 * Identifier of the Flexible Key.
2309 * Only valid if key_type == "FLEX_KEY"
2310 * The key size will be rounded up to one of the following values:
2311 * 9B, 18B, 36B, 54B.
2312 * This field is reserved for in resize operation.
2313 * Access: WO
2314 */
2315MLXSW_ITEM8_INDEXED(reg, ptar, flexible_key_id, 0x20, 0, 8,
2316 MLXSW_REG_PTAR_KEY_ID_LEN, 0x00, false);
2317
2318static inline void mlxsw_reg_ptar_pack(char *payload, enum mlxsw_reg_ptar_op op,
Jiri Pirko45e0620d2018-07-08 10:00:15 +03002319 enum mlxsw_reg_ptar_key_type key_type,
Jiri Pirkod9c26612017-02-03 10:28:55 +01002320 u16 region_size, u16 region_id,
2321 const char *tcam_region_info)
2322{
2323 MLXSW_REG_ZERO(ptar, payload);
2324 mlxsw_reg_ptar_op_set(payload, op);
2325 mlxsw_reg_ptar_action_set_type_set(payload, 2); /* "flexible" */
Jiri Pirko45e0620d2018-07-08 10:00:15 +03002326 mlxsw_reg_ptar_key_type_set(payload, key_type);
Jiri Pirkod9c26612017-02-03 10:28:55 +01002327 mlxsw_reg_ptar_region_size_set(payload, region_size);
2328 mlxsw_reg_ptar_region_id_set(payload, region_id);
2329 mlxsw_reg_ptar_tcam_region_info_memcpy_to(payload, tcam_region_info);
2330}
2331
2332static inline void mlxsw_reg_ptar_key_id_pack(char *payload, int index,
2333 u16 key_id)
2334{
2335 mlxsw_reg_ptar_flexible_key_id_set(payload, index, key_id);
2336}
2337
2338static inline void mlxsw_reg_ptar_unpack(char *payload, char *tcam_region_info)
2339{
2340 mlxsw_reg_ptar_tcam_region_info_memcpy_from(payload, tcam_region_info);
2341}
2342
Jiri Pirkod1206492017-02-03 10:28:59 +01002343/* PPBS - Policy-Engine Policy Based Switching Register
2344 * ----------------------------------------------------
2345 * This register retrieves and sets Policy Based Switching Table entries.
2346 */
2347#define MLXSW_REG_PPBS_ID 0x300C
2348#define MLXSW_REG_PPBS_LEN 0x14
2349
2350MLXSW_REG_DEFINE(ppbs, MLXSW_REG_PPBS_ID, MLXSW_REG_PPBS_LEN);
2351
2352/* reg_ppbs_pbs_ptr
2353 * Index into the PBS table.
2354 * For Spectrum, the index points to the KVD Linear.
2355 * Access: Index
2356 */
2357MLXSW_ITEM32(reg, ppbs, pbs_ptr, 0x08, 0, 24);
2358
2359/* reg_ppbs_system_port
2360 * Unique port identifier for the final destination of the packet.
2361 * Access: RW
2362 */
2363MLXSW_ITEM32(reg, ppbs, system_port, 0x10, 0, 16);
2364
2365static inline void mlxsw_reg_ppbs_pack(char *payload, u32 pbs_ptr,
2366 u16 system_port)
2367{
2368 MLXSW_REG_ZERO(ppbs, payload);
2369 mlxsw_reg_ppbs_pbs_ptr_set(payload, pbs_ptr);
2370 mlxsw_reg_ppbs_system_port_set(payload, system_port);
2371}
2372
Jiri Pirko937b6822017-02-03 10:28:58 +01002373/* PRCR - Policy-Engine Rules Copy Register
2374 * ----------------------------------------
2375 * This register is used for accessing rules within a TCAM region.
2376 */
2377#define MLXSW_REG_PRCR_ID 0x300D
2378#define MLXSW_REG_PRCR_LEN 0x40
2379
2380MLXSW_REG_DEFINE(prcr, MLXSW_REG_PRCR_ID, MLXSW_REG_PRCR_LEN);
2381
2382enum mlxsw_reg_prcr_op {
2383 /* Move rules. Moves the rules from "tcam_region_info" starting
2384 * at offset "offset" to "dest_tcam_region_info"
2385 * at offset "dest_offset."
2386 */
2387 MLXSW_REG_PRCR_OP_MOVE,
2388 /* Copy rules. Copies the rules from "tcam_region_info" starting
2389 * at offset "offset" to "dest_tcam_region_info"
2390 * at offset "dest_offset."
2391 */
2392 MLXSW_REG_PRCR_OP_COPY,
2393};
2394
2395/* reg_prcr_op
2396 * Access: OP
2397 */
2398MLXSW_ITEM32(reg, prcr, op, 0x00, 28, 4);
2399
2400/* reg_prcr_offset
2401 * Offset within the source region to copy/move from.
2402 * Access: Index
2403 */
2404MLXSW_ITEM32(reg, prcr, offset, 0x00, 0, 16);
2405
2406/* reg_prcr_size
2407 * The number of rules to copy/move.
2408 * Access: WO
2409 */
2410MLXSW_ITEM32(reg, prcr, size, 0x04, 0, 16);
2411
2412/* reg_prcr_tcam_region_info
2413 * Opaque object that represents the source TCAM region.
2414 * Access: Index
2415 */
2416MLXSW_ITEM_BUF(reg, prcr, tcam_region_info, 0x10,
2417 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2418
2419/* reg_prcr_dest_offset
2420 * Offset within the source region to copy/move to.
2421 * Access: Index
2422 */
2423MLXSW_ITEM32(reg, prcr, dest_offset, 0x20, 0, 16);
2424
2425/* reg_prcr_dest_tcam_region_info
2426 * Opaque object that represents the destination TCAM region.
2427 * Access: Index
2428 */
2429MLXSW_ITEM_BUF(reg, prcr, dest_tcam_region_info, 0x30,
2430 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2431
2432static inline void mlxsw_reg_prcr_pack(char *payload, enum mlxsw_reg_prcr_op op,
2433 const char *src_tcam_region_info,
2434 u16 src_offset,
2435 const char *dest_tcam_region_info,
2436 u16 dest_offset, u16 size)
2437{
2438 MLXSW_REG_ZERO(prcr, payload);
2439 mlxsw_reg_prcr_op_set(payload, op);
2440 mlxsw_reg_prcr_offset_set(payload, src_offset);
2441 mlxsw_reg_prcr_size_set(payload, size);
2442 mlxsw_reg_prcr_tcam_region_info_memcpy_to(payload,
2443 src_tcam_region_info);
2444 mlxsw_reg_prcr_dest_offset_set(payload, dest_offset);
2445 mlxsw_reg_prcr_dest_tcam_region_info_memcpy_to(payload,
2446 dest_tcam_region_info);
2447}
2448
Jiri Pirkoe3426e12017-02-03 10:29:00 +01002449/* PEFA - Policy-Engine Extended Flexible Action Register
2450 * ------------------------------------------------------
2451 * This register is used for accessing an extended flexible action entry
2452 * in the central KVD Linear Database.
2453 */
2454#define MLXSW_REG_PEFA_ID 0x300F
2455#define MLXSW_REG_PEFA_LEN 0xB0
2456
2457MLXSW_REG_DEFINE(pefa, MLXSW_REG_PEFA_ID, MLXSW_REG_PEFA_LEN);
2458
2459/* reg_pefa_index
2460 * Index in the KVD Linear Centralized Database.
2461 * Access: Index
2462 */
2463MLXSW_ITEM32(reg, pefa, index, 0x00, 0, 24);
2464
Jiri Pirko2d186ed42018-07-18 11:14:35 +03002465/* reg_pefa_a
2466 * Index in the KVD Linear Centralized Database.
2467 * Activity
2468 * For a new entry: set if ca=0, clear if ca=1
2469 * Set if a packet lookup has hit on the specific entry
2470 * Access: RO
2471 */
2472MLXSW_ITEM32(reg, pefa, a, 0x04, 29, 1);
2473
2474/* reg_pefa_ca
2475 * Clear activity
2476 * When write: activity is according to this field
2477 * When read: after reading the activity is cleared according to ca
2478 * Access: OP
2479 */
2480MLXSW_ITEM32(reg, pefa, ca, 0x04, 24, 1);
2481
Yotam Gigi58726562017-09-19 10:00:12 +02002482#define MLXSW_REG_FLEX_ACTION_SET_LEN 0xA8
Jiri Pirkoe3426e12017-02-03 10:29:00 +01002483
2484/* reg_pefa_flex_action_set
2485 * Action-set to perform when rule is matched.
2486 * Must be zero padded if action set is shorter.
2487 * Access: RW
2488 */
Yotam Gigi58726562017-09-19 10:00:12 +02002489MLXSW_ITEM_BUF(reg, pefa, flex_action_set, 0x08, MLXSW_REG_FLEX_ACTION_SET_LEN);
Jiri Pirkoe3426e12017-02-03 10:29:00 +01002490
Jiri Pirko2d186ed42018-07-18 11:14:35 +03002491static inline void mlxsw_reg_pefa_pack(char *payload, u32 index, bool ca,
Jiri Pirkoe3426e12017-02-03 10:29:00 +01002492 const char *flex_action_set)
2493{
2494 MLXSW_REG_ZERO(pefa, payload);
2495 mlxsw_reg_pefa_index_set(payload, index);
Jiri Pirko2d186ed42018-07-18 11:14:35 +03002496 mlxsw_reg_pefa_ca_set(payload, ca);
2497 if (flex_action_set)
2498 mlxsw_reg_pefa_flex_action_set_memcpy_to(payload,
2499 flex_action_set);
2500}
2501
2502static inline void mlxsw_reg_pefa_unpack(char *payload, bool *p_a)
2503{
2504 *p_a = mlxsw_reg_pefa_a_get(payload);
Jiri Pirkoe3426e12017-02-03 10:29:00 +01002505}
2506
Nir Dotana75e41d2018-12-10 07:11:33 +00002507/* PEMRBT - Policy-Engine Multicast Router Binding Table Register
2508 * --------------------------------------------------------------
2509 * This register is used for binding Multicast router to an ACL group
2510 * that serves the MC router.
2511 * This register is not supported by SwitchX/-2 and Spectrum.
2512 */
2513#define MLXSW_REG_PEMRBT_ID 0x3014
2514#define MLXSW_REG_PEMRBT_LEN 0x14
2515
2516MLXSW_REG_DEFINE(pemrbt, MLXSW_REG_PEMRBT_ID, MLXSW_REG_PEMRBT_LEN);
2517
2518enum mlxsw_reg_pemrbt_protocol {
2519 MLXSW_REG_PEMRBT_PROTO_IPV4,
2520 MLXSW_REG_PEMRBT_PROTO_IPV6,
2521};
2522
2523/* reg_pemrbt_protocol
2524 * Access: Index
2525 */
2526MLXSW_ITEM32(reg, pemrbt, protocol, 0x00, 0, 1);
2527
2528/* reg_pemrbt_group_id
2529 * ACL group identifier.
2530 * Range 0..cap_max_acl_groups-1
2531 * Access: RW
2532 */
2533MLXSW_ITEM32(reg, pemrbt, group_id, 0x10, 0, 16);
2534
2535static inline void
2536mlxsw_reg_pemrbt_pack(char *payload, enum mlxsw_reg_pemrbt_protocol protocol,
2537 u16 group_id)
2538{
2539 MLXSW_REG_ZERO(pemrbt, payload);
2540 mlxsw_reg_pemrbt_protocol_set(payload, protocol);
2541 mlxsw_reg_pemrbt_group_id_set(payload, group_id);
2542}
2543
Jiri Pirko0171cdec2017-02-03 10:28:56 +01002544/* PTCE-V2 - Policy-Engine TCAM Entry Register Version 2
2545 * -----------------------------------------------------
2546 * This register is used for accessing rules within a TCAM region.
2547 * It is a new version of PTCE in order to support wider key,
2548 * mask and action within a TCAM region. This register is not supported
2549 * by SwitchX and SwitchX-2.
2550 */
2551#define MLXSW_REG_PTCE2_ID 0x3017
2552#define MLXSW_REG_PTCE2_LEN 0x1D8
2553
2554MLXSW_REG_DEFINE(ptce2, MLXSW_REG_PTCE2_ID, MLXSW_REG_PTCE2_LEN);
2555
2556/* reg_ptce2_v
2557 * Valid.
2558 * Access: RW
2559 */
2560MLXSW_ITEM32(reg, ptce2, v, 0x00, 31, 1);
2561
2562/* reg_ptce2_a
2563 * Activity. Set if a packet lookup has hit on the specific entry.
2564 * To clear the "a" bit, use "clear activity" op or "clear on read" op.
2565 * Access: RO
2566 */
2567MLXSW_ITEM32(reg, ptce2, a, 0x00, 30, 1);
2568
2569enum mlxsw_reg_ptce2_op {
2570 /* Read operation. */
2571 MLXSW_REG_PTCE2_OP_QUERY_READ = 0,
2572 /* clear on read operation. Used to read entry
2573 * and clear Activity bit.
2574 */
2575 MLXSW_REG_PTCE2_OP_QUERY_CLEAR_ON_READ = 1,
2576 /* Write operation. Used to write a new entry to the table.
2577 * All R/W fields are relevant for new entry. Activity bit is set
2578 * for new entries - Note write with v = 0 will delete the entry.
2579 */
2580 MLXSW_REG_PTCE2_OP_WRITE_WRITE = 0,
2581 /* Update action. Only action set will be updated. */
2582 MLXSW_REG_PTCE2_OP_WRITE_UPDATE = 1,
2583 /* Clear activity. A bit is cleared for the entry. */
2584 MLXSW_REG_PTCE2_OP_WRITE_CLEAR_ACTIVITY = 2,
2585};
2586
2587/* reg_ptce2_op
2588 * Access: OP
2589 */
2590MLXSW_ITEM32(reg, ptce2, op, 0x00, 20, 3);
2591
2592/* reg_ptce2_offset
2593 * Access: Index
2594 */
2595MLXSW_ITEM32(reg, ptce2, offset, 0x00, 0, 16);
2596
Jiri Pirko42df8352018-07-08 23:51:24 +03002597/* reg_ptce2_priority
2598 * Priority of the rule, higher values win. The range is 1..cap_kvd_size-1.
2599 * Note: priority does not have to be unique per rule.
2600 * Within a region, higher priority should have lower offset (no limitation
2601 * between regions in a multi-region).
2602 * Access: RW
2603 */
2604MLXSW_ITEM32(reg, ptce2, priority, 0x04, 0, 24);
2605
Jiri Pirko0171cdec2017-02-03 10:28:56 +01002606/* reg_ptce2_tcam_region_info
2607 * Opaque object that represents the TCAM region.
2608 * Access: Index
2609 */
2610MLXSW_ITEM_BUF(reg, ptce2, tcam_region_info, 0x10,
2611 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2612
Ido Schimmelaecefac2018-07-25 09:23:51 +03002613#define MLXSW_REG_PTCEX_FLEX_KEY_BLOCKS_LEN 96
Jiri Pirko0171cdec2017-02-03 10:28:56 +01002614
2615/* reg_ptce2_flex_key_blocks
2616 * ACL Key.
2617 * Access: RW
2618 */
2619MLXSW_ITEM_BUF(reg, ptce2, flex_key_blocks, 0x20,
Ido Schimmelaecefac2018-07-25 09:23:51 +03002620 MLXSW_REG_PTCEX_FLEX_KEY_BLOCKS_LEN);
Jiri Pirko0171cdec2017-02-03 10:28:56 +01002621
2622/* reg_ptce2_mask
2623 * mask- in the same size as key. A bit that is set directs the TCAM
2624 * to compare the corresponding bit in key. A bit that is clear directs
2625 * the TCAM to ignore the corresponding bit in key.
2626 * Access: RW
2627 */
2628MLXSW_ITEM_BUF(reg, ptce2, mask, 0x80,
Ido Schimmelaecefac2018-07-25 09:23:51 +03002629 MLXSW_REG_PTCEX_FLEX_KEY_BLOCKS_LEN);
Jiri Pirko0171cdec2017-02-03 10:28:56 +01002630
Jiri Pirko0171cdec2017-02-03 10:28:56 +01002631/* reg_ptce2_flex_action_set
2632 * ACL action set.
2633 * Access: RW
2634 */
2635MLXSW_ITEM_BUF(reg, ptce2, flex_action_set, 0xE0,
Yotam Gigi58726562017-09-19 10:00:12 +02002636 MLXSW_REG_FLEX_ACTION_SET_LEN);
Jiri Pirko0171cdec2017-02-03 10:28:56 +01002637
2638static inline void mlxsw_reg_ptce2_pack(char *payload, bool valid,
2639 enum mlxsw_reg_ptce2_op op,
2640 const char *tcam_region_info,
Jiri Pirko42df8352018-07-08 23:51:24 +03002641 u16 offset, u32 priority)
Jiri Pirko0171cdec2017-02-03 10:28:56 +01002642{
2643 MLXSW_REG_ZERO(ptce2, payload);
2644 mlxsw_reg_ptce2_v_set(payload, valid);
2645 mlxsw_reg_ptce2_op_set(payload, op);
2646 mlxsw_reg_ptce2_offset_set(payload, offset);
Jiri Pirko42df8352018-07-08 23:51:24 +03002647 mlxsw_reg_ptce2_priority_set(payload, priority);
Jiri Pirko0171cdec2017-02-03 10:28:56 +01002648 mlxsw_reg_ptce2_tcam_region_info_memcpy_to(payload, tcam_region_info);
2649}
2650
Ido Schimmel8c0d1cd2018-07-25 09:23:52 +03002651/* PERPT - Policy-Engine ERP Table Register
2652 * ----------------------------------------
2653 * This register adds and removes eRPs from the eRP table.
2654 */
2655#define MLXSW_REG_PERPT_ID 0x3021
2656#define MLXSW_REG_PERPT_LEN 0x80
2657
2658MLXSW_REG_DEFINE(perpt, MLXSW_REG_PERPT_ID, MLXSW_REG_PERPT_LEN);
2659
2660/* reg_perpt_erpt_bank
2661 * eRP table bank.
2662 * Range 0 .. cap_max_erp_table_banks - 1
2663 * Access: Index
2664 */
2665MLXSW_ITEM32(reg, perpt, erpt_bank, 0x00, 16, 4);
2666
2667/* reg_perpt_erpt_index
2668 * Index to eRP table within the eRP bank.
2669 * Range is 0 .. cap_max_erp_table_bank_size - 1
2670 * Access: Index
2671 */
2672MLXSW_ITEM32(reg, perpt, erpt_index, 0x00, 0, 8);
2673
2674enum mlxsw_reg_perpt_key_size {
2675 MLXSW_REG_PERPT_KEY_SIZE_2KB,
2676 MLXSW_REG_PERPT_KEY_SIZE_4KB,
2677 MLXSW_REG_PERPT_KEY_SIZE_8KB,
2678 MLXSW_REG_PERPT_KEY_SIZE_12KB,
2679};
2680
2681/* reg_perpt_key_size
2682 * Access: OP
2683 */
2684MLXSW_ITEM32(reg, perpt, key_size, 0x04, 0, 4);
2685
2686/* reg_perpt_bf_bypass
2687 * 0 - The eRP is used only if bloom filter state is set for the given
2688 * rule.
2689 * 1 - The eRP is used regardless of bloom filter state.
2690 * The bypass is an OR condition of region_id or eRP. See PERCR.bf_bypass
2691 * Access: RW
2692 */
2693MLXSW_ITEM32(reg, perpt, bf_bypass, 0x08, 8, 1);
2694
2695/* reg_perpt_erp_id
2696 * eRP ID for use by the rules.
2697 * Access: RW
2698 */
2699MLXSW_ITEM32(reg, perpt, erp_id, 0x08, 0, 4);
2700
2701/* reg_perpt_erpt_base_bank
2702 * Base eRP table bank, points to head of erp_vector
2703 * Range is 0 .. cap_max_erp_table_banks - 1
2704 * Access: OP
2705 */
2706MLXSW_ITEM32(reg, perpt, erpt_base_bank, 0x0C, 16, 4);
2707
2708/* reg_perpt_erpt_base_index
2709 * Base index to eRP table within the eRP bank
2710 * Range is 0 .. cap_max_erp_table_bank_size - 1
2711 * Access: OP
2712 */
2713MLXSW_ITEM32(reg, perpt, erpt_base_index, 0x0C, 0, 8);
2714
2715/* reg_perpt_erp_index_in_vector
2716 * eRP index in the vector.
2717 * Access: OP
2718 */
2719MLXSW_ITEM32(reg, perpt, erp_index_in_vector, 0x10, 0, 4);
2720
2721/* reg_perpt_erp_vector
2722 * eRP vector.
2723 * Access: OP
2724 */
2725MLXSW_ITEM_BIT_ARRAY(reg, perpt, erp_vector, 0x14, 4, 1);
2726
2727/* reg_perpt_mask
2728 * Mask
2729 * 0 - A-TCAM will ignore the bit in key
2730 * 1 - A-TCAM will compare the bit in key
2731 * Access: RW
2732 */
2733MLXSW_ITEM_BUF(reg, perpt, mask, 0x20, MLXSW_REG_PTCEX_FLEX_KEY_BLOCKS_LEN);
2734
2735static inline void mlxsw_reg_perpt_erp_vector_pack(char *payload,
2736 unsigned long *erp_vector,
2737 unsigned long size)
2738{
2739 unsigned long bit;
2740
2741 for_each_set_bit(bit, erp_vector, size)
2742 mlxsw_reg_perpt_erp_vector_set(payload, bit, true);
2743}
2744
2745static inline void
2746mlxsw_reg_perpt_pack(char *payload, u8 erpt_bank, u8 erpt_index,
2747 enum mlxsw_reg_perpt_key_size key_size, u8 erp_id,
2748 u8 erpt_base_bank, u8 erpt_base_index, u8 erp_index,
2749 char *mask)
2750{
2751 MLXSW_REG_ZERO(perpt, payload);
2752 mlxsw_reg_perpt_erpt_bank_set(payload, erpt_bank);
2753 mlxsw_reg_perpt_erpt_index_set(payload, erpt_index);
2754 mlxsw_reg_perpt_key_size_set(payload, key_size);
Nir Dotan03ce5bd2018-12-16 08:49:34 +00002755 mlxsw_reg_perpt_bf_bypass_set(payload, false);
Ido Schimmel8c0d1cd2018-07-25 09:23:52 +03002756 mlxsw_reg_perpt_erp_id_set(payload, erp_id);
2757 mlxsw_reg_perpt_erpt_base_bank_set(payload, erpt_base_bank);
2758 mlxsw_reg_perpt_erpt_base_index_set(payload, erpt_base_index);
2759 mlxsw_reg_perpt_erp_index_in_vector_set(payload, erp_index);
2760 mlxsw_reg_perpt_mask_memcpy_to(payload, mask);
2761}
2762
Jiri Pirko33907872018-07-18 11:14:37 +03002763/* PERAR - Policy-Engine Region Association Register
2764 * -------------------------------------------------
2765 * This register associates a hw region for region_id's. Changing on the fly
2766 * is supported by the device.
2767 */
2768#define MLXSW_REG_PERAR_ID 0x3026
2769#define MLXSW_REG_PERAR_LEN 0x08
2770
2771MLXSW_REG_DEFINE(perar, MLXSW_REG_PERAR_ID, MLXSW_REG_PERAR_LEN);
2772
2773/* reg_perar_region_id
2774 * Region identifier
2775 * Range 0 .. cap_max_regions-1
2776 * Access: Index
2777 */
2778MLXSW_ITEM32(reg, perar, region_id, 0x00, 0, 16);
2779
2780static inline unsigned int
2781mlxsw_reg_perar_hw_regions_needed(unsigned int block_num)
2782{
2783 return DIV_ROUND_UP(block_num, 4);
2784}
2785
2786/* reg_perar_hw_region
2787 * HW Region
2788 * Range 0 .. cap_max_regions-1
2789 * Default: hw_region = region_id
2790 * For a 8 key block region, 2 consecutive regions are used
2791 * For a 12 key block region, 3 consecutive regions are used
2792 * Access: RW
2793 */
2794MLXSW_ITEM32(reg, perar, hw_region, 0x04, 0, 16);
2795
2796static inline void mlxsw_reg_perar_pack(char *payload, u16 region_id,
2797 u16 hw_region)
2798{
2799 MLXSW_REG_ZERO(perar, payload);
2800 mlxsw_reg_perar_region_id_set(payload, region_id);
2801 mlxsw_reg_perar_hw_region_set(payload, hw_region);
2802}
2803
Ido Schimmelaecefac2018-07-25 09:23:51 +03002804/* PTCE-V3 - Policy-Engine TCAM Entry Register Version 3
2805 * -----------------------------------------------------
2806 * This register is a new version of PTCE-V2 in order to support the
2807 * A-TCAM. This register is not supported by SwitchX/-2 and Spectrum.
2808 */
2809#define MLXSW_REG_PTCE3_ID 0x3027
2810#define MLXSW_REG_PTCE3_LEN 0xF0
2811
2812MLXSW_REG_DEFINE(ptce3, MLXSW_REG_PTCE3_ID, MLXSW_REG_PTCE3_LEN);
2813
2814/* reg_ptce3_v
2815 * Valid.
2816 * Access: RW
2817 */
2818MLXSW_ITEM32(reg, ptce3, v, 0x00, 31, 1);
2819
2820enum mlxsw_reg_ptce3_op {
2821 /* Write operation. Used to write a new entry to the table.
2822 * All R/W fields are relevant for new entry. Activity bit is set
2823 * for new entries. Write with v = 0 will delete the entry. Must
2824 * not be used if an entry exists.
2825 */
2826 MLXSW_REG_PTCE3_OP_WRITE_WRITE = 0,
2827 /* Update operation */
2828 MLXSW_REG_PTCE3_OP_WRITE_UPDATE = 1,
2829 /* Read operation */
2830 MLXSW_REG_PTCE3_OP_QUERY_READ = 0,
2831};
2832
2833/* reg_ptce3_op
2834 * Access: OP
2835 */
2836MLXSW_ITEM32(reg, ptce3, op, 0x00, 20, 3);
2837
2838/* reg_ptce3_priority
2839 * Priority of the rule. Higher values win.
2840 * For Spectrum-2 range is 1..cap_kvd_size - 1
2841 * Note: Priority does not have to be unique per rule.
2842 * Access: RW
2843 */
2844MLXSW_ITEM32(reg, ptce3, priority, 0x04, 0, 24);
2845
2846/* reg_ptce3_tcam_region_info
2847 * Opaque object that represents the TCAM region.
2848 * Access: Index
2849 */
2850MLXSW_ITEM_BUF(reg, ptce3, tcam_region_info, 0x10,
2851 MLXSW_REG_PXXX_TCAM_REGION_INFO_LEN);
2852
2853/* reg_ptce3_flex2_key_blocks
2854 * ACL key. The key must be masked according to eRP (if exists) or
2855 * according to master mask.
2856 * Access: Index
2857 */
2858MLXSW_ITEM_BUF(reg, ptce3, flex2_key_blocks, 0x20,
2859 MLXSW_REG_PTCEX_FLEX_KEY_BLOCKS_LEN);
2860
2861/* reg_ptce3_erp_id
2862 * eRP ID.
2863 * Access: Index
2864 */
2865MLXSW_ITEM32(reg, ptce3, erp_id, 0x80, 0, 4);
2866
2867/* reg_ptce3_delta_start
2868 * Start point of delta_value and delta_mask, in bits. Must not exceed
2869 * num_key_blocks * 36 - 8. Reserved when delta_mask = 0.
2870 * Access: Index
2871 */
2872MLXSW_ITEM32(reg, ptce3, delta_start, 0x84, 0, 10);
2873
2874/* reg_ptce3_delta_mask
2875 * Delta mask.
2876 * 0 - Ignore relevant bit in delta_value
2877 * 1 - Compare relevant bit in delta_value
2878 * Delta mask must not be set for reserved fields in the key blocks.
2879 * Note: No delta when no eRPs. Thus, for regions with
2880 * PERERP.erpt_pointer_valid = 0 the delta mask must be 0.
2881 * Access: Index
2882 */
2883MLXSW_ITEM32(reg, ptce3, delta_mask, 0x88, 16, 8);
2884
2885/* reg_ptce3_delta_value
2886 * Delta value.
2887 * Bits which are masked by delta_mask must be 0.
2888 * Access: Index
2889 */
2890MLXSW_ITEM32(reg, ptce3, delta_value, 0x88, 0, 8);
2891
2892/* reg_ptce3_prune_vector
2893 * Pruning vector relative to the PERPT.erp_id.
2894 * Used for reducing lookups.
2895 * 0 - NEED: Do a lookup using the eRP.
2896 * 1 - PRUNE: Do not perform a lookup using the eRP.
2897 * Maybe be modified by PEAPBL and PEAPBM.
2898 * Note: In Spectrum-2, a region of 8 key blocks must be set to either
2899 * all 1's or all 0's.
2900 * Access: RW
2901 */
2902MLXSW_ITEM_BIT_ARRAY(reg, ptce3, prune_vector, 0x90, 4, 1);
2903
2904/* reg_ptce3_prune_ctcam
2905 * Pruning on C-TCAM. Used for reducing lookups.
2906 * 0 - NEED: Do a lookup in the C-TCAM.
2907 * 1 - PRUNE: Do not perform a lookup in the C-TCAM.
2908 * Access: RW
2909 */
2910MLXSW_ITEM32(reg, ptce3, prune_ctcam, 0x94, 31, 1);
2911
2912/* reg_ptce3_large_exists
2913 * Large entry key ID exists.
2914 * Within the region:
2915 * 0 - SINGLE: The large_entry_key_id is not currently in use.
2916 * For rule insert: The MSB of the key (blocks 6..11) will be added.
2917 * For rule delete: The MSB of the key will be removed.
2918 * 1 - NON_SINGLE: The large_entry_key_id is currently in use.
2919 * For rule insert: The MSB of the key (blocks 6..11) will not be added.
2920 * For rule delete: The MSB of the key will not be removed.
2921 * Access: WO
2922 */
2923MLXSW_ITEM32(reg, ptce3, large_exists, 0x98, 31, 1);
2924
2925/* reg_ptce3_large_entry_key_id
2926 * Large entry key ID.
2927 * A key for 12 key blocks rules. Reserved when region has less than 12 key
2928 * blocks. Must be different for different keys which have the same common
2929 * 6 key blocks (MSB, blocks 6..11) key within a region.
2930 * Range is 0..cap_max_pe_large_key_id - 1
2931 * Access: RW
2932 */
2933MLXSW_ITEM32(reg, ptce3, large_entry_key_id, 0x98, 0, 24);
2934
2935/* reg_ptce3_action_pointer
2936 * Pointer to action.
2937 * Range is 0..cap_max_kvd_action_sets - 1
2938 * Access: RW
2939 */
2940MLXSW_ITEM32(reg, ptce3, action_pointer, 0xA0, 0, 24);
2941
2942static inline void mlxsw_reg_ptce3_pack(char *payload, bool valid,
2943 enum mlxsw_reg_ptce3_op op,
2944 u32 priority,
2945 const char *tcam_region_info,
2946 const char *key, u8 erp_id,
Jiri Pirkoc22291f2018-11-14 08:22:35 +00002947 u16 delta_start, u8 delta_mask,
2948 u8 delta_value, bool large_exists,
2949 u32 lkey_id, u32 action_pointer)
Ido Schimmelaecefac2018-07-25 09:23:51 +03002950{
2951 MLXSW_REG_ZERO(ptce3, payload);
2952 mlxsw_reg_ptce3_v_set(payload, valid);
2953 mlxsw_reg_ptce3_op_set(payload, op);
2954 mlxsw_reg_ptce3_priority_set(payload, priority);
2955 mlxsw_reg_ptce3_tcam_region_info_memcpy_to(payload, tcam_region_info);
2956 mlxsw_reg_ptce3_flex2_key_blocks_memcpy_to(payload, key);
2957 mlxsw_reg_ptce3_erp_id_set(payload, erp_id);
Jiri Pirkoc22291f2018-11-14 08:22:35 +00002958 mlxsw_reg_ptce3_delta_start_set(payload, delta_start);
2959 mlxsw_reg_ptce3_delta_mask_set(payload, delta_mask);
2960 mlxsw_reg_ptce3_delta_value_set(payload, delta_value);
Ido Schimmelaecefac2018-07-25 09:23:51 +03002961 mlxsw_reg_ptce3_large_exists_set(payload, large_exists);
2962 mlxsw_reg_ptce3_large_entry_key_id_set(payload, lkey_id);
2963 mlxsw_reg_ptce3_action_pointer_set(payload, action_pointer);
2964}
2965
Ido Schimmel481662a2018-07-18 11:14:38 +03002966/* PERCR - Policy-Engine Region Configuration Register
2967 * ---------------------------------------------------
2968 * This register configures the region parameters. The region_id must be
2969 * allocated.
2970 */
2971#define MLXSW_REG_PERCR_ID 0x302A
2972#define MLXSW_REG_PERCR_LEN 0x80
2973
2974MLXSW_REG_DEFINE(percr, MLXSW_REG_PERCR_ID, MLXSW_REG_PERCR_LEN);
2975
2976/* reg_percr_region_id
2977 * Region identifier.
2978 * Range 0..cap_max_regions-1
2979 * Access: Index
2980 */
2981MLXSW_ITEM32(reg, percr, region_id, 0x00, 0, 16);
2982
2983/* reg_percr_atcam_ignore_prune
2984 * Ignore prune_vector by other A-TCAM rules. Used e.g., for a new rule.
2985 * Access: RW
2986 */
2987MLXSW_ITEM32(reg, percr, atcam_ignore_prune, 0x04, 25, 1);
2988
2989/* reg_percr_ctcam_ignore_prune
2990 * Ignore prune_ctcam by other A-TCAM rules. Used e.g., for a new rule.
2991 * Access: RW
2992 */
2993MLXSW_ITEM32(reg, percr, ctcam_ignore_prune, 0x04, 24, 1);
2994
2995/* reg_percr_bf_bypass
2996 * Bloom filter bypass.
2997 * 0 - Bloom filter is used (default)
2998 * 1 - Bloom filter is bypassed. The bypass is an OR condition of
2999 * region_id or eRP. See PERPT.bf_bypass
3000 * Access: RW
3001 */
3002MLXSW_ITEM32(reg, percr, bf_bypass, 0x04, 16, 1);
3003
3004/* reg_percr_master_mask
3005 * Master mask. Logical OR mask of all masks of all rules of a region
3006 * (both A-TCAM and C-TCAM). When there are no eRPs
3007 * (erpt_pointer_valid = 0), then this provides the mask.
3008 * Access: RW
3009 */
3010MLXSW_ITEM_BUF(reg, percr, master_mask, 0x20, 96);
3011
3012static inline void mlxsw_reg_percr_pack(char *payload, u16 region_id)
3013{
3014 MLXSW_REG_ZERO(percr, payload);
3015 mlxsw_reg_percr_region_id_set(payload, region_id);
3016 mlxsw_reg_percr_atcam_ignore_prune_set(payload, false);
3017 mlxsw_reg_percr_ctcam_ignore_prune_set(payload, false);
Nir Dotan03ce5bd2018-12-16 08:49:34 +00003018 mlxsw_reg_percr_bf_bypass_set(payload, false);
Ido Schimmel481662a2018-07-18 11:14:38 +03003019}
3020
Ido Schimmelf1c7d9c2018-07-18 11:14:39 +03003021/* PERERP - Policy-Engine Region eRP Register
3022 * ------------------------------------------
3023 * This register configures the region eRP. The region_id must be
3024 * allocated.
3025 */
3026#define MLXSW_REG_PERERP_ID 0x302B
3027#define MLXSW_REG_PERERP_LEN 0x1C
3028
3029MLXSW_REG_DEFINE(pererp, MLXSW_REG_PERERP_ID, MLXSW_REG_PERERP_LEN);
3030
3031/* reg_pererp_region_id
3032 * Region identifier.
3033 * Range 0..cap_max_regions-1
3034 * Access: Index
3035 */
3036MLXSW_ITEM32(reg, pererp, region_id, 0x00, 0, 16);
3037
3038/* reg_pererp_ctcam_le
3039 * C-TCAM lookup enable. Reserved when erpt_pointer_valid = 0.
3040 * Access: RW
3041 */
3042MLXSW_ITEM32(reg, pererp, ctcam_le, 0x04, 28, 1);
3043
3044/* reg_pererp_erpt_pointer_valid
3045 * erpt_pointer is valid.
3046 * Access: RW
3047 */
3048MLXSW_ITEM32(reg, pererp, erpt_pointer_valid, 0x10, 31, 1);
3049
3050/* reg_pererp_erpt_bank_pointer
3051 * Pointer to eRP table bank. May be modified at any time.
3052 * Range 0..cap_max_erp_table_banks-1
3053 * Reserved when erpt_pointer_valid = 0
3054 */
3055MLXSW_ITEM32(reg, pererp, erpt_bank_pointer, 0x10, 16, 4);
3056
3057/* reg_pererp_erpt_pointer
3058 * Pointer to eRP table within the eRP bank. Can be changed for an
3059 * existing region.
3060 * Range 0..cap_max_erp_table_size-1
3061 * Reserved when erpt_pointer_valid = 0
3062 * Access: RW
3063 */
3064MLXSW_ITEM32(reg, pererp, erpt_pointer, 0x10, 0, 8);
3065
3066/* reg_pererp_erpt_vector
3067 * Vector of allowed eRP indexes starting from erpt_pointer within the
3068 * erpt_bank_pointer. Next entries will be in next bank.
3069 * Note that eRP index is used and not eRP ID.
3070 * Reserved when erpt_pointer_valid = 0
3071 * Access: RW
3072 */
3073MLXSW_ITEM_BIT_ARRAY(reg, pererp, erpt_vector, 0x14, 4, 1);
3074
3075/* reg_pererp_master_rp_id
3076 * Master RP ID. When there are no eRPs, then this provides the eRP ID
3077 * for the lookup. Can be changed for an existing region.
3078 * Reserved when erpt_pointer_valid = 1
3079 * Access: RW
3080 */
3081MLXSW_ITEM32(reg, pererp, master_rp_id, 0x18, 0, 4);
3082
Ido Schimmel91329e22018-07-25 09:23:50 +03003083static inline void mlxsw_reg_pererp_erp_vector_pack(char *payload,
3084 unsigned long *erp_vector,
3085 unsigned long size)
3086{
3087 unsigned long bit;
3088
3089 for_each_set_bit(bit, erp_vector, size)
3090 mlxsw_reg_pererp_erpt_vector_set(payload, bit, true);
3091}
3092
3093static inline void mlxsw_reg_pererp_pack(char *payload, u16 region_id,
3094 bool ctcam_le, bool erpt_pointer_valid,
3095 u8 erpt_bank_pointer, u8 erpt_pointer,
3096 u8 master_rp_id)
Ido Schimmelf1c7d9c2018-07-18 11:14:39 +03003097{
3098 MLXSW_REG_ZERO(pererp, payload);
3099 mlxsw_reg_pererp_region_id_set(payload, region_id);
Ido Schimmel91329e22018-07-25 09:23:50 +03003100 mlxsw_reg_pererp_ctcam_le_set(payload, ctcam_le);
3101 mlxsw_reg_pererp_erpt_pointer_valid_set(payload, erpt_pointer_valid);
3102 mlxsw_reg_pererp_erpt_bank_pointer_set(payload, erpt_bank_pointer);
3103 mlxsw_reg_pererp_erpt_pointer_set(payload, erpt_pointer);
3104 mlxsw_reg_pererp_master_rp_id_set(payload, master_rp_id);
Ido Schimmelf1c7d9c2018-07-18 11:14:39 +03003105}
3106
Nir Dotan418089a2018-12-16 08:49:24 +00003107/* PEABFE - Policy-Engine Algorithmic Bloom Filter Entries Register
3108 * ----------------------------------------------------------------
3109 * This register configures the Bloom filter entries.
3110 */
3111#define MLXSW_REG_PEABFE_ID 0x3022
3112#define MLXSW_REG_PEABFE_BASE_LEN 0x10
3113#define MLXSW_REG_PEABFE_BF_REC_LEN 0x4
3114#define MLXSW_REG_PEABFE_BF_REC_MAX_COUNT 256
3115#define MLXSW_REG_PEABFE_LEN (MLXSW_REG_PEABFE_BASE_LEN + \
3116 MLXSW_REG_PEABFE_BF_REC_LEN * \
3117 MLXSW_REG_PEABFE_BF_REC_MAX_COUNT)
3118
3119MLXSW_REG_DEFINE(peabfe, MLXSW_REG_PEABFE_ID, MLXSW_REG_PEABFE_LEN);
3120
3121/* reg_peabfe_size
3122 * Number of BF entries to be updated.
3123 * Range 1..256
3124 * Access: Op
3125 */
3126MLXSW_ITEM32(reg, peabfe, size, 0x00, 0, 9);
3127
3128/* reg_peabfe_bf_entry_state
3129 * Bloom filter state
3130 * 0 - Clear
3131 * 1 - Set
3132 * Access: RW
3133 */
3134MLXSW_ITEM32_INDEXED(reg, peabfe, bf_entry_state,
3135 MLXSW_REG_PEABFE_BASE_LEN, 31, 1,
3136 MLXSW_REG_PEABFE_BF_REC_LEN, 0x00, false);
3137
3138/* reg_peabfe_bf_entry_bank
3139 * Bloom filter bank ID
3140 * Range 0..cap_max_erp_table_banks-1
3141 * Access: Index
3142 */
3143MLXSW_ITEM32_INDEXED(reg, peabfe, bf_entry_bank,
3144 MLXSW_REG_PEABFE_BASE_LEN, 24, 4,
3145 MLXSW_REG_PEABFE_BF_REC_LEN, 0x00, false);
3146
3147/* reg_peabfe_bf_entry_index
3148 * Bloom filter entry index
3149 * Range 0..2^cap_max_bf_log-1
3150 * Access: Index
3151 */
3152MLXSW_ITEM32_INDEXED(reg, peabfe, bf_entry_index,
3153 MLXSW_REG_PEABFE_BASE_LEN, 0, 24,
3154 MLXSW_REG_PEABFE_BF_REC_LEN, 0x00, false);
3155
3156static inline void mlxsw_reg_peabfe_pack(char *payload)
3157{
3158 MLXSW_REG_ZERO(peabfe, payload);
3159}
3160
3161static inline void mlxsw_reg_peabfe_rec_pack(char *payload, int rec_index,
3162 u8 state, u8 bank, u32 bf_index)
3163{
3164 u8 num_rec = mlxsw_reg_peabfe_size_get(payload);
3165
3166 if (rec_index >= num_rec)
3167 mlxsw_reg_peabfe_size_set(payload, rec_index + 1);
3168 mlxsw_reg_peabfe_bf_entry_state_set(payload, rec_index, state);
3169 mlxsw_reg_peabfe_bf_entry_bank_set(payload, rec_index, bank);
3170 mlxsw_reg_peabfe_bf_entry_index_set(payload, rec_index, bf_index);
3171}
3172
Jiri Pirkoc33d0cb2018-07-18 11:14:30 +03003173/* IEDR - Infrastructure Entry Delete Register
3174 * ----------------------------------------------------
3175 * This register is used for deleting entries from the entry tables.
3176 * It is legitimate to attempt to delete a nonexisting entry (the device will
3177 * respond as a good flow).
3178 */
3179#define MLXSW_REG_IEDR_ID 0x3804
3180#define MLXSW_REG_IEDR_BASE_LEN 0x10 /* base length, without records */
3181#define MLXSW_REG_IEDR_REC_LEN 0x8 /* record length */
3182#define MLXSW_REG_IEDR_REC_MAX_COUNT 64
3183#define MLXSW_REG_IEDR_LEN (MLXSW_REG_IEDR_BASE_LEN + \
3184 MLXSW_REG_IEDR_REC_LEN * \
3185 MLXSW_REG_IEDR_REC_MAX_COUNT)
3186
3187MLXSW_REG_DEFINE(iedr, MLXSW_REG_IEDR_ID, MLXSW_REG_IEDR_LEN);
3188
3189/* reg_iedr_num_rec
3190 * Number of records.
3191 * Access: OP
3192 */
3193MLXSW_ITEM32(reg, iedr, num_rec, 0x00, 0, 8);
3194
3195/* reg_iedr_rec_type
3196 * Resource type.
3197 * Access: OP
3198 */
3199MLXSW_ITEM32_INDEXED(reg, iedr, rec_type, MLXSW_REG_IEDR_BASE_LEN, 24, 8,
3200 MLXSW_REG_IEDR_REC_LEN, 0x00, false);
3201
3202/* reg_iedr_rec_size
3203 * Size of entries do be deleted. The unit is 1 entry, regardless of entry type.
3204 * Access: OP
3205 */
3206MLXSW_ITEM32_INDEXED(reg, iedr, rec_size, MLXSW_REG_IEDR_BASE_LEN, 0, 11,
3207 MLXSW_REG_IEDR_REC_LEN, 0x00, false);
3208
3209/* reg_iedr_rec_index_start
3210 * Resource index start.
3211 * Access: OP
3212 */
3213MLXSW_ITEM32_INDEXED(reg, iedr, rec_index_start, MLXSW_REG_IEDR_BASE_LEN, 0, 24,
3214 MLXSW_REG_IEDR_REC_LEN, 0x04, false);
3215
3216static inline void mlxsw_reg_iedr_pack(char *payload)
3217{
3218 MLXSW_REG_ZERO(iedr, payload);
3219}
3220
3221static inline void mlxsw_reg_iedr_rec_pack(char *payload, int rec_index,
3222 u8 rec_type, u16 rec_size,
3223 u32 rec_index_start)
3224{
3225 u8 num_rec = mlxsw_reg_iedr_num_rec_get(payload);
3226
3227 if (rec_index >= num_rec)
3228 mlxsw_reg_iedr_num_rec_set(payload, rec_index + 1);
3229 mlxsw_reg_iedr_rec_type_set(payload, rec_index, rec_type);
3230 mlxsw_reg_iedr_rec_size_set(payload, rec_index, rec_size);
3231 mlxsw_reg_iedr_rec_index_start_set(payload, rec_index, rec_index_start);
3232}
3233
Petr Machata746da422018-07-27 15:26:58 +03003234/* QPTS - QoS Priority Trust State Register
3235 * ----------------------------------------
3236 * This register controls the port policy to calculate the switch priority and
3237 * packet color based on incoming packet fields.
3238 */
3239#define MLXSW_REG_QPTS_ID 0x4002
3240#define MLXSW_REG_QPTS_LEN 0x8
3241
3242MLXSW_REG_DEFINE(qpts, MLXSW_REG_QPTS_ID, MLXSW_REG_QPTS_LEN);
3243
3244/* reg_qpts_local_port
3245 * Local port number.
3246 * Access: Index
3247 *
3248 * Note: CPU port is supported.
3249 */
3250MLXSW_ITEM32(reg, qpts, local_port, 0x00, 16, 8);
3251
3252enum mlxsw_reg_qpts_trust_state {
3253 MLXSW_REG_QPTS_TRUST_STATE_PCP = 1,
3254 MLXSW_REG_QPTS_TRUST_STATE_DSCP = 2, /* For MPLS, trust EXP. */
3255};
3256
3257/* reg_qpts_trust_state
3258 * Trust state for a given port.
3259 * Access: RW
3260 */
3261MLXSW_ITEM32(reg, qpts, trust_state, 0x04, 0, 3);
3262
3263static inline void mlxsw_reg_qpts_pack(char *payload, u8 local_port,
3264 enum mlxsw_reg_qpts_trust_state ts)
3265{
3266 MLXSW_REG_ZERO(qpts, payload);
3267
3268 mlxsw_reg_qpts_local_port_set(payload, local_port);
3269 mlxsw_reg_qpts_trust_state_set(payload, ts);
3270}
3271
Nogah Frankel76a4c7d2016-11-25 10:33:46 +01003272/* QPCR - QoS Policer Configuration Register
3273 * -----------------------------------------
3274 * The QPCR register is used to create policers - that limit
3275 * the rate of bytes or packets via some trap group.
3276 */
3277#define MLXSW_REG_QPCR_ID 0x4004
3278#define MLXSW_REG_QPCR_LEN 0x28
3279
3280MLXSW_REG_DEFINE(qpcr, MLXSW_REG_QPCR_ID, MLXSW_REG_QPCR_LEN);
3281
3282enum mlxsw_reg_qpcr_g {
3283 MLXSW_REG_QPCR_G_GLOBAL = 2,
3284 MLXSW_REG_QPCR_G_STORM_CONTROL = 3,
3285};
3286
3287/* reg_qpcr_g
3288 * The policer type.
3289 * Access: Index
3290 */
3291MLXSW_ITEM32(reg, qpcr, g, 0x00, 14, 2);
3292
3293/* reg_qpcr_pid
3294 * Policer ID.
3295 * Access: Index
3296 */
3297MLXSW_ITEM32(reg, qpcr, pid, 0x00, 0, 14);
3298
3299/* reg_qpcr_color_aware
3300 * Is the policer aware of colors.
3301 * Must be 0 (unaware) for cpu port.
3302 * Access: RW for unbounded policer. RO for bounded policer.
3303 */
3304MLXSW_ITEM32(reg, qpcr, color_aware, 0x04, 15, 1);
3305
3306/* reg_qpcr_bytes
3307 * Is policer limit is for bytes per sec or packets per sec.
3308 * 0 - packets
3309 * 1 - bytes
3310 * Access: RW for unbounded policer. RO for bounded policer.
3311 */
3312MLXSW_ITEM32(reg, qpcr, bytes, 0x04, 14, 1);
3313
3314enum mlxsw_reg_qpcr_ir_units {
3315 MLXSW_REG_QPCR_IR_UNITS_M,
3316 MLXSW_REG_QPCR_IR_UNITS_K,
3317};
3318
3319/* reg_qpcr_ir_units
3320 * Policer's units for cir and eir fields (for bytes limits only)
3321 * 1 - 10^3
3322 * 0 - 10^6
3323 * Access: OP
3324 */
3325MLXSW_ITEM32(reg, qpcr, ir_units, 0x04, 12, 1);
3326
3327enum mlxsw_reg_qpcr_rate_type {
3328 MLXSW_REG_QPCR_RATE_TYPE_SINGLE = 1,
3329 MLXSW_REG_QPCR_RATE_TYPE_DOUBLE = 2,
3330};
3331
3332/* reg_qpcr_rate_type
3333 * Policer can have one limit (single rate) or 2 limits with specific operation
3334 * for packets that exceed the lower rate but not the upper one.
3335 * (For cpu port must be single rate)
3336 * Access: RW for unbounded policer. RO for bounded policer.
3337 */
3338MLXSW_ITEM32(reg, qpcr, rate_type, 0x04, 8, 2);
3339
3340/* reg_qpc_cbs
3341 * Policer's committed burst size.
3342 * The policer is working with time slices of 50 nano sec. By default every
3343 * slice is granted the proportionate share of the committed rate. If we want to
3344 * allow a slice to exceed that share (while still keeping the rate per sec) we
3345 * can allow burst. The burst size is between the default proportionate share
3346 * (and no lower than 8) to 32Gb. (Even though giving a number higher than the
3347 * committed rate will result in exceeding the rate). The burst size must be a
3348 * log of 2 and will be determined by 2^cbs.
3349 * Access: RW
3350 */
3351MLXSW_ITEM32(reg, qpcr, cbs, 0x08, 24, 6);
3352
3353/* reg_qpcr_cir
3354 * Policer's committed rate.
3355 * The rate used for sungle rate, the lower rate for double rate.
3356 * For bytes limits, the rate will be this value * the unit from ir_units.
3357 * (Resolution error is up to 1%).
3358 * Access: RW
3359 */
3360MLXSW_ITEM32(reg, qpcr, cir, 0x0C, 0, 32);
3361
3362/* reg_qpcr_eir
3363 * Policer's exceed rate.
3364 * The higher rate for double rate, reserved for single rate.
3365 * Lower rate for double rate policer.
3366 * For bytes limits, the rate will be this value * the unit from ir_units.
3367 * (Resolution error is up to 1%).
3368 * Access: RW
3369 */
3370MLXSW_ITEM32(reg, qpcr, eir, 0x10, 0, 32);
3371
3372#define MLXSW_REG_QPCR_DOUBLE_RATE_ACTION 2
3373
3374/* reg_qpcr_exceed_action.
3375 * What to do with packets between the 2 limits for double rate.
3376 * Access: RW for unbounded policer. RO for bounded policer.
3377 */
3378MLXSW_ITEM32(reg, qpcr, exceed_action, 0x14, 0, 4);
3379
3380enum mlxsw_reg_qpcr_action {
3381 /* Discard */
3382 MLXSW_REG_QPCR_ACTION_DISCARD = 1,
3383 /* Forward and set color to red.
3384 * If the packet is intended to cpu port, it will be dropped.
3385 */
3386 MLXSW_REG_QPCR_ACTION_FORWARD = 2,
3387};
3388
3389/* reg_qpcr_violate_action
3390 * What to do with packets that cross the cir limit (for single rate) or the eir
3391 * limit (for double rate).
3392 * Access: RW for unbounded policer. RO for bounded policer.
3393 */
3394MLXSW_ITEM32(reg, qpcr, violate_action, 0x18, 0, 4);
3395
3396static inline void mlxsw_reg_qpcr_pack(char *payload, u16 pid,
3397 enum mlxsw_reg_qpcr_ir_units ir_units,
3398 bool bytes, u32 cir, u16 cbs)
3399{
3400 MLXSW_REG_ZERO(qpcr, payload);
3401 mlxsw_reg_qpcr_pid_set(payload, pid);
3402 mlxsw_reg_qpcr_g_set(payload, MLXSW_REG_QPCR_G_GLOBAL);
3403 mlxsw_reg_qpcr_rate_type_set(payload, MLXSW_REG_QPCR_RATE_TYPE_SINGLE);
3404 mlxsw_reg_qpcr_violate_action_set(payload,
3405 MLXSW_REG_QPCR_ACTION_DISCARD);
3406 mlxsw_reg_qpcr_cir_set(payload, cir);
3407 mlxsw_reg_qpcr_ir_units_set(payload, ir_units);
3408 mlxsw_reg_qpcr_bytes_set(payload, bytes);
3409 mlxsw_reg_qpcr_cbs_set(payload, cbs);
3410}
3411
Ido Schimmel2c63a552016-04-06 17:10:07 +02003412/* QTCT - QoS Switch Traffic Class Table
3413 * -------------------------------------
3414 * Configures the mapping between the packet switch priority and the
3415 * traffic class on the transmit port.
3416 */
3417#define MLXSW_REG_QTCT_ID 0x400A
3418#define MLXSW_REG_QTCT_LEN 0x08
3419
Jiri Pirko21978dc2016-10-21 16:07:20 +02003420MLXSW_REG_DEFINE(qtct, MLXSW_REG_QTCT_ID, MLXSW_REG_QTCT_LEN);
Ido Schimmel2c63a552016-04-06 17:10:07 +02003421
3422/* reg_qtct_local_port
3423 * Local port number.
3424 * Access: Index
3425 *
3426 * Note: CPU port is not supported.
3427 */
3428MLXSW_ITEM32(reg, qtct, local_port, 0x00, 16, 8);
3429
3430/* reg_qtct_sub_port
3431 * Virtual port within the physical port.
3432 * Should be set to 0 when virtual ports are not enabled on the port.
3433 * Access: Index
3434 */
3435MLXSW_ITEM32(reg, qtct, sub_port, 0x00, 8, 8);
3436
3437/* reg_qtct_switch_prio
3438 * Switch priority.
3439 * Access: Index
3440 */
3441MLXSW_ITEM32(reg, qtct, switch_prio, 0x00, 0, 4);
3442
3443/* reg_qtct_tclass
3444 * Traffic class.
3445 * Default values:
3446 * switch_prio 0 : tclass 1
3447 * switch_prio 1 : tclass 0
3448 * switch_prio i : tclass i, for i > 1
3449 * Access: RW
3450 */
3451MLXSW_ITEM32(reg, qtct, tclass, 0x04, 0, 4);
3452
3453static inline void mlxsw_reg_qtct_pack(char *payload, u8 local_port,
3454 u8 switch_prio, u8 tclass)
3455{
3456 MLXSW_REG_ZERO(qtct, payload);
3457 mlxsw_reg_qtct_local_port_set(payload, local_port);
3458 mlxsw_reg_qtct_switch_prio_set(payload, switch_prio);
3459 mlxsw_reg_qtct_tclass_set(payload, tclass);
3460}
3461
Ido Schimmelb9b7cee2016-04-06 17:10:06 +02003462/* QEEC - QoS ETS Element Configuration Register
3463 * ---------------------------------------------
3464 * Configures the ETS elements.
3465 */
3466#define MLXSW_REG_QEEC_ID 0x400D
Petr Machata8b931822018-10-31 09:56:42 +00003467#define MLXSW_REG_QEEC_LEN 0x20
Ido Schimmelb9b7cee2016-04-06 17:10:06 +02003468
Jiri Pirko21978dc2016-10-21 16:07:20 +02003469MLXSW_REG_DEFINE(qeec, MLXSW_REG_QEEC_ID, MLXSW_REG_QEEC_LEN);
Ido Schimmelb9b7cee2016-04-06 17:10:06 +02003470
3471/* reg_qeec_local_port
3472 * Local port number.
3473 * Access: Index
3474 *
3475 * Note: CPU port is supported.
3476 */
3477MLXSW_ITEM32(reg, qeec, local_port, 0x00, 16, 8);
3478
3479enum mlxsw_reg_qeec_hr {
3480 MLXSW_REG_QEEC_HIERARCY_PORT,
3481 MLXSW_REG_QEEC_HIERARCY_GROUP,
3482 MLXSW_REG_QEEC_HIERARCY_SUBGROUP,
3483 MLXSW_REG_QEEC_HIERARCY_TC,
3484};
3485
3486/* reg_qeec_element_hierarchy
3487 * 0 - Port
3488 * 1 - Group
3489 * 2 - Subgroup
3490 * 3 - Traffic Class
3491 * Access: Index
3492 */
3493MLXSW_ITEM32(reg, qeec, element_hierarchy, 0x04, 16, 4);
3494
3495/* reg_qeec_element_index
3496 * The index of the element in the hierarchy.
3497 * Access: Index
3498 */
3499MLXSW_ITEM32(reg, qeec, element_index, 0x04, 0, 8);
3500
3501/* reg_qeec_next_element_index
3502 * The index of the next (lower) element in the hierarchy.
3503 * Access: RW
3504 *
3505 * Note: Reserved for element_hierarchy 0.
3506 */
3507MLXSW_ITEM32(reg, qeec, next_element_index, 0x08, 0, 8);
3508
Petr Machata8b931822018-10-31 09:56:42 +00003509/* reg_qeec_mise
3510 * Min shaper configuration enable. Enables configuration of the min
3511 * shaper on this ETS element
3512 * 0 - Disable
3513 * 1 - Enable
3514 * Access: RW
3515 */
3516MLXSW_ITEM32(reg, qeec, mise, 0x0C, 31, 1);
3517
Ido Schimmelb9b7cee2016-04-06 17:10:06 +02003518enum {
3519 MLXSW_REG_QEEC_BYTES_MODE,
3520 MLXSW_REG_QEEC_PACKETS_MODE,
3521};
3522
3523/* reg_qeec_pb
3524 * Packets or bytes mode.
3525 * 0 - Bytes mode
3526 * 1 - Packets mode
3527 * Access: RW
3528 *
3529 * Note: Used for max shaper configuration. For Spectrum, packets mode
3530 * is supported only for traffic classes of CPU port.
3531 */
3532MLXSW_ITEM32(reg, qeec, pb, 0x0C, 28, 1);
3533
Petr Machata8b931822018-10-31 09:56:42 +00003534/* The smallest permitted min shaper rate. */
3535#define MLXSW_REG_QEEC_MIS_MIN 200000 /* Kbps */
3536
3537/* reg_qeec_min_shaper_rate
3538 * Min shaper information rate.
3539 * For CPU port, can only be configured for port hierarchy.
3540 * When in bytes mode, value is specified in units of 1000bps.
3541 * Access: RW
3542 */
3543MLXSW_ITEM32(reg, qeec, min_shaper_rate, 0x0C, 0, 28);
3544
Ido Schimmelb9b7cee2016-04-06 17:10:06 +02003545/* reg_qeec_mase
3546 * Max shaper configuration enable. Enables configuration of the max
3547 * shaper on this ETS element.
3548 * 0 - Disable
3549 * 1 - Enable
3550 * Access: RW
3551 */
3552MLXSW_ITEM32(reg, qeec, mase, 0x10, 31, 1);
3553
3554/* A large max rate will disable the max shaper. */
3555#define MLXSW_REG_QEEC_MAS_DIS 200000000 /* Kbps */
3556
3557/* reg_qeec_max_shaper_rate
3558 * Max shaper information rate.
3559 * For CPU port, can only be configured for port hierarchy.
3560 * When in bytes mode, value is specified in units of 1000bps.
3561 * Access: RW
3562 */
3563MLXSW_ITEM32(reg, qeec, max_shaper_rate, 0x10, 0, 28);
3564
3565/* reg_qeec_de
3566 * DWRR configuration enable. Enables configuration of the dwrr and
3567 * dwrr_weight.
3568 * 0 - Disable
3569 * 1 - Enable
3570 * Access: RW
3571 */
3572MLXSW_ITEM32(reg, qeec, de, 0x18, 31, 1);
3573
3574/* reg_qeec_dwrr
3575 * Transmission selection algorithm to use on the link going down from
3576 * the ETS element.
3577 * 0 - Strict priority
3578 * 1 - DWRR
3579 * Access: RW
3580 */
3581MLXSW_ITEM32(reg, qeec, dwrr, 0x18, 15, 1);
3582
3583/* reg_qeec_dwrr_weight
3584 * DWRR weight on the link going down from the ETS element. The
3585 * percentage of bandwidth guaranteed to an ETS element within
3586 * its hierarchy. The sum of all weights across all ETS elements
3587 * within one hierarchy should be equal to 100. Reserved when
3588 * transmission selection algorithm is strict priority.
3589 * Access: RW
3590 */
3591MLXSW_ITEM32(reg, qeec, dwrr_weight, 0x18, 0, 8);
3592
3593static inline void mlxsw_reg_qeec_pack(char *payload, u8 local_port,
3594 enum mlxsw_reg_qeec_hr hr, u8 index,
3595 u8 next_index)
3596{
3597 MLXSW_REG_ZERO(qeec, payload);
3598 mlxsw_reg_qeec_local_port_set(payload, local_port);
3599 mlxsw_reg_qeec_element_hierarchy_set(payload, hr);
3600 mlxsw_reg_qeec_element_index_set(payload, index);
3601 mlxsw_reg_qeec_next_element_index_set(payload, next_index);
3602}
3603
Petr Machatae67131d2018-07-27 15:26:59 +03003604/* QRWE - QoS ReWrite Enable
3605 * -------------------------
3606 * This register configures the rewrite enable per receive port.
3607 */
3608#define MLXSW_REG_QRWE_ID 0x400F
3609#define MLXSW_REG_QRWE_LEN 0x08
3610
3611MLXSW_REG_DEFINE(qrwe, MLXSW_REG_QRWE_ID, MLXSW_REG_QRWE_LEN);
3612
3613/* reg_qrwe_local_port
3614 * Local port number.
3615 * Access: Index
3616 *
3617 * Note: CPU port is supported. No support for router port.
3618 */
3619MLXSW_ITEM32(reg, qrwe, local_port, 0x00, 16, 8);
3620
3621/* reg_qrwe_dscp
3622 * Whether to enable DSCP rewrite (default is 0, don't rewrite).
3623 * Access: RW
3624 */
3625MLXSW_ITEM32(reg, qrwe, dscp, 0x04, 1, 1);
3626
3627/* reg_qrwe_pcp
3628 * Whether to enable PCP and DEI rewrite (default is 0, don't rewrite).
3629 * Access: RW
3630 */
3631MLXSW_ITEM32(reg, qrwe, pcp, 0x04, 0, 1);
3632
3633static inline void mlxsw_reg_qrwe_pack(char *payload, u8 local_port,
3634 bool rewrite_pcp, bool rewrite_dscp)
3635{
3636 MLXSW_REG_ZERO(qrwe, payload);
3637 mlxsw_reg_qrwe_local_port_set(payload, local_port);
3638 mlxsw_reg_qrwe_pcp_set(payload, rewrite_pcp);
3639 mlxsw_reg_qrwe_dscp_set(payload, rewrite_dscp);
3640}
3641
Petr Machata55fb71f2018-07-27 15:27:00 +03003642/* QPDSM - QoS Priority to DSCP Mapping
3643 * ------------------------------------
3644 * QoS Priority to DSCP Mapping Register
3645 */
3646#define MLXSW_REG_QPDSM_ID 0x4011
3647#define MLXSW_REG_QPDSM_BASE_LEN 0x04 /* base length, without records */
3648#define MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN 0x4 /* record length */
3649#define MLXSW_REG_QPDSM_PRIO_ENTRY_REC_MAX_COUNT 16
3650#define MLXSW_REG_QPDSM_LEN (MLXSW_REG_QPDSM_BASE_LEN + \
3651 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN * \
3652 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_MAX_COUNT)
3653
3654MLXSW_REG_DEFINE(qpdsm, MLXSW_REG_QPDSM_ID, MLXSW_REG_QPDSM_LEN);
3655
3656/* reg_qpdsm_local_port
3657 * Local Port. Supported for data packets from CPU port.
3658 * Access: Index
3659 */
3660MLXSW_ITEM32(reg, qpdsm, local_port, 0x00, 16, 8);
3661
3662/* reg_qpdsm_prio_entry_color0_e
3663 * Enable update of the entry for color 0 and a given port.
3664 * Access: WO
3665 */
3666MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color0_e,
3667 MLXSW_REG_QPDSM_BASE_LEN, 31, 1,
3668 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false);
3669
3670/* reg_qpdsm_prio_entry_color0_dscp
3671 * DSCP field in the outer label of the packet for color 0 and a given port.
3672 * Reserved when e=0.
3673 * Access: RW
3674 */
3675MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color0_dscp,
3676 MLXSW_REG_QPDSM_BASE_LEN, 24, 6,
3677 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false);
3678
3679/* reg_qpdsm_prio_entry_color1_e
3680 * Enable update of the entry for color 1 and a given port.
3681 * Access: WO
3682 */
3683MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color1_e,
3684 MLXSW_REG_QPDSM_BASE_LEN, 23, 1,
3685 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false);
3686
3687/* reg_qpdsm_prio_entry_color1_dscp
3688 * DSCP field in the outer label of the packet for color 1 and a given port.
3689 * Reserved when e=0.
3690 * Access: RW
3691 */
3692MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color1_dscp,
3693 MLXSW_REG_QPDSM_BASE_LEN, 16, 6,
3694 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false);
3695
3696/* reg_qpdsm_prio_entry_color2_e
3697 * Enable update of the entry for color 2 and a given port.
3698 * Access: WO
3699 */
3700MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color2_e,
3701 MLXSW_REG_QPDSM_BASE_LEN, 15, 1,
3702 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false);
3703
3704/* reg_qpdsm_prio_entry_color2_dscp
3705 * DSCP field in the outer label of the packet for color 2 and a given port.
3706 * Reserved when e=0.
3707 * Access: RW
3708 */
3709MLXSW_ITEM32_INDEXED(reg, qpdsm, prio_entry_color2_dscp,
3710 MLXSW_REG_QPDSM_BASE_LEN, 8, 6,
3711 MLXSW_REG_QPDSM_PRIO_ENTRY_REC_LEN, 0x00, false);
3712
3713static inline void mlxsw_reg_qpdsm_pack(char *payload, u8 local_port)
3714{
3715 MLXSW_REG_ZERO(qpdsm, payload);
3716 mlxsw_reg_qpdsm_local_port_set(payload, local_port);
3717}
3718
3719static inline void
3720mlxsw_reg_qpdsm_prio_pack(char *payload, unsigned short prio, u8 dscp)
3721{
3722 mlxsw_reg_qpdsm_prio_entry_color0_e_set(payload, prio, 1);
3723 mlxsw_reg_qpdsm_prio_entry_color0_dscp_set(payload, prio, dscp);
3724 mlxsw_reg_qpdsm_prio_entry_color1_e_set(payload, prio, 1);
3725 mlxsw_reg_qpdsm_prio_entry_color1_dscp_set(payload, prio, dscp);
3726 mlxsw_reg_qpdsm_prio_entry_color2_e_set(payload, prio, 1);
3727 mlxsw_reg_qpdsm_prio_entry_color2_dscp_set(payload, prio, dscp);
3728}
3729
Petr Machata02837d72018-07-27 15:26:57 +03003730/* QPDPM - QoS Port DSCP to Priority Mapping Register
3731 * --------------------------------------------------
3732 * This register controls the mapping from DSCP field to
3733 * Switch Priority for IP packets.
3734 */
3735#define MLXSW_REG_QPDPM_ID 0x4013
3736#define MLXSW_REG_QPDPM_BASE_LEN 0x4 /* base length, without records */
3737#define MLXSW_REG_QPDPM_DSCP_ENTRY_REC_LEN 0x2 /* record length */
3738#define MLXSW_REG_QPDPM_DSCP_ENTRY_REC_MAX_COUNT 64
3739#define MLXSW_REG_QPDPM_LEN (MLXSW_REG_QPDPM_BASE_LEN + \
3740 MLXSW_REG_QPDPM_DSCP_ENTRY_REC_LEN * \
3741 MLXSW_REG_QPDPM_DSCP_ENTRY_REC_MAX_COUNT)
3742
3743MLXSW_REG_DEFINE(qpdpm, MLXSW_REG_QPDPM_ID, MLXSW_REG_QPDPM_LEN);
3744
3745/* reg_qpdpm_local_port
3746 * Local Port. Supported for data packets from CPU port.
3747 * Access: Index
3748 */
3749MLXSW_ITEM32(reg, qpdpm, local_port, 0x00, 16, 8);
3750
3751/* reg_qpdpm_dscp_e
3752 * Enable update of the specific entry. When cleared, the switch_prio and color
3753 * fields are ignored and the previous switch_prio and color values are
3754 * preserved.
3755 * Access: WO
3756 */
3757MLXSW_ITEM16_INDEXED(reg, qpdpm, dscp_entry_e, MLXSW_REG_QPDPM_BASE_LEN, 15, 1,
3758 MLXSW_REG_QPDPM_DSCP_ENTRY_REC_LEN, 0x00, false);
3759
3760/* reg_qpdpm_dscp_prio
3761 * The new Switch Priority value for the relevant DSCP value.
3762 * Access: RW
3763 */
3764MLXSW_ITEM16_INDEXED(reg, qpdpm, dscp_entry_prio,
3765 MLXSW_REG_QPDPM_BASE_LEN, 0, 4,
3766 MLXSW_REG_QPDPM_DSCP_ENTRY_REC_LEN, 0x00, false);
3767
3768static inline void mlxsw_reg_qpdpm_pack(char *payload, u8 local_port)
3769{
3770 MLXSW_REG_ZERO(qpdpm, payload);
3771 mlxsw_reg_qpdpm_local_port_set(payload, local_port);
3772}
3773
3774static inline void
3775mlxsw_reg_qpdpm_dscp_pack(char *payload, unsigned short dscp, u8 prio)
3776{
3777 mlxsw_reg_qpdpm_dscp_entry_e_set(payload, dscp, 1);
3778 mlxsw_reg_qpdpm_dscp_entry_prio_set(payload, dscp, prio);
3779}
3780
Petr Machata671ae8a2018-08-05 09:03:06 +03003781/* QTCTM - QoS Switch Traffic Class Table is Multicast-Aware Register
3782 * ------------------------------------------------------------------
3783 * This register configures if the Switch Priority to Traffic Class mapping is
3784 * based on Multicast packet indication. If so, then multicast packets will get
3785 * a Traffic Class that is plus (cap_max_tclass_data/2) the value configured by
3786 * QTCT.
3787 * By default, Switch Priority to Traffic Class mapping is not based on
3788 * Multicast packet indication.
3789 */
3790#define MLXSW_REG_QTCTM_ID 0x401A
3791#define MLXSW_REG_QTCTM_LEN 0x08
3792
3793MLXSW_REG_DEFINE(qtctm, MLXSW_REG_QTCTM_ID, MLXSW_REG_QTCTM_LEN);
3794
3795/* reg_qtctm_local_port
3796 * Local port number.
3797 * No support for CPU port.
3798 * Access: Index
3799 */
3800MLXSW_ITEM32(reg, qtctm, local_port, 0x00, 16, 8);
3801
3802/* reg_qtctm_mc
3803 * Multicast Mode
3804 * Whether Switch Priority to Traffic Class mapping is based on Multicast packet
3805 * indication (default is 0, not based on Multicast packet indication).
3806 */
3807MLXSW_ITEM32(reg, qtctm, mc, 0x04, 0, 1);
3808
3809static inline void
3810mlxsw_reg_qtctm_pack(char *payload, u8 local_port, bool mc)
3811{
3812 MLXSW_REG_ZERO(qtctm, payload);
3813 mlxsw_reg_qtctm_local_port_set(payload, local_port);
3814 mlxsw_reg_qtctm_mc_set(payload, mc);
3815}
3816
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003817/* PMLP - Ports Module to Local Port Register
3818 * ------------------------------------------
3819 * Configures the assignment of modules to local ports.
3820 */
3821#define MLXSW_REG_PMLP_ID 0x5002
3822#define MLXSW_REG_PMLP_LEN 0x40
3823
Jiri Pirko21978dc2016-10-21 16:07:20 +02003824MLXSW_REG_DEFINE(pmlp, MLXSW_REG_PMLP_ID, MLXSW_REG_PMLP_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003825
3826/* reg_pmlp_rxtx
3827 * 0 - Tx value is used for both Tx and Rx.
3828 * 1 - Rx value is taken from a separte field.
3829 * Access: RW
3830 */
3831MLXSW_ITEM32(reg, pmlp, rxtx, 0x00, 31, 1);
3832
3833/* reg_pmlp_local_port
3834 * Local port number.
3835 * Access: Index
3836 */
3837MLXSW_ITEM32(reg, pmlp, local_port, 0x00, 16, 8);
3838
3839/* reg_pmlp_width
3840 * 0 - Unmap local port.
3841 * 1 - Lane 0 is used.
3842 * 2 - Lanes 0 and 1 are used.
3843 * 4 - Lanes 0, 1, 2 and 3 are used.
3844 * Access: RW
3845 */
3846MLXSW_ITEM32(reg, pmlp, width, 0x00, 0, 8);
3847
3848/* reg_pmlp_module
3849 * Module number.
3850 * Access: RW
3851 */
Ido Schimmelbbeeda22016-01-27 15:20:26 +01003852MLXSW_ITEM32_INDEXED(reg, pmlp, module, 0x04, 0, 8, 0x04, 0x00, false);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003853
3854/* reg_pmlp_tx_lane
3855 * Tx Lane. When rxtx field is cleared, this field is used for Rx as well.
3856 * Access: RW
3857 */
Ido Schimmelbbeeda22016-01-27 15:20:26 +01003858MLXSW_ITEM32_INDEXED(reg, pmlp, tx_lane, 0x04, 16, 2, 0x04, 0x00, false);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003859
3860/* reg_pmlp_rx_lane
3861 * Rx Lane. When rxtx field is cleared, this field is ignored and Rx lane is
3862 * equal to Tx lane.
3863 * Access: RW
3864 */
Ido Schimmelbbeeda22016-01-27 15:20:26 +01003865MLXSW_ITEM32_INDEXED(reg, pmlp, rx_lane, 0x04, 24, 2, 0x04, 0x00, false);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003866
3867static inline void mlxsw_reg_pmlp_pack(char *payload, u8 local_port)
3868{
3869 MLXSW_REG_ZERO(pmlp, payload);
3870 mlxsw_reg_pmlp_local_port_set(payload, local_port);
3871}
3872
3873/* PMTU - Port MTU Register
3874 * ------------------------
3875 * Configures and reports the port MTU.
3876 */
3877#define MLXSW_REG_PMTU_ID 0x5003
3878#define MLXSW_REG_PMTU_LEN 0x10
3879
Jiri Pirko21978dc2016-10-21 16:07:20 +02003880MLXSW_REG_DEFINE(pmtu, MLXSW_REG_PMTU_ID, MLXSW_REG_PMTU_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003881
3882/* reg_pmtu_local_port
3883 * Local port number.
3884 * Access: Index
3885 */
3886MLXSW_ITEM32(reg, pmtu, local_port, 0x00, 16, 8);
3887
3888/* reg_pmtu_max_mtu
3889 * Maximum MTU.
3890 * When port type (e.g. Ethernet) is configured, the relevant MTU is
3891 * reported, otherwise the minimum between the max_mtu of the different
3892 * types is reported.
3893 * Access: RO
3894 */
3895MLXSW_ITEM32(reg, pmtu, max_mtu, 0x04, 16, 16);
3896
3897/* reg_pmtu_admin_mtu
3898 * MTU value to set port to. Must be smaller or equal to max_mtu.
3899 * Note: If port type is Infiniband, then port must be disabled, when its
3900 * MTU is set.
3901 * Access: RW
3902 */
3903MLXSW_ITEM32(reg, pmtu, admin_mtu, 0x08, 16, 16);
3904
3905/* reg_pmtu_oper_mtu
3906 * The actual MTU configured on the port. Packets exceeding this size
3907 * will be dropped.
3908 * Note: In Ethernet and FC oper_mtu == admin_mtu, however, in Infiniband
3909 * oper_mtu might be smaller than admin_mtu.
3910 * Access: RO
3911 */
3912MLXSW_ITEM32(reg, pmtu, oper_mtu, 0x0C, 16, 16);
3913
3914static inline void mlxsw_reg_pmtu_pack(char *payload, u8 local_port,
3915 u16 new_mtu)
3916{
3917 MLXSW_REG_ZERO(pmtu, payload);
3918 mlxsw_reg_pmtu_local_port_set(payload, local_port);
3919 mlxsw_reg_pmtu_max_mtu_set(payload, 0);
3920 mlxsw_reg_pmtu_admin_mtu_set(payload, new_mtu);
3921 mlxsw_reg_pmtu_oper_mtu_set(payload, 0);
3922}
3923
3924/* PTYS - Port Type and Speed Register
3925 * -----------------------------------
3926 * Configures and reports the port speed type.
3927 *
3928 * Note: When set while the link is up, the changes will not take effect
3929 * until the port transitions from down to up state.
3930 */
3931#define MLXSW_REG_PTYS_ID 0x5004
3932#define MLXSW_REG_PTYS_LEN 0x40
3933
Jiri Pirko21978dc2016-10-21 16:07:20 +02003934MLXSW_REG_DEFINE(ptys, MLXSW_REG_PTYS_ID, MLXSW_REG_PTYS_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003935
Tal Bar8e1ed732018-03-21 09:34:06 +02003936/* an_disable_admin
3937 * Auto negotiation disable administrative configuration
3938 * 0 - Device doesn't support AN disable.
3939 * 1 - Device supports AN disable.
3940 * Access: RW
3941 */
3942MLXSW_ITEM32(reg, ptys, an_disable_admin, 0x00, 30, 1);
3943
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003944/* reg_ptys_local_port
3945 * Local port number.
3946 * Access: Index
3947 */
3948MLXSW_ITEM32(reg, ptys, local_port, 0x00, 16, 8);
3949
Elad Raz79417702016-10-28 21:35:53 +02003950#define MLXSW_REG_PTYS_PROTO_MASK_IB BIT(0)
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003951#define MLXSW_REG_PTYS_PROTO_MASK_ETH BIT(2)
3952
3953/* reg_ptys_proto_mask
3954 * Protocol mask. Indicates which protocol is used.
3955 * 0 - Infiniband.
3956 * 1 - Fibre Channel.
3957 * 2 - Ethernet.
3958 * Access: Index
3959 */
3960MLXSW_ITEM32(reg, ptys, proto_mask, 0x00, 0, 3);
3961
Ido Schimmel4149b972016-09-12 13:26:24 +02003962enum {
3963 MLXSW_REG_PTYS_AN_STATUS_NA,
3964 MLXSW_REG_PTYS_AN_STATUS_OK,
3965 MLXSW_REG_PTYS_AN_STATUS_FAIL,
3966};
3967
3968/* reg_ptys_an_status
3969 * Autonegotiation status.
3970 * Access: RO
3971 */
3972MLXSW_ITEM32(reg, ptys, an_status, 0x04, 28, 4);
3973
Shalom Toledo9ce84392019-02-22 13:56:44 +00003974#define MLXSW_REG_PTYS_EXT_ETH_SPEED_SGMII_100M BIT(0)
3975#define MLXSW_REG_PTYS_EXT_ETH_SPEED_1000BASE_X_SGMII BIT(1)
3976#define MLXSW_REG_PTYS_EXT_ETH_SPEED_2_5GBASE_X_2_5GMII BIT(2)
3977#define MLXSW_REG_PTYS_EXT_ETH_SPEED_5GBASE_R BIT(3)
3978#define MLXSW_REG_PTYS_EXT_ETH_SPEED_XFI_XAUI_1_10G BIT(4)
3979#define MLXSW_REG_PTYS_EXT_ETH_SPEED_XLAUI_4_XLPPI_4_40G BIT(5)
3980#define MLXSW_REG_PTYS_EXT_ETH_SPEED_25GAUI_1_25GBASE_CR_KR BIT(6)
3981#define MLXSW_REG_PTYS_EXT_ETH_SPEED_50GAUI_2_LAUI_2_50GBASE_CR2_KR2 BIT(7)
3982#define MLXSW_REG_PTYS_EXT_ETH_SPEED_50GAUI_1_LAUI_1_50GBASE_CR_KR BIT(8)
3983#define MLXSW_REG_PTYS_EXT_ETH_SPEED_CAUI_4_100GBASE_CR4_KR4 BIT(9)
3984#define MLXSW_REG_PTYS_EXT_ETH_SPEED_100GAUI_2_100GBASE_CR2_KR2 BIT(10)
3985#define MLXSW_REG_PTYS_EXT_ETH_SPEED_200GAUI_4_200GBASE_CR4_KR4 BIT(12)
3986
3987/* reg_ptys_ext_eth_proto_cap
3988 * Extended Ethernet port supported speeds and protocols.
3989 * Access: RO
3990 */
3991MLXSW_ITEM32(reg, ptys, ext_eth_proto_cap, 0x08, 0, 32);
3992
Ido Schimmel4ec14b72015-07-29 23:33:48 +02003993#define MLXSW_REG_PTYS_ETH_SPEED_SGMII BIT(0)
3994#define MLXSW_REG_PTYS_ETH_SPEED_1000BASE_KX BIT(1)
3995#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_CX4 BIT(2)
3996#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_KX4 BIT(3)
3997#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_KR BIT(4)
3998#define MLXSW_REG_PTYS_ETH_SPEED_20GBASE_KR2 BIT(5)
3999#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_CR4 BIT(6)
4000#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_KR4 BIT(7)
4001#define MLXSW_REG_PTYS_ETH_SPEED_56GBASE_R4 BIT(8)
4002#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_CR BIT(12)
4003#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_SR BIT(13)
4004#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_ER_LR BIT(14)
4005#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_SR4 BIT(15)
4006#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_LR4_ER4 BIT(16)
Ido Schimmelb9d66a32016-09-12 13:26:27 +02004007#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_SR2 BIT(18)
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004008#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_KR4 BIT(19)
4009#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_CR4 BIT(20)
4010#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_SR4 BIT(21)
4011#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_KR4 BIT(22)
4012#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_LR4_ER4 BIT(23)
4013#define MLXSW_REG_PTYS_ETH_SPEED_100BASE_TX BIT(24)
4014#define MLXSW_REG_PTYS_ETH_SPEED_100BASE_T BIT(25)
4015#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_T BIT(26)
4016#define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_CR BIT(27)
4017#define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_KR BIT(28)
4018#define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_SR BIT(29)
4019#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_CR2 BIT(30)
4020#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_KR2 BIT(31)
4021
4022/* reg_ptys_eth_proto_cap
4023 * Ethernet port supported speeds and protocols.
4024 * Access: RO
4025 */
4026MLXSW_ITEM32(reg, ptys, eth_proto_cap, 0x0C, 0, 32);
4027
Elad Raz79417702016-10-28 21:35:53 +02004028/* reg_ptys_ib_link_width_cap
4029 * IB port supported widths.
4030 * Access: RO
4031 */
4032MLXSW_ITEM32(reg, ptys, ib_link_width_cap, 0x10, 16, 16);
4033
4034#define MLXSW_REG_PTYS_IB_SPEED_SDR BIT(0)
4035#define MLXSW_REG_PTYS_IB_SPEED_DDR BIT(1)
4036#define MLXSW_REG_PTYS_IB_SPEED_QDR BIT(2)
4037#define MLXSW_REG_PTYS_IB_SPEED_FDR10 BIT(3)
4038#define MLXSW_REG_PTYS_IB_SPEED_FDR BIT(4)
4039#define MLXSW_REG_PTYS_IB_SPEED_EDR BIT(5)
4040
4041/* reg_ptys_ib_proto_cap
4042 * IB port supported speeds and protocols.
4043 * Access: RO
4044 */
4045MLXSW_ITEM32(reg, ptys, ib_proto_cap, 0x10, 0, 16);
4046
Shalom Toledo9ce84392019-02-22 13:56:44 +00004047/* reg_ptys_ext_eth_proto_admin
4048 * Extended speed and protocol to set port to.
4049 * Access: RW
4050 */
4051MLXSW_ITEM32(reg, ptys, ext_eth_proto_admin, 0x14, 0, 32);
4052
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004053/* reg_ptys_eth_proto_admin
4054 * Speed and protocol to set port to.
4055 * Access: RW
4056 */
4057MLXSW_ITEM32(reg, ptys, eth_proto_admin, 0x18, 0, 32);
4058
Elad Raz79417702016-10-28 21:35:53 +02004059/* reg_ptys_ib_link_width_admin
4060 * IB width to set port to.
4061 * Access: RW
4062 */
4063MLXSW_ITEM32(reg, ptys, ib_link_width_admin, 0x1C, 16, 16);
4064
4065/* reg_ptys_ib_proto_admin
4066 * IB speeds and protocols to set port to.
4067 * Access: RW
4068 */
4069MLXSW_ITEM32(reg, ptys, ib_proto_admin, 0x1C, 0, 16);
4070
Shalom Toledo9ce84392019-02-22 13:56:44 +00004071/* reg_ptys_ext_eth_proto_oper
4072 * The extended current speed and protocol configured for the port.
4073 * Access: RO
4074 */
4075MLXSW_ITEM32(reg, ptys, ext_eth_proto_oper, 0x20, 0, 32);
4076
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004077/* reg_ptys_eth_proto_oper
4078 * The current speed and protocol configured for the port.
4079 * Access: RO
4080 */
4081MLXSW_ITEM32(reg, ptys, eth_proto_oper, 0x24, 0, 32);
4082
Elad Raz79417702016-10-28 21:35:53 +02004083/* reg_ptys_ib_link_width_oper
4084 * The current IB width to set port to.
4085 * Access: RO
4086 */
4087MLXSW_ITEM32(reg, ptys, ib_link_width_oper, 0x28, 16, 16);
4088
4089/* reg_ptys_ib_proto_oper
4090 * The current IB speed and protocol.
4091 * Access: RO
4092 */
4093MLXSW_ITEM32(reg, ptys, ib_proto_oper, 0x28, 0, 16);
4094
Shalom Toledo1e2f66e2019-02-22 13:56:38 +00004095enum mlxsw_reg_ptys_connector_type {
4096 MLXSW_REG_PTYS_CONNECTOR_TYPE_UNKNOWN_OR_NO_CONNECTOR,
4097 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_NONE,
4098 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_TP,
4099 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_AUI,
4100 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_BNC,
4101 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_MII,
4102 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_FIBRE,
4103 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_DA,
4104 MLXSW_REG_PTYS_CONNECTOR_TYPE_PORT_OTHER,
4105};
4106
4107/* reg_ptys_connector_type
4108 * Connector type indication.
4109 * Access: RO
4110 */
4111MLXSW_ITEM32(reg, ptys, connector_type, 0x2C, 0, 4);
4112
Elad Raz401c8b42016-10-28 21:35:52 +02004113static inline void mlxsw_reg_ptys_eth_pack(char *payload, u8 local_port,
Tal Bar8e1ed732018-03-21 09:34:06 +02004114 u32 proto_admin, bool autoneg)
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004115{
4116 MLXSW_REG_ZERO(ptys, payload);
4117 mlxsw_reg_ptys_local_port_set(payload, local_port);
4118 mlxsw_reg_ptys_proto_mask_set(payload, MLXSW_REG_PTYS_PROTO_MASK_ETH);
4119 mlxsw_reg_ptys_eth_proto_admin_set(payload, proto_admin);
Tal Bar8e1ed732018-03-21 09:34:06 +02004120 mlxsw_reg_ptys_an_disable_admin_set(payload, !autoneg);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004121}
4122
Shalom Toledo9ce84392019-02-22 13:56:44 +00004123static inline void mlxsw_reg_ptys_ext_eth_pack(char *payload, u8 local_port,
4124 u32 proto_admin, bool autoneg)
4125{
4126 MLXSW_REG_ZERO(ptys, payload);
4127 mlxsw_reg_ptys_local_port_set(payload, local_port);
4128 mlxsw_reg_ptys_proto_mask_set(payload, MLXSW_REG_PTYS_PROTO_MASK_ETH);
4129 mlxsw_reg_ptys_ext_eth_proto_admin_set(payload, proto_admin);
4130 mlxsw_reg_ptys_an_disable_admin_set(payload, !autoneg);
4131}
4132
Elad Raz401c8b42016-10-28 21:35:52 +02004133static inline void mlxsw_reg_ptys_eth_unpack(char *payload,
4134 u32 *p_eth_proto_cap,
Shalom Toledoe6f66f52019-02-22 13:56:41 +00004135 u32 *p_eth_proto_admin,
Elad Raz401c8b42016-10-28 21:35:52 +02004136 u32 *p_eth_proto_oper)
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004137{
4138 if (p_eth_proto_cap)
Shalom Toledo1dc3c0a2019-02-22 13:56:42 +00004139 *p_eth_proto_cap =
4140 mlxsw_reg_ptys_eth_proto_cap_get(payload);
Shalom Toledoe6f66f52019-02-22 13:56:41 +00004141 if (p_eth_proto_admin)
Shalom Toledo1dc3c0a2019-02-22 13:56:42 +00004142 *p_eth_proto_admin =
4143 mlxsw_reg_ptys_eth_proto_admin_get(payload);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004144 if (p_eth_proto_oper)
Shalom Toledo1dc3c0a2019-02-22 13:56:42 +00004145 *p_eth_proto_oper =
4146 mlxsw_reg_ptys_eth_proto_oper_get(payload);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004147}
4148
Shalom Toledo9ce84392019-02-22 13:56:44 +00004149static inline void mlxsw_reg_ptys_ext_eth_unpack(char *payload,
4150 u32 *p_eth_proto_cap,
4151 u32 *p_eth_proto_admin,
4152 u32 *p_eth_proto_oper)
4153{
4154 if (p_eth_proto_cap)
4155 *p_eth_proto_cap =
4156 mlxsw_reg_ptys_ext_eth_proto_cap_get(payload);
4157 if (p_eth_proto_admin)
4158 *p_eth_proto_admin =
4159 mlxsw_reg_ptys_ext_eth_proto_admin_get(payload);
4160 if (p_eth_proto_oper)
4161 *p_eth_proto_oper =
4162 mlxsw_reg_ptys_ext_eth_proto_oper_get(payload);
4163}
4164
Elad Raz79417702016-10-28 21:35:53 +02004165static inline void mlxsw_reg_ptys_ib_pack(char *payload, u8 local_port,
4166 u16 proto_admin, u16 link_width)
4167{
4168 MLXSW_REG_ZERO(ptys, payload);
4169 mlxsw_reg_ptys_local_port_set(payload, local_port);
4170 mlxsw_reg_ptys_proto_mask_set(payload, MLXSW_REG_PTYS_PROTO_MASK_IB);
4171 mlxsw_reg_ptys_ib_proto_admin_set(payload, proto_admin);
4172 mlxsw_reg_ptys_ib_link_width_admin_set(payload, link_width);
4173}
4174
4175static inline void mlxsw_reg_ptys_ib_unpack(char *payload, u16 *p_ib_proto_cap,
4176 u16 *p_ib_link_width_cap,
4177 u16 *p_ib_proto_oper,
4178 u16 *p_ib_link_width_oper)
4179{
4180 if (p_ib_proto_cap)
4181 *p_ib_proto_cap = mlxsw_reg_ptys_ib_proto_cap_get(payload);
4182 if (p_ib_link_width_cap)
4183 *p_ib_link_width_cap =
4184 mlxsw_reg_ptys_ib_link_width_cap_get(payload);
4185 if (p_ib_proto_oper)
4186 *p_ib_proto_oper = mlxsw_reg_ptys_ib_proto_oper_get(payload);
4187 if (p_ib_link_width_oper)
4188 *p_ib_link_width_oper =
4189 mlxsw_reg_ptys_ib_link_width_oper_get(payload);
4190}
4191
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004192/* PPAD - Port Physical Address Register
4193 * -------------------------------------
4194 * The PPAD register configures the per port physical MAC address.
4195 */
4196#define MLXSW_REG_PPAD_ID 0x5005
4197#define MLXSW_REG_PPAD_LEN 0x10
4198
Jiri Pirko21978dc2016-10-21 16:07:20 +02004199MLXSW_REG_DEFINE(ppad, MLXSW_REG_PPAD_ID, MLXSW_REG_PPAD_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004200
4201/* reg_ppad_single_base_mac
4202 * 0: base_mac, local port should be 0 and mac[7:0] is
4203 * reserved. HW will set incremental
4204 * 1: single_mac - mac of the local_port
4205 * Access: RW
4206 */
4207MLXSW_ITEM32(reg, ppad, single_base_mac, 0x00, 28, 1);
4208
4209/* reg_ppad_local_port
4210 * port number, if single_base_mac = 0 then local_port is reserved
4211 * Access: RW
4212 */
4213MLXSW_ITEM32(reg, ppad, local_port, 0x00, 16, 8);
4214
4215/* reg_ppad_mac
4216 * If single_base_mac = 0 - base MAC address, mac[7:0] is reserved.
4217 * If single_base_mac = 1 - the per port MAC address
4218 * Access: RW
4219 */
4220MLXSW_ITEM_BUF(reg, ppad, mac, 0x02, 6);
4221
4222static inline void mlxsw_reg_ppad_pack(char *payload, bool single_base_mac,
4223 u8 local_port)
4224{
4225 MLXSW_REG_ZERO(ppad, payload);
4226 mlxsw_reg_ppad_single_base_mac_set(payload, !!single_base_mac);
4227 mlxsw_reg_ppad_local_port_set(payload, local_port);
4228}
4229
4230/* PAOS - Ports Administrative and Operational Status Register
4231 * -----------------------------------------------------------
4232 * Configures and retrieves per port administrative and operational status.
4233 */
4234#define MLXSW_REG_PAOS_ID 0x5006
4235#define MLXSW_REG_PAOS_LEN 0x10
4236
Jiri Pirko21978dc2016-10-21 16:07:20 +02004237MLXSW_REG_DEFINE(paos, MLXSW_REG_PAOS_ID, MLXSW_REG_PAOS_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004238
4239/* reg_paos_swid
4240 * Switch partition ID with which to associate the port.
4241 * Note: while external ports uses unique local port numbers (and thus swid is
4242 * redundant), router ports use the same local port number where swid is the
4243 * only indication for the relevant port.
4244 * Access: Index
4245 */
4246MLXSW_ITEM32(reg, paos, swid, 0x00, 24, 8);
4247
4248/* reg_paos_local_port
4249 * Local port number.
4250 * Access: Index
4251 */
4252MLXSW_ITEM32(reg, paos, local_port, 0x00, 16, 8);
4253
4254/* reg_paos_admin_status
4255 * Port administrative state (the desired state of the port):
4256 * 1 - Up.
4257 * 2 - Down.
4258 * 3 - Up once. This means that in case of link failure, the port won't go
4259 * into polling mode, but will wait to be re-enabled by software.
4260 * 4 - Disabled by system. Can only be set by hardware.
4261 * Access: RW
4262 */
4263MLXSW_ITEM32(reg, paos, admin_status, 0x00, 8, 4);
4264
4265/* reg_paos_oper_status
4266 * Port operational state (the current state):
4267 * 1 - Up.
4268 * 2 - Down.
4269 * 3 - Down by port failure. This means that the device will not let the
4270 * port up again until explicitly specified by software.
4271 * Access: RO
4272 */
4273MLXSW_ITEM32(reg, paos, oper_status, 0x00, 0, 4);
4274
4275/* reg_paos_ase
4276 * Admin state update enabled.
4277 * Access: WO
4278 */
4279MLXSW_ITEM32(reg, paos, ase, 0x04, 31, 1);
4280
4281/* reg_paos_ee
4282 * Event update enable. If this bit is set, event generation will be
4283 * updated based on the e field.
4284 * Access: WO
4285 */
4286MLXSW_ITEM32(reg, paos, ee, 0x04, 30, 1);
4287
4288/* reg_paos_e
4289 * Event generation on operational state change:
4290 * 0 - Do not generate event.
4291 * 1 - Generate Event.
4292 * 2 - Generate Single Event.
4293 * Access: RW
4294 */
4295MLXSW_ITEM32(reg, paos, e, 0x04, 0, 2);
4296
4297static inline void mlxsw_reg_paos_pack(char *payload, u8 local_port,
4298 enum mlxsw_port_admin_status status)
4299{
4300 MLXSW_REG_ZERO(paos, payload);
4301 mlxsw_reg_paos_swid_set(payload, 0);
4302 mlxsw_reg_paos_local_port_set(payload, local_port);
4303 mlxsw_reg_paos_admin_status_set(payload, status);
4304 mlxsw_reg_paos_oper_status_set(payload, 0);
4305 mlxsw_reg_paos_ase_set(payload, 1);
4306 mlxsw_reg_paos_ee_set(payload, 1);
4307 mlxsw_reg_paos_e_set(payload, 1);
4308}
4309
Ido Schimmel6f253d82016-04-06 17:10:12 +02004310/* PFCC - Ports Flow Control Configuration Register
4311 * ------------------------------------------------
4312 * Configures and retrieves the per port flow control configuration.
4313 */
4314#define MLXSW_REG_PFCC_ID 0x5007
4315#define MLXSW_REG_PFCC_LEN 0x20
4316
Jiri Pirko21978dc2016-10-21 16:07:20 +02004317MLXSW_REG_DEFINE(pfcc, MLXSW_REG_PFCC_ID, MLXSW_REG_PFCC_LEN);
Ido Schimmel6f253d82016-04-06 17:10:12 +02004318
4319/* reg_pfcc_local_port
4320 * Local port number.
4321 * Access: Index
4322 */
4323MLXSW_ITEM32(reg, pfcc, local_port, 0x00, 16, 8);
4324
4325/* reg_pfcc_pnat
4326 * Port number access type. Determines the way local_port is interpreted:
4327 * 0 - Local port number.
4328 * 1 - IB / label port number.
4329 * Access: Index
4330 */
4331MLXSW_ITEM32(reg, pfcc, pnat, 0x00, 14, 2);
4332
4333/* reg_pfcc_shl_cap
4334 * Send to higher layers capabilities:
4335 * 0 - No capability of sending Pause and PFC frames to higher layers.
4336 * 1 - Device has capability of sending Pause and PFC frames to higher
4337 * layers.
4338 * Access: RO
4339 */
4340MLXSW_ITEM32(reg, pfcc, shl_cap, 0x00, 1, 1);
4341
4342/* reg_pfcc_shl_opr
4343 * Send to higher layers operation:
4344 * 0 - Pause and PFC frames are handled by the port (default).
4345 * 1 - Pause and PFC frames are handled by the port and also sent to
4346 * higher layers. Only valid if shl_cap = 1.
4347 * Access: RW
4348 */
4349MLXSW_ITEM32(reg, pfcc, shl_opr, 0x00, 0, 1);
4350
4351/* reg_pfcc_ppan
4352 * Pause policy auto negotiation.
4353 * 0 - Disabled. Generate / ignore Pause frames based on pptx / pprtx.
4354 * 1 - Enabled. When auto-negotiation is performed, set the Pause policy
4355 * based on the auto-negotiation resolution.
4356 * Access: RW
4357 *
4358 * Note: The auto-negotiation advertisement is set according to pptx and
4359 * pprtx. When PFC is set on Tx / Rx, ppan must be set to 0.
4360 */
4361MLXSW_ITEM32(reg, pfcc, ppan, 0x04, 28, 4);
4362
4363/* reg_pfcc_prio_mask_tx
4364 * Bit per priority indicating if Tx flow control policy should be
4365 * updated based on bit pfctx.
4366 * Access: WO
4367 */
4368MLXSW_ITEM32(reg, pfcc, prio_mask_tx, 0x04, 16, 8);
4369
4370/* reg_pfcc_prio_mask_rx
4371 * Bit per priority indicating if Rx flow control policy should be
4372 * updated based on bit pfcrx.
4373 * Access: WO
4374 */
4375MLXSW_ITEM32(reg, pfcc, prio_mask_rx, 0x04, 0, 8);
4376
4377/* reg_pfcc_pptx
4378 * Admin Pause policy on Tx.
4379 * 0 - Never generate Pause frames (default).
4380 * 1 - Generate Pause frames according to Rx buffer threshold.
4381 * Access: RW
4382 */
4383MLXSW_ITEM32(reg, pfcc, pptx, 0x08, 31, 1);
4384
4385/* reg_pfcc_aptx
4386 * Active (operational) Pause policy on Tx.
4387 * 0 - Never generate Pause frames.
4388 * 1 - Generate Pause frames according to Rx buffer threshold.
4389 * Access: RO
4390 */
4391MLXSW_ITEM32(reg, pfcc, aptx, 0x08, 30, 1);
4392
4393/* reg_pfcc_pfctx
4394 * Priority based flow control policy on Tx[7:0]. Per-priority bit mask:
4395 * 0 - Never generate priority Pause frames on the specified priority
4396 * (default).
4397 * 1 - Generate priority Pause frames according to Rx buffer threshold on
4398 * the specified priority.
4399 * Access: RW
4400 *
4401 * Note: pfctx and pptx must be mutually exclusive.
4402 */
4403MLXSW_ITEM32(reg, pfcc, pfctx, 0x08, 16, 8);
4404
4405/* reg_pfcc_pprx
4406 * Admin Pause policy on Rx.
4407 * 0 - Ignore received Pause frames (default).
4408 * 1 - Respect received Pause frames.
4409 * Access: RW
4410 */
4411MLXSW_ITEM32(reg, pfcc, pprx, 0x0C, 31, 1);
4412
4413/* reg_pfcc_aprx
4414 * Active (operational) Pause policy on Rx.
4415 * 0 - Ignore received Pause frames.
4416 * 1 - Respect received Pause frames.
4417 * Access: RO
4418 */
4419MLXSW_ITEM32(reg, pfcc, aprx, 0x0C, 30, 1);
4420
4421/* reg_pfcc_pfcrx
4422 * Priority based flow control policy on Rx[7:0]. Per-priority bit mask:
4423 * 0 - Ignore incoming priority Pause frames on the specified priority
4424 * (default).
4425 * 1 - Respect incoming priority Pause frames on the specified priority.
4426 * Access: RW
4427 */
4428MLXSW_ITEM32(reg, pfcc, pfcrx, 0x0C, 16, 8);
4429
Ido Schimmeld81a6bd2016-04-06 17:10:16 +02004430#define MLXSW_REG_PFCC_ALL_PRIO 0xFF
4431
4432static inline void mlxsw_reg_pfcc_prio_pack(char *payload, u8 pfc_en)
4433{
4434 mlxsw_reg_pfcc_prio_mask_tx_set(payload, MLXSW_REG_PFCC_ALL_PRIO);
4435 mlxsw_reg_pfcc_prio_mask_rx_set(payload, MLXSW_REG_PFCC_ALL_PRIO);
4436 mlxsw_reg_pfcc_pfctx_set(payload, pfc_en);
4437 mlxsw_reg_pfcc_pfcrx_set(payload, pfc_en);
4438}
4439
Ido Schimmel6f253d82016-04-06 17:10:12 +02004440static inline void mlxsw_reg_pfcc_pack(char *payload, u8 local_port)
4441{
4442 MLXSW_REG_ZERO(pfcc, payload);
4443 mlxsw_reg_pfcc_local_port_set(payload, local_port);
4444}
4445
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004446/* PPCNT - Ports Performance Counters Register
4447 * -------------------------------------------
4448 * The PPCNT register retrieves per port performance counters.
4449 */
4450#define MLXSW_REG_PPCNT_ID 0x5008
4451#define MLXSW_REG_PPCNT_LEN 0x100
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004452#define MLXSW_REG_PPCNT_COUNTERS_OFFSET 0x08
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004453
Jiri Pirko21978dc2016-10-21 16:07:20 +02004454MLXSW_REG_DEFINE(ppcnt, MLXSW_REG_PPCNT_ID, MLXSW_REG_PPCNT_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004455
4456/* reg_ppcnt_swid
4457 * For HCA: must be always 0.
4458 * Switch partition ID to associate port with.
4459 * Switch partitions are numbered from 0 to 7 inclusively.
4460 * Switch partition 254 indicates stacking ports.
4461 * Switch partition 255 indicates all switch partitions.
4462 * Only valid on Set() operation with local_port=255.
4463 * Access: Index
4464 */
4465MLXSW_ITEM32(reg, ppcnt, swid, 0x00, 24, 8);
4466
4467/* reg_ppcnt_local_port
4468 * Local port number.
4469 * 255 indicates all ports on the device, and is only allowed
4470 * for Set() operation.
4471 * Access: Index
4472 */
4473MLXSW_ITEM32(reg, ppcnt, local_port, 0x00, 16, 8);
4474
4475/* reg_ppcnt_pnat
4476 * Port number access type:
4477 * 0 - Local port number
4478 * 1 - IB port number
4479 * Access: Index
4480 */
4481MLXSW_ITEM32(reg, ppcnt, pnat, 0x00, 14, 2);
4482
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004483enum mlxsw_reg_ppcnt_grp {
4484 MLXSW_REG_PPCNT_IEEE_8023_CNT = 0x0,
Shalom Toledobae4e102018-11-18 16:43:03 +00004485 MLXSW_REG_PPCNT_RFC_2863_CNT = 0x1,
Jiri Pirko1222d152018-07-15 10:45:42 +03004486 MLXSW_REG_PPCNT_RFC_2819_CNT = 0x2,
Shalom Toledobae4e102018-11-18 16:43:03 +00004487 MLXSW_REG_PPCNT_RFC_3635_CNT = 0x3,
Yuval Mintz0afc1222017-11-06 07:23:46 +01004488 MLXSW_REG_PPCNT_EXT_CNT = 0x5,
Shalom Toledobae4e102018-11-18 16:43:03 +00004489 MLXSW_REG_PPCNT_DISCARD_CNT = 0x6,
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004490 MLXSW_REG_PPCNT_PRIO_CNT = 0x10,
Ido Schimmeldf4750e2016-07-19 15:35:54 +02004491 MLXSW_REG_PPCNT_TC_CNT = 0x11,
Yuval Mintz0afc1222017-11-06 07:23:46 +01004492 MLXSW_REG_PPCNT_TC_CONG_TC = 0x13,
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004493};
4494
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004495/* reg_ppcnt_grp
4496 * Performance counter group.
4497 * Group 63 indicates all groups. Only valid on Set() operation with
4498 * clr bit set.
4499 * 0x0: IEEE 802.3 Counters
4500 * 0x1: RFC 2863 Counters
4501 * 0x2: RFC 2819 Counters
4502 * 0x3: RFC 3635 Counters
4503 * 0x5: Ethernet Extended Counters
Shalom Toledobae4e102018-11-18 16:43:03 +00004504 * 0x6: Ethernet Discard Counters
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004505 * 0x8: Link Level Retransmission Counters
4506 * 0x10: Per Priority Counters
4507 * 0x11: Per Traffic Class Counters
4508 * 0x12: Physical Layer Counters
Yuval Mintz0afc1222017-11-06 07:23:46 +01004509 * 0x13: Per Traffic Class Congestion Counters
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004510 * Access: Index
4511 */
4512MLXSW_ITEM32(reg, ppcnt, grp, 0x00, 0, 6);
4513
4514/* reg_ppcnt_clr
4515 * Clear counters. Setting the clr bit will reset the counter value
4516 * for all counters in the counter group. This bit can be set
4517 * for both Set() and Get() operation.
4518 * Access: OP
4519 */
4520MLXSW_ITEM32(reg, ppcnt, clr, 0x04, 31, 1);
4521
4522/* reg_ppcnt_prio_tc
4523 * Priority for counter set that support per priority, valid values: 0-7.
4524 * Traffic class for counter set that support per traffic class,
4525 * valid values: 0- cap_max_tclass-1 .
4526 * For HCA: cap_max_tclass is always 8.
4527 * Otherwise must be 0.
4528 * Access: Index
4529 */
4530MLXSW_ITEM32(reg, ppcnt, prio_tc, 0x04, 0, 5);
4531
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004532/* Ethernet IEEE 802.3 Counter Group */
4533
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004534/* reg_ppcnt_a_frames_transmitted_ok
4535 * Access: RO
4536 */
4537MLXSW_ITEM64(reg, ppcnt, a_frames_transmitted_ok,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004538 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004539
4540/* reg_ppcnt_a_frames_received_ok
4541 * Access: RO
4542 */
4543MLXSW_ITEM64(reg, ppcnt, a_frames_received_ok,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004544 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004545
4546/* reg_ppcnt_a_frame_check_sequence_errors
4547 * Access: RO
4548 */
4549MLXSW_ITEM64(reg, ppcnt, a_frame_check_sequence_errors,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004550 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x10, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004551
4552/* reg_ppcnt_a_alignment_errors
4553 * Access: RO
4554 */
4555MLXSW_ITEM64(reg, ppcnt, a_alignment_errors,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004556 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x18, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004557
4558/* reg_ppcnt_a_octets_transmitted_ok
4559 * Access: RO
4560 */
4561MLXSW_ITEM64(reg, ppcnt, a_octets_transmitted_ok,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004562 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x20, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004563
4564/* reg_ppcnt_a_octets_received_ok
4565 * Access: RO
4566 */
4567MLXSW_ITEM64(reg, ppcnt, a_octets_received_ok,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004568 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x28, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004569
4570/* reg_ppcnt_a_multicast_frames_xmitted_ok
4571 * Access: RO
4572 */
4573MLXSW_ITEM64(reg, ppcnt, a_multicast_frames_xmitted_ok,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004574 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x30, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004575
4576/* reg_ppcnt_a_broadcast_frames_xmitted_ok
4577 * Access: RO
4578 */
4579MLXSW_ITEM64(reg, ppcnt, a_broadcast_frames_xmitted_ok,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004580 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x38, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004581
4582/* reg_ppcnt_a_multicast_frames_received_ok
4583 * Access: RO
4584 */
4585MLXSW_ITEM64(reg, ppcnt, a_multicast_frames_received_ok,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004586 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x40, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004587
4588/* reg_ppcnt_a_broadcast_frames_received_ok
4589 * Access: RO
4590 */
4591MLXSW_ITEM64(reg, ppcnt, a_broadcast_frames_received_ok,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004592 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x48, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004593
4594/* reg_ppcnt_a_in_range_length_errors
4595 * Access: RO
4596 */
4597MLXSW_ITEM64(reg, ppcnt, a_in_range_length_errors,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004598 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x50, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004599
4600/* reg_ppcnt_a_out_of_range_length_field
4601 * Access: RO
4602 */
4603MLXSW_ITEM64(reg, ppcnt, a_out_of_range_length_field,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004604 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x58, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004605
4606/* reg_ppcnt_a_frame_too_long_errors
4607 * Access: RO
4608 */
4609MLXSW_ITEM64(reg, ppcnt, a_frame_too_long_errors,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004610 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004611
4612/* reg_ppcnt_a_symbol_error_during_carrier
4613 * Access: RO
4614 */
4615MLXSW_ITEM64(reg, ppcnt, a_symbol_error_during_carrier,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004616 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x68, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004617
4618/* reg_ppcnt_a_mac_control_frames_transmitted
4619 * Access: RO
4620 */
4621MLXSW_ITEM64(reg, ppcnt, a_mac_control_frames_transmitted,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004622 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004623
4624/* reg_ppcnt_a_mac_control_frames_received
4625 * Access: RO
4626 */
4627MLXSW_ITEM64(reg, ppcnt, a_mac_control_frames_received,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004628 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x78, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004629
4630/* reg_ppcnt_a_unsupported_opcodes_received
4631 * Access: RO
4632 */
4633MLXSW_ITEM64(reg, ppcnt, a_unsupported_opcodes_received,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004634 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x80, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004635
4636/* reg_ppcnt_a_pause_mac_ctrl_frames_received
4637 * Access: RO
4638 */
4639MLXSW_ITEM64(reg, ppcnt, a_pause_mac_ctrl_frames_received,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004640 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x88, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004641
4642/* reg_ppcnt_a_pause_mac_ctrl_frames_transmitted
4643 * Access: RO
4644 */
4645MLXSW_ITEM64(reg, ppcnt, a_pause_mac_ctrl_frames_transmitted,
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004646 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x90, 0, 64);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004647
Shalom Toledobae4e102018-11-18 16:43:03 +00004648/* Ethernet RFC 2863 Counter Group */
4649
4650/* reg_ppcnt_if_in_discards
4651 * Access: RO
4652 */
4653MLXSW_ITEM64(reg, ppcnt, if_in_discards,
4654 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x10, 0, 64);
4655
4656/* reg_ppcnt_if_out_discards
4657 * Access: RO
4658 */
4659MLXSW_ITEM64(reg, ppcnt, if_out_discards,
4660 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x38, 0, 64);
4661
4662/* reg_ppcnt_if_out_errors
4663 * Access: RO
4664 */
4665MLXSW_ITEM64(reg, ppcnt, if_out_errors,
4666 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x40, 0, 64);
4667
Jiri Pirko1222d152018-07-15 10:45:42 +03004668/* Ethernet RFC 2819 Counter Group */
4669
Shalom Toledobae4e102018-11-18 16:43:03 +00004670/* reg_ppcnt_ether_stats_undersize_pkts
4671 * Access: RO
4672 */
4673MLXSW_ITEM64(reg, ppcnt, ether_stats_undersize_pkts,
4674 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x30, 0, 64);
4675
4676/* reg_ppcnt_ether_stats_oversize_pkts
4677 * Access: RO
4678 */
4679MLXSW_ITEM64(reg, ppcnt, ether_stats_oversize_pkts,
4680 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x38, 0, 64);
4681
4682/* reg_ppcnt_ether_stats_fragments
4683 * Access: RO
4684 */
4685MLXSW_ITEM64(reg, ppcnt, ether_stats_fragments,
4686 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x40, 0, 64);
4687
Jiri Pirko1222d152018-07-15 10:45:42 +03004688/* reg_ppcnt_ether_stats_pkts64octets
4689 * Access: RO
4690 */
4691MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts64octets,
4692 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x58, 0, 64);
4693
4694/* reg_ppcnt_ether_stats_pkts65to127octets
4695 * Access: RO
4696 */
4697MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts65to127octets,
4698 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64);
4699
4700/* reg_ppcnt_ether_stats_pkts128to255octets
4701 * Access: RO
4702 */
4703MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts128to255octets,
4704 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x68, 0, 64);
4705
4706/* reg_ppcnt_ether_stats_pkts256to511octets
4707 * Access: RO
4708 */
4709MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts256to511octets,
4710 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64);
4711
4712/* reg_ppcnt_ether_stats_pkts512to1023octets
4713 * Access: RO
4714 */
4715MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts512to1023octets,
4716 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x78, 0, 64);
4717
4718/* reg_ppcnt_ether_stats_pkts1024to1518octets
4719 * Access: RO
4720 */
4721MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts1024to1518octets,
4722 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x80, 0, 64);
4723
4724/* reg_ppcnt_ether_stats_pkts1519to2047octets
4725 * Access: RO
4726 */
4727MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts1519to2047octets,
4728 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x88, 0, 64);
4729
4730/* reg_ppcnt_ether_stats_pkts2048to4095octets
4731 * Access: RO
4732 */
4733MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts2048to4095octets,
4734 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x90, 0, 64);
4735
4736/* reg_ppcnt_ether_stats_pkts4096to8191octets
4737 * Access: RO
4738 */
4739MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts4096to8191octets,
4740 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x98, 0, 64);
4741
4742/* reg_ppcnt_ether_stats_pkts8192to10239octets
4743 * Access: RO
4744 */
4745MLXSW_ITEM64(reg, ppcnt, ether_stats_pkts8192to10239octets,
4746 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0xA0, 0, 64);
4747
Shalom Toledobae4e102018-11-18 16:43:03 +00004748/* Ethernet RFC 3635 Counter Group */
4749
4750/* reg_ppcnt_dot3stats_fcs_errors
4751 * Access: RO
4752 */
4753MLXSW_ITEM64(reg, ppcnt, dot3stats_fcs_errors,
4754 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64);
4755
4756/* reg_ppcnt_dot3stats_symbol_errors
4757 * Access: RO
4758 */
4759MLXSW_ITEM64(reg, ppcnt, dot3stats_symbol_errors,
4760 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64);
4761
4762/* reg_ppcnt_dot3control_in_unknown_opcodes
4763 * Access: RO
4764 */
4765MLXSW_ITEM64(reg, ppcnt, dot3control_in_unknown_opcodes,
4766 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x68, 0, 64);
4767
4768/* reg_ppcnt_dot3in_pause_frames
4769 * Access: RO
4770 */
4771MLXSW_ITEM64(reg, ppcnt, dot3in_pause_frames,
4772 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64);
4773
Yuval Mintz0afc1222017-11-06 07:23:46 +01004774/* Ethernet Extended Counter Group Counters */
4775
4776/* reg_ppcnt_ecn_marked
4777 * Access: RO
4778 */
4779MLXSW_ITEM64(reg, ppcnt, ecn_marked,
4780 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64);
4781
Shalom Toledobae4e102018-11-18 16:43:03 +00004782/* Ethernet Discard Counter Group Counters */
4783
4784/* reg_ppcnt_ingress_general
4785 * Access: RO
4786 */
4787MLXSW_ITEM64(reg, ppcnt, ingress_general,
4788 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64);
4789
4790/* reg_ppcnt_ingress_policy_engine
4791 * Access: RO
4792 */
4793MLXSW_ITEM64(reg, ppcnt, ingress_policy_engine,
4794 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64);
4795
4796/* reg_ppcnt_ingress_vlan_membership
4797 * Access: RO
4798 */
4799MLXSW_ITEM64(reg, ppcnt, ingress_vlan_membership,
4800 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x10, 0, 64);
4801
4802/* reg_ppcnt_ingress_tag_frame_type
4803 * Access: RO
4804 */
4805MLXSW_ITEM64(reg, ppcnt, ingress_tag_frame_type,
4806 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x18, 0, 64);
4807
4808/* reg_ppcnt_egress_vlan_membership
4809 * Access: RO
4810 */
4811MLXSW_ITEM64(reg, ppcnt, egress_vlan_membership,
4812 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x20, 0, 64);
4813
4814/* reg_ppcnt_loopback_filter
4815 * Access: RO
4816 */
4817MLXSW_ITEM64(reg, ppcnt, loopback_filter,
4818 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x28, 0, 64);
4819
4820/* reg_ppcnt_egress_general
4821 * Access: RO
4822 */
4823MLXSW_ITEM64(reg, ppcnt, egress_general,
4824 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x30, 0, 64);
4825
4826/* reg_ppcnt_egress_hoq
4827 * Access: RO
4828 */
4829MLXSW_ITEM64(reg, ppcnt, egress_hoq,
4830 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x40, 0, 64);
4831
4832/* reg_ppcnt_egress_policy_engine
4833 * Access: RO
4834 */
4835MLXSW_ITEM64(reg, ppcnt, egress_policy_engine,
4836 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x50, 0, 64);
4837
4838/* reg_ppcnt_ingress_tx_link_down
4839 * Access: RO
4840 */
4841MLXSW_ITEM64(reg, ppcnt, ingress_tx_link_down,
4842 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x58, 0, 64);
4843
4844/* reg_ppcnt_egress_stp_filter
4845 * Access: RO
4846 */
4847MLXSW_ITEM64(reg, ppcnt, egress_stp_filter,
4848 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64);
4849
4850/* reg_ppcnt_egress_sll
4851 * Access: RO
4852 */
4853MLXSW_ITEM64(reg, ppcnt, egress_sll,
4854 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64);
4855
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004856/* Ethernet Per Priority Group Counters */
4857
4858/* reg_ppcnt_rx_octets
4859 * Access: RO
4860 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004861MLXSW_ITEM64(reg, ppcnt, rx_octets,
4862 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004863
4864/* reg_ppcnt_rx_frames
4865 * Access: RO
4866 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004867MLXSW_ITEM64(reg, ppcnt, rx_frames,
4868 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x20, 0, 64);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004869
4870/* reg_ppcnt_tx_octets
4871 * Access: RO
4872 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004873MLXSW_ITEM64(reg, ppcnt, tx_octets,
4874 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x28, 0, 64);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004875
4876/* reg_ppcnt_tx_frames
4877 * Access: RO
4878 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004879MLXSW_ITEM64(reg, ppcnt, tx_frames,
4880 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x48, 0, 64);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004881
4882/* reg_ppcnt_rx_pause
4883 * Access: RO
4884 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004885MLXSW_ITEM64(reg, ppcnt, rx_pause,
4886 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x50, 0, 64);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004887
4888/* reg_ppcnt_rx_pause_duration
4889 * Access: RO
4890 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004891MLXSW_ITEM64(reg, ppcnt, rx_pause_duration,
4892 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x58, 0, 64);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004893
4894/* reg_ppcnt_tx_pause
4895 * Access: RO
4896 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004897MLXSW_ITEM64(reg, ppcnt, tx_pause,
4898 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x60, 0, 64);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004899
4900/* reg_ppcnt_tx_pause_duration
4901 * Access: RO
4902 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004903MLXSW_ITEM64(reg, ppcnt, tx_pause_duration,
4904 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x68, 0, 64);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004905
4906/* reg_ppcnt_rx_pause_transition
4907 * Access: RO
4908 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004909MLXSW_ITEM64(reg, ppcnt, tx_pause_transition,
4910 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x70, 0, 64);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004911
Ido Schimmeldf4750e2016-07-19 15:35:54 +02004912/* Ethernet Per Traffic Group Counters */
4913
4914/* reg_ppcnt_tc_transmit_queue
4915 * Contains the transmit queue depth in cells of traffic class
4916 * selected by prio_tc and the port selected by local_port.
4917 * The field cannot be cleared.
4918 * Access: RO
4919 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004920MLXSW_ITEM64(reg, ppcnt, tc_transmit_queue,
4921 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64);
Ido Schimmeldf4750e2016-07-19 15:35:54 +02004922
4923/* reg_ppcnt_tc_no_buffer_discard_uc
4924 * The number of unicast packets dropped due to lack of shared
4925 * buffer resources.
4926 * Access: RO
4927 */
Nogah Frankel3e8c1fd2017-10-26 10:55:33 +02004928MLXSW_ITEM64(reg, ppcnt, tc_no_buffer_discard_uc,
4929 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x08, 0, 64);
Ido Schimmeldf4750e2016-07-19 15:35:54 +02004930
Yuval Mintz0afc1222017-11-06 07:23:46 +01004931/* Ethernet Per Traffic Class Congestion Group Counters */
4932
4933/* reg_ppcnt_wred_discard
4934 * Access: RO
4935 */
4936MLXSW_ITEM64(reg, ppcnt, wred_discard,
4937 MLXSW_REG_PPCNT_COUNTERS_OFFSET + 0x00, 0, 64);
4938
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004939static inline void mlxsw_reg_ppcnt_pack(char *payload, u8 local_port,
4940 enum mlxsw_reg_ppcnt_grp grp,
4941 u8 prio_tc)
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004942{
4943 MLXSW_REG_ZERO(ppcnt, payload);
4944 mlxsw_reg_ppcnt_swid_set(payload, 0);
4945 mlxsw_reg_ppcnt_local_port_set(payload, local_port);
4946 mlxsw_reg_ppcnt_pnat_set(payload, 0);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004947 mlxsw_reg_ppcnt_grp_set(payload, grp);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004948 mlxsw_reg_ppcnt_clr_set(payload, 0);
Ido Schimmel34dba0a2016-04-06 17:10:15 +02004949 mlxsw_reg_ppcnt_prio_tc_set(payload, prio_tc);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02004950}
4951
Elad Raz71367932016-10-28 21:35:54 +02004952/* PLIB - Port Local to InfiniBand Port
4953 * ------------------------------------
4954 * The PLIB register performs mapping from Local Port into InfiniBand Port.
4955 */
4956#define MLXSW_REG_PLIB_ID 0x500A
4957#define MLXSW_REG_PLIB_LEN 0x10
4958
4959MLXSW_REG_DEFINE(plib, MLXSW_REG_PLIB_ID, MLXSW_REG_PLIB_LEN);
4960
4961/* reg_plib_local_port
4962 * Local port number.
4963 * Access: Index
4964 */
4965MLXSW_ITEM32(reg, plib, local_port, 0x00, 16, 8);
4966
4967/* reg_plib_ib_port
4968 * InfiniBand port remapping for local_port.
4969 * Access: RW
4970 */
4971MLXSW_ITEM32(reg, plib, ib_port, 0x00, 0, 8);
4972
Ido Schimmelb98ff152016-04-06 17:10:00 +02004973/* PPTB - Port Prio To Buffer Register
4974 * -----------------------------------
4975 * Configures the switch priority to buffer table.
4976 */
4977#define MLXSW_REG_PPTB_ID 0x500B
Ido Schimmel11719a52016-07-15 11:15:02 +02004978#define MLXSW_REG_PPTB_LEN 0x10
Ido Schimmelb98ff152016-04-06 17:10:00 +02004979
Jiri Pirko21978dc2016-10-21 16:07:20 +02004980MLXSW_REG_DEFINE(pptb, MLXSW_REG_PPTB_ID, MLXSW_REG_PPTB_LEN);
Ido Schimmelb98ff152016-04-06 17:10:00 +02004981
4982enum {
4983 MLXSW_REG_PPTB_MM_UM,
4984 MLXSW_REG_PPTB_MM_UNICAST,
4985 MLXSW_REG_PPTB_MM_MULTICAST,
4986};
4987
4988/* reg_pptb_mm
4989 * Mapping mode.
4990 * 0 - Map both unicast and multicast packets to the same buffer.
4991 * 1 - Map only unicast packets.
4992 * 2 - Map only multicast packets.
4993 * Access: Index
4994 *
4995 * Note: SwitchX-2 only supports the first option.
4996 */
4997MLXSW_ITEM32(reg, pptb, mm, 0x00, 28, 2);
4998
4999/* reg_pptb_local_port
5000 * Local port number.
5001 * Access: Index
5002 */
5003MLXSW_ITEM32(reg, pptb, local_port, 0x00, 16, 8);
5004
5005/* reg_pptb_um
5006 * Enables the update of the untagged_buf field.
5007 * Access: RW
5008 */
5009MLXSW_ITEM32(reg, pptb, um, 0x00, 8, 1);
5010
5011/* reg_pptb_pm
5012 * Enables the update of the prio_to_buff field.
5013 * Bit <i> is a flag for updating the mapping for switch priority <i>.
5014 * Access: RW
5015 */
5016MLXSW_ITEM32(reg, pptb, pm, 0x00, 0, 8);
5017
5018/* reg_pptb_prio_to_buff
5019 * Mapping of switch priority <i> to one of the allocated receive port
5020 * buffers.
5021 * Access: RW
5022 */
5023MLXSW_ITEM_BIT_ARRAY(reg, pptb, prio_to_buff, 0x04, 0x04, 4);
5024
5025/* reg_pptb_pm_msb
5026 * Enables the update of the prio_to_buff field.
5027 * Bit <i> is a flag for updating the mapping for switch priority <i+8>.
5028 * Access: RW
5029 */
5030MLXSW_ITEM32(reg, pptb, pm_msb, 0x08, 24, 8);
5031
5032/* reg_pptb_untagged_buff
5033 * Mapping of untagged frames to one of the allocated receive port buffers.
5034 * Access: RW
5035 *
5036 * Note: In SwitchX-2 this field must be mapped to buffer 8. Reserved for
5037 * Spectrum, as it maps untagged packets based on the default switch priority.
5038 */
5039MLXSW_ITEM32(reg, pptb, untagged_buff, 0x08, 0, 4);
5040
Ido Schimmel11719a52016-07-15 11:15:02 +02005041/* reg_pptb_prio_to_buff_msb
5042 * Mapping of switch priority <i+8> to one of the allocated receive port
5043 * buffers.
5044 * Access: RW
5045 */
5046MLXSW_ITEM_BIT_ARRAY(reg, pptb, prio_to_buff_msb, 0x0C, 0x04, 4);
5047
Ido Schimmelb98ff152016-04-06 17:10:00 +02005048#define MLXSW_REG_PPTB_ALL_PRIO 0xFF
5049
5050static inline void mlxsw_reg_pptb_pack(char *payload, u8 local_port)
5051{
5052 MLXSW_REG_ZERO(pptb, payload);
5053 mlxsw_reg_pptb_mm_set(payload, MLXSW_REG_PPTB_MM_UM);
5054 mlxsw_reg_pptb_local_port_set(payload, local_port);
5055 mlxsw_reg_pptb_pm_set(payload, MLXSW_REG_PPTB_ALL_PRIO);
Ido Schimmel11719a52016-07-15 11:15:02 +02005056 mlxsw_reg_pptb_pm_msb_set(payload, MLXSW_REG_PPTB_ALL_PRIO);
5057}
5058
5059static inline void mlxsw_reg_pptb_prio_to_buff_pack(char *payload, u8 prio,
5060 u8 buff)
5061{
5062 mlxsw_reg_pptb_prio_to_buff_set(payload, prio, buff);
5063 mlxsw_reg_pptb_prio_to_buff_msb_set(payload, prio, buff);
Ido Schimmelb98ff152016-04-06 17:10:00 +02005064}
5065
Jiri Pirkoe0594362015-10-16 14:01:31 +02005066/* PBMC - Port Buffer Management Control Register
5067 * ----------------------------------------------
5068 * The PBMC register configures and retrieves the port packet buffer
5069 * allocation for different Prios, and the Pause threshold management.
5070 */
5071#define MLXSW_REG_PBMC_ID 0x500C
Ido Schimmel7ad7cd62016-04-06 17:10:04 +02005072#define MLXSW_REG_PBMC_LEN 0x6C
Jiri Pirkoe0594362015-10-16 14:01:31 +02005073
Jiri Pirko21978dc2016-10-21 16:07:20 +02005074MLXSW_REG_DEFINE(pbmc, MLXSW_REG_PBMC_ID, MLXSW_REG_PBMC_LEN);
Jiri Pirkoe0594362015-10-16 14:01:31 +02005075
5076/* reg_pbmc_local_port
5077 * Local port number.
5078 * Access: Index
5079 */
5080MLXSW_ITEM32(reg, pbmc, local_port, 0x00, 16, 8);
5081
5082/* reg_pbmc_xoff_timer_value
5083 * When device generates a pause frame, it uses this value as the pause
5084 * timer (time for the peer port to pause in quota-512 bit time).
5085 * Access: RW
5086 */
5087MLXSW_ITEM32(reg, pbmc, xoff_timer_value, 0x04, 16, 16);
5088
5089/* reg_pbmc_xoff_refresh
5090 * The time before a new pause frame should be sent to refresh the pause RW
5091 * state. Using the same units as xoff_timer_value above (in quota-512 bit
5092 * time).
5093 * Access: RW
5094 */
5095MLXSW_ITEM32(reg, pbmc, xoff_refresh, 0x04, 0, 16);
5096
Ido Schimmeld6b7c132016-04-06 17:10:05 +02005097#define MLXSW_REG_PBMC_PORT_SHARED_BUF_IDX 11
5098
Jiri Pirkoe0594362015-10-16 14:01:31 +02005099/* reg_pbmc_buf_lossy
5100 * The field indicates if the buffer is lossy.
5101 * 0 - Lossless
5102 * 1 - Lossy
5103 * Access: RW
5104 */
5105MLXSW_ITEM32_INDEXED(reg, pbmc, buf_lossy, 0x0C, 25, 1, 0x08, 0x00, false);
5106
5107/* reg_pbmc_buf_epsb
5108 * Eligible for Port Shared buffer.
5109 * If epsb is set, packets assigned to buffer are allowed to insert the port
5110 * shared buffer.
5111 * When buf_lossy is MLXSW_REG_PBMC_LOSSY_LOSSY this field is reserved.
5112 * Access: RW
5113 */
5114MLXSW_ITEM32_INDEXED(reg, pbmc, buf_epsb, 0x0C, 24, 1, 0x08, 0x00, false);
5115
5116/* reg_pbmc_buf_size
5117 * The part of the packet buffer array is allocated for the specific buffer.
5118 * Units are represented in cells.
5119 * Access: RW
5120 */
5121MLXSW_ITEM32_INDEXED(reg, pbmc, buf_size, 0x0C, 0, 16, 0x08, 0x00, false);
5122
Ido Schimmel155f9de2016-04-06 17:10:13 +02005123/* reg_pbmc_buf_xoff_threshold
5124 * Once the amount of data in the buffer goes above this value, device
5125 * starts sending PFC frames for all priorities associated with the
5126 * buffer. Units are represented in cells. Reserved in case of lossy
5127 * buffer.
5128 * Access: RW
5129 *
5130 * Note: In Spectrum, reserved for buffer[9].
5131 */
5132MLXSW_ITEM32_INDEXED(reg, pbmc, buf_xoff_threshold, 0x0C, 16, 16,
5133 0x08, 0x04, false);
5134
5135/* reg_pbmc_buf_xon_threshold
5136 * When the amount of data in the buffer goes below this value, device
5137 * stops sending PFC frames for the priorities associated with the
5138 * buffer. Units are represented in cells. Reserved in case of lossy
5139 * buffer.
5140 * Access: RW
5141 *
5142 * Note: In Spectrum, reserved for buffer[9].
5143 */
5144MLXSW_ITEM32_INDEXED(reg, pbmc, buf_xon_threshold, 0x0C, 0, 16,
5145 0x08, 0x04, false);
5146
Jiri Pirkoe0594362015-10-16 14:01:31 +02005147static inline void mlxsw_reg_pbmc_pack(char *payload, u8 local_port,
5148 u16 xoff_timer_value, u16 xoff_refresh)
5149{
5150 MLXSW_REG_ZERO(pbmc, payload);
5151 mlxsw_reg_pbmc_local_port_set(payload, local_port);
5152 mlxsw_reg_pbmc_xoff_timer_value_set(payload, xoff_timer_value);
5153 mlxsw_reg_pbmc_xoff_refresh_set(payload, xoff_refresh);
5154}
5155
5156static inline void mlxsw_reg_pbmc_lossy_buffer_pack(char *payload,
5157 int buf_index,
5158 u16 size)
5159{
5160 mlxsw_reg_pbmc_buf_lossy_set(payload, buf_index, 1);
5161 mlxsw_reg_pbmc_buf_epsb_set(payload, buf_index, 0);
5162 mlxsw_reg_pbmc_buf_size_set(payload, buf_index, size);
5163}
5164
Ido Schimmel155f9de2016-04-06 17:10:13 +02005165static inline void mlxsw_reg_pbmc_lossless_buffer_pack(char *payload,
5166 int buf_index, u16 size,
5167 u16 threshold)
5168{
5169 mlxsw_reg_pbmc_buf_lossy_set(payload, buf_index, 0);
5170 mlxsw_reg_pbmc_buf_epsb_set(payload, buf_index, 0);
5171 mlxsw_reg_pbmc_buf_size_set(payload, buf_index, size);
5172 mlxsw_reg_pbmc_buf_xoff_threshold_set(payload, buf_index, threshold);
5173 mlxsw_reg_pbmc_buf_xon_threshold_set(payload, buf_index, threshold);
5174}
5175
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005176/* PSPA - Port Switch Partition Allocation
5177 * ---------------------------------------
5178 * Controls the association of a port with a switch partition and enables
5179 * configuring ports as stacking ports.
5180 */
Jiri Pirko3f0effd12015-10-15 17:43:23 +02005181#define MLXSW_REG_PSPA_ID 0x500D
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005182#define MLXSW_REG_PSPA_LEN 0x8
5183
Jiri Pirko21978dc2016-10-21 16:07:20 +02005184MLXSW_REG_DEFINE(pspa, MLXSW_REG_PSPA_ID, MLXSW_REG_PSPA_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005185
5186/* reg_pspa_swid
5187 * Switch partition ID.
5188 * Access: RW
5189 */
5190MLXSW_ITEM32(reg, pspa, swid, 0x00, 24, 8);
5191
5192/* reg_pspa_local_port
5193 * Local port number.
5194 * Access: Index
5195 */
5196MLXSW_ITEM32(reg, pspa, local_port, 0x00, 16, 8);
5197
5198/* reg_pspa_sub_port
5199 * Virtual port within the local port. Set to 0 when virtual ports are
5200 * disabled on the local port.
5201 * Access: Index
5202 */
5203MLXSW_ITEM32(reg, pspa, sub_port, 0x00, 8, 8);
5204
5205static inline void mlxsw_reg_pspa_pack(char *payload, u8 swid, u8 local_port)
5206{
5207 MLXSW_REG_ZERO(pspa, payload);
5208 mlxsw_reg_pspa_swid_set(payload, swid);
5209 mlxsw_reg_pspa_local_port_set(payload, local_port);
5210 mlxsw_reg_pspa_sub_port_set(payload, 0);
5211}
5212
Jiri Pirkoa0c25382019-05-05 09:48:05 +03005213/* PPLR - Port Physical Loopback Register
5214 * --------------------------------------
5215 * This register allows configuration of the port's loopback mode.
5216 */
5217#define MLXSW_REG_PPLR_ID 0x5018
5218#define MLXSW_REG_PPLR_LEN 0x8
5219
5220MLXSW_REG_DEFINE(pplr, MLXSW_REG_PPLR_ID, MLXSW_REG_PPLR_LEN);
5221
5222/* reg_pplr_local_port
5223 * Local port number.
5224 * Access: Index
5225 */
5226MLXSW_ITEM32(reg, pplr, local_port, 0x00, 16, 8);
5227
5228/* Phy local loopback. When set the port's egress traffic is looped back
5229 * to the receiver and the port transmitter is disabled.
5230 */
5231#define MLXSW_REG_PPLR_LB_TYPE_BIT_PHY_LOCAL BIT(1)
5232
5233/* reg_pplr_lb_en
5234 * Loopback enable.
5235 * Access: RW
5236 */
5237MLXSW_ITEM32(reg, pplr, lb_en, 0x04, 0, 8);
5238
5239static inline void mlxsw_reg_pplr_pack(char *payload, u8 local_port,
5240 bool phy_local)
5241{
5242 MLXSW_REG_ZERO(pplr, payload);
5243 mlxsw_reg_pplr_local_port_set(payload, local_port);
5244 mlxsw_reg_pplr_lb_en_set(payload,
5245 phy_local ?
5246 MLXSW_REG_PPLR_LB_TYPE_BIT_PHY_LOCAL : 0);
5247}
5248
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005249/* HTGT - Host Trap Group Table
5250 * ----------------------------
5251 * Configures the properties for forwarding to CPU.
5252 */
5253#define MLXSW_REG_HTGT_ID 0x7002
Elad Raze158e5e2017-02-06 13:56:27 +01005254#define MLXSW_REG_HTGT_LEN 0x20
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005255
Jiri Pirko21978dc2016-10-21 16:07:20 +02005256MLXSW_REG_DEFINE(htgt, MLXSW_REG_HTGT_ID, MLXSW_REG_HTGT_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005257
5258/* reg_htgt_swid
5259 * Switch partition ID.
5260 * Access: Index
5261 */
5262MLXSW_ITEM32(reg, htgt, swid, 0x00, 24, 8);
5263
5264#define MLXSW_REG_HTGT_PATH_TYPE_LOCAL 0x0 /* For locally attached CPU */
5265
5266/* reg_htgt_type
5267 * CPU path type.
5268 * Access: RW
5269 */
5270MLXSW_ITEM32(reg, htgt, type, 0x00, 8, 4);
5271
Ido Schimmel801bd3d2015-10-15 17:43:28 +02005272enum mlxsw_reg_htgt_trap_group {
5273 MLXSW_REG_HTGT_TRAP_GROUP_EMAD,
Nogah Frankel117b0da2016-11-25 10:33:44 +01005274 MLXSW_REG_HTGT_TRAP_GROUP_SX2_RX,
5275 MLXSW_REG_HTGT_TRAP_GROUP_SX2_CTRL,
5276 MLXSW_REG_HTGT_TRAP_GROUP_SP_STP,
5277 MLXSW_REG_HTGT_TRAP_GROUP_SP_LACP,
5278 MLXSW_REG_HTGT_TRAP_GROUP_SP_LLDP,
5279 MLXSW_REG_HTGT_TRAP_GROUP_SP_IGMP,
Arkadi Sharshevsky8d548142017-07-18 10:10:11 +02005280 MLXSW_REG_HTGT_TRAP_GROUP_SP_BGP,
Nogah Frankel117b0da2016-11-25 10:33:44 +01005281 MLXSW_REG_HTGT_TRAP_GROUP_SP_OSPF,
Yotam Gigib48cfc82017-09-19 10:00:20 +02005282 MLXSW_REG_HTGT_TRAP_GROUP_SP_PIM,
5283 MLXSW_REG_HTGT_TRAP_GROUP_SP_MULTICAST,
Nogah Frankel117b0da2016-11-25 10:33:44 +01005284 MLXSW_REG_HTGT_TRAP_GROUP_SP_ARP,
Arkadi Sharshevsky8d548142017-07-18 10:10:11 +02005285 MLXSW_REG_HTGT_TRAP_GROUP_SP_HOST_MISS,
Nogah Frankel117b0da2016-11-25 10:33:44 +01005286 MLXSW_REG_HTGT_TRAP_GROUP_SP_ROUTER_EXP,
5287 MLXSW_REG_HTGT_TRAP_GROUP_SP_REMOTE_ROUTE,
5288 MLXSW_REG_HTGT_TRAP_GROUP_SP_IP2ME,
5289 MLXSW_REG_HTGT_TRAP_GROUP_SP_DHCP,
Yotam Gigib48cfc82017-09-19 10:00:20 +02005290 MLXSW_REG_HTGT_TRAP_GROUP_SP_RPF,
Nogah Frankel117b0da2016-11-25 10:33:44 +01005291 MLXSW_REG_HTGT_TRAP_GROUP_SP_EVENT,
Arkadi Sharshevsky588823f2017-07-17 14:15:31 +02005292 MLXSW_REG_HTGT_TRAP_GROUP_SP_IPV6_MLD,
Arkadi Sharshevsky8d548142017-07-18 10:10:11 +02005293 MLXSW_REG_HTGT_TRAP_GROUP_SP_IPV6_ND,
Ido Schimmel2f4f4492018-12-04 08:15:12 +00005294 MLXSW_REG_HTGT_TRAP_GROUP_SP_LBERROR,
Ido Schimmel801bd3d2015-10-15 17:43:28 +02005295};
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005296
5297/* reg_htgt_trap_group
5298 * Trap group number. User defined number specifying which trap groups
5299 * should be forwarded to the CPU. The mapping between trap IDs and trap
5300 * groups is configured using HPKT register.
5301 * Access: Index
5302 */
5303MLXSW_ITEM32(reg, htgt, trap_group, 0x00, 0, 8);
5304
5305enum {
5306 MLXSW_REG_HTGT_POLICER_DISABLE,
5307 MLXSW_REG_HTGT_POLICER_ENABLE,
5308};
5309
5310/* reg_htgt_pide
5311 * Enable policer ID specified using 'pid' field.
5312 * Access: RW
5313 */
5314MLXSW_ITEM32(reg, htgt, pide, 0x04, 15, 1);
5315
Nogah Frankel579c82e2016-11-25 10:33:42 +01005316#define MLXSW_REG_HTGT_INVALID_POLICER 0xff
5317
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005318/* reg_htgt_pid
5319 * Policer ID for the trap group.
5320 * Access: RW
5321 */
5322MLXSW_ITEM32(reg, htgt, pid, 0x04, 0, 8);
5323
5324#define MLXSW_REG_HTGT_TRAP_TO_CPU 0x0
5325
5326/* reg_htgt_mirror_action
5327 * Mirror action to use.
5328 * 0 - Trap to CPU.
5329 * 1 - Trap to CPU and mirror to a mirroring agent.
5330 * 2 - Mirror to a mirroring agent and do not trap to CPU.
5331 * Access: RW
5332 *
5333 * Note: Mirroring to a mirroring agent is only supported in Spectrum.
5334 */
5335MLXSW_ITEM32(reg, htgt, mirror_action, 0x08, 8, 2);
5336
5337/* reg_htgt_mirroring_agent
5338 * Mirroring agent.
5339 * Access: RW
5340 */
5341MLXSW_ITEM32(reg, htgt, mirroring_agent, 0x08, 0, 3);
5342
Nogah Frankel579c82e2016-11-25 10:33:42 +01005343#define MLXSW_REG_HTGT_DEFAULT_PRIORITY 0
5344
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005345/* reg_htgt_priority
5346 * Trap group priority.
5347 * In case a packet matches multiple classification rules, the packet will
5348 * only be trapped once, based on the trap ID associated with the group (via
5349 * register HPKT) with the highest priority.
5350 * Supported values are 0-7, with 7 represnting the highest priority.
5351 * Access: RW
5352 *
5353 * Note: In SwitchX-2 this field is ignored and the priority value is replaced
5354 * by the 'trap_group' field.
5355 */
5356MLXSW_ITEM32(reg, htgt, priority, 0x0C, 0, 4);
5357
Nogah Frankel579c82e2016-11-25 10:33:42 +01005358#define MLXSW_REG_HTGT_DEFAULT_TC 7
5359
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005360/* reg_htgt_local_path_cpu_tclass
5361 * CPU ingress traffic class for the trap group.
5362 * Access: RW
5363 */
5364MLXSW_ITEM32(reg, htgt, local_path_cpu_tclass, 0x10, 16, 6);
5365
Nogah Frankel579c82e2016-11-25 10:33:42 +01005366enum mlxsw_reg_htgt_local_path_rdq {
5367 MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_CTRL = 0x13,
5368 MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_RX = 0x14,
5369 MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_EMAD = 0x15,
5370 MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SIB_EMAD = 0x15,
5371};
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005372/* reg_htgt_local_path_rdq
5373 * Receive descriptor queue (RDQ) to use for the trap group.
5374 * Access: RW
5375 */
5376MLXSW_ITEM32(reg, htgt, local_path_rdq, 0x10, 0, 6);
5377
Nogah Frankel579c82e2016-11-25 10:33:42 +01005378static inline void mlxsw_reg_htgt_pack(char *payload, u8 group, u8 policer_id,
5379 u8 priority, u8 tc)
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005380{
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005381 MLXSW_REG_ZERO(htgt, payload);
Nogah Frankel579c82e2016-11-25 10:33:42 +01005382
5383 if (policer_id == MLXSW_REG_HTGT_INVALID_POLICER) {
5384 mlxsw_reg_htgt_pide_set(payload,
5385 MLXSW_REG_HTGT_POLICER_DISABLE);
5386 } else {
5387 mlxsw_reg_htgt_pide_set(payload,
5388 MLXSW_REG_HTGT_POLICER_ENABLE);
5389 mlxsw_reg_htgt_pid_set(payload, policer_id);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005390 }
Nogah Frankel579c82e2016-11-25 10:33:42 +01005391
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005392 mlxsw_reg_htgt_type_set(payload, MLXSW_REG_HTGT_PATH_TYPE_LOCAL);
Ido Schimmel801bd3d2015-10-15 17:43:28 +02005393 mlxsw_reg_htgt_trap_group_set(payload, group);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005394 mlxsw_reg_htgt_mirror_action_set(payload, MLXSW_REG_HTGT_TRAP_TO_CPU);
5395 mlxsw_reg_htgt_mirroring_agent_set(payload, 0);
Nogah Frankel579c82e2016-11-25 10:33:42 +01005396 mlxsw_reg_htgt_priority_set(payload, priority);
5397 mlxsw_reg_htgt_local_path_cpu_tclass_set(payload, tc);
5398 mlxsw_reg_htgt_local_path_rdq_set(payload, group);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005399}
5400
5401/* HPKT - Host Packet Trap
5402 * -----------------------
5403 * Configures trap IDs inside trap groups.
5404 */
5405#define MLXSW_REG_HPKT_ID 0x7003
5406#define MLXSW_REG_HPKT_LEN 0x10
5407
Jiri Pirko21978dc2016-10-21 16:07:20 +02005408MLXSW_REG_DEFINE(hpkt, MLXSW_REG_HPKT_ID, MLXSW_REG_HPKT_LEN);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005409
5410enum {
5411 MLXSW_REG_HPKT_ACK_NOT_REQUIRED,
5412 MLXSW_REG_HPKT_ACK_REQUIRED,
5413};
5414
5415/* reg_hpkt_ack
5416 * Require acknowledgements from the host for events.
5417 * If set, then the device will wait for the event it sent to be acknowledged
5418 * by the host. This option is only relevant for event trap IDs.
5419 * Access: RW
5420 *
5421 * Note: Currently not supported by firmware.
5422 */
5423MLXSW_ITEM32(reg, hpkt, ack, 0x00, 24, 1);
5424
5425enum mlxsw_reg_hpkt_action {
5426 MLXSW_REG_HPKT_ACTION_FORWARD,
5427 MLXSW_REG_HPKT_ACTION_TRAP_TO_CPU,
5428 MLXSW_REG_HPKT_ACTION_MIRROR_TO_CPU,
5429 MLXSW_REG_HPKT_ACTION_DISCARD,
5430 MLXSW_REG_HPKT_ACTION_SOFT_DISCARD,
5431 MLXSW_REG_HPKT_ACTION_TRAP_AND_SOFT_DISCARD,
5432};
5433
5434/* reg_hpkt_action
5435 * Action to perform on packet when trapped.
5436 * 0 - No action. Forward to CPU based on switching rules.
5437 * 1 - Trap to CPU (CPU receives sole copy).
5438 * 2 - Mirror to CPU (CPU receives a replica of the packet).
5439 * 3 - Discard.
5440 * 4 - Soft discard (allow other traps to act on the packet).
5441 * 5 - Trap and soft discard (allow other traps to overwrite this trap).
5442 * Access: RW
5443 *
5444 * Note: Must be set to 0 (forward) for event trap IDs, as they are already
5445 * addressed to the CPU.
5446 */
5447MLXSW_ITEM32(reg, hpkt, action, 0x00, 20, 3);
5448
5449/* reg_hpkt_trap_group
5450 * Trap group to associate the trap with.
5451 * Access: RW
5452 */
5453MLXSW_ITEM32(reg, hpkt, trap_group, 0x00, 12, 6);
5454
5455/* reg_hpkt_trap_id
5456 * Trap ID.
5457 * Access: Index
5458 *
5459 * Note: A trap ID can only be associated with a single trap group. The device
5460 * will associate the trap ID with the last trap group configured.
5461 */
5462MLXSW_ITEM32(reg, hpkt, trap_id, 0x00, 0, 9);
5463
5464enum {
5465 MLXSW_REG_HPKT_CTRL_PACKET_DEFAULT,
5466 MLXSW_REG_HPKT_CTRL_PACKET_NO_BUFFER,
5467 MLXSW_REG_HPKT_CTRL_PACKET_USE_BUFFER,
5468};
5469
5470/* reg_hpkt_ctrl
5471 * Configure dedicated buffer resources for control packets.
Nogah Frankeld570b7e2016-11-25 10:33:38 +01005472 * Ignored by SwitchX-2.
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005473 * 0 - Keep factory defaults.
5474 * 1 - Do not use control buffer for this trap ID.
5475 * 2 - Use control buffer for this trap ID.
5476 * Access: RW
5477 */
5478MLXSW_ITEM32(reg, hpkt, ctrl, 0x04, 16, 2);
5479
Nogah Frankeld570b7e2016-11-25 10:33:38 +01005480static inline void mlxsw_reg_hpkt_pack(char *payload, u8 action, u16 trap_id,
5481 enum mlxsw_reg_htgt_trap_group trap_group,
5482 bool is_ctrl)
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005483{
5484 MLXSW_REG_ZERO(hpkt, payload);
5485 mlxsw_reg_hpkt_ack_set(payload, MLXSW_REG_HPKT_ACK_NOT_REQUIRED);
5486 mlxsw_reg_hpkt_action_set(payload, action);
5487 mlxsw_reg_hpkt_trap_group_set(payload, trap_group);
5488 mlxsw_reg_hpkt_trap_id_set(payload, trap_id);
Nogah Frankeld570b7e2016-11-25 10:33:38 +01005489 mlxsw_reg_hpkt_ctrl_set(payload, is_ctrl ?
5490 MLXSW_REG_HPKT_CTRL_PACKET_USE_BUFFER :
5491 MLXSW_REG_HPKT_CTRL_PACKET_NO_BUFFER);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02005492}
5493
Ido Schimmel69c407a2016-07-02 11:00:13 +02005494/* RGCR - Router General Configuration Register
5495 * --------------------------------------------
5496 * The register is used for setting up the router configuration.
5497 */
5498#define MLXSW_REG_RGCR_ID 0x8001
5499#define MLXSW_REG_RGCR_LEN 0x28
5500
Jiri Pirko21978dc2016-10-21 16:07:20 +02005501MLXSW_REG_DEFINE(rgcr, MLXSW_REG_RGCR_ID, MLXSW_REG_RGCR_LEN);
Ido Schimmel69c407a2016-07-02 11:00:13 +02005502
5503/* reg_rgcr_ipv4_en
5504 * IPv4 router enable.
5505 * Access: RW
5506 */
5507MLXSW_ITEM32(reg, rgcr, ipv4_en, 0x00, 31, 1);
5508
5509/* reg_rgcr_ipv6_en
5510 * IPv6 router enable.
5511 * Access: RW
5512 */
5513MLXSW_ITEM32(reg, rgcr, ipv6_en, 0x00, 30, 1);
5514
5515/* reg_rgcr_max_router_interfaces
5516 * Defines the maximum number of active router interfaces for all virtual
5517 * routers.
5518 * Access: RW
5519 */
5520MLXSW_ITEM32(reg, rgcr, max_router_interfaces, 0x10, 0, 16);
5521
5522/* reg_rgcr_usp
5523 * Update switch priority and packet color.
5524 * 0 - Preserve the value of Switch Priority and packet color.
5525 * 1 - Recalculate the value of Switch Priority and packet color.
5526 * Access: RW
5527 *
5528 * Note: Not supported by SwitchX and SwitchX-2.
5529 */
5530MLXSW_ITEM32(reg, rgcr, usp, 0x18, 20, 1);
5531
5532/* reg_rgcr_pcp_rw
5533 * Indicates how to handle the pcp_rewrite_en value:
5534 * 0 - Preserve the value of pcp_rewrite_en.
5535 * 2 - Disable PCP rewrite.
5536 * 3 - Enable PCP rewrite.
5537 * Access: RW
5538 *
5539 * Note: Not supported by SwitchX and SwitchX-2.
5540 */
5541MLXSW_ITEM32(reg, rgcr, pcp_rw, 0x18, 16, 2);
5542
5543/* reg_rgcr_activity_dis
5544 * Activity disable:
5545 * 0 - Activity will be set when an entry is hit (default).
5546 * 1 - Activity will not be set when an entry is hit.
5547 *
5548 * Bit 0 - Disable activity bit in Router Algorithmic LPM Unicast Entry
5549 * (RALUE).
5550 * Bit 1 - Disable activity bit in Router Algorithmic LPM Unicast Host
5551 * Entry (RAUHT).
5552 * Bits 2:7 are reserved.
5553 * Access: RW
5554 *
5555 * Note: Not supported by SwitchX, SwitchX-2 and Switch-IB.
5556 */
5557MLXSW_ITEM32(reg, rgcr, activity_dis, 0x20, 0, 8);
5558
Arkadi Sharshevskye29237e2017-07-18 10:10:09 +02005559static inline void mlxsw_reg_rgcr_pack(char *payload, bool ipv4_en,
5560 bool ipv6_en)
Ido Schimmel69c407a2016-07-02 11:00:13 +02005561{
5562 MLXSW_REG_ZERO(rgcr, payload);
5563 mlxsw_reg_rgcr_ipv4_en_set(payload, ipv4_en);
Arkadi Sharshevskye29237e2017-07-18 10:10:09 +02005564 mlxsw_reg_rgcr_ipv6_en_set(payload, ipv6_en);
Ido Schimmel69c407a2016-07-02 11:00:13 +02005565}
5566
Ido Schimmel3dc26682016-07-02 11:00:18 +02005567/* RITR - Router Interface Table Register
5568 * --------------------------------------
5569 * The register is used to configure the router interface table.
5570 */
5571#define MLXSW_REG_RITR_ID 0x8002
5572#define MLXSW_REG_RITR_LEN 0x40
5573
Jiri Pirko21978dc2016-10-21 16:07:20 +02005574MLXSW_REG_DEFINE(ritr, MLXSW_REG_RITR_ID, MLXSW_REG_RITR_LEN);
Ido Schimmel3dc26682016-07-02 11:00:18 +02005575
5576/* reg_ritr_enable
5577 * Enables routing on the router interface.
5578 * Access: RW
5579 */
5580MLXSW_ITEM32(reg, ritr, enable, 0x00, 31, 1);
5581
5582/* reg_ritr_ipv4
5583 * IPv4 routing enable. Enables routing of IPv4 traffic on the router
5584 * interface.
5585 * Access: RW
5586 */
5587MLXSW_ITEM32(reg, ritr, ipv4, 0x00, 29, 1);
5588
5589/* reg_ritr_ipv6
5590 * IPv6 routing enable. Enables routing of IPv6 traffic on the router
5591 * interface.
5592 * Access: RW
5593 */
5594MLXSW_ITEM32(reg, ritr, ipv6, 0x00, 28, 1);
5595
Yotam Gigi4af59642017-09-19 10:00:18 +02005596/* reg_ritr_ipv4_mc
5597 * IPv4 multicast routing enable.
5598 * Access: RW
5599 */
5600MLXSW_ITEM32(reg, ritr, ipv4_mc, 0x00, 27, 1);
5601
Yuval Mintz9a3d1832018-03-26 15:01:37 +03005602/* reg_ritr_ipv6_mc
5603 * IPv6 multicast routing enable.
5604 * Access: RW
5605 */
5606MLXSW_ITEM32(reg, ritr, ipv6_mc, 0x00, 26, 1);
5607
Ido Schimmel3dc26682016-07-02 11:00:18 +02005608enum mlxsw_reg_ritr_if_type {
Petr Machata78676ad2017-07-31 09:27:26 +02005609 /* VLAN interface. */
Ido Schimmel3dc26682016-07-02 11:00:18 +02005610 MLXSW_REG_RITR_VLAN_IF,
Petr Machata78676ad2017-07-31 09:27:26 +02005611 /* FID interface. */
Ido Schimmel3dc26682016-07-02 11:00:18 +02005612 MLXSW_REG_RITR_FID_IF,
Petr Machata78676ad2017-07-31 09:27:26 +02005613 /* Sub-port interface. */
Ido Schimmel3dc26682016-07-02 11:00:18 +02005614 MLXSW_REG_RITR_SP_IF,
Petr Machata99ae8e32017-09-02 23:49:09 +02005615 /* Loopback Interface. */
5616 MLXSW_REG_RITR_LOOPBACK_IF,
Ido Schimmel3dc26682016-07-02 11:00:18 +02005617};
5618
5619/* reg_ritr_type
Petr Machata78676ad2017-07-31 09:27:26 +02005620 * Router interface type as per enum mlxsw_reg_ritr_if_type.
Ido Schimmel3dc26682016-07-02 11:00:18 +02005621 * Access: RW
5622 */
5623MLXSW_ITEM32(reg, ritr, type, 0x00, 23, 3);
5624
5625enum {
5626 MLXSW_REG_RITR_RIF_CREATE,
5627 MLXSW_REG_RITR_RIF_DEL,
5628};
5629
5630/* reg_ritr_op
5631 * Opcode:
5632 * 0 - Create or edit RIF.
5633 * 1 - Delete RIF.
5634 * Reserved for SwitchX-2. For Spectrum, editing of interface properties
5635 * is not supported. An interface must be deleted and re-created in order
5636 * to update properties.
5637 * Access: WO
5638 */
5639MLXSW_ITEM32(reg, ritr, op, 0x00, 20, 2);
5640
5641/* reg_ritr_rif
5642 * Router interface index. A pointer to the Router Interface Table.
5643 * Access: Index
5644 */
5645MLXSW_ITEM32(reg, ritr, rif, 0x00, 0, 16);
5646
5647/* reg_ritr_ipv4_fe
5648 * IPv4 Forwarding Enable.
5649 * Enables routing of IPv4 traffic on the router interface. When disabled,
5650 * forwarding is blocked but local traffic (traps and IP2ME) will be enabled.
5651 * Not supported in SwitchX-2.
5652 * Access: RW
5653 */
5654MLXSW_ITEM32(reg, ritr, ipv4_fe, 0x04, 29, 1);
5655
5656/* reg_ritr_ipv6_fe
5657 * IPv6 Forwarding Enable.
5658 * Enables routing of IPv6 traffic on the router interface. When disabled,
5659 * forwarding is blocked but local traffic (traps and IP2ME) will be enabled.
5660 * Not supported in SwitchX-2.
5661 * Access: RW
5662 */
5663MLXSW_ITEM32(reg, ritr, ipv6_fe, 0x04, 28, 1);
5664
Yotam Gigi4af59642017-09-19 10:00:18 +02005665/* reg_ritr_ipv4_mc_fe
5666 * IPv4 Multicast Forwarding Enable.
5667 * When disabled, forwarding is blocked but local traffic (traps and IP to me)
5668 * will be enabled.
5669 * Access: RW
5670 */
5671MLXSW_ITEM32(reg, ritr, ipv4_mc_fe, 0x04, 27, 1);
5672
Yuval Mintz9a3d1832018-03-26 15:01:37 +03005673/* reg_ritr_ipv6_mc_fe
5674 * IPv6 Multicast Forwarding Enable.
5675 * When disabled, forwarding is blocked but local traffic (traps and IP to me)
5676 * will be enabled.
5677 * Access: RW
5678 */
5679MLXSW_ITEM32(reg, ritr, ipv6_mc_fe, 0x04, 26, 1);
5680
Ido Schimmela94a6142016-08-17 16:39:33 +02005681/* reg_ritr_lb_en
5682 * Loop-back filter enable for unicast packets.
5683 * If the flag is set then loop-back filter for unicast packets is
5684 * implemented on the RIF. Multicast packets are always subject to
5685 * loop-back filtering.
5686 * Access: RW
5687 */
5688MLXSW_ITEM32(reg, ritr, lb_en, 0x04, 24, 1);
5689
Ido Schimmel3dc26682016-07-02 11:00:18 +02005690/* reg_ritr_virtual_router
5691 * Virtual router ID associated with the router interface.
5692 * Access: RW
5693 */
5694MLXSW_ITEM32(reg, ritr, virtual_router, 0x04, 0, 16);
5695
5696/* reg_ritr_mtu
5697 * Router interface MTU.
5698 * Access: RW
5699 */
5700MLXSW_ITEM32(reg, ritr, mtu, 0x34, 0, 16);
5701
5702/* reg_ritr_if_swid
5703 * Switch partition ID.
5704 * Access: RW
5705 */
5706MLXSW_ITEM32(reg, ritr, if_swid, 0x08, 24, 8);
5707
5708/* reg_ritr_if_mac
5709 * Router interface MAC address.
5710 * In Spectrum, all MAC addresses must have the same 38 MSBits.
5711 * Access: RW
5712 */
5713MLXSW_ITEM_BUF(reg, ritr, if_mac, 0x12, 6);
5714
Ido Schimmelc3a49542018-07-14 11:39:54 +03005715/* reg_ritr_if_vrrp_id_ipv6
5716 * VRRP ID for IPv6
5717 * Note: Reserved for RIF types other than VLAN, FID and Sub-port.
5718 * Access: RW
5719 */
5720MLXSW_ITEM32(reg, ritr, if_vrrp_id_ipv6, 0x1C, 8, 8);
5721
5722/* reg_ritr_if_vrrp_id_ipv4
5723 * VRRP ID for IPv4
5724 * Note: Reserved for RIF types other than VLAN, FID and Sub-port.
5725 * Access: RW
5726 */
5727MLXSW_ITEM32(reg, ritr, if_vrrp_id_ipv4, 0x1C, 0, 8);
5728
Ido Schimmel3dc26682016-07-02 11:00:18 +02005729/* VLAN Interface */
5730
5731/* reg_ritr_vlan_if_vid
5732 * VLAN ID.
5733 * Access: RW
5734 */
5735MLXSW_ITEM32(reg, ritr, vlan_if_vid, 0x08, 0, 12);
5736
5737/* FID Interface */
5738
5739/* reg_ritr_fid_if_fid
5740 * Filtering ID. Used to connect a bridge to the router. Only FIDs from
5741 * the vFID range are supported.
5742 * Access: RW
5743 */
5744MLXSW_ITEM32(reg, ritr, fid_if_fid, 0x08, 0, 16);
5745
5746static inline void mlxsw_reg_ritr_fid_set(char *payload,
5747 enum mlxsw_reg_ritr_if_type rif_type,
5748 u16 fid)
5749{
5750 if (rif_type == MLXSW_REG_RITR_FID_IF)
5751 mlxsw_reg_ritr_fid_if_fid_set(payload, fid);
5752 else
5753 mlxsw_reg_ritr_vlan_if_vid_set(payload, fid);
5754}
5755
5756/* Sub-port Interface */
5757
5758/* reg_ritr_sp_if_lag
5759 * LAG indication. When this bit is set the system_port field holds the
5760 * LAG identifier.
5761 * Access: RW
5762 */
5763MLXSW_ITEM32(reg, ritr, sp_if_lag, 0x08, 24, 1);
5764
5765/* reg_ritr_sp_system_port
5766 * Port unique indentifier. When lag bit is set, this field holds the
5767 * lag_id in bits 0:9.
5768 * Access: RW
5769 */
5770MLXSW_ITEM32(reg, ritr, sp_if_system_port, 0x08, 0, 16);
5771
5772/* reg_ritr_sp_if_vid
5773 * VLAN ID.
5774 * Access: RW
5775 */
5776MLXSW_ITEM32(reg, ritr, sp_if_vid, 0x18, 0, 12);
5777
Petr Machata99ae8e32017-09-02 23:49:09 +02005778/* Loopback Interface */
5779
5780enum mlxsw_reg_ritr_loopback_protocol {
5781 /* IPinIP IPv4 underlay Unicast */
5782 MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV4,
5783 /* IPinIP IPv6 underlay Unicast */
5784 MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV6,
Nir Dotanafba3e12019-01-20 06:50:39 +00005785 /* IPinIP generic - used for Spectrum-2 underlay RIF */
5786 MLXSW_REG_RITR_LOOPBACK_GENERIC,
Petr Machata99ae8e32017-09-02 23:49:09 +02005787};
5788
5789/* reg_ritr_loopback_protocol
5790 * Access: RW
5791 */
5792MLXSW_ITEM32(reg, ritr, loopback_protocol, 0x08, 28, 4);
5793
5794enum mlxsw_reg_ritr_loopback_ipip_type {
5795 /* Tunnel is IPinIP. */
5796 MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_IP,
5797 /* Tunnel is GRE, no key. */
5798 MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_GRE_IN_IP,
5799 /* Tunnel is GRE, with a key. */
5800 MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_GRE_KEY_IN_IP,
5801};
5802
5803/* reg_ritr_loopback_ipip_type
5804 * Encapsulation type.
5805 * Access: RW
5806 */
5807MLXSW_ITEM32(reg, ritr, loopback_ipip_type, 0x10, 24, 4);
5808
5809enum mlxsw_reg_ritr_loopback_ipip_options {
5810 /* The key is defined by gre_key. */
5811 MLXSW_REG_RITR_LOOPBACK_IPIP_OPTIONS_GRE_KEY_PRESET,
5812};
5813
5814/* reg_ritr_loopback_ipip_options
5815 * Access: RW
5816 */
5817MLXSW_ITEM32(reg, ritr, loopback_ipip_options, 0x10, 20, 4);
5818
5819/* reg_ritr_loopback_ipip_uvr
5820 * Underlay Virtual Router ID.
5821 * Range is 0..cap_max_virtual_routers-1.
5822 * Reserved for Spectrum-2.
5823 * Access: RW
5824 */
5825MLXSW_ITEM32(reg, ritr, loopback_ipip_uvr, 0x10, 0, 16);
5826
Nir Dotanafba3e12019-01-20 06:50:39 +00005827/* reg_ritr_loopback_ipip_underlay_rif
5828 * Underlay ingress router interface.
5829 * Reserved for Spectrum.
5830 * Access: RW
5831 */
5832MLXSW_ITEM32(reg, ritr, loopback_ipip_underlay_rif, 0x14, 0, 16);
5833
Petr Machata99ae8e32017-09-02 23:49:09 +02005834/* reg_ritr_loopback_ipip_usip*
5835 * Encapsulation Underlay source IP.
5836 * Access: RW
5837 */
5838MLXSW_ITEM_BUF(reg, ritr, loopback_ipip_usip6, 0x18, 16);
5839MLXSW_ITEM32(reg, ritr, loopback_ipip_usip4, 0x24, 0, 32);
5840
5841/* reg_ritr_loopback_ipip_gre_key
5842 * GRE Key.
5843 * Reserved when ipip_type is not IP_IN_GRE_KEY_IN_IP.
5844 * Access: RW
5845 */
5846MLXSW_ITEM32(reg, ritr, loopback_ipip_gre_key, 0x28, 0, 32);
5847
Arkadi Sharshevsky0f630fc2017-03-28 17:24:11 +02005848/* Shared between ingress/egress */
5849enum mlxsw_reg_ritr_counter_set_type {
5850 /* No Count. */
5851 MLXSW_REG_RITR_COUNTER_SET_TYPE_NO_COUNT = 0x0,
5852 /* Basic. Used for router interfaces, counting the following:
5853 * - Error and Discard counters.
5854 * - Unicast, Multicast and Broadcast counters. Sharing the
5855 * same set of counters for the different type of traffic
5856 * (IPv4, IPv6 and mpls).
5857 */
5858 MLXSW_REG_RITR_COUNTER_SET_TYPE_BASIC = 0x9,
5859};
5860
5861/* reg_ritr_ingress_counter_index
5862 * Counter Index for flow counter.
5863 * Access: RW
5864 */
5865MLXSW_ITEM32(reg, ritr, ingress_counter_index, 0x38, 0, 24);
5866
5867/* reg_ritr_ingress_counter_set_type
5868 * Igress Counter Set Type for router interface counter.
5869 * Access: RW
5870 */
5871MLXSW_ITEM32(reg, ritr, ingress_counter_set_type, 0x38, 24, 8);
5872
5873/* reg_ritr_egress_counter_index
5874 * Counter Index for flow counter.
5875 * Access: RW
5876 */
5877MLXSW_ITEM32(reg, ritr, egress_counter_index, 0x3C, 0, 24);
5878
5879/* reg_ritr_egress_counter_set_type
5880 * Egress Counter Set Type for router interface counter.
5881 * Access: RW
5882 */
5883MLXSW_ITEM32(reg, ritr, egress_counter_set_type, 0x3C, 24, 8);
5884
5885static inline void mlxsw_reg_ritr_counter_pack(char *payload, u32 index,
5886 bool enable, bool egress)
5887{
5888 enum mlxsw_reg_ritr_counter_set_type set_type;
5889
5890 if (enable)
5891 set_type = MLXSW_REG_RITR_COUNTER_SET_TYPE_BASIC;
5892 else
5893 set_type = MLXSW_REG_RITR_COUNTER_SET_TYPE_NO_COUNT;
5894 mlxsw_reg_ritr_egress_counter_set_type_set(payload, set_type);
5895
5896 if (egress)
5897 mlxsw_reg_ritr_egress_counter_index_set(payload, index);
5898 else
5899 mlxsw_reg_ritr_ingress_counter_index_set(payload, index);
5900}
5901
Ido Schimmel3dc26682016-07-02 11:00:18 +02005902static inline void mlxsw_reg_ritr_rif_pack(char *payload, u16 rif)
5903{
5904 MLXSW_REG_ZERO(ritr, payload);
5905 mlxsw_reg_ritr_rif_set(payload, rif);
5906}
5907
5908static inline void mlxsw_reg_ritr_sp_if_pack(char *payload, bool lag,
5909 u16 system_port, u16 vid)
5910{
5911 mlxsw_reg_ritr_sp_if_lag_set(payload, lag);
5912 mlxsw_reg_ritr_sp_if_system_port_set(payload, system_port);
5913 mlxsw_reg_ritr_sp_if_vid_set(payload, vid);
5914}
5915
5916static inline void mlxsw_reg_ritr_pack(char *payload, bool enable,
5917 enum mlxsw_reg_ritr_if_type type,
Petr Machata9571e822017-09-02 23:49:14 +02005918 u16 rif, u16 vr_id, u16 mtu)
Ido Schimmel3dc26682016-07-02 11:00:18 +02005919{
5920 bool op = enable ? MLXSW_REG_RITR_RIF_CREATE : MLXSW_REG_RITR_RIF_DEL;
5921
5922 MLXSW_REG_ZERO(ritr, payload);
5923 mlxsw_reg_ritr_enable_set(payload, enable);
5924 mlxsw_reg_ritr_ipv4_set(payload, 1);
Arkadi Sharshevskye717e012017-07-18 10:10:10 +02005925 mlxsw_reg_ritr_ipv6_set(payload, 1);
Yotam Gigi4af59642017-09-19 10:00:18 +02005926 mlxsw_reg_ritr_ipv4_mc_set(payload, 1);
Yuval Mintz9a3d1832018-03-26 15:01:37 +03005927 mlxsw_reg_ritr_ipv6_mc_set(payload, 1);
Ido Schimmel3dc26682016-07-02 11:00:18 +02005928 mlxsw_reg_ritr_type_set(payload, type);
5929 mlxsw_reg_ritr_op_set(payload, op);
5930 mlxsw_reg_ritr_rif_set(payload, rif);
5931 mlxsw_reg_ritr_ipv4_fe_set(payload, 1);
Arkadi Sharshevskye717e012017-07-18 10:10:10 +02005932 mlxsw_reg_ritr_ipv6_fe_set(payload, 1);
Yotam Gigi4af59642017-09-19 10:00:18 +02005933 mlxsw_reg_ritr_ipv4_mc_fe_set(payload, 1);
Yuval Mintz9a3d1832018-03-26 15:01:37 +03005934 mlxsw_reg_ritr_ipv6_mc_fe_set(payload, 1);
Ido Schimmela94a6142016-08-17 16:39:33 +02005935 mlxsw_reg_ritr_lb_en_set(payload, 1);
Ido Schimmel69132292017-03-10 08:53:42 +01005936 mlxsw_reg_ritr_virtual_router_set(payload, vr_id);
Ido Schimmel3dc26682016-07-02 11:00:18 +02005937 mlxsw_reg_ritr_mtu_set(payload, mtu);
Petr Machata9571e822017-09-02 23:49:14 +02005938}
5939
5940static inline void mlxsw_reg_ritr_mac_pack(char *payload, const char *mac)
5941{
Ido Schimmel3dc26682016-07-02 11:00:18 +02005942 mlxsw_reg_ritr_if_mac_memcpy_to(payload, mac);
5943}
5944
Petr Machata99ae8e32017-09-02 23:49:09 +02005945static inline void
5946mlxsw_reg_ritr_loopback_ipip_common_pack(char *payload,
5947 enum mlxsw_reg_ritr_loopback_ipip_type ipip_type,
5948 enum mlxsw_reg_ritr_loopback_ipip_options options,
Nir Dotanafba3e12019-01-20 06:50:39 +00005949 u16 uvr_id, u16 underlay_rif, u32 gre_key)
Petr Machata99ae8e32017-09-02 23:49:09 +02005950{
5951 mlxsw_reg_ritr_loopback_ipip_type_set(payload, ipip_type);
5952 mlxsw_reg_ritr_loopback_ipip_options_set(payload, options);
5953 mlxsw_reg_ritr_loopback_ipip_uvr_set(payload, uvr_id);
Nir Dotanafba3e12019-01-20 06:50:39 +00005954 mlxsw_reg_ritr_loopback_ipip_underlay_rif_set(payload, underlay_rif);
Petr Machata99ae8e32017-09-02 23:49:09 +02005955 mlxsw_reg_ritr_loopback_ipip_gre_key_set(payload, gre_key);
5956}
5957
5958static inline void
5959mlxsw_reg_ritr_loopback_ipip4_pack(char *payload,
5960 enum mlxsw_reg_ritr_loopback_ipip_type ipip_type,
5961 enum mlxsw_reg_ritr_loopback_ipip_options options,
Nir Dotanafba3e12019-01-20 06:50:39 +00005962 u16 uvr_id, u16 underlay_rif, u32 usip, u32 gre_key)
Petr Machata99ae8e32017-09-02 23:49:09 +02005963{
5964 mlxsw_reg_ritr_loopback_protocol_set(payload,
5965 MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV4);
5966 mlxsw_reg_ritr_loopback_ipip_common_pack(payload, ipip_type, options,
Nir Dotanafba3e12019-01-20 06:50:39 +00005967 uvr_id, underlay_rif, gre_key);
Petr Machata99ae8e32017-09-02 23:49:09 +02005968 mlxsw_reg_ritr_loopback_ipip_usip4_set(payload, usip);
5969}
5970
Yotam Gigi46a70542017-09-19 10:00:13 +02005971/* RTAR - Router TCAM Allocation Register
5972 * --------------------------------------
5973 * This register is used for allocation of regions in the TCAM table.
5974 */
5975#define MLXSW_REG_RTAR_ID 0x8004
5976#define MLXSW_REG_RTAR_LEN 0x20
5977
5978MLXSW_REG_DEFINE(rtar, MLXSW_REG_RTAR_ID, MLXSW_REG_RTAR_LEN);
5979
5980enum mlxsw_reg_rtar_op {
5981 MLXSW_REG_RTAR_OP_ALLOCATE,
5982 MLXSW_REG_RTAR_OP_RESIZE,
5983 MLXSW_REG_RTAR_OP_DEALLOCATE,
5984};
5985
5986/* reg_rtar_op
5987 * Access: WO
5988 */
5989MLXSW_ITEM32(reg, rtar, op, 0x00, 28, 4);
5990
5991enum mlxsw_reg_rtar_key_type {
5992 MLXSW_REG_RTAR_KEY_TYPE_IPV4_MULTICAST = 1,
5993 MLXSW_REG_RTAR_KEY_TYPE_IPV6_MULTICAST = 3
5994};
5995
5996/* reg_rtar_key_type
5997 * TCAM key type for the region.
5998 * Access: WO
5999 */
6000MLXSW_ITEM32(reg, rtar, key_type, 0x00, 0, 8);
6001
6002/* reg_rtar_region_size
6003 * TCAM region size. When allocating/resizing this is the requested
6004 * size, the response is the actual size.
6005 * Note: Actual size may be larger than requested.
6006 * Reserved for op = Deallocate
6007 * Access: WO
6008 */
6009MLXSW_ITEM32(reg, rtar, region_size, 0x04, 0, 16);
6010
6011static inline void mlxsw_reg_rtar_pack(char *payload,
6012 enum mlxsw_reg_rtar_op op,
6013 enum mlxsw_reg_rtar_key_type key_type,
6014 u16 region_size)
6015{
6016 MLXSW_REG_ZERO(rtar, payload);
6017 mlxsw_reg_rtar_op_set(payload, op);
6018 mlxsw_reg_rtar_key_type_set(payload, key_type);
6019 mlxsw_reg_rtar_region_size_set(payload, region_size);
6020}
6021
Yotam Gigi089f9812016-07-05 11:27:48 +02006022/* RATR - Router Adjacency Table Register
6023 * --------------------------------------
6024 * The RATR register is used to configure the Router Adjacency (next-hop)
6025 * Table.
6026 */
6027#define MLXSW_REG_RATR_ID 0x8008
6028#define MLXSW_REG_RATR_LEN 0x2C
6029
Jiri Pirko21978dc2016-10-21 16:07:20 +02006030MLXSW_REG_DEFINE(ratr, MLXSW_REG_RATR_ID, MLXSW_REG_RATR_LEN);
Yotam Gigi089f9812016-07-05 11:27:48 +02006031
6032enum mlxsw_reg_ratr_op {
6033 /* Read */
6034 MLXSW_REG_RATR_OP_QUERY_READ = 0,
6035 /* Read and clear activity */
6036 MLXSW_REG_RATR_OP_QUERY_READ_CLEAR = 2,
6037 /* Write Adjacency entry */
6038 MLXSW_REG_RATR_OP_WRITE_WRITE_ENTRY = 1,
6039 /* Write Adjacency entry only if the activity is cleared.
6040 * The write may not succeed if the activity is set. There is not
6041 * direct feedback if the write has succeeded or not, however
6042 * the get will reveal the actual entry (SW can compare the get
6043 * response to the set command).
6044 */
6045 MLXSW_REG_RATR_OP_WRITE_WRITE_ENTRY_ON_ACTIVITY = 3,
6046};
6047
6048/* reg_ratr_op
6049 * Note that Write operation may also be used for updating
6050 * counter_set_type and counter_index. In this case all other
6051 * fields must not be updated.
6052 * Access: OP
6053 */
6054MLXSW_ITEM32(reg, ratr, op, 0x00, 28, 4);
6055
6056/* reg_ratr_v
6057 * Valid bit. Indicates if the adjacency entry is valid.
6058 * Note: the device may need some time before reusing an invalidated
6059 * entry. During this time the entry can not be reused. It is
6060 * recommended to use another entry before reusing an invalidated
6061 * entry (e.g. software can put it at the end of the list for
6062 * reusing). Trying to access an invalidated entry not yet cleared
6063 * by the device results with failure indicating "Try Again" status.
6064 * When valid is '0' then egress_router_interface,trap_action,
6065 * adjacency_parameters and counters are reserved
6066 * Access: RW
6067 */
6068MLXSW_ITEM32(reg, ratr, v, 0x00, 24, 1);
6069
6070/* reg_ratr_a
6071 * Activity. Set for new entries. Set if a packet lookup has hit on
6072 * the specific entry. To clear the a bit, use "clear activity".
6073 * Access: RO
6074 */
6075MLXSW_ITEM32(reg, ratr, a, 0x00, 16, 1);
6076
Petr Machata7c819de2017-09-02 23:49:10 +02006077enum mlxsw_reg_ratr_type {
6078 /* Ethernet */
6079 MLXSW_REG_RATR_TYPE_ETHERNET,
6080 /* IPoIB Unicast without GRH.
6081 * Reserved for Spectrum.
6082 */
6083 MLXSW_REG_RATR_TYPE_IPOIB_UC,
6084 /* IPoIB Unicast with GRH. Supported only in table 0 (Ethernet unicast
6085 * adjacency).
6086 * Reserved for Spectrum.
6087 */
6088 MLXSW_REG_RATR_TYPE_IPOIB_UC_W_GRH,
6089 /* IPoIB Multicast.
6090 * Reserved for Spectrum.
6091 */
6092 MLXSW_REG_RATR_TYPE_IPOIB_MC,
6093 /* MPLS.
6094 * Reserved for SwitchX/-2.
6095 */
6096 MLXSW_REG_RATR_TYPE_MPLS,
6097 /* IPinIP Encap.
6098 * Reserved for SwitchX/-2.
6099 */
6100 MLXSW_REG_RATR_TYPE_IPIP,
6101};
6102
6103/* reg_ratr_type
6104 * Adjacency entry type.
6105 * Access: RW
6106 */
6107MLXSW_ITEM32(reg, ratr, type, 0x04, 28, 4);
6108
Yotam Gigi089f9812016-07-05 11:27:48 +02006109/* reg_ratr_adjacency_index_low
6110 * Bits 15:0 of index into the adjacency table.
6111 * For SwitchX and SwitchX-2, the adjacency table is linear and
6112 * used for adjacency entries only.
6113 * For Spectrum, the index is to the KVD linear.
6114 * Access: Index
6115 */
6116MLXSW_ITEM32(reg, ratr, adjacency_index_low, 0x04, 0, 16);
6117
6118/* reg_ratr_egress_router_interface
6119 * Range is 0 .. cap_max_router_interfaces - 1
6120 * Access: RW
6121 */
6122MLXSW_ITEM32(reg, ratr, egress_router_interface, 0x08, 0, 16);
6123
6124enum mlxsw_reg_ratr_trap_action {
6125 MLXSW_REG_RATR_TRAP_ACTION_NOP,
6126 MLXSW_REG_RATR_TRAP_ACTION_TRAP,
6127 MLXSW_REG_RATR_TRAP_ACTION_MIRROR_TO_CPU,
6128 MLXSW_REG_RATR_TRAP_ACTION_MIRROR,
6129 MLXSW_REG_RATR_TRAP_ACTION_DISCARD_ERRORS,
6130};
6131
6132/* reg_ratr_trap_action
6133 * see mlxsw_reg_ratr_trap_action
6134 * Access: RW
6135 */
6136MLXSW_ITEM32(reg, ratr, trap_action, 0x0C, 28, 4);
6137
Yotam Gigi089f9812016-07-05 11:27:48 +02006138/* reg_ratr_adjacency_index_high
6139 * Bits 23:16 of the adjacency_index.
6140 * Access: Index
6141 */
6142MLXSW_ITEM32(reg, ratr, adjacency_index_high, 0x0C, 16, 8);
6143
Petr Machata6c4153b2017-09-02 23:49:11 +02006144enum mlxsw_reg_ratr_trap_id {
6145 MLXSW_REG_RATR_TRAP_ID_RTR_EGRESS0,
6146 MLXSW_REG_RATR_TRAP_ID_RTR_EGRESS1,
6147};
6148
Yotam Gigi089f9812016-07-05 11:27:48 +02006149/* reg_ratr_trap_id
6150 * Trap ID to be reported to CPU.
6151 * Trap-ID is RTR_EGRESS0 or RTR_EGRESS1.
6152 * For trap_action of NOP, MIRROR and DISCARD_ERROR
6153 * Access: RW
6154 */
6155MLXSW_ITEM32(reg, ratr, trap_id, 0x0C, 0, 8);
6156
6157/* reg_ratr_eth_destination_mac
6158 * MAC address of the destination next-hop.
6159 * Access: RW
6160 */
6161MLXSW_ITEM_BUF(reg, ratr, eth_destination_mac, 0x12, 6);
6162
Petr Machata7c819de2017-09-02 23:49:10 +02006163enum mlxsw_reg_ratr_ipip_type {
6164 /* IPv4, address set by mlxsw_reg_ratr_ipip_ipv4_udip. */
6165 MLXSW_REG_RATR_IPIP_TYPE_IPV4,
6166 /* IPv6, address set by mlxsw_reg_ratr_ipip_ipv6_ptr. */
6167 MLXSW_REG_RATR_IPIP_TYPE_IPV6,
6168};
6169
6170/* reg_ratr_ipip_type
6171 * Underlay destination ip type.
6172 * Note: the type field must match the protocol of the router interface.
6173 * Access: RW
6174 */
6175MLXSW_ITEM32(reg, ratr, ipip_type, 0x10, 16, 4);
6176
6177/* reg_ratr_ipip_ipv4_udip
6178 * Underlay ipv4 dip.
6179 * Reserved when ipip_type is IPv6.
6180 * Access: RW
6181 */
6182MLXSW_ITEM32(reg, ratr, ipip_ipv4_udip, 0x18, 0, 32);
6183
6184/* reg_ratr_ipip_ipv6_ptr
6185 * Pointer to IPv6 underlay destination ip address.
6186 * For Spectrum: Pointer to KVD linear space.
6187 * Access: RW
6188 */
6189MLXSW_ITEM32(reg, ratr, ipip_ipv6_ptr, 0x1C, 0, 24);
6190
Arkadi Sharshevskyf4de25f2017-09-25 10:32:27 +02006191enum mlxsw_reg_flow_counter_set_type {
6192 /* No count */
6193 MLXSW_REG_FLOW_COUNTER_SET_TYPE_NO_COUNT = 0x00,
6194 /* Count packets and bytes */
6195 MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES = 0x03,
6196 /* Count only packets */
6197 MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS = 0x05,
6198};
6199
6200/* reg_ratr_counter_set_type
6201 * Counter set type for flow counters
6202 * Access: RW
6203 */
6204MLXSW_ITEM32(reg, ratr, counter_set_type, 0x28, 24, 8);
6205
6206/* reg_ratr_counter_index
6207 * Counter index for flow counters
6208 * Access: RW
6209 */
6210MLXSW_ITEM32(reg, ratr, counter_index, 0x28, 0, 24);
6211
Yotam Gigi089f9812016-07-05 11:27:48 +02006212static inline void
6213mlxsw_reg_ratr_pack(char *payload,
6214 enum mlxsw_reg_ratr_op op, bool valid,
Petr Machata89e41982017-09-02 23:49:15 +02006215 enum mlxsw_reg_ratr_type type,
Yotam Gigi089f9812016-07-05 11:27:48 +02006216 u32 adjacency_index, u16 egress_rif)
6217{
6218 MLXSW_REG_ZERO(ratr, payload);
6219 mlxsw_reg_ratr_op_set(payload, op);
6220 mlxsw_reg_ratr_v_set(payload, valid);
Petr Machata89e41982017-09-02 23:49:15 +02006221 mlxsw_reg_ratr_type_set(payload, type);
Yotam Gigi089f9812016-07-05 11:27:48 +02006222 mlxsw_reg_ratr_adjacency_index_low_set(payload, adjacency_index);
6223 mlxsw_reg_ratr_adjacency_index_high_set(payload, adjacency_index >> 16);
6224 mlxsw_reg_ratr_egress_router_interface_set(payload, egress_rif);
6225}
6226
6227static inline void mlxsw_reg_ratr_eth_entry_pack(char *payload,
6228 const char *dest_mac)
6229{
6230 mlxsw_reg_ratr_eth_destination_mac_memcpy_to(payload, dest_mac);
6231}
6232
Petr Machata7c819de2017-09-02 23:49:10 +02006233static inline void mlxsw_reg_ratr_ipip4_entry_pack(char *payload, u32 ipv4_udip)
6234{
6235 mlxsw_reg_ratr_ipip_type_set(payload, MLXSW_REG_RATR_IPIP_TYPE_IPV4);
6236 mlxsw_reg_ratr_ipip_ipv4_udip_set(payload, ipv4_udip);
6237}
6238
Arkadi Sharshevskyf4de25f2017-09-25 10:32:27 +02006239static inline void mlxsw_reg_ratr_counter_pack(char *payload, u64 counter_index,
6240 bool counter_enable)
6241{
6242 enum mlxsw_reg_flow_counter_set_type set_type;
6243
6244 if (counter_enable)
6245 set_type = MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES;
6246 else
6247 set_type = MLXSW_REG_FLOW_COUNTER_SET_TYPE_NO_COUNT;
6248
6249 mlxsw_reg_ratr_counter_index_set(payload, counter_index);
6250 mlxsw_reg_ratr_counter_set_type_set(payload, set_type);
6251}
6252
Yuval Mintzddb362c2018-01-14 12:33:13 +01006253/* RDPM - Router DSCP to Priority Mapping
6254 * --------------------------------------
6255 * Controls the mapping from DSCP field to switch priority on routed packets
6256 */
6257#define MLXSW_REG_RDPM_ID 0x8009
6258#define MLXSW_REG_RDPM_BASE_LEN 0x00
6259#define MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN 0x01
6260#define MLXSW_REG_RDPM_DSCP_ENTRY_REC_MAX_COUNT 64
6261#define MLXSW_REG_RDPM_LEN 0x40
6262#define MLXSW_REG_RDPM_LAST_ENTRY (MLXSW_REG_RDPM_BASE_LEN + \
6263 MLXSW_REG_RDPM_LEN - \
6264 MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN)
6265
6266MLXSW_REG_DEFINE(rdpm, MLXSW_REG_RDPM_ID, MLXSW_REG_RDPM_LEN);
6267
6268/* reg_dscp_entry_e
6269 * Enable update of the specific entry
6270 * Access: Index
6271 */
6272MLXSW_ITEM8_INDEXED(reg, rdpm, dscp_entry_e, MLXSW_REG_RDPM_LAST_ENTRY, 7, 1,
6273 -MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN, 0x00, false);
6274
6275/* reg_dscp_entry_prio
6276 * Switch Priority
6277 * Access: RW
6278 */
6279MLXSW_ITEM8_INDEXED(reg, rdpm, dscp_entry_prio, MLXSW_REG_RDPM_LAST_ENTRY, 0, 4,
6280 -MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN, 0x00, false);
6281
6282static inline void mlxsw_reg_rdpm_pack(char *payload, unsigned short index,
6283 u8 prio)
6284{
6285 mlxsw_reg_rdpm_dscp_entry_e_set(payload, index, 1);
6286 mlxsw_reg_rdpm_dscp_entry_prio_set(payload, index, prio);
6287}
6288
Arkadi Sharshevskyba73e972017-03-28 17:24:14 +02006289/* RICNT - Router Interface Counter Register
6290 * -----------------------------------------
6291 * The RICNT register retrieves per port performance counters
6292 */
6293#define MLXSW_REG_RICNT_ID 0x800B
6294#define MLXSW_REG_RICNT_LEN 0x100
6295
6296MLXSW_REG_DEFINE(ricnt, MLXSW_REG_RICNT_ID, MLXSW_REG_RICNT_LEN);
6297
6298/* reg_ricnt_counter_index
6299 * Counter index
6300 * Access: RW
6301 */
6302MLXSW_ITEM32(reg, ricnt, counter_index, 0x04, 0, 24);
6303
6304enum mlxsw_reg_ricnt_counter_set_type {
6305 /* No Count. */
6306 MLXSW_REG_RICNT_COUNTER_SET_TYPE_NO_COUNT = 0x00,
6307 /* Basic. Used for router interfaces, counting the following:
6308 * - Error and Discard counters.
6309 * - Unicast, Multicast and Broadcast counters. Sharing the
6310 * same set of counters for the different type of traffic
6311 * (IPv4, IPv6 and mpls).
6312 */
6313 MLXSW_REG_RICNT_COUNTER_SET_TYPE_BASIC = 0x09,
6314};
6315
6316/* reg_ricnt_counter_set_type
6317 * Counter Set Type for router interface counter
6318 * Access: RW
6319 */
6320MLXSW_ITEM32(reg, ricnt, counter_set_type, 0x04, 24, 8);
6321
6322enum mlxsw_reg_ricnt_opcode {
6323 /* Nop. Supported only for read access*/
6324 MLXSW_REG_RICNT_OPCODE_NOP = 0x00,
6325 /* Clear. Setting the clr bit will reset the counter value for
6326 * all counters of the specified Router Interface.
6327 */
6328 MLXSW_REG_RICNT_OPCODE_CLEAR = 0x08,
6329};
6330
6331/* reg_ricnt_opcode
6332 * Opcode
6333 * Access: RW
6334 */
6335MLXSW_ITEM32(reg, ricnt, op, 0x00, 28, 4);
6336
6337/* reg_ricnt_good_unicast_packets
6338 * good unicast packets.
6339 * Access: RW
6340 */
6341MLXSW_ITEM64(reg, ricnt, good_unicast_packets, 0x08, 0, 64);
6342
6343/* reg_ricnt_good_multicast_packets
6344 * good multicast packets.
6345 * Access: RW
6346 */
6347MLXSW_ITEM64(reg, ricnt, good_multicast_packets, 0x10, 0, 64);
6348
6349/* reg_ricnt_good_broadcast_packets
6350 * good broadcast packets
6351 * Access: RW
6352 */
6353MLXSW_ITEM64(reg, ricnt, good_broadcast_packets, 0x18, 0, 64);
6354
6355/* reg_ricnt_good_unicast_bytes
6356 * A count of L3 data and padding octets not including L2 headers
6357 * for good unicast frames.
6358 * Access: RW
6359 */
6360MLXSW_ITEM64(reg, ricnt, good_unicast_bytes, 0x20, 0, 64);
6361
6362/* reg_ricnt_good_multicast_bytes
6363 * A count of L3 data and padding octets not including L2 headers
6364 * for good multicast frames.
6365 * Access: RW
6366 */
6367MLXSW_ITEM64(reg, ricnt, good_multicast_bytes, 0x28, 0, 64);
6368
6369/* reg_ritr_good_broadcast_bytes
6370 * A count of L3 data and padding octets not including L2 headers
6371 * for good broadcast frames.
6372 * Access: RW
6373 */
6374MLXSW_ITEM64(reg, ricnt, good_broadcast_bytes, 0x30, 0, 64);
6375
6376/* reg_ricnt_error_packets
6377 * A count of errored frames that do not pass the router checks.
6378 * Access: RW
6379 */
6380MLXSW_ITEM64(reg, ricnt, error_packets, 0x38, 0, 64);
6381
6382/* reg_ricnt_discrad_packets
6383 * A count of non-errored frames that do not pass the router checks.
6384 * Access: RW
6385 */
6386MLXSW_ITEM64(reg, ricnt, discard_packets, 0x40, 0, 64);
6387
6388/* reg_ricnt_error_bytes
6389 * A count of L3 data and padding octets not including L2 headers
6390 * for errored frames.
6391 * Access: RW
6392 */
6393MLXSW_ITEM64(reg, ricnt, error_bytes, 0x48, 0, 64);
6394
6395/* reg_ricnt_discard_bytes
6396 * A count of L3 data and padding octets not including L2 headers
6397 * for non-errored frames that do not pass the router checks.
6398 * Access: RW
6399 */
6400MLXSW_ITEM64(reg, ricnt, discard_bytes, 0x50, 0, 64);
6401
6402static inline void mlxsw_reg_ricnt_pack(char *payload, u32 index,
6403 enum mlxsw_reg_ricnt_opcode op)
6404{
6405 MLXSW_REG_ZERO(ricnt, payload);
6406 mlxsw_reg_ricnt_op_set(payload, op);
6407 mlxsw_reg_ricnt_counter_index_set(payload, index);
6408 mlxsw_reg_ricnt_counter_set_type_set(payload,
6409 MLXSW_REG_RICNT_COUNTER_SET_TYPE_BASIC);
6410}
6411
Yotam Gigi4fc92842017-09-19 10:00:17 +02006412/* RRCR - Router Rules Copy Register Layout
6413 * ----------------------------------------
6414 * This register is used for moving and copying route entry rules.
6415 */
6416#define MLXSW_REG_RRCR_ID 0x800F
6417#define MLXSW_REG_RRCR_LEN 0x24
6418
6419MLXSW_REG_DEFINE(rrcr, MLXSW_REG_RRCR_ID, MLXSW_REG_RRCR_LEN);
6420
6421enum mlxsw_reg_rrcr_op {
6422 /* Move rules */
6423 MLXSW_REG_RRCR_OP_MOVE,
6424 /* Copy rules */
6425 MLXSW_REG_RRCR_OP_COPY,
6426};
6427
6428/* reg_rrcr_op
6429 * Access: WO
6430 */
6431MLXSW_ITEM32(reg, rrcr, op, 0x00, 28, 4);
6432
6433/* reg_rrcr_offset
6434 * Offset within the region from which to copy/move.
6435 * Access: Index
6436 */
6437MLXSW_ITEM32(reg, rrcr, offset, 0x00, 0, 16);
6438
6439/* reg_rrcr_size
6440 * The number of rules to copy/move.
6441 * Access: WO
6442 */
6443MLXSW_ITEM32(reg, rrcr, size, 0x04, 0, 16);
6444
6445/* reg_rrcr_table_id
6446 * Identifier of the table on which to perform the operation. Encoding is the
6447 * same as in RTAR.key_type
6448 * Access: Index
6449 */
6450MLXSW_ITEM32(reg, rrcr, table_id, 0x10, 0, 4);
6451
6452/* reg_rrcr_dest_offset
6453 * Offset within the region to which to copy/move
6454 * Access: Index
6455 */
6456MLXSW_ITEM32(reg, rrcr, dest_offset, 0x20, 0, 16);
6457
6458static inline void mlxsw_reg_rrcr_pack(char *payload, enum mlxsw_reg_rrcr_op op,
6459 u16 offset, u16 size,
6460 enum mlxsw_reg_rtar_key_type table_id,
6461 u16 dest_offset)
6462{
6463 MLXSW_REG_ZERO(rrcr, payload);
6464 mlxsw_reg_rrcr_op_set(payload, op);
6465 mlxsw_reg_rrcr_offset_set(payload, offset);
6466 mlxsw_reg_rrcr_size_set(payload, size);
6467 mlxsw_reg_rrcr_table_id_set(payload, table_id);
6468 mlxsw_reg_rrcr_dest_offset_set(payload, dest_offset);
6469}
6470
Jiri Pirko6f9fc3c2016-07-04 08:23:05 +02006471/* RALTA - Router Algorithmic LPM Tree Allocation Register
6472 * -------------------------------------------------------
6473 * RALTA is used to allocate the LPM trees of the SHSPM method.
6474 */
6475#define MLXSW_REG_RALTA_ID 0x8010
6476#define MLXSW_REG_RALTA_LEN 0x04
6477
Jiri Pirko21978dc2016-10-21 16:07:20 +02006478MLXSW_REG_DEFINE(ralta, MLXSW_REG_RALTA_ID, MLXSW_REG_RALTA_LEN);
Jiri Pirko6f9fc3c2016-07-04 08:23:05 +02006479
6480/* reg_ralta_op
6481 * opcode (valid for Write, must be 0 on Read)
6482 * 0 - allocate a tree
6483 * 1 - deallocate a tree
6484 * Access: OP
6485 */
6486MLXSW_ITEM32(reg, ralta, op, 0x00, 28, 2);
6487
6488enum mlxsw_reg_ralxx_protocol {
6489 MLXSW_REG_RALXX_PROTOCOL_IPV4,
6490 MLXSW_REG_RALXX_PROTOCOL_IPV6,
6491};
6492
6493/* reg_ralta_protocol
6494 * Protocol.
6495 * Deallocation opcode: Reserved.
6496 * Access: RW
6497 */
6498MLXSW_ITEM32(reg, ralta, protocol, 0x00, 24, 4);
6499
6500/* reg_ralta_tree_id
6501 * An identifier (numbered from 1..cap_shspm_max_trees-1) representing
6502 * the tree identifier (managed by software).
6503 * Note that tree_id 0 is allocated for a default-route tree.
6504 * Access: Index
6505 */
6506MLXSW_ITEM32(reg, ralta, tree_id, 0x00, 0, 8);
6507
6508static inline void mlxsw_reg_ralta_pack(char *payload, bool alloc,
6509 enum mlxsw_reg_ralxx_protocol protocol,
6510 u8 tree_id)
6511{
6512 MLXSW_REG_ZERO(ralta, payload);
6513 mlxsw_reg_ralta_op_set(payload, !alloc);
6514 mlxsw_reg_ralta_protocol_set(payload, protocol);
6515 mlxsw_reg_ralta_tree_id_set(payload, tree_id);
6516}
6517
Jiri Pirkoa9823352016-07-04 08:23:06 +02006518/* RALST - Router Algorithmic LPM Structure Tree Register
6519 * ------------------------------------------------------
6520 * RALST is used to set and query the structure of an LPM tree.
6521 * The structure of the tree must be sorted as a sorted binary tree, while
6522 * each node is a bin that is tagged as the length of the prefixes the lookup
6523 * will refer to. Therefore, bin X refers to a set of entries with prefixes
6524 * of X bits to match with the destination address. The bin 0 indicates
6525 * the default action, when there is no match of any prefix.
6526 */
6527#define MLXSW_REG_RALST_ID 0x8011
6528#define MLXSW_REG_RALST_LEN 0x104
6529
Jiri Pirko21978dc2016-10-21 16:07:20 +02006530MLXSW_REG_DEFINE(ralst, MLXSW_REG_RALST_ID, MLXSW_REG_RALST_LEN);
Jiri Pirkoa9823352016-07-04 08:23:06 +02006531
6532/* reg_ralst_root_bin
6533 * The bin number of the root bin.
6534 * 0<root_bin=<(length of IP address)
6535 * For a default-route tree configure 0xff
6536 * Access: RW
6537 */
6538MLXSW_ITEM32(reg, ralst, root_bin, 0x00, 16, 8);
6539
6540/* reg_ralst_tree_id
6541 * Tree identifier numbered from 1..(cap_shspm_max_trees-1).
6542 * Access: Index
6543 */
6544MLXSW_ITEM32(reg, ralst, tree_id, 0x00, 0, 8);
6545
6546#define MLXSW_REG_RALST_BIN_NO_CHILD 0xff
6547#define MLXSW_REG_RALST_BIN_OFFSET 0x04
6548#define MLXSW_REG_RALST_BIN_COUNT 128
6549
6550/* reg_ralst_left_child_bin
6551 * Holding the children of the bin according to the stored tree's structure.
6552 * For trees composed of less than 4 blocks, the bins in excess are reserved.
6553 * Note that tree_id 0 is allocated for a default-route tree, bins are 0xff
6554 * Access: RW
6555 */
6556MLXSW_ITEM16_INDEXED(reg, ralst, left_child_bin, 0x04, 8, 8, 0x02, 0x00, false);
6557
6558/* reg_ralst_right_child_bin
6559 * Holding the children of the bin according to the stored tree's structure.
6560 * For trees composed of less than 4 blocks, the bins in excess are reserved.
6561 * Note that tree_id 0 is allocated for a default-route tree, bins are 0xff
6562 * Access: RW
6563 */
6564MLXSW_ITEM16_INDEXED(reg, ralst, right_child_bin, 0x04, 0, 8, 0x02, 0x00,
6565 false);
6566
6567static inline void mlxsw_reg_ralst_pack(char *payload, u8 root_bin, u8 tree_id)
6568{
6569 MLXSW_REG_ZERO(ralst, payload);
6570
6571 /* Initialize all bins to have no left or right child */
6572 memset(payload + MLXSW_REG_RALST_BIN_OFFSET,
6573 MLXSW_REG_RALST_BIN_NO_CHILD, MLXSW_REG_RALST_BIN_COUNT * 2);
6574
6575 mlxsw_reg_ralst_root_bin_set(payload, root_bin);
6576 mlxsw_reg_ralst_tree_id_set(payload, tree_id);
6577}
6578
6579static inline void mlxsw_reg_ralst_bin_pack(char *payload, u8 bin_number,
6580 u8 left_child_bin,
6581 u8 right_child_bin)
6582{
6583 int bin_index = bin_number - 1;
6584
6585 mlxsw_reg_ralst_left_child_bin_set(payload, bin_index, left_child_bin);
6586 mlxsw_reg_ralst_right_child_bin_set(payload, bin_index,
6587 right_child_bin);
6588}
6589
Jiri Pirko20ae4052016-07-04 08:23:07 +02006590/* RALTB - Router Algorithmic LPM Tree Binding Register
6591 * ----------------------------------------------------
6592 * RALTB is used to bind virtual router and protocol to an allocated LPM tree.
6593 */
6594#define MLXSW_REG_RALTB_ID 0x8012
6595#define MLXSW_REG_RALTB_LEN 0x04
6596
Jiri Pirko21978dc2016-10-21 16:07:20 +02006597MLXSW_REG_DEFINE(raltb, MLXSW_REG_RALTB_ID, MLXSW_REG_RALTB_LEN);
Jiri Pirko20ae4052016-07-04 08:23:07 +02006598
6599/* reg_raltb_virtual_router
6600 * Virtual Router ID
6601 * Range is 0..cap_max_virtual_routers-1
6602 * Access: Index
6603 */
6604MLXSW_ITEM32(reg, raltb, virtual_router, 0x00, 16, 16);
6605
6606/* reg_raltb_protocol
6607 * Protocol.
6608 * Access: Index
6609 */
6610MLXSW_ITEM32(reg, raltb, protocol, 0x00, 12, 4);
6611
6612/* reg_raltb_tree_id
6613 * Tree to be used for the {virtual_router, protocol}
6614 * Tree identifier numbered from 1..(cap_shspm_max_trees-1).
6615 * By default, all Unicast IPv4 and IPv6 are bound to tree_id 0.
6616 * Access: RW
6617 */
6618MLXSW_ITEM32(reg, raltb, tree_id, 0x00, 0, 8);
6619
6620static inline void mlxsw_reg_raltb_pack(char *payload, u16 virtual_router,
6621 enum mlxsw_reg_ralxx_protocol protocol,
6622 u8 tree_id)
6623{
6624 MLXSW_REG_ZERO(raltb, payload);
6625 mlxsw_reg_raltb_virtual_router_set(payload, virtual_router);
6626 mlxsw_reg_raltb_protocol_set(payload, protocol);
6627 mlxsw_reg_raltb_tree_id_set(payload, tree_id);
6628}
6629
Jiri Pirkod5a1c742016-07-04 08:23:10 +02006630/* RALUE - Router Algorithmic LPM Unicast Entry Register
6631 * -----------------------------------------------------
6632 * RALUE is used to configure and query LPM entries that serve
6633 * the Unicast protocols.
6634 */
6635#define MLXSW_REG_RALUE_ID 0x8013
6636#define MLXSW_REG_RALUE_LEN 0x38
6637
Jiri Pirko21978dc2016-10-21 16:07:20 +02006638MLXSW_REG_DEFINE(ralue, MLXSW_REG_RALUE_ID, MLXSW_REG_RALUE_LEN);
Jiri Pirkod5a1c742016-07-04 08:23:10 +02006639
6640/* reg_ralue_protocol
6641 * Protocol.
6642 * Access: Index
6643 */
6644MLXSW_ITEM32(reg, ralue, protocol, 0x00, 24, 4);
6645
6646enum mlxsw_reg_ralue_op {
6647 /* Read operation. If entry doesn't exist, the operation fails. */
6648 MLXSW_REG_RALUE_OP_QUERY_READ = 0,
6649 /* Clear on read operation. Used to read entry and
6650 * clear Activity bit.
6651 */
6652 MLXSW_REG_RALUE_OP_QUERY_CLEAR = 1,
6653 /* Write operation. Used to write a new entry to the table. All RW
6654 * fields are written for new entry. Activity bit is set
6655 * for new entries.
6656 */
6657 MLXSW_REG_RALUE_OP_WRITE_WRITE = 0,
6658 /* Update operation. Used to update an existing route entry and
6659 * only update the RW fields that are detailed in the field
6660 * op_u_mask. If entry doesn't exist, the operation fails.
6661 */
6662 MLXSW_REG_RALUE_OP_WRITE_UPDATE = 1,
6663 /* Clear activity. The Activity bit (the field a) is cleared
6664 * for the entry.
6665 */
6666 MLXSW_REG_RALUE_OP_WRITE_CLEAR = 2,
6667 /* Delete operation. Used to delete an existing entry. If entry
6668 * doesn't exist, the operation fails.
6669 */
6670 MLXSW_REG_RALUE_OP_WRITE_DELETE = 3,
6671};
6672
6673/* reg_ralue_op
6674 * Operation.
6675 * Access: OP
6676 */
6677MLXSW_ITEM32(reg, ralue, op, 0x00, 20, 3);
6678
6679/* reg_ralue_a
6680 * Activity. Set for new entries. Set if a packet lookup has hit on the
6681 * specific entry, only if the entry is a route. To clear the a bit, use
6682 * "clear activity" op.
6683 * Enabled by activity_dis in RGCR
6684 * Access: RO
6685 */
6686MLXSW_ITEM32(reg, ralue, a, 0x00, 16, 1);
6687
6688/* reg_ralue_virtual_router
6689 * Virtual Router ID
6690 * Range is 0..cap_max_virtual_routers-1
6691 * Access: Index
6692 */
6693MLXSW_ITEM32(reg, ralue, virtual_router, 0x04, 16, 16);
6694
6695#define MLXSW_REG_RALUE_OP_U_MASK_ENTRY_TYPE BIT(0)
6696#define MLXSW_REG_RALUE_OP_U_MASK_BMP_LEN BIT(1)
6697#define MLXSW_REG_RALUE_OP_U_MASK_ACTION BIT(2)
6698
6699/* reg_ralue_op_u_mask
6700 * opcode update mask.
6701 * On read operation, this field is reserved.
6702 * This field is valid for update opcode, otherwise - reserved.
6703 * This field is a bitmask of the fields that should be updated.
6704 * Access: WO
6705 */
6706MLXSW_ITEM32(reg, ralue, op_u_mask, 0x04, 8, 3);
6707
6708/* reg_ralue_prefix_len
6709 * Number of bits in the prefix of the LPM route.
6710 * Note that for IPv6 prefixes, if prefix_len>64 the entry consumes
6711 * two entries in the physical HW table.
6712 * Access: Index
6713 */
6714MLXSW_ITEM32(reg, ralue, prefix_len, 0x08, 0, 8);
6715
6716/* reg_ralue_dip*
6717 * The prefix of the route or of the marker that the object of the LPM
6718 * is compared with. The most significant bits of the dip are the prefix.
Petr Machata806a1c1a2017-07-31 09:27:24 +02006719 * The least significant bits must be '0' if the prefix_len is smaller
Jiri Pirkod5a1c742016-07-04 08:23:10 +02006720 * than 128 for IPv6 or smaller than 32 for IPv4.
6721 * IPv4 address uses bits dip[31:0] and bits dip[127:32] are reserved.
6722 * Access: Index
6723 */
6724MLXSW_ITEM32(reg, ralue, dip4, 0x18, 0, 32);
Ido Schimmel62547f42017-07-18 10:10:23 +02006725MLXSW_ITEM_BUF(reg, ralue, dip6, 0x0C, 16);
Jiri Pirkod5a1c742016-07-04 08:23:10 +02006726
6727enum mlxsw_reg_ralue_entry_type {
6728 MLXSW_REG_RALUE_ENTRY_TYPE_MARKER_ENTRY = 1,
6729 MLXSW_REG_RALUE_ENTRY_TYPE_ROUTE_ENTRY = 2,
6730 MLXSW_REG_RALUE_ENTRY_TYPE_MARKER_AND_ROUTE_ENTRY = 3,
6731};
6732
6733/* reg_ralue_entry_type
6734 * Entry type.
6735 * Note - for Marker entries, the action_type and action fields are reserved.
6736 * Access: RW
6737 */
6738MLXSW_ITEM32(reg, ralue, entry_type, 0x1C, 30, 2);
6739
6740/* reg_ralue_bmp_len
6741 * The best match prefix length in the case that there is no match for
6742 * longer prefixes.
6743 * If (entry_type != MARKER_ENTRY), bmp_len must be equal to prefix_len
6744 * Note for any update operation with entry_type modification this
6745 * field must be set.
6746 * Access: RW
6747 */
6748MLXSW_ITEM32(reg, ralue, bmp_len, 0x1C, 16, 8);
6749
6750enum mlxsw_reg_ralue_action_type {
6751 MLXSW_REG_RALUE_ACTION_TYPE_REMOTE,
6752 MLXSW_REG_RALUE_ACTION_TYPE_LOCAL,
6753 MLXSW_REG_RALUE_ACTION_TYPE_IP2ME,
6754};
6755
6756/* reg_ralue_action_type
6757 * Action Type
6758 * Indicates how the IP address is connected.
6759 * It can be connected to a local subnet through local_erif or can be
6760 * on a remote subnet connected through a next-hop router,
6761 * or transmitted to the CPU.
6762 * Reserved when entry_type = MARKER_ENTRY
6763 * Access: RW
6764 */
6765MLXSW_ITEM32(reg, ralue, action_type, 0x1C, 0, 2);
6766
6767enum mlxsw_reg_ralue_trap_action {
6768 MLXSW_REG_RALUE_TRAP_ACTION_NOP,
6769 MLXSW_REG_RALUE_TRAP_ACTION_TRAP,
6770 MLXSW_REG_RALUE_TRAP_ACTION_MIRROR_TO_CPU,
6771 MLXSW_REG_RALUE_TRAP_ACTION_MIRROR,
6772 MLXSW_REG_RALUE_TRAP_ACTION_DISCARD_ERROR,
6773};
6774
6775/* reg_ralue_trap_action
6776 * Trap action.
6777 * For IP2ME action, only NOP and MIRROR are possible.
6778 * Access: RW
6779 */
6780MLXSW_ITEM32(reg, ralue, trap_action, 0x20, 28, 4);
6781
6782/* reg_ralue_trap_id
6783 * Trap ID to be reported to CPU.
6784 * Trap ID is RTR_INGRESS0 or RTR_INGRESS1.
6785 * For trap_action of NOP, MIRROR and DISCARD_ERROR, trap_id is reserved.
6786 * Access: RW
6787 */
6788MLXSW_ITEM32(reg, ralue, trap_id, 0x20, 0, 9);
6789
6790/* reg_ralue_adjacency_index
6791 * Points to the first entry of the group-based ECMP.
6792 * Only relevant in case of REMOTE action.
6793 * Access: RW
6794 */
6795MLXSW_ITEM32(reg, ralue, adjacency_index, 0x24, 0, 24);
6796
6797/* reg_ralue_ecmp_size
6798 * Amount of sequential entries starting
6799 * from the adjacency_index (the number of ECMPs).
6800 * The valid range is 1-64, 512, 1024, 2048 and 4096.
6801 * Reserved when trap_action is TRAP or DISCARD_ERROR.
6802 * Only relevant in case of REMOTE action.
6803 * Access: RW
6804 */
6805MLXSW_ITEM32(reg, ralue, ecmp_size, 0x28, 0, 13);
6806
6807/* reg_ralue_local_erif
6808 * Egress Router Interface.
6809 * Only relevant in case of LOCAL action.
6810 * Access: RW
6811 */
6812MLXSW_ITEM32(reg, ralue, local_erif, 0x24, 0, 16);
6813
Petr Machata83930cd2017-07-31 09:27:27 +02006814/* reg_ralue_ip2me_v
Jiri Pirkod5a1c742016-07-04 08:23:10 +02006815 * Valid bit for the tunnel_ptr field.
6816 * If valid = 0 then trap to CPU as IP2ME trap ID.
6817 * If valid = 1 and the packet format allows NVE or IPinIP tunnel
6818 * decapsulation then tunnel decapsulation is done.
6819 * If valid = 1 and packet format does not allow NVE or IPinIP tunnel
6820 * decapsulation then trap as IP2ME trap ID.
6821 * Only relevant in case of IP2ME action.
6822 * Access: RW
6823 */
Petr Machata83930cd2017-07-31 09:27:27 +02006824MLXSW_ITEM32(reg, ralue, ip2me_v, 0x24, 31, 1);
Jiri Pirkod5a1c742016-07-04 08:23:10 +02006825
Petr Machata83930cd2017-07-31 09:27:27 +02006826/* reg_ralue_ip2me_tunnel_ptr
Jiri Pirkod5a1c742016-07-04 08:23:10 +02006827 * Tunnel Pointer for NVE or IPinIP tunnel decapsulation.
6828 * For Spectrum, pointer to KVD Linear.
6829 * Only relevant in case of IP2ME action.
6830 * Access: RW
6831 */
Petr Machata83930cd2017-07-31 09:27:27 +02006832MLXSW_ITEM32(reg, ralue, ip2me_tunnel_ptr, 0x24, 0, 24);
Jiri Pirkod5a1c742016-07-04 08:23:10 +02006833
6834static inline void mlxsw_reg_ralue_pack(char *payload,
6835 enum mlxsw_reg_ralxx_protocol protocol,
6836 enum mlxsw_reg_ralue_op op,
6837 u16 virtual_router, u8 prefix_len)
6838{
6839 MLXSW_REG_ZERO(ralue, payload);
6840 mlxsw_reg_ralue_protocol_set(payload, protocol);
Jiri Pirko0e7df1a2016-08-17 16:39:34 +02006841 mlxsw_reg_ralue_op_set(payload, op);
Jiri Pirkod5a1c742016-07-04 08:23:10 +02006842 mlxsw_reg_ralue_virtual_router_set(payload, virtual_router);
6843 mlxsw_reg_ralue_prefix_len_set(payload, prefix_len);
6844 mlxsw_reg_ralue_entry_type_set(payload,
6845 MLXSW_REG_RALUE_ENTRY_TYPE_ROUTE_ENTRY);
6846 mlxsw_reg_ralue_bmp_len_set(payload, prefix_len);
6847}
6848
6849static inline void mlxsw_reg_ralue_pack4(char *payload,
6850 enum mlxsw_reg_ralxx_protocol protocol,
6851 enum mlxsw_reg_ralue_op op,
6852 u16 virtual_router, u8 prefix_len,
6853 u32 dip)
6854{
6855 mlxsw_reg_ralue_pack(payload, protocol, op, virtual_router, prefix_len);
6856 mlxsw_reg_ralue_dip4_set(payload, dip);
6857}
6858
Ido Schimmel62547f42017-07-18 10:10:23 +02006859static inline void mlxsw_reg_ralue_pack6(char *payload,
6860 enum mlxsw_reg_ralxx_protocol protocol,
6861 enum mlxsw_reg_ralue_op op,
6862 u16 virtual_router, u8 prefix_len,
6863 const void *dip)
6864{
6865 mlxsw_reg_ralue_pack(payload, protocol, op, virtual_router, prefix_len);
6866 mlxsw_reg_ralue_dip6_memcpy_to(payload, dip);
6867}
6868
Jiri Pirkod5a1c742016-07-04 08:23:10 +02006869static inline void
6870mlxsw_reg_ralue_act_remote_pack(char *payload,
6871 enum mlxsw_reg_ralue_trap_action trap_action,
6872 u16 trap_id, u32 adjacency_index, u16 ecmp_size)
6873{
6874 mlxsw_reg_ralue_action_type_set(payload,
6875 MLXSW_REG_RALUE_ACTION_TYPE_REMOTE);
6876 mlxsw_reg_ralue_trap_action_set(payload, trap_action);
6877 mlxsw_reg_ralue_trap_id_set(payload, trap_id);
6878 mlxsw_reg_ralue_adjacency_index_set(payload, adjacency_index);
6879 mlxsw_reg_ralue_ecmp_size_set(payload, ecmp_size);
6880}
6881
6882static inline void
6883mlxsw_reg_ralue_act_local_pack(char *payload,
6884 enum mlxsw_reg_ralue_trap_action trap_action,
6885 u16 trap_id, u16 local_erif)
6886{
6887 mlxsw_reg_ralue_action_type_set(payload,
6888 MLXSW_REG_RALUE_ACTION_TYPE_LOCAL);
6889 mlxsw_reg_ralue_trap_action_set(payload, trap_action);
6890 mlxsw_reg_ralue_trap_id_set(payload, trap_id);
6891 mlxsw_reg_ralue_local_erif_set(payload, local_erif);
6892}
6893
6894static inline void
6895mlxsw_reg_ralue_act_ip2me_pack(char *payload)
6896{
6897 mlxsw_reg_ralue_action_type_set(payload,
6898 MLXSW_REG_RALUE_ACTION_TYPE_IP2ME);
6899}
6900
Petr Machataa43da822017-09-02 23:49:12 +02006901static inline void
6902mlxsw_reg_ralue_act_ip2me_tun_pack(char *payload, u32 tunnel_ptr)
6903{
6904 mlxsw_reg_ralue_action_type_set(payload,
6905 MLXSW_REG_RALUE_ACTION_TYPE_IP2ME);
6906 mlxsw_reg_ralue_ip2me_v_set(payload, 1);
6907 mlxsw_reg_ralue_ip2me_tunnel_ptr_set(payload, tunnel_ptr);
6908}
6909
Yotam Gigi4457b3df2016-07-05 11:27:40 +02006910/* RAUHT - Router Algorithmic LPM Unicast Host Table Register
6911 * ----------------------------------------------------------
6912 * The RAUHT register is used to configure and query the Unicast Host table in
6913 * devices that implement the Algorithmic LPM.
6914 */
6915#define MLXSW_REG_RAUHT_ID 0x8014
6916#define MLXSW_REG_RAUHT_LEN 0x74
6917
Jiri Pirko21978dc2016-10-21 16:07:20 +02006918MLXSW_REG_DEFINE(rauht, MLXSW_REG_RAUHT_ID, MLXSW_REG_RAUHT_LEN);
Yotam Gigi4457b3df2016-07-05 11:27:40 +02006919
6920enum mlxsw_reg_rauht_type {
6921 MLXSW_REG_RAUHT_TYPE_IPV4,
6922 MLXSW_REG_RAUHT_TYPE_IPV6,
6923};
6924
6925/* reg_rauht_type
6926 * Access: Index
6927 */
6928MLXSW_ITEM32(reg, rauht, type, 0x00, 24, 2);
6929
6930enum mlxsw_reg_rauht_op {
6931 MLXSW_REG_RAUHT_OP_QUERY_READ = 0,
6932 /* Read operation */
6933 MLXSW_REG_RAUHT_OP_QUERY_CLEAR_ON_READ = 1,
6934 /* Clear on read operation. Used to read entry and clear
6935 * activity bit.
6936 */
6937 MLXSW_REG_RAUHT_OP_WRITE_ADD = 0,
6938 /* Add. Used to write a new entry to the table. All R/W fields are
6939 * relevant for new entry. Activity bit is set for new entries.
6940 */
6941 MLXSW_REG_RAUHT_OP_WRITE_UPDATE = 1,
6942 /* Update action. Used to update an existing route entry and
6943 * only update the following fields:
6944 * trap_action, trap_id, mac, counter_set_type, counter_index
6945 */
6946 MLXSW_REG_RAUHT_OP_WRITE_CLEAR_ACTIVITY = 2,
6947 /* Clear activity. A bit is cleared for the entry. */
6948 MLXSW_REG_RAUHT_OP_WRITE_DELETE = 3,
6949 /* Delete entry */
6950 MLXSW_REG_RAUHT_OP_WRITE_DELETE_ALL = 4,
6951 /* Delete all host entries on a RIF. In this command, dip
6952 * field is reserved.
6953 */
6954};
6955
6956/* reg_rauht_op
6957 * Access: OP
6958 */
6959MLXSW_ITEM32(reg, rauht, op, 0x00, 20, 3);
6960
6961/* reg_rauht_a
6962 * Activity. Set for new entries. Set if a packet lookup has hit on
6963 * the specific entry.
6964 * To clear the a bit, use "clear activity" op.
6965 * Enabled by activity_dis in RGCR
6966 * Access: RO
6967 */
6968MLXSW_ITEM32(reg, rauht, a, 0x00, 16, 1);
6969
6970/* reg_rauht_rif
6971 * Router Interface
6972 * Access: Index
6973 */
6974MLXSW_ITEM32(reg, rauht, rif, 0x00, 0, 16);
6975
6976/* reg_rauht_dip*
6977 * Destination address.
6978 * Access: Index
6979 */
6980MLXSW_ITEM32(reg, rauht, dip4, 0x1C, 0x0, 32);
Arkadi Sharshevsky6929e502017-07-18 10:10:14 +02006981MLXSW_ITEM_BUF(reg, rauht, dip6, 0x10, 16);
Yotam Gigi4457b3df2016-07-05 11:27:40 +02006982
6983enum mlxsw_reg_rauht_trap_action {
6984 MLXSW_REG_RAUHT_TRAP_ACTION_NOP,
6985 MLXSW_REG_RAUHT_TRAP_ACTION_TRAP,
6986 MLXSW_REG_RAUHT_TRAP_ACTION_MIRROR_TO_CPU,
6987 MLXSW_REG_RAUHT_TRAP_ACTION_MIRROR,
6988 MLXSW_REG_RAUHT_TRAP_ACTION_DISCARD_ERRORS,
6989};
6990
6991/* reg_rauht_trap_action
6992 * Access: RW
6993 */
6994MLXSW_ITEM32(reg, rauht, trap_action, 0x60, 28, 4);
6995
6996enum mlxsw_reg_rauht_trap_id {
6997 MLXSW_REG_RAUHT_TRAP_ID_RTR_EGRESS0,
6998 MLXSW_REG_RAUHT_TRAP_ID_RTR_EGRESS1,
6999};
7000
7001/* reg_rauht_trap_id
7002 * Trap ID to be reported to CPU.
7003 * Trap-ID is RTR_EGRESS0 or RTR_EGRESS1.
7004 * For trap_action of NOP, MIRROR and DISCARD_ERROR,
7005 * trap_id is reserved.
7006 * Access: RW
7007 */
7008MLXSW_ITEM32(reg, rauht, trap_id, 0x60, 0, 9);
7009
7010/* reg_rauht_counter_set_type
7011 * Counter set type for flow counters
7012 * Access: RW
7013 */
7014MLXSW_ITEM32(reg, rauht, counter_set_type, 0x68, 24, 8);
7015
7016/* reg_rauht_counter_index
7017 * Counter index for flow counters
7018 * Access: RW
7019 */
7020MLXSW_ITEM32(reg, rauht, counter_index, 0x68, 0, 24);
7021
7022/* reg_rauht_mac
7023 * MAC address.
7024 * Access: RW
7025 */
7026MLXSW_ITEM_BUF(reg, rauht, mac, 0x6E, 6);
7027
7028static inline void mlxsw_reg_rauht_pack(char *payload,
7029 enum mlxsw_reg_rauht_op op, u16 rif,
7030 const char *mac)
7031{
7032 MLXSW_REG_ZERO(rauht, payload);
7033 mlxsw_reg_rauht_op_set(payload, op);
7034 mlxsw_reg_rauht_rif_set(payload, rif);
7035 mlxsw_reg_rauht_mac_memcpy_to(payload, mac);
7036}
7037
7038static inline void mlxsw_reg_rauht_pack4(char *payload,
7039 enum mlxsw_reg_rauht_op op, u16 rif,
7040 const char *mac, u32 dip)
7041{
7042 mlxsw_reg_rauht_pack(payload, op, rif, mac);
7043 mlxsw_reg_rauht_dip4_set(payload, dip);
7044}
7045
Arkadi Sharshevsky6929e502017-07-18 10:10:14 +02007046static inline void mlxsw_reg_rauht_pack6(char *payload,
7047 enum mlxsw_reg_rauht_op op, u16 rif,
7048 const char *mac, const char *dip)
7049{
7050 mlxsw_reg_rauht_pack(payload, op, rif, mac);
7051 mlxsw_reg_rauht_type_set(payload, MLXSW_REG_RAUHT_TYPE_IPV6);
7052 mlxsw_reg_rauht_dip6_memcpy_to(payload, dip);
7053}
7054
Arkadi Sharshevsky7cfcbc72017-08-24 08:40:08 +02007055static inline void mlxsw_reg_rauht_pack_counter(char *payload,
7056 u64 counter_index)
7057{
7058 mlxsw_reg_rauht_counter_index_set(payload, counter_index);
7059 mlxsw_reg_rauht_counter_set_type_set(payload,
7060 MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES);
7061}
7062
Jiri Pirkoa59f0b32016-07-05 11:27:49 +02007063/* RALEU - Router Algorithmic LPM ECMP Update Register
7064 * ---------------------------------------------------
7065 * The register enables updating the ECMP section in the action for multiple
7066 * LPM Unicast entries in a single operation. The update is executed to
7067 * all entries of a {virtual router, protocol} tuple using the same ECMP group.
7068 */
7069#define MLXSW_REG_RALEU_ID 0x8015
7070#define MLXSW_REG_RALEU_LEN 0x28
7071
Jiri Pirko21978dc2016-10-21 16:07:20 +02007072MLXSW_REG_DEFINE(raleu, MLXSW_REG_RALEU_ID, MLXSW_REG_RALEU_LEN);
Jiri Pirkoa59f0b32016-07-05 11:27:49 +02007073
7074/* reg_raleu_protocol
7075 * Protocol.
7076 * Access: Index
7077 */
7078MLXSW_ITEM32(reg, raleu, protocol, 0x00, 24, 4);
7079
7080/* reg_raleu_virtual_router
7081 * Virtual Router ID
7082 * Range is 0..cap_max_virtual_routers-1
7083 * Access: Index
7084 */
7085MLXSW_ITEM32(reg, raleu, virtual_router, 0x00, 0, 16);
7086
7087/* reg_raleu_adjacency_index
7088 * Adjacency Index used for matching on the existing entries.
7089 * Access: Index
7090 */
7091MLXSW_ITEM32(reg, raleu, adjacency_index, 0x10, 0, 24);
7092
7093/* reg_raleu_ecmp_size
7094 * ECMP Size used for matching on the existing entries.
7095 * Access: Index
7096 */
7097MLXSW_ITEM32(reg, raleu, ecmp_size, 0x14, 0, 13);
7098
7099/* reg_raleu_new_adjacency_index
7100 * New Adjacency Index.
7101 * Access: WO
7102 */
7103MLXSW_ITEM32(reg, raleu, new_adjacency_index, 0x20, 0, 24);
7104
7105/* reg_raleu_new_ecmp_size
7106 * New ECMP Size.
7107 * Access: WO
7108 */
7109MLXSW_ITEM32(reg, raleu, new_ecmp_size, 0x24, 0, 13);
7110
7111static inline void mlxsw_reg_raleu_pack(char *payload,
7112 enum mlxsw_reg_ralxx_protocol protocol,
7113 u16 virtual_router,
7114 u32 adjacency_index, u16 ecmp_size,
7115 u32 new_adjacency_index,
7116 u16 new_ecmp_size)
7117{
7118 MLXSW_REG_ZERO(raleu, payload);
7119 mlxsw_reg_raleu_protocol_set(payload, protocol);
7120 mlxsw_reg_raleu_virtual_router_set(payload, virtual_router);
7121 mlxsw_reg_raleu_adjacency_index_set(payload, adjacency_index);
7122 mlxsw_reg_raleu_ecmp_size_set(payload, ecmp_size);
7123 mlxsw_reg_raleu_new_adjacency_index_set(payload, new_adjacency_index);
7124 mlxsw_reg_raleu_new_ecmp_size_set(payload, new_ecmp_size);
7125}
7126
Yotam Gigi7cf2c202016-07-05 11:27:41 +02007127/* RAUHTD - Router Algorithmic LPM Unicast Host Table Dump Register
7128 * ----------------------------------------------------------------
7129 * The RAUHTD register allows dumping entries from the Router Unicast Host
7130 * Table. For a given session an entry is dumped no more than one time. The
7131 * first RAUHTD access after reset is a new session. A session ends when the
7132 * num_rec response is smaller than num_rec request or for IPv4 when the
7133 * num_entries is smaller than 4. The clear activity affect the current session
7134 * or the last session if a new session has not started.
7135 */
7136#define MLXSW_REG_RAUHTD_ID 0x8018
7137#define MLXSW_REG_RAUHTD_BASE_LEN 0x20
7138#define MLXSW_REG_RAUHTD_REC_LEN 0x20
7139#define MLXSW_REG_RAUHTD_REC_MAX_NUM 32
7140#define MLXSW_REG_RAUHTD_LEN (MLXSW_REG_RAUHTD_BASE_LEN + \
7141 MLXSW_REG_RAUHTD_REC_MAX_NUM * MLXSW_REG_RAUHTD_REC_LEN)
7142#define MLXSW_REG_RAUHTD_IPV4_ENT_PER_REC 4
7143
Jiri Pirko21978dc2016-10-21 16:07:20 +02007144MLXSW_REG_DEFINE(rauhtd, MLXSW_REG_RAUHTD_ID, MLXSW_REG_RAUHTD_LEN);
Yotam Gigi7cf2c202016-07-05 11:27:41 +02007145
7146#define MLXSW_REG_RAUHTD_FILTER_A BIT(0)
7147#define MLXSW_REG_RAUHTD_FILTER_RIF BIT(3)
7148
7149/* reg_rauhtd_filter_fields
7150 * if a bit is '0' then the relevant field is ignored and dump is done
7151 * regardless of the field value
7152 * Bit0 - filter by activity: entry_a
7153 * Bit3 - filter by entry rip: entry_rif
7154 * Access: Index
7155 */
7156MLXSW_ITEM32(reg, rauhtd, filter_fields, 0x00, 0, 8);
7157
7158enum mlxsw_reg_rauhtd_op {
7159 MLXSW_REG_RAUHTD_OP_DUMP,
7160 MLXSW_REG_RAUHTD_OP_DUMP_AND_CLEAR,
7161};
7162
7163/* reg_rauhtd_op
7164 * Access: OP
7165 */
7166MLXSW_ITEM32(reg, rauhtd, op, 0x04, 24, 2);
7167
7168/* reg_rauhtd_num_rec
7169 * At request: number of records requested
7170 * At response: number of records dumped
7171 * For IPv4, each record has 4 entries at request and up to 4 entries
7172 * at response
7173 * Range is 0..MLXSW_REG_RAUHTD_REC_MAX_NUM
7174 * Access: Index
7175 */
7176MLXSW_ITEM32(reg, rauhtd, num_rec, 0x04, 0, 8);
7177
7178/* reg_rauhtd_entry_a
7179 * Dump only if activity has value of entry_a
7180 * Reserved if filter_fields bit0 is '0'
7181 * Access: Index
7182 */
7183MLXSW_ITEM32(reg, rauhtd, entry_a, 0x08, 16, 1);
7184
7185enum mlxsw_reg_rauhtd_type {
7186 MLXSW_REG_RAUHTD_TYPE_IPV4,
7187 MLXSW_REG_RAUHTD_TYPE_IPV6,
7188};
7189
7190/* reg_rauhtd_type
7191 * Dump only if record type is:
7192 * 0 - IPv4
7193 * 1 - IPv6
7194 * Access: Index
7195 */
7196MLXSW_ITEM32(reg, rauhtd, type, 0x08, 0, 4);
7197
7198/* reg_rauhtd_entry_rif
7199 * Dump only if RIF has value of entry_rif
7200 * Reserved if filter_fields bit3 is '0'
7201 * Access: Index
7202 */
7203MLXSW_ITEM32(reg, rauhtd, entry_rif, 0x0C, 0, 16);
7204
7205static inline void mlxsw_reg_rauhtd_pack(char *payload,
7206 enum mlxsw_reg_rauhtd_type type)
7207{
7208 MLXSW_REG_ZERO(rauhtd, payload);
7209 mlxsw_reg_rauhtd_filter_fields_set(payload, MLXSW_REG_RAUHTD_FILTER_A);
7210 mlxsw_reg_rauhtd_op_set(payload, MLXSW_REG_RAUHTD_OP_DUMP_AND_CLEAR);
7211 mlxsw_reg_rauhtd_num_rec_set(payload, MLXSW_REG_RAUHTD_REC_MAX_NUM);
7212 mlxsw_reg_rauhtd_entry_a_set(payload, 1);
7213 mlxsw_reg_rauhtd_type_set(payload, type);
7214}
7215
7216/* reg_rauhtd_ipv4_rec_num_entries
7217 * Number of valid entries in this record:
7218 * 0 - 1 valid entry
7219 * 1 - 2 valid entries
7220 * 2 - 3 valid entries
7221 * 3 - 4 valid entries
7222 * Access: RO
7223 */
7224MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_rec_num_entries,
7225 MLXSW_REG_RAUHTD_BASE_LEN, 28, 2,
7226 MLXSW_REG_RAUHTD_REC_LEN, 0x00, false);
7227
7228/* reg_rauhtd_rec_type
7229 * Record type.
7230 * 0 - IPv4
7231 * 1 - IPv6
7232 * Access: RO
7233 */
7234MLXSW_ITEM32_INDEXED(reg, rauhtd, rec_type, MLXSW_REG_RAUHTD_BASE_LEN, 24, 2,
7235 MLXSW_REG_RAUHTD_REC_LEN, 0x00, false);
7236
7237#define MLXSW_REG_RAUHTD_IPV4_ENT_LEN 0x8
7238
7239/* reg_rauhtd_ipv4_ent_a
7240 * Activity. Set for new entries. Set if a packet lookup has hit on the
7241 * specific entry.
7242 * Access: RO
7243 */
7244MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_a, MLXSW_REG_RAUHTD_BASE_LEN, 16, 1,
7245 MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x00, false);
7246
7247/* reg_rauhtd_ipv4_ent_rif
7248 * Router interface.
7249 * Access: RO
7250 */
7251MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_rif, MLXSW_REG_RAUHTD_BASE_LEN, 0,
7252 16, MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x00, false);
7253
7254/* reg_rauhtd_ipv4_ent_dip
7255 * Destination IPv4 address.
7256 * Access: RO
7257 */
7258MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_dip, MLXSW_REG_RAUHTD_BASE_LEN, 0,
7259 32, MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x04, false);
7260
Arkadi Sharshevsky72e8ebe2017-07-18 10:10:16 +02007261#define MLXSW_REG_RAUHTD_IPV6_ENT_LEN 0x20
7262
7263/* reg_rauhtd_ipv6_ent_a
7264 * Activity. Set for new entries. Set if a packet lookup has hit on the
7265 * specific entry.
7266 * Access: RO
7267 */
7268MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv6_ent_a, MLXSW_REG_RAUHTD_BASE_LEN, 16, 1,
7269 MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x00, false);
7270
7271/* reg_rauhtd_ipv6_ent_rif
7272 * Router interface.
7273 * Access: RO
7274 */
7275MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv6_ent_rif, MLXSW_REG_RAUHTD_BASE_LEN, 0,
7276 16, MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x00, false);
7277
7278/* reg_rauhtd_ipv6_ent_dip
7279 * Destination IPv6 address.
7280 * Access: RO
7281 */
7282MLXSW_ITEM_BUF_INDEXED(reg, rauhtd, ipv6_ent_dip, MLXSW_REG_RAUHTD_BASE_LEN,
7283 16, MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x10);
7284
Yotam Gigi7cf2c202016-07-05 11:27:41 +02007285static inline void mlxsw_reg_rauhtd_ent_ipv4_unpack(char *payload,
7286 int ent_index, u16 *p_rif,
7287 u32 *p_dip)
7288{
7289 *p_rif = mlxsw_reg_rauhtd_ipv4_ent_rif_get(payload, ent_index);
7290 *p_dip = mlxsw_reg_rauhtd_ipv4_ent_dip_get(payload, ent_index);
7291}
7292
Arkadi Sharshevsky72e8ebe2017-07-18 10:10:16 +02007293static inline void mlxsw_reg_rauhtd_ent_ipv6_unpack(char *payload,
7294 int rec_index, u16 *p_rif,
7295 char *p_dip)
7296{
7297 *p_rif = mlxsw_reg_rauhtd_ipv6_ent_rif_get(payload, rec_index);
7298 mlxsw_reg_rauhtd_ipv6_ent_dip_memcpy_from(payload, rec_index, p_dip);
7299}
7300
Petr Machata1e659eb2017-09-02 23:49:13 +02007301/* RTDP - Routing Tunnel Decap Properties Register
7302 * -----------------------------------------------
7303 * The RTDP register is used for configuring the tunnel decap properties of NVE
7304 * and IPinIP.
7305 */
7306#define MLXSW_REG_RTDP_ID 0x8020
7307#define MLXSW_REG_RTDP_LEN 0x44
7308
7309MLXSW_REG_DEFINE(rtdp, MLXSW_REG_RTDP_ID, MLXSW_REG_RTDP_LEN);
7310
7311enum mlxsw_reg_rtdp_type {
7312 MLXSW_REG_RTDP_TYPE_NVE,
7313 MLXSW_REG_RTDP_TYPE_IPIP,
7314};
7315
7316/* reg_rtdp_type
7317 * Type of the RTDP entry as per enum mlxsw_reg_rtdp_type.
7318 * Access: RW
7319 */
7320MLXSW_ITEM32(reg, rtdp, type, 0x00, 28, 4);
7321
7322/* reg_rtdp_tunnel_index
7323 * Index to the Decap entry.
7324 * For Spectrum, Index to KVD Linear.
7325 * Access: Index
7326 */
7327MLXSW_ITEM32(reg, rtdp, tunnel_index, 0x00, 0, 24);
7328
Ido Schimmelc9417492019-01-20 06:50:39 +00007329/* reg_rtdp_egress_router_interface
7330 * Underlay egress router interface.
7331 * Valid range is from 0 to cap_max_router_interfaces - 1
7332 * Access: RW
7333 */
7334MLXSW_ITEM32(reg, rtdp, egress_router_interface, 0x40, 0, 16);
7335
Petr Machata1e659eb2017-09-02 23:49:13 +02007336/* IPinIP */
7337
7338/* reg_rtdp_ipip_irif
7339 * Ingress Router Interface for the overlay router
7340 * Access: RW
7341 */
7342MLXSW_ITEM32(reg, rtdp, ipip_irif, 0x04, 16, 16);
7343
7344enum mlxsw_reg_rtdp_ipip_sip_check {
7345 /* No sip checks. */
7346 MLXSW_REG_RTDP_IPIP_SIP_CHECK_NO,
7347 /* Filter packet if underlay is not IPv4 or if underlay SIP does not
7348 * equal ipv4_usip.
7349 */
7350 MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV4,
7351 /* Filter packet if underlay is not IPv6 or if underlay SIP does not
7352 * equal ipv6_usip.
7353 */
7354 MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV6 = 3,
7355};
7356
7357/* reg_rtdp_ipip_sip_check
7358 * SIP check to perform. If decapsulation failed due to these configurations
7359 * then trap_id is IPIP_DECAP_ERROR.
7360 * Access: RW
7361 */
7362MLXSW_ITEM32(reg, rtdp, ipip_sip_check, 0x04, 0, 3);
7363
7364/* If set, allow decapsulation of IPinIP (without GRE). */
7365#define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_IPIP BIT(0)
7366/* If set, allow decapsulation of IPinGREinIP without a key. */
7367#define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_GRE BIT(1)
7368/* If set, allow decapsulation of IPinGREinIP with a key. */
7369#define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_GRE_KEY BIT(2)
7370
7371/* reg_rtdp_ipip_type_check
7372 * Flags as per MLXSW_REG_RTDP_IPIP_TYPE_CHECK_*. If decapsulation failed due to
7373 * these configurations then trap_id is IPIP_DECAP_ERROR.
7374 * Access: RW
7375 */
7376MLXSW_ITEM32(reg, rtdp, ipip_type_check, 0x08, 24, 3);
7377
7378/* reg_rtdp_ipip_gre_key_check
7379 * Whether GRE key should be checked. When check is enabled:
7380 * - A packet received as IPinIP (without GRE) will always pass.
7381 * - A packet received as IPinGREinIP without a key will not pass the check.
7382 * - A packet received as IPinGREinIP with a key will pass the check only if the
7383 * key in the packet is equal to expected_gre_key.
7384 * If decapsulation failed due to GRE key then trap_id is IPIP_DECAP_ERROR.
7385 * Access: RW
7386 */
7387MLXSW_ITEM32(reg, rtdp, ipip_gre_key_check, 0x08, 23, 1);
7388
7389/* reg_rtdp_ipip_ipv4_usip
7390 * Underlay IPv4 address for ipv4 source address check.
7391 * Reserved when sip_check is not '1'.
7392 * Access: RW
7393 */
7394MLXSW_ITEM32(reg, rtdp, ipip_ipv4_usip, 0x0C, 0, 32);
7395
7396/* reg_rtdp_ipip_ipv6_usip_ptr
7397 * This field is valid when sip_check is "sipv6 check explicitly". This is a
7398 * pointer to the IPv6 DIP which is configured by RIPS. For Spectrum, the index
7399 * is to the KVD linear.
7400 * Reserved when sip_check is not MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV6.
7401 * Access: RW
7402 */
7403MLXSW_ITEM32(reg, rtdp, ipip_ipv6_usip_ptr, 0x10, 0, 24);
7404
7405/* reg_rtdp_ipip_expected_gre_key
7406 * GRE key for checking.
7407 * Reserved when gre_key_check is '0'.
7408 * Access: RW
7409 */
7410MLXSW_ITEM32(reg, rtdp, ipip_expected_gre_key, 0x14, 0, 32);
7411
7412static inline void mlxsw_reg_rtdp_pack(char *payload,
7413 enum mlxsw_reg_rtdp_type type,
7414 u32 tunnel_index)
7415{
7416 MLXSW_REG_ZERO(rtdp, payload);
7417 mlxsw_reg_rtdp_type_set(payload, type);
7418 mlxsw_reg_rtdp_tunnel_index_set(payload, tunnel_index);
7419}
7420
7421static inline void
7422mlxsw_reg_rtdp_ipip4_pack(char *payload, u16 irif,
7423 enum mlxsw_reg_rtdp_ipip_sip_check sip_check,
7424 unsigned int type_check, bool gre_key_check,
7425 u32 ipv4_usip, u32 expected_gre_key)
7426{
7427 mlxsw_reg_rtdp_ipip_irif_set(payload, irif);
7428 mlxsw_reg_rtdp_ipip_sip_check_set(payload, sip_check);
7429 mlxsw_reg_rtdp_ipip_type_check_set(payload, type_check);
7430 mlxsw_reg_rtdp_ipip_gre_key_check_set(payload, gre_key_check);
7431 mlxsw_reg_rtdp_ipip_ipv4_usip_set(payload, ipv4_usip);
7432 mlxsw_reg_rtdp_ipip_expected_gre_key_set(payload, expected_gre_key);
7433}
7434
Yotam Gigi5080c7e2017-09-19 10:00:14 +02007435/* RIGR-V2 - Router Interface Group Register Version 2
7436 * ---------------------------------------------------
7437 * The RIGR_V2 register is used to add, remove and query egress interface list
7438 * of a multicast forwarding entry.
7439 */
7440#define MLXSW_REG_RIGR2_ID 0x8023
7441#define MLXSW_REG_RIGR2_LEN 0xB0
7442
7443#define MLXSW_REG_RIGR2_MAX_ERIFS 32
7444
7445MLXSW_REG_DEFINE(rigr2, MLXSW_REG_RIGR2_ID, MLXSW_REG_RIGR2_LEN);
7446
7447/* reg_rigr2_rigr_index
7448 * KVD Linear index.
7449 * Access: Index
7450 */
7451MLXSW_ITEM32(reg, rigr2, rigr_index, 0x04, 0, 24);
7452
7453/* reg_rigr2_vnext
7454 * Next RIGR Index is valid.
7455 * Access: RW
7456 */
7457MLXSW_ITEM32(reg, rigr2, vnext, 0x08, 31, 1);
7458
7459/* reg_rigr2_next_rigr_index
7460 * Next RIGR Index. The index is to the KVD linear.
7461 * Reserved when vnxet = '0'.
7462 * Access: RW
7463 */
7464MLXSW_ITEM32(reg, rigr2, next_rigr_index, 0x08, 0, 24);
7465
7466/* reg_rigr2_vrmid
7467 * RMID Index is valid.
7468 * Access: RW
7469 */
7470MLXSW_ITEM32(reg, rigr2, vrmid, 0x20, 31, 1);
7471
7472/* reg_rigr2_rmid_index
7473 * RMID Index.
7474 * Range 0 .. max_mid - 1
7475 * Reserved when vrmid = '0'.
7476 * The index is to the Port Group Table (PGT)
7477 * Access: RW
7478 */
7479MLXSW_ITEM32(reg, rigr2, rmid_index, 0x20, 0, 16);
7480
7481/* reg_rigr2_erif_entry_v
7482 * Egress Router Interface is valid.
7483 * Note that low-entries must be set if high-entries are set. For
7484 * example: if erif_entry[2].v is set then erif_entry[1].v and
7485 * erif_entry[0].v must be set.
7486 * Index can be from 0 to cap_mc_erif_list_entries-1
7487 * Access: RW
7488 */
7489MLXSW_ITEM32_INDEXED(reg, rigr2, erif_entry_v, 0x24, 31, 1, 4, 0, false);
7490
7491/* reg_rigr2_erif_entry_erif
7492 * Egress Router Interface.
7493 * Valid range is from 0 to cap_max_router_interfaces - 1
7494 * Index can be from 0 to MLXSW_REG_RIGR2_MAX_ERIFS - 1
7495 * Access: RW
7496 */
7497MLXSW_ITEM32_INDEXED(reg, rigr2, erif_entry_erif, 0x24, 0, 16, 4, 0, false);
7498
7499static inline void mlxsw_reg_rigr2_pack(char *payload, u32 rigr_index,
7500 bool vnext, u32 next_rigr_index)
7501{
7502 MLXSW_REG_ZERO(rigr2, payload);
7503 mlxsw_reg_rigr2_rigr_index_set(payload, rigr_index);
7504 mlxsw_reg_rigr2_vnext_set(payload, vnext);
7505 mlxsw_reg_rigr2_next_rigr_index_set(payload, next_rigr_index);
7506 mlxsw_reg_rigr2_vrmid_set(payload, 0);
7507 mlxsw_reg_rigr2_rmid_index_set(payload, 0);
7508}
7509
7510static inline void mlxsw_reg_rigr2_erif_entry_pack(char *payload, int index,
7511 bool v, u16 erif)
7512{
7513 mlxsw_reg_rigr2_erif_entry_v_set(payload, index, v);
7514 mlxsw_reg_rigr2_erif_entry_erif_set(payload, index, erif);
7515}
7516
Ido Schimmele4718592017-11-02 17:14:08 +01007517/* RECR-V2 - Router ECMP Configuration Version 2 Register
7518 * ------------------------------------------------------
7519 */
7520#define MLXSW_REG_RECR2_ID 0x8025
7521#define MLXSW_REG_RECR2_LEN 0x38
7522
7523MLXSW_REG_DEFINE(recr2, MLXSW_REG_RECR2_ID, MLXSW_REG_RECR2_LEN);
7524
7525/* reg_recr2_pp
7526 * Per-port configuration
7527 * Access: Index
7528 */
7529MLXSW_ITEM32(reg, recr2, pp, 0x00, 24, 1);
7530
7531/* reg_recr2_sh
7532 * Symmetric hash
7533 * Access: RW
7534 */
7535MLXSW_ITEM32(reg, recr2, sh, 0x00, 8, 1);
7536
7537/* reg_recr2_seed
7538 * Seed
7539 * Access: RW
7540 */
7541MLXSW_ITEM32(reg, recr2, seed, 0x08, 0, 32);
7542
7543enum {
7544 /* Enable IPv4 fields if packet is not TCP and not UDP */
7545 MLXSW_REG_RECR2_IPV4_EN_NOT_TCP_NOT_UDP = 3,
7546 /* Enable IPv4 fields if packet is TCP or UDP */
7547 MLXSW_REG_RECR2_IPV4_EN_TCP_UDP = 4,
7548 /* Enable IPv6 fields if packet is not TCP and not UDP */
7549 MLXSW_REG_RECR2_IPV6_EN_NOT_TCP_NOT_UDP = 5,
7550 /* Enable IPv6 fields if packet is TCP or UDP */
7551 MLXSW_REG_RECR2_IPV6_EN_TCP_UDP = 6,
7552 /* Enable TCP/UDP header fields if packet is IPv4 */
7553 MLXSW_REG_RECR2_TCP_UDP_EN_IPV4 = 7,
7554 /* Enable TCP/UDP header fields if packet is IPv6 */
7555 MLXSW_REG_RECR2_TCP_UDP_EN_IPV6 = 8,
7556};
7557
7558/* reg_recr2_outer_header_enables
7559 * Bit mask where each bit enables a specific layer to be included in
7560 * the hash calculation.
7561 * Access: RW
7562 */
7563MLXSW_ITEM_BIT_ARRAY(reg, recr2, outer_header_enables, 0x10, 0x04, 1);
7564
7565enum {
7566 /* IPv4 Source IP */
7567 MLXSW_REG_RECR2_IPV4_SIP0 = 9,
7568 MLXSW_REG_RECR2_IPV4_SIP3 = 12,
7569 /* IPv4 Destination IP */
7570 MLXSW_REG_RECR2_IPV4_DIP0 = 13,
7571 MLXSW_REG_RECR2_IPV4_DIP3 = 16,
7572 /* IP Protocol */
7573 MLXSW_REG_RECR2_IPV4_PROTOCOL = 17,
7574 /* IPv6 Source IP */
7575 MLXSW_REG_RECR2_IPV6_SIP0_7 = 21,
7576 MLXSW_REG_RECR2_IPV6_SIP8 = 29,
7577 MLXSW_REG_RECR2_IPV6_SIP15 = 36,
7578 /* IPv6 Destination IP */
7579 MLXSW_REG_RECR2_IPV6_DIP0_7 = 37,
7580 MLXSW_REG_RECR2_IPV6_DIP8 = 45,
7581 MLXSW_REG_RECR2_IPV6_DIP15 = 52,
7582 /* IPv6 Next Header */
7583 MLXSW_REG_RECR2_IPV6_NEXT_HEADER = 53,
7584 /* IPv6 Flow Label */
7585 MLXSW_REG_RECR2_IPV6_FLOW_LABEL = 57,
7586 /* TCP/UDP Source Port */
7587 MLXSW_REG_RECR2_TCP_UDP_SPORT = 74,
7588 /* TCP/UDP Destination Port */
7589 MLXSW_REG_RECR2_TCP_UDP_DPORT = 75,
7590};
7591
7592/* reg_recr2_outer_header_fields_enable
7593 * Packet fields to enable for ECMP hash subject to outer_header_enable.
7594 * Access: RW
7595 */
7596MLXSW_ITEM_BIT_ARRAY(reg, recr2, outer_header_fields_enable, 0x14, 0x14, 1);
7597
7598static inline void mlxsw_reg_recr2_ipv4_sip_enable(char *payload)
7599{
7600 int i;
7601
7602 for (i = MLXSW_REG_RECR2_IPV4_SIP0; i <= MLXSW_REG_RECR2_IPV4_SIP3; i++)
7603 mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i,
7604 true);
7605}
7606
7607static inline void mlxsw_reg_recr2_ipv4_dip_enable(char *payload)
7608{
7609 int i;
7610
7611 for (i = MLXSW_REG_RECR2_IPV4_DIP0; i <= MLXSW_REG_RECR2_IPV4_DIP3; i++)
7612 mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i,
7613 true);
7614}
7615
7616static inline void mlxsw_reg_recr2_ipv6_sip_enable(char *payload)
7617{
7618 int i = MLXSW_REG_RECR2_IPV6_SIP0_7;
7619
7620 mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i, true);
7621
7622 i = MLXSW_REG_RECR2_IPV6_SIP8;
7623 for (; i <= MLXSW_REG_RECR2_IPV6_SIP15; i++)
7624 mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i,
7625 true);
7626}
7627
7628static inline void mlxsw_reg_recr2_ipv6_dip_enable(char *payload)
7629{
7630 int i = MLXSW_REG_RECR2_IPV6_DIP0_7;
7631
7632 mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i, true);
7633
7634 i = MLXSW_REG_RECR2_IPV6_DIP8;
7635 for (; i <= MLXSW_REG_RECR2_IPV6_DIP15; i++)
7636 mlxsw_reg_recr2_outer_header_fields_enable_set(payload, i,
7637 true);
7638}
7639
7640static inline void mlxsw_reg_recr2_pack(char *payload, u32 seed)
7641{
7642 MLXSW_REG_ZERO(recr2, payload);
7643 mlxsw_reg_recr2_pp_set(payload, false);
7644 mlxsw_reg_recr2_sh_set(payload, true);
7645 mlxsw_reg_recr2_seed_set(payload, seed);
7646}
7647
Yotam Gigi2e654e32017-09-19 10:00:16 +02007648/* RMFT-V2 - Router Multicast Forwarding Table Version 2 Register
7649 * --------------------------------------------------------------
7650 * The RMFT_V2 register is used to configure and query the multicast table.
7651 */
7652#define MLXSW_REG_RMFT2_ID 0x8027
7653#define MLXSW_REG_RMFT2_LEN 0x174
7654
7655MLXSW_REG_DEFINE(rmft2, MLXSW_REG_RMFT2_ID, MLXSW_REG_RMFT2_LEN);
7656
7657/* reg_rmft2_v
7658 * Valid
7659 * Access: RW
7660 */
7661MLXSW_ITEM32(reg, rmft2, v, 0x00, 31, 1);
7662
7663enum mlxsw_reg_rmft2_type {
7664 MLXSW_REG_RMFT2_TYPE_IPV4,
7665 MLXSW_REG_RMFT2_TYPE_IPV6
7666};
7667
7668/* reg_rmft2_type
7669 * Access: Index
7670 */
7671MLXSW_ITEM32(reg, rmft2, type, 0x00, 28, 2);
7672
7673enum mlxsw_sp_reg_rmft2_op {
7674 /* For Write:
7675 * Write operation. Used to write a new entry to the table. All RW
7676 * fields are relevant for new entry. Activity bit is set for new
7677 * entries - Note write with v (Valid) 0 will delete the entry.
7678 * For Query:
7679 * Read operation
7680 */
7681 MLXSW_REG_RMFT2_OP_READ_WRITE,
7682};
7683
7684/* reg_rmft2_op
7685 * Operation.
7686 * Access: OP
7687 */
7688MLXSW_ITEM32(reg, rmft2, op, 0x00, 20, 2);
7689
7690/* reg_rmft2_a
7691 * Activity. Set for new entries. Set if a packet lookup has hit on the specific
7692 * entry.
7693 * Access: RO
7694 */
7695MLXSW_ITEM32(reg, rmft2, a, 0x00, 16, 1);
7696
7697/* reg_rmft2_offset
7698 * Offset within the multicast forwarding table to write to.
7699 * Access: Index
7700 */
7701MLXSW_ITEM32(reg, rmft2, offset, 0x00, 0, 16);
7702
7703/* reg_rmft2_virtual_router
7704 * Virtual Router ID. Range from 0..cap_max_virtual_routers-1
7705 * Access: RW
7706 */
7707MLXSW_ITEM32(reg, rmft2, virtual_router, 0x04, 0, 16);
7708
7709enum mlxsw_reg_rmft2_irif_mask {
7710 MLXSW_REG_RMFT2_IRIF_MASK_IGNORE,
7711 MLXSW_REG_RMFT2_IRIF_MASK_COMPARE
7712};
7713
7714/* reg_rmft2_irif_mask
7715 * Ingress RIF mask.
7716 * Access: RW
7717 */
7718MLXSW_ITEM32(reg, rmft2, irif_mask, 0x08, 24, 1);
7719
7720/* reg_rmft2_irif
7721 * Ingress RIF index.
7722 * Access: RW
7723 */
7724MLXSW_ITEM32(reg, rmft2, irif, 0x08, 0, 16);
7725
Yuval Mintza82b1b82018-03-26 15:01:38 +03007726/* reg_rmft2_dip{4,6}
7727 * Destination IPv4/6 address
Yotam Gigi2e654e32017-09-19 10:00:16 +02007728 * Access: RW
7729 */
Yuval Mintza82b1b82018-03-26 15:01:38 +03007730MLXSW_ITEM_BUF(reg, rmft2, dip6, 0x10, 16);
Yotam Gigi2e654e32017-09-19 10:00:16 +02007731MLXSW_ITEM32(reg, rmft2, dip4, 0x1C, 0, 32);
7732
Yuval Mintza82b1b82018-03-26 15:01:38 +03007733/* reg_rmft2_dip{4,6}_mask
Yotam Gigi2e654e32017-09-19 10:00:16 +02007734 * A bit that is set directs the TCAM to compare the corresponding bit in key. A
7735 * bit that is clear directs the TCAM to ignore the corresponding bit in key.
7736 * Access: RW
7737 */
Yuval Mintza82b1b82018-03-26 15:01:38 +03007738MLXSW_ITEM_BUF(reg, rmft2, dip6_mask, 0x20, 16);
Yotam Gigi2e654e32017-09-19 10:00:16 +02007739MLXSW_ITEM32(reg, rmft2, dip4_mask, 0x2C, 0, 32);
7740
Yuval Mintza82b1b82018-03-26 15:01:38 +03007741/* reg_rmft2_sip{4,6}
7742 * Source IPv4/6 address
Yotam Gigi2e654e32017-09-19 10:00:16 +02007743 * Access: RW
7744 */
Yuval Mintza82b1b82018-03-26 15:01:38 +03007745MLXSW_ITEM_BUF(reg, rmft2, sip6, 0x30, 16);
Yotam Gigi2e654e32017-09-19 10:00:16 +02007746MLXSW_ITEM32(reg, rmft2, sip4, 0x3C, 0, 32);
7747
Yuval Mintza82b1b82018-03-26 15:01:38 +03007748/* reg_rmft2_sip{4,6}_mask
Yotam Gigi2e654e32017-09-19 10:00:16 +02007749 * A bit that is set directs the TCAM to compare the corresponding bit in key. A
7750 * bit that is clear directs the TCAM to ignore the corresponding bit in key.
7751 * Access: RW
7752 */
Yuval Mintza82b1b82018-03-26 15:01:38 +03007753MLXSW_ITEM_BUF(reg, rmft2, sip6_mask, 0x40, 16);
Yotam Gigi2e654e32017-09-19 10:00:16 +02007754MLXSW_ITEM32(reg, rmft2, sip4_mask, 0x4C, 0, 32);
7755
7756/* reg_rmft2_flexible_action_set
7757 * ACL action set. The only supported action types in this field and in any
7758 * action-set pointed from here are as follows:
7759 * 00h: ACTION_NULL
7760 * 01h: ACTION_MAC_TTL, only TTL configuration is supported.
7761 * 03h: ACTION_TRAP
7762 * 06h: ACTION_QOS
7763 * 08h: ACTION_POLICING_MONITORING
7764 * 10h: ACTION_ROUTER_MC
7765 * Access: RW
7766 */
7767MLXSW_ITEM_BUF(reg, rmft2, flexible_action_set, 0x80,
7768 MLXSW_REG_FLEX_ACTION_SET_LEN);
7769
7770static inline void
Yuval Mintza82b1b82018-03-26 15:01:38 +03007771mlxsw_reg_rmft2_common_pack(char *payload, bool v, u16 offset,
7772 u16 virtual_router,
7773 enum mlxsw_reg_rmft2_irif_mask irif_mask, u16 irif,
7774 const char *flex_action_set)
Yotam Gigi2e654e32017-09-19 10:00:16 +02007775{
7776 MLXSW_REG_ZERO(rmft2, payload);
7777 mlxsw_reg_rmft2_v_set(payload, v);
Yotam Gigi2e654e32017-09-19 10:00:16 +02007778 mlxsw_reg_rmft2_op_set(payload, MLXSW_REG_RMFT2_OP_READ_WRITE);
7779 mlxsw_reg_rmft2_offset_set(payload, offset);
7780 mlxsw_reg_rmft2_virtual_router_set(payload, virtual_router);
7781 mlxsw_reg_rmft2_irif_mask_set(payload, irif_mask);
7782 mlxsw_reg_rmft2_irif_set(payload, irif);
Yuval Mintza82b1b82018-03-26 15:01:38 +03007783 if (flex_action_set)
7784 mlxsw_reg_rmft2_flexible_action_set_memcpy_to(payload,
7785 flex_action_set);
7786}
7787
7788static inline void
7789mlxsw_reg_rmft2_ipv4_pack(char *payload, bool v, u16 offset, u16 virtual_router,
7790 enum mlxsw_reg_rmft2_irif_mask irif_mask, u16 irif,
7791 u32 dip4, u32 dip4_mask, u32 sip4, u32 sip4_mask,
7792 const char *flexible_action_set)
7793{
7794 mlxsw_reg_rmft2_common_pack(payload, v, offset, virtual_router,
7795 irif_mask, irif, flexible_action_set);
7796 mlxsw_reg_rmft2_type_set(payload, MLXSW_REG_RMFT2_TYPE_IPV4);
Yotam Gigi2e654e32017-09-19 10:00:16 +02007797 mlxsw_reg_rmft2_dip4_set(payload, dip4);
7798 mlxsw_reg_rmft2_dip4_mask_set(payload, dip4_mask);
7799 mlxsw_reg_rmft2_sip4_set(payload, sip4);
7800 mlxsw_reg_rmft2_sip4_mask_set(payload, sip4_mask);
Yuval Mintza82b1b82018-03-26 15:01:38 +03007801}
7802
7803static inline void
7804mlxsw_reg_rmft2_ipv6_pack(char *payload, bool v, u16 offset, u16 virtual_router,
7805 enum mlxsw_reg_rmft2_irif_mask irif_mask, u16 irif,
7806 struct in6_addr dip6, struct in6_addr dip6_mask,
7807 struct in6_addr sip6, struct in6_addr sip6_mask,
7808 const char *flexible_action_set)
7809{
7810 mlxsw_reg_rmft2_common_pack(payload, v, offset, virtual_router,
7811 irif_mask, irif, flexible_action_set);
7812 mlxsw_reg_rmft2_type_set(payload, MLXSW_REG_RMFT2_TYPE_IPV6);
7813 mlxsw_reg_rmft2_dip6_memcpy_to(payload, (void *)&dip6);
7814 mlxsw_reg_rmft2_dip6_mask_memcpy_to(payload, (void *)&dip6_mask);
7815 mlxsw_reg_rmft2_sip6_memcpy_to(payload, (void *)&sip6);
7816 mlxsw_reg_rmft2_sip6_mask_memcpy_to(payload, (void *)&sip6_mask);
Yotam Gigi2e654e32017-09-19 10:00:16 +02007817}
7818
Jiri Pirko5246f2e2015-11-27 13:45:58 +01007819/* MFCR - Management Fan Control Register
7820 * --------------------------------------
7821 * This register controls the settings of the Fan Speed PWM mechanism.
7822 */
7823#define MLXSW_REG_MFCR_ID 0x9001
7824#define MLXSW_REG_MFCR_LEN 0x08
7825
Jiri Pirko21978dc2016-10-21 16:07:20 +02007826MLXSW_REG_DEFINE(mfcr, MLXSW_REG_MFCR_ID, MLXSW_REG_MFCR_LEN);
Jiri Pirko5246f2e2015-11-27 13:45:58 +01007827
7828enum mlxsw_reg_mfcr_pwm_frequency {
7829 MLXSW_REG_MFCR_PWM_FEQ_11HZ = 0x00,
7830 MLXSW_REG_MFCR_PWM_FEQ_14_7HZ = 0x01,
7831 MLXSW_REG_MFCR_PWM_FEQ_22_1HZ = 0x02,
7832 MLXSW_REG_MFCR_PWM_FEQ_1_4KHZ = 0x40,
7833 MLXSW_REG_MFCR_PWM_FEQ_5KHZ = 0x41,
7834 MLXSW_REG_MFCR_PWM_FEQ_20KHZ = 0x42,
7835 MLXSW_REG_MFCR_PWM_FEQ_22_5KHZ = 0x43,
7836 MLXSW_REG_MFCR_PWM_FEQ_25KHZ = 0x44,
7837};
7838
7839/* reg_mfcr_pwm_frequency
7840 * Controls the frequency of the PWM signal.
7841 * Access: RW
7842 */
Jiri Pirkof7ad3d42016-11-11 11:22:53 +01007843MLXSW_ITEM32(reg, mfcr, pwm_frequency, 0x00, 0, 7);
Jiri Pirko5246f2e2015-11-27 13:45:58 +01007844
7845#define MLXSW_MFCR_TACHOS_MAX 10
7846
7847/* reg_mfcr_tacho_active
7848 * Indicates which of the tachometer is active (bit per tachometer).
7849 * Access: RO
7850 */
7851MLXSW_ITEM32(reg, mfcr, tacho_active, 0x04, 16, MLXSW_MFCR_TACHOS_MAX);
7852
7853#define MLXSW_MFCR_PWMS_MAX 5
7854
7855/* reg_mfcr_pwm_active
7856 * Indicates which of the PWM control is active (bit per PWM).
7857 * Access: RO
7858 */
7859MLXSW_ITEM32(reg, mfcr, pwm_active, 0x04, 0, MLXSW_MFCR_PWMS_MAX);
7860
7861static inline void
7862mlxsw_reg_mfcr_pack(char *payload,
7863 enum mlxsw_reg_mfcr_pwm_frequency pwm_frequency)
7864{
7865 MLXSW_REG_ZERO(mfcr, payload);
7866 mlxsw_reg_mfcr_pwm_frequency_set(payload, pwm_frequency);
7867}
7868
7869static inline void
7870mlxsw_reg_mfcr_unpack(char *payload,
7871 enum mlxsw_reg_mfcr_pwm_frequency *p_pwm_frequency,
7872 u16 *p_tacho_active, u8 *p_pwm_active)
7873{
7874 *p_pwm_frequency = mlxsw_reg_mfcr_pwm_frequency_get(payload);
7875 *p_tacho_active = mlxsw_reg_mfcr_tacho_active_get(payload);
7876 *p_pwm_active = mlxsw_reg_mfcr_pwm_active_get(payload);
7877}
7878
7879/* MFSC - Management Fan Speed Control Register
7880 * --------------------------------------------
7881 * This register controls the settings of the Fan Speed PWM mechanism.
7882 */
7883#define MLXSW_REG_MFSC_ID 0x9002
7884#define MLXSW_REG_MFSC_LEN 0x08
7885
Jiri Pirko21978dc2016-10-21 16:07:20 +02007886MLXSW_REG_DEFINE(mfsc, MLXSW_REG_MFSC_ID, MLXSW_REG_MFSC_LEN);
Jiri Pirko5246f2e2015-11-27 13:45:58 +01007887
7888/* reg_mfsc_pwm
7889 * Fan pwm to control / monitor.
7890 * Access: Index
7891 */
7892MLXSW_ITEM32(reg, mfsc, pwm, 0x00, 24, 3);
7893
7894/* reg_mfsc_pwm_duty_cycle
7895 * Controls the duty cycle of the PWM. Value range from 0..255 to
7896 * represent duty cycle of 0%...100%.
7897 * Access: RW
7898 */
7899MLXSW_ITEM32(reg, mfsc, pwm_duty_cycle, 0x04, 0, 8);
7900
7901static inline void mlxsw_reg_mfsc_pack(char *payload, u8 pwm,
7902 u8 pwm_duty_cycle)
7903{
7904 MLXSW_REG_ZERO(mfsc, payload);
7905 mlxsw_reg_mfsc_pwm_set(payload, pwm);
7906 mlxsw_reg_mfsc_pwm_duty_cycle_set(payload, pwm_duty_cycle);
7907}
7908
7909/* MFSM - Management Fan Speed Measurement
7910 * ---------------------------------------
7911 * This register controls the settings of the Tacho measurements and
7912 * enables reading the Tachometer measurements.
7913 */
7914#define MLXSW_REG_MFSM_ID 0x9003
7915#define MLXSW_REG_MFSM_LEN 0x08
7916
Jiri Pirko21978dc2016-10-21 16:07:20 +02007917MLXSW_REG_DEFINE(mfsm, MLXSW_REG_MFSM_ID, MLXSW_REG_MFSM_LEN);
Jiri Pirko5246f2e2015-11-27 13:45:58 +01007918
7919/* reg_mfsm_tacho
7920 * Fan tachometer index.
7921 * Access: Index
7922 */
7923MLXSW_ITEM32(reg, mfsm, tacho, 0x00, 24, 4);
7924
7925/* reg_mfsm_rpm
7926 * Fan speed (round per minute).
7927 * Access: RO
7928 */
7929MLXSW_ITEM32(reg, mfsm, rpm, 0x04, 0, 16);
7930
7931static inline void mlxsw_reg_mfsm_pack(char *payload, u8 tacho)
7932{
7933 MLXSW_REG_ZERO(mfsm, payload);
7934 mlxsw_reg_mfsm_tacho_set(payload, tacho);
7935}
7936
Jiri Pirko55c63aa2016-11-22 11:24:12 +01007937/* MFSL - Management Fan Speed Limit Register
7938 * ------------------------------------------
7939 * The Fan Speed Limit register is used to configure the fan speed
7940 * event / interrupt notification mechanism. Fan speed threshold are
7941 * defined for both under-speed and over-speed.
7942 */
7943#define MLXSW_REG_MFSL_ID 0x9004
7944#define MLXSW_REG_MFSL_LEN 0x0C
7945
7946MLXSW_REG_DEFINE(mfsl, MLXSW_REG_MFSL_ID, MLXSW_REG_MFSL_LEN);
7947
7948/* reg_mfsl_tacho
7949 * Fan tachometer index.
7950 * Access: Index
7951 */
7952MLXSW_ITEM32(reg, mfsl, tacho, 0x00, 24, 4);
7953
7954/* reg_mfsl_tach_min
7955 * Tachometer minimum value (minimum RPM).
7956 * Access: RW
7957 */
7958MLXSW_ITEM32(reg, mfsl, tach_min, 0x04, 0, 16);
7959
7960/* reg_mfsl_tach_max
7961 * Tachometer maximum value (maximum RPM).
7962 * Access: RW
7963 */
7964MLXSW_ITEM32(reg, mfsl, tach_max, 0x08, 0, 16);
7965
7966static inline void mlxsw_reg_mfsl_pack(char *payload, u8 tacho,
7967 u16 tach_min, u16 tach_max)
7968{
7969 MLXSW_REG_ZERO(mfsl, payload);
7970 mlxsw_reg_mfsl_tacho_set(payload, tacho);
7971 mlxsw_reg_mfsl_tach_min_set(payload, tach_min);
7972 mlxsw_reg_mfsl_tach_max_set(payload, tach_max);
7973}
7974
7975static inline void mlxsw_reg_mfsl_unpack(char *payload, u8 tacho,
7976 u16 *p_tach_min, u16 *p_tach_max)
7977{
7978 if (p_tach_min)
7979 *p_tach_min = mlxsw_reg_mfsl_tach_min_get(payload);
7980
7981 if (p_tach_max)
7982 *p_tach_max = mlxsw_reg_mfsl_tach_max_get(payload);
7983}
7984
Vadim Pasternak3760c2b2019-02-13 11:28:46 +00007985/* FORE - Fan Out of Range Event Register
7986 * --------------------------------------
7987 * This register reports the status of the controlled fans compared to the
7988 * range defined by the MFSL register.
7989 */
7990#define MLXSW_REG_FORE_ID 0x9007
7991#define MLXSW_REG_FORE_LEN 0x0C
7992
7993MLXSW_REG_DEFINE(fore, MLXSW_REG_FORE_ID, MLXSW_REG_FORE_LEN);
7994
7995/* fan_under_limit
7996 * Fan speed is below the low limit defined in MFSL register. Each bit relates
7997 * to a single tachometer and indicates the specific tachometer reading is
7998 * below the threshold.
7999 * Access: RO
8000 */
8001MLXSW_ITEM32(reg, fore, fan_under_limit, 0x00, 16, 10);
8002
8003static inline void mlxsw_reg_fore_unpack(char *payload, u8 tacho,
8004 bool *fault)
8005{
8006 u16 limit;
8007
8008 if (fault) {
8009 limit = mlxsw_reg_fore_fan_under_limit_get(payload);
8010 *fault = limit & BIT(tacho);
8011 }
8012}
8013
Jiri Pirko85926f82015-11-27 13:45:56 +01008014/* MTCAP - Management Temperature Capabilities
8015 * -------------------------------------------
8016 * This register exposes the capabilities of the device and
8017 * system temperature sensing.
8018 */
8019#define MLXSW_REG_MTCAP_ID 0x9009
8020#define MLXSW_REG_MTCAP_LEN 0x08
8021
Jiri Pirko21978dc2016-10-21 16:07:20 +02008022MLXSW_REG_DEFINE(mtcap, MLXSW_REG_MTCAP_ID, MLXSW_REG_MTCAP_LEN);
Jiri Pirko85926f82015-11-27 13:45:56 +01008023
8024/* reg_mtcap_sensor_count
8025 * Number of sensors supported by the device.
8026 * This includes the QSFP module sensors (if exists in the QSFP module).
8027 * Access: RO
8028 */
8029MLXSW_ITEM32(reg, mtcap, sensor_count, 0x00, 0, 7);
8030
8031/* MTMP - Management Temperature
8032 * -----------------------------
8033 * This register controls the settings of the temperature measurements
8034 * and enables reading the temperature measurements. Note that temperature
8035 * is in 0.125 degrees Celsius.
8036 */
8037#define MLXSW_REG_MTMP_ID 0x900A
8038#define MLXSW_REG_MTMP_LEN 0x20
8039
Jiri Pirko21978dc2016-10-21 16:07:20 +02008040MLXSW_REG_DEFINE(mtmp, MLXSW_REG_MTMP_ID, MLXSW_REG_MTMP_LEN);
Jiri Pirko85926f82015-11-27 13:45:56 +01008041
Vadim Pasternak984aec72019-05-29 11:47:21 +03008042#define MLXSW_REG_MTMP_MODULE_INDEX_MIN 64
Vadim Pasternakae574672019-05-29 11:47:18 +03008043#define MLXSW_REG_MTMP_GBOX_INDEX_MIN 256
Jiri Pirko85926f82015-11-27 13:45:56 +01008044/* reg_mtmp_sensor_index
8045 * Sensors index to access.
8046 * 64-127 of sensor_index are mapped to the SFP+/QSFP modules sequentially
8047 * (module 0 is mapped to sensor_index 64).
8048 * Access: Index
8049 */
Vadim Pasternak984aec72019-05-29 11:47:21 +03008050MLXSW_ITEM32(reg, mtmp, sensor_index, 0x00, 0, 12);
Jiri Pirko85926f82015-11-27 13:45:56 +01008051
8052/* Convert to milli degrees Celsius */
8053#define MLXSW_REG_MTMP_TEMP_TO_MC(val) (val * 125)
8054
8055/* reg_mtmp_temperature
8056 * Temperature reading from the sensor. Reading is in 0.125 Celsius
8057 * degrees units.
8058 * Access: RO
8059 */
8060MLXSW_ITEM32(reg, mtmp, temperature, 0x04, 0, 16);
8061
8062/* reg_mtmp_mte
8063 * Max Temperature Enable - enables measuring the max temperature on a sensor.
8064 * Access: RW
8065 */
8066MLXSW_ITEM32(reg, mtmp, mte, 0x08, 31, 1);
8067
8068/* reg_mtmp_mtr
8069 * Max Temperature Reset - clears the value of the max temperature register.
8070 * Access: WO
8071 */
8072MLXSW_ITEM32(reg, mtmp, mtr, 0x08, 30, 1);
8073
8074/* reg_mtmp_max_temperature
8075 * The highest measured temperature from the sensor.
8076 * When the bit mte is cleared, the field max_temperature is reserved.
8077 * Access: RO
8078 */
8079MLXSW_ITEM32(reg, mtmp, max_temperature, 0x08, 0, 16);
8080
Ido Schimmel62b0e922017-10-30 10:51:18 +01008081/* reg_mtmp_tee
8082 * Temperature Event Enable.
8083 * 0 - Do not generate event
8084 * 1 - Generate event
8085 * 2 - Generate single event
8086 * Access: RW
8087 */
8088MLXSW_ITEM32(reg, mtmp, tee, 0x0C, 30, 2);
8089
8090#define MLXSW_REG_MTMP_THRESH_HI 0x348 /* 105 Celsius */
8091
8092/* reg_mtmp_temperature_threshold_hi
8093 * High threshold for Temperature Warning Event. In 0.125 Celsius.
8094 * Access: RW
8095 */
8096MLXSW_ITEM32(reg, mtmp, temperature_threshold_hi, 0x0C, 0, 16);
8097
8098/* reg_mtmp_temperature_threshold_lo
8099 * Low threshold for Temperature Warning Event. In 0.125 Celsius.
8100 * Access: RW
8101 */
8102MLXSW_ITEM32(reg, mtmp, temperature_threshold_lo, 0x10, 0, 16);
8103
Jiri Pirko85926f82015-11-27 13:45:56 +01008104#define MLXSW_REG_MTMP_SENSOR_NAME_SIZE 8
8105
8106/* reg_mtmp_sensor_name
8107 * Sensor Name
8108 * Access: RO
8109 */
8110MLXSW_ITEM_BUF(reg, mtmp, sensor_name, 0x18, MLXSW_REG_MTMP_SENSOR_NAME_SIZE);
8111
Vadim Pasternakae574672019-05-29 11:47:18 +03008112static inline void mlxsw_reg_mtmp_pack(char *payload, u16 sensor_index,
Jiri Pirko85926f82015-11-27 13:45:56 +01008113 bool max_temp_enable,
8114 bool max_temp_reset)
8115{
8116 MLXSW_REG_ZERO(mtmp, payload);
8117 mlxsw_reg_mtmp_sensor_index_set(payload, sensor_index);
8118 mlxsw_reg_mtmp_mte_set(payload, max_temp_enable);
8119 mlxsw_reg_mtmp_mtr_set(payload, max_temp_reset);
Ido Schimmel62b0e922017-10-30 10:51:18 +01008120 mlxsw_reg_mtmp_temperature_threshold_hi_set(payload,
8121 MLXSW_REG_MTMP_THRESH_HI);
Jiri Pirko85926f82015-11-27 13:45:56 +01008122}
8123
8124static inline void mlxsw_reg_mtmp_unpack(char *payload, unsigned int *p_temp,
8125 unsigned int *p_max_temp,
8126 char *sensor_name)
8127{
8128 u16 temp;
8129
8130 if (p_temp) {
8131 temp = mlxsw_reg_mtmp_temperature_get(payload);
8132 *p_temp = MLXSW_REG_MTMP_TEMP_TO_MC(temp);
8133 }
8134 if (p_max_temp) {
Jiri Pirkoacf35a42015-12-11 16:10:39 +01008135 temp = mlxsw_reg_mtmp_max_temperature_get(payload);
Jiri Pirko85926f82015-11-27 13:45:56 +01008136 *p_max_temp = MLXSW_REG_MTMP_TEMP_TO_MC(temp);
8137 }
8138 if (sensor_name)
8139 mlxsw_reg_mtmp_sensor_name_memcpy_from(payload, sensor_name);
8140}
8141
Vadim Pasternak5f28ef72019-02-13 11:28:45 +00008142/* MTBR - Management Temperature Bulk Register
8143 * -------------------------------------------
8144 * This register is used for bulk temperature reading.
8145 */
8146#define MLXSW_REG_MTBR_ID 0x900F
8147#define MLXSW_REG_MTBR_BASE_LEN 0x10 /* base length, without records */
8148#define MLXSW_REG_MTBR_REC_LEN 0x04 /* record length */
8149#define MLXSW_REG_MTBR_REC_MAX_COUNT 47 /* firmware limitation */
8150#define MLXSW_REG_MTBR_LEN (MLXSW_REG_MTBR_BASE_LEN + \
8151 MLXSW_REG_MTBR_REC_LEN * \
8152 MLXSW_REG_MTBR_REC_MAX_COUNT)
8153
8154MLXSW_REG_DEFINE(mtbr, MLXSW_REG_MTBR_ID, MLXSW_REG_MTBR_LEN);
8155
8156/* reg_mtbr_base_sensor_index
8157 * Base sensors index to access (0 - ASIC sensor, 1-63 - ambient sensors,
8158 * 64-127 are mapped to the SFP+/QSFP modules sequentially).
8159 * Access: Index
8160 */
Vadim Pasternak984aec72019-05-29 11:47:21 +03008161MLXSW_ITEM32(reg, mtbr, base_sensor_index, 0x00, 0, 12);
Vadim Pasternak5f28ef72019-02-13 11:28:45 +00008162
8163/* reg_mtbr_num_rec
8164 * Request: Number of records to read
8165 * Response: Number of records read
8166 * See above description for more details.
8167 * Range 1..255
8168 * Access: RW
8169 */
8170MLXSW_ITEM32(reg, mtbr, num_rec, 0x04, 0, 8);
8171
8172/* reg_mtbr_rec_max_temp
8173 * The highest measured temperature from the sensor.
8174 * When the bit mte is cleared, the field max_temperature is reserved.
8175 * Access: RO
8176 */
8177MLXSW_ITEM32_INDEXED(reg, mtbr, rec_max_temp, MLXSW_REG_MTBR_BASE_LEN, 16,
8178 16, MLXSW_REG_MTBR_REC_LEN, 0x00, false);
8179
8180/* reg_mtbr_rec_temp
8181 * Temperature reading from the sensor. Reading is in 0..125 Celsius
8182 * degrees units.
8183 * Access: RO
8184 */
8185MLXSW_ITEM32_INDEXED(reg, mtbr, rec_temp, MLXSW_REG_MTBR_BASE_LEN, 0, 16,
8186 MLXSW_REG_MTBR_REC_LEN, 0x00, false);
8187
Vadim Pasternak984aec72019-05-29 11:47:21 +03008188static inline void mlxsw_reg_mtbr_pack(char *payload, u16 base_sensor_index,
Vadim Pasternak5f28ef72019-02-13 11:28:45 +00008189 u8 num_rec)
8190{
8191 MLXSW_REG_ZERO(mtbr, payload);
8192 mlxsw_reg_mtbr_base_sensor_index_set(payload, base_sensor_index);
8193 mlxsw_reg_mtbr_num_rec_set(payload, num_rec);
8194}
8195
8196/* Error codes from temperatute reading */
8197enum mlxsw_reg_mtbr_temp_status {
8198 MLXSW_REG_MTBR_NO_CONN = 0x8000,
8199 MLXSW_REG_MTBR_NO_TEMP_SENS = 0x8001,
8200 MLXSW_REG_MTBR_INDEX_NA = 0x8002,
8201 MLXSW_REG_MTBR_BAD_SENS_INFO = 0x8003,
8202};
8203
8204/* Base index for reading modules temperature */
8205#define MLXSW_REG_MTBR_BASE_MODULE_INDEX 64
8206
8207static inline void mlxsw_reg_mtbr_temp_unpack(char *payload, int rec_ind,
8208 u16 *p_temp, u16 *p_max_temp)
8209{
8210 if (p_temp)
8211 *p_temp = mlxsw_reg_mtbr_rec_temp_get(payload, rec_ind);
8212 if (p_max_temp)
8213 *p_max_temp = mlxsw_reg_mtbr_rec_max_temp_get(payload, rec_ind);
8214}
8215
Arkadi Sharshevsky7ca36992017-06-14 09:27:39 +02008216/* MCIA - Management Cable Info Access
8217 * -----------------------------------
8218 * MCIA register is used to access the SFP+ and QSFP connector's EPROM.
8219 */
8220
8221#define MLXSW_REG_MCIA_ID 0x9014
8222#define MLXSW_REG_MCIA_LEN 0x40
8223
8224MLXSW_REG_DEFINE(mcia, MLXSW_REG_MCIA_ID, MLXSW_REG_MCIA_LEN);
8225
8226/* reg_mcia_l
8227 * Lock bit. Setting this bit will lock the access to the specific
8228 * cable. Used for updating a full page in a cable EPROM. Any access
8229 * other then subsequence writes will fail while the port is locked.
8230 * Access: RW
8231 */
8232MLXSW_ITEM32(reg, mcia, l, 0x00, 31, 1);
8233
8234/* reg_mcia_module
8235 * Module number.
8236 * Access: Index
8237 */
8238MLXSW_ITEM32(reg, mcia, module, 0x00, 16, 8);
8239
8240/* reg_mcia_status
8241 * Module status.
8242 * Access: RO
8243 */
8244MLXSW_ITEM32(reg, mcia, status, 0x00, 0, 8);
8245
8246/* reg_mcia_i2c_device_address
8247 * I2C device address.
8248 * Access: RW
8249 */
8250MLXSW_ITEM32(reg, mcia, i2c_device_address, 0x04, 24, 8);
8251
8252/* reg_mcia_page_number
8253 * Page number.
8254 * Access: RW
8255 */
8256MLXSW_ITEM32(reg, mcia, page_number, 0x04, 16, 8);
8257
8258/* reg_mcia_device_address
8259 * Device address.
8260 * Access: RW
8261 */
8262MLXSW_ITEM32(reg, mcia, device_address, 0x04, 0, 16);
8263
8264/* reg_mcia_size
8265 * Number of bytes to read/write (up to 48 bytes).
8266 * Access: RW
8267 */
8268MLXSW_ITEM32(reg, mcia, size, 0x08, 0, 16);
8269
Vadim Pasternakd517ee72019-02-13 11:28:44 +00008270#define MLXSW_REG_MCIA_EEPROM_PAGE_LENGTH 256
8271#define MLXSW_REG_MCIA_EEPROM_SIZE 48
8272#define MLXSW_REG_MCIA_I2C_ADDR_LOW 0x50
8273#define MLXSW_REG_MCIA_I2C_ADDR_HIGH 0x51
8274#define MLXSW_REG_MCIA_PAGE0_LO_OFF 0xa0
8275#define MLXSW_REG_MCIA_TH_ITEM_SIZE 2
8276#define MLXSW_REG_MCIA_TH_PAGE_NUM 3
8277#define MLXSW_REG_MCIA_PAGE0_LO 0
8278#define MLXSW_REG_MCIA_TH_PAGE_OFF 0x80
8279
8280enum mlxsw_reg_mcia_eeprom_module_info_rev_id {
8281 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID_UNSPC = 0x00,
8282 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID_8436 = 0x01,
8283 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID_8636 = 0x03,
8284};
8285
8286enum mlxsw_reg_mcia_eeprom_module_info_id {
8287 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_SFP = 0x03,
8288 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP = 0x0C,
8289 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP_PLUS = 0x0D,
8290 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP28 = 0x11,
8291 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP_DD = 0x18,
8292};
8293
8294enum mlxsw_reg_mcia_eeprom_module_info {
8295 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID,
8296 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID,
8297 MLXSW_REG_MCIA_EEPROM_MODULE_INFO_SIZE,
8298};
Arkadi Sharshevsky7ca36992017-06-14 09:27:39 +02008299
8300/* reg_mcia_eeprom
8301 * Bytes to read/write.
8302 * Access: RW
8303 */
Vadim Pasternakd517ee72019-02-13 11:28:44 +00008304MLXSW_ITEM_BUF(reg, mcia, eeprom, 0x10, MLXSW_REG_MCIA_EEPROM_SIZE);
Arkadi Sharshevsky7ca36992017-06-14 09:27:39 +02008305
8306static inline void mlxsw_reg_mcia_pack(char *payload, u8 module, u8 lock,
8307 u8 page_number, u16 device_addr,
8308 u8 size, u8 i2c_device_addr)
8309{
8310 MLXSW_REG_ZERO(mcia, payload);
8311 mlxsw_reg_mcia_module_set(payload, module);
8312 mlxsw_reg_mcia_l_set(payload, lock);
8313 mlxsw_reg_mcia_page_number_set(payload, page_number);
8314 mlxsw_reg_mcia_device_address_set(payload, device_addr);
8315 mlxsw_reg_mcia_size_set(payload, size);
8316 mlxsw_reg_mcia_i2c_device_address_set(payload, i2c_device_addr);
8317}
8318
Yotam Gigi43a46852016-07-21 12:03:14 +02008319/* MPAT - Monitoring Port Analyzer Table
8320 * -------------------------------------
8321 * MPAT Register is used to query and configure the Switch PortAnalyzer Table.
8322 * For an enabled analyzer, all fields except e (enable) cannot be modified.
8323 */
8324#define MLXSW_REG_MPAT_ID 0x901A
8325#define MLXSW_REG_MPAT_LEN 0x78
8326
Jiri Pirko21978dc2016-10-21 16:07:20 +02008327MLXSW_REG_DEFINE(mpat, MLXSW_REG_MPAT_ID, MLXSW_REG_MPAT_LEN);
Yotam Gigi43a46852016-07-21 12:03:14 +02008328
8329/* reg_mpat_pa_id
8330 * Port Analyzer ID.
8331 * Access: Index
8332 */
8333MLXSW_ITEM32(reg, mpat, pa_id, 0x00, 28, 4);
8334
8335/* reg_mpat_system_port
8336 * A unique port identifier for the final destination of the packet.
8337 * Access: RW
8338 */
8339MLXSW_ITEM32(reg, mpat, system_port, 0x00, 0, 16);
8340
8341/* reg_mpat_e
8342 * Enable. Indicating the Port Analyzer is enabled.
8343 * Access: RW
8344 */
8345MLXSW_ITEM32(reg, mpat, e, 0x04, 31, 1);
8346
8347/* reg_mpat_qos
8348 * Quality Of Service Mode.
8349 * 0: CONFIGURED - QoS parameters (Switch Priority, and encapsulation
8350 * PCP, DEI, DSCP or VL) are configured.
8351 * 1: MAINTAIN - QoS parameters (Switch Priority, Color) are the
8352 * same as in the original packet that has triggered the mirroring. For
8353 * SPAN also the pcp,dei are maintained.
8354 * Access: RW
8355 */
8356MLXSW_ITEM32(reg, mpat, qos, 0x04, 26, 1);
8357
Yotam Gigi23019052016-07-21 12:03:15 +02008358/* reg_mpat_be
8359 * Best effort mode. Indicates mirroring traffic should not cause packet
8360 * drop or back pressure, but will discard the mirrored packets. Mirrored
8361 * packets will be forwarded on a best effort manner.
8362 * 0: Do not discard mirrored packets
8363 * 1: Discard mirrored packets if causing congestion
8364 * Access: RW
8365 */
8366MLXSW_ITEM32(reg, mpat, be, 0x04, 25, 1);
8367
Petr Machata0d6cd3f2018-02-27 14:53:39 +01008368enum mlxsw_reg_mpat_span_type {
8369 /* Local SPAN Ethernet.
8370 * The original packet is not encapsulated.
8371 */
8372 MLXSW_REG_MPAT_SPAN_TYPE_LOCAL_ETH = 0x0,
8373
Petr Machata41947662018-05-10 13:13:04 +03008374 /* Remote SPAN Ethernet VLAN.
8375 * The packet is forwarded to the monitoring port on the monitoring
8376 * VLAN.
8377 */
8378 MLXSW_REG_MPAT_SPAN_TYPE_REMOTE_ETH = 0x1,
8379
Petr Machata0d6cd3f2018-02-27 14:53:39 +01008380 /* Encapsulated Remote SPAN Ethernet L3 GRE.
8381 * The packet is encapsulated with GRE header.
8382 */
8383 MLXSW_REG_MPAT_SPAN_TYPE_REMOTE_ETH_L3 = 0x3,
8384};
8385
8386/* reg_mpat_span_type
8387 * SPAN type.
8388 * Access: RW
8389 */
8390MLXSW_ITEM32(reg, mpat, span_type, 0x04, 0, 4);
8391
8392/* Remote SPAN - Ethernet VLAN
8393 * - - - - - - - - - - - - - -
8394 */
8395
8396/* reg_mpat_eth_rspan_vid
8397 * Encapsulation header VLAN ID.
8398 * Access: RW
8399 */
8400MLXSW_ITEM32(reg, mpat, eth_rspan_vid, 0x18, 0, 12);
8401
8402/* Encapsulated Remote SPAN - Ethernet L2
8403 * - - - - - - - - - - - - - - - - - - -
8404 */
8405
8406enum mlxsw_reg_mpat_eth_rspan_version {
8407 MLXSW_REG_MPAT_ETH_RSPAN_VERSION_NO_HEADER = 15,
8408};
8409
8410/* reg_mpat_eth_rspan_version
8411 * RSPAN mirror header version.
8412 * Access: RW
8413 */
8414MLXSW_ITEM32(reg, mpat, eth_rspan_version, 0x10, 18, 4);
8415
8416/* reg_mpat_eth_rspan_mac
8417 * Destination MAC address.
8418 * Access: RW
8419 */
8420MLXSW_ITEM_BUF(reg, mpat, eth_rspan_mac, 0x12, 6);
8421
8422/* reg_mpat_eth_rspan_tp
8423 * Tag Packet. Indicates whether the mirroring header should be VLAN tagged.
8424 * Access: RW
8425 */
8426MLXSW_ITEM32(reg, mpat, eth_rspan_tp, 0x18, 16, 1);
8427
8428/* Encapsulated Remote SPAN - Ethernet L3
8429 * - - - - - - - - - - - - - - - - - - -
8430 */
8431
8432enum mlxsw_reg_mpat_eth_rspan_protocol {
8433 MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV4,
8434 MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV6,
8435};
8436
8437/* reg_mpat_eth_rspan_protocol
8438 * SPAN encapsulation protocol.
8439 * Access: RW
8440 */
8441MLXSW_ITEM32(reg, mpat, eth_rspan_protocol, 0x18, 24, 4);
8442
8443/* reg_mpat_eth_rspan_ttl
8444 * Encapsulation header Time-to-Live/HopLimit.
8445 * Access: RW
8446 */
8447MLXSW_ITEM32(reg, mpat, eth_rspan_ttl, 0x1C, 4, 8);
8448
8449/* reg_mpat_eth_rspan_smac
8450 * Source MAC address
8451 * Access: RW
8452 */
8453MLXSW_ITEM_BUF(reg, mpat, eth_rspan_smac, 0x22, 6);
8454
8455/* reg_mpat_eth_rspan_dip*
8456 * Destination IP address. The IP version is configured by protocol.
8457 * Access: RW
8458 */
8459MLXSW_ITEM32(reg, mpat, eth_rspan_dip4, 0x4C, 0, 32);
8460MLXSW_ITEM_BUF(reg, mpat, eth_rspan_dip6, 0x40, 16);
8461
8462/* reg_mpat_eth_rspan_sip*
8463 * Source IP address. The IP version is configured by protocol.
8464 * Access: RW
8465 */
8466MLXSW_ITEM32(reg, mpat, eth_rspan_sip4, 0x5C, 0, 32);
8467MLXSW_ITEM_BUF(reg, mpat, eth_rspan_sip6, 0x50, 16);
8468
Yotam Gigi43a46852016-07-21 12:03:14 +02008469static inline void mlxsw_reg_mpat_pack(char *payload, u8 pa_id,
Petr Machata1da93eb2018-02-27 14:53:40 +01008470 u16 system_port, bool e,
8471 enum mlxsw_reg_mpat_span_type span_type)
Yotam Gigi43a46852016-07-21 12:03:14 +02008472{
8473 MLXSW_REG_ZERO(mpat, payload);
8474 mlxsw_reg_mpat_pa_id_set(payload, pa_id);
8475 mlxsw_reg_mpat_system_port_set(payload, system_port);
8476 mlxsw_reg_mpat_e_set(payload, e);
8477 mlxsw_reg_mpat_qos_set(payload, 1);
Yotam Gigi23019052016-07-21 12:03:15 +02008478 mlxsw_reg_mpat_be_set(payload, 1);
Petr Machata1da93eb2018-02-27 14:53:40 +01008479 mlxsw_reg_mpat_span_type_set(payload, span_type);
Yotam Gigi23019052016-07-21 12:03:15 +02008480}
8481
Petr Machata0d6cd3f2018-02-27 14:53:39 +01008482static inline void mlxsw_reg_mpat_eth_rspan_pack(char *payload, u16 vid)
8483{
8484 mlxsw_reg_mpat_eth_rspan_vid_set(payload, vid);
8485}
8486
8487static inline void
8488mlxsw_reg_mpat_eth_rspan_l2_pack(char *payload,
8489 enum mlxsw_reg_mpat_eth_rspan_version version,
8490 const char *mac,
8491 bool tp)
8492{
8493 mlxsw_reg_mpat_eth_rspan_version_set(payload, version);
8494 mlxsw_reg_mpat_eth_rspan_mac_memcpy_to(payload, mac);
8495 mlxsw_reg_mpat_eth_rspan_tp_set(payload, tp);
8496}
8497
8498static inline void
8499mlxsw_reg_mpat_eth_rspan_l3_ipv4_pack(char *payload, u8 ttl,
8500 const char *smac,
8501 u32 sip, u32 dip)
8502{
8503 mlxsw_reg_mpat_eth_rspan_ttl_set(payload, ttl);
8504 mlxsw_reg_mpat_eth_rspan_smac_memcpy_to(payload, smac);
8505 mlxsw_reg_mpat_eth_rspan_protocol_set(payload,
8506 MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV4);
8507 mlxsw_reg_mpat_eth_rspan_sip4_set(payload, sip);
8508 mlxsw_reg_mpat_eth_rspan_dip4_set(payload, dip);
8509}
8510
8511static inline void
8512mlxsw_reg_mpat_eth_rspan_l3_ipv6_pack(char *payload, u8 ttl,
8513 const char *smac,
8514 struct in6_addr sip, struct in6_addr dip)
8515{
8516 mlxsw_reg_mpat_eth_rspan_ttl_set(payload, ttl);
8517 mlxsw_reg_mpat_eth_rspan_smac_memcpy_to(payload, smac);
8518 mlxsw_reg_mpat_eth_rspan_protocol_set(payload,
8519 MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV6);
8520 mlxsw_reg_mpat_eth_rspan_sip6_memcpy_to(payload, (void *)&sip);
8521 mlxsw_reg_mpat_eth_rspan_dip6_memcpy_to(payload, (void *)&dip);
8522}
8523
Yotam Gigi23019052016-07-21 12:03:15 +02008524/* MPAR - Monitoring Port Analyzer Register
8525 * ----------------------------------------
8526 * MPAR register is used to query and configure the port analyzer port mirroring
8527 * properties.
8528 */
8529#define MLXSW_REG_MPAR_ID 0x901B
8530#define MLXSW_REG_MPAR_LEN 0x08
8531
Jiri Pirko21978dc2016-10-21 16:07:20 +02008532MLXSW_REG_DEFINE(mpar, MLXSW_REG_MPAR_ID, MLXSW_REG_MPAR_LEN);
Yotam Gigi23019052016-07-21 12:03:15 +02008533
8534/* reg_mpar_local_port
8535 * The local port to mirror the packets from.
8536 * Access: Index
8537 */
8538MLXSW_ITEM32(reg, mpar, local_port, 0x00, 16, 8);
8539
8540enum mlxsw_reg_mpar_i_e {
8541 MLXSW_REG_MPAR_TYPE_EGRESS,
8542 MLXSW_REG_MPAR_TYPE_INGRESS,
8543};
8544
8545/* reg_mpar_i_e
8546 * Ingress/Egress
8547 * Access: Index
8548 */
8549MLXSW_ITEM32(reg, mpar, i_e, 0x00, 0, 4);
8550
8551/* reg_mpar_enable
8552 * Enable mirroring
8553 * By default, port mirroring is disabled for all ports.
8554 * Access: RW
8555 */
8556MLXSW_ITEM32(reg, mpar, enable, 0x04, 31, 1);
8557
8558/* reg_mpar_pa_id
8559 * Port Analyzer ID.
8560 * Access: RW
8561 */
8562MLXSW_ITEM32(reg, mpar, pa_id, 0x04, 0, 4);
8563
8564static inline void mlxsw_reg_mpar_pack(char *payload, u8 local_port,
8565 enum mlxsw_reg_mpar_i_e i_e,
8566 bool enable, u8 pa_id)
8567{
8568 MLXSW_REG_ZERO(mpar, payload);
8569 mlxsw_reg_mpar_local_port_set(payload, local_port);
8570 mlxsw_reg_mpar_enable_set(payload, enable);
8571 mlxsw_reg_mpar_i_e_set(payload, i_e);
8572 mlxsw_reg_mpar_pa_id_set(payload, pa_id);
Yotam Gigi43a46852016-07-21 12:03:14 +02008573}
8574
Shalom Toledo8d77d4b2019-04-08 06:59:34 +00008575/* MGIR - Management General Information Register
8576 * ----------------------------------------------
8577 * MGIR register allows software to query the hardware and firmware general
8578 * information.
8579 */
8580#define MLXSW_REG_MGIR_ID 0x9020
8581#define MLXSW_REG_MGIR_LEN 0x9C
8582
8583MLXSW_REG_DEFINE(mgir, MLXSW_REG_MGIR_ID, MLXSW_REG_MGIR_LEN);
8584
8585/* reg_mgir_hw_info_device_hw_revision
8586 * Access: RO
8587 */
8588MLXSW_ITEM32(reg, mgir, hw_info_device_hw_revision, 0x0, 16, 16);
8589
8590#define MLXSW_REG_MGIR_FW_INFO_PSID_SIZE 16
8591
8592/* reg_mgir_fw_info_psid
8593 * PSID (ASCII string).
8594 * Access: RO
8595 */
8596MLXSW_ITEM_BUF(reg, mgir, fw_info_psid, 0x30, MLXSW_REG_MGIR_FW_INFO_PSID_SIZE);
8597
8598/* reg_mgir_fw_info_extended_major
8599 * Access: RO
8600 */
8601MLXSW_ITEM32(reg, mgir, fw_info_extended_major, 0x44, 0, 32);
8602
8603/* reg_mgir_fw_info_extended_minor
8604 * Access: RO
8605 */
8606MLXSW_ITEM32(reg, mgir, fw_info_extended_minor, 0x48, 0, 32);
8607
8608/* reg_mgir_fw_info_extended_sub_minor
8609 * Access: RO
8610 */
8611MLXSW_ITEM32(reg, mgir, fw_info_extended_sub_minor, 0x4C, 0, 32);
8612
8613static inline void mlxsw_reg_mgir_pack(char *payload)
8614{
8615 MLXSW_REG_ZERO(mgir, payload);
8616}
8617
8618static inline void
8619mlxsw_reg_mgir_unpack(char *payload, u32 *hw_rev, char *fw_info_psid,
8620 u32 *fw_major, u32 *fw_minor, u32 *fw_sub_minor)
8621{
8622 *hw_rev = mlxsw_reg_mgir_hw_info_device_hw_revision_get(payload);
8623 mlxsw_reg_mgir_fw_info_psid_memcpy_from(payload, fw_info_psid);
8624 *fw_major = mlxsw_reg_mgir_fw_info_extended_major_get(payload);
8625 *fw_minor = mlxsw_reg_mgir_fw_info_extended_minor_get(payload);
8626 *fw_sub_minor = mlxsw_reg_mgir_fw_info_extended_sub_minor_get(payload);
8627}
8628
Jiri Pirko12b003b2018-05-27 09:56:13 +03008629/* MRSR - Management Reset and Shutdown Register
8630 * ---------------------------------------------
8631 * MRSR register is used to reset or shutdown the switch or
8632 * the entire system (when applicable).
8633 */
8634#define MLXSW_REG_MRSR_ID 0x9023
8635#define MLXSW_REG_MRSR_LEN 0x08
8636
8637MLXSW_REG_DEFINE(mrsr, MLXSW_REG_MRSR_ID, MLXSW_REG_MRSR_LEN);
8638
8639/* reg_mrsr_command
8640 * Reset/shutdown command
8641 * 0 - do nothing
8642 * 1 - software reset
8643 * Access: WO
8644 */
8645MLXSW_ITEM32(reg, mrsr, command, 0x00, 0, 4);
8646
8647static inline void mlxsw_reg_mrsr_pack(char *payload)
8648{
8649 MLXSW_REG_ZERO(mrsr, payload);
8650 mlxsw_reg_mrsr_command_set(payload, 1);
8651}
8652
Ido Schimmel3161c152015-11-27 13:45:54 +01008653/* MLCR - Management LED Control Register
8654 * --------------------------------------
8655 * Controls the system LEDs.
8656 */
8657#define MLXSW_REG_MLCR_ID 0x902B
8658#define MLXSW_REG_MLCR_LEN 0x0C
8659
Jiri Pirko21978dc2016-10-21 16:07:20 +02008660MLXSW_REG_DEFINE(mlcr, MLXSW_REG_MLCR_ID, MLXSW_REG_MLCR_LEN);
Ido Schimmel3161c152015-11-27 13:45:54 +01008661
8662/* reg_mlcr_local_port
8663 * Local port number.
8664 * Access: RW
8665 */
8666MLXSW_ITEM32(reg, mlcr, local_port, 0x00, 16, 8);
8667
8668#define MLXSW_REG_MLCR_DURATION_MAX 0xFFFF
8669
8670/* reg_mlcr_beacon_duration
8671 * Duration of the beacon to be active, in seconds.
8672 * 0x0 - Will turn off the beacon.
8673 * 0xFFFF - Will turn on the beacon until explicitly turned off.
8674 * Access: RW
8675 */
8676MLXSW_ITEM32(reg, mlcr, beacon_duration, 0x04, 0, 16);
8677
8678/* reg_mlcr_beacon_remain
8679 * Remaining duration of the beacon, in seconds.
8680 * 0xFFFF indicates an infinite amount of time.
8681 * Access: RO
8682 */
8683MLXSW_ITEM32(reg, mlcr, beacon_remain, 0x08, 0, 16);
8684
8685static inline void mlxsw_reg_mlcr_pack(char *payload, u8 local_port,
8686 bool active)
8687{
8688 MLXSW_REG_ZERO(mlcr, payload);
8689 mlxsw_reg_mlcr_local_port_set(payload, local_port);
8690 mlxsw_reg_mlcr_beacon_duration_set(payload, active ?
8691 MLXSW_REG_MLCR_DURATION_MAX : 0);
8692}
8693
Shalom Toledo10786452019-06-11 18:45:08 +03008694/* MTPPS - Management Pulse Per Second Register
8695 * --------------------------------------------
8696 * This register provides the device PPS capabilities, configure the PPS in and
8697 * out modules and holds the PPS in time stamp.
8698 */
8699#define MLXSW_REG_MTPPS_ID 0x9053
8700#define MLXSW_REG_MTPPS_LEN 0x3C
8701
8702MLXSW_REG_DEFINE(mtpps, MLXSW_REG_MTPPS_ID, MLXSW_REG_MTPPS_LEN);
8703
8704/* reg_mtpps_enable
8705 * Enables the PPS functionality the specific pin.
8706 * A boolean variable.
8707 * Access: RW
8708 */
8709MLXSW_ITEM32(reg, mtpps, enable, 0x20, 31, 1);
8710
8711enum mlxsw_reg_mtpps_pin_mode {
8712 MLXSW_REG_MTPPS_PIN_MODE_VIRTUAL_PIN = 0x2,
8713};
8714
8715/* reg_mtpps_pin_mode
8716 * Pin mode to be used. The mode must comply with the supported modes of the
8717 * requested pin.
8718 * Access: RW
8719 */
8720MLXSW_ITEM32(reg, mtpps, pin_mode, 0x20, 8, 4);
8721
8722#define MLXSW_REG_MTPPS_PIN_SP_VIRTUAL_PIN 7
8723
8724/* reg_mtpps_pin
8725 * Pin to be configured or queried out of the supported pins.
8726 * Access: Index
8727 */
8728MLXSW_ITEM32(reg, mtpps, pin, 0x20, 0, 8);
8729
8730/* reg_mtpps_time_stamp
8731 * When pin_mode = pps_in, the latched device time when it was triggered from
8732 * the external GPIO pin.
8733 * When pin_mode = pps_out or virtual_pin or pps_out_and_virtual_pin, the target
8734 * time to generate next output signal.
8735 * Time is in units of device clock.
8736 * Access: RW
8737 */
8738MLXSW_ITEM64(reg, mtpps, time_stamp, 0x28, 0, 64);
8739
8740static inline void
8741mlxsw_reg_mtpps_vpin_pack(char *payload, u64 time_stamp)
8742{
8743 MLXSW_REG_ZERO(mtpps, payload);
8744 mlxsw_reg_mtpps_pin_set(payload, MLXSW_REG_MTPPS_PIN_SP_VIRTUAL_PIN);
8745 mlxsw_reg_mtpps_pin_mode_set(payload,
8746 MLXSW_REG_MTPPS_PIN_MODE_VIRTUAL_PIN);
8747 mlxsw_reg_mtpps_enable_set(payload, true);
8748 mlxsw_reg_mtpps_time_stamp_set(payload, time_stamp);
8749}
8750
Shalom Toledo55a8b002019-06-11 18:45:07 +03008751/* MTUTC - Management UTC Register
8752 * -------------------------------
8753 * Configures the HW UTC counter.
8754 */
8755#define MLXSW_REG_MTUTC_ID 0x9055
8756#define MLXSW_REG_MTUTC_LEN 0x1C
8757
8758MLXSW_REG_DEFINE(mtutc, MLXSW_REG_MTUTC_ID, MLXSW_REG_MTUTC_LEN);
8759
8760enum mlxsw_reg_mtutc_operation {
8761 MLXSW_REG_MTUTC_OPERATION_SET_TIME_AT_NEXT_SEC = 0,
8762 MLXSW_REG_MTUTC_OPERATION_ADJUST_FREQ = 3,
8763};
8764
8765/* reg_mtutc_operation
8766 * Operation.
8767 * Access: OP
8768 */
8769MLXSW_ITEM32(reg, mtutc, operation, 0x00, 0, 4);
8770
8771/* reg_mtutc_freq_adjustment
8772 * Frequency adjustment: Every PPS the HW frequency will be
8773 * adjusted by this value. Units of HW clock, where HW counts
8774 * 10^9 HW clocks for 1 HW second.
8775 * Access: RW
8776 */
8777MLXSW_ITEM32(reg, mtutc, freq_adjustment, 0x04, 0, 32);
8778
8779/* reg_mtutc_utc_sec
8780 * UTC seconds.
8781 * Access: WO
8782 */
8783MLXSW_ITEM32(reg, mtutc, utc_sec, 0x10, 0, 32);
8784
8785static inline void
8786mlxsw_reg_mtutc_pack(char *payload, enum mlxsw_reg_mtutc_operation oper,
8787 u32 freq_adj, u32 utc_sec)
8788{
8789 MLXSW_REG_ZERO(mtutc, payload);
8790 mlxsw_reg_mtutc_operation_set(payload, oper);
8791 mlxsw_reg_mtutc_freq_adjustment_set(payload, freq_adj);
8792 mlxsw_reg_mtutc_utc_sec_set(payload, utc_sec);
8793}
8794
Yotam Gigi4f2402d2017-05-23 21:56:24 +02008795/* MCQI - Management Component Query Information
8796 * ---------------------------------------------
8797 * This register allows querying information about firmware components.
8798 */
8799#define MLXSW_REG_MCQI_ID 0x9061
8800#define MLXSW_REG_MCQI_BASE_LEN 0x18
8801#define MLXSW_REG_MCQI_CAP_LEN 0x14
8802#define MLXSW_REG_MCQI_LEN (MLXSW_REG_MCQI_BASE_LEN + MLXSW_REG_MCQI_CAP_LEN)
8803
8804MLXSW_REG_DEFINE(mcqi, MLXSW_REG_MCQI_ID, MLXSW_REG_MCQI_LEN);
8805
8806/* reg_mcqi_component_index
8807 * Index of the accessed component.
8808 * Access: Index
8809 */
8810MLXSW_ITEM32(reg, mcqi, component_index, 0x00, 0, 16);
8811
8812enum mlxfw_reg_mcqi_info_type {
8813 MLXSW_REG_MCQI_INFO_TYPE_CAPABILITIES,
8814};
8815
8816/* reg_mcqi_info_type
8817 * Component properties set.
8818 * Access: RW
8819 */
8820MLXSW_ITEM32(reg, mcqi, info_type, 0x08, 0, 5);
8821
8822/* reg_mcqi_offset
8823 * The requested/returned data offset from the section start, given in bytes.
8824 * Must be DWORD aligned.
8825 * Access: RW
8826 */
8827MLXSW_ITEM32(reg, mcqi, offset, 0x10, 0, 32);
8828
8829/* reg_mcqi_data_size
8830 * The requested/returned data size, given in bytes. If data_size is not DWORD
8831 * aligned, the last bytes are zero padded.
8832 * Access: RW
8833 */
8834MLXSW_ITEM32(reg, mcqi, data_size, 0x14, 0, 16);
8835
8836/* reg_mcqi_cap_max_component_size
8837 * Maximum size for this component, given in bytes.
8838 * Access: RO
8839 */
8840MLXSW_ITEM32(reg, mcqi, cap_max_component_size, 0x20, 0, 32);
8841
8842/* reg_mcqi_cap_log_mcda_word_size
8843 * Log 2 of the access word size in bytes. Read and write access must be aligned
8844 * to the word size. Write access must be done for an integer number of words.
8845 * Access: RO
8846 */
8847MLXSW_ITEM32(reg, mcqi, cap_log_mcda_word_size, 0x24, 28, 4);
8848
8849/* reg_mcqi_cap_mcda_max_write_size
8850 * Maximal write size for MCDA register
8851 * Access: RO
8852 */
8853MLXSW_ITEM32(reg, mcqi, cap_mcda_max_write_size, 0x24, 0, 16);
8854
8855static inline void mlxsw_reg_mcqi_pack(char *payload, u16 component_index)
8856{
8857 MLXSW_REG_ZERO(mcqi, payload);
8858 mlxsw_reg_mcqi_component_index_set(payload, component_index);
8859 mlxsw_reg_mcqi_info_type_set(payload,
8860 MLXSW_REG_MCQI_INFO_TYPE_CAPABILITIES);
8861 mlxsw_reg_mcqi_offset_set(payload, 0);
8862 mlxsw_reg_mcqi_data_size_set(payload, MLXSW_REG_MCQI_CAP_LEN);
8863}
8864
8865static inline void mlxsw_reg_mcqi_unpack(char *payload,
8866 u32 *p_cap_max_component_size,
8867 u8 *p_cap_log_mcda_word_size,
8868 u16 *p_cap_mcda_max_write_size)
8869{
8870 *p_cap_max_component_size =
8871 mlxsw_reg_mcqi_cap_max_component_size_get(payload);
8872 *p_cap_log_mcda_word_size =
8873 mlxsw_reg_mcqi_cap_log_mcda_word_size_get(payload);
8874 *p_cap_mcda_max_write_size =
8875 mlxsw_reg_mcqi_cap_mcda_max_write_size_get(payload);
8876}
8877
Yotam Gigi191839d2017-05-23 21:56:25 +02008878/* MCC - Management Component Control
8879 * ----------------------------------
8880 * Controls the firmware component and updates the FSM.
8881 */
8882#define MLXSW_REG_MCC_ID 0x9062
8883#define MLXSW_REG_MCC_LEN 0x1C
8884
8885MLXSW_REG_DEFINE(mcc, MLXSW_REG_MCC_ID, MLXSW_REG_MCC_LEN);
8886
8887enum mlxsw_reg_mcc_instruction {
8888 MLXSW_REG_MCC_INSTRUCTION_LOCK_UPDATE_HANDLE = 0x01,
8889 MLXSW_REG_MCC_INSTRUCTION_RELEASE_UPDATE_HANDLE = 0x02,
8890 MLXSW_REG_MCC_INSTRUCTION_UPDATE_COMPONENT = 0x03,
8891 MLXSW_REG_MCC_INSTRUCTION_VERIFY_COMPONENT = 0x04,
8892 MLXSW_REG_MCC_INSTRUCTION_ACTIVATE = 0x06,
8893 MLXSW_REG_MCC_INSTRUCTION_CANCEL = 0x08,
8894};
8895
8896/* reg_mcc_instruction
8897 * Command to be executed by the FSM.
8898 * Applicable for write operation only.
8899 * Access: RW
8900 */
8901MLXSW_ITEM32(reg, mcc, instruction, 0x00, 0, 8);
8902
8903/* reg_mcc_component_index
8904 * Index of the accessed component. Applicable only for commands that
8905 * refer to components. Otherwise, this field is reserved.
8906 * Access: Index
8907 */
8908MLXSW_ITEM32(reg, mcc, component_index, 0x04, 0, 16);
8909
8910/* reg_mcc_update_handle
8911 * Token representing the current flow executed by the FSM.
8912 * Access: WO
8913 */
8914MLXSW_ITEM32(reg, mcc, update_handle, 0x08, 0, 24);
8915
8916/* reg_mcc_error_code
8917 * Indicates the successful completion of the instruction, or the reason it
8918 * failed
8919 * Access: RO
8920 */
8921MLXSW_ITEM32(reg, mcc, error_code, 0x0C, 8, 8);
8922
8923/* reg_mcc_control_state
8924 * Current FSM state
8925 * Access: RO
8926 */
8927MLXSW_ITEM32(reg, mcc, control_state, 0x0C, 0, 4);
8928
8929/* reg_mcc_component_size
8930 * Component size in bytes. Valid for UPDATE_COMPONENT instruction. Specifying
8931 * the size may shorten the update time. Value 0x0 means that size is
8932 * unspecified.
8933 * Access: WO
8934 */
8935MLXSW_ITEM32(reg, mcc, component_size, 0x10, 0, 32);
8936
8937static inline void mlxsw_reg_mcc_pack(char *payload,
8938 enum mlxsw_reg_mcc_instruction instr,
8939 u16 component_index, u32 update_handle,
8940 u32 component_size)
8941{
8942 MLXSW_REG_ZERO(mcc, payload);
8943 mlxsw_reg_mcc_instruction_set(payload, instr);
8944 mlxsw_reg_mcc_component_index_set(payload, component_index);
8945 mlxsw_reg_mcc_update_handle_set(payload, update_handle);
8946 mlxsw_reg_mcc_component_size_set(payload, component_size);
8947}
8948
8949static inline void mlxsw_reg_mcc_unpack(char *payload, u32 *p_update_handle,
8950 u8 *p_error_code, u8 *p_control_state)
8951{
8952 if (p_update_handle)
8953 *p_update_handle = mlxsw_reg_mcc_update_handle_get(payload);
8954 if (p_error_code)
8955 *p_error_code = mlxsw_reg_mcc_error_code_get(payload);
8956 if (p_control_state)
8957 *p_control_state = mlxsw_reg_mcc_control_state_get(payload);
8958}
8959
Yotam Gigi4625d592017-05-23 21:56:26 +02008960/* MCDA - Management Component Data Access
8961 * ---------------------------------------
8962 * This register allows reading and writing a firmware component.
8963 */
8964#define MLXSW_REG_MCDA_ID 0x9063
8965#define MLXSW_REG_MCDA_BASE_LEN 0x10
8966#define MLXSW_REG_MCDA_MAX_DATA_LEN 0x80
8967#define MLXSW_REG_MCDA_LEN \
8968 (MLXSW_REG_MCDA_BASE_LEN + MLXSW_REG_MCDA_MAX_DATA_LEN)
8969
8970MLXSW_REG_DEFINE(mcda, MLXSW_REG_MCDA_ID, MLXSW_REG_MCDA_LEN);
8971
8972/* reg_mcda_update_handle
8973 * Token representing the current flow executed by the FSM.
8974 * Access: RW
8975 */
8976MLXSW_ITEM32(reg, mcda, update_handle, 0x00, 0, 24);
8977
8978/* reg_mcda_offset
8979 * Offset of accessed address relative to component start. Accesses must be in
8980 * accordance to log_mcda_word_size in MCQI reg.
8981 * Access: RW
8982 */
8983MLXSW_ITEM32(reg, mcda, offset, 0x04, 0, 32);
8984
8985/* reg_mcda_size
8986 * Size of the data accessed, given in bytes.
8987 * Access: RW
8988 */
8989MLXSW_ITEM32(reg, mcda, size, 0x08, 0, 16);
8990
8991/* reg_mcda_data
8992 * Data block accessed.
8993 * Access: RW
8994 */
8995MLXSW_ITEM32_INDEXED(reg, mcda, data, 0x10, 0, 32, 4, 0, false);
8996
8997static inline void mlxsw_reg_mcda_pack(char *payload, u32 update_handle,
8998 u32 offset, u16 size, u8 *data)
8999{
9000 int i;
9001
9002 MLXSW_REG_ZERO(mcda, payload);
9003 mlxsw_reg_mcda_update_handle_set(payload, update_handle);
9004 mlxsw_reg_mcda_offset_set(payload, offset);
9005 mlxsw_reg_mcda_size_set(payload, size);
9006
9007 for (i = 0; i < size / 4; i++)
9008 mlxsw_reg_mcda_data_set(payload, i, *(u32 *) &data[i * 4]);
9009}
9010
Yotam Gigi0677d682017-01-23 11:07:10 +01009011/* MPSC - Monitoring Packet Sampling Configuration Register
9012 * --------------------------------------------------------
9013 * MPSC Register is used to configure the Packet Sampling mechanism.
9014 */
9015#define MLXSW_REG_MPSC_ID 0x9080
9016#define MLXSW_REG_MPSC_LEN 0x1C
9017
9018MLXSW_REG_DEFINE(mpsc, MLXSW_REG_MPSC_ID, MLXSW_REG_MPSC_LEN);
9019
9020/* reg_mpsc_local_port
9021 * Local port number
9022 * Not supported for CPU port
9023 * Access: Index
9024 */
9025MLXSW_ITEM32(reg, mpsc, local_port, 0x00, 16, 8);
9026
9027/* reg_mpsc_e
9028 * Enable sampling on port local_port
9029 * Access: RW
9030 */
9031MLXSW_ITEM32(reg, mpsc, e, 0x04, 30, 1);
9032
9033#define MLXSW_REG_MPSC_RATE_MAX 3500000000UL
9034
9035/* reg_mpsc_rate
9036 * Sampling rate = 1 out of rate packets (with randomization around
9037 * the point). Valid values are: 1 to MLXSW_REG_MPSC_RATE_MAX
9038 * Access: RW
9039 */
9040MLXSW_ITEM32(reg, mpsc, rate, 0x08, 0, 32);
9041
9042static inline void mlxsw_reg_mpsc_pack(char *payload, u8 local_port, bool e,
9043 u32 rate)
9044{
9045 MLXSW_REG_ZERO(mpsc, payload);
9046 mlxsw_reg_mpsc_local_port_set(payload, local_port);
9047 mlxsw_reg_mpsc_e_set(payload, e);
9048 mlxsw_reg_mpsc_rate_set(payload, rate);
9049}
9050
Arkadi Sharshevsky57665322017-03-11 09:42:52 +01009051/* MGPC - Monitoring General Purpose Counter Set Register
9052 * The MGPC register retrieves and sets the General Purpose Counter Set.
9053 */
9054#define MLXSW_REG_MGPC_ID 0x9081
9055#define MLXSW_REG_MGPC_LEN 0x18
9056
9057MLXSW_REG_DEFINE(mgpc, MLXSW_REG_MGPC_ID, MLXSW_REG_MGPC_LEN);
9058
Arkadi Sharshevsky57665322017-03-11 09:42:52 +01009059/* reg_mgpc_counter_set_type
9060 * Counter set type.
9061 * Access: OP
9062 */
9063MLXSW_ITEM32(reg, mgpc, counter_set_type, 0x00, 24, 8);
9064
9065/* reg_mgpc_counter_index
9066 * Counter index.
9067 * Access: Index
9068 */
9069MLXSW_ITEM32(reg, mgpc, counter_index, 0x00, 0, 24);
9070
9071enum mlxsw_reg_mgpc_opcode {
9072 /* Nop */
9073 MLXSW_REG_MGPC_OPCODE_NOP = 0x00,
9074 /* Clear counters */
9075 MLXSW_REG_MGPC_OPCODE_CLEAR = 0x08,
9076};
9077
9078/* reg_mgpc_opcode
9079 * Opcode.
9080 * Access: OP
9081 */
9082MLXSW_ITEM32(reg, mgpc, opcode, 0x04, 28, 4);
9083
9084/* reg_mgpc_byte_counter
9085 * Byte counter value.
9086 * Access: RW
9087 */
9088MLXSW_ITEM64(reg, mgpc, byte_counter, 0x08, 0, 64);
9089
9090/* reg_mgpc_packet_counter
9091 * Packet counter value.
9092 * Access: RW
9093 */
9094MLXSW_ITEM64(reg, mgpc, packet_counter, 0x10, 0, 64);
9095
9096static inline void mlxsw_reg_mgpc_pack(char *payload, u32 counter_index,
9097 enum mlxsw_reg_mgpc_opcode opcode,
Arkadi Sharshevsky6bba7e22017-08-24 08:40:07 +02009098 enum mlxsw_reg_flow_counter_set_type set_type)
Arkadi Sharshevsky57665322017-03-11 09:42:52 +01009099{
9100 MLXSW_REG_ZERO(mgpc, payload);
9101 mlxsw_reg_mgpc_counter_index_set(payload, counter_index);
9102 mlxsw_reg_mgpc_counter_set_type_set(payload, set_type);
9103 mlxsw_reg_mgpc_opcode_set(payload, opcode);
9104}
9105
Ido Schimmel27f68c02018-10-11 07:48:08 +00009106/* MPRS - Monitoring Parsing State Register
9107 * ----------------------------------------
9108 * The MPRS register is used for setting up the parsing for hash,
9109 * policy-engine and routing.
9110 */
9111#define MLXSW_REG_MPRS_ID 0x9083
9112#define MLXSW_REG_MPRS_LEN 0x14
9113
9114MLXSW_REG_DEFINE(mprs, MLXSW_REG_MPRS_ID, MLXSW_REG_MPRS_LEN);
9115
9116/* reg_mprs_parsing_depth
9117 * Minimum parsing depth.
9118 * Need to enlarge parsing depth according to L3, MPLS, tunnels, ACL
9119 * rules, traps, hash, etc. Default is 96 bytes. Reserved when SwitchX-2.
9120 * Access: RW
9121 */
9122MLXSW_ITEM32(reg, mprs, parsing_depth, 0x00, 0, 16);
9123
9124/* reg_mprs_parsing_en
9125 * Parsing enable.
9126 * Bit 0 - Enable parsing of NVE of types VxLAN, VxLAN-GPE, GENEVE and
9127 * NVGRE. Default is enabled. Reserved when SwitchX-2.
9128 * Access: RW
9129 */
9130MLXSW_ITEM32(reg, mprs, parsing_en, 0x04, 0, 16);
9131
9132/* reg_mprs_vxlan_udp_dport
9133 * VxLAN UDP destination port.
9134 * Used for identifying VxLAN packets and for dport field in
9135 * encapsulation. Default is 4789.
9136 * Access: RW
9137 */
9138MLXSW_ITEM32(reg, mprs, vxlan_udp_dport, 0x10, 0, 16);
9139
9140static inline void mlxsw_reg_mprs_pack(char *payload, u16 parsing_depth,
9141 u16 vxlan_udp_dport)
9142{
9143 MLXSW_REG_ZERO(mprs, payload);
9144 mlxsw_reg_mprs_parsing_depth_set(payload, parsing_depth);
9145 mlxsw_reg_mprs_parsing_en_set(payload, true);
9146 mlxsw_reg_mprs_vxlan_udp_dport_set(payload, vxlan_udp_dport);
9147}
9148
Vadim Pasternak7e9561e2019-05-29 11:47:19 +03009149/* MGPIR - Management General Peripheral Information Register
9150 * ----------------------------------------------------------
9151 * MGPIR register allows software to query the hardware and
9152 * firmware general information of peripheral entities.
9153 */
9154#define MLXSW_REG_MGPIR_ID 0x9100
9155#define MLXSW_REG_MGPIR_LEN 0xA0
9156
9157MLXSW_REG_DEFINE(mgpir, MLXSW_REG_MGPIR_ID, MLXSW_REG_MGPIR_LEN);
9158
9159enum mlxsw_reg_mgpir_device_type {
9160 MLXSW_REG_MGPIR_DEVICE_TYPE_NONE,
9161 MLXSW_REG_MGPIR_DEVICE_TYPE_GEARBOX_DIE,
9162};
9163
9164/* device_type
9165 * Access: RO
9166 */
9167MLXSW_ITEM32(reg, mgpir, device_type, 0x00, 24, 4);
9168
9169/* devices_per_flash
9170 * Number of devices of device_type per flash (can be shared by few devices).
9171 * Access: RO
9172 */
9173MLXSW_ITEM32(reg, mgpir, devices_per_flash, 0x00, 16, 8);
9174
9175/* num_of_devices
9176 * Number of devices of device_type.
9177 * Access: RO
9178 */
9179MLXSW_ITEM32(reg, mgpir, num_of_devices, 0x00, 0, 8);
9180
9181static inline void mlxsw_reg_mgpir_pack(char *payload)
9182{
9183 MLXSW_REG_ZERO(mgpir, payload);
9184}
9185
9186static inline void
9187mlxsw_reg_mgpir_unpack(char *payload, u8 *num_of_devices,
9188 enum mlxsw_reg_mgpir_device_type *device_type,
9189 u8 *devices_per_flash)
9190{
9191 if (num_of_devices)
9192 *num_of_devices = mlxsw_reg_mgpir_num_of_devices_get(payload);
9193 if (device_type)
9194 *device_type = mlxsw_reg_mgpir_device_type_get(payload);
9195 if (devices_per_flash)
9196 *devices_per_flash =
9197 mlxsw_reg_mgpir_devices_per_flash_get(payload);
9198}
9199
Ido Schimmel710dd1a2018-10-11 07:47:59 +00009200/* TNGCR - Tunneling NVE General Configuration Register
9201 * ----------------------------------------------------
9202 * The TNGCR register is used for setting up the NVE Tunneling configuration.
9203 */
9204#define MLXSW_REG_TNGCR_ID 0xA001
9205#define MLXSW_REG_TNGCR_LEN 0x44
9206
9207MLXSW_REG_DEFINE(tngcr, MLXSW_REG_TNGCR_ID, MLXSW_REG_TNGCR_LEN);
9208
9209enum mlxsw_reg_tngcr_type {
9210 MLXSW_REG_TNGCR_TYPE_VXLAN,
9211 MLXSW_REG_TNGCR_TYPE_VXLAN_GPE,
9212 MLXSW_REG_TNGCR_TYPE_GENEVE,
9213 MLXSW_REG_TNGCR_TYPE_NVGRE,
9214};
9215
9216/* reg_tngcr_type
9217 * Tunnel type for encapsulation and decapsulation. The types are mutually
9218 * exclusive.
9219 * Note: For Spectrum the NVE parsing must be enabled in MPRS.
9220 * Access: RW
9221 */
9222MLXSW_ITEM32(reg, tngcr, type, 0x00, 0, 4);
9223
9224/* reg_tngcr_nve_valid
9225 * The VTEP is valid. Allows adding FDB entries for tunnel encapsulation.
9226 * Access: RW
9227 */
9228MLXSW_ITEM32(reg, tngcr, nve_valid, 0x04, 31, 1);
9229
9230/* reg_tngcr_nve_ttl_uc
9231 * The TTL for NVE tunnel encapsulation underlay unicast packets.
9232 * Access: RW
9233 */
9234MLXSW_ITEM32(reg, tngcr, nve_ttl_uc, 0x04, 0, 8);
9235
9236/* reg_tngcr_nve_ttl_mc
9237 * The TTL for NVE tunnel encapsulation underlay multicast packets.
9238 * Access: RW
9239 */
9240MLXSW_ITEM32(reg, tngcr, nve_ttl_mc, 0x08, 0, 8);
9241
9242enum {
9243 /* Do not copy flow label. Calculate flow label using nve_flh. */
9244 MLXSW_REG_TNGCR_FL_NO_COPY,
9245 /* Copy flow label from inner packet if packet is IPv6 and
9246 * encapsulation is by IPv6. Otherwise, calculate flow label using
9247 * nve_flh.
9248 */
9249 MLXSW_REG_TNGCR_FL_COPY,
9250};
9251
9252/* reg_tngcr_nve_flc
9253 * For NVE tunnel encapsulation: Flow label copy from inner packet.
9254 * Access: RW
9255 */
9256MLXSW_ITEM32(reg, tngcr, nve_flc, 0x0C, 25, 1);
9257
9258enum {
9259 /* Flow label is static. In Spectrum this means '0'. Spectrum-2
9260 * uses {nve_fl_prefix, nve_fl_suffix}.
9261 */
9262 MLXSW_REG_TNGCR_FL_NO_HASH,
9263 /* 8 LSBs of the flow label are calculated from ECMP hash of the
9264 * inner packet. 12 MSBs are configured by nve_fl_prefix.
9265 */
9266 MLXSW_REG_TNGCR_FL_HASH,
9267};
9268
9269/* reg_tngcr_nve_flh
9270 * NVE flow label hash.
9271 * Access: RW
9272 */
9273MLXSW_ITEM32(reg, tngcr, nve_flh, 0x0C, 24, 1);
9274
9275/* reg_tngcr_nve_fl_prefix
9276 * NVE flow label prefix. Constant 12 MSBs of the flow label.
9277 * Access: RW
9278 */
9279MLXSW_ITEM32(reg, tngcr, nve_fl_prefix, 0x0C, 8, 12);
9280
9281/* reg_tngcr_nve_fl_suffix
9282 * NVE flow label suffix. Constant 8 LSBs of the flow label.
9283 * Reserved when nve_flh=1 and for Spectrum.
9284 * Access: RW
9285 */
9286MLXSW_ITEM32(reg, tngcr, nve_fl_suffix, 0x0C, 0, 8);
9287
9288enum {
9289 /* Source UDP port is fixed (default '0') */
9290 MLXSW_REG_TNGCR_UDP_SPORT_NO_HASH,
9291 /* Source UDP port is calculated based on hash */
9292 MLXSW_REG_TNGCR_UDP_SPORT_HASH,
9293};
9294
9295/* reg_tngcr_nve_udp_sport_type
9296 * NVE UDP source port type.
9297 * Spectrum uses LAG hash (SLCRv2). Spectrum-2 uses ECMP hash (RECRv2).
9298 * When the source UDP port is calculated based on hash, then the 8 LSBs
9299 * are calculated from hash the 8 MSBs are configured by
9300 * nve_udp_sport_prefix.
9301 * Access: RW
9302 */
9303MLXSW_ITEM32(reg, tngcr, nve_udp_sport_type, 0x10, 24, 1);
9304
9305/* reg_tngcr_nve_udp_sport_prefix
9306 * NVE UDP source port prefix. Constant 8 MSBs of the UDP source port.
9307 * Reserved when NVE type is NVGRE.
9308 * Access: RW
9309 */
9310MLXSW_ITEM32(reg, tngcr, nve_udp_sport_prefix, 0x10, 8, 8);
9311
9312/* reg_tngcr_nve_group_size_mc
9313 * The amount of sequential linked lists of MC entries. The first linked
9314 * list is configured by SFD.underlay_mc_ptr.
9315 * Valid values: 1, 2, 4, 8, 16, 32, 64
9316 * The linked list are configured by TNUMT.
9317 * The hash is set by LAG hash.
9318 * Access: RW
9319 */
9320MLXSW_ITEM32(reg, tngcr, nve_group_size_mc, 0x18, 0, 8);
9321
9322/* reg_tngcr_nve_group_size_flood
9323 * The amount of sequential linked lists of flooding entries. The first
9324 * linked list is configured by SFMR.nve_tunnel_flood_ptr
9325 * Valid values: 1, 2, 4, 8, 16, 32, 64
9326 * The linked list are configured by TNUMT.
9327 * The hash is set by LAG hash.
9328 * Access: RW
9329 */
9330MLXSW_ITEM32(reg, tngcr, nve_group_size_flood, 0x1C, 0, 8);
9331
9332/* reg_tngcr_learn_enable
9333 * During decapsulation, whether to learn from NVE port.
9334 * Reserved when Spectrum-2. See TNPC.
9335 * Access: RW
9336 */
9337MLXSW_ITEM32(reg, tngcr, learn_enable, 0x20, 31, 1);
9338
9339/* reg_tngcr_underlay_virtual_router
9340 * Underlay virtual router.
9341 * Reserved when Spectrum-2.
9342 * Access: RW
9343 */
9344MLXSW_ITEM32(reg, tngcr, underlay_virtual_router, 0x20, 0, 16);
9345
9346/* reg_tngcr_underlay_rif
9347 * Underlay ingress router interface. RIF type should be loopback generic.
9348 * Reserved when Spectrum.
9349 * Access: RW
9350 */
9351MLXSW_ITEM32(reg, tngcr, underlay_rif, 0x24, 0, 16);
9352
9353/* reg_tngcr_usipv4
9354 * Underlay source IPv4 address of the NVE.
9355 * Access: RW
9356 */
9357MLXSW_ITEM32(reg, tngcr, usipv4, 0x28, 0, 32);
9358
9359/* reg_tngcr_usipv6
9360 * Underlay source IPv6 address of the NVE. For Spectrum, must not be
9361 * modified under traffic of NVE tunneling encapsulation.
9362 * Access: RW
9363 */
9364MLXSW_ITEM_BUF(reg, tngcr, usipv6, 0x30, 16);
9365
9366static inline void mlxsw_reg_tngcr_pack(char *payload,
9367 enum mlxsw_reg_tngcr_type type,
9368 bool valid, u8 ttl)
9369{
9370 MLXSW_REG_ZERO(tngcr, payload);
9371 mlxsw_reg_tngcr_type_set(payload, type);
9372 mlxsw_reg_tngcr_nve_valid_set(payload, valid);
9373 mlxsw_reg_tngcr_nve_ttl_uc_set(payload, ttl);
9374 mlxsw_reg_tngcr_nve_ttl_mc_set(payload, ttl);
9375 mlxsw_reg_tngcr_nve_flc_set(payload, MLXSW_REG_TNGCR_FL_NO_COPY);
9376 mlxsw_reg_tngcr_nve_flh_set(payload, 0);
9377 mlxsw_reg_tngcr_nve_udp_sport_type_set(payload,
9378 MLXSW_REG_TNGCR_UDP_SPORT_HASH);
9379 mlxsw_reg_tngcr_nve_udp_sport_prefix_set(payload, 0);
9380 mlxsw_reg_tngcr_nve_group_size_mc_set(payload, 1);
9381 mlxsw_reg_tngcr_nve_group_size_flood_set(payload, 1);
9382}
9383
Ido Schimmelc723d192018-10-11 07:48:01 +00009384/* TNUMT - Tunneling NVE Underlay Multicast Table Register
9385 * -------------------------------------------------------
9386 * The TNUMT register is for building the underlay MC table. It is used
9387 * for MC, flooding and BC traffic into the NVE tunnel.
9388 */
9389#define MLXSW_REG_TNUMT_ID 0xA003
9390#define MLXSW_REG_TNUMT_LEN 0x20
9391
9392MLXSW_REG_DEFINE(tnumt, MLXSW_REG_TNUMT_ID, MLXSW_REG_TNUMT_LEN);
9393
9394enum mlxsw_reg_tnumt_record_type {
9395 MLXSW_REG_TNUMT_RECORD_TYPE_IPV4,
9396 MLXSW_REG_TNUMT_RECORD_TYPE_IPV6,
9397 MLXSW_REG_TNUMT_RECORD_TYPE_LABEL,
9398};
9399
9400/* reg_tnumt_record_type
9401 * Record type.
9402 * Access: RW
9403 */
9404MLXSW_ITEM32(reg, tnumt, record_type, 0x00, 28, 4);
9405
9406enum mlxsw_reg_tnumt_tunnel_port {
9407 MLXSW_REG_TNUMT_TUNNEL_PORT_NVE,
9408 MLXSW_REG_TNUMT_TUNNEL_PORT_VPLS,
9409 MLXSW_REG_TNUMT_TUNNEL_FLEX_TUNNEL0,
9410 MLXSW_REG_TNUMT_TUNNEL_FLEX_TUNNEL1,
9411};
9412
9413/* reg_tnumt_tunnel_port
9414 * Tunnel port.
9415 * Access: RW
9416 */
9417MLXSW_ITEM32(reg, tnumt, tunnel_port, 0x00, 24, 4);
9418
9419/* reg_tnumt_underlay_mc_ptr
9420 * Index to the underlay multicast table.
9421 * For Spectrum the index is to the KVD linear.
9422 * Access: Index
9423 */
9424MLXSW_ITEM32(reg, tnumt, underlay_mc_ptr, 0x00, 0, 24);
9425
9426/* reg_tnumt_vnext
9427 * The next_underlay_mc_ptr is valid.
9428 * Access: RW
9429 */
9430MLXSW_ITEM32(reg, tnumt, vnext, 0x04, 31, 1);
9431
9432/* reg_tnumt_next_underlay_mc_ptr
9433 * The next index to the underlay multicast table.
9434 * Access: RW
9435 */
9436MLXSW_ITEM32(reg, tnumt, next_underlay_mc_ptr, 0x04, 0, 24);
9437
9438/* reg_tnumt_record_size
9439 * Number of IP addresses in the record.
9440 * Range is 1..cap_max_nve_mc_entries_ipv{4,6}
9441 * Access: RW
9442 */
9443MLXSW_ITEM32(reg, tnumt, record_size, 0x08, 0, 3);
9444
9445/* reg_tnumt_udip
9446 * The underlay IPv4 addresses. udip[i] is reserved if i >= size
9447 * Access: RW
9448 */
9449MLXSW_ITEM32_INDEXED(reg, tnumt, udip, 0x0C, 0, 32, 0x04, 0x00, false);
9450
9451/* reg_tnumt_udip_ptr
9452 * The pointer to the underlay IPv6 addresses. udip_ptr[i] is reserved if
9453 * i >= size. The IPv6 addresses are configured by RIPS.
9454 * Access: RW
9455 */
9456MLXSW_ITEM32_INDEXED(reg, tnumt, udip_ptr, 0x0C, 0, 24, 0x04, 0x00, false);
9457
9458static inline void mlxsw_reg_tnumt_pack(char *payload,
9459 enum mlxsw_reg_tnumt_record_type type,
9460 enum mlxsw_reg_tnumt_tunnel_port tport,
9461 u32 underlay_mc_ptr, bool vnext,
9462 u32 next_underlay_mc_ptr,
9463 u8 record_size)
9464{
9465 MLXSW_REG_ZERO(tnumt, payload);
9466 mlxsw_reg_tnumt_record_type_set(payload, type);
9467 mlxsw_reg_tnumt_tunnel_port_set(payload, tport);
9468 mlxsw_reg_tnumt_underlay_mc_ptr_set(payload, underlay_mc_ptr);
9469 mlxsw_reg_tnumt_vnext_set(payload, vnext);
9470 mlxsw_reg_tnumt_next_underlay_mc_ptr_set(payload, next_underlay_mc_ptr);
9471 mlxsw_reg_tnumt_record_size_set(payload, record_size);
9472}
9473
Ido Schimmelfd6db272018-10-11 07:48:04 +00009474/* TNQCR - Tunneling NVE QoS Configuration Register
9475 * ------------------------------------------------
9476 * The TNQCR register configures how QoS is set in encapsulation into the
9477 * underlay network.
9478 */
9479#define MLXSW_REG_TNQCR_ID 0xA010
9480#define MLXSW_REG_TNQCR_LEN 0x0C
9481
9482MLXSW_REG_DEFINE(tnqcr, MLXSW_REG_TNQCR_ID, MLXSW_REG_TNQCR_LEN);
9483
9484/* reg_tnqcr_enc_set_dscp
9485 * For encapsulation: How to set DSCP field:
9486 * 0 - Copy the DSCP from the overlay (inner) IP header to the underlay
9487 * (outer) IP header. If there is no IP header, use TNQDR.dscp
9488 * 1 - Set the DSCP field as TNQDR.dscp
9489 * Access: RW
9490 */
9491MLXSW_ITEM32(reg, tnqcr, enc_set_dscp, 0x04, 28, 1);
9492
9493static inline void mlxsw_reg_tnqcr_pack(char *payload)
9494{
9495 MLXSW_REG_ZERO(tnqcr, payload);
9496 mlxsw_reg_tnqcr_enc_set_dscp_set(payload, 0);
9497}
9498
Ido Schimmel8efcf6b2018-10-11 07:48:06 +00009499/* TNQDR - Tunneling NVE QoS Default Register
9500 * ------------------------------------------
9501 * The TNQDR register configures the default QoS settings for NVE
9502 * encapsulation.
9503 */
9504#define MLXSW_REG_TNQDR_ID 0xA011
9505#define MLXSW_REG_TNQDR_LEN 0x08
9506
9507MLXSW_REG_DEFINE(tnqdr, MLXSW_REG_TNQDR_ID, MLXSW_REG_TNQDR_LEN);
9508
9509/* reg_tnqdr_local_port
9510 * Local port number (receive port). CPU port is supported.
9511 * Access: Index
9512 */
9513MLXSW_ITEM32(reg, tnqdr, local_port, 0x00, 16, 8);
9514
9515/* reg_tnqdr_dscp
9516 * For encapsulation, the default DSCP.
9517 * Access: RW
9518 */
9519MLXSW_ITEM32(reg, tnqdr, dscp, 0x04, 0, 6);
9520
9521static inline void mlxsw_reg_tnqdr_pack(char *payload, u8 local_port)
9522{
9523 MLXSW_REG_ZERO(tnqdr, payload);
9524 mlxsw_reg_tnqdr_local_port_set(payload, local_port);
9525 mlxsw_reg_tnqdr_dscp_set(payload, 0);
9526}
9527
Ido Schimmel4a8d1862018-10-11 07:48:02 +00009528/* TNEEM - Tunneling NVE Encapsulation ECN Mapping Register
9529 * --------------------------------------------------------
9530 * The TNEEM register maps ECN of the IP header at the ingress to the
9531 * encapsulation to the ECN of the underlay network.
9532 */
9533#define MLXSW_REG_TNEEM_ID 0xA012
9534#define MLXSW_REG_TNEEM_LEN 0x0C
9535
9536MLXSW_REG_DEFINE(tneem, MLXSW_REG_TNEEM_ID, MLXSW_REG_TNEEM_LEN);
9537
9538/* reg_tneem_overlay_ecn
9539 * ECN of the IP header in the overlay network.
9540 * Access: Index
9541 */
9542MLXSW_ITEM32(reg, tneem, overlay_ecn, 0x04, 24, 2);
9543
9544/* reg_tneem_underlay_ecn
9545 * ECN of the IP header in the underlay network.
9546 * Access: RW
9547 */
9548MLXSW_ITEM32(reg, tneem, underlay_ecn, 0x04, 16, 2);
9549
9550static inline void mlxsw_reg_tneem_pack(char *payload, u8 overlay_ecn,
9551 u8 underlay_ecn)
9552{
9553 MLXSW_REG_ZERO(tneem, payload);
9554 mlxsw_reg_tneem_overlay_ecn_set(payload, overlay_ecn);
9555 mlxsw_reg_tneem_underlay_ecn_set(payload, underlay_ecn);
9556}
9557
Ido Schimmela77d5f02018-10-11 07:48:03 +00009558/* TNDEM - Tunneling NVE Decapsulation ECN Mapping Register
9559 * --------------------------------------------------------
9560 * The TNDEM register configures the actions that are done in the
9561 * decapsulation.
9562 */
9563#define MLXSW_REG_TNDEM_ID 0xA013
9564#define MLXSW_REG_TNDEM_LEN 0x0C
9565
9566MLXSW_REG_DEFINE(tndem, MLXSW_REG_TNDEM_ID, MLXSW_REG_TNDEM_LEN);
9567
9568/* reg_tndem_underlay_ecn
9569 * ECN field of the IP header in the underlay network.
9570 * Access: Index
9571 */
9572MLXSW_ITEM32(reg, tndem, underlay_ecn, 0x04, 24, 2);
9573
9574/* reg_tndem_overlay_ecn
9575 * ECN field of the IP header in the overlay network.
9576 * Access: Index
9577 */
9578MLXSW_ITEM32(reg, tndem, overlay_ecn, 0x04, 16, 2);
9579
9580/* reg_tndem_eip_ecn
9581 * Egress IP ECN. ECN field of the IP header of the packet which goes out
9582 * from the decapsulation.
9583 * Access: RW
9584 */
9585MLXSW_ITEM32(reg, tndem, eip_ecn, 0x04, 8, 2);
9586
9587/* reg_tndem_trap_en
9588 * Trap enable:
9589 * 0 - No trap due to decap ECN
9590 * 1 - Trap enable with trap_id
9591 * Access: RW
9592 */
9593MLXSW_ITEM32(reg, tndem, trap_en, 0x08, 28, 4);
9594
9595/* reg_tndem_trap_id
9596 * Trap ID. Either DECAP_ECN0 or DECAP_ECN1.
9597 * Reserved when trap_en is '0'.
9598 * Access: RW
9599 */
9600MLXSW_ITEM32(reg, tndem, trap_id, 0x08, 0, 9);
9601
9602static inline void mlxsw_reg_tndem_pack(char *payload, u8 underlay_ecn,
9603 u8 overlay_ecn, u8 ecn, bool trap_en,
9604 u16 trap_id)
9605{
9606 MLXSW_REG_ZERO(tndem, payload);
9607 mlxsw_reg_tndem_underlay_ecn_set(payload, underlay_ecn);
9608 mlxsw_reg_tndem_overlay_ecn_set(payload, overlay_ecn);
9609 mlxsw_reg_tndem_eip_ecn_set(payload, ecn);
9610 mlxsw_reg_tndem_trap_en_set(payload, trap_en);
9611 mlxsw_reg_tndem_trap_id_set(payload, trap_id);
9612}
9613
Ido Schimmel50e6eb22018-10-11 07:48:00 +00009614/* TNPC - Tunnel Port Configuration Register
9615 * -----------------------------------------
9616 * The TNPC register is used for tunnel port configuration.
9617 * Reserved when Spectrum.
9618 */
9619#define MLXSW_REG_TNPC_ID 0xA020
9620#define MLXSW_REG_TNPC_LEN 0x18
9621
9622MLXSW_REG_DEFINE(tnpc, MLXSW_REG_TNPC_ID, MLXSW_REG_TNPC_LEN);
9623
9624enum mlxsw_reg_tnpc_tunnel_port {
9625 MLXSW_REG_TNPC_TUNNEL_PORT_NVE,
9626 MLXSW_REG_TNPC_TUNNEL_PORT_VPLS,
9627 MLXSW_REG_TNPC_TUNNEL_FLEX_TUNNEL0,
9628 MLXSW_REG_TNPC_TUNNEL_FLEX_TUNNEL1,
9629};
9630
9631/* reg_tnpc_tunnel_port
9632 * Tunnel port.
9633 * Access: Index
9634 */
9635MLXSW_ITEM32(reg, tnpc, tunnel_port, 0x00, 0, 4);
9636
9637/* reg_tnpc_learn_enable_v6
9638 * During IPv6 underlay decapsulation, whether to learn from tunnel port.
9639 * Access: RW
9640 */
9641MLXSW_ITEM32(reg, tnpc, learn_enable_v6, 0x04, 1, 1);
9642
9643/* reg_tnpc_learn_enable_v4
9644 * During IPv4 underlay decapsulation, whether to learn from tunnel port.
9645 * Access: RW
9646 */
9647MLXSW_ITEM32(reg, tnpc, learn_enable_v4, 0x04, 0, 1);
9648
9649static inline void mlxsw_reg_tnpc_pack(char *payload,
9650 enum mlxsw_reg_tnpc_tunnel_port tport,
9651 bool learn_enable)
9652{
9653 MLXSW_REG_ZERO(tnpc, payload);
9654 mlxsw_reg_tnpc_tunnel_port_set(payload, tport);
9655 mlxsw_reg_tnpc_learn_enable_v4_set(payload, learn_enable);
9656 mlxsw_reg_tnpc_learn_enable_v6_set(payload, learn_enable);
9657}
9658
Petr Machata14aefd92017-10-20 09:16:15 +02009659/* TIGCR - Tunneling IPinIP General Configuration Register
9660 * -------------------------------------------------------
9661 * The TIGCR register is used for setting up the IPinIP Tunnel configuration.
9662 */
9663#define MLXSW_REG_TIGCR_ID 0xA801
9664#define MLXSW_REG_TIGCR_LEN 0x10
9665
9666MLXSW_REG_DEFINE(tigcr, MLXSW_REG_TIGCR_ID, MLXSW_REG_TIGCR_LEN);
9667
9668/* reg_tigcr_ipip_ttlc
9669 * For IPinIP Tunnel encapsulation: whether to copy the ttl from the packet
9670 * header.
9671 * Access: RW
9672 */
9673MLXSW_ITEM32(reg, tigcr, ttlc, 0x04, 8, 1);
9674
9675/* reg_tigcr_ipip_ttl_uc
9676 * The TTL for IPinIP Tunnel encapsulation of unicast packets if
9677 * reg_tigcr_ipip_ttlc is unset.
9678 * Access: RW
9679 */
9680MLXSW_ITEM32(reg, tigcr, ttl_uc, 0x04, 0, 8);
9681
9682static inline void mlxsw_reg_tigcr_pack(char *payload, bool ttlc, u8 ttl_uc)
9683{
9684 MLXSW_REG_ZERO(tigcr, payload);
9685 mlxsw_reg_tigcr_ttlc_set(payload, ttlc);
9686 mlxsw_reg_tigcr_ttl_uc_set(payload, ttl_uc);
9687}
9688
Jiri Pirkoe0594362015-10-16 14:01:31 +02009689/* SBPR - Shared Buffer Pools Register
9690 * -----------------------------------
9691 * The SBPR configures and retrieves the shared buffer pools and configuration.
9692 */
9693#define MLXSW_REG_SBPR_ID 0xB001
9694#define MLXSW_REG_SBPR_LEN 0x14
9695
Jiri Pirko21978dc2016-10-21 16:07:20 +02009696MLXSW_REG_DEFINE(sbpr, MLXSW_REG_SBPR_ID, MLXSW_REG_SBPR_LEN);
Jiri Pirkoe0594362015-10-16 14:01:31 +02009697
Jiri Pirko497e8592016-04-08 19:11:24 +02009698/* shared direstion enum for SBPR, SBCM, SBPM */
9699enum mlxsw_reg_sbxx_dir {
9700 MLXSW_REG_SBXX_DIR_INGRESS,
9701 MLXSW_REG_SBXX_DIR_EGRESS,
Jiri Pirkoe0594362015-10-16 14:01:31 +02009702};
9703
9704/* reg_sbpr_dir
9705 * Direction.
9706 * Access: Index
9707 */
9708MLXSW_ITEM32(reg, sbpr, dir, 0x00, 24, 2);
9709
9710/* reg_sbpr_pool
9711 * Pool index.
9712 * Access: Index
9713 */
9714MLXSW_ITEM32(reg, sbpr, pool, 0x00, 0, 4);
9715
Petr Machataf0024f02018-09-20 09:21:28 +03009716/* reg_sbpr_infi_size
9717 * Size is infinite.
9718 * Access: RW
9719 */
9720MLXSW_ITEM32(reg, sbpr, infi_size, 0x04, 31, 1);
9721
Jiri Pirkoe0594362015-10-16 14:01:31 +02009722/* reg_sbpr_size
9723 * Pool size in buffer cells.
Petr Machataf0024f02018-09-20 09:21:28 +03009724 * Reserved when infi_size = 1.
Jiri Pirkoe0594362015-10-16 14:01:31 +02009725 * Access: RW
9726 */
9727MLXSW_ITEM32(reg, sbpr, size, 0x04, 0, 24);
9728
9729enum mlxsw_reg_sbpr_mode {
9730 MLXSW_REG_SBPR_MODE_STATIC,
9731 MLXSW_REG_SBPR_MODE_DYNAMIC,
9732};
9733
9734/* reg_sbpr_mode
9735 * Pool quota calculation mode.
9736 * Access: RW
9737 */
9738MLXSW_ITEM32(reg, sbpr, mode, 0x08, 0, 4);
9739
9740static inline void mlxsw_reg_sbpr_pack(char *payload, u8 pool,
Jiri Pirko497e8592016-04-08 19:11:24 +02009741 enum mlxsw_reg_sbxx_dir dir,
Petr Machataf0024f02018-09-20 09:21:28 +03009742 enum mlxsw_reg_sbpr_mode mode, u32 size,
9743 bool infi_size)
Jiri Pirkoe0594362015-10-16 14:01:31 +02009744{
9745 MLXSW_REG_ZERO(sbpr, payload);
9746 mlxsw_reg_sbpr_pool_set(payload, pool);
9747 mlxsw_reg_sbpr_dir_set(payload, dir);
9748 mlxsw_reg_sbpr_mode_set(payload, mode);
9749 mlxsw_reg_sbpr_size_set(payload, size);
Petr Machataf0024f02018-09-20 09:21:28 +03009750 mlxsw_reg_sbpr_infi_size_set(payload, infi_size);
Jiri Pirkoe0594362015-10-16 14:01:31 +02009751}
9752
9753/* SBCM - Shared Buffer Class Management Register
9754 * ----------------------------------------------
9755 * The SBCM register configures and retrieves the shared buffer allocation
9756 * and configuration according to Port-PG, including the binding to pool
9757 * and definition of the associated quota.
9758 */
9759#define MLXSW_REG_SBCM_ID 0xB002
9760#define MLXSW_REG_SBCM_LEN 0x28
9761
Jiri Pirko21978dc2016-10-21 16:07:20 +02009762MLXSW_REG_DEFINE(sbcm, MLXSW_REG_SBCM_ID, MLXSW_REG_SBCM_LEN);
Jiri Pirkoe0594362015-10-16 14:01:31 +02009763
9764/* reg_sbcm_local_port
9765 * Local port number.
9766 * For Ingress: excludes CPU port and Router port
9767 * For Egress: excludes IP Router
9768 * Access: Index
9769 */
9770MLXSW_ITEM32(reg, sbcm, local_port, 0x00, 16, 8);
9771
9772/* reg_sbcm_pg_buff
9773 * PG buffer - Port PG (dir=ingress) / traffic class (dir=egress)
9774 * For PG buffer: range is 0..cap_max_pg_buffers - 1
9775 * For traffic class: range is 0..cap_max_tclass - 1
9776 * Note that when traffic class is in MC aware mode then the traffic
9777 * classes which are MC aware cannot be configured.
9778 * Access: Index
9779 */
9780MLXSW_ITEM32(reg, sbcm, pg_buff, 0x00, 8, 6);
9781
Jiri Pirkoe0594362015-10-16 14:01:31 +02009782/* reg_sbcm_dir
9783 * Direction.
9784 * Access: Index
9785 */
9786MLXSW_ITEM32(reg, sbcm, dir, 0x00, 0, 2);
9787
9788/* reg_sbcm_min_buff
9789 * Minimum buffer size for the limiter, in cells.
9790 * Access: RW
9791 */
9792MLXSW_ITEM32(reg, sbcm, min_buff, 0x18, 0, 24);
9793
Jiri Pirkoc30a53c2016-04-14 18:19:22 +02009794/* shared max_buff limits for dynamic threshold for SBCM, SBPM */
9795#define MLXSW_REG_SBXX_DYN_MAX_BUFF_MIN 1
9796#define MLXSW_REG_SBXX_DYN_MAX_BUFF_MAX 14
9797
Petr Machatad144e3a2018-09-20 09:21:29 +03009798/* reg_sbcm_infi_max
9799 * Max buffer is infinite.
9800 * Access: RW
9801 */
9802MLXSW_ITEM32(reg, sbcm, infi_max, 0x1C, 31, 1);
9803
Jiri Pirkoe0594362015-10-16 14:01:31 +02009804/* reg_sbcm_max_buff
9805 * When the pool associated to the port-pg/tclass is configured to
9806 * static, Maximum buffer size for the limiter configured in cells.
9807 * When the pool associated to the port-pg/tclass is configured to
9808 * dynamic, the max_buff holds the "alpha" parameter, supporting
9809 * the following values:
9810 * 0: 0
9811 * i: (1/128)*2^(i-1), for i=1..14
9812 * 0xFF: Infinity
Petr Machatad144e3a2018-09-20 09:21:29 +03009813 * Reserved when infi_max = 1.
Jiri Pirkoe0594362015-10-16 14:01:31 +02009814 * Access: RW
9815 */
9816MLXSW_ITEM32(reg, sbcm, max_buff, 0x1C, 0, 24);
9817
9818/* reg_sbcm_pool
9819 * Association of the port-priority to a pool.
9820 * Access: RW
9821 */
9822MLXSW_ITEM32(reg, sbcm, pool, 0x24, 0, 4);
9823
9824static inline void mlxsw_reg_sbcm_pack(char *payload, u8 local_port, u8 pg_buff,
Jiri Pirko497e8592016-04-08 19:11:24 +02009825 enum mlxsw_reg_sbxx_dir dir,
Petr Machatad144e3a2018-09-20 09:21:29 +03009826 u32 min_buff, u32 max_buff,
9827 bool infi_max, u8 pool)
Jiri Pirkoe0594362015-10-16 14:01:31 +02009828{
9829 MLXSW_REG_ZERO(sbcm, payload);
9830 mlxsw_reg_sbcm_local_port_set(payload, local_port);
9831 mlxsw_reg_sbcm_pg_buff_set(payload, pg_buff);
9832 mlxsw_reg_sbcm_dir_set(payload, dir);
9833 mlxsw_reg_sbcm_min_buff_set(payload, min_buff);
9834 mlxsw_reg_sbcm_max_buff_set(payload, max_buff);
Petr Machatad144e3a2018-09-20 09:21:29 +03009835 mlxsw_reg_sbcm_infi_max_set(payload, infi_max);
Jiri Pirkoe0594362015-10-16 14:01:31 +02009836 mlxsw_reg_sbcm_pool_set(payload, pool);
9837}
9838
Jiri Pirko9efc8f62016-04-08 19:11:25 +02009839/* SBPM - Shared Buffer Port Management Register
9840 * ---------------------------------------------
Jiri Pirkoe0594362015-10-16 14:01:31 +02009841 * The SBPM register configures and retrieves the shared buffer allocation
9842 * and configuration according to Port-Pool, including the definition
9843 * of the associated quota.
9844 */
9845#define MLXSW_REG_SBPM_ID 0xB003
9846#define MLXSW_REG_SBPM_LEN 0x28
9847
Jiri Pirko21978dc2016-10-21 16:07:20 +02009848MLXSW_REG_DEFINE(sbpm, MLXSW_REG_SBPM_ID, MLXSW_REG_SBPM_LEN);
Jiri Pirkoe0594362015-10-16 14:01:31 +02009849
9850/* reg_sbpm_local_port
9851 * Local port number.
9852 * For Ingress: excludes CPU port and Router port
9853 * For Egress: excludes IP Router
9854 * Access: Index
9855 */
9856MLXSW_ITEM32(reg, sbpm, local_port, 0x00, 16, 8);
9857
9858/* reg_sbpm_pool
9859 * The pool associated to quota counting on the local_port.
9860 * Access: Index
9861 */
9862MLXSW_ITEM32(reg, sbpm, pool, 0x00, 8, 4);
9863
Jiri Pirkoe0594362015-10-16 14:01:31 +02009864/* reg_sbpm_dir
9865 * Direction.
9866 * Access: Index
9867 */
9868MLXSW_ITEM32(reg, sbpm, dir, 0x00, 0, 2);
9869
Jiri Pirko42a7f1d2016-04-14 18:19:27 +02009870/* reg_sbpm_buff_occupancy
9871 * Current buffer occupancy in cells.
9872 * Access: RO
9873 */
9874MLXSW_ITEM32(reg, sbpm, buff_occupancy, 0x10, 0, 24);
9875
9876/* reg_sbpm_clr
9877 * Clear Max Buffer Occupancy
9878 * When this bit is set, max_buff_occupancy field is cleared (and a
9879 * new max value is tracked from the time the clear was performed).
9880 * Access: OP
9881 */
9882MLXSW_ITEM32(reg, sbpm, clr, 0x14, 31, 1);
9883
9884/* reg_sbpm_max_buff_occupancy
9885 * Maximum value of buffer occupancy in cells monitored. Cleared by
9886 * writing to the clr field.
9887 * Access: RO
9888 */
9889MLXSW_ITEM32(reg, sbpm, max_buff_occupancy, 0x14, 0, 24);
9890
Jiri Pirkoe0594362015-10-16 14:01:31 +02009891/* reg_sbpm_min_buff
9892 * Minimum buffer size for the limiter, in cells.
9893 * Access: RW
9894 */
9895MLXSW_ITEM32(reg, sbpm, min_buff, 0x18, 0, 24);
9896
9897/* reg_sbpm_max_buff
9898 * When the pool associated to the port-pg/tclass is configured to
9899 * static, Maximum buffer size for the limiter configured in cells.
9900 * When the pool associated to the port-pg/tclass is configured to
9901 * dynamic, the max_buff holds the "alpha" parameter, supporting
9902 * the following values:
9903 * 0: 0
9904 * i: (1/128)*2^(i-1), for i=1..14
9905 * 0xFF: Infinity
9906 * Access: RW
9907 */
9908MLXSW_ITEM32(reg, sbpm, max_buff, 0x1C, 0, 24);
9909
9910static inline void mlxsw_reg_sbpm_pack(char *payload, u8 local_port, u8 pool,
Jiri Pirko42a7f1d2016-04-14 18:19:27 +02009911 enum mlxsw_reg_sbxx_dir dir, bool clr,
Jiri Pirkoe0594362015-10-16 14:01:31 +02009912 u32 min_buff, u32 max_buff)
9913{
9914 MLXSW_REG_ZERO(sbpm, payload);
9915 mlxsw_reg_sbpm_local_port_set(payload, local_port);
9916 mlxsw_reg_sbpm_pool_set(payload, pool);
9917 mlxsw_reg_sbpm_dir_set(payload, dir);
Jiri Pirko42a7f1d2016-04-14 18:19:27 +02009918 mlxsw_reg_sbpm_clr_set(payload, clr);
Jiri Pirkoe0594362015-10-16 14:01:31 +02009919 mlxsw_reg_sbpm_min_buff_set(payload, min_buff);
9920 mlxsw_reg_sbpm_max_buff_set(payload, max_buff);
9921}
9922
Jiri Pirko42a7f1d2016-04-14 18:19:27 +02009923static inline void mlxsw_reg_sbpm_unpack(char *payload, u32 *p_buff_occupancy,
9924 u32 *p_max_buff_occupancy)
9925{
9926 *p_buff_occupancy = mlxsw_reg_sbpm_buff_occupancy_get(payload);
9927 *p_max_buff_occupancy = mlxsw_reg_sbpm_max_buff_occupancy_get(payload);
9928}
9929
Jiri Pirkoe0594362015-10-16 14:01:31 +02009930/* SBMM - Shared Buffer Multicast Management Register
9931 * --------------------------------------------------
9932 * The SBMM register configures and retrieves the shared buffer allocation
9933 * and configuration for MC packets according to Switch-Priority, including
9934 * the binding to pool and definition of the associated quota.
9935 */
9936#define MLXSW_REG_SBMM_ID 0xB004
9937#define MLXSW_REG_SBMM_LEN 0x28
9938
Jiri Pirko21978dc2016-10-21 16:07:20 +02009939MLXSW_REG_DEFINE(sbmm, MLXSW_REG_SBMM_ID, MLXSW_REG_SBMM_LEN);
Jiri Pirkoe0594362015-10-16 14:01:31 +02009940
9941/* reg_sbmm_prio
9942 * Switch Priority.
9943 * Access: Index
9944 */
9945MLXSW_ITEM32(reg, sbmm, prio, 0x00, 8, 4);
9946
9947/* reg_sbmm_min_buff
9948 * Minimum buffer size for the limiter, in cells.
9949 * Access: RW
9950 */
9951MLXSW_ITEM32(reg, sbmm, min_buff, 0x18, 0, 24);
9952
9953/* reg_sbmm_max_buff
9954 * When the pool associated to the port-pg/tclass is configured to
9955 * static, Maximum buffer size for the limiter configured in cells.
9956 * When the pool associated to the port-pg/tclass is configured to
9957 * dynamic, the max_buff holds the "alpha" parameter, supporting
9958 * the following values:
9959 * 0: 0
9960 * i: (1/128)*2^(i-1), for i=1..14
9961 * 0xFF: Infinity
9962 * Access: RW
9963 */
9964MLXSW_ITEM32(reg, sbmm, max_buff, 0x1C, 0, 24);
9965
9966/* reg_sbmm_pool
9967 * Association of the port-priority to a pool.
9968 * Access: RW
9969 */
9970MLXSW_ITEM32(reg, sbmm, pool, 0x24, 0, 4);
9971
9972static inline void mlxsw_reg_sbmm_pack(char *payload, u8 prio, u32 min_buff,
9973 u32 max_buff, u8 pool)
9974{
9975 MLXSW_REG_ZERO(sbmm, payload);
9976 mlxsw_reg_sbmm_prio_set(payload, prio);
9977 mlxsw_reg_sbmm_min_buff_set(payload, min_buff);
9978 mlxsw_reg_sbmm_max_buff_set(payload, max_buff);
9979 mlxsw_reg_sbmm_pool_set(payload, pool);
9980}
9981
Jiri Pirko26176de2016-04-14 18:19:26 +02009982/* SBSR - Shared Buffer Status Register
9983 * ------------------------------------
9984 * The SBSR register retrieves the shared buffer occupancy according to
9985 * Port-Pool. Note that this register enables reading a large amount of data.
9986 * It is the user's responsibility to limit the amount of data to ensure the
9987 * response can match the maximum transfer unit. In case the response exceeds
9988 * the maximum transport unit, it will be truncated with no special notice.
9989 */
9990#define MLXSW_REG_SBSR_ID 0xB005
9991#define MLXSW_REG_SBSR_BASE_LEN 0x5C /* base length, without records */
9992#define MLXSW_REG_SBSR_REC_LEN 0x8 /* record length */
9993#define MLXSW_REG_SBSR_REC_MAX_COUNT 120
9994#define MLXSW_REG_SBSR_LEN (MLXSW_REG_SBSR_BASE_LEN + \
9995 MLXSW_REG_SBSR_REC_LEN * \
9996 MLXSW_REG_SBSR_REC_MAX_COUNT)
9997
Jiri Pirko21978dc2016-10-21 16:07:20 +02009998MLXSW_REG_DEFINE(sbsr, MLXSW_REG_SBSR_ID, MLXSW_REG_SBSR_LEN);
Jiri Pirko26176de2016-04-14 18:19:26 +02009999
10000/* reg_sbsr_clr
10001 * Clear Max Buffer Occupancy. When this bit is set, the max_buff_occupancy
10002 * field is cleared (and a new max value is tracked from the time the clear
10003 * was performed).
10004 * Access: OP
10005 */
10006MLXSW_ITEM32(reg, sbsr, clr, 0x00, 31, 1);
10007
10008/* reg_sbsr_ingress_port_mask
10009 * Bit vector for all ingress network ports.
10010 * Indicates which of the ports (for which the relevant bit is set)
10011 * are affected by the set operation. Configuration of any other port
10012 * does not change.
10013 * Access: Index
10014 */
10015MLXSW_ITEM_BIT_ARRAY(reg, sbsr, ingress_port_mask, 0x10, 0x20, 1);
10016
10017/* reg_sbsr_pg_buff_mask
10018 * Bit vector for all switch priority groups.
10019 * Indicates which of the priorities (for which the relevant bit is set)
10020 * are affected by the set operation. Configuration of any other priority
10021 * does not change.
10022 * Range is 0..cap_max_pg_buffers - 1
10023 * Access: Index
10024 */
10025MLXSW_ITEM_BIT_ARRAY(reg, sbsr, pg_buff_mask, 0x30, 0x4, 1);
10026
10027/* reg_sbsr_egress_port_mask
10028 * Bit vector for all egress network ports.
10029 * Indicates which of the ports (for which the relevant bit is set)
10030 * are affected by the set operation. Configuration of any other port
10031 * does not change.
10032 * Access: Index
10033 */
10034MLXSW_ITEM_BIT_ARRAY(reg, sbsr, egress_port_mask, 0x34, 0x20, 1);
10035
10036/* reg_sbsr_tclass_mask
10037 * Bit vector for all traffic classes.
10038 * Indicates which of the traffic classes (for which the relevant bit is
10039 * set) are affected by the set operation. Configuration of any other
10040 * traffic class does not change.
10041 * Range is 0..cap_max_tclass - 1
10042 * Access: Index
10043 */
10044MLXSW_ITEM_BIT_ARRAY(reg, sbsr, tclass_mask, 0x54, 0x8, 1);
10045
10046static inline void mlxsw_reg_sbsr_pack(char *payload, bool clr)
10047{
10048 MLXSW_REG_ZERO(sbsr, payload);
10049 mlxsw_reg_sbsr_clr_set(payload, clr);
10050}
10051
10052/* reg_sbsr_rec_buff_occupancy
10053 * Current buffer occupancy in cells.
10054 * Access: RO
10055 */
10056MLXSW_ITEM32_INDEXED(reg, sbsr, rec_buff_occupancy, MLXSW_REG_SBSR_BASE_LEN,
10057 0, 24, MLXSW_REG_SBSR_REC_LEN, 0x00, false);
10058
10059/* reg_sbsr_rec_max_buff_occupancy
10060 * Maximum value of buffer occupancy in cells monitored. Cleared by
10061 * writing to the clr field.
10062 * Access: RO
10063 */
10064MLXSW_ITEM32_INDEXED(reg, sbsr, rec_max_buff_occupancy, MLXSW_REG_SBSR_BASE_LEN,
10065 0, 24, MLXSW_REG_SBSR_REC_LEN, 0x04, false);
10066
10067static inline void mlxsw_reg_sbsr_rec_unpack(char *payload, int rec_index,
10068 u32 *p_buff_occupancy,
10069 u32 *p_max_buff_occupancy)
10070{
10071 *p_buff_occupancy =
10072 mlxsw_reg_sbsr_rec_buff_occupancy_get(payload, rec_index);
10073 *p_max_buff_occupancy =
10074 mlxsw_reg_sbsr_rec_max_buff_occupancy_get(payload, rec_index);
10075}
10076
Yotam Gigi51ae8cc2016-07-21 12:03:13 +020010077/* SBIB - Shared Buffer Internal Buffer Register
10078 * ---------------------------------------------
10079 * The SBIB register configures per port buffers for internal use. The internal
10080 * buffers consume memory on the port buffers (note that the port buffers are
10081 * used also by PBMC).
10082 *
10083 * For Spectrum this is used for egress mirroring.
10084 */
10085#define MLXSW_REG_SBIB_ID 0xB006
10086#define MLXSW_REG_SBIB_LEN 0x10
10087
Jiri Pirko21978dc2016-10-21 16:07:20 +020010088MLXSW_REG_DEFINE(sbib, MLXSW_REG_SBIB_ID, MLXSW_REG_SBIB_LEN);
Yotam Gigi51ae8cc2016-07-21 12:03:13 +020010089
10090/* reg_sbib_local_port
10091 * Local port number
10092 * Not supported for CPU port and router port
10093 * Access: Index
10094 */
10095MLXSW_ITEM32(reg, sbib, local_port, 0x00, 16, 8);
10096
10097/* reg_sbib_buff_size
10098 * Units represented in cells
10099 * Allowed range is 0 to (cap_max_headroom_size - 1)
10100 * Default is 0
10101 * Access: RW
10102 */
10103MLXSW_ITEM32(reg, sbib, buff_size, 0x08, 0, 24);
10104
10105static inline void mlxsw_reg_sbib_pack(char *payload, u8 local_port,
10106 u32 buff_size)
10107{
10108 MLXSW_REG_ZERO(sbib, payload);
10109 mlxsw_reg_sbib_local_port_set(payload, local_port);
10110 mlxsw_reg_sbib_buff_size_set(payload, buff_size);
10111}
10112
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010113static const struct mlxsw_reg_info *mlxsw_reg_infos[] = {
10114 MLXSW_REG(sgcr),
10115 MLXSW_REG(spad),
10116 MLXSW_REG(smid),
10117 MLXSW_REG(sspr),
10118 MLXSW_REG(sfdat),
10119 MLXSW_REG(sfd),
10120 MLXSW_REG(sfn),
10121 MLXSW_REG(spms),
10122 MLXSW_REG(spvid),
10123 MLXSW_REG(spvm),
10124 MLXSW_REG(spaft),
10125 MLXSW_REG(sfgc),
10126 MLXSW_REG(sftr),
10127 MLXSW_REG(sfdf),
10128 MLXSW_REG(sldr),
10129 MLXSW_REG(slcr),
10130 MLXSW_REG(slcor),
10131 MLXSW_REG(spmlr),
10132 MLXSW_REG(svfa),
10133 MLXSW_REG(svpe),
10134 MLXSW_REG(sfmr),
10135 MLXSW_REG(spvmlr),
Nogah Frankelad53fa02017-11-06 07:23:44 +010010136 MLXSW_REG(cwtp),
10137 MLXSW_REG(cwtpm),
Ido Schimmel7050f432018-07-18 11:14:40 +030010138 MLXSW_REG(pgcr),
Jiri Pirkoaf7170e2017-02-03 10:28:57 +010010139 MLXSW_REG(ppbt),
Jiri Pirko3279da42017-02-03 10:28:53 +010010140 MLXSW_REG(pacl),
Jiri Pirko10fabef2017-02-03 10:28:54 +010010141 MLXSW_REG(pagt),
Jiri Pirkod9c26612017-02-03 10:28:55 +010010142 MLXSW_REG(ptar),
Jiri Pirkod1206492017-02-03 10:28:59 +010010143 MLXSW_REG(ppbs),
Jiri Pirko937b6822017-02-03 10:28:58 +010010144 MLXSW_REG(prcr),
Jiri Pirkoe3426e12017-02-03 10:29:00 +010010145 MLXSW_REG(pefa),
Nir Dotana75e41d2018-12-10 07:11:33 +000010146 MLXSW_REG(pemrbt),
Jiri Pirko0171cdec2017-02-03 10:28:56 +010010147 MLXSW_REG(ptce2),
Ido Schimmel8c0d1cd2018-07-25 09:23:52 +030010148 MLXSW_REG(perpt),
Nir Dotan418089a2018-12-16 08:49:24 +000010149 MLXSW_REG(peabfe),
Jiri Pirko33907872018-07-18 11:14:37 +030010150 MLXSW_REG(perar),
Ido Schimmelaecefac2018-07-25 09:23:51 +030010151 MLXSW_REG(ptce3),
Ido Schimmel481662a2018-07-18 11:14:38 +030010152 MLXSW_REG(percr),
Ido Schimmelf1c7d9c2018-07-18 11:14:39 +030010153 MLXSW_REG(pererp),
Jiri Pirkoc33d0cb2018-07-18 11:14:30 +030010154 MLXSW_REG(iedr),
Petr Machata746da422018-07-27 15:26:58 +030010155 MLXSW_REG(qpts),
Nogah Frankel76a4c7d2016-11-25 10:33:46 +010010156 MLXSW_REG(qpcr),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010157 MLXSW_REG(qtct),
10158 MLXSW_REG(qeec),
Petr Machatae67131d2018-07-27 15:26:59 +030010159 MLXSW_REG(qrwe),
Petr Machata55fb71f2018-07-27 15:27:00 +030010160 MLXSW_REG(qpdsm),
Petr Machata02837d72018-07-27 15:26:57 +030010161 MLXSW_REG(qpdpm),
Petr Machata671ae8a2018-08-05 09:03:06 +030010162 MLXSW_REG(qtctm),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010163 MLXSW_REG(pmlp),
10164 MLXSW_REG(pmtu),
10165 MLXSW_REG(ptys),
10166 MLXSW_REG(ppad),
10167 MLXSW_REG(paos),
10168 MLXSW_REG(pfcc),
10169 MLXSW_REG(ppcnt),
Elad Raz71367932016-10-28 21:35:54 +020010170 MLXSW_REG(plib),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010171 MLXSW_REG(pptb),
10172 MLXSW_REG(pbmc),
10173 MLXSW_REG(pspa),
Jiri Pirkoa0c25382019-05-05 09:48:05 +030010174 MLXSW_REG(pplr),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010175 MLXSW_REG(htgt),
10176 MLXSW_REG(hpkt),
10177 MLXSW_REG(rgcr),
10178 MLXSW_REG(ritr),
Yotam Gigi46a70542017-09-19 10:00:13 +020010179 MLXSW_REG(rtar),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010180 MLXSW_REG(ratr),
Petr Machata1e659eb2017-09-02 23:49:13 +020010181 MLXSW_REG(rtdp),
Yuval Mintzddb362c2018-01-14 12:33:13 +010010182 MLXSW_REG(rdpm),
Arkadi Sharshevskyba73e972017-03-28 17:24:14 +020010183 MLXSW_REG(ricnt),
Yotam Gigi4fc92842017-09-19 10:00:17 +020010184 MLXSW_REG(rrcr),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010185 MLXSW_REG(ralta),
10186 MLXSW_REG(ralst),
10187 MLXSW_REG(raltb),
10188 MLXSW_REG(ralue),
10189 MLXSW_REG(rauht),
10190 MLXSW_REG(raleu),
10191 MLXSW_REG(rauhtd),
Yotam Gigi5080c7e2017-09-19 10:00:14 +020010192 MLXSW_REG(rigr2),
Ido Schimmele4718592017-11-02 17:14:08 +010010193 MLXSW_REG(recr2),
Yotam Gigi2e654e32017-09-19 10:00:16 +020010194 MLXSW_REG(rmft2),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010195 MLXSW_REG(mfcr),
10196 MLXSW_REG(mfsc),
10197 MLXSW_REG(mfsm),
Jiri Pirko55c63aa2016-11-22 11:24:12 +010010198 MLXSW_REG(mfsl),
Vadim Pasternak3760c2b2019-02-13 11:28:46 +000010199 MLXSW_REG(fore),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010200 MLXSW_REG(mtcap),
10201 MLXSW_REG(mtmp),
Vadim Pasternak5f28ef72019-02-13 11:28:45 +000010202 MLXSW_REG(mtbr),
Arkadi Sharshevsky7ca36992017-06-14 09:27:39 +020010203 MLXSW_REG(mcia),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010204 MLXSW_REG(mpat),
10205 MLXSW_REG(mpar),
Shalom Toledo8d77d4b2019-04-08 06:59:34 +000010206 MLXSW_REG(mgir),
Jiri Pirko12b003b2018-05-27 09:56:13 +030010207 MLXSW_REG(mrsr),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010208 MLXSW_REG(mlcr),
Shalom Toledo10786452019-06-11 18:45:08 +030010209 MLXSW_REG(mtpps),
Shalom Toledo55a8b002019-06-11 18:45:07 +030010210 MLXSW_REG(mtutc),
Yotam Gigi0677d682017-01-23 11:07:10 +010010211 MLXSW_REG(mpsc),
Yotam Gigi4f2402d2017-05-23 21:56:24 +020010212 MLXSW_REG(mcqi),
Yotam Gigi191839d2017-05-23 21:56:25 +020010213 MLXSW_REG(mcc),
Yotam Gigi4625d592017-05-23 21:56:26 +020010214 MLXSW_REG(mcda),
Arkadi Sharshevsky57665322017-03-11 09:42:52 +010010215 MLXSW_REG(mgpc),
Ido Schimmel27f68c02018-10-11 07:48:08 +000010216 MLXSW_REG(mprs),
Vadim Pasternak7e9561e2019-05-29 11:47:19 +030010217 MLXSW_REG(mgpir),
Ido Schimmel710dd1a2018-10-11 07:47:59 +000010218 MLXSW_REG(tngcr),
Ido Schimmelc723d192018-10-11 07:48:01 +000010219 MLXSW_REG(tnumt),
Ido Schimmelfd6db272018-10-11 07:48:04 +000010220 MLXSW_REG(tnqcr),
Ido Schimmel8efcf6b2018-10-11 07:48:06 +000010221 MLXSW_REG(tnqdr),
Ido Schimmel4a8d1862018-10-11 07:48:02 +000010222 MLXSW_REG(tneem),
Ido Schimmela77d5f02018-10-11 07:48:03 +000010223 MLXSW_REG(tndem),
Ido Schimmel50e6eb22018-10-11 07:48:00 +000010224 MLXSW_REG(tnpc),
Petr Machata14aefd92017-10-20 09:16:15 +020010225 MLXSW_REG(tigcr),
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010226 MLXSW_REG(sbpr),
10227 MLXSW_REG(sbcm),
10228 MLXSW_REG(sbpm),
10229 MLXSW_REG(sbmm),
10230 MLXSW_REG(sbsr),
10231 MLXSW_REG(sbib),
10232};
10233
Ido Schimmel4ec14b72015-07-29 23:33:48 +020010234static inline const char *mlxsw_reg_id_str(u16 reg_id)
10235{
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010236 const struct mlxsw_reg_info *reg_info;
10237 int i;
10238
10239 for (i = 0; i < ARRAY_SIZE(mlxsw_reg_infos); i++) {
10240 reg_info = mlxsw_reg_infos[i];
10241 if (reg_info->id == reg_id)
10242 return reg_info->name;
Ido Schimmel4ec14b72015-07-29 23:33:48 +020010243 }
Jiri Pirko8e9658d2016-10-21 16:07:21 +020010244 return "*UNKNOWN*";
Ido Schimmel4ec14b72015-07-29 23:33:48 +020010245}
10246
10247/* PUDE - Port Up / Down Event
10248 * ---------------------------
10249 * Reports the operational state change of a port.
10250 */
10251#define MLXSW_REG_PUDE_LEN 0x10
10252
10253/* reg_pude_swid
10254 * Switch partition ID with which to associate the port.
10255 * Access: Index
10256 */
10257MLXSW_ITEM32(reg, pude, swid, 0x00, 24, 8);
10258
10259/* reg_pude_local_port
10260 * Local port number.
10261 * Access: Index
10262 */
10263MLXSW_ITEM32(reg, pude, local_port, 0x00, 16, 8);
10264
10265/* reg_pude_admin_status
10266 * Port administrative state (the desired state).
10267 * 1 - Up.
10268 * 2 - Down.
10269 * 3 - Up once. This means that in case of link failure, the port won't go
10270 * into polling mode, but will wait to be re-enabled by software.
10271 * 4 - Disabled by system. Can only be set by hardware.
10272 * Access: RO
10273 */
10274MLXSW_ITEM32(reg, pude, admin_status, 0x00, 8, 4);
10275
10276/* reg_pude_oper_status
10277 * Port operatioanl state.
10278 * 1 - Up.
10279 * 2 - Down.
10280 * 3 - Down by port failure. This means that the device will not let the
10281 * port up again until explicitly specified by software.
10282 * Access: RO
10283 */
10284MLXSW_ITEM32(reg, pude, oper_status, 0x00, 0, 4);
10285
10286#endif