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