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_TC = 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 Group 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 static inline void mlxsw_reg_ppcnt_pack(char *payload, u8 local_port,
5402 					enum mlxsw_reg_ppcnt_grp grp,
5403 					u8 prio_tc)
5404 {
5405 	MLXSW_REG_ZERO(ppcnt, payload);
5406 	mlxsw_reg_ppcnt_swid_set(payload, 0);
5407 	mlxsw_reg_ppcnt_local_port_set(payload, local_port);
5408 	mlxsw_reg_ppcnt_pnat_set(payload, 0);
5409 	mlxsw_reg_ppcnt_grp_set(payload, grp);
5410 	mlxsw_reg_ppcnt_clr_set(payload, 0);
5411 	mlxsw_reg_ppcnt_prio_tc_set(payload, prio_tc);
5412 }
5413 
5414 /* PLIB - Port Local to InfiniBand Port
5415  * ------------------------------------
5416  * The PLIB register performs mapping from Local Port into InfiniBand Port.
5417  */
5418 #define MLXSW_REG_PLIB_ID 0x500A
5419 #define MLXSW_REG_PLIB_LEN 0x10
5420 
5421 MLXSW_REG_DEFINE(plib, MLXSW_REG_PLIB_ID, MLXSW_REG_PLIB_LEN);
5422 
5423 /* reg_plib_local_port
5424  * Local port number.
5425  * Access: Index
5426  */
5427 MLXSW_ITEM32(reg, plib, local_port, 0x00, 16, 8);
5428 
5429 /* reg_plib_ib_port
5430  * InfiniBand port remapping for local_port.
5431  * Access: RW
5432  */
5433 MLXSW_ITEM32(reg, plib, ib_port, 0x00, 0, 8);
5434 
5435 /* PPTB - Port Prio To Buffer Register
5436  * -----------------------------------
5437  * Configures the switch priority to buffer table.
5438  */
5439 #define MLXSW_REG_PPTB_ID 0x500B
5440 #define MLXSW_REG_PPTB_LEN 0x10
5441 
5442 MLXSW_REG_DEFINE(pptb, MLXSW_REG_PPTB_ID, MLXSW_REG_PPTB_LEN);
5443 
5444 enum {
5445 	MLXSW_REG_PPTB_MM_UM,
5446 	MLXSW_REG_PPTB_MM_UNICAST,
5447 	MLXSW_REG_PPTB_MM_MULTICAST,
5448 };
5449 
5450 /* reg_pptb_mm
5451  * Mapping mode.
5452  * 0 - Map both unicast and multicast packets to the same buffer.
5453  * 1 - Map only unicast packets.
5454  * 2 - Map only multicast packets.
5455  * Access: Index
5456  *
5457  * Note: SwitchX-2 only supports the first option.
5458  */
5459 MLXSW_ITEM32(reg, pptb, mm, 0x00, 28, 2);
5460 
5461 /* reg_pptb_local_port
5462  * Local port number.
5463  * Access: Index
5464  */
5465 MLXSW_ITEM32(reg, pptb, local_port, 0x00, 16, 8);
5466 
5467 /* reg_pptb_um
5468  * Enables the update of the untagged_buf field.
5469  * Access: RW
5470  */
5471 MLXSW_ITEM32(reg, pptb, um, 0x00, 8, 1);
5472 
5473 /* reg_pptb_pm
5474  * Enables the update of the prio_to_buff field.
5475  * Bit <i> is a flag for updating the mapping for switch priority <i>.
5476  * Access: RW
5477  */
5478 MLXSW_ITEM32(reg, pptb, pm, 0x00, 0, 8);
5479 
5480 /* reg_pptb_prio_to_buff
5481  * Mapping of switch priority <i> to one of the allocated receive port
5482  * buffers.
5483  * Access: RW
5484  */
5485 MLXSW_ITEM_BIT_ARRAY(reg, pptb, prio_to_buff, 0x04, 0x04, 4);
5486 
5487 /* reg_pptb_pm_msb
5488  * Enables the update of the prio_to_buff field.
5489  * Bit <i> is a flag for updating the mapping for switch priority <i+8>.
5490  * Access: RW
5491  */
5492 MLXSW_ITEM32(reg, pptb, pm_msb, 0x08, 24, 8);
5493 
5494 /* reg_pptb_untagged_buff
5495  * Mapping of untagged frames to one of the allocated receive port buffers.
5496  * Access: RW
5497  *
5498  * Note: In SwitchX-2 this field must be mapped to buffer 8. Reserved for
5499  * Spectrum, as it maps untagged packets based on the default switch priority.
5500  */
5501 MLXSW_ITEM32(reg, pptb, untagged_buff, 0x08, 0, 4);
5502 
5503 /* reg_pptb_prio_to_buff_msb
5504  * Mapping of switch priority <i+8> to one of the allocated receive port
5505  * buffers.
5506  * Access: RW
5507  */
5508 MLXSW_ITEM_BIT_ARRAY(reg, pptb, prio_to_buff_msb, 0x0C, 0x04, 4);
5509 
5510 #define MLXSW_REG_PPTB_ALL_PRIO 0xFF
5511 
5512 static inline void mlxsw_reg_pptb_pack(char *payload, u8 local_port)
5513 {
5514 	MLXSW_REG_ZERO(pptb, payload);
5515 	mlxsw_reg_pptb_mm_set(payload, MLXSW_REG_PPTB_MM_UM);
5516 	mlxsw_reg_pptb_local_port_set(payload, local_port);
5517 	mlxsw_reg_pptb_pm_set(payload, MLXSW_REG_PPTB_ALL_PRIO);
5518 	mlxsw_reg_pptb_pm_msb_set(payload, MLXSW_REG_PPTB_ALL_PRIO);
5519 }
5520 
5521 static inline void mlxsw_reg_pptb_prio_to_buff_pack(char *payload, u8 prio,
5522 						    u8 buff)
5523 {
5524 	mlxsw_reg_pptb_prio_to_buff_set(payload, prio, buff);
5525 	mlxsw_reg_pptb_prio_to_buff_msb_set(payload, prio, buff);
5526 }
5527 
5528 /* PBMC - Port Buffer Management Control Register
5529  * ----------------------------------------------
5530  * The PBMC register configures and retrieves the port packet buffer
5531  * allocation for different Prios, and the Pause threshold management.
5532  */
5533 #define MLXSW_REG_PBMC_ID 0x500C
5534 #define MLXSW_REG_PBMC_LEN 0x6C
5535 
5536 MLXSW_REG_DEFINE(pbmc, MLXSW_REG_PBMC_ID, MLXSW_REG_PBMC_LEN);
5537 
5538 /* reg_pbmc_local_port
5539  * Local port number.
5540  * Access: Index
5541  */
5542 MLXSW_ITEM32(reg, pbmc, local_port, 0x00, 16, 8);
5543 
5544 /* reg_pbmc_xoff_timer_value
5545  * When device generates a pause frame, it uses this value as the pause
5546  * timer (time for the peer port to pause in quota-512 bit time).
5547  * Access: RW
5548  */
5549 MLXSW_ITEM32(reg, pbmc, xoff_timer_value, 0x04, 16, 16);
5550 
5551 /* reg_pbmc_xoff_refresh
5552  * The time before a new pause frame should be sent to refresh the pause RW
5553  * state. Using the same units as xoff_timer_value above (in quota-512 bit
5554  * time).
5555  * Access: RW
5556  */
5557 MLXSW_ITEM32(reg, pbmc, xoff_refresh, 0x04, 0, 16);
5558 
5559 #define MLXSW_REG_PBMC_PORT_SHARED_BUF_IDX 11
5560 
5561 /* reg_pbmc_buf_lossy
5562  * The field indicates if the buffer is lossy.
5563  * 0 - Lossless
5564  * 1 - Lossy
5565  * Access: RW
5566  */
5567 MLXSW_ITEM32_INDEXED(reg, pbmc, buf_lossy, 0x0C, 25, 1, 0x08, 0x00, false);
5568 
5569 /* reg_pbmc_buf_epsb
5570  * Eligible for Port Shared buffer.
5571  * If epsb is set, packets assigned to buffer are allowed to insert the port
5572  * shared buffer.
5573  * When buf_lossy is MLXSW_REG_PBMC_LOSSY_LOSSY this field is reserved.
5574  * Access: RW
5575  */
5576 MLXSW_ITEM32_INDEXED(reg, pbmc, buf_epsb, 0x0C, 24, 1, 0x08, 0x00, false);
5577 
5578 /* reg_pbmc_buf_size
5579  * The part of the packet buffer array is allocated for the specific buffer.
5580  * Units are represented in cells.
5581  * Access: RW
5582  */
5583 MLXSW_ITEM32_INDEXED(reg, pbmc, buf_size, 0x0C, 0, 16, 0x08, 0x00, false);
5584 
5585 /* reg_pbmc_buf_xoff_threshold
5586  * Once the amount of data in the buffer goes above this value, device
5587  * starts sending PFC frames for all priorities associated with the
5588  * buffer. Units are represented in cells. Reserved in case of lossy
5589  * buffer.
5590  * Access: RW
5591  *
5592  * Note: In Spectrum, reserved for buffer[9].
5593  */
5594 MLXSW_ITEM32_INDEXED(reg, pbmc, buf_xoff_threshold, 0x0C, 16, 16,
5595 		     0x08, 0x04, false);
5596 
5597 /* reg_pbmc_buf_xon_threshold
5598  * When the amount of data in the buffer goes below this value, device
5599  * stops sending PFC frames for the priorities associated with the
5600  * buffer. Units are represented in cells. Reserved in case of lossy
5601  * buffer.
5602  * Access: RW
5603  *
5604  * Note: In Spectrum, reserved for buffer[9].
5605  */
5606 MLXSW_ITEM32_INDEXED(reg, pbmc, buf_xon_threshold, 0x0C, 0, 16,
5607 		     0x08, 0x04, false);
5608 
5609 static inline void mlxsw_reg_pbmc_pack(char *payload, u8 local_port,
5610 				       u16 xoff_timer_value, u16 xoff_refresh)
5611 {
5612 	MLXSW_REG_ZERO(pbmc, payload);
5613 	mlxsw_reg_pbmc_local_port_set(payload, local_port);
5614 	mlxsw_reg_pbmc_xoff_timer_value_set(payload, xoff_timer_value);
5615 	mlxsw_reg_pbmc_xoff_refresh_set(payload, xoff_refresh);
5616 }
5617 
5618 static inline void mlxsw_reg_pbmc_lossy_buffer_pack(char *payload,
5619 						    int buf_index,
5620 						    u16 size)
5621 {
5622 	mlxsw_reg_pbmc_buf_lossy_set(payload, buf_index, 1);
5623 	mlxsw_reg_pbmc_buf_epsb_set(payload, buf_index, 0);
5624 	mlxsw_reg_pbmc_buf_size_set(payload, buf_index, size);
5625 }
5626 
5627 static inline void mlxsw_reg_pbmc_lossless_buffer_pack(char *payload,
5628 						       int buf_index, u16 size,
5629 						       u16 threshold)
5630 {
5631 	mlxsw_reg_pbmc_buf_lossy_set(payload, buf_index, 0);
5632 	mlxsw_reg_pbmc_buf_epsb_set(payload, buf_index, 0);
5633 	mlxsw_reg_pbmc_buf_size_set(payload, buf_index, size);
5634 	mlxsw_reg_pbmc_buf_xoff_threshold_set(payload, buf_index, threshold);
5635 	mlxsw_reg_pbmc_buf_xon_threshold_set(payload, buf_index, threshold);
5636 }
5637 
5638 /* PSPA - Port Switch Partition Allocation
5639  * ---------------------------------------
5640  * Controls the association of a port with a switch partition and enables
5641  * configuring ports as stacking ports.
5642  */
5643 #define MLXSW_REG_PSPA_ID 0x500D
5644 #define MLXSW_REG_PSPA_LEN 0x8
5645 
5646 MLXSW_REG_DEFINE(pspa, MLXSW_REG_PSPA_ID, MLXSW_REG_PSPA_LEN);
5647 
5648 /* reg_pspa_swid
5649  * Switch partition ID.
5650  * Access: RW
5651  */
5652 MLXSW_ITEM32(reg, pspa, swid, 0x00, 24, 8);
5653 
5654 /* reg_pspa_local_port
5655  * Local port number.
5656  * Access: Index
5657  */
5658 MLXSW_ITEM32(reg, pspa, local_port, 0x00, 16, 8);
5659 
5660 /* reg_pspa_sub_port
5661  * Virtual port within the local port. Set to 0 when virtual ports are
5662  * disabled on the local port.
5663  * Access: Index
5664  */
5665 MLXSW_ITEM32(reg, pspa, sub_port, 0x00, 8, 8);
5666 
5667 static inline void mlxsw_reg_pspa_pack(char *payload, u8 swid, u8 local_port)
5668 {
5669 	MLXSW_REG_ZERO(pspa, payload);
5670 	mlxsw_reg_pspa_swid_set(payload, swid);
5671 	mlxsw_reg_pspa_local_port_set(payload, local_port);
5672 	mlxsw_reg_pspa_sub_port_set(payload, 0);
5673 }
5674 
5675 /* PMAOS - Ports Module Administrative and Operational Status
5676  * ----------------------------------------------------------
5677  * This register configures and retrieves the per module status.
5678  */
5679 #define MLXSW_REG_PMAOS_ID 0x5012
5680 #define MLXSW_REG_PMAOS_LEN 0x10
5681 
5682 MLXSW_REG_DEFINE(pmaos, MLXSW_REG_PMAOS_ID, MLXSW_REG_PMAOS_LEN);
5683 
5684 /* reg_pmaos_rst
5685  * Module reset toggle.
5686  * Note: Setting reset while module is plugged-in will result in transition to
5687  * "initializing" operational state.
5688  * Access: OP
5689  */
5690 MLXSW_ITEM32(reg, pmaos, rst, 0x00, 31, 1);
5691 
5692 /* reg_pmaos_slot_index
5693  * Slot index.
5694  * Access: Index
5695  */
5696 MLXSW_ITEM32(reg, pmaos, slot_index, 0x00, 24, 4);
5697 
5698 /* reg_pmaos_module
5699  * Module number.
5700  * Access: Index
5701  */
5702 MLXSW_ITEM32(reg, pmaos, module, 0x00, 16, 8);
5703 
5704 enum mlxsw_reg_pmaos_admin_status {
5705 	MLXSW_REG_PMAOS_ADMIN_STATUS_ENABLED = 1,
5706 	MLXSW_REG_PMAOS_ADMIN_STATUS_DISABLED = 2,
5707 	/* If the module is active and then unplugged, or experienced an error
5708 	 * event, the operational status should go to "disabled" and can only
5709 	 * be enabled upon explicit enable command.
5710 	 */
5711 	MLXSW_REG_PMAOS_ADMIN_STATUS_ENABLED_ONCE = 3,
5712 };
5713 
5714 /* reg_pmaos_admin_status
5715  * Module administrative state (the desired state of the module).
5716  * Note: To disable a module, all ports associated with the port must be
5717  * administatively down first.
5718  * Access: RW
5719  */
5720 MLXSW_ITEM32(reg, pmaos, admin_status, 0x00, 8, 4);
5721 
5722 /* reg_pmaos_ase
5723  * Admin state update enable.
5724  * If this bit is set, admin state will be updated based on admin_state field.
5725  * Only relevant on Set() operations.
5726  * Access: WO
5727  */
5728 MLXSW_ITEM32(reg, pmaos, ase, 0x04, 31, 1);
5729 
5730 /* reg_pmaos_ee
5731  * Event update enable.
5732  * If this bit is set, event generation will be updated based on the e field.
5733  * Only relevant on Set operations.
5734  * Access: WO
5735  */
5736 MLXSW_ITEM32(reg, pmaos, ee, 0x04, 30, 1);
5737 
5738 enum mlxsw_reg_pmaos_e {
5739 	MLXSW_REG_PMAOS_E_DO_NOT_GENERATE_EVENT,
5740 	MLXSW_REG_PMAOS_E_GENERATE_EVENT,
5741 	MLXSW_REG_PMAOS_E_GENERATE_SINGLE_EVENT,
5742 };
5743 
5744 /* reg_pmaos_e
5745  * Event Generation on operational state change.
5746  * Access: RW
5747  */
5748 MLXSW_ITEM32(reg, pmaos, e, 0x04, 0, 2);
5749 
5750 static inline void mlxsw_reg_pmaos_pack(char *payload, u8 module)
5751 {
5752 	MLXSW_REG_ZERO(pmaos, payload);
5753 	mlxsw_reg_pmaos_module_set(payload, module);
5754 }
5755 
5756 /* PPLR - Port Physical Loopback Register
5757  * --------------------------------------
5758  * This register allows configuration of the port's loopback mode.
5759  */
5760 #define MLXSW_REG_PPLR_ID 0x5018
5761 #define MLXSW_REG_PPLR_LEN 0x8
5762 
5763 MLXSW_REG_DEFINE(pplr, MLXSW_REG_PPLR_ID, MLXSW_REG_PPLR_LEN);
5764 
5765 /* reg_pplr_local_port
5766  * Local port number.
5767  * Access: Index
5768  */
5769 MLXSW_ITEM32(reg, pplr, local_port, 0x00, 16, 8);
5770 
5771 /* Phy local loopback. When set the port's egress traffic is looped back
5772  * to the receiver and the port transmitter is disabled.
5773  */
5774 #define MLXSW_REG_PPLR_LB_TYPE_BIT_PHY_LOCAL BIT(1)
5775 
5776 /* reg_pplr_lb_en
5777  * Loopback enable.
5778  * Access: RW
5779  */
5780 MLXSW_ITEM32(reg, pplr, lb_en, 0x04, 0, 8);
5781 
5782 static inline void mlxsw_reg_pplr_pack(char *payload, u8 local_port,
5783 				       bool phy_local)
5784 {
5785 	MLXSW_REG_ZERO(pplr, payload);
5786 	mlxsw_reg_pplr_local_port_set(payload, local_port);
5787 	mlxsw_reg_pplr_lb_en_set(payload,
5788 				 phy_local ?
5789 				 MLXSW_REG_PPLR_LB_TYPE_BIT_PHY_LOCAL : 0);
5790 }
5791 
5792 /* PMTDB - Port Module To local DataBase Register
5793  * ----------------------------------------------
5794  * The PMTDB register allows to query the possible module<->local port
5795  * mapping than can be used in PMLP. It does not represent the actual/current
5796  * mapping of the local to module. Actual mapping is only defined by PMLP.
5797  */
5798 #define MLXSW_REG_PMTDB_ID 0x501A
5799 #define MLXSW_REG_PMTDB_LEN 0x40
5800 
5801 MLXSW_REG_DEFINE(pmtdb, MLXSW_REG_PMTDB_ID, MLXSW_REG_PMTDB_LEN);
5802 
5803 /* reg_pmtdb_slot_index
5804  * Slot index (0: Main board).
5805  * Access: Index
5806  */
5807 MLXSW_ITEM32(reg, pmtdb, slot_index, 0x00, 24, 4);
5808 
5809 /* reg_pmtdb_module
5810  * Module number.
5811  * Access: Index
5812  */
5813 MLXSW_ITEM32(reg, pmtdb, module, 0x00, 16, 8);
5814 
5815 /* reg_pmtdb_ports_width
5816  * Port's width
5817  * Access: Index
5818  */
5819 MLXSW_ITEM32(reg, pmtdb, ports_width, 0x00, 12, 4);
5820 
5821 /* reg_pmtdb_num_ports
5822  * Number of ports in a single module (split/breakout)
5823  * Access: Index
5824  */
5825 MLXSW_ITEM32(reg, pmtdb, num_ports, 0x00, 8, 4);
5826 
5827 enum mlxsw_reg_pmtdb_status {
5828 	MLXSW_REG_PMTDB_STATUS_SUCCESS,
5829 };
5830 
5831 /* reg_pmtdb_status
5832  * Status
5833  * Access: RO
5834  */
5835 MLXSW_ITEM32(reg, pmtdb, status, 0x00, 0, 4);
5836 
5837 /* reg_pmtdb_port_num
5838  * The local_port value which can be assigned to the module.
5839  * In case of more than one port, port<x> represent the /<x> port of
5840  * the module.
5841  * Access: RO
5842  */
5843 MLXSW_ITEM16_INDEXED(reg, pmtdb, port_num, 0x04, 0, 8, 0x02, 0x00, false);
5844 
5845 static inline void mlxsw_reg_pmtdb_pack(char *payload, u8 slot_index, u8 module,
5846 					u8 ports_width, u8 num_ports)
5847 {
5848 	MLXSW_REG_ZERO(pmtdb, payload);
5849 	mlxsw_reg_pmtdb_slot_index_set(payload, slot_index);
5850 	mlxsw_reg_pmtdb_module_set(payload, module);
5851 	mlxsw_reg_pmtdb_ports_width_set(payload, ports_width);
5852 	mlxsw_reg_pmtdb_num_ports_set(payload, num_ports);
5853 }
5854 
5855 /* PMPE - Port Module Plug/Unplug Event Register
5856  * ---------------------------------------------
5857  * This register reports any operational status change of a module.
5858  * A change in the module’s state will generate an event only if the change
5859  * happens after arming the event mechanism. Any changes to the module state
5860  * while the event mechanism is not armed will not be reported. Software can
5861  * query the PMPE register for module status.
5862  */
5863 #define MLXSW_REG_PMPE_ID 0x5024
5864 #define MLXSW_REG_PMPE_LEN 0x10
5865 
5866 MLXSW_REG_DEFINE(pmpe, MLXSW_REG_PMPE_ID, MLXSW_REG_PMPE_LEN);
5867 
5868 /* reg_pmpe_slot_index
5869  * Slot index.
5870  * Access: Index
5871  */
5872 MLXSW_ITEM32(reg, pmpe, slot_index, 0x00, 24, 4);
5873 
5874 /* reg_pmpe_module
5875  * Module number.
5876  * Access: Index
5877  */
5878 MLXSW_ITEM32(reg, pmpe, module, 0x00, 16, 8);
5879 
5880 enum mlxsw_reg_pmpe_module_status {
5881 	MLXSW_REG_PMPE_MODULE_STATUS_PLUGGED_ENABLED = 1,
5882 	MLXSW_REG_PMPE_MODULE_STATUS_UNPLUGGED,
5883 	MLXSW_REG_PMPE_MODULE_STATUS_PLUGGED_ERROR,
5884 	MLXSW_REG_PMPE_MODULE_STATUS_PLUGGED_DISABLED,
5885 };
5886 
5887 /* reg_pmpe_module_status
5888  * Module status.
5889  * Access: RO
5890  */
5891 MLXSW_ITEM32(reg, pmpe, module_status, 0x00, 0, 4);
5892 
5893 /* reg_pmpe_error_type
5894  * Module error details.
5895  * Access: RO
5896  */
5897 MLXSW_ITEM32(reg, pmpe, error_type, 0x04, 8, 4);
5898 
5899 /* PDDR - Port Diagnostics Database Register
5900  * -----------------------------------------
5901  * The PDDR enables to read the Phy debug database
5902  */
5903 #define MLXSW_REG_PDDR_ID 0x5031
5904 #define MLXSW_REG_PDDR_LEN 0x100
5905 
5906 MLXSW_REG_DEFINE(pddr, MLXSW_REG_PDDR_ID, MLXSW_REG_PDDR_LEN);
5907 
5908 /* reg_pddr_local_port
5909  * Local port number.
5910  * Access: Index
5911  */
5912 MLXSW_ITEM32(reg, pddr, local_port, 0x00, 16, 8);
5913 
5914 enum mlxsw_reg_pddr_page_select {
5915 	MLXSW_REG_PDDR_PAGE_SELECT_TROUBLESHOOTING_INFO = 1,
5916 };
5917 
5918 /* reg_pddr_page_select
5919  * Page select index.
5920  * Access: Index
5921  */
5922 MLXSW_ITEM32(reg, pddr, page_select, 0x04, 0, 8);
5923 
5924 enum mlxsw_reg_pddr_trblsh_group_opcode {
5925 	/* Monitor opcodes */
5926 	MLXSW_REG_PDDR_TRBLSH_GROUP_OPCODE_MONITOR,
5927 };
5928 
5929 /* reg_pddr_group_opcode
5930  * Group selector.
5931  * Access: Index
5932  */
5933 MLXSW_ITEM32(reg, pddr, trblsh_group_opcode, 0x08, 0, 16);
5934 
5935 /* reg_pddr_status_opcode
5936  * Group selector.
5937  * Access: RO
5938  */
5939 MLXSW_ITEM32(reg, pddr, trblsh_status_opcode, 0x0C, 0, 16);
5940 
5941 static inline void mlxsw_reg_pddr_pack(char *payload, u8 local_port,
5942 				       u8 page_select)
5943 {
5944 	MLXSW_REG_ZERO(pddr, payload);
5945 	mlxsw_reg_pddr_local_port_set(payload, local_port);
5946 	mlxsw_reg_pddr_page_select_set(payload, page_select);
5947 }
5948 
5949 /* PLLP - Port Local port to Label Port mapping Register
5950  * -----------------------------------------------------
5951  * The PLLP register returns the mapping from Local Port into Label Port.
5952  */
5953 #define MLXSW_REG_PLLP_ID 0x504A
5954 #define MLXSW_REG_PLLP_LEN 0x10
5955 
5956 MLXSW_REG_DEFINE(pllp, MLXSW_REG_PLLP_ID, MLXSW_REG_PLLP_LEN);
5957 
5958 /* reg_pllp_local_port
5959  * Local port number.
5960  * Access: Index
5961  */
5962 MLXSW_ITEM32(reg, pllp, local_port, 0x00, 16, 8);
5963 
5964 /* reg_pllp_label_port
5965  * Front panel label of the port.
5966  * Access: RO
5967  */
5968 MLXSW_ITEM32(reg, pllp, label_port, 0x00, 0, 8);
5969 
5970 /* reg_pllp_split_num
5971  * Label split mapping for local_port.
5972  * Access: RO
5973  */
5974 MLXSW_ITEM32(reg, pllp, split_num, 0x04, 0, 4);
5975 
5976 /* reg_pllp_slot_index
5977  * Slot index (0: Main board).
5978  * Access: RO
5979  */
5980 MLXSW_ITEM32(reg, pllp, slot_index, 0x08, 0, 4);
5981 
5982 static inline void mlxsw_reg_pllp_pack(char *payload, u8 local_port)
5983 {
5984 	MLXSW_REG_ZERO(pllp, payload);
5985 	mlxsw_reg_pllp_local_port_set(payload, local_port);
5986 }
5987 
5988 static inline void mlxsw_reg_pllp_unpack(char *payload, u8 *label_port,
5989 					 u8 *split_num, u8 *slot_index)
5990 {
5991 	*label_port = mlxsw_reg_pllp_label_port_get(payload);
5992 	*split_num = mlxsw_reg_pllp_split_num_get(payload);
5993 	*slot_index = mlxsw_reg_pllp_slot_index_get(payload);
5994 }
5995 
5996 /* HTGT - Host Trap Group Table
5997  * ----------------------------
5998  * Configures the properties for forwarding to CPU.
5999  */
6000 #define MLXSW_REG_HTGT_ID 0x7002
6001 #define MLXSW_REG_HTGT_LEN 0x20
6002 
6003 MLXSW_REG_DEFINE(htgt, MLXSW_REG_HTGT_ID, MLXSW_REG_HTGT_LEN);
6004 
6005 /* reg_htgt_swid
6006  * Switch partition ID.
6007  * Access: Index
6008  */
6009 MLXSW_ITEM32(reg, htgt, swid, 0x00, 24, 8);
6010 
6011 #define MLXSW_REG_HTGT_PATH_TYPE_LOCAL 0x0	/* For locally attached CPU */
6012 
6013 /* reg_htgt_type
6014  * CPU path type.
6015  * Access: RW
6016  */
6017 MLXSW_ITEM32(reg, htgt, type, 0x00, 8, 4);
6018 
6019 enum mlxsw_reg_htgt_trap_group {
6020 	MLXSW_REG_HTGT_TRAP_GROUP_EMAD,
6021 	MLXSW_REG_HTGT_TRAP_GROUP_MFDE,
6022 	MLXSW_REG_HTGT_TRAP_GROUP_MTWE,
6023 	MLXSW_REG_HTGT_TRAP_GROUP_PMPE,
6024 	MLXSW_REG_HTGT_TRAP_GROUP_SP_STP,
6025 	MLXSW_REG_HTGT_TRAP_GROUP_SP_LACP,
6026 	MLXSW_REG_HTGT_TRAP_GROUP_SP_LLDP,
6027 	MLXSW_REG_HTGT_TRAP_GROUP_SP_MC_SNOOPING,
6028 	MLXSW_REG_HTGT_TRAP_GROUP_SP_BGP,
6029 	MLXSW_REG_HTGT_TRAP_GROUP_SP_OSPF,
6030 	MLXSW_REG_HTGT_TRAP_GROUP_SP_PIM,
6031 	MLXSW_REG_HTGT_TRAP_GROUP_SP_MULTICAST,
6032 	MLXSW_REG_HTGT_TRAP_GROUP_SP_NEIGH_DISCOVERY,
6033 	MLXSW_REG_HTGT_TRAP_GROUP_SP_ROUTER_EXP,
6034 	MLXSW_REG_HTGT_TRAP_GROUP_SP_EXTERNAL_ROUTE,
6035 	MLXSW_REG_HTGT_TRAP_GROUP_SP_IP2ME,
6036 	MLXSW_REG_HTGT_TRAP_GROUP_SP_DHCP,
6037 	MLXSW_REG_HTGT_TRAP_GROUP_SP_EVENT,
6038 	MLXSW_REG_HTGT_TRAP_GROUP_SP_IPV6,
6039 	MLXSW_REG_HTGT_TRAP_GROUP_SP_LBERROR,
6040 	MLXSW_REG_HTGT_TRAP_GROUP_SP_PTP0,
6041 	MLXSW_REG_HTGT_TRAP_GROUP_SP_PTP1,
6042 	MLXSW_REG_HTGT_TRAP_GROUP_SP_VRRP,
6043 	MLXSW_REG_HTGT_TRAP_GROUP_SP_PKT_SAMPLE,
6044 	MLXSW_REG_HTGT_TRAP_GROUP_SP_FLOW_LOGGING,
6045 	MLXSW_REG_HTGT_TRAP_GROUP_SP_FID_MISS,
6046 	MLXSW_REG_HTGT_TRAP_GROUP_SP_BFD,
6047 	MLXSW_REG_HTGT_TRAP_GROUP_SP_DUMMY,
6048 	MLXSW_REG_HTGT_TRAP_GROUP_SP_L2_DISCARDS,
6049 	MLXSW_REG_HTGT_TRAP_GROUP_SP_L3_DISCARDS,
6050 	MLXSW_REG_HTGT_TRAP_GROUP_SP_L3_EXCEPTIONS,
6051 	MLXSW_REG_HTGT_TRAP_GROUP_SP_TUNNEL_DISCARDS,
6052 	MLXSW_REG_HTGT_TRAP_GROUP_SP_ACL_DISCARDS,
6053 	MLXSW_REG_HTGT_TRAP_GROUP_SP_BUFFER_DISCARDS,
6054 
6055 	__MLXSW_REG_HTGT_TRAP_GROUP_MAX,
6056 	MLXSW_REG_HTGT_TRAP_GROUP_MAX = __MLXSW_REG_HTGT_TRAP_GROUP_MAX - 1
6057 };
6058 
6059 /* reg_htgt_trap_group
6060  * Trap group number. User defined number specifying which trap groups
6061  * should be forwarded to the CPU. The mapping between trap IDs and trap
6062  * groups is configured using HPKT register.
6063  * Access: Index
6064  */
6065 MLXSW_ITEM32(reg, htgt, trap_group, 0x00, 0, 8);
6066 
6067 enum {
6068 	MLXSW_REG_HTGT_POLICER_DISABLE,
6069 	MLXSW_REG_HTGT_POLICER_ENABLE,
6070 };
6071 
6072 /* reg_htgt_pide
6073  * Enable policer ID specified using 'pid' field.
6074  * Access: RW
6075  */
6076 MLXSW_ITEM32(reg, htgt, pide, 0x04, 15, 1);
6077 
6078 #define MLXSW_REG_HTGT_INVALID_POLICER 0xff
6079 
6080 /* reg_htgt_pid
6081  * Policer ID for the trap group.
6082  * Access: RW
6083  */
6084 MLXSW_ITEM32(reg, htgt, pid, 0x04, 0, 8);
6085 
6086 #define MLXSW_REG_HTGT_TRAP_TO_CPU 0x0
6087 
6088 /* reg_htgt_mirror_action
6089  * Mirror action to use.
6090  * 0 - Trap to CPU.
6091  * 1 - Trap to CPU and mirror to a mirroring agent.
6092  * 2 - Mirror to a mirroring agent and do not trap to CPU.
6093  * Access: RW
6094  *
6095  * Note: Mirroring to a mirroring agent is only supported in Spectrum.
6096  */
6097 MLXSW_ITEM32(reg, htgt, mirror_action, 0x08, 8, 2);
6098 
6099 /* reg_htgt_mirroring_agent
6100  * Mirroring agent.
6101  * Access: RW
6102  */
6103 MLXSW_ITEM32(reg, htgt, mirroring_agent, 0x08, 0, 3);
6104 
6105 #define MLXSW_REG_HTGT_DEFAULT_PRIORITY 0
6106 
6107 /* reg_htgt_priority
6108  * Trap group priority.
6109  * In case a packet matches multiple classification rules, the packet will
6110  * only be trapped once, based on the trap ID associated with the group (via
6111  * register HPKT) with the highest priority.
6112  * Supported values are 0-7, with 7 represnting the highest priority.
6113  * Access: RW
6114  *
6115  * Note: In SwitchX-2 this field is ignored and the priority value is replaced
6116  * by the 'trap_group' field.
6117  */
6118 MLXSW_ITEM32(reg, htgt, priority, 0x0C, 0, 4);
6119 
6120 #define MLXSW_REG_HTGT_DEFAULT_TC 7
6121 
6122 /* reg_htgt_local_path_cpu_tclass
6123  * CPU ingress traffic class for the trap group.
6124  * Access: RW
6125  */
6126 MLXSW_ITEM32(reg, htgt, local_path_cpu_tclass, 0x10, 16, 6);
6127 
6128 enum mlxsw_reg_htgt_local_path_rdq {
6129 	MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_CTRL = 0x13,
6130 	MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_RX = 0x14,
6131 	MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SX2_EMAD = 0x15,
6132 	MLXSW_REG_HTGT_LOCAL_PATH_RDQ_SIB_EMAD = 0x15,
6133 };
6134 /* reg_htgt_local_path_rdq
6135  * Receive descriptor queue (RDQ) to use for the trap group.
6136  * Access: RW
6137  */
6138 MLXSW_ITEM32(reg, htgt, local_path_rdq, 0x10, 0, 6);
6139 
6140 static inline void mlxsw_reg_htgt_pack(char *payload, u8 group, u8 policer_id,
6141 				       u8 priority, u8 tc)
6142 {
6143 	MLXSW_REG_ZERO(htgt, payload);
6144 
6145 	if (policer_id == MLXSW_REG_HTGT_INVALID_POLICER) {
6146 		mlxsw_reg_htgt_pide_set(payload,
6147 					MLXSW_REG_HTGT_POLICER_DISABLE);
6148 	} else {
6149 		mlxsw_reg_htgt_pide_set(payload,
6150 					MLXSW_REG_HTGT_POLICER_ENABLE);
6151 		mlxsw_reg_htgt_pid_set(payload, policer_id);
6152 	}
6153 
6154 	mlxsw_reg_htgt_type_set(payload, MLXSW_REG_HTGT_PATH_TYPE_LOCAL);
6155 	mlxsw_reg_htgt_trap_group_set(payload, group);
6156 	mlxsw_reg_htgt_mirror_action_set(payload, MLXSW_REG_HTGT_TRAP_TO_CPU);
6157 	mlxsw_reg_htgt_mirroring_agent_set(payload, 0);
6158 	mlxsw_reg_htgt_priority_set(payload, priority);
6159 	mlxsw_reg_htgt_local_path_cpu_tclass_set(payload, tc);
6160 	mlxsw_reg_htgt_local_path_rdq_set(payload, group);
6161 }
6162 
6163 /* HPKT - Host Packet Trap
6164  * -----------------------
6165  * Configures trap IDs inside trap groups.
6166  */
6167 #define MLXSW_REG_HPKT_ID 0x7003
6168 #define MLXSW_REG_HPKT_LEN 0x10
6169 
6170 MLXSW_REG_DEFINE(hpkt, MLXSW_REG_HPKT_ID, MLXSW_REG_HPKT_LEN);
6171 
6172 enum {
6173 	MLXSW_REG_HPKT_ACK_NOT_REQUIRED,
6174 	MLXSW_REG_HPKT_ACK_REQUIRED,
6175 };
6176 
6177 /* reg_hpkt_ack
6178  * Require acknowledgements from the host for events.
6179  * If set, then the device will wait for the event it sent to be acknowledged
6180  * by the host. This option is only relevant for event trap IDs.
6181  * Access: RW
6182  *
6183  * Note: Currently not supported by firmware.
6184  */
6185 MLXSW_ITEM32(reg, hpkt, ack, 0x00, 24, 1);
6186 
6187 enum mlxsw_reg_hpkt_action {
6188 	MLXSW_REG_HPKT_ACTION_FORWARD,
6189 	MLXSW_REG_HPKT_ACTION_TRAP_TO_CPU,
6190 	MLXSW_REG_HPKT_ACTION_MIRROR_TO_CPU,
6191 	MLXSW_REG_HPKT_ACTION_DISCARD,
6192 	MLXSW_REG_HPKT_ACTION_SOFT_DISCARD,
6193 	MLXSW_REG_HPKT_ACTION_TRAP_AND_SOFT_DISCARD,
6194 	MLXSW_REG_HPKT_ACTION_TRAP_EXCEPTION_TO_CPU,
6195 	MLXSW_REG_HPKT_ACTION_SET_FW_DEFAULT = 15,
6196 };
6197 
6198 /* reg_hpkt_action
6199  * Action to perform on packet when trapped.
6200  * 0 - No action. Forward to CPU based on switching rules.
6201  * 1 - Trap to CPU (CPU receives sole copy).
6202  * 2 - Mirror to CPU (CPU receives a replica of the packet).
6203  * 3 - Discard.
6204  * 4 - Soft discard (allow other traps to act on the packet).
6205  * 5 - Trap and soft discard (allow other traps to overwrite this trap).
6206  * 6 - Trap to CPU (CPU receives sole copy) and count it as error.
6207  * 15 - Restore the firmware's default action.
6208  * Access: RW
6209  *
6210  * Note: Must be set to 0 (forward) for event trap IDs, as they are already
6211  * addressed to the CPU.
6212  */
6213 MLXSW_ITEM32(reg, hpkt, action, 0x00, 20, 3);
6214 
6215 /* reg_hpkt_trap_group
6216  * Trap group to associate the trap with.
6217  * Access: RW
6218  */
6219 MLXSW_ITEM32(reg, hpkt, trap_group, 0x00, 12, 6);
6220 
6221 /* reg_hpkt_trap_id
6222  * Trap ID.
6223  * Access: Index
6224  *
6225  * Note: A trap ID can only be associated with a single trap group. The device
6226  * will associate the trap ID with the last trap group configured.
6227  */
6228 MLXSW_ITEM32(reg, hpkt, trap_id, 0x00, 0, 10);
6229 
6230 enum {
6231 	MLXSW_REG_HPKT_CTRL_PACKET_DEFAULT,
6232 	MLXSW_REG_HPKT_CTRL_PACKET_NO_BUFFER,
6233 	MLXSW_REG_HPKT_CTRL_PACKET_USE_BUFFER,
6234 };
6235 
6236 /* reg_hpkt_ctrl
6237  * Configure dedicated buffer resources for control packets.
6238  * Ignored by SwitchX-2.
6239  * 0 - Keep factory defaults.
6240  * 1 - Do not use control buffer for this trap ID.
6241  * 2 - Use control buffer for this trap ID.
6242  * Access: RW
6243  */
6244 MLXSW_ITEM32(reg, hpkt, ctrl, 0x04, 16, 2);
6245 
6246 static inline void mlxsw_reg_hpkt_pack(char *payload, u8 action, u16 trap_id,
6247 				       enum mlxsw_reg_htgt_trap_group trap_group,
6248 				       bool is_ctrl)
6249 {
6250 	MLXSW_REG_ZERO(hpkt, payload);
6251 	mlxsw_reg_hpkt_ack_set(payload, MLXSW_REG_HPKT_ACK_NOT_REQUIRED);
6252 	mlxsw_reg_hpkt_action_set(payload, action);
6253 	mlxsw_reg_hpkt_trap_group_set(payload, trap_group);
6254 	mlxsw_reg_hpkt_trap_id_set(payload, trap_id);
6255 	mlxsw_reg_hpkt_ctrl_set(payload, is_ctrl ?
6256 				MLXSW_REG_HPKT_CTRL_PACKET_USE_BUFFER :
6257 				MLXSW_REG_HPKT_CTRL_PACKET_NO_BUFFER);
6258 }
6259 
6260 /* RGCR - Router General Configuration Register
6261  * --------------------------------------------
6262  * The register is used for setting up the router configuration.
6263  */
6264 #define MLXSW_REG_RGCR_ID 0x8001
6265 #define MLXSW_REG_RGCR_LEN 0x28
6266 
6267 MLXSW_REG_DEFINE(rgcr, MLXSW_REG_RGCR_ID, MLXSW_REG_RGCR_LEN);
6268 
6269 /* reg_rgcr_ipv4_en
6270  * IPv4 router enable.
6271  * Access: RW
6272  */
6273 MLXSW_ITEM32(reg, rgcr, ipv4_en, 0x00, 31, 1);
6274 
6275 /* reg_rgcr_ipv6_en
6276  * IPv6 router enable.
6277  * Access: RW
6278  */
6279 MLXSW_ITEM32(reg, rgcr, ipv6_en, 0x00, 30, 1);
6280 
6281 /* reg_rgcr_max_router_interfaces
6282  * Defines the maximum number of active router interfaces for all virtual
6283  * routers.
6284  * Access: RW
6285  */
6286 MLXSW_ITEM32(reg, rgcr, max_router_interfaces, 0x10, 0, 16);
6287 
6288 /* reg_rgcr_usp
6289  * Update switch priority and packet color.
6290  * 0 - Preserve the value of Switch Priority and packet color.
6291  * 1 - Recalculate the value of Switch Priority and packet color.
6292  * Access: RW
6293  *
6294  * Note: Not supported by SwitchX and SwitchX-2.
6295  */
6296 MLXSW_ITEM32(reg, rgcr, usp, 0x18, 20, 1);
6297 
6298 /* reg_rgcr_pcp_rw
6299  * Indicates how to handle the pcp_rewrite_en value:
6300  * 0 - Preserve the value of pcp_rewrite_en.
6301  * 2 - Disable PCP rewrite.
6302  * 3 - Enable PCP rewrite.
6303  * Access: RW
6304  *
6305  * Note: Not supported by SwitchX and SwitchX-2.
6306  */
6307 MLXSW_ITEM32(reg, rgcr, pcp_rw, 0x18, 16, 2);
6308 
6309 /* reg_rgcr_activity_dis
6310  * Activity disable:
6311  * 0 - Activity will be set when an entry is hit (default).
6312  * 1 - Activity will not be set when an entry is hit.
6313  *
6314  * Bit 0 - Disable activity bit in Router Algorithmic LPM Unicast Entry
6315  * (RALUE).
6316  * Bit 1 - Disable activity bit in Router Algorithmic LPM Unicast Host
6317  * Entry (RAUHT).
6318  * Bits 2:7 are reserved.
6319  * Access: RW
6320  *
6321  * Note: Not supported by SwitchX, SwitchX-2 and Switch-IB.
6322  */
6323 MLXSW_ITEM32(reg, rgcr, activity_dis, 0x20, 0, 8);
6324 
6325 static inline void mlxsw_reg_rgcr_pack(char *payload, bool ipv4_en,
6326 				       bool ipv6_en)
6327 {
6328 	MLXSW_REG_ZERO(rgcr, payload);
6329 	mlxsw_reg_rgcr_ipv4_en_set(payload, ipv4_en);
6330 	mlxsw_reg_rgcr_ipv6_en_set(payload, ipv6_en);
6331 }
6332 
6333 /* RITR - Router Interface Table Register
6334  * --------------------------------------
6335  * The register is used to configure the router interface table.
6336  */
6337 #define MLXSW_REG_RITR_ID 0x8002
6338 #define MLXSW_REG_RITR_LEN 0x40
6339 
6340 MLXSW_REG_DEFINE(ritr, MLXSW_REG_RITR_ID, MLXSW_REG_RITR_LEN);
6341 
6342 /* reg_ritr_enable
6343  * Enables routing on the router interface.
6344  * Access: RW
6345  */
6346 MLXSW_ITEM32(reg, ritr, enable, 0x00, 31, 1);
6347 
6348 /* reg_ritr_ipv4
6349  * IPv4 routing enable. Enables routing of IPv4 traffic on the router
6350  * interface.
6351  * Access: RW
6352  */
6353 MLXSW_ITEM32(reg, ritr, ipv4, 0x00, 29, 1);
6354 
6355 /* reg_ritr_ipv6
6356  * IPv6 routing enable. Enables routing of IPv6 traffic on the router
6357  * interface.
6358  * Access: RW
6359  */
6360 MLXSW_ITEM32(reg, ritr, ipv6, 0x00, 28, 1);
6361 
6362 /* reg_ritr_ipv4_mc
6363  * IPv4 multicast routing enable.
6364  * Access: RW
6365  */
6366 MLXSW_ITEM32(reg, ritr, ipv4_mc, 0x00, 27, 1);
6367 
6368 /* reg_ritr_ipv6_mc
6369  * IPv6 multicast routing enable.
6370  * Access: RW
6371  */
6372 MLXSW_ITEM32(reg, ritr, ipv6_mc, 0x00, 26, 1);
6373 
6374 enum mlxsw_reg_ritr_if_type {
6375 	/* VLAN interface. */
6376 	MLXSW_REG_RITR_VLAN_IF,
6377 	/* FID interface. */
6378 	MLXSW_REG_RITR_FID_IF,
6379 	/* Sub-port interface. */
6380 	MLXSW_REG_RITR_SP_IF,
6381 	/* Loopback Interface. */
6382 	MLXSW_REG_RITR_LOOPBACK_IF,
6383 };
6384 
6385 /* reg_ritr_type
6386  * Router interface type as per enum mlxsw_reg_ritr_if_type.
6387  * Access: RW
6388  */
6389 MLXSW_ITEM32(reg, ritr, type, 0x00, 23, 3);
6390 
6391 enum {
6392 	MLXSW_REG_RITR_RIF_CREATE,
6393 	MLXSW_REG_RITR_RIF_DEL,
6394 };
6395 
6396 /* reg_ritr_op
6397  * Opcode:
6398  * 0 - Create or edit RIF.
6399  * 1 - Delete RIF.
6400  * Reserved for SwitchX-2. For Spectrum, editing of interface properties
6401  * is not supported. An interface must be deleted and re-created in order
6402  * to update properties.
6403  * Access: WO
6404  */
6405 MLXSW_ITEM32(reg, ritr, op, 0x00, 20, 2);
6406 
6407 /* reg_ritr_rif
6408  * Router interface index. A pointer to the Router Interface Table.
6409  * Access: Index
6410  */
6411 MLXSW_ITEM32(reg, ritr, rif, 0x00, 0, 16);
6412 
6413 /* reg_ritr_ipv4_fe
6414  * IPv4 Forwarding Enable.
6415  * Enables routing of IPv4 traffic on the router interface. When disabled,
6416  * forwarding is blocked but local traffic (traps and IP2ME) will be enabled.
6417  * Not supported in SwitchX-2.
6418  * Access: RW
6419  */
6420 MLXSW_ITEM32(reg, ritr, ipv4_fe, 0x04, 29, 1);
6421 
6422 /* reg_ritr_ipv6_fe
6423  * IPv6 Forwarding Enable.
6424  * Enables routing of IPv6 traffic on the router interface. When disabled,
6425  * forwarding is blocked but local traffic (traps and IP2ME) will be enabled.
6426  * Not supported in SwitchX-2.
6427  * Access: RW
6428  */
6429 MLXSW_ITEM32(reg, ritr, ipv6_fe, 0x04, 28, 1);
6430 
6431 /* reg_ritr_ipv4_mc_fe
6432  * IPv4 Multicast Forwarding Enable.
6433  * When disabled, forwarding is blocked but local traffic (traps and IP to me)
6434  * will be enabled.
6435  * Access: RW
6436  */
6437 MLXSW_ITEM32(reg, ritr, ipv4_mc_fe, 0x04, 27, 1);
6438 
6439 /* reg_ritr_ipv6_mc_fe
6440  * IPv6 Multicast Forwarding Enable.
6441  * When disabled, forwarding is blocked but local traffic (traps and IP to me)
6442  * will be enabled.
6443  * Access: RW
6444  */
6445 MLXSW_ITEM32(reg, ritr, ipv6_mc_fe, 0x04, 26, 1);
6446 
6447 /* reg_ritr_lb_en
6448  * Loop-back filter enable for unicast packets.
6449  * If the flag is set then loop-back filter for unicast packets is
6450  * implemented on the RIF. Multicast packets are always subject to
6451  * loop-back filtering.
6452  * Access: RW
6453  */
6454 MLXSW_ITEM32(reg, ritr, lb_en, 0x04, 24, 1);
6455 
6456 /* reg_ritr_virtual_router
6457  * Virtual router ID associated with the router interface.
6458  * Access: RW
6459  */
6460 MLXSW_ITEM32(reg, ritr, virtual_router, 0x04, 0, 16);
6461 
6462 /* reg_ritr_mtu
6463  * Router interface MTU.
6464  * Access: RW
6465  */
6466 MLXSW_ITEM32(reg, ritr, mtu, 0x34, 0, 16);
6467 
6468 /* reg_ritr_if_swid
6469  * Switch partition ID.
6470  * Access: RW
6471  */
6472 MLXSW_ITEM32(reg, ritr, if_swid, 0x08, 24, 8);
6473 
6474 /* reg_ritr_if_mac
6475  * Router interface MAC address.
6476  * In Spectrum, all MAC addresses must have the same 38 MSBits.
6477  * Access: RW
6478  */
6479 MLXSW_ITEM_BUF(reg, ritr, if_mac, 0x12, 6);
6480 
6481 /* reg_ritr_if_vrrp_id_ipv6
6482  * VRRP ID for IPv6
6483  * Note: Reserved for RIF types other than VLAN, FID and Sub-port.
6484  * Access: RW
6485  */
6486 MLXSW_ITEM32(reg, ritr, if_vrrp_id_ipv6, 0x1C, 8, 8);
6487 
6488 /* reg_ritr_if_vrrp_id_ipv4
6489  * VRRP ID for IPv4
6490  * Note: Reserved for RIF types other than VLAN, FID and Sub-port.
6491  * Access: RW
6492  */
6493 MLXSW_ITEM32(reg, ritr, if_vrrp_id_ipv4, 0x1C, 0, 8);
6494 
6495 /* VLAN Interface */
6496 
6497 /* reg_ritr_vlan_if_vid
6498  * VLAN ID.
6499  * Access: RW
6500  */
6501 MLXSW_ITEM32(reg, ritr, vlan_if_vid, 0x08, 0, 12);
6502 
6503 /* FID Interface */
6504 
6505 /* reg_ritr_fid_if_fid
6506  * Filtering ID. Used to connect a bridge to the router. Only FIDs from
6507  * the vFID range are supported.
6508  * Access: RW
6509  */
6510 MLXSW_ITEM32(reg, ritr, fid_if_fid, 0x08, 0, 16);
6511 
6512 static inline void mlxsw_reg_ritr_fid_set(char *payload,
6513 					  enum mlxsw_reg_ritr_if_type rif_type,
6514 					  u16 fid)
6515 {
6516 	if (rif_type == MLXSW_REG_RITR_FID_IF)
6517 		mlxsw_reg_ritr_fid_if_fid_set(payload, fid);
6518 	else
6519 		mlxsw_reg_ritr_vlan_if_vid_set(payload, fid);
6520 }
6521 
6522 /* Sub-port Interface */
6523 
6524 /* reg_ritr_sp_if_lag
6525  * LAG indication. When this bit is set the system_port field holds the
6526  * LAG identifier.
6527  * Access: RW
6528  */
6529 MLXSW_ITEM32(reg, ritr, sp_if_lag, 0x08, 24, 1);
6530 
6531 /* reg_ritr_sp_system_port
6532  * Port unique indentifier. When lag bit is set, this field holds the
6533  * lag_id in bits 0:9.
6534  * Access: RW
6535  */
6536 MLXSW_ITEM32(reg, ritr, sp_if_system_port, 0x08, 0, 16);
6537 
6538 /* reg_ritr_sp_if_vid
6539  * VLAN ID.
6540  * Access: RW
6541  */
6542 MLXSW_ITEM32(reg, ritr, sp_if_vid, 0x18, 0, 12);
6543 
6544 /* Loopback Interface */
6545 
6546 enum mlxsw_reg_ritr_loopback_protocol {
6547 	/* IPinIP IPv4 underlay Unicast */
6548 	MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV4,
6549 	/* IPinIP IPv6 underlay Unicast */
6550 	MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV6,
6551 	/* IPinIP generic - used for Spectrum-2 underlay RIF */
6552 	MLXSW_REG_RITR_LOOPBACK_GENERIC,
6553 };
6554 
6555 /* reg_ritr_loopback_protocol
6556  * Access: RW
6557  */
6558 MLXSW_ITEM32(reg, ritr, loopback_protocol, 0x08, 28, 4);
6559 
6560 enum mlxsw_reg_ritr_loopback_ipip_type {
6561 	/* Tunnel is IPinIP. */
6562 	MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_IP,
6563 	/* Tunnel is GRE, no key. */
6564 	MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_GRE_IN_IP,
6565 	/* Tunnel is GRE, with a key. */
6566 	MLXSW_REG_RITR_LOOPBACK_IPIP_TYPE_IP_IN_GRE_KEY_IN_IP,
6567 };
6568 
6569 /* reg_ritr_loopback_ipip_type
6570  * Encapsulation type.
6571  * Access: RW
6572  */
6573 MLXSW_ITEM32(reg, ritr, loopback_ipip_type, 0x10, 24, 4);
6574 
6575 enum mlxsw_reg_ritr_loopback_ipip_options {
6576 	/* The key is defined by gre_key. */
6577 	MLXSW_REG_RITR_LOOPBACK_IPIP_OPTIONS_GRE_KEY_PRESET,
6578 };
6579 
6580 /* reg_ritr_loopback_ipip_options
6581  * Access: RW
6582  */
6583 MLXSW_ITEM32(reg, ritr, loopback_ipip_options, 0x10, 20, 4);
6584 
6585 /* reg_ritr_loopback_ipip_uvr
6586  * Underlay Virtual Router ID.
6587  * Range is 0..cap_max_virtual_routers-1.
6588  * Reserved for Spectrum-2.
6589  * Access: RW
6590  */
6591 MLXSW_ITEM32(reg, ritr, loopback_ipip_uvr, 0x10, 0, 16);
6592 
6593 /* reg_ritr_loopback_ipip_underlay_rif
6594  * Underlay ingress router interface.
6595  * Reserved for Spectrum.
6596  * Access: RW
6597  */
6598 MLXSW_ITEM32(reg, ritr, loopback_ipip_underlay_rif, 0x14, 0, 16);
6599 
6600 /* reg_ritr_loopback_ipip_usip*
6601  * Encapsulation Underlay source IP.
6602  * Access: RW
6603  */
6604 MLXSW_ITEM_BUF(reg, ritr, loopback_ipip_usip6, 0x18, 16);
6605 MLXSW_ITEM32(reg, ritr, loopback_ipip_usip4, 0x24, 0, 32);
6606 
6607 /* reg_ritr_loopback_ipip_gre_key
6608  * GRE Key.
6609  * Reserved when ipip_type is not IP_IN_GRE_KEY_IN_IP.
6610  * Access: RW
6611  */
6612 MLXSW_ITEM32(reg, ritr, loopback_ipip_gre_key, 0x28, 0, 32);
6613 
6614 /* Shared between ingress/egress */
6615 enum mlxsw_reg_ritr_counter_set_type {
6616 	/* No Count. */
6617 	MLXSW_REG_RITR_COUNTER_SET_TYPE_NO_COUNT = 0x0,
6618 	/* Basic. Used for router interfaces, counting the following:
6619 	 *	- Error and Discard counters.
6620 	 *	- Unicast, Multicast and Broadcast counters. Sharing the
6621 	 *	  same set of counters for the different type of traffic
6622 	 *	  (IPv4, IPv6 and mpls).
6623 	 */
6624 	MLXSW_REG_RITR_COUNTER_SET_TYPE_BASIC = 0x9,
6625 };
6626 
6627 /* reg_ritr_ingress_counter_index
6628  * Counter Index for flow counter.
6629  * Access: RW
6630  */
6631 MLXSW_ITEM32(reg, ritr, ingress_counter_index, 0x38, 0, 24);
6632 
6633 /* reg_ritr_ingress_counter_set_type
6634  * Igress Counter Set Type for router interface counter.
6635  * Access: RW
6636  */
6637 MLXSW_ITEM32(reg, ritr, ingress_counter_set_type, 0x38, 24, 8);
6638 
6639 /* reg_ritr_egress_counter_index
6640  * Counter Index for flow counter.
6641  * Access: RW
6642  */
6643 MLXSW_ITEM32(reg, ritr, egress_counter_index, 0x3C, 0, 24);
6644 
6645 /* reg_ritr_egress_counter_set_type
6646  * Egress Counter Set Type for router interface counter.
6647  * Access: RW
6648  */
6649 MLXSW_ITEM32(reg, ritr, egress_counter_set_type, 0x3C, 24, 8);
6650 
6651 static inline void mlxsw_reg_ritr_counter_pack(char *payload, u32 index,
6652 					       bool enable, bool egress)
6653 {
6654 	enum mlxsw_reg_ritr_counter_set_type set_type;
6655 
6656 	if (enable)
6657 		set_type = MLXSW_REG_RITR_COUNTER_SET_TYPE_BASIC;
6658 	else
6659 		set_type = MLXSW_REG_RITR_COUNTER_SET_TYPE_NO_COUNT;
6660 	mlxsw_reg_ritr_egress_counter_set_type_set(payload, set_type);
6661 
6662 	if (egress)
6663 		mlxsw_reg_ritr_egress_counter_index_set(payload, index);
6664 	else
6665 		mlxsw_reg_ritr_ingress_counter_index_set(payload, index);
6666 }
6667 
6668 static inline void mlxsw_reg_ritr_rif_pack(char *payload, u16 rif)
6669 {
6670 	MLXSW_REG_ZERO(ritr, payload);
6671 	mlxsw_reg_ritr_rif_set(payload, rif);
6672 }
6673 
6674 static inline void mlxsw_reg_ritr_sp_if_pack(char *payload, bool lag,
6675 					     u16 system_port, u16 vid)
6676 {
6677 	mlxsw_reg_ritr_sp_if_lag_set(payload, lag);
6678 	mlxsw_reg_ritr_sp_if_system_port_set(payload, system_port);
6679 	mlxsw_reg_ritr_sp_if_vid_set(payload, vid);
6680 }
6681 
6682 static inline void mlxsw_reg_ritr_pack(char *payload, bool enable,
6683 				       enum mlxsw_reg_ritr_if_type type,
6684 				       u16 rif, u16 vr_id, u16 mtu)
6685 {
6686 	bool op = enable ? MLXSW_REG_RITR_RIF_CREATE : MLXSW_REG_RITR_RIF_DEL;
6687 
6688 	MLXSW_REG_ZERO(ritr, payload);
6689 	mlxsw_reg_ritr_enable_set(payload, enable);
6690 	mlxsw_reg_ritr_ipv4_set(payload, 1);
6691 	mlxsw_reg_ritr_ipv6_set(payload, 1);
6692 	mlxsw_reg_ritr_ipv4_mc_set(payload, 1);
6693 	mlxsw_reg_ritr_ipv6_mc_set(payload, 1);
6694 	mlxsw_reg_ritr_type_set(payload, type);
6695 	mlxsw_reg_ritr_op_set(payload, op);
6696 	mlxsw_reg_ritr_rif_set(payload, rif);
6697 	mlxsw_reg_ritr_ipv4_fe_set(payload, 1);
6698 	mlxsw_reg_ritr_ipv6_fe_set(payload, 1);
6699 	mlxsw_reg_ritr_ipv4_mc_fe_set(payload, 1);
6700 	mlxsw_reg_ritr_ipv6_mc_fe_set(payload, 1);
6701 	mlxsw_reg_ritr_lb_en_set(payload, 1);
6702 	mlxsw_reg_ritr_virtual_router_set(payload, vr_id);
6703 	mlxsw_reg_ritr_mtu_set(payload, mtu);
6704 }
6705 
6706 static inline void mlxsw_reg_ritr_mac_pack(char *payload, const char *mac)
6707 {
6708 	mlxsw_reg_ritr_if_mac_memcpy_to(payload, mac);
6709 }
6710 
6711 static inline void
6712 mlxsw_reg_ritr_loopback_ipip_common_pack(char *payload,
6713 			    enum mlxsw_reg_ritr_loopback_ipip_type ipip_type,
6714 			    enum mlxsw_reg_ritr_loopback_ipip_options options,
6715 			    u16 uvr_id, u16 underlay_rif, u32 gre_key)
6716 {
6717 	mlxsw_reg_ritr_loopback_ipip_type_set(payload, ipip_type);
6718 	mlxsw_reg_ritr_loopback_ipip_options_set(payload, options);
6719 	mlxsw_reg_ritr_loopback_ipip_uvr_set(payload, uvr_id);
6720 	mlxsw_reg_ritr_loopback_ipip_underlay_rif_set(payload, underlay_rif);
6721 	mlxsw_reg_ritr_loopback_ipip_gre_key_set(payload, gre_key);
6722 }
6723 
6724 static inline void
6725 mlxsw_reg_ritr_loopback_ipip4_pack(char *payload,
6726 			    enum mlxsw_reg_ritr_loopback_ipip_type ipip_type,
6727 			    enum mlxsw_reg_ritr_loopback_ipip_options options,
6728 			    u16 uvr_id, u16 underlay_rif, u32 usip, u32 gre_key)
6729 {
6730 	mlxsw_reg_ritr_loopback_protocol_set(payload,
6731 				    MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV4);
6732 	mlxsw_reg_ritr_loopback_ipip_common_pack(payload, ipip_type, options,
6733 						 uvr_id, underlay_rif, gre_key);
6734 	mlxsw_reg_ritr_loopback_ipip_usip4_set(payload, usip);
6735 }
6736 
6737 static inline void
6738 mlxsw_reg_ritr_loopback_ipip6_pack(char *payload,
6739 				   enum mlxsw_reg_ritr_loopback_ipip_type ipip_type,
6740 				   enum mlxsw_reg_ritr_loopback_ipip_options options,
6741 				   u16 uvr_id, u16 underlay_rif,
6742 				   const struct in6_addr *usip, u32 gre_key)
6743 {
6744 	enum mlxsw_reg_ritr_loopback_protocol protocol =
6745 		MLXSW_REG_RITR_LOOPBACK_PROTOCOL_IPIP_IPV6;
6746 
6747 	mlxsw_reg_ritr_loopback_protocol_set(payload, protocol);
6748 	mlxsw_reg_ritr_loopback_ipip_common_pack(payload, ipip_type, options,
6749 						 uvr_id, underlay_rif, gre_key);
6750 	mlxsw_reg_ritr_loopback_ipip_usip6_memcpy_to(payload,
6751 						     (const char *)usip);
6752 }
6753 
6754 /* RTAR - Router TCAM Allocation Register
6755  * --------------------------------------
6756  * This register is used for allocation of regions in the TCAM table.
6757  */
6758 #define MLXSW_REG_RTAR_ID 0x8004
6759 #define MLXSW_REG_RTAR_LEN 0x20
6760 
6761 MLXSW_REG_DEFINE(rtar, MLXSW_REG_RTAR_ID, MLXSW_REG_RTAR_LEN);
6762 
6763 enum mlxsw_reg_rtar_op {
6764 	MLXSW_REG_RTAR_OP_ALLOCATE,
6765 	MLXSW_REG_RTAR_OP_RESIZE,
6766 	MLXSW_REG_RTAR_OP_DEALLOCATE,
6767 };
6768 
6769 /* reg_rtar_op
6770  * Access: WO
6771  */
6772 MLXSW_ITEM32(reg, rtar, op, 0x00, 28, 4);
6773 
6774 enum mlxsw_reg_rtar_key_type {
6775 	MLXSW_REG_RTAR_KEY_TYPE_IPV4_MULTICAST = 1,
6776 	MLXSW_REG_RTAR_KEY_TYPE_IPV6_MULTICAST = 3
6777 };
6778 
6779 /* reg_rtar_key_type
6780  * TCAM key type for the region.
6781  * Access: WO
6782  */
6783 MLXSW_ITEM32(reg, rtar, key_type, 0x00, 0, 8);
6784 
6785 /* reg_rtar_region_size
6786  * TCAM region size. When allocating/resizing this is the requested
6787  * size, the response is the actual size.
6788  * Note: Actual size may be larger than requested.
6789  * Reserved for op = Deallocate
6790  * Access: WO
6791  */
6792 MLXSW_ITEM32(reg, rtar, region_size, 0x04, 0, 16);
6793 
6794 static inline void mlxsw_reg_rtar_pack(char *payload,
6795 				       enum mlxsw_reg_rtar_op op,
6796 				       enum mlxsw_reg_rtar_key_type key_type,
6797 				       u16 region_size)
6798 {
6799 	MLXSW_REG_ZERO(rtar, payload);
6800 	mlxsw_reg_rtar_op_set(payload, op);
6801 	mlxsw_reg_rtar_key_type_set(payload, key_type);
6802 	mlxsw_reg_rtar_region_size_set(payload, region_size);
6803 }
6804 
6805 /* RATR - Router Adjacency Table Register
6806  * --------------------------------------
6807  * The RATR register is used to configure the Router Adjacency (next-hop)
6808  * Table.
6809  */
6810 #define MLXSW_REG_RATR_ID 0x8008
6811 #define MLXSW_REG_RATR_LEN 0x2C
6812 
6813 MLXSW_REG_DEFINE(ratr, MLXSW_REG_RATR_ID, MLXSW_REG_RATR_LEN);
6814 
6815 enum mlxsw_reg_ratr_op {
6816 	/* Read */
6817 	MLXSW_REG_RATR_OP_QUERY_READ = 0,
6818 	/* Read and clear activity */
6819 	MLXSW_REG_RATR_OP_QUERY_READ_CLEAR = 2,
6820 	/* Write Adjacency entry */
6821 	MLXSW_REG_RATR_OP_WRITE_WRITE_ENTRY = 1,
6822 	/* Write Adjacency entry only if the activity is cleared.
6823 	 * The write may not succeed if the activity is set. There is not
6824 	 * direct feedback if the write has succeeded or not, however
6825 	 * the get will reveal the actual entry (SW can compare the get
6826 	 * response to the set command).
6827 	 */
6828 	MLXSW_REG_RATR_OP_WRITE_WRITE_ENTRY_ON_ACTIVITY = 3,
6829 };
6830 
6831 /* reg_ratr_op
6832  * Note that Write operation may also be used for updating
6833  * counter_set_type and counter_index. In this case all other
6834  * fields must not be updated.
6835  * Access: OP
6836  */
6837 MLXSW_ITEM32(reg, ratr, op, 0x00, 28, 4);
6838 
6839 /* reg_ratr_v
6840  * Valid bit. Indicates if the adjacency entry is valid.
6841  * Note: the device may need some time before reusing an invalidated
6842  * entry. During this time the entry can not be reused. It is
6843  * recommended to use another entry before reusing an invalidated
6844  * entry (e.g. software can put it at the end of the list for
6845  * reusing). Trying to access an invalidated entry not yet cleared
6846  * by the device results with failure indicating "Try Again" status.
6847  * When valid is '0' then egress_router_interface,trap_action,
6848  * adjacency_parameters and counters are reserved
6849  * Access: RW
6850  */
6851 MLXSW_ITEM32(reg, ratr, v, 0x00, 24, 1);
6852 
6853 /* reg_ratr_a
6854  * Activity. Set for new entries. Set if a packet lookup has hit on
6855  * the specific entry. To clear the a bit, use "clear activity".
6856  * Access: RO
6857  */
6858 MLXSW_ITEM32(reg, ratr, a, 0x00, 16, 1);
6859 
6860 enum mlxsw_reg_ratr_type {
6861 	/* Ethernet */
6862 	MLXSW_REG_RATR_TYPE_ETHERNET,
6863 	/* IPoIB Unicast without GRH.
6864 	 * Reserved for Spectrum.
6865 	 */
6866 	MLXSW_REG_RATR_TYPE_IPOIB_UC,
6867 	/* IPoIB Unicast with GRH. Supported only in table 0 (Ethernet unicast
6868 	 * adjacency).
6869 	 * Reserved for Spectrum.
6870 	 */
6871 	MLXSW_REG_RATR_TYPE_IPOIB_UC_W_GRH,
6872 	/* IPoIB Multicast.
6873 	 * Reserved for Spectrum.
6874 	 */
6875 	MLXSW_REG_RATR_TYPE_IPOIB_MC,
6876 	/* MPLS.
6877 	 * Reserved for SwitchX/-2.
6878 	 */
6879 	MLXSW_REG_RATR_TYPE_MPLS,
6880 	/* IPinIP Encap.
6881 	 * Reserved for SwitchX/-2.
6882 	 */
6883 	MLXSW_REG_RATR_TYPE_IPIP,
6884 };
6885 
6886 /* reg_ratr_type
6887  * Adjacency entry type.
6888  * Access: RW
6889  */
6890 MLXSW_ITEM32(reg, ratr, type, 0x04, 28, 4);
6891 
6892 /* reg_ratr_adjacency_index_low
6893  * Bits 15:0 of index into the adjacency table.
6894  * For SwitchX and SwitchX-2, the adjacency table is linear and
6895  * used for adjacency entries only.
6896  * For Spectrum, the index is to the KVD linear.
6897  * Access: Index
6898  */
6899 MLXSW_ITEM32(reg, ratr, adjacency_index_low, 0x04, 0, 16);
6900 
6901 /* reg_ratr_egress_router_interface
6902  * Range is 0 .. cap_max_router_interfaces - 1
6903  * Access: RW
6904  */
6905 MLXSW_ITEM32(reg, ratr, egress_router_interface, 0x08, 0, 16);
6906 
6907 enum mlxsw_reg_ratr_trap_action {
6908 	MLXSW_REG_RATR_TRAP_ACTION_NOP,
6909 	MLXSW_REG_RATR_TRAP_ACTION_TRAP,
6910 	MLXSW_REG_RATR_TRAP_ACTION_MIRROR_TO_CPU,
6911 	MLXSW_REG_RATR_TRAP_ACTION_MIRROR,
6912 	MLXSW_REG_RATR_TRAP_ACTION_DISCARD_ERRORS,
6913 };
6914 
6915 /* reg_ratr_trap_action
6916  * see mlxsw_reg_ratr_trap_action
6917  * Access: RW
6918  */
6919 MLXSW_ITEM32(reg, ratr, trap_action, 0x0C, 28, 4);
6920 
6921 /* reg_ratr_adjacency_index_high
6922  * Bits 23:16 of the adjacency_index.
6923  * Access: Index
6924  */
6925 MLXSW_ITEM32(reg, ratr, adjacency_index_high, 0x0C, 16, 8);
6926 
6927 enum mlxsw_reg_ratr_trap_id {
6928 	MLXSW_REG_RATR_TRAP_ID_RTR_EGRESS0,
6929 	MLXSW_REG_RATR_TRAP_ID_RTR_EGRESS1,
6930 };
6931 
6932 /* reg_ratr_trap_id
6933  * Trap ID to be reported to CPU.
6934  * Trap-ID is RTR_EGRESS0 or RTR_EGRESS1.
6935  * For trap_action of NOP, MIRROR and DISCARD_ERROR
6936  * Access: RW
6937  */
6938 MLXSW_ITEM32(reg, ratr, trap_id, 0x0C, 0, 8);
6939 
6940 /* reg_ratr_eth_destination_mac
6941  * MAC address of the destination next-hop.
6942  * Access: RW
6943  */
6944 MLXSW_ITEM_BUF(reg, ratr, eth_destination_mac, 0x12, 6);
6945 
6946 enum mlxsw_reg_ratr_ipip_type {
6947 	/* IPv4, address set by mlxsw_reg_ratr_ipip_ipv4_udip. */
6948 	MLXSW_REG_RATR_IPIP_TYPE_IPV4,
6949 	/* IPv6, address set by mlxsw_reg_ratr_ipip_ipv6_ptr. */
6950 	MLXSW_REG_RATR_IPIP_TYPE_IPV6,
6951 };
6952 
6953 /* reg_ratr_ipip_type
6954  * Underlay destination ip type.
6955  * Note: the type field must match the protocol of the router interface.
6956  * Access: RW
6957  */
6958 MLXSW_ITEM32(reg, ratr, ipip_type, 0x10, 16, 4);
6959 
6960 /* reg_ratr_ipip_ipv4_udip
6961  * Underlay ipv4 dip.
6962  * Reserved when ipip_type is IPv6.
6963  * Access: RW
6964  */
6965 MLXSW_ITEM32(reg, ratr, ipip_ipv4_udip, 0x18, 0, 32);
6966 
6967 /* reg_ratr_ipip_ipv6_ptr
6968  * Pointer to IPv6 underlay destination ip address.
6969  * For Spectrum: Pointer to KVD linear space.
6970  * Access: RW
6971  */
6972 MLXSW_ITEM32(reg, ratr, ipip_ipv6_ptr, 0x1C, 0, 24);
6973 
6974 enum mlxsw_reg_flow_counter_set_type {
6975 	/* No count */
6976 	MLXSW_REG_FLOW_COUNTER_SET_TYPE_NO_COUNT = 0x00,
6977 	/* Count packets and bytes */
6978 	MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES = 0x03,
6979 	/* Count only packets */
6980 	MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS = 0x05,
6981 };
6982 
6983 /* reg_ratr_counter_set_type
6984  * Counter set type for flow counters
6985  * Access: RW
6986  */
6987 MLXSW_ITEM32(reg, ratr, counter_set_type, 0x28, 24, 8);
6988 
6989 /* reg_ratr_counter_index
6990  * Counter index for flow counters
6991  * Access: RW
6992  */
6993 MLXSW_ITEM32(reg, ratr, counter_index, 0x28, 0, 24);
6994 
6995 static inline void
6996 mlxsw_reg_ratr_pack(char *payload,
6997 		    enum mlxsw_reg_ratr_op op, bool valid,
6998 		    enum mlxsw_reg_ratr_type type,
6999 		    u32 adjacency_index, u16 egress_rif)
7000 {
7001 	MLXSW_REG_ZERO(ratr, payload);
7002 	mlxsw_reg_ratr_op_set(payload, op);
7003 	mlxsw_reg_ratr_v_set(payload, valid);
7004 	mlxsw_reg_ratr_type_set(payload, type);
7005 	mlxsw_reg_ratr_adjacency_index_low_set(payload, adjacency_index);
7006 	mlxsw_reg_ratr_adjacency_index_high_set(payload, adjacency_index >> 16);
7007 	mlxsw_reg_ratr_egress_router_interface_set(payload, egress_rif);
7008 }
7009 
7010 static inline void mlxsw_reg_ratr_eth_entry_pack(char *payload,
7011 						 const char *dest_mac)
7012 {
7013 	mlxsw_reg_ratr_eth_destination_mac_memcpy_to(payload, dest_mac);
7014 }
7015 
7016 static inline void mlxsw_reg_ratr_ipip4_entry_pack(char *payload, u32 ipv4_udip)
7017 {
7018 	mlxsw_reg_ratr_ipip_type_set(payload, MLXSW_REG_RATR_IPIP_TYPE_IPV4);
7019 	mlxsw_reg_ratr_ipip_ipv4_udip_set(payload, ipv4_udip);
7020 }
7021 
7022 static inline void mlxsw_reg_ratr_ipip6_entry_pack(char *payload, u32 ipv6_ptr)
7023 {
7024 	mlxsw_reg_ratr_ipip_type_set(payload, MLXSW_REG_RATR_IPIP_TYPE_IPV6);
7025 	mlxsw_reg_ratr_ipip_ipv6_ptr_set(payload, ipv6_ptr);
7026 }
7027 
7028 static inline void mlxsw_reg_ratr_counter_pack(char *payload, u64 counter_index,
7029 					       bool counter_enable)
7030 {
7031 	enum mlxsw_reg_flow_counter_set_type set_type;
7032 
7033 	if (counter_enable)
7034 		set_type = MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES;
7035 	else
7036 		set_type = MLXSW_REG_FLOW_COUNTER_SET_TYPE_NO_COUNT;
7037 
7038 	mlxsw_reg_ratr_counter_index_set(payload, counter_index);
7039 	mlxsw_reg_ratr_counter_set_type_set(payload, set_type);
7040 }
7041 
7042 /* RDPM - Router DSCP to Priority Mapping
7043  * --------------------------------------
7044  * Controls the mapping from DSCP field to switch priority on routed packets
7045  */
7046 #define MLXSW_REG_RDPM_ID 0x8009
7047 #define MLXSW_REG_RDPM_BASE_LEN 0x00
7048 #define MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN 0x01
7049 #define MLXSW_REG_RDPM_DSCP_ENTRY_REC_MAX_COUNT 64
7050 #define MLXSW_REG_RDPM_LEN 0x40
7051 #define MLXSW_REG_RDPM_LAST_ENTRY (MLXSW_REG_RDPM_BASE_LEN + \
7052 				   MLXSW_REG_RDPM_LEN - \
7053 				   MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN)
7054 
7055 MLXSW_REG_DEFINE(rdpm, MLXSW_REG_RDPM_ID, MLXSW_REG_RDPM_LEN);
7056 
7057 /* reg_dscp_entry_e
7058  * Enable update of the specific entry
7059  * Access: Index
7060  */
7061 MLXSW_ITEM8_INDEXED(reg, rdpm, dscp_entry_e, MLXSW_REG_RDPM_LAST_ENTRY, 7, 1,
7062 		    -MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN, 0x00, false);
7063 
7064 /* reg_dscp_entry_prio
7065  * Switch Priority
7066  * Access: RW
7067  */
7068 MLXSW_ITEM8_INDEXED(reg, rdpm, dscp_entry_prio, MLXSW_REG_RDPM_LAST_ENTRY, 0, 4,
7069 		    -MLXSW_REG_RDPM_DSCP_ENTRY_REC_LEN, 0x00, false);
7070 
7071 static inline void mlxsw_reg_rdpm_pack(char *payload, unsigned short index,
7072 				       u8 prio)
7073 {
7074 	mlxsw_reg_rdpm_dscp_entry_e_set(payload, index, 1);
7075 	mlxsw_reg_rdpm_dscp_entry_prio_set(payload, index, prio);
7076 }
7077 
7078 /* RICNT - Router Interface Counter Register
7079  * -----------------------------------------
7080  * The RICNT register retrieves per port performance counters
7081  */
7082 #define MLXSW_REG_RICNT_ID 0x800B
7083 #define MLXSW_REG_RICNT_LEN 0x100
7084 
7085 MLXSW_REG_DEFINE(ricnt, MLXSW_REG_RICNT_ID, MLXSW_REG_RICNT_LEN);
7086 
7087 /* reg_ricnt_counter_index
7088  * Counter index
7089  * Access: RW
7090  */
7091 MLXSW_ITEM32(reg, ricnt, counter_index, 0x04, 0, 24);
7092 
7093 enum mlxsw_reg_ricnt_counter_set_type {
7094 	/* No Count. */
7095 	MLXSW_REG_RICNT_COUNTER_SET_TYPE_NO_COUNT = 0x00,
7096 	/* Basic. Used for router interfaces, counting the following:
7097 	 *	- Error and Discard counters.
7098 	 *	- Unicast, Multicast and Broadcast counters. Sharing the
7099 	 *	  same set of counters for the different type of traffic
7100 	 *	  (IPv4, IPv6 and mpls).
7101 	 */
7102 	MLXSW_REG_RICNT_COUNTER_SET_TYPE_BASIC = 0x09,
7103 };
7104 
7105 /* reg_ricnt_counter_set_type
7106  * Counter Set Type for router interface counter
7107  * Access: RW
7108  */
7109 MLXSW_ITEM32(reg, ricnt, counter_set_type, 0x04, 24, 8);
7110 
7111 enum mlxsw_reg_ricnt_opcode {
7112 	/* Nop. Supported only for read access*/
7113 	MLXSW_REG_RICNT_OPCODE_NOP = 0x00,
7114 	/* Clear. Setting the clr bit will reset the counter value for
7115 	 * all counters of the specified Router Interface.
7116 	 */
7117 	MLXSW_REG_RICNT_OPCODE_CLEAR = 0x08,
7118 };
7119 
7120 /* reg_ricnt_opcode
7121  * Opcode
7122  * Access: RW
7123  */
7124 MLXSW_ITEM32(reg, ricnt, op, 0x00, 28, 4);
7125 
7126 /* reg_ricnt_good_unicast_packets
7127  * good unicast packets.
7128  * Access: RW
7129  */
7130 MLXSW_ITEM64(reg, ricnt, good_unicast_packets, 0x08, 0, 64);
7131 
7132 /* reg_ricnt_good_multicast_packets
7133  * good multicast packets.
7134  * Access: RW
7135  */
7136 MLXSW_ITEM64(reg, ricnt, good_multicast_packets, 0x10, 0, 64);
7137 
7138 /* reg_ricnt_good_broadcast_packets
7139  * good broadcast packets
7140  * Access: RW
7141  */
7142 MLXSW_ITEM64(reg, ricnt, good_broadcast_packets, 0x18, 0, 64);
7143 
7144 /* reg_ricnt_good_unicast_bytes
7145  * A count of L3 data and padding octets not including L2 headers
7146  * for good unicast frames.
7147  * Access: RW
7148  */
7149 MLXSW_ITEM64(reg, ricnt, good_unicast_bytes, 0x20, 0, 64);
7150 
7151 /* reg_ricnt_good_multicast_bytes
7152  * A count of L3 data and padding octets not including L2 headers
7153  * for good multicast frames.
7154  * Access: RW
7155  */
7156 MLXSW_ITEM64(reg, ricnt, good_multicast_bytes, 0x28, 0, 64);
7157 
7158 /* reg_ritr_good_broadcast_bytes
7159  * A count of L3 data and padding octets not including L2 headers
7160  * for good broadcast frames.
7161  * Access: RW
7162  */
7163 MLXSW_ITEM64(reg, ricnt, good_broadcast_bytes, 0x30, 0, 64);
7164 
7165 /* reg_ricnt_error_packets
7166  * A count of errored frames that do not pass the router checks.
7167  * Access: RW
7168  */
7169 MLXSW_ITEM64(reg, ricnt, error_packets, 0x38, 0, 64);
7170 
7171 /* reg_ricnt_discrad_packets
7172  * A count of non-errored frames that do not pass the router checks.
7173  * Access: RW
7174  */
7175 MLXSW_ITEM64(reg, ricnt, discard_packets, 0x40, 0, 64);
7176 
7177 /* reg_ricnt_error_bytes
7178  * A count of L3 data and padding octets not including L2 headers
7179  * for errored frames.
7180  * Access: RW
7181  */
7182 MLXSW_ITEM64(reg, ricnt, error_bytes, 0x48, 0, 64);
7183 
7184 /* reg_ricnt_discard_bytes
7185  * A count of L3 data and padding octets not including L2 headers
7186  * for non-errored frames that do not pass the router checks.
7187  * Access: RW
7188  */
7189 MLXSW_ITEM64(reg, ricnt, discard_bytes, 0x50, 0, 64);
7190 
7191 static inline void mlxsw_reg_ricnt_pack(char *payload, u32 index,
7192 					enum mlxsw_reg_ricnt_opcode op)
7193 {
7194 	MLXSW_REG_ZERO(ricnt, payload);
7195 	mlxsw_reg_ricnt_op_set(payload, op);
7196 	mlxsw_reg_ricnt_counter_index_set(payload, index);
7197 	mlxsw_reg_ricnt_counter_set_type_set(payload,
7198 					     MLXSW_REG_RICNT_COUNTER_SET_TYPE_BASIC);
7199 }
7200 
7201 /* RRCR - Router Rules Copy Register Layout
7202  * ----------------------------------------
7203  * This register is used for moving and copying route entry rules.
7204  */
7205 #define MLXSW_REG_RRCR_ID 0x800F
7206 #define MLXSW_REG_RRCR_LEN 0x24
7207 
7208 MLXSW_REG_DEFINE(rrcr, MLXSW_REG_RRCR_ID, MLXSW_REG_RRCR_LEN);
7209 
7210 enum mlxsw_reg_rrcr_op {
7211 	/* Move rules */
7212 	MLXSW_REG_RRCR_OP_MOVE,
7213 	/* Copy rules */
7214 	MLXSW_REG_RRCR_OP_COPY,
7215 };
7216 
7217 /* reg_rrcr_op
7218  * Access: WO
7219  */
7220 MLXSW_ITEM32(reg, rrcr, op, 0x00, 28, 4);
7221 
7222 /* reg_rrcr_offset
7223  * Offset within the region from which to copy/move.
7224  * Access: Index
7225  */
7226 MLXSW_ITEM32(reg, rrcr, offset, 0x00, 0, 16);
7227 
7228 /* reg_rrcr_size
7229  * The number of rules to copy/move.
7230  * Access: WO
7231  */
7232 MLXSW_ITEM32(reg, rrcr, size, 0x04, 0, 16);
7233 
7234 /* reg_rrcr_table_id
7235  * Identifier of the table on which to perform the operation. Encoding is the
7236  * same as in RTAR.key_type
7237  * Access: Index
7238  */
7239 MLXSW_ITEM32(reg, rrcr, table_id, 0x10, 0, 4);
7240 
7241 /* reg_rrcr_dest_offset
7242  * Offset within the region to which to copy/move
7243  * Access: Index
7244  */
7245 MLXSW_ITEM32(reg, rrcr, dest_offset, 0x20, 0, 16);
7246 
7247 static inline void mlxsw_reg_rrcr_pack(char *payload, enum mlxsw_reg_rrcr_op op,
7248 				       u16 offset, u16 size,
7249 				       enum mlxsw_reg_rtar_key_type table_id,
7250 				       u16 dest_offset)
7251 {
7252 	MLXSW_REG_ZERO(rrcr, payload);
7253 	mlxsw_reg_rrcr_op_set(payload, op);
7254 	mlxsw_reg_rrcr_offset_set(payload, offset);
7255 	mlxsw_reg_rrcr_size_set(payload, size);
7256 	mlxsw_reg_rrcr_table_id_set(payload, table_id);
7257 	mlxsw_reg_rrcr_dest_offset_set(payload, dest_offset);
7258 }
7259 
7260 /* RALTA - Router Algorithmic LPM Tree Allocation Register
7261  * -------------------------------------------------------
7262  * RALTA is used to allocate the LPM trees of the SHSPM method.
7263  */
7264 #define MLXSW_REG_RALTA_ID 0x8010
7265 #define MLXSW_REG_RALTA_LEN 0x04
7266 
7267 MLXSW_REG_DEFINE(ralta, MLXSW_REG_RALTA_ID, MLXSW_REG_RALTA_LEN);
7268 
7269 /* reg_ralta_op
7270  * opcode (valid for Write, must be 0 on Read)
7271  * 0 - allocate a tree
7272  * 1 - deallocate a tree
7273  * Access: OP
7274  */
7275 MLXSW_ITEM32(reg, ralta, op, 0x00, 28, 2);
7276 
7277 enum mlxsw_reg_ralxx_protocol {
7278 	MLXSW_REG_RALXX_PROTOCOL_IPV4,
7279 	MLXSW_REG_RALXX_PROTOCOL_IPV6,
7280 };
7281 
7282 /* reg_ralta_protocol
7283  * Protocol.
7284  * Deallocation opcode: Reserved.
7285  * Access: RW
7286  */
7287 MLXSW_ITEM32(reg, ralta, protocol, 0x00, 24, 4);
7288 
7289 /* reg_ralta_tree_id
7290  * An identifier (numbered from 1..cap_shspm_max_trees-1) representing
7291  * the tree identifier (managed by software).
7292  * Note that tree_id 0 is allocated for a default-route tree.
7293  * Access: Index
7294  */
7295 MLXSW_ITEM32(reg, ralta, tree_id, 0x00, 0, 8);
7296 
7297 static inline void mlxsw_reg_ralta_pack(char *payload, bool alloc,
7298 					enum mlxsw_reg_ralxx_protocol protocol,
7299 					u8 tree_id)
7300 {
7301 	MLXSW_REG_ZERO(ralta, payload);
7302 	mlxsw_reg_ralta_op_set(payload, !alloc);
7303 	mlxsw_reg_ralta_protocol_set(payload, protocol);
7304 	mlxsw_reg_ralta_tree_id_set(payload, tree_id);
7305 }
7306 
7307 /* RALST - Router Algorithmic LPM Structure Tree Register
7308  * ------------------------------------------------------
7309  * RALST is used to set and query the structure of an LPM tree.
7310  * The structure of the tree must be sorted as a sorted binary tree, while
7311  * each node is a bin that is tagged as the length of the prefixes the lookup
7312  * will refer to. Therefore, bin X refers to a set of entries with prefixes
7313  * of X bits to match with the destination address. The bin 0 indicates
7314  * the default action, when there is no match of any prefix.
7315  */
7316 #define MLXSW_REG_RALST_ID 0x8011
7317 #define MLXSW_REG_RALST_LEN 0x104
7318 
7319 MLXSW_REG_DEFINE(ralst, MLXSW_REG_RALST_ID, MLXSW_REG_RALST_LEN);
7320 
7321 /* reg_ralst_root_bin
7322  * The bin number of the root bin.
7323  * 0<root_bin=<(length of IP address)
7324  * For a default-route tree configure 0xff
7325  * Access: RW
7326  */
7327 MLXSW_ITEM32(reg, ralst, root_bin, 0x00, 16, 8);
7328 
7329 /* reg_ralst_tree_id
7330  * Tree identifier numbered from 1..(cap_shspm_max_trees-1).
7331  * Access: Index
7332  */
7333 MLXSW_ITEM32(reg, ralst, tree_id, 0x00, 0, 8);
7334 
7335 #define MLXSW_REG_RALST_BIN_NO_CHILD 0xff
7336 #define MLXSW_REG_RALST_BIN_OFFSET 0x04
7337 #define MLXSW_REG_RALST_BIN_COUNT 128
7338 
7339 /* reg_ralst_left_child_bin
7340  * Holding the children of the bin according to the stored tree's structure.
7341  * For trees composed of less than 4 blocks, the bins in excess are reserved.
7342  * Note that tree_id 0 is allocated for a default-route tree, bins are 0xff
7343  * Access: RW
7344  */
7345 MLXSW_ITEM16_INDEXED(reg, ralst, left_child_bin, 0x04, 8, 8, 0x02, 0x00, false);
7346 
7347 /* reg_ralst_right_child_bin
7348  * Holding the children of the bin according to the stored tree's structure.
7349  * For trees composed of less than 4 blocks, the bins in excess are reserved.
7350  * Note that tree_id 0 is allocated for a default-route tree, bins are 0xff
7351  * Access: RW
7352  */
7353 MLXSW_ITEM16_INDEXED(reg, ralst, right_child_bin, 0x04, 0, 8, 0x02, 0x00,
7354 		     false);
7355 
7356 static inline void mlxsw_reg_ralst_pack(char *payload, u8 root_bin, u8 tree_id)
7357 {
7358 	MLXSW_REG_ZERO(ralst, payload);
7359 
7360 	/* Initialize all bins to have no left or right child */
7361 	memset(payload + MLXSW_REG_RALST_BIN_OFFSET,
7362 	       MLXSW_REG_RALST_BIN_NO_CHILD, MLXSW_REG_RALST_BIN_COUNT * 2);
7363 
7364 	mlxsw_reg_ralst_root_bin_set(payload, root_bin);
7365 	mlxsw_reg_ralst_tree_id_set(payload, tree_id);
7366 }
7367 
7368 static inline void mlxsw_reg_ralst_bin_pack(char *payload, u8 bin_number,
7369 					    u8 left_child_bin,
7370 					    u8 right_child_bin)
7371 {
7372 	int bin_index = bin_number - 1;
7373 
7374 	mlxsw_reg_ralst_left_child_bin_set(payload, bin_index, left_child_bin);
7375 	mlxsw_reg_ralst_right_child_bin_set(payload, bin_index,
7376 					    right_child_bin);
7377 }
7378 
7379 /* RALTB - Router Algorithmic LPM Tree Binding Register
7380  * ----------------------------------------------------
7381  * RALTB is used to bind virtual router and protocol to an allocated LPM tree.
7382  */
7383 #define MLXSW_REG_RALTB_ID 0x8012
7384 #define MLXSW_REG_RALTB_LEN 0x04
7385 
7386 MLXSW_REG_DEFINE(raltb, MLXSW_REG_RALTB_ID, MLXSW_REG_RALTB_LEN);
7387 
7388 /* reg_raltb_virtual_router
7389  * Virtual Router ID
7390  * Range is 0..cap_max_virtual_routers-1
7391  * Access: Index
7392  */
7393 MLXSW_ITEM32(reg, raltb, virtual_router, 0x00, 16, 16);
7394 
7395 /* reg_raltb_protocol
7396  * Protocol.
7397  * Access: Index
7398  */
7399 MLXSW_ITEM32(reg, raltb, protocol, 0x00, 12, 4);
7400 
7401 /* reg_raltb_tree_id
7402  * Tree to be used for the {virtual_router, protocol}
7403  * Tree identifier numbered from 1..(cap_shspm_max_trees-1).
7404  * By default, all Unicast IPv4 and IPv6 are bound to tree_id 0.
7405  * Access: RW
7406  */
7407 MLXSW_ITEM32(reg, raltb, tree_id, 0x00, 0, 8);
7408 
7409 static inline void mlxsw_reg_raltb_pack(char *payload, u16 virtual_router,
7410 					enum mlxsw_reg_ralxx_protocol protocol,
7411 					u8 tree_id)
7412 {
7413 	MLXSW_REG_ZERO(raltb, payload);
7414 	mlxsw_reg_raltb_virtual_router_set(payload, virtual_router);
7415 	mlxsw_reg_raltb_protocol_set(payload, protocol);
7416 	mlxsw_reg_raltb_tree_id_set(payload, tree_id);
7417 }
7418 
7419 /* RALUE - Router Algorithmic LPM Unicast Entry Register
7420  * -----------------------------------------------------
7421  * RALUE is used to configure and query LPM entries that serve
7422  * the Unicast protocols.
7423  */
7424 #define MLXSW_REG_RALUE_ID 0x8013
7425 #define MLXSW_REG_RALUE_LEN 0x38
7426 
7427 MLXSW_REG_DEFINE(ralue, MLXSW_REG_RALUE_ID, MLXSW_REG_RALUE_LEN);
7428 
7429 /* reg_ralue_protocol
7430  * Protocol.
7431  * Access: Index
7432  */
7433 MLXSW_ITEM32(reg, ralue, protocol, 0x00, 24, 4);
7434 
7435 enum mlxsw_reg_ralue_op {
7436 	/* Read operation. If entry doesn't exist, the operation fails. */
7437 	MLXSW_REG_RALUE_OP_QUERY_READ = 0,
7438 	/* Clear on read operation. Used to read entry and
7439 	 * clear Activity bit.
7440 	 */
7441 	MLXSW_REG_RALUE_OP_QUERY_CLEAR = 1,
7442 	/* Write operation. Used to write a new entry to the table. All RW
7443 	 * fields are written for new entry. Activity bit is set
7444 	 * for new entries.
7445 	 */
7446 	MLXSW_REG_RALUE_OP_WRITE_WRITE = 0,
7447 	/* Update operation. Used to update an existing route entry and
7448 	 * only update the RW fields that are detailed in the field
7449 	 * op_u_mask. If entry doesn't exist, the operation fails.
7450 	 */
7451 	MLXSW_REG_RALUE_OP_WRITE_UPDATE = 1,
7452 	/* Clear activity. The Activity bit (the field a) is cleared
7453 	 * for the entry.
7454 	 */
7455 	MLXSW_REG_RALUE_OP_WRITE_CLEAR = 2,
7456 	/* Delete operation. Used to delete an existing entry. If entry
7457 	 * doesn't exist, the operation fails.
7458 	 */
7459 	MLXSW_REG_RALUE_OP_WRITE_DELETE = 3,
7460 };
7461 
7462 /* reg_ralue_op
7463  * Operation.
7464  * Access: OP
7465  */
7466 MLXSW_ITEM32(reg, ralue, op, 0x00, 20, 3);
7467 
7468 /* reg_ralue_a
7469  * Activity. Set for new entries. Set if a packet lookup has hit on the
7470  * specific entry, only if the entry is a route. To clear the a bit, use
7471  * "clear activity" op.
7472  * Enabled by activity_dis in RGCR
7473  * Access: RO
7474  */
7475 MLXSW_ITEM32(reg, ralue, a, 0x00, 16, 1);
7476 
7477 /* reg_ralue_virtual_router
7478  * Virtual Router ID
7479  * Range is 0..cap_max_virtual_routers-1
7480  * Access: Index
7481  */
7482 MLXSW_ITEM32(reg, ralue, virtual_router, 0x04, 16, 16);
7483 
7484 #define MLXSW_REG_RALUE_OP_U_MASK_ENTRY_TYPE	BIT(0)
7485 #define MLXSW_REG_RALUE_OP_U_MASK_BMP_LEN	BIT(1)
7486 #define MLXSW_REG_RALUE_OP_U_MASK_ACTION	BIT(2)
7487 
7488 /* reg_ralue_op_u_mask
7489  * opcode update mask.
7490  * On read operation, this field is reserved.
7491  * This field is valid for update opcode, otherwise - reserved.
7492  * This field is a bitmask of the fields that should be updated.
7493  * Access: WO
7494  */
7495 MLXSW_ITEM32(reg, ralue, op_u_mask, 0x04, 8, 3);
7496 
7497 /* reg_ralue_prefix_len
7498  * Number of bits in the prefix of the LPM route.
7499  * Note that for IPv6 prefixes, if prefix_len>64 the entry consumes
7500  * two entries in the physical HW table.
7501  * Access: Index
7502  */
7503 MLXSW_ITEM32(reg, ralue, prefix_len, 0x08, 0, 8);
7504 
7505 /* reg_ralue_dip*
7506  * The prefix of the route or of the marker that the object of the LPM
7507  * is compared with. The most significant bits of the dip are the prefix.
7508  * The least significant bits must be '0' if the prefix_len is smaller
7509  * than 128 for IPv6 or smaller than 32 for IPv4.
7510  * IPv4 address uses bits dip[31:0] and bits dip[127:32] are reserved.
7511  * Access: Index
7512  */
7513 MLXSW_ITEM32(reg, ralue, dip4, 0x18, 0, 32);
7514 MLXSW_ITEM_BUF(reg, ralue, dip6, 0x0C, 16);
7515 
7516 enum mlxsw_reg_ralue_entry_type {
7517 	MLXSW_REG_RALUE_ENTRY_TYPE_MARKER_ENTRY = 1,
7518 	MLXSW_REG_RALUE_ENTRY_TYPE_ROUTE_ENTRY = 2,
7519 	MLXSW_REG_RALUE_ENTRY_TYPE_MARKER_AND_ROUTE_ENTRY = 3,
7520 };
7521 
7522 /* reg_ralue_entry_type
7523  * Entry type.
7524  * Note - for Marker entries, the action_type and action fields are reserved.
7525  * Access: RW
7526  */
7527 MLXSW_ITEM32(reg, ralue, entry_type, 0x1C, 30, 2);
7528 
7529 /* reg_ralue_bmp_len
7530  * The best match prefix length in the case that there is no match for
7531  * longer prefixes.
7532  * If (entry_type != MARKER_ENTRY), bmp_len must be equal to prefix_len
7533  * Note for any update operation with entry_type modification this
7534  * field must be set.
7535  * Access: RW
7536  */
7537 MLXSW_ITEM32(reg, ralue, bmp_len, 0x1C, 16, 8);
7538 
7539 enum mlxsw_reg_ralue_action_type {
7540 	MLXSW_REG_RALUE_ACTION_TYPE_REMOTE,
7541 	MLXSW_REG_RALUE_ACTION_TYPE_LOCAL,
7542 	MLXSW_REG_RALUE_ACTION_TYPE_IP2ME,
7543 };
7544 
7545 /* reg_ralue_action_type
7546  * Action Type
7547  * Indicates how the IP address is connected.
7548  * It can be connected to a local subnet through local_erif or can be
7549  * on a remote subnet connected through a next-hop router,
7550  * or transmitted to the CPU.
7551  * Reserved when entry_type = MARKER_ENTRY
7552  * Access: RW
7553  */
7554 MLXSW_ITEM32(reg, ralue, action_type, 0x1C, 0, 2);
7555 
7556 enum mlxsw_reg_ralue_trap_action {
7557 	MLXSW_REG_RALUE_TRAP_ACTION_NOP,
7558 	MLXSW_REG_RALUE_TRAP_ACTION_TRAP,
7559 	MLXSW_REG_RALUE_TRAP_ACTION_MIRROR_TO_CPU,
7560 	MLXSW_REG_RALUE_TRAP_ACTION_MIRROR,
7561 	MLXSW_REG_RALUE_TRAP_ACTION_DISCARD_ERROR,
7562 };
7563 
7564 /* reg_ralue_trap_action
7565  * Trap action.
7566  * For IP2ME action, only NOP and MIRROR are possible.
7567  * Access: RW
7568  */
7569 MLXSW_ITEM32(reg, ralue, trap_action, 0x20, 28, 4);
7570 
7571 /* reg_ralue_trap_id
7572  * Trap ID to be reported to CPU.
7573  * Trap ID is RTR_INGRESS0 or RTR_INGRESS1.
7574  * For trap_action of NOP, MIRROR and DISCARD_ERROR, trap_id is reserved.
7575  * Access: RW
7576  */
7577 MLXSW_ITEM32(reg, ralue, trap_id, 0x20, 0, 9);
7578 
7579 /* reg_ralue_adjacency_index
7580  * Points to the first entry of the group-based ECMP.
7581  * Only relevant in case of REMOTE action.
7582  * Access: RW
7583  */
7584 MLXSW_ITEM32(reg, ralue, adjacency_index, 0x24, 0, 24);
7585 
7586 /* reg_ralue_ecmp_size
7587  * Amount of sequential entries starting
7588  * from the adjacency_index (the number of ECMPs).
7589  * The valid range is 1-64, 512, 1024, 2048 and 4096.
7590  * Reserved when trap_action is TRAP or DISCARD_ERROR.
7591  * Only relevant in case of REMOTE action.
7592  * Access: RW
7593  */
7594 MLXSW_ITEM32(reg, ralue, ecmp_size, 0x28, 0, 13);
7595 
7596 /* reg_ralue_local_erif
7597  * Egress Router Interface.
7598  * Only relevant in case of LOCAL action.
7599  * Access: RW
7600  */
7601 MLXSW_ITEM32(reg, ralue, local_erif, 0x24, 0, 16);
7602 
7603 /* reg_ralue_ip2me_v
7604  * Valid bit for the tunnel_ptr field.
7605  * If valid = 0 then trap to CPU as IP2ME trap ID.
7606  * If valid = 1 and the packet format allows NVE or IPinIP tunnel
7607  * decapsulation then tunnel decapsulation is done.
7608  * If valid = 1 and packet format does not allow NVE or IPinIP tunnel
7609  * decapsulation then trap as IP2ME trap ID.
7610  * Only relevant in case of IP2ME action.
7611  * Access: RW
7612  */
7613 MLXSW_ITEM32(reg, ralue, ip2me_v, 0x24, 31, 1);
7614 
7615 /* reg_ralue_ip2me_tunnel_ptr
7616  * Tunnel Pointer for NVE or IPinIP tunnel decapsulation.
7617  * For Spectrum, pointer to KVD Linear.
7618  * Only relevant in case of IP2ME action.
7619  * Access: RW
7620  */
7621 MLXSW_ITEM32(reg, ralue, ip2me_tunnel_ptr, 0x24, 0, 24);
7622 
7623 static inline void mlxsw_reg_ralue_pack(char *payload,
7624 					enum mlxsw_reg_ralxx_protocol protocol,
7625 					enum mlxsw_reg_ralue_op op,
7626 					u16 virtual_router, u8 prefix_len)
7627 {
7628 	MLXSW_REG_ZERO(ralue, payload);
7629 	mlxsw_reg_ralue_protocol_set(payload, protocol);
7630 	mlxsw_reg_ralue_op_set(payload, op);
7631 	mlxsw_reg_ralue_virtual_router_set(payload, virtual_router);
7632 	mlxsw_reg_ralue_prefix_len_set(payload, prefix_len);
7633 	mlxsw_reg_ralue_entry_type_set(payload,
7634 				       MLXSW_REG_RALUE_ENTRY_TYPE_ROUTE_ENTRY);
7635 	mlxsw_reg_ralue_bmp_len_set(payload, prefix_len);
7636 }
7637 
7638 static inline void mlxsw_reg_ralue_pack4(char *payload,
7639 					 enum mlxsw_reg_ralxx_protocol protocol,
7640 					 enum mlxsw_reg_ralue_op op,
7641 					 u16 virtual_router, u8 prefix_len,
7642 					 u32 *dip)
7643 {
7644 	mlxsw_reg_ralue_pack(payload, protocol, op, virtual_router, prefix_len);
7645 	if (dip)
7646 		mlxsw_reg_ralue_dip4_set(payload, *dip);
7647 }
7648 
7649 static inline void mlxsw_reg_ralue_pack6(char *payload,
7650 					 enum mlxsw_reg_ralxx_protocol protocol,
7651 					 enum mlxsw_reg_ralue_op op,
7652 					 u16 virtual_router, u8 prefix_len,
7653 					 const void *dip)
7654 {
7655 	mlxsw_reg_ralue_pack(payload, protocol, op, virtual_router, prefix_len);
7656 	if (dip)
7657 		mlxsw_reg_ralue_dip6_memcpy_to(payload, dip);
7658 }
7659 
7660 static inline void
7661 mlxsw_reg_ralue_act_remote_pack(char *payload,
7662 				enum mlxsw_reg_ralue_trap_action trap_action,
7663 				u16 trap_id, u32 adjacency_index, u16 ecmp_size)
7664 {
7665 	mlxsw_reg_ralue_action_type_set(payload,
7666 					MLXSW_REG_RALUE_ACTION_TYPE_REMOTE);
7667 	mlxsw_reg_ralue_trap_action_set(payload, trap_action);
7668 	mlxsw_reg_ralue_trap_id_set(payload, trap_id);
7669 	mlxsw_reg_ralue_adjacency_index_set(payload, adjacency_index);
7670 	mlxsw_reg_ralue_ecmp_size_set(payload, ecmp_size);
7671 }
7672 
7673 static inline void
7674 mlxsw_reg_ralue_act_local_pack(char *payload,
7675 			       enum mlxsw_reg_ralue_trap_action trap_action,
7676 			       u16 trap_id, u16 local_erif)
7677 {
7678 	mlxsw_reg_ralue_action_type_set(payload,
7679 					MLXSW_REG_RALUE_ACTION_TYPE_LOCAL);
7680 	mlxsw_reg_ralue_trap_action_set(payload, trap_action);
7681 	mlxsw_reg_ralue_trap_id_set(payload, trap_id);
7682 	mlxsw_reg_ralue_local_erif_set(payload, local_erif);
7683 }
7684 
7685 static inline void
7686 mlxsw_reg_ralue_act_ip2me_pack(char *payload)
7687 {
7688 	mlxsw_reg_ralue_action_type_set(payload,
7689 					MLXSW_REG_RALUE_ACTION_TYPE_IP2ME);
7690 }
7691 
7692 static inline void
7693 mlxsw_reg_ralue_act_ip2me_tun_pack(char *payload, u32 tunnel_ptr)
7694 {
7695 	mlxsw_reg_ralue_action_type_set(payload,
7696 					MLXSW_REG_RALUE_ACTION_TYPE_IP2ME);
7697 	mlxsw_reg_ralue_ip2me_v_set(payload, 1);
7698 	mlxsw_reg_ralue_ip2me_tunnel_ptr_set(payload, tunnel_ptr);
7699 }
7700 
7701 /* RAUHT - Router Algorithmic LPM Unicast Host Table Register
7702  * ----------------------------------------------------------
7703  * The RAUHT register is used to configure and query the Unicast Host table in
7704  * devices that implement the Algorithmic LPM.
7705  */
7706 #define MLXSW_REG_RAUHT_ID 0x8014
7707 #define MLXSW_REG_RAUHT_LEN 0x74
7708 
7709 MLXSW_REG_DEFINE(rauht, MLXSW_REG_RAUHT_ID, MLXSW_REG_RAUHT_LEN);
7710 
7711 enum mlxsw_reg_rauht_type {
7712 	MLXSW_REG_RAUHT_TYPE_IPV4,
7713 	MLXSW_REG_RAUHT_TYPE_IPV6,
7714 };
7715 
7716 /* reg_rauht_type
7717  * Access: Index
7718  */
7719 MLXSW_ITEM32(reg, rauht, type, 0x00, 24, 2);
7720 
7721 enum mlxsw_reg_rauht_op {
7722 	MLXSW_REG_RAUHT_OP_QUERY_READ = 0,
7723 	/* Read operation */
7724 	MLXSW_REG_RAUHT_OP_QUERY_CLEAR_ON_READ = 1,
7725 	/* Clear on read operation. Used to read entry and clear
7726 	 * activity bit.
7727 	 */
7728 	MLXSW_REG_RAUHT_OP_WRITE_ADD = 0,
7729 	/* Add. Used to write a new entry to the table. All R/W fields are
7730 	 * relevant for new entry. Activity bit is set for new entries.
7731 	 */
7732 	MLXSW_REG_RAUHT_OP_WRITE_UPDATE = 1,
7733 	/* Update action. Used to update an existing route entry and
7734 	 * only update the following fields:
7735 	 * trap_action, trap_id, mac, counter_set_type, counter_index
7736 	 */
7737 	MLXSW_REG_RAUHT_OP_WRITE_CLEAR_ACTIVITY = 2,
7738 	/* Clear activity. A bit is cleared for the entry. */
7739 	MLXSW_REG_RAUHT_OP_WRITE_DELETE = 3,
7740 	/* Delete entry */
7741 	MLXSW_REG_RAUHT_OP_WRITE_DELETE_ALL = 4,
7742 	/* Delete all host entries on a RIF. In this command, dip
7743 	 * field is reserved.
7744 	 */
7745 };
7746 
7747 /* reg_rauht_op
7748  * Access: OP
7749  */
7750 MLXSW_ITEM32(reg, rauht, op, 0x00, 20, 3);
7751 
7752 /* reg_rauht_a
7753  * Activity. Set for new entries. Set if a packet lookup has hit on
7754  * the specific entry.
7755  * To clear the a bit, use "clear activity" op.
7756  * Enabled by activity_dis in RGCR
7757  * Access: RO
7758  */
7759 MLXSW_ITEM32(reg, rauht, a, 0x00, 16, 1);
7760 
7761 /* reg_rauht_rif
7762  * Router Interface
7763  * Access: Index
7764  */
7765 MLXSW_ITEM32(reg, rauht, rif, 0x00, 0, 16);
7766 
7767 /* reg_rauht_dip*
7768  * Destination address.
7769  * Access: Index
7770  */
7771 MLXSW_ITEM32(reg, rauht, dip4, 0x1C, 0x0, 32);
7772 MLXSW_ITEM_BUF(reg, rauht, dip6, 0x10, 16);
7773 
7774 enum mlxsw_reg_rauht_trap_action {
7775 	MLXSW_REG_RAUHT_TRAP_ACTION_NOP,
7776 	MLXSW_REG_RAUHT_TRAP_ACTION_TRAP,
7777 	MLXSW_REG_RAUHT_TRAP_ACTION_MIRROR_TO_CPU,
7778 	MLXSW_REG_RAUHT_TRAP_ACTION_MIRROR,
7779 	MLXSW_REG_RAUHT_TRAP_ACTION_DISCARD_ERRORS,
7780 };
7781 
7782 /* reg_rauht_trap_action
7783  * Access: RW
7784  */
7785 MLXSW_ITEM32(reg, rauht, trap_action, 0x60, 28, 4);
7786 
7787 enum mlxsw_reg_rauht_trap_id {
7788 	MLXSW_REG_RAUHT_TRAP_ID_RTR_EGRESS0,
7789 	MLXSW_REG_RAUHT_TRAP_ID_RTR_EGRESS1,
7790 };
7791 
7792 /* reg_rauht_trap_id
7793  * Trap ID to be reported to CPU.
7794  * Trap-ID is RTR_EGRESS0 or RTR_EGRESS1.
7795  * For trap_action of NOP, MIRROR and DISCARD_ERROR,
7796  * trap_id is reserved.
7797  * Access: RW
7798  */
7799 MLXSW_ITEM32(reg, rauht, trap_id, 0x60, 0, 9);
7800 
7801 /* reg_rauht_counter_set_type
7802  * Counter set type for flow counters
7803  * Access: RW
7804  */
7805 MLXSW_ITEM32(reg, rauht, counter_set_type, 0x68, 24, 8);
7806 
7807 /* reg_rauht_counter_index
7808  * Counter index for flow counters
7809  * Access: RW
7810  */
7811 MLXSW_ITEM32(reg, rauht, counter_index, 0x68, 0, 24);
7812 
7813 /* reg_rauht_mac
7814  * MAC address.
7815  * Access: RW
7816  */
7817 MLXSW_ITEM_BUF(reg, rauht, mac, 0x6E, 6);
7818 
7819 static inline void mlxsw_reg_rauht_pack(char *payload,
7820 					enum mlxsw_reg_rauht_op op, u16 rif,
7821 					const char *mac)
7822 {
7823 	MLXSW_REG_ZERO(rauht, payload);
7824 	mlxsw_reg_rauht_op_set(payload, op);
7825 	mlxsw_reg_rauht_rif_set(payload, rif);
7826 	mlxsw_reg_rauht_mac_memcpy_to(payload, mac);
7827 }
7828 
7829 static inline void mlxsw_reg_rauht_pack4(char *payload,
7830 					 enum mlxsw_reg_rauht_op op, u16 rif,
7831 					 const char *mac, u32 dip)
7832 {
7833 	mlxsw_reg_rauht_pack(payload, op, rif, mac);
7834 	mlxsw_reg_rauht_dip4_set(payload, dip);
7835 }
7836 
7837 static inline void mlxsw_reg_rauht_pack6(char *payload,
7838 					 enum mlxsw_reg_rauht_op op, u16 rif,
7839 					 const char *mac, const char *dip)
7840 {
7841 	mlxsw_reg_rauht_pack(payload, op, rif, mac);
7842 	mlxsw_reg_rauht_type_set(payload, MLXSW_REG_RAUHT_TYPE_IPV6);
7843 	mlxsw_reg_rauht_dip6_memcpy_to(payload, dip);
7844 }
7845 
7846 static inline void mlxsw_reg_rauht_pack_counter(char *payload,
7847 						u64 counter_index)
7848 {
7849 	mlxsw_reg_rauht_counter_index_set(payload, counter_index);
7850 	mlxsw_reg_rauht_counter_set_type_set(payload,
7851 					     MLXSW_REG_FLOW_COUNTER_SET_TYPE_PACKETS_BYTES);
7852 }
7853 
7854 /* RALEU - Router Algorithmic LPM ECMP Update Register
7855  * ---------------------------------------------------
7856  * The register enables updating the ECMP section in the action for multiple
7857  * LPM Unicast entries in a single operation. The update is executed to
7858  * all entries of a {virtual router, protocol} tuple using the same ECMP group.
7859  */
7860 #define MLXSW_REG_RALEU_ID 0x8015
7861 #define MLXSW_REG_RALEU_LEN 0x28
7862 
7863 MLXSW_REG_DEFINE(raleu, MLXSW_REG_RALEU_ID, MLXSW_REG_RALEU_LEN);
7864 
7865 /* reg_raleu_protocol
7866  * Protocol.
7867  * Access: Index
7868  */
7869 MLXSW_ITEM32(reg, raleu, protocol, 0x00, 24, 4);
7870 
7871 /* reg_raleu_virtual_router
7872  * Virtual Router ID
7873  * Range is 0..cap_max_virtual_routers-1
7874  * Access: Index
7875  */
7876 MLXSW_ITEM32(reg, raleu, virtual_router, 0x00, 0, 16);
7877 
7878 /* reg_raleu_adjacency_index
7879  * Adjacency Index used for matching on the existing entries.
7880  * Access: Index
7881  */
7882 MLXSW_ITEM32(reg, raleu, adjacency_index, 0x10, 0, 24);
7883 
7884 /* reg_raleu_ecmp_size
7885  * ECMP Size used for matching on the existing entries.
7886  * Access: Index
7887  */
7888 MLXSW_ITEM32(reg, raleu, ecmp_size, 0x14, 0, 13);
7889 
7890 /* reg_raleu_new_adjacency_index
7891  * New Adjacency Index.
7892  * Access: WO
7893  */
7894 MLXSW_ITEM32(reg, raleu, new_adjacency_index, 0x20, 0, 24);
7895 
7896 /* reg_raleu_new_ecmp_size
7897  * New ECMP Size.
7898  * Access: WO
7899  */
7900 MLXSW_ITEM32(reg, raleu, new_ecmp_size, 0x24, 0, 13);
7901 
7902 static inline void mlxsw_reg_raleu_pack(char *payload,
7903 					enum mlxsw_reg_ralxx_protocol protocol,
7904 					u16 virtual_router,
7905 					u32 adjacency_index, u16 ecmp_size,
7906 					u32 new_adjacency_index,
7907 					u16 new_ecmp_size)
7908 {
7909 	MLXSW_REG_ZERO(raleu, payload);
7910 	mlxsw_reg_raleu_protocol_set(payload, protocol);
7911 	mlxsw_reg_raleu_virtual_router_set(payload, virtual_router);
7912 	mlxsw_reg_raleu_adjacency_index_set(payload, adjacency_index);
7913 	mlxsw_reg_raleu_ecmp_size_set(payload, ecmp_size);
7914 	mlxsw_reg_raleu_new_adjacency_index_set(payload, new_adjacency_index);
7915 	mlxsw_reg_raleu_new_ecmp_size_set(payload, new_ecmp_size);
7916 }
7917 
7918 /* RAUHTD - Router Algorithmic LPM Unicast Host Table Dump Register
7919  * ----------------------------------------------------------------
7920  * The RAUHTD register allows dumping entries from the Router Unicast Host
7921  * Table. For a given session an entry is dumped no more than one time. The
7922  * first RAUHTD access after reset is a new session. A session ends when the
7923  * num_rec response is smaller than num_rec request or for IPv4 when the
7924  * num_entries is smaller than 4. The clear activity affect the current session
7925  * or the last session if a new session has not started.
7926  */
7927 #define MLXSW_REG_RAUHTD_ID 0x8018
7928 #define MLXSW_REG_RAUHTD_BASE_LEN 0x20
7929 #define MLXSW_REG_RAUHTD_REC_LEN 0x20
7930 #define MLXSW_REG_RAUHTD_REC_MAX_NUM 32
7931 #define MLXSW_REG_RAUHTD_LEN (MLXSW_REG_RAUHTD_BASE_LEN + \
7932 		MLXSW_REG_RAUHTD_REC_MAX_NUM * MLXSW_REG_RAUHTD_REC_LEN)
7933 #define MLXSW_REG_RAUHTD_IPV4_ENT_PER_REC 4
7934 
7935 MLXSW_REG_DEFINE(rauhtd, MLXSW_REG_RAUHTD_ID, MLXSW_REG_RAUHTD_LEN);
7936 
7937 #define MLXSW_REG_RAUHTD_FILTER_A BIT(0)
7938 #define MLXSW_REG_RAUHTD_FILTER_RIF BIT(3)
7939 
7940 /* reg_rauhtd_filter_fields
7941  * if a bit is '0' then the relevant field is ignored and dump is done
7942  * regardless of the field value
7943  * Bit0 - filter by activity: entry_a
7944  * Bit3 - filter by entry rip: entry_rif
7945  * Access: Index
7946  */
7947 MLXSW_ITEM32(reg, rauhtd, filter_fields, 0x00, 0, 8);
7948 
7949 enum mlxsw_reg_rauhtd_op {
7950 	MLXSW_REG_RAUHTD_OP_DUMP,
7951 	MLXSW_REG_RAUHTD_OP_DUMP_AND_CLEAR,
7952 };
7953 
7954 /* reg_rauhtd_op
7955  * Access: OP
7956  */
7957 MLXSW_ITEM32(reg, rauhtd, op, 0x04, 24, 2);
7958 
7959 /* reg_rauhtd_num_rec
7960  * At request: number of records requested
7961  * At response: number of records dumped
7962  * For IPv4, each record has 4 entries at request and up to 4 entries
7963  * at response
7964  * Range is 0..MLXSW_REG_RAUHTD_REC_MAX_NUM
7965  * Access: Index
7966  */
7967 MLXSW_ITEM32(reg, rauhtd, num_rec, 0x04, 0, 8);
7968 
7969 /* reg_rauhtd_entry_a
7970  * Dump only if activity has value of entry_a
7971  * Reserved if filter_fields bit0 is '0'
7972  * Access: Index
7973  */
7974 MLXSW_ITEM32(reg, rauhtd, entry_a, 0x08, 16, 1);
7975 
7976 enum mlxsw_reg_rauhtd_type {
7977 	MLXSW_REG_RAUHTD_TYPE_IPV4,
7978 	MLXSW_REG_RAUHTD_TYPE_IPV6,
7979 };
7980 
7981 /* reg_rauhtd_type
7982  * Dump only if record type is:
7983  * 0 - IPv4
7984  * 1 - IPv6
7985  * Access: Index
7986  */
7987 MLXSW_ITEM32(reg, rauhtd, type, 0x08, 0, 4);
7988 
7989 /* reg_rauhtd_entry_rif
7990  * Dump only if RIF has value of entry_rif
7991  * Reserved if filter_fields bit3 is '0'
7992  * Access: Index
7993  */
7994 MLXSW_ITEM32(reg, rauhtd, entry_rif, 0x0C, 0, 16);
7995 
7996 static inline void mlxsw_reg_rauhtd_pack(char *payload,
7997 					 enum mlxsw_reg_rauhtd_type type)
7998 {
7999 	MLXSW_REG_ZERO(rauhtd, payload);
8000 	mlxsw_reg_rauhtd_filter_fields_set(payload, MLXSW_REG_RAUHTD_FILTER_A);
8001 	mlxsw_reg_rauhtd_op_set(payload, MLXSW_REG_RAUHTD_OP_DUMP_AND_CLEAR);
8002 	mlxsw_reg_rauhtd_num_rec_set(payload, MLXSW_REG_RAUHTD_REC_MAX_NUM);
8003 	mlxsw_reg_rauhtd_entry_a_set(payload, 1);
8004 	mlxsw_reg_rauhtd_type_set(payload, type);
8005 }
8006 
8007 /* reg_rauhtd_ipv4_rec_num_entries
8008  * Number of valid entries in this record:
8009  * 0 - 1 valid entry
8010  * 1 - 2 valid entries
8011  * 2 - 3 valid entries
8012  * 3 - 4 valid entries
8013  * Access: RO
8014  */
8015 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_rec_num_entries,
8016 		     MLXSW_REG_RAUHTD_BASE_LEN, 28, 2,
8017 		     MLXSW_REG_RAUHTD_REC_LEN, 0x00, false);
8018 
8019 /* reg_rauhtd_rec_type
8020  * Record type.
8021  * 0 - IPv4
8022  * 1 - IPv6
8023  * Access: RO
8024  */
8025 MLXSW_ITEM32_INDEXED(reg, rauhtd, rec_type, MLXSW_REG_RAUHTD_BASE_LEN, 24, 2,
8026 		     MLXSW_REG_RAUHTD_REC_LEN, 0x00, false);
8027 
8028 #define MLXSW_REG_RAUHTD_IPV4_ENT_LEN 0x8
8029 
8030 /* reg_rauhtd_ipv4_ent_a
8031  * Activity. Set for new entries. Set if a packet lookup has hit on the
8032  * specific entry.
8033  * Access: RO
8034  */
8035 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_a, MLXSW_REG_RAUHTD_BASE_LEN, 16, 1,
8036 		     MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x00, false);
8037 
8038 /* reg_rauhtd_ipv4_ent_rif
8039  * Router interface.
8040  * Access: RO
8041  */
8042 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_rif, MLXSW_REG_RAUHTD_BASE_LEN, 0,
8043 		     16, MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x00, false);
8044 
8045 /* reg_rauhtd_ipv4_ent_dip
8046  * Destination IPv4 address.
8047  * Access: RO
8048  */
8049 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv4_ent_dip, MLXSW_REG_RAUHTD_BASE_LEN, 0,
8050 		     32, MLXSW_REG_RAUHTD_IPV4_ENT_LEN, 0x04, false);
8051 
8052 #define MLXSW_REG_RAUHTD_IPV6_ENT_LEN 0x20
8053 
8054 /* reg_rauhtd_ipv6_ent_a
8055  * Activity. Set for new entries. Set if a packet lookup has hit on the
8056  * specific entry.
8057  * Access: RO
8058  */
8059 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv6_ent_a, MLXSW_REG_RAUHTD_BASE_LEN, 16, 1,
8060 		     MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x00, false);
8061 
8062 /* reg_rauhtd_ipv6_ent_rif
8063  * Router interface.
8064  * Access: RO
8065  */
8066 MLXSW_ITEM32_INDEXED(reg, rauhtd, ipv6_ent_rif, MLXSW_REG_RAUHTD_BASE_LEN, 0,
8067 		     16, MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x00, false);
8068 
8069 /* reg_rauhtd_ipv6_ent_dip
8070  * Destination IPv6 address.
8071  * Access: RO
8072  */
8073 MLXSW_ITEM_BUF_INDEXED(reg, rauhtd, ipv6_ent_dip, MLXSW_REG_RAUHTD_BASE_LEN,
8074 		       16, MLXSW_REG_RAUHTD_IPV6_ENT_LEN, 0x10);
8075 
8076 static inline void mlxsw_reg_rauhtd_ent_ipv4_unpack(char *payload,
8077 						    int ent_index, u16 *p_rif,
8078 						    u32 *p_dip)
8079 {
8080 	*p_rif = mlxsw_reg_rauhtd_ipv4_ent_rif_get(payload, ent_index);
8081 	*p_dip = mlxsw_reg_rauhtd_ipv4_ent_dip_get(payload, ent_index);
8082 }
8083 
8084 static inline void mlxsw_reg_rauhtd_ent_ipv6_unpack(char *payload,
8085 						    int rec_index, u16 *p_rif,
8086 						    char *p_dip)
8087 {
8088 	*p_rif = mlxsw_reg_rauhtd_ipv6_ent_rif_get(payload, rec_index);
8089 	mlxsw_reg_rauhtd_ipv6_ent_dip_memcpy_from(payload, rec_index, p_dip);
8090 }
8091 
8092 /* RTDP - Routing Tunnel Decap Properties Register
8093  * -----------------------------------------------
8094  * The RTDP register is used for configuring the tunnel decap properties of NVE
8095  * and IPinIP.
8096  */
8097 #define MLXSW_REG_RTDP_ID 0x8020
8098 #define MLXSW_REG_RTDP_LEN 0x44
8099 
8100 MLXSW_REG_DEFINE(rtdp, MLXSW_REG_RTDP_ID, MLXSW_REG_RTDP_LEN);
8101 
8102 enum mlxsw_reg_rtdp_type {
8103 	MLXSW_REG_RTDP_TYPE_NVE,
8104 	MLXSW_REG_RTDP_TYPE_IPIP,
8105 };
8106 
8107 /* reg_rtdp_type
8108  * Type of the RTDP entry as per enum mlxsw_reg_rtdp_type.
8109  * Access: RW
8110  */
8111 MLXSW_ITEM32(reg, rtdp, type, 0x00, 28, 4);
8112 
8113 /* reg_rtdp_tunnel_index
8114  * Index to the Decap entry.
8115  * For Spectrum, Index to KVD Linear.
8116  * Access: Index
8117  */
8118 MLXSW_ITEM32(reg, rtdp, tunnel_index, 0x00, 0, 24);
8119 
8120 /* reg_rtdp_egress_router_interface
8121  * Underlay egress router interface.
8122  * Valid range is from 0 to cap_max_router_interfaces - 1
8123  * Access: RW
8124  */
8125 MLXSW_ITEM32(reg, rtdp, egress_router_interface, 0x40, 0, 16);
8126 
8127 /* IPinIP */
8128 
8129 /* reg_rtdp_ipip_irif
8130  * Ingress Router Interface for the overlay router
8131  * Access: RW
8132  */
8133 MLXSW_ITEM32(reg, rtdp, ipip_irif, 0x04, 16, 16);
8134 
8135 enum mlxsw_reg_rtdp_ipip_sip_check {
8136 	/* No sip checks. */
8137 	MLXSW_REG_RTDP_IPIP_SIP_CHECK_NO,
8138 	/* Filter packet if underlay is not IPv4 or if underlay SIP does not
8139 	 * equal ipv4_usip.
8140 	 */
8141 	MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV4,
8142 	/* Filter packet if underlay is not IPv6 or if underlay SIP does not
8143 	 * equal ipv6_usip.
8144 	 */
8145 	MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV6 = 3,
8146 };
8147 
8148 /* reg_rtdp_ipip_sip_check
8149  * SIP check to perform. If decapsulation failed due to these configurations
8150  * then trap_id is IPIP_DECAP_ERROR.
8151  * Access: RW
8152  */
8153 MLXSW_ITEM32(reg, rtdp, ipip_sip_check, 0x04, 0, 3);
8154 
8155 /* If set, allow decapsulation of IPinIP (without GRE). */
8156 #define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_IPIP	BIT(0)
8157 /* If set, allow decapsulation of IPinGREinIP without a key. */
8158 #define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_GRE	BIT(1)
8159 /* If set, allow decapsulation of IPinGREinIP with a key. */
8160 #define MLXSW_REG_RTDP_IPIP_TYPE_CHECK_ALLOW_GRE_KEY	BIT(2)
8161 
8162 /* reg_rtdp_ipip_type_check
8163  * Flags as per MLXSW_REG_RTDP_IPIP_TYPE_CHECK_*. If decapsulation failed due to
8164  * these configurations then trap_id is IPIP_DECAP_ERROR.
8165  * Access: RW
8166  */
8167 MLXSW_ITEM32(reg, rtdp, ipip_type_check, 0x08, 24, 3);
8168 
8169 /* reg_rtdp_ipip_gre_key_check
8170  * Whether GRE key should be checked. When check is enabled:
8171  * - A packet received as IPinIP (without GRE) will always pass.
8172  * - A packet received as IPinGREinIP without a key will not pass the check.
8173  * - A packet received as IPinGREinIP with a key will pass the check only if the
8174  *   key in the packet is equal to expected_gre_key.
8175  * If decapsulation failed due to GRE key then trap_id is IPIP_DECAP_ERROR.
8176  * Access: RW
8177  */
8178 MLXSW_ITEM32(reg, rtdp, ipip_gre_key_check, 0x08, 23, 1);
8179 
8180 /* reg_rtdp_ipip_ipv4_usip
8181  * Underlay IPv4 address for ipv4 source address check.
8182  * Reserved when sip_check is not '1'.
8183  * Access: RW
8184  */
8185 MLXSW_ITEM32(reg, rtdp, ipip_ipv4_usip, 0x0C, 0, 32);
8186 
8187 /* reg_rtdp_ipip_ipv6_usip_ptr
8188  * This field is valid when sip_check is "sipv6 check explicitly". This is a
8189  * pointer to the IPv6 DIP which is configured by RIPS. For Spectrum, the index
8190  * is to the KVD linear.
8191  * Reserved when sip_check is not MLXSW_REG_RTDP_IPIP_SIP_CHECK_FILTER_IPV6.
8192  * Access: RW
8193  */
8194 MLXSW_ITEM32(reg, rtdp, ipip_ipv6_usip_ptr, 0x10, 0, 24);
8195 
8196 /* reg_rtdp_ipip_expected_gre_key
8197  * GRE key for checking.
8198  * Reserved when gre_key_check is '0'.
8199  * Access: RW
8200  */
8201 MLXSW_ITEM32(reg, rtdp, ipip_expected_gre_key, 0x14, 0, 32);
8202 
8203 static inline void mlxsw_reg_rtdp_pack(char *payload,
8204 				       enum mlxsw_reg_rtdp_type type,
8205 				       u32 tunnel_index)
8206 {
8207 	MLXSW_REG_ZERO(rtdp, payload);
8208 	mlxsw_reg_rtdp_type_set(payload, type);
8209 	mlxsw_reg_rtdp_tunnel_index_set(payload, tunnel_index);
8210 }
8211 
8212 static inline void
8213 mlxsw_reg_rtdp_ipip_pack(char *payload, u16 irif,
8214 			 enum mlxsw_reg_rtdp_ipip_sip_check sip_check,
8215 			 unsigned int type_check, bool gre_key_check,
8216 			 u32 expected_gre_key)
8217 {
8218 	mlxsw_reg_rtdp_ipip_irif_set(payload, irif);
8219 	mlxsw_reg_rtdp_ipip_sip_check_set(payload, sip_check);
8220 	mlxsw_reg_rtdp_ipip_type_check_set(payload, type_check);
8221 	mlxsw_reg_rtdp_ipip_gre_key_check_set(payload, gre_key_check);
8222 	mlxsw_reg_rtdp_ipip_expected_gre_key_set(payload, expected_gre_key);
8223 }
8224 
8225 static inline void
8226 mlxsw_reg_rtdp_ipip4_pack(char *payload, u16 irif,
8227 			  enum mlxsw_reg_rtdp_ipip_sip_check sip_check,
8228 			  unsigned int type_check, bool gre_key_check,
8229 			  u32 ipv4_usip, u32 expected_gre_key)
8230 {
8231 	mlxsw_reg_rtdp_ipip_pack(payload, irif, sip_check, type_check,
8232 				 gre_key_check, expected_gre_key);
8233 	mlxsw_reg_rtdp_ipip_ipv4_usip_set(payload, ipv4_usip);
8234 }
8235 
8236 static inline void
8237 mlxsw_reg_rtdp_ipip6_pack(char *payload, u16 irif,
8238 			  enum mlxsw_reg_rtdp_ipip_sip_check sip_check,
8239 			  unsigned int type_check, bool gre_key_check,
8240 			  u32 ipv6_usip_ptr, u32 expected_gre_key)
8241 {
8242 	mlxsw_reg_rtdp_ipip_pack(payload, irif, sip_check, type_check,
8243 				 gre_key_check, expected_gre_key);
8244 	mlxsw_reg_rtdp_ipip_ipv6_usip_ptr_set(payload, ipv6_usip_ptr);
8245 }
8246 
8247 /* RIPS - Router IP version Six Register
8248  * -------------------------------------
8249  * The RIPS register is used to store IPv6 addresses for use by the NVE and
8250  * IPinIP
8251  */
8252 #define MLXSW_REG_RIPS_ID 0x8021
8253 #define MLXSW_REG_RIPS_LEN 0x14
8254 
8255 MLXSW_REG_DEFINE(rips, MLXSW_REG_RIPS_ID, MLXSW_REG_RIPS_LEN);
8256 
8257 /* reg_rips_index
8258  * Index to IPv6 address.
8259  * For Spectrum, the index is to the KVD linear.
8260  * Access: Index
8261  */
8262 MLXSW_ITEM32(reg, rips, index, 0x00, 0, 24);
8263 
8264 /* reg_rips_ipv6
8265  * IPv6 address
8266  * Access: RW
8267  */
8268 MLXSW_ITEM_BUF(reg, rips, ipv6, 0x04, 16);
8269 
8270 static inline void mlxsw_reg_rips_pack(char *payload, u32 index,
8271 				       const struct in6_addr *ipv6)
8272 {
8273 	MLXSW_REG_ZERO(rips, payload);
8274 	mlxsw_reg_rips_index_set(payload, index);
8275 	mlxsw_reg_rips_ipv6_memcpy_to(payload, (const char *)ipv6);
8276 }
8277 
8278 /* RATRAD - Router Adjacency Table Activity Dump Register
8279  * ------------------------------------------------------
8280  * The RATRAD register is used to dump and optionally clear activity bits of
8281  * router adjacency table entries.
8282  */
8283 #define MLXSW_REG_RATRAD_ID 0x8022
8284 #define MLXSW_REG_RATRAD_LEN 0x210
8285 
8286 MLXSW_REG_DEFINE(ratrad, MLXSW_REG_RATRAD_ID, MLXSW_REG_RATRAD_LEN);
8287 
8288 enum {
8289 	/* Read activity */
8290 	MLXSW_REG_RATRAD_OP_READ_ACTIVITY,
8291 	/* Read and clear activity */
8292 	MLXSW_REG_RATRAD_OP_READ_CLEAR_ACTIVITY,
8293 };
8294 
8295 /* reg_ratrad_op
8296  * Access: Operation
8297  */
8298 MLXSW_ITEM32(reg, ratrad, op, 0x00, 30, 2);
8299 
8300 /* reg_ratrad_ecmp_size
8301  * ecmp_size is the amount of sequential entries from adjacency_index. Valid
8302  * ranges:
8303  * Spectrum-1: 32-64, 512, 1024, 2048, 4096
8304  * Spectrum-2/3: 32-128, 256, 512, 1024, 2048, 4096
8305  * Access: Index
8306  */
8307 MLXSW_ITEM32(reg, ratrad, ecmp_size, 0x00, 0, 13);
8308 
8309 /* reg_ratrad_adjacency_index
8310  * Index into the adjacency table.
8311  * Access: Index
8312  */
8313 MLXSW_ITEM32(reg, ratrad, adjacency_index, 0x04, 0, 24);
8314 
8315 /* reg_ratrad_activity_vector
8316  * Activity bit per adjacency index.
8317  * Bits higher than ecmp_size are reserved.
8318  * Access: RO
8319  */
8320 MLXSW_ITEM_BIT_ARRAY(reg, ratrad, activity_vector, 0x10, 0x200, 1);
8321 
8322 static inline void mlxsw_reg_ratrad_pack(char *payload, u32 adjacency_index,
8323 					 u16 ecmp_size)
8324 {
8325 	MLXSW_REG_ZERO(ratrad, payload);
8326 	mlxsw_reg_ratrad_op_set(payload,
8327 				MLXSW_REG_RATRAD_OP_READ_CLEAR_ACTIVITY);
8328 	mlxsw_reg_ratrad_ecmp_size_set(payload, ecmp_size);
8329 	mlxsw_reg_ratrad_adjacency_index_set(payload, adjacency_index);
8330 }
8331 
8332 /* RIGR-V2 - Router Interface Group Register Version 2
8333  * ---------------------------------------------------
8334  * The RIGR_V2 register is used to add, remove and query egress interface list
8335  * of a multicast forwarding entry.
8336  */
8337 #define MLXSW_REG_RIGR2_ID 0x8023
8338 #define MLXSW_REG_RIGR2_LEN 0xB0
8339 
8340 #define MLXSW_REG_RIGR2_MAX_ERIFS 32
8341 
8342 MLXSW_REG_DEFINE(rigr2, MLXSW_REG_RIGR2_ID, MLXSW_REG_RIGR2_LEN);
8343 
8344 /* reg_rigr2_rigr_index
8345  * KVD Linear index.
8346  * Access: Index
8347  */
8348 MLXSW_ITEM32(reg, rigr2, rigr_index, 0x04, 0, 24);
8349 
8350 /* reg_rigr2_vnext
8351  * Next RIGR Index is valid.
8352  * Access: RW
8353  */
8354 MLXSW_ITEM32(reg, rigr2, vnext, 0x08, 31, 1);
8355 
8356 /* reg_rigr2_next_rigr_index
8357  * Next RIGR Index. The index is to the KVD linear.
8358  * Reserved when vnxet = '0'.
8359  * Access: RW
8360  */
8361 MLXSW_ITEM32(reg, rigr2, next_rigr_index, 0x08, 0, 24);
8362 
8363 /* reg_rigr2_vrmid
8364  * RMID Index is valid.
8365  * Access: RW
8366  */
8367 MLXSW_ITEM32(reg, rigr2, vrmid, 0x20, 31, 1);
8368 
8369 /* reg_rigr2_rmid_index
8370  * RMID Index.
8371  * Range 0 .. max_mid - 1
8372  * Reserved when vrmid = '0'.
8373  * The index is to the Port Group Table (PGT)
8374  * Access: RW
8375  */
8376 MLXSW_ITEM32(reg, rigr2, rmid_index, 0x20, 0, 16);
8377 
8378 /* reg_rigr2_erif_entry_v
8379  * Egress Router Interface is valid.
8380  * Note that low-entries must be set if high-entries are set. For
8381  * example: if erif_entry[2].v is set then erif_entry[1].v and
8382  * erif_entry[0].v must be set.
8383  * Index can be from 0 to cap_mc_erif_list_entries-1
8384  * Access: RW
8385  */
8386 MLXSW_ITEM32_INDEXED(reg, rigr2, erif_entry_v, 0x24, 31, 1, 4, 0, false);
8387 
8388 /* reg_rigr2_erif_entry_erif
8389  * Egress Router Interface.
8390  * Valid range is from 0 to cap_max_router_interfaces - 1
8391  * Index can be from 0 to MLXSW_REG_RIGR2_MAX_ERIFS - 1
8392  * Access: RW
8393  */
8394 MLXSW_ITEM32_INDEXED(reg, rigr2, erif_entry_erif, 0x24, 0, 16, 4, 0, false);
8395 
8396 static inline void mlxsw_reg_rigr2_pack(char *payload, u32 rigr_index,
8397 					bool vnext, u32 next_rigr_index)
8398 {
8399 	MLXSW_REG_ZERO(rigr2, payload);
8400 	mlxsw_reg_rigr2_rigr_index_set(payload, rigr_index);
8401 	mlxsw_reg_rigr2_vnext_set(payload, vnext);
8402 	mlxsw_reg_rigr2_next_rigr_index_set(payload, next_rigr_index);
8403 	mlxsw_reg_rigr2_vrmid_set(payload, 0);
8404 	mlxsw_reg_rigr2_rmid_index_set(payload, 0);
8405 }
8406 
8407 static inline void mlxsw_reg_rigr2_erif_entry_pack(char *payload, int index,
8408 						   bool v, u16 erif)
8409 {
8410 	mlxsw_reg_rigr2_erif_entry_v_set(payload, index, v);
8411 	mlxsw_reg_rigr2_erif_entry_erif_set(payload, index, erif);
8412 }
8413 
8414 /* RECR-V2 - Router ECMP Configuration Version 2 Register
8415  * ------------------------------------------------------
8416  */
8417 #define MLXSW_REG_RECR2_ID 0x8025
8418 #define MLXSW_REG_RECR2_LEN 0x38
8419 
8420 MLXSW_REG_DEFINE(recr2, MLXSW_REG_RECR2_ID, MLXSW_REG_RECR2_LEN);
8421 
8422 /* reg_recr2_pp
8423  * Per-port configuration
8424  * Access: Index
8425  */
8426 MLXSW_ITEM32(reg, recr2, pp, 0x00, 24, 1);
8427 
8428 /* reg_recr2_sh
8429  * Symmetric hash
8430  * Access: RW
8431  */
8432 MLXSW_ITEM32(reg, recr2, sh, 0x00, 8, 1);
8433 
8434 /* reg_recr2_seed
8435  * Seed
8436  * Access: RW
8437  */
8438 MLXSW_ITEM32(reg, recr2, seed, 0x08, 0, 32);
8439 
8440 enum {
8441 	/* Enable IPv4 fields if packet is not TCP and not UDP */
8442 	MLXSW_REG_RECR2_IPV4_EN_NOT_TCP_NOT_UDP	= 3,
8443 	/* Enable IPv4 fields if packet is TCP or UDP */
8444 	MLXSW_REG_RECR2_IPV4_EN_TCP_UDP		= 4,
8445 	/* Enable IPv6 fields if packet is not TCP and not UDP */
8446 	MLXSW_REG_RECR2_IPV6_EN_NOT_TCP_NOT_UDP	= 5,
8447 	/* Enable IPv6 fields if packet is TCP or UDP */
8448 	MLXSW_REG_RECR2_IPV6_EN_TCP_UDP		= 6,
8449 	/* Enable TCP/UDP header fields if packet is IPv4 */
8450 	MLXSW_REG_RECR2_TCP_UDP_EN_IPV4		= 7,
8451 	/* Enable TCP/UDP header fields if packet is IPv6 */
8452 	MLXSW_REG_RECR2_TCP_UDP_EN_IPV6		= 8,
8453 
8454 	__MLXSW_REG_RECR2_HEADER_CNT,
8455 };
8456 
8457 /* reg_recr2_outer_header_enables
8458  * Bit mask where each bit enables a specific layer to be included in
8459  * the hash calculation.
8460  * Access: RW
8461  */
8462 MLXSW_ITEM_BIT_ARRAY(reg, recr2, outer_header_enables, 0x10, 0x04, 1);
8463 
8464 enum {
8465 	/* IPv4 Source IP */
8466 	MLXSW_REG_RECR2_IPV4_SIP0			= 9,
8467 	MLXSW_REG_RECR2_IPV4_SIP3			= 12,
8468 	/* IPv4 Destination IP */
8469 	MLXSW_REG_RECR2_IPV4_DIP0			= 13,
8470 	MLXSW_REG_RECR2_IPV4_DIP3			= 16,
8471 	/* IP Protocol */
8472 	MLXSW_REG_RECR2_IPV4_PROTOCOL			= 17,
8473 	/* IPv6 Source IP */
8474 	MLXSW_REG_RECR2_IPV6_SIP0_7			= 21,
8475 	MLXSW_REG_RECR2_IPV6_SIP8			= 29,
8476 	MLXSW_REG_RECR2_IPV6_SIP15			= 36,
8477 	/* IPv6 Destination IP */
8478 	MLXSW_REG_RECR2_IPV6_DIP0_7			= 37,
8479 	MLXSW_REG_RECR2_IPV6_DIP8			= 45,
8480 	MLXSW_REG_RECR2_IPV6_DIP15			= 52,
8481 	/* IPv6 Next Header */
8482 	MLXSW_REG_RECR2_IPV6_NEXT_HEADER		= 53,
8483 	/* IPv6 Flow Label */
8484 	MLXSW_REG_RECR2_IPV6_FLOW_LABEL			= 57,
8485 	/* TCP/UDP Source Port */
8486 	MLXSW_REG_RECR2_TCP_UDP_SPORT			= 74,
8487 	/* TCP/UDP Destination Port */
8488 	MLXSW_REG_RECR2_TCP_UDP_DPORT			= 75,
8489 
8490 	__MLXSW_REG_RECR2_FIELD_CNT,
8491 };
8492 
8493 /* reg_recr2_outer_header_fields_enable
8494  * Packet fields to enable for ECMP hash subject to outer_header_enable.
8495  * Access: RW
8496  */
8497 MLXSW_ITEM_BIT_ARRAY(reg, recr2, outer_header_fields_enable, 0x14, 0x14, 1);
8498 
8499 /* reg_recr2_inner_header_enables
8500  * Bit mask where each bit enables a specific inner layer to be included in the
8501  * hash calculation. Same values as reg_recr2_outer_header_enables.
8502  * Access: RW
8503  */
8504 MLXSW_ITEM_BIT_ARRAY(reg, recr2, inner_header_enables, 0x2C, 0x04, 1);
8505 
8506 enum {
8507 	/* Inner IPv4 Source IP */
8508 	MLXSW_REG_RECR2_INNER_IPV4_SIP0			= 3,
8509 	MLXSW_REG_RECR2_INNER_IPV4_SIP3			= 6,
8510 	/* Inner IPv4 Destination IP */
8511 	MLXSW_REG_RECR2_INNER_IPV4_DIP0			= 7,
8512 	MLXSW_REG_RECR2_INNER_IPV4_DIP3			= 10,
8513 	/* Inner IP Protocol */
8514 	MLXSW_REG_RECR2_INNER_IPV4_PROTOCOL		= 11,
8515 	/* Inner IPv6 Source IP */
8516 	MLXSW_REG_RECR2_INNER_IPV6_SIP0_7		= 12,
8517 	MLXSW_REG_RECR2_INNER_IPV6_SIP8			= 20,
8518 	MLXSW_REG_RECR2_INNER_IPV6_SIP15		= 27,
8519 	/* Inner IPv6 Destination IP */
8520 	MLXSW_REG_RECR2_INNER_IPV6_DIP0_7		= 28,
8521 	MLXSW_REG_RECR2_INNER_IPV6_DIP8			= 36,
8522 	MLXSW_REG_RECR2_INNER_IPV6_DIP15		= 43,
8523 	/* Inner IPv6 Next Header */
8524 	MLXSW_REG_RECR2_INNER_IPV6_NEXT_HEADER		= 44,
8525 	/* Inner IPv6 Flow Label */
8526 	MLXSW_REG_RECR2_INNER_IPV6_FLOW_LABEL		= 45,
8527 	/* Inner TCP/UDP Source Port */
8528 	MLXSW_REG_RECR2_INNER_TCP_UDP_SPORT		= 46,
8529 	/* Inner TCP/UDP Destination Port */
8530 	MLXSW_REG_RECR2_INNER_TCP_UDP_DPORT		= 47,
8531 
8532 	__MLXSW_REG_RECR2_INNER_FIELD_CNT,
8533 };
8534 
8535 /* reg_recr2_inner_header_fields_enable
8536  * Inner packet fields to enable for ECMP hash subject to inner_header_enables.
8537  * Access: RW
8538  */
8539 MLXSW_ITEM_BIT_ARRAY(reg, recr2, inner_header_fields_enable, 0x30, 0x08, 1);
8540 
8541 static inline void mlxsw_reg_recr2_pack(char *payload, u32 seed)
8542 {
8543 	MLXSW_REG_ZERO(recr2, payload);
8544 	mlxsw_reg_recr2_pp_set(payload, false);
8545 	mlxsw_reg_recr2_sh_set(payload, true);
8546 	mlxsw_reg_recr2_seed_set(payload, seed);
8547 }
8548 
8549 /* RMFT-V2 - Router Multicast Forwarding Table Version 2 Register
8550  * --------------------------------------------------------------
8551  * The RMFT_V2 register is used to configure and query the multicast table.
8552  */
8553 #define MLXSW_REG_RMFT2_ID 0x8027
8554 #define MLXSW_REG_RMFT2_LEN 0x174
8555 
8556 MLXSW_REG_DEFINE(rmft2, MLXSW_REG_RMFT2_ID, MLXSW_REG_RMFT2_LEN);
8557 
8558 /* reg_rmft2_v
8559  * Valid
8560  * Access: RW
8561  */
8562 MLXSW_ITEM32(reg, rmft2, v, 0x00, 31, 1);
8563 
8564 enum mlxsw_reg_rmft2_type {
8565 	MLXSW_REG_RMFT2_TYPE_IPV4,
8566 	MLXSW_REG_RMFT2_TYPE_IPV6
8567 };
8568 
8569 /* reg_rmft2_type
8570  * Access: Index
8571  */
8572 MLXSW_ITEM32(reg, rmft2, type, 0x00, 28, 2);
8573 
8574 enum mlxsw_sp_reg_rmft2_op {
8575 	/* For Write:
8576 	 * Write operation. Used to write a new entry to the table. All RW
8577 	 * fields are relevant for new entry. Activity bit is set for new
8578 	 * entries - Note write with v (Valid) 0 will delete the entry.
8579 	 * For Query:
8580 	 * Read operation
8581 	 */
8582 	MLXSW_REG_RMFT2_OP_READ_WRITE,
8583 };
8584 
8585 /* reg_rmft2_op
8586  * Operation.
8587  * Access: OP
8588  */
8589 MLXSW_ITEM32(reg, rmft2, op, 0x00, 20, 2);
8590 
8591 /* reg_rmft2_a
8592  * Activity. Set for new entries. Set if a packet lookup has hit on the specific
8593  * entry.
8594  * Access: RO
8595  */
8596 MLXSW_ITEM32(reg, rmft2, a, 0x00, 16, 1);
8597 
8598 /* reg_rmft2_offset
8599  * Offset within the multicast forwarding table to write to.
8600  * Access: Index
8601  */
8602 MLXSW_ITEM32(reg, rmft2, offset, 0x00, 0, 16);
8603 
8604 /* reg_rmft2_virtual_router
8605  * Virtual Router ID. Range from 0..cap_max_virtual_routers-1
8606  * Access: RW
8607  */
8608 MLXSW_ITEM32(reg, rmft2, virtual_router, 0x04, 0, 16);
8609 
8610 enum mlxsw_reg_rmft2_irif_mask {
8611 	MLXSW_REG_RMFT2_IRIF_MASK_IGNORE,
8612 	MLXSW_REG_RMFT2_IRIF_MASK_COMPARE
8613 };
8614 
8615 /* reg_rmft2_irif_mask
8616  * Ingress RIF mask.
8617  * Access: RW
8618  */
8619 MLXSW_ITEM32(reg, rmft2, irif_mask, 0x08, 24, 1);
8620 
8621 /* reg_rmft2_irif
8622  * Ingress RIF index.
8623  * Access: RW
8624  */
8625 MLXSW_ITEM32(reg, rmft2, irif, 0x08, 0, 16);
8626 
8627 /* reg_rmft2_dip{4,6}
8628  * Destination IPv4/6 address
8629  * Access: RW
8630  */
8631 MLXSW_ITEM_BUF(reg, rmft2, dip6, 0x10, 16);
8632 MLXSW_ITEM32(reg, rmft2, dip4, 0x1C, 0, 32);
8633 
8634 /* reg_rmft2_dip{4,6}_mask
8635  * A bit that is set directs the TCAM to compare the corresponding bit in key. A
8636  * bit that is clear directs the TCAM to ignore the corresponding bit in key.
8637  * Access: RW
8638  */
8639 MLXSW_ITEM_BUF(reg, rmft2, dip6_mask, 0x20, 16);
8640 MLXSW_ITEM32(reg, rmft2, dip4_mask, 0x2C, 0, 32);
8641 
8642 /* reg_rmft2_sip{4,6}
8643  * Source IPv4/6 address
8644  * Access: RW
8645  */
8646 MLXSW_ITEM_BUF(reg, rmft2, sip6, 0x30, 16);
8647 MLXSW_ITEM32(reg, rmft2, sip4, 0x3C, 0, 32);
8648 
8649 /* reg_rmft2_sip{4,6}_mask
8650  * A bit that is set directs the TCAM to compare the corresponding bit in key. A
8651  * bit that is clear directs the TCAM to ignore the corresponding bit in key.
8652  * Access: RW
8653  */
8654 MLXSW_ITEM_BUF(reg, rmft2, sip6_mask, 0x40, 16);
8655 MLXSW_ITEM32(reg, rmft2, sip4_mask, 0x4C, 0, 32);
8656 
8657 /* reg_rmft2_flexible_action_set
8658  * ACL action set. The only supported action types in this field and in any
8659  * action-set pointed from here are as follows:
8660  * 00h: ACTION_NULL
8661  * 01h: ACTION_MAC_TTL, only TTL configuration is supported.
8662  * 03h: ACTION_TRAP
8663  * 06h: ACTION_QOS
8664  * 08h: ACTION_POLICING_MONITORING
8665  * 10h: ACTION_ROUTER_MC
8666  * Access: RW
8667  */
8668 MLXSW_ITEM_BUF(reg, rmft2, flexible_action_set, 0x80,
8669 	       MLXSW_REG_FLEX_ACTION_SET_LEN);
8670 
8671 static inline void
8672 mlxsw_reg_rmft2_common_pack(char *payload, bool v, u16 offset,
8673 			    u16 virtual_router,
8674 			    enum mlxsw_reg_rmft2_irif_mask irif_mask, u16 irif,
8675 			    const char *flex_action_set)
8676 {
8677 	MLXSW_REG_ZERO(rmft2, payload);
8678 	mlxsw_reg_rmft2_v_set(payload, v);
8679 	mlxsw_reg_rmft2_op_set(payload, MLXSW_REG_RMFT2_OP_READ_WRITE);
8680 	mlxsw_reg_rmft2_offset_set(payload, offset);
8681 	mlxsw_reg_rmft2_virtual_router_set(payload, virtual_router);
8682 	mlxsw_reg_rmft2_irif_mask_set(payload, irif_mask);
8683 	mlxsw_reg_rmft2_irif_set(payload, irif);
8684 	if (flex_action_set)
8685 		mlxsw_reg_rmft2_flexible_action_set_memcpy_to(payload,
8686 							      flex_action_set);
8687 }
8688 
8689 static inline void
8690 mlxsw_reg_rmft2_ipv4_pack(char *payload, bool v, u16 offset, u16 virtual_router,
8691 			  enum mlxsw_reg_rmft2_irif_mask irif_mask, u16 irif,
8692 			  u32 dip4, u32 dip4_mask, u32 sip4, u32 sip4_mask,
8693 			  const char *flexible_action_set)
8694 {
8695 	mlxsw_reg_rmft2_common_pack(payload, v, offset, virtual_router,
8696 				    irif_mask, irif, flexible_action_set);
8697 	mlxsw_reg_rmft2_type_set(payload, MLXSW_REG_RMFT2_TYPE_IPV4);
8698 	mlxsw_reg_rmft2_dip4_set(payload, dip4);
8699 	mlxsw_reg_rmft2_dip4_mask_set(payload, dip4_mask);
8700 	mlxsw_reg_rmft2_sip4_set(payload, sip4);
8701 	mlxsw_reg_rmft2_sip4_mask_set(payload, sip4_mask);
8702 }
8703 
8704 static inline void
8705 mlxsw_reg_rmft2_ipv6_pack(char *payload, bool v, u16 offset, u16 virtual_router,
8706 			  enum mlxsw_reg_rmft2_irif_mask irif_mask, u16 irif,
8707 			  struct in6_addr dip6, struct in6_addr dip6_mask,
8708 			  struct in6_addr sip6, struct in6_addr sip6_mask,
8709 			  const char *flexible_action_set)
8710 {
8711 	mlxsw_reg_rmft2_common_pack(payload, v, offset, virtual_router,
8712 				    irif_mask, irif, flexible_action_set);
8713 	mlxsw_reg_rmft2_type_set(payload, MLXSW_REG_RMFT2_TYPE_IPV6);
8714 	mlxsw_reg_rmft2_dip6_memcpy_to(payload, (void *)&dip6);
8715 	mlxsw_reg_rmft2_dip6_mask_memcpy_to(payload, (void *)&dip6_mask);
8716 	mlxsw_reg_rmft2_sip6_memcpy_to(payload, (void *)&sip6);
8717 	mlxsw_reg_rmft2_sip6_mask_memcpy_to(payload, (void *)&sip6_mask);
8718 }
8719 
8720 /* RXLTE - Router XLT Enable Register
8721  * ----------------------------------
8722  * The RXLTE enables XLT (eXtended Lookup Table) LPM lookups if a capable
8723  * XM is present on the system.
8724  */
8725 
8726 #define MLXSW_REG_RXLTE_ID 0x8050
8727 #define MLXSW_REG_RXLTE_LEN 0x0C
8728 
8729 MLXSW_REG_DEFINE(rxlte, MLXSW_REG_RXLTE_ID, MLXSW_REG_RXLTE_LEN);
8730 
8731 /* reg_rxlte_virtual_router
8732  * Virtual router ID associated with the router interface.
8733  * Range is 0..cap_max_virtual_routers-1
8734  * Access: Index
8735  */
8736 MLXSW_ITEM32(reg, rxlte, virtual_router, 0x00, 0, 16);
8737 
8738 enum mlxsw_reg_rxlte_protocol {
8739 	MLXSW_REG_RXLTE_PROTOCOL_IPV4,
8740 	MLXSW_REG_RXLTE_PROTOCOL_IPV6,
8741 };
8742 
8743 /* reg_rxlte_protocol
8744  * Access: Index
8745  */
8746 MLXSW_ITEM32(reg, rxlte, protocol, 0x04, 0, 4);
8747 
8748 /* reg_rxlte_lpm_xlt_en
8749  * Access: RW
8750  */
8751 MLXSW_ITEM32(reg, rxlte, lpm_xlt_en, 0x08, 0, 1);
8752 
8753 static inline void mlxsw_reg_rxlte_pack(char *payload, u16 virtual_router,
8754 					enum mlxsw_reg_rxlte_protocol protocol,
8755 					bool lpm_xlt_en)
8756 {
8757 	MLXSW_REG_ZERO(rxlte, payload);
8758 	mlxsw_reg_rxlte_virtual_router_set(payload, virtual_router);
8759 	mlxsw_reg_rxlte_protocol_set(payload, protocol);
8760 	mlxsw_reg_rxlte_lpm_xlt_en_set(payload, lpm_xlt_en);
8761 }
8762 
8763 /* RXLTM - Router XLT M select Register
8764  * ------------------------------------
8765  * The RXLTM configures and selects the M for the XM lookups.
8766  */
8767 
8768 #define MLXSW_REG_RXLTM_ID 0x8051
8769 #define MLXSW_REG_RXLTM_LEN 0x14
8770 
8771 MLXSW_REG_DEFINE(rxltm, MLXSW_REG_RXLTM_ID, MLXSW_REG_RXLTM_LEN);
8772 
8773 /* reg_rxltm_m0_val_v6
8774  * Global M0 value For IPv6.
8775  * Range 0..128
8776  * Access: RW
8777  */
8778 MLXSW_ITEM32(reg, rxltm, m0_val_v6, 0x10, 16, 8);
8779 
8780 /* reg_rxltm_m0_val_v4
8781  * Global M0 value For IPv4.
8782  * Range 0..32
8783  * Access: RW
8784  */
8785 MLXSW_ITEM32(reg, rxltm, m0_val_v4, 0x10, 0, 6);
8786 
8787 static inline void mlxsw_reg_rxltm_pack(char *payload, u8 m0_val_v4, u8 m0_val_v6)
8788 {
8789 	MLXSW_REG_ZERO(rxltm, payload);
8790 	mlxsw_reg_rxltm_m0_val_v6_set(payload, m0_val_v6);
8791 	mlxsw_reg_rxltm_m0_val_v4_set(payload, m0_val_v4);
8792 }
8793 
8794 /* RLCMLD - Router LPM Cache ML Delete Register
8795  * --------------------------------------------
8796  * The RLCMLD register is used to bulk delete the XLT-LPM cache ML entries.
8797  * This can be used by SW when L is increased or decreased, thus need to
8798  * remove entries with old ML values.
8799  */
8800 
8801 #define MLXSW_REG_RLCMLD_ID 0x8055
8802 #define MLXSW_REG_RLCMLD_LEN 0x30
8803 
8804 MLXSW_REG_DEFINE(rlcmld, MLXSW_REG_RLCMLD_ID, MLXSW_REG_RLCMLD_LEN);
8805 
8806 enum mlxsw_reg_rlcmld_select {
8807 	MLXSW_REG_RLCMLD_SELECT_ML_ENTRIES,
8808 	MLXSW_REG_RLCMLD_SELECT_M_ENTRIES,
8809 	MLXSW_REG_RLCMLD_SELECT_M_AND_ML_ENTRIES,
8810 };
8811 
8812 /* reg_rlcmld_select
8813  * Which entries to delete.
8814  * Access: Index
8815  */
8816 MLXSW_ITEM32(reg, rlcmld, select, 0x00, 16, 2);
8817 
8818 enum mlxsw_reg_rlcmld_filter_fields {
8819 	MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_PROTOCOL = 0x04,
8820 	MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_VIRTUAL_ROUTER = 0x08,
8821 	MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_DIP = 0x10,
8822 };
8823 
8824 /* reg_rlcmld_filter_fields
8825  * If a bit is '0' then the relevant field is ignored.
8826  * Access: Index
8827  */
8828 MLXSW_ITEM32(reg, rlcmld, filter_fields, 0x00, 0, 8);
8829 
8830 enum mlxsw_reg_rlcmld_protocol {
8831 	MLXSW_REG_RLCMLD_PROTOCOL_UC_IPV4,
8832 	MLXSW_REG_RLCMLD_PROTOCOL_UC_IPV6,
8833 };
8834 
8835 /* reg_rlcmld_protocol
8836  * Access: Index
8837  */
8838 MLXSW_ITEM32(reg, rlcmld, protocol, 0x08, 0, 4);
8839 
8840 /* reg_rlcmld_virtual_router
8841  * Virtual router ID.
8842  * Range is 0..cap_max_virtual_routers-1
8843  * Access: Index
8844  */
8845 MLXSW_ITEM32(reg, rlcmld, virtual_router, 0x0C, 0, 16);
8846 
8847 /* reg_rlcmld_dip
8848  * The prefix of the route or of the marker that the object of the LPM
8849  * is compared with. The most significant bits of the dip are the prefix.
8850  * Access: Index
8851  */
8852 MLXSW_ITEM32(reg, rlcmld, dip4, 0x1C, 0, 32);
8853 MLXSW_ITEM_BUF(reg, rlcmld, dip6, 0x10, 16);
8854 
8855 /* reg_rlcmld_dip_mask
8856  * per bit:
8857  * 0: no match
8858  * 1: match
8859  * Access: Index
8860  */
8861 MLXSW_ITEM32(reg, rlcmld, dip_mask4, 0x2C, 0, 32);
8862 MLXSW_ITEM_BUF(reg, rlcmld, dip_mask6, 0x20, 16);
8863 
8864 static inline void __mlxsw_reg_rlcmld_pack(char *payload,
8865 					   enum mlxsw_reg_rlcmld_select select,
8866 					   enum mlxsw_reg_rlcmld_protocol protocol,
8867 					   u16 virtual_router)
8868 {
8869 	u8 filter_fields = MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_PROTOCOL |
8870 			   MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_VIRTUAL_ROUTER |
8871 			   MLXSW_REG_RLCMLD_FILTER_FIELDS_BY_DIP;
8872 
8873 	MLXSW_REG_ZERO(rlcmld, payload);
8874 	mlxsw_reg_rlcmld_select_set(payload, select);
8875 	mlxsw_reg_rlcmld_filter_fields_set(payload, filter_fields);
8876 	mlxsw_reg_rlcmld_protocol_set(payload, protocol);
8877 	mlxsw_reg_rlcmld_virtual_router_set(payload, virtual_router);
8878 }
8879 
8880 static inline void mlxsw_reg_rlcmld_pack4(char *payload,
8881 					  enum mlxsw_reg_rlcmld_select select,
8882 					  u16 virtual_router,
8883 					  u32 dip, u32 dip_mask)
8884 {
8885 	__mlxsw_reg_rlcmld_pack(payload, select,
8886 				MLXSW_REG_RLCMLD_PROTOCOL_UC_IPV4,
8887 				virtual_router);
8888 	mlxsw_reg_rlcmld_dip4_set(payload, dip);
8889 	mlxsw_reg_rlcmld_dip_mask4_set(payload, dip_mask);
8890 }
8891 
8892 static inline void mlxsw_reg_rlcmld_pack6(char *payload,
8893 					  enum mlxsw_reg_rlcmld_select select,
8894 					  u16 virtual_router,
8895 					  const void *dip, const void *dip_mask)
8896 {
8897 	__mlxsw_reg_rlcmld_pack(payload, select,
8898 				MLXSW_REG_RLCMLD_PROTOCOL_UC_IPV6,
8899 				virtual_router);
8900 	mlxsw_reg_rlcmld_dip6_memcpy_to(payload, dip);
8901 	mlxsw_reg_rlcmld_dip_mask6_memcpy_to(payload, dip_mask);
8902 }
8903 
8904 /* RLPMCE - Router LPM Cache Enable Register
8905  * -----------------------------------------
8906  * Allows disabling the LPM cache. Can be changed on the fly.
8907  */
8908 
8909 #define MLXSW_REG_RLPMCE_ID 0x8056
8910 #define MLXSW_REG_RLPMCE_LEN 0x4
8911 
8912 MLXSW_REG_DEFINE(rlpmce, MLXSW_REG_RLPMCE_ID, MLXSW_REG_RLPMCE_LEN);
8913 
8914 /* reg_rlpmce_flush
8915  * Flush:
8916  * 0: do not flush the cache (default)
8917  * 1: flush (clear) the cache
8918  * Access: WO
8919  */
8920 MLXSW_ITEM32(reg, rlpmce, flush, 0x00, 4, 1);
8921 
8922 /* reg_rlpmce_disable
8923  * LPM cache:
8924  * 0: enabled (default)
8925  * 1: disabled
8926  * Access: RW
8927  */
8928 MLXSW_ITEM32(reg, rlpmce, disable, 0x00, 0, 1);
8929 
8930 static inline void mlxsw_reg_rlpmce_pack(char *payload, bool flush,
8931 					 bool disable)
8932 {
8933 	MLXSW_REG_ZERO(rlpmce, payload);
8934 	mlxsw_reg_rlpmce_flush_set(payload, flush);
8935 	mlxsw_reg_rlpmce_disable_set(payload, disable);
8936 }
8937 
8938 /* Note that XLTQ, XMDR, XRMT and XRALXX register positions violate the rule
8939  * of ordering register definitions by the ID. However, XRALXX pack helpers are
8940  * using RALXX pack helpers, RALXX registers have higher IDs.
8941  * Also XMDR is using RALUE enums. XLRQ and XRMT are just put alongside with the
8942  * related registers.
8943  */
8944 
8945 /* XLTQ - XM Lookup Table Query Register
8946  * -------------------------------------
8947  */
8948 #define MLXSW_REG_XLTQ_ID 0x7802
8949 #define MLXSW_REG_XLTQ_LEN 0x2C
8950 
8951 MLXSW_REG_DEFINE(xltq, MLXSW_REG_XLTQ_ID, MLXSW_REG_XLTQ_LEN);
8952 
8953 enum mlxsw_reg_xltq_xm_device_id {
8954 	MLXSW_REG_XLTQ_XM_DEVICE_ID_UNKNOWN,
8955 	MLXSW_REG_XLTQ_XM_DEVICE_ID_XLT = 0xCF71,
8956 };
8957 
8958 /* reg_xltq_xm_device_id
8959  * XM device ID.
8960  * Access: RO
8961  */
8962 MLXSW_ITEM32(reg, xltq, xm_device_id, 0x04, 0, 16);
8963 
8964 /* reg_xltq_xlt_cap_ipv4_lpm
8965  * Access: RO
8966  */
8967 MLXSW_ITEM32(reg, xltq, xlt_cap_ipv4_lpm, 0x10, 0, 1);
8968 
8969 /* reg_xltq_xlt_cap_ipv6_lpm
8970  * Access: RO
8971  */
8972 MLXSW_ITEM32(reg, xltq, xlt_cap_ipv6_lpm, 0x10, 1, 1);
8973 
8974 /* reg_xltq_cap_xlt_entries
8975  * Number of XLT entries
8976  * Note: SW must not fill more than 80% in order to avoid overflow
8977  * Access: RO
8978  */
8979 MLXSW_ITEM32(reg, xltq, cap_xlt_entries, 0x20, 0, 32);
8980 
8981 /* reg_xltq_cap_xlt_mtable
8982  * XLT M-Table max size
8983  * Access: RO
8984  */
8985 MLXSW_ITEM32(reg, xltq, cap_xlt_mtable, 0x24, 0, 32);
8986 
8987 static inline void mlxsw_reg_xltq_pack(char *payload)
8988 {
8989 	MLXSW_REG_ZERO(xltq, payload);
8990 }
8991 
8992 static inline void mlxsw_reg_xltq_unpack(char *payload, u16 *xm_device_id, bool *xlt_cap_ipv4_lpm,
8993 					 bool *xlt_cap_ipv6_lpm, u32 *cap_xlt_entries,
8994 					 u32 *cap_xlt_mtable)
8995 {
8996 	*xm_device_id = mlxsw_reg_xltq_xm_device_id_get(payload);
8997 	*xlt_cap_ipv4_lpm = mlxsw_reg_xltq_xlt_cap_ipv4_lpm_get(payload);
8998 	*xlt_cap_ipv6_lpm = mlxsw_reg_xltq_xlt_cap_ipv6_lpm_get(payload);
8999 	*cap_xlt_entries = mlxsw_reg_xltq_cap_xlt_entries_get(payload);
9000 	*cap_xlt_mtable = mlxsw_reg_xltq_cap_xlt_mtable_get(payload);
9001 }
9002 
9003 /* XMDR - XM Direct Register
9004  * -------------------------
9005  * The XMDR allows direct access to the XM device via the switch.
9006  * Working in synchronous mode. FW waits for response from the XLT
9007  * for each command. FW acks the XMDR accordingly.
9008  */
9009 #define MLXSW_REG_XMDR_ID 0x7803
9010 #define MLXSW_REG_XMDR_BASE_LEN 0x20
9011 #define MLXSW_REG_XMDR_TRANS_LEN 0x80
9012 #define MLXSW_REG_XMDR_LEN (MLXSW_REG_XMDR_BASE_LEN + \
9013 			    MLXSW_REG_XMDR_TRANS_LEN)
9014 
9015 MLXSW_REG_DEFINE(xmdr, MLXSW_REG_XMDR_ID, MLXSW_REG_XMDR_LEN);
9016 
9017 /* reg_xmdr_bulk_entry
9018  * Bulk_entry
9019  * 0: Last entry - immediate flush of XRT-cache
9020  * 1: Bulk entry - do not flush the XRT-cache
9021  * Access: OP
9022  */
9023 MLXSW_ITEM32(reg, xmdr, bulk_entry, 0x04, 8, 1);
9024 
9025 /* reg_xmdr_num_rec
9026  * Number of records for Direct access to XM
9027  * Supported: 0..4 commands (except NOP which is a filler)
9028  * 0 commands is reserved when bulk_entry = 1.
9029  * 0 commands is allowed when bulk_entry = 0 for immediate XRT-cache flush.
9030  * Access: OP
9031  */
9032 MLXSW_ITEM32(reg, xmdr, num_rec, 0x04, 0, 4);
9033 
9034 /* reg_xmdr_reply_vect
9035  * Reply Vector
9036  * Bit i for command index i+1
9037  * values per bit:
9038  * 0: failed
9039  * 1: succeeded
9040  * e.g. if commands 1, 2, 4 succeeded and command 3 failed then binary
9041  * value will be 0b1011
9042  * Access: RO
9043  */
9044 MLXSW_ITEM_BIT_ARRAY(reg, xmdr, reply_vect, 0x08, 4, 1);
9045 
9046 static inline void mlxsw_reg_xmdr_pack(char *payload, bool bulk_entry)
9047 {
9048 	MLXSW_REG_ZERO(xmdr, payload);
9049 	mlxsw_reg_xmdr_bulk_entry_set(payload, bulk_entry);
9050 }
9051 
9052 enum mlxsw_reg_xmdr_c_cmd_id {
9053 	MLXSW_REG_XMDR_C_CMD_ID_LT_ROUTE_V4 = 0x30,
9054 	MLXSW_REG_XMDR_C_CMD_ID_LT_ROUTE_V6 = 0x31,
9055 };
9056 
9057 #define MLXSW_REG_XMDR_C_LT_ROUTE_V4_LEN 32
9058 #define MLXSW_REG_XMDR_C_LT_ROUTE_V6_LEN 48
9059 
9060 /* reg_xmdr_c_cmd_id
9061  */
9062 MLXSW_ITEM32(reg, xmdr_c, cmd_id, 0x00, 24, 8);
9063 
9064 /* reg_xmdr_c_seq_number
9065  */
9066 MLXSW_ITEM32(reg, xmdr_c, seq_number, 0x00, 12, 12);
9067 
9068 enum mlxsw_reg_xmdr_c_ltr_op {
9069 	/* Activity is set */
9070 	MLXSW_REG_XMDR_C_LTR_OP_WRITE = 0,
9071 	/* There is no update mask. All fields are updated. */
9072 	MLXSW_REG_XMDR_C_LTR_OP_UPDATE = 1,
9073 	MLXSW_REG_XMDR_C_LTR_OP_DELETE = 2,
9074 };
9075 
9076 /* reg_xmdr_c_ltr_op
9077  * Operation.
9078  */
9079 MLXSW_ITEM32(reg, xmdr_c, ltr_op, 0x04, 24, 8);
9080 
9081 /* reg_xmdr_c_ltr_trap_action
9082  * Trap action.
9083  * Values are defined in enum mlxsw_reg_ralue_trap_action.
9084  */
9085 MLXSW_ITEM32(reg, xmdr_c, ltr_trap_action, 0x04, 20, 4);
9086 
9087 enum mlxsw_reg_xmdr_c_ltr_trap_id_num {
9088 	MLXSW_REG_XMDR_C_LTR_TRAP_ID_NUM_RTR_INGRESS0,
9089 	MLXSW_REG_XMDR_C_LTR_TRAP_ID_NUM_RTR_INGRESS1,
9090 	MLXSW_REG_XMDR_C_LTR_TRAP_ID_NUM_RTR_INGRESS2,
9091 	MLXSW_REG_XMDR_C_LTR_TRAP_ID_NUM_RTR_INGRESS3,
9092 };
9093 
9094 /* reg_xmdr_c_ltr_trap_id_num
9095  * Trap-ID number.
9096  */
9097 MLXSW_ITEM32(reg, xmdr_c, ltr_trap_id_num, 0x04, 16, 4);
9098 
9099 /* reg_xmdr_c_ltr_virtual_router
9100  * Virtual Router ID.
9101  * Range is 0..cap_max_virtual_routers-1
9102  */
9103 MLXSW_ITEM32(reg, xmdr_c, ltr_virtual_router, 0x04, 0, 16);
9104 
9105 /* reg_xmdr_c_ltr_prefix_len
9106  * Number of bits in the prefix of the LPM route.
9107  */
9108 MLXSW_ITEM32(reg, xmdr_c, ltr_prefix_len, 0x08, 24, 8);
9109 
9110 /* reg_xmdr_c_ltr_bmp_len
9111  * The best match prefix length in the case that there is no match for
9112  * longer prefixes.
9113  * If (entry_type != MARKER_ENTRY), bmp_len must be equal to prefix_len
9114  */
9115 MLXSW_ITEM32(reg, xmdr_c, ltr_bmp_len, 0x08, 16, 8);
9116 
9117 /* reg_xmdr_c_ltr_entry_type
9118  * Entry type.
9119  * Values are defined in enum mlxsw_reg_ralue_entry_type.
9120  */
9121 MLXSW_ITEM32(reg, xmdr_c, ltr_entry_type, 0x08, 4, 4);
9122 
9123 enum mlxsw_reg_xmdr_c_ltr_action_type {
9124 	MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_LOCAL,
9125 	MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_REMOTE,
9126 	MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_IP2ME,
9127 };
9128 
9129 /* reg_xmdr_c_ltr_action_type
9130  * Action Type.
9131  */
9132 MLXSW_ITEM32(reg, xmdr_c, ltr_action_type, 0x08, 0, 4);
9133 
9134 /* reg_xmdr_c_ltr_erif
9135  * Egress Router Interface.
9136  * Only relevant in case of LOCAL action.
9137  */
9138 MLXSW_ITEM32(reg, xmdr_c, ltr_erif, 0x10, 0, 16);
9139 
9140 /* reg_xmdr_c_ltr_adjacency_index
9141  * Points to the first entry of the group-based ECMP.
9142  * Only relevant in case of REMOTE action.
9143  */
9144 MLXSW_ITEM32(reg, xmdr_c, ltr_adjacency_index, 0x10, 0, 24);
9145 
9146 #define MLXSW_REG_XMDR_C_LTR_POINTER_TO_TUNNEL_DISABLED_MAGIC 0xFFFFFF
9147 
9148 /* reg_xmdr_c_ltr_pointer_to_tunnel
9149  * Only relevant in case of IP2ME action.
9150  */
9151 MLXSW_ITEM32(reg, xmdr_c, ltr_pointer_to_tunnel, 0x10, 0, 24);
9152 
9153 /* reg_xmdr_c_ltr_ecmp_size
9154  * Amount of sequential entries starting
9155  * from the adjacency_index (the number of ECMPs).
9156  * The valid range is 1-64, 512, 1024, 2048 and 4096.
9157  * Only relevant in case of REMOTE action.
9158  */
9159 MLXSW_ITEM32(reg, xmdr_c, ltr_ecmp_size, 0x14, 0, 32);
9160 
9161 /* reg_xmdr_c_ltr_dip*
9162  * The prefix of the route or of the marker that the object of the LPM
9163  * is compared with. The most significant bits of the dip are the prefix.
9164  * The least significant bits must be '0' if the prefix_len is smaller
9165  * than 128 for IPv6 or smaller than 32 for IPv4.
9166  */
9167 MLXSW_ITEM32(reg, xmdr_c, ltr_dip4, 0x1C, 0, 32);
9168 MLXSW_ITEM_BUF(reg, xmdr_c, ltr_dip6, 0x1C, 16);
9169 
9170 static inline void
9171 mlxsw_reg_xmdr_c_ltr_pack(char *xmdr_payload, unsigned int trans_offset,
9172 			  enum mlxsw_reg_xmdr_c_cmd_id cmd_id, u16 seq_number,
9173 			  enum mlxsw_reg_xmdr_c_ltr_op op, u16 virtual_router,
9174 			  u8 prefix_len)
9175 {
9176 	char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset;
9177 	u8 num_rec = mlxsw_reg_xmdr_num_rec_get(xmdr_payload);
9178 
9179 	mlxsw_reg_xmdr_num_rec_set(xmdr_payload, num_rec + 1);
9180 
9181 	mlxsw_reg_xmdr_c_cmd_id_set(payload, cmd_id);
9182 	mlxsw_reg_xmdr_c_seq_number_set(payload, seq_number);
9183 	mlxsw_reg_xmdr_c_ltr_op_set(payload, op);
9184 	mlxsw_reg_xmdr_c_ltr_virtual_router_set(payload, virtual_router);
9185 	mlxsw_reg_xmdr_c_ltr_prefix_len_set(payload, prefix_len);
9186 	mlxsw_reg_xmdr_c_ltr_entry_type_set(payload,
9187 					    MLXSW_REG_RALUE_ENTRY_TYPE_ROUTE_ENTRY);
9188 	mlxsw_reg_xmdr_c_ltr_bmp_len_set(payload, prefix_len);
9189 }
9190 
9191 static inline unsigned int
9192 mlxsw_reg_xmdr_c_ltr_pack4(char *xmdr_payload, unsigned int trans_offset,
9193 			   u16 seq_number, enum mlxsw_reg_xmdr_c_ltr_op op,
9194 			   u16 virtual_router, u8 prefix_len, u32 *dip)
9195 {
9196 	char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset;
9197 
9198 	mlxsw_reg_xmdr_c_ltr_pack(xmdr_payload, trans_offset,
9199 				  MLXSW_REG_XMDR_C_CMD_ID_LT_ROUTE_V4,
9200 				  seq_number, op, virtual_router, prefix_len);
9201 	if (dip)
9202 		mlxsw_reg_xmdr_c_ltr_dip4_set(payload, *dip);
9203 	return MLXSW_REG_XMDR_C_LT_ROUTE_V4_LEN;
9204 }
9205 
9206 static inline unsigned int
9207 mlxsw_reg_xmdr_c_ltr_pack6(char *xmdr_payload, unsigned int trans_offset,
9208 			   u16 seq_number, enum mlxsw_reg_xmdr_c_ltr_op op,
9209 			   u16 virtual_router, u8 prefix_len, const void *dip)
9210 {
9211 	char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset;
9212 
9213 	mlxsw_reg_xmdr_c_ltr_pack(xmdr_payload, trans_offset,
9214 				  MLXSW_REG_XMDR_C_CMD_ID_LT_ROUTE_V6,
9215 				  seq_number, op, virtual_router, prefix_len);
9216 	if (dip)
9217 		mlxsw_reg_xmdr_c_ltr_dip6_memcpy_to(payload, dip);
9218 	return MLXSW_REG_XMDR_C_LT_ROUTE_V6_LEN;
9219 }
9220 
9221 static inline void
9222 mlxsw_reg_xmdr_c_ltr_act_remote_pack(char *xmdr_payload, unsigned int trans_offset,
9223 				     enum mlxsw_reg_ralue_trap_action trap_action,
9224 				     enum mlxsw_reg_xmdr_c_ltr_trap_id_num trap_id_num,
9225 				     u32 adjacency_index, u16 ecmp_size)
9226 {
9227 	char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset;
9228 
9229 	mlxsw_reg_xmdr_c_ltr_action_type_set(payload, MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_REMOTE);
9230 	mlxsw_reg_xmdr_c_ltr_trap_action_set(payload, trap_action);
9231 	mlxsw_reg_xmdr_c_ltr_trap_id_num_set(payload, trap_id_num);
9232 	mlxsw_reg_xmdr_c_ltr_adjacency_index_set(payload, adjacency_index);
9233 	mlxsw_reg_xmdr_c_ltr_ecmp_size_set(payload, ecmp_size);
9234 }
9235 
9236 static inline void
9237 mlxsw_reg_xmdr_c_ltr_act_local_pack(char *xmdr_payload, unsigned int trans_offset,
9238 				    enum mlxsw_reg_ralue_trap_action trap_action,
9239 				    enum mlxsw_reg_xmdr_c_ltr_trap_id_num trap_id_num, u16 erif)
9240 {
9241 	char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset;
9242 
9243 	mlxsw_reg_xmdr_c_ltr_action_type_set(payload, MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_LOCAL);
9244 	mlxsw_reg_xmdr_c_ltr_trap_action_set(payload, trap_action);
9245 	mlxsw_reg_xmdr_c_ltr_trap_id_num_set(payload, trap_id_num);
9246 	mlxsw_reg_xmdr_c_ltr_erif_set(payload, erif);
9247 }
9248 
9249 static inline void mlxsw_reg_xmdr_c_ltr_act_ip2me_pack(char *xmdr_payload,
9250 						       unsigned int trans_offset)
9251 {
9252 	char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset;
9253 
9254 	mlxsw_reg_xmdr_c_ltr_action_type_set(payload, MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_IP2ME);
9255 	mlxsw_reg_xmdr_c_ltr_pointer_to_tunnel_set(payload,
9256 						   MLXSW_REG_XMDR_C_LTR_POINTER_TO_TUNNEL_DISABLED_MAGIC);
9257 }
9258 
9259 static inline void mlxsw_reg_xmdr_c_ltr_act_ip2me_tun_pack(char *xmdr_payload,
9260 							   unsigned int trans_offset,
9261 							   u32 pointer_to_tunnel)
9262 {
9263 	char *payload = xmdr_payload + MLXSW_REG_XMDR_BASE_LEN + trans_offset;
9264 
9265 	mlxsw_reg_xmdr_c_ltr_action_type_set(payload, MLXSW_REG_XMDR_C_LTR_ACTION_TYPE_IP2ME);
9266 	mlxsw_reg_xmdr_c_ltr_pointer_to_tunnel_set(payload, pointer_to_tunnel);
9267 }
9268 
9269 /* XRMT - XM Router M Table Register
9270  * ---------------------------------
9271  * The XRMT configures the M-Table for the XLT-LPM.
9272  */
9273 #define MLXSW_REG_XRMT_ID 0x7810
9274 #define MLXSW_REG_XRMT_LEN 0x14
9275 
9276 MLXSW_REG_DEFINE(xrmt, MLXSW_REG_XRMT_ID, MLXSW_REG_XRMT_LEN);
9277 
9278 /* reg_xrmt_index
9279  * Index in M-Table.
9280  * Range 0..cap_xlt_mtable-1
9281  * Access: Index
9282  */
9283 MLXSW_ITEM32(reg, xrmt, index, 0x04, 0, 20);
9284 
9285 /* reg_xrmt_l0_val
9286  * Access: RW
9287  */
9288 MLXSW_ITEM32(reg, xrmt, l0_val, 0x10, 24, 8);
9289 
9290 static inline void mlxsw_reg_xrmt_pack(char *payload, u32 index, u8 l0_val)
9291 {
9292 	MLXSW_REG_ZERO(xrmt, payload);
9293 	mlxsw_reg_xrmt_index_set(payload, index);
9294 	mlxsw_reg_xrmt_l0_val_set(payload, l0_val);
9295 }
9296 
9297 /* XRALTA - XM Router Algorithmic LPM Tree Allocation Register
9298  * -----------------------------------------------------------
9299  * The XRALTA is used to allocate the XLT LPM trees.
9300  *
9301  * This register embeds original RALTA register.
9302  */
9303 #define MLXSW_REG_XRALTA_ID 0x7811
9304 #define MLXSW_REG_XRALTA_LEN 0x08
9305 #define MLXSW_REG_XRALTA_RALTA_OFFSET 0x04
9306 
9307 MLXSW_REG_DEFINE(xralta, MLXSW_REG_XRALTA_ID, MLXSW_REG_XRALTA_LEN);
9308 
9309 static inline void mlxsw_reg_xralta_pack(char *payload, bool alloc,
9310 					 enum mlxsw_reg_ralxx_protocol protocol,
9311 					 u8 tree_id)
9312 {
9313 	char *ralta_payload = payload + MLXSW_REG_XRALTA_RALTA_OFFSET;
9314 
9315 	MLXSW_REG_ZERO(xralta, payload);
9316 	mlxsw_reg_ralta_pack(ralta_payload, alloc, protocol, tree_id);
9317 }
9318 
9319 /* XRALST - XM Router Algorithmic LPM Structure Tree Register
9320  * ----------------------------------------------------------
9321  * The XRALST is used to set and query the structure of an XLT LPM tree.
9322  *
9323  * This register embeds original RALST register.
9324  */
9325 #define MLXSW_REG_XRALST_ID 0x7812
9326 #define MLXSW_REG_XRALST_LEN 0x108
9327 #define MLXSW_REG_XRALST_RALST_OFFSET 0x04
9328 
9329 MLXSW_REG_DEFINE(xralst, MLXSW_REG_XRALST_ID, MLXSW_REG_XRALST_LEN);
9330 
9331 static inline void mlxsw_reg_xralst_pack(char *payload, u8 root_bin, u8 tree_id)
9332 {
9333 	char *ralst_payload = payload + MLXSW_REG_XRALST_RALST_OFFSET;
9334 
9335 	MLXSW_REG_ZERO(xralst, payload);
9336 	mlxsw_reg_ralst_pack(ralst_payload, root_bin, tree_id);
9337 }
9338 
9339 static inline void mlxsw_reg_xralst_bin_pack(char *payload, u8 bin_number,
9340 					     u8 left_child_bin,
9341 					     u8 right_child_bin)
9342 {
9343 	char *ralst_payload = payload + MLXSW_REG_XRALST_RALST_OFFSET;
9344 
9345 	mlxsw_reg_ralst_bin_pack(ralst_payload, bin_number, left_child_bin,
9346 				 right_child_bin);
9347 }
9348 
9349 /* XRALTB - XM Router Algorithmic LPM Tree Binding Register
9350  * --------------------------------------------------------
9351  * The XRALTB register is used to bind virtual router and protocol
9352  * to an allocated LPM tree.
9353  *
9354  * This register embeds original RALTB register.
9355  */
9356 #define MLXSW_REG_XRALTB_ID 0x7813
9357 #define MLXSW_REG_XRALTB_LEN 0x08
9358 #define MLXSW_REG_XRALTB_RALTB_OFFSET 0x04
9359 
9360 MLXSW_REG_DEFINE(xraltb, MLXSW_REG_XRALTB_ID, MLXSW_REG_XRALTB_LEN);
9361 
9362 static inline void mlxsw_reg_xraltb_pack(char *payload, u16 virtual_router,
9363 					 enum mlxsw_reg_ralxx_protocol protocol,
9364 					 u8 tree_id)
9365 {
9366 	char *raltb_payload = payload + MLXSW_REG_XRALTB_RALTB_OFFSET;
9367 
9368 	MLXSW_REG_ZERO(xraltb, payload);
9369 	mlxsw_reg_raltb_pack(raltb_payload, virtual_router, protocol, tree_id);
9370 }
9371 
9372 /* MFCR - Management Fan Control Register
9373  * --------------------------------------
9374  * This register controls the settings of the Fan Speed PWM mechanism.
9375  */
9376 #define MLXSW_REG_MFCR_ID 0x9001
9377 #define MLXSW_REG_MFCR_LEN 0x08
9378 
9379 MLXSW_REG_DEFINE(mfcr, MLXSW_REG_MFCR_ID, MLXSW_REG_MFCR_LEN);
9380 
9381 enum mlxsw_reg_mfcr_pwm_frequency {
9382 	MLXSW_REG_MFCR_PWM_FEQ_11HZ = 0x00,
9383 	MLXSW_REG_MFCR_PWM_FEQ_14_7HZ = 0x01,
9384 	MLXSW_REG_MFCR_PWM_FEQ_22_1HZ = 0x02,
9385 	MLXSW_REG_MFCR_PWM_FEQ_1_4KHZ = 0x40,
9386 	MLXSW_REG_MFCR_PWM_FEQ_5KHZ = 0x41,
9387 	MLXSW_REG_MFCR_PWM_FEQ_20KHZ = 0x42,
9388 	MLXSW_REG_MFCR_PWM_FEQ_22_5KHZ = 0x43,
9389 	MLXSW_REG_MFCR_PWM_FEQ_25KHZ = 0x44,
9390 };
9391 
9392 /* reg_mfcr_pwm_frequency
9393  * Controls the frequency of the PWM signal.
9394  * Access: RW
9395  */
9396 MLXSW_ITEM32(reg, mfcr, pwm_frequency, 0x00, 0, 7);
9397 
9398 #define MLXSW_MFCR_TACHOS_MAX 10
9399 
9400 /* reg_mfcr_tacho_active
9401  * Indicates which of the tachometer is active (bit per tachometer).
9402  * Access: RO
9403  */
9404 MLXSW_ITEM32(reg, mfcr, tacho_active, 0x04, 16, MLXSW_MFCR_TACHOS_MAX);
9405 
9406 #define MLXSW_MFCR_PWMS_MAX 5
9407 
9408 /* reg_mfcr_pwm_active
9409  * Indicates which of the PWM control is active (bit per PWM).
9410  * Access: RO
9411  */
9412 MLXSW_ITEM32(reg, mfcr, pwm_active, 0x04, 0, MLXSW_MFCR_PWMS_MAX);
9413 
9414 static inline void
9415 mlxsw_reg_mfcr_pack(char *payload,
9416 		    enum mlxsw_reg_mfcr_pwm_frequency pwm_frequency)
9417 {
9418 	MLXSW_REG_ZERO(mfcr, payload);
9419 	mlxsw_reg_mfcr_pwm_frequency_set(payload, pwm_frequency);
9420 }
9421 
9422 static inline void
9423 mlxsw_reg_mfcr_unpack(char *payload,
9424 		      enum mlxsw_reg_mfcr_pwm_frequency *p_pwm_frequency,
9425 		      u16 *p_tacho_active, u8 *p_pwm_active)
9426 {
9427 	*p_pwm_frequency = mlxsw_reg_mfcr_pwm_frequency_get(payload);
9428 	*p_tacho_active = mlxsw_reg_mfcr_tacho_active_get(payload);
9429 	*p_pwm_active = mlxsw_reg_mfcr_pwm_active_get(payload);
9430 }
9431 
9432 /* MFSC - Management Fan Speed Control Register
9433  * --------------------------------------------
9434  * This register controls the settings of the Fan Speed PWM mechanism.
9435  */
9436 #define MLXSW_REG_MFSC_ID 0x9002
9437 #define MLXSW_REG_MFSC_LEN 0x08
9438 
9439 MLXSW_REG_DEFINE(mfsc, MLXSW_REG_MFSC_ID, MLXSW_REG_MFSC_LEN);
9440 
9441 /* reg_mfsc_pwm
9442  * Fan pwm to control / monitor.
9443  * Access: Index
9444  */
9445 MLXSW_ITEM32(reg, mfsc, pwm, 0x00, 24, 3);
9446 
9447 /* reg_mfsc_pwm_duty_cycle
9448  * Controls the duty cycle of the PWM. Value range from 0..255 to
9449  * represent duty cycle of 0%...100%.
9450  * Access: RW
9451  */
9452 MLXSW_ITEM32(reg, mfsc, pwm_duty_cycle, 0x04, 0, 8);
9453 
9454 static inline void mlxsw_reg_mfsc_pack(char *payload, u8 pwm,
9455 				       u8 pwm_duty_cycle)
9456 {
9457 	MLXSW_REG_ZERO(mfsc, payload);
9458 	mlxsw_reg_mfsc_pwm_set(payload, pwm);
9459 	mlxsw_reg_mfsc_pwm_duty_cycle_set(payload, pwm_duty_cycle);
9460 }
9461 
9462 /* MFSM - Management Fan Speed Measurement
9463  * ---------------------------------------
9464  * This register controls the settings of the Tacho measurements and
9465  * enables reading the Tachometer measurements.
9466  */
9467 #define MLXSW_REG_MFSM_ID 0x9003
9468 #define MLXSW_REG_MFSM_LEN 0x08
9469 
9470 MLXSW_REG_DEFINE(mfsm, MLXSW_REG_MFSM_ID, MLXSW_REG_MFSM_LEN);
9471 
9472 /* reg_mfsm_tacho
9473  * Fan tachometer index.
9474  * Access: Index
9475  */
9476 MLXSW_ITEM32(reg, mfsm, tacho, 0x00, 24, 4);
9477 
9478 /* reg_mfsm_rpm
9479  * Fan speed (round per minute).
9480  * Access: RO
9481  */
9482 MLXSW_ITEM32(reg, mfsm, rpm, 0x04, 0, 16);
9483 
9484 static inline void mlxsw_reg_mfsm_pack(char *payload, u8 tacho)
9485 {
9486 	MLXSW_REG_ZERO(mfsm, payload);
9487 	mlxsw_reg_mfsm_tacho_set(payload, tacho);
9488 }
9489 
9490 /* MFSL - Management Fan Speed Limit Register
9491  * ------------------------------------------
9492  * The Fan Speed Limit register is used to configure the fan speed
9493  * event / interrupt notification mechanism. Fan speed threshold are
9494  * defined for both under-speed and over-speed.
9495  */
9496 #define MLXSW_REG_MFSL_ID 0x9004
9497 #define MLXSW_REG_MFSL_LEN 0x0C
9498 
9499 MLXSW_REG_DEFINE(mfsl, MLXSW_REG_MFSL_ID, MLXSW_REG_MFSL_LEN);
9500 
9501 /* reg_mfsl_tacho
9502  * Fan tachometer index.
9503  * Access: Index
9504  */
9505 MLXSW_ITEM32(reg, mfsl, tacho, 0x00, 24, 4);
9506 
9507 /* reg_mfsl_tach_min
9508  * Tachometer minimum value (minimum RPM).
9509  * Access: RW
9510  */
9511 MLXSW_ITEM32(reg, mfsl, tach_min, 0x04, 0, 16);
9512 
9513 /* reg_mfsl_tach_max
9514  * Tachometer maximum value (maximum RPM).
9515  * Access: RW
9516  */
9517 MLXSW_ITEM32(reg, mfsl, tach_max, 0x08, 0, 16);
9518 
9519 static inline void mlxsw_reg_mfsl_pack(char *payload, u8 tacho,
9520 				       u16 tach_min, u16 tach_max)
9521 {
9522 	MLXSW_REG_ZERO(mfsl, payload);
9523 	mlxsw_reg_mfsl_tacho_set(payload, tacho);
9524 	mlxsw_reg_mfsl_tach_min_set(payload, tach_min);
9525 	mlxsw_reg_mfsl_tach_max_set(payload, tach_max);
9526 }
9527 
9528 static inline void mlxsw_reg_mfsl_unpack(char *payload, u8 tacho,
9529 					 u16 *p_tach_min, u16 *p_tach_max)
9530 {
9531 	if (p_tach_min)
9532 		*p_tach_min = mlxsw_reg_mfsl_tach_min_get(payload);
9533 
9534 	if (p_tach_max)
9535 		*p_tach_max = mlxsw_reg_mfsl_tach_max_get(payload);
9536 }
9537 
9538 /* FORE - Fan Out of Range Event Register
9539  * --------------------------------------
9540  * This register reports the status of the controlled fans compared to the
9541  * range defined by the MFSL register.
9542  */
9543 #define MLXSW_REG_FORE_ID 0x9007
9544 #define MLXSW_REG_FORE_LEN 0x0C
9545 
9546 MLXSW_REG_DEFINE(fore, MLXSW_REG_FORE_ID, MLXSW_REG_FORE_LEN);
9547 
9548 /* fan_under_limit
9549  * Fan speed is below the low limit defined in MFSL register. Each bit relates
9550  * to a single tachometer and indicates the specific tachometer reading is
9551  * below the threshold.
9552  * Access: RO
9553  */
9554 MLXSW_ITEM32(reg, fore, fan_under_limit, 0x00, 16, 10);
9555 
9556 static inline void mlxsw_reg_fore_unpack(char *payload, u8 tacho,
9557 					 bool *fault)
9558 {
9559 	u16 limit;
9560 
9561 	if (fault) {
9562 		limit = mlxsw_reg_fore_fan_under_limit_get(payload);
9563 		*fault = limit & BIT(tacho);
9564 	}
9565 }
9566 
9567 /* MTCAP - Management Temperature Capabilities
9568  * -------------------------------------------
9569  * This register exposes the capabilities of the device and
9570  * system temperature sensing.
9571  */
9572 #define MLXSW_REG_MTCAP_ID 0x9009
9573 #define MLXSW_REG_MTCAP_LEN 0x08
9574 
9575 MLXSW_REG_DEFINE(mtcap, MLXSW_REG_MTCAP_ID, MLXSW_REG_MTCAP_LEN);
9576 
9577 /* reg_mtcap_sensor_count
9578  * Number of sensors supported by the device.
9579  * This includes the QSFP module sensors (if exists in the QSFP module).
9580  * Access: RO
9581  */
9582 MLXSW_ITEM32(reg, mtcap, sensor_count, 0x00, 0, 7);
9583 
9584 /* MTMP - Management Temperature
9585  * -----------------------------
9586  * This register controls the settings of the temperature measurements
9587  * and enables reading the temperature measurements. Note that temperature
9588  * is in 0.125 degrees Celsius.
9589  */
9590 #define MLXSW_REG_MTMP_ID 0x900A
9591 #define MLXSW_REG_MTMP_LEN 0x20
9592 
9593 MLXSW_REG_DEFINE(mtmp, MLXSW_REG_MTMP_ID, MLXSW_REG_MTMP_LEN);
9594 
9595 #define MLXSW_REG_MTMP_MODULE_INDEX_MIN 64
9596 #define MLXSW_REG_MTMP_GBOX_INDEX_MIN 256
9597 /* reg_mtmp_sensor_index
9598  * Sensors index to access.
9599  * 64-127 of sensor_index are mapped to the SFP+/QSFP modules sequentially
9600  * (module 0 is mapped to sensor_index 64).
9601  * Access: Index
9602  */
9603 MLXSW_ITEM32(reg, mtmp, sensor_index, 0x00, 0, 12);
9604 
9605 /* Convert to milli degrees Celsius */
9606 #define MLXSW_REG_MTMP_TEMP_TO_MC(val) ({ typeof(val) v_ = (val); \
9607 					  ((v_) >= 0) ? ((v_) * 125) : \
9608 					  ((s16)((GENMASK(15, 0) + (v_) + 1) \
9609 					   * 125)); })
9610 
9611 /* reg_mtmp_max_operational_temperature
9612  * The highest temperature in the nominal operational range. Reading is in
9613  * 0.125 Celsius degrees units.
9614  * In case of module this is SFF critical temperature threshold.
9615  * Access: RO
9616  */
9617 MLXSW_ITEM32(reg, mtmp, max_operational_temperature, 0x04, 16, 16);
9618 
9619 /* reg_mtmp_temperature
9620  * Temperature reading from the sensor. Reading is in 0.125 Celsius
9621  * degrees units.
9622  * Access: RO
9623  */
9624 MLXSW_ITEM32(reg, mtmp, temperature, 0x04, 0, 16);
9625 
9626 /* reg_mtmp_mte
9627  * Max Temperature Enable - enables measuring the max temperature on a sensor.
9628  * Access: RW
9629  */
9630 MLXSW_ITEM32(reg, mtmp, mte, 0x08, 31, 1);
9631 
9632 /* reg_mtmp_mtr
9633  * Max Temperature Reset - clears the value of the max temperature register.
9634  * Access: WO
9635  */
9636 MLXSW_ITEM32(reg, mtmp, mtr, 0x08, 30, 1);
9637 
9638 /* reg_mtmp_max_temperature
9639  * The highest measured temperature from the sensor.
9640  * When the bit mte is cleared, the field max_temperature is reserved.
9641  * Access: RO
9642  */
9643 MLXSW_ITEM32(reg, mtmp, max_temperature, 0x08, 0, 16);
9644 
9645 /* reg_mtmp_tee
9646  * Temperature Event Enable.
9647  * 0 - Do not generate event
9648  * 1 - Generate event
9649  * 2 - Generate single event
9650  * Access: RW
9651  */
9652 
9653 enum mlxsw_reg_mtmp_tee {
9654 	MLXSW_REG_MTMP_TEE_NO_EVENT,
9655 	MLXSW_REG_MTMP_TEE_GENERATE_EVENT,
9656 	MLXSW_REG_MTMP_TEE_GENERATE_SINGLE_EVENT,
9657 };
9658 
9659 MLXSW_ITEM32(reg, mtmp, tee, 0x0C, 30, 2);
9660 
9661 #define MLXSW_REG_MTMP_THRESH_HI 0x348	/* 105 Celsius */
9662 
9663 /* reg_mtmp_temperature_threshold_hi
9664  * High threshold for Temperature Warning Event. In 0.125 Celsius.
9665  * Access: RW
9666  */
9667 MLXSW_ITEM32(reg, mtmp, temperature_threshold_hi, 0x0C, 0, 16);
9668 
9669 #define MLXSW_REG_MTMP_HYSTERESIS_TEMP 0x28 /* 5 Celsius */
9670 /* reg_mtmp_temperature_threshold_lo
9671  * Low threshold for Temperature Warning Event. In 0.125 Celsius.
9672  * Access: RW
9673  */
9674 MLXSW_ITEM32(reg, mtmp, temperature_threshold_lo, 0x10, 0, 16);
9675 
9676 #define MLXSW_REG_MTMP_SENSOR_NAME_SIZE 8
9677 
9678 /* reg_mtmp_sensor_name
9679  * Sensor Name
9680  * Access: RO
9681  */
9682 MLXSW_ITEM_BUF(reg, mtmp, sensor_name, 0x18, MLXSW_REG_MTMP_SENSOR_NAME_SIZE);
9683 
9684 static inline void mlxsw_reg_mtmp_pack(char *payload, u16 sensor_index,
9685 				       bool max_temp_enable,
9686 				       bool max_temp_reset)
9687 {
9688 	MLXSW_REG_ZERO(mtmp, payload);
9689 	mlxsw_reg_mtmp_sensor_index_set(payload, sensor_index);
9690 	mlxsw_reg_mtmp_mte_set(payload, max_temp_enable);
9691 	mlxsw_reg_mtmp_mtr_set(payload, max_temp_reset);
9692 	mlxsw_reg_mtmp_temperature_threshold_hi_set(payload,
9693 						    MLXSW_REG_MTMP_THRESH_HI);
9694 }
9695 
9696 static inline void mlxsw_reg_mtmp_unpack(char *payload, int *p_temp,
9697 					 int *p_max_temp, int *p_temp_hi,
9698 					 int *p_max_oper_temp,
9699 					 char *sensor_name)
9700 {
9701 	s16 temp;
9702 
9703 	if (p_temp) {
9704 		temp = mlxsw_reg_mtmp_temperature_get(payload);
9705 		*p_temp = MLXSW_REG_MTMP_TEMP_TO_MC(temp);
9706 	}
9707 	if (p_max_temp) {
9708 		temp = mlxsw_reg_mtmp_max_temperature_get(payload);
9709 		*p_max_temp = MLXSW_REG_MTMP_TEMP_TO_MC(temp);
9710 	}
9711 	if (p_temp_hi) {
9712 		temp = mlxsw_reg_mtmp_temperature_threshold_hi_get(payload);
9713 		*p_temp_hi = MLXSW_REG_MTMP_TEMP_TO_MC(temp);
9714 	}
9715 	if (p_max_oper_temp) {
9716 		temp = mlxsw_reg_mtmp_max_operational_temperature_get(payload);
9717 		*p_max_oper_temp = MLXSW_REG_MTMP_TEMP_TO_MC(temp);
9718 	}
9719 	if (sensor_name)
9720 		mlxsw_reg_mtmp_sensor_name_memcpy_from(payload, sensor_name);
9721 }
9722 
9723 /* MTWE - Management Temperature Warning Event
9724  * -------------------------------------------
9725  * This register is used for over temperature warning.
9726  */
9727 #define MLXSW_REG_MTWE_ID 0x900B
9728 #define MLXSW_REG_MTWE_LEN 0x10
9729 
9730 MLXSW_REG_DEFINE(mtwe, MLXSW_REG_MTWE_ID, MLXSW_REG_MTWE_LEN);
9731 
9732 /* reg_mtwe_sensor_warning
9733  * Bit vector indicating which of the sensor reading is above threshold.
9734  * Address 00h bit31 is sensor_warning[127].
9735  * Address 0Ch bit0 is sensor_warning[0].
9736  * Access: RO
9737  */
9738 MLXSW_ITEM_BIT_ARRAY(reg, mtwe, sensor_warning, 0x0, 0x10, 1);
9739 
9740 /* MTBR - Management Temperature Bulk Register
9741  * -------------------------------------------
9742  * This register is used for bulk temperature reading.
9743  */
9744 #define MLXSW_REG_MTBR_ID 0x900F
9745 #define MLXSW_REG_MTBR_BASE_LEN 0x10 /* base length, without records */
9746 #define MLXSW_REG_MTBR_REC_LEN 0x04 /* record length */
9747 #define MLXSW_REG_MTBR_REC_MAX_COUNT 47 /* firmware limitation */
9748 #define MLXSW_REG_MTBR_LEN (MLXSW_REG_MTBR_BASE_LEN +	\
9749 			    MLXSW_REG_MTBR_REC_LEN *	\
9750 			    MLXSW_REG_MTBR_REC_MAX_COUNT)
9751 
9752 MLXSW_REG_DEFINE(mtbr, MLXSW_REG_MTBR_ID, MLXSW_REG_MTBR_LEN);
9753 
9754 /* reg_mtbr_base_sensor_index
9755  * Base sensors index to access (0 - ASIC sensor, 1-63 - ambient sensors,
9756  * 64-127 are mapped to the SFP+/QSFP modules sequentially).
9757  * Access: Index
9758  */
9759 MLXSW_ITEM32(reg, mtbr, base_sensor_index, 0x00, 0, 12);
9760 
9761 /* reg_mtbr_num_rec
9762  * Request: Number of records to read
9763  * Response: Number of records read
9764  * See above description for more details.
9765  * Range 1..255
9766  * Access: RW
9767  */
9768 MLXSW_ITEM32(reg, mtbr, num_rec, 0x04, 0, 8);
9769 
9770 /* reg_mtbr_rec_max_temp
9771  * The highest measured temperature from the sensor.
9772  * When the bit mte is cleared, the field max_temperature is reserved.
9773  * Access: RO
9774  */
9775 MLXSW_ITEM32_INDEXED(reg, mtbr, rec_max_temp, MLXSW_REG_MTBR_BASE_LEN, 16,
9776 		     16, MLXSW_REG_MTBR_REC_LEN, 0x00, false);
9777 
9778 /* reg_mtbr_rec_temp
9779  * Temperature reading from the sensor. Reading is in 0..125 Celsius
9780  * degrees units.
9781  * Access: RO
9782  */
9783 MLXSW_ITEM32_INDEXED(reg, mtbr, rec_temp, MLXSW_REG_MTBR_BASE_LEN, 0, 16,
9784 		     MLXSW_REG_MTBR_REC_LEN, 0x00, false);
9785 
9786 static inline void mlxsw_reg_mtbr_pack(char *payload, u16 base_sensor_index,
9787 				       u8 num_rec)
9788 {
9789 	MLXSW_REG_ZERO(mtbr, payload);
9790 	mlxsw_reg_mtbr_base_sensor_index_set(payload, base_sensor_index);
9791 	mlxsw_reg_mtbr_num_rec_set(payload, num_rec);
9792 }
9793 
9794 /* Error codes from temperatute reading */
9795 enum mlxsw_reg_mtbr_temp_status {
9796 	MLXSW_REG_MTBR_NO_CONN		= 0x8000,
9797 	MLXSW_REG_MTBR_NO_TEMP_SENS	= 0x8001,
9798 	MLXSW_REG_MTBR_INDEX_NA		= 0x8002,
9799 	MLXSW_REG_MTBR_BAD_SENS_INFO	= 0x8003,
9800 };
9801 
9802 /* Base index for reading modules temperature */
9803 #define MLXSW_REG_MTBR_BASE_MODULE_INDEX 64
9804 
9805 static inline void mlxsw_reg_mtbr_temp_unpack(char *payload, int rec_ind,
9806 					      u16 *p_temp, u16 *p_max_temp)
9807 {
9808 	if (p_temp)
9809 		*p_temp = mlxsw_reg_mtbr_rec_temp_get(payload, rec_ind);
9810 	if (p_max_temp)
9811 		*p_max_temp = mlxsw_reg_mtbr_rec_max_temp_get(payload, rec_ind);
9812 }
9813 
9814 /* MCIA - Management Cable Info Access
9815  * -----------------------------------
9816  * MCIA register is used to access the SFP+ and QSFP connector's EPROM.
9817  */
9818 
9819 #define MLXSW_REG_MCIA_ID 0x9014
9820 #define MLXSW_REG_MCIA_LEN 0x40
9821 
9822 MLXSW_REG_DEFINE(mcia, MLXSW_REG_MCIA_ID, MLXSW_REG_MCIA_LEN);
9823 
9824 /* reg_mcia_l
9825  * Lock bit. Setting this bit will lock the access to the specific
9826  * cable. Used for updating a full page in a cable EPROM. Any access
9827  * other then subsequence writes will fail while the port is locked.
9828  * Access: RW
9829  */
9830 MLXSW_ITEM32(reg, mcia, l, 0x00, 31, 1);
9831 
9832 /* reg_mcia_module
9833  * Module number.
9834  * Access: Index
9835  */
9836 MLXSW_ITEM32(reg, mcia, module, 0x00, 16, 8);
9837 
9838 enum {
9839 	MLXSW_REG_MCIA_STATUS_GOOD = 0,
9840 	/* No response from module's EEPROM. */
9841 	MLXSW_REG_MCIA_STATUS_NO_EEPROM_MODULE = 1,
9842 	/* Module type not supported by the device. */
9843 	MLXSW_REG_MCIA_STATUS_MODULE_NOT_SUPPORTED = 2,
9844 	/* No module present indication. */
9845 	MLXSW_REG_MCIA_STATUS_MODULE_NOT_CONNECTED = 3,
9846 	/* Error occurred while trying to access module's EEPROM using I2C. */
9847 	MLXSW_REG_MCIA_STATUS_I2C_ERROR = 9,
9848 	/* Module is disabled. */
9849 	MLXSW_REG_MCIA_STATUS_MODULE_DISABLED = 16,
9850 };
9851 
9852 /* reg_mcia_status
9853  * Module status.
9854  * Access: RO
9855  */
9856 MLXSW_ITEM32(reg, mcia, status, 0x00, 0, 8);
9857 
9858 /* reg_mcia_i2c_device_address
9859  * I2C device address.
9860  * Access: RW
9861  */
9862 MLXSW_ITEM32(reg, mcia, i2c_device_address, 0x04, 24, 8);
9863 
9864 /* reg_mcia_page_number
9865  * Page number.
9866  * Access: RW
9867  */
9868 MLXSW_ITEM32(reg, mcia, page_number, 0x04, 16, 8);
9869 
9870 /* reg_mcia_device_address
9871  * Device address.
9872  * Access: RW
9873  */
9874 MLXSW_ITEM32(reg, mcia, device_address, 0x04, 0, 16);
9875 
9876 /* reg_mcia_bank_number
9877  * Bank number.
9878  * Access: Index
9879  */
9880 MLXSW_ITEM32(reg, mcia, bank_number, 0x08, 16, 8);
9881 
9882 /* reg_mcia_size
9883  * Number of bytes to read/write (up to 48 bytes).
9884  * Access: RW
9885  */
9886 MLXSW_ITEM32(reg, mcia, size, 0x08, 0, 16);
9887 
9888 #define MLXSW_REG_MCIA_EEPROM_PAGE_LENGTH	256
9889 #define MLXSW_REG_MCIA_EEPROM_UP_PAGE_LENGTH	128
9890 #define MLXSW_REG_MCIA_EEPROM_SIZE		48
9891 #define MLXSW_REG_MCIA_I2C_ADDR_LOW		0x50
9892 #define MLXSW_REG_MCIA_I2C_ADDR_HIGH		0x51
9893 #define MLXSW_REG_MCIA_PAGE0_LO_OFF		0xa0
9894 #define MLXSW_REG_MCIA_TH_ITEM_SIZE		2
9895 #define MLXSW_REG_MCIA_TH_PAGE_NUM		3
9896 #define MLXSW_REG_MCIA_TH_PAGE_CMIS_NUM		2
9897 #define MLXSW_REG_MCIA_PAGE0_LO			0
9898 #define MLXSW_REG_MCIA_TH_PAGE_OFF		0x80
9899 #define MLXSW_REG_MCIA_EEPROM_CMIS_FLAT_MEMORY	BIT(7)
9900 
9901 enum mlxsw_reg_mcia_eeprom_module_info_rev_id {
9902 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID_UNSPC	= 0x00,
9903 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID_8436	= 0x01,
9904 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID_8636	= 0x03,
9905 };
9906 
9907 enum mlxsw_reg_mcia_eeprom_module_info_id {
9908 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_SFP	= 0x03,
9909 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP	= 0x0C,
9910 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP_PLUS	= 0x0D,
9911 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP28	= 0x11,
9912 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID_QSFP_DD	= 0x18,
9913 };
9914 
9915 enum mlxsw_reg_mcia_eeprom_module_info {
9916 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_ID,
9917 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_REV_ID,
9918 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_TYPE_ID,
9919 	MLXSW_REG_MCIA_EEPROM_MODULE_INFO_SIZE,
9920 };
9921 
9922 /* reg_mcia_eeprom
9923  * Bytes to read/write.
9924  * Access: RW
9925  */
9926 MLXSW_ITEM_BUF(reg, mcia, eeprom, 0x10, MLXSW_REG_MCIA_EEPROM_SIZE);
9927 
9928 /* This is used to access the optional upper pages (1-3) in the QSFP+
9929  * memory map. Page 1 is available on offset 256 through 383, page 2 -
9930  * on offset 384 through 511, page 3 - on offset 512 through 639.
9931  */
9932 #define MLXSW_REG_MCIA_PAGE_GET(off) (((off) - \
9933 				MLXSW_REG_MCIA_EEPROM_PAGE_LENGTH) / \
9934 				MLXSW_REG_MCIA_EEPROM_UP_PAGE_LENGTH + 1)
9935 
9936 static inline void mlxsw_reg_mcia_pack(char *payload, u8 module, u8 lock,
9937 				       u8 page_number, u16 device_addr,
9938 				       u8 size, u8 i2c_device_addr)
9939 {
9940 	MLXSW_REG_ZERO(mcia, payload);
9941 	mlxsw_reg_mcia_module_set(payload, module);
9942 	mlxsw_reg_mcia_l_set(payload, lock);
9943 	mlxsw_reg_mcia_page_number_set(payload, page_number);
9944 	mlxsw_reg_mcia_device_address_set(payload, device_addr);
9945 	mlxsw_reg_mcia_size_set(payload, size);
9946 	mlxsw_reg_mcia_i2c_device_address_set(payload, i2c_device_addr);
9947 }
9948 
9949 /* MPAT - Monitoring Port Analyzer Table
9950  * -------------------------------------
9951  * MPAT Register is used to query and configure the Switch PortAnalyzer Table.
9952  * For an enabled analyzer, all fields except e (enable) cannot be modified.
9953  */
9954 #define MLXSW_REG_MPAT_ID 0x901A
9955 #define MLXSW_REG_MPAT_LEN 0x78
9956 
9957 MLXSW_REG_DEFINE(mpat, MLXSW_REG_MPAT_ID, MLXSW_REG_MPAT_LEN);
9958 
9959 /* reg_mpat_pa_id
9960  * Port Analyzer ID.
9961  * Access: Index
9962  */
9963 MLXSW_ITEM32(reg, mpat, pa_id, 0x00, 28, 4);
9964 
9965 /* reg_mpat_session_id
9966  * Mirror Session ID.
9967  * Used for MIRROR_SESSION<i> trap.
9968  * Access: RW
9969  */
9970 MLXSW_ITEM32(reg, mpat, session_id, 0x00, 24, 4);
9971 
9972 /* reg_mpat_system_port
9973  * A unique port identifier for the final destination of the packet.
9974  * Access: RW
9975  */
9976 MLXSW_ITEM32(reg, mpat, system_port, 0x00, 0, 16);
9977 
9978 /* reg_mpat_e
9979  * Enable. Indicating the Port Analyzer is enabled.
9980  * Access: RW
9981  */
9982 MLXSW_ITEM32(reg, mpat, e, 0x04, 31, 1);
9983 
9984 /* reg_mpat_qos
9985  * Quality Of Service Mode.
9986  * 0: CONFIGURED - QoS parameters (Switch Priority, and encapsulation
9987  * PCP, DEI, DSCP or VL) are configured.
9988  * 1: MAINTAIN - QoS parameters (Switch Priority, Color) are the
9989  * same as in the original packet that has triggered the mirroring. For
9990  * SPAN also the pcp,dei are maintained.
9991  * Access: RW
9992  */
9993 MLXSW_ITEM32(reg, mpat, qos, 0x04, 26, 1);
9994 
9995 /* reg_mpat_be
9996  * Best effort mode. Indicates mirroring traffic should not cause packet
9997  * drop or back pressure, but will discard the mirrored packets. Mirrored
9998  * packets will be forwarded on a best effort manner.
9999  * 0: Do not discard mirrored packets
10000  * 1: Discard mirrored packets if causing congestion
10001  * Access: RW
10002  */
10003 MLXSW_ITEM32(reg, mpat, be, 0x04, 25, 1);
10004 
10005 enum mlxsw_reg_mpat_span_type {
10006 	/* Local SPAN Ethernet.
10007 	 * The original packet is not encapsulated.
10008 	 */
10009 	MLXSW_REG_MPAT_SPAN_TYPE_LOCAL_ETH = 0x0,
10010 
10011 	/* Remote SPAN Ethernet VLAN.
10012 	 * The packet is forwarded to the monitoring port on the monitoring
10013 	 * VLAN.
10014 	 */
10015 	MLXSW_REG_MPAT_SPAN_TYPE_REMOTE_ETH = 0x1,
10016 
10017 	/* Encapsulated Remote SPAN Ethernet L3 GRE.
10018 	 * The packet is encapsulated with GRE header.
10019 	 */
10020 	MLXSW_REG_MPAT_SPAN_TYPE_REMOTE_ETH_L3 = 0x3,
10021 };
10022 
10023 /* reg_mpat_span_type
10024  * SPAN type.
10025  * Access: RW
10026  */
10027 MLXSW_ITEM32(reg, mpat, span_type, 0x04, 0, 4);
10028 
10029 /* reg_mpat_pide
10030  * Policer enable.
10031  * Access: RW
10032  */
10033 MLXSW_ITEM32(reg, mpat, pide, 0x0C, 15, 1);
10034 
10035 /* reg_mpat_pid
10036  * Policer ID.
10037  * Access: RW
10038  */
10039 MLXSW_ITEM32(reg, mpat, pid, 0x0C, 0, 14);
10040 
10041 /* Remote SPAN - Ethernet VLAN
10042  * - - - - - - - - - - - - - -
10043  */
10044 
10045 /* reg_mpat_eth_rspan_vid
10046  * Encapsulation header VLAN ID.
10047  * Access: RW
10048  */
10049 MLXSW_ITEM32(reg, mpat, eth_rspan_vid, 0x18, 0, 12);
10050 
10051 /* Encapsulated Remote SPAN - Ethernet L2
10052  * - - - - - - - - - - - - - - - - - - -
10053  */
10054 
10055 enum mlxsw_reg_mpat_eth_rspan_version {
10056 	MLXSW_REG_MPAT_ETH_RSPAN_VERSION_NO_HEADER = 15,
10057 };
10058 
10059 /* reg_mpat_eth_rspan_version
10060  * RSPAN mirror header version.
10061  * Access: RW
10062  */
10063 MLXSW_ITEM32(reg, mpat, eth_rspan_version, 0x10, 18, 4);
10064 
10065 /* reg_mpat_eth_rspan_mac
10066  * Destination MAC address.
10067  * Access: RW
10068  */
10069 MLXSW_ITEM_BUF(reg, mpat, eth_rspan_mac, 0x12, 6);
10070 
10071 /* reg_mpat_eth_rspan_tp
10072  * Tag Packet. Indicates whether the mirroring header should be VLAN tagged.
10073  * Access: RW
10074  */
10075 MLXSW_ITEM32(reg, mpat, eth_rspan_tp, 0x18, 16, 1);
10076 
10077 /* Encapsulated Remote SPAN - Ethernet L3
10078  * - - - - - - - - - - - - - - - - - - -
10079  */
10080 
10081 enum mlxsw_reg_mpat_eth_rspan_protocol {
10082 	MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV4,
10083 	MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV6,
10084 };
10085 
10086 /* reg_mpat_eth_rspan_protocol
10087  * SPAN encapsulation protocol.
10088  * Access: RW
10089  */
10090 MLXSW_ITEM32(reg, mpat, eth_rspan_protocol, 0x18, 24, 4);
10091 
10092 /* reg_mpat_eth_rspan_ttl
10093  * Encapsulation header Time-to-Live/HopLimit.
10094  * Access: RW
10095  */
10096 MLXSW_ITEM32(reg, mpat, eth_rspan_ttl, 0x1C, 4, 8);
10097 
10098 /* reg_mpat_eth_rspan_smac
10099  * Source MAC address
10100  * Access: RW
10101  */
10102 MLXSW_ITEM_BUF(reg, mpat, eth_rspan_smac, 0x22, 6);
10103 
10104 /* reg_mpat_eth_rspan_dip*
10105  * Destination IP address. The IP version is configured by protocol.
10106  * Access: RW
10107  */
10108 MLXSW_ITEM32(reg, mpat, eth_rspan_dip4, 0x4C, 0, 32);
10109 MLXSW_ITEM_BUF(reg, mpat, eth_rspan_dip6, 0x40, 16);
10110 
10111 /* reg_mpat_eth_rspan_sip*
10112  * Source IP address. The IP version is configured by protocol.
10113  * Access: RW
10114  */
10115 MLXSW_ITEM32(reg, mpat, eth_rspan_sip4, 0x5C, 0, 32);
10116 MLXSW_ITEM_BUF(reg, mpat, eth_rspan_sip6, 0x50, 16);
10117 
10118 static inline void mlxsw_reg_mpat_pack(char *payload, u8 pa_id,
10119 				       u16 system_port, bool e,
10120 				       enum mlxsw_reg_mpat_span_type span_type)
10121 {
10122 	MLXSW_REG_ZERO(mpat, payload);
10123 	mlxsw_reg_mpat_pa_id_set(payload, pa_id);
10124 	mlxsw_reg_mpat_system_port_set(payload, system_port);
10125 	mlxsw_reg_mpat_e_set(payload, e);
10126 	mlxsw_reg_mpat_qos_set(payload, 1);
10127 	mlxsw_reg_mpat_be_set(payload, 1);
10128 	mlxsw_reg_mpat_span_type_set(payload, span_type);
10129 }
10130 
10131 static inline void mlxsw_reg_mpat_eth_rspan_pack(char *payload, u16 vid)
10132 {
10133 	mlxsw_reg_mpat_eth_rspan_vid_set(payload, vid);
10134 }
10135 
10136 static inline void
10137 mlxsw_reg_mpat_eth_rspan_l2_pack(char *payload,
10138 				 enum mlxsw_reg_mpat_eth_rspan_version version,
10139 				 const char *mac,
10140 				 bool tp)
10141 {
10142 	mlxsw_reg_mpat_eth_rspan_version_set(payload, version);
10143 	mlxsw_reg_mpat_eth_rspan_mac_memcpy_to(payload, mac);
10144 	mlxsw_reg_mpat_eth_rspan_tp_set(payload, tp);
10145 }
10146 
10147 static inline void
10148 mlxsw_reg_mpat_eth_rspan_l3_ipv4_pack(char *payload, u8 ttl,
10149 				      const char *smac,
10150 				      u32 sip, u32 dip)
10151 {
10152 	mlxsw_reg_mpat_eth_rspan_ttl_set(payload, ttl);
10153 	mlxsw_reg_mpat_eth_rspan_smac_memcpy_to(payload, smac);
10154 	mlxsw_reg_mpat_eth_rspan_protocol_set(payload,
10155 				    MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV4);
10156 	mlxsw_reg_mpat_eth_rspan_sip4_set(payload, sip);
10157 	mlxsw_reg_mpat_eth_rspan_dip4_set(payload, dip);
10158 }
10159 
10160 static inline void
10161 mlxsw_reg_mpat_eth_rspan_l3_ipv6_pack(char *payload, u8 ttl,
10162 				      const char *smac,
10163 				      struct in6_addr sip, struct in6_addr dip)
10164 {
10165 	mlxsw_reg_mpat_eth_rspan_ttl_set(payload, ttl);
10166 	mlxsw_reg_mpat_eth_rspan_smac_memcpy_to(payload, smac);
10167 	mlxsw_reg_mpat_eth_rspan_protocol_set(payload,
10168 				    MLXSW_REG_MPAT_ETH_RSPAN_PROTOCOL_IPV6);
10169 	mlxsw_reg_mpat_eth_rspan_sip6_memcpy_to(payload, (void *)&sip);
10170 	mlxsw_reg_mpat_eth_rspan_dip6_memcpy_to(payload, (void *)&dip);
10171 }
10172 
10173 /* MPAR - Monitoring Port Analyzer Register
10174  * ----------------------------------------
10175  * MPAR register is used to query and configure the port analyzer port mirroring
10176  * properties.
10177  */
10178 #define MLXSW_REG_MPAR_ID 0x901B
10179 #define MLXSW_REG_MPAR_LEN 0x0C
10180 
10181 MLXSW_REG_DEFINE(mpar, MLXSW_REG_MPAR_ID, MLXSW_REG_MPAR_LEN);
10182 
10183 /* reg_mpar_local_port
10184  * The local port to mirror the packets from.
10185  * Access: Index
10186  */
10187 MLXSW_ITEM32(reg, mpar, local_port, 0x00, 16, 8);
10188 
10189 enum mlxsw_reg_mpar_i_e {
10190 	MLXSW_REG_MPAR_TYPE_EGRESS,
10191 	MLXSW_REG_MPAR_TYPE_INGRESS,
10192 };
10193 
10194 /* reg_mpar_i_e
10195  * Ingress/Egress
10196  * Access: Index
10197  */
10198 MLXSW_ITEM32(reg, mpar, i_e, 0x00, 0, 4);
10199 
10200 /* reg_mpar_enable
10201  * Enable mirroring
10202  * By default, port mirroring is disabled for all ports.
10203  * Access: RW
10204  */
10205 MLXSW_ITEM32(reg, mpar, enable, 0x04, 31, 1);
10206 
10207 /* reg_mpar_pa_id
10208  * Port Analyzer ID.
10209  * Access: RW
10210  */
10211 MLXSW_ITEM32(reg, mpar, pa_id, 0x04, 0, 4);
10212 
10213 #define MLXSW_REG_MPAR_RATE_MAX 3500000000UL
10214 
10215 /* reg_mpar_probability_rate
10216  * Sampling rate.
10217  * Valid values are: 1 to 3.5*10^9
10218  * Value of 1 means "sample all". Default is 1.
10219  * Reserved when Spectrum-1.
10220  * Access: RW
10221  */
10222 MLXSW_ITEM32(reg, mpar, probability_rate, 0x08, 0, 32);
10223 
10224 static inline void mlxsw_reg_mpar_pack(char *payload, u8 local_port,
10225 				       enum mlxsw_reg_mpar_i_e i_e,
10226 				       bool enable, u8 pa_id,
10227 				       u32 probability_rate)
10228 {
10229 	MLXSW_REG_ZERO(mpar, payload);
10230 	mlxsw_reg_mpar_local_port_set(payload, local_port);
10231 	mlxsw_reg_mpar_enable_set(payload, enable);
10232 	mlxsw_reg_mpar_i_e_set(payload, i_e);
10233 	mlxsw_reg_mpar_pa_id_set(payload, pa_id);
10234 	mlxsw_reg_mpar_probability_rate_set(payload, probability_rate);
10235 }
10236 
10237 /* MGIR - Management General Information Register
10238  * ----------------------------------------------
10239  * MGIR register allows software to query the hardware and firmware general
10240  * information.
10241  */
10242 #define MLXSW_REG_MGIR_ID 0x9020
10243 #define MLXSW_REG_MGIR_LEN 0x9C
10244 
10245 MLXSW_REG_DEFINE(mgir, MLXSW_REG_MGIR_ID, MLXSW_REG_MGIR_LEN);
10246 
10247 /* reg_mgir_hw_info_device_hw_revision
10248  * Access: RO
10249  */
10250 MLXSW_ITEM32(reg, mgir, hw_info_device_hw_revision, 0x0, 16, 16);
10251 
10252 #define MLXSW_REG_MGIR_FW_INFO_PSID_SIZE 16
10253 
10254 /* reg_mgir_fw_info_psid
10255  * PSID (ASCII string).
10256  * Access: RO
10257  */
10258 MLXSW_ITEM_BUF(reg, mgir, fw_info_psid, 0x30, MLXSW_REG_MGIR_FW_INFO_PSID_SIZE);
10259 
10260 /* reg_mgir_fw_info_extended_major
10261  * Access: RO
10262  */
10263 MLXSW_ITEM32(reg, mgir, fw_info_extended_major, 0x44, 0, 32);
10264 
10265 /* reg_mgir_fw_info_extended_minor
10266  * Access: RO
10267  */
10268 MLXSW_ITEM32(reg, mgir, fw_info_extended_minor, 0x48, 0, 32);
10269 
10270 /* reg_mgir_fw_info_extended_sub_minor
10271  * Access: RO
10272  */
10273 MLXSW_ITEM32(reg, mgir, fw_info_extended_sub_minor, 0x4C, 0, 32);
10274 
10275 static inline void mlxsw_reg_mgir_pack(char *payload)
10276 {
10277 	MLXSW_REG_ZERO(mgir, payload);
10278 }
10279 
10280 static inline void
10281 mlxsw_reg_mgir_unpack(char *payload, u32 *hw_rev, char *fw_info_psid,
10282 		      u32 *fw_major, u32 *fw_minor, u32 *fw_sub_minor)
10283 {
10284 	*hw_rev = mlxsw_reg_mgir_hw_info_device_hw_revision_get(payload);
10285 	mlxsw_reg_mgir_fw_info_psid_memcpy_from(payload, fw_info_psid);
10286 	*fw_major = mlxsw_reg_mgir_fw_info_extended_major_get(payload);
10287 	*fw_minor = mlxsw_reg_mgir_fw_info_extended_minor_get(payload);
10288 	*fw_sub_minor = mlxsw_reg_mgir_fw_info_extended_sub_minor_get(payload);
10289 }
10290 
10291 /* MRSR - Management Reset and Shutdown Register
10292  * ---------------------------------------------
10293  * MRSR register is used to reset or shutdown the switch or
10294  * the entire system (when applicable).
10295  */
10296 #define MLXSW_REG_MRSR_ID 0x9023
10297 #define MLXSW_REG_MRSR_LEN 0x08
10298 
10299 MLXSW_REG_DEFINE(mrsr, MLXSW_REG_MRSR_ID, MLXSW_REG_MRSR_LEN);
10300 
10301 /* reg_mrsr_command
10302  * Reset/shutdown command
10303  * 0 - do nothing
10304  * 1 - software reset
10305  * Access: WO
10306  */
10307 MLXSW_ITEM32(reg, mrsr, command, 0x00, 0, 4);
10308 
10309 static inline void mlxsw_reg_mrsr_pack(char *payload)
10310 {
10311 	MLXSW_REG_ZERO(mrsr, payload);
10312 	mlxsw_reg_mrsr_command_set(payload, 1);
10313 }
10314 
10315 /* MLCR - Management LED Control Register
10316  * --------------------------------------
10317  * Controls the system LEDs.
10318  */
10319 #define MLXSW_REG_MLCR_ID 0x902B
10320 #define MLXSW_REG_MLCR_LEN 0x0C
10321 
10322 MLXSW_REG_DEFINE(mlcr, MLXSW_REG_MLCR_ID, MLXSW_REG_MLCR_LEN);
10323 
10324 /* reg_mlcr_local_port
10325  * Local port number.
10326  * Access: RW
10327  */
10328 MLXSW_ITEM32(reg, mlcr, local_port, 0x00, 16, 8);
10329 
10330 #define MLXSW_REG_MLCR_DURATION_MAX 0xFFFF
10331 
10332 /* reg_mlcr_beacon_duration
10333  * Duration of the beacon to be active, in seconds.
10334  * 0x0 - Will turn off the beacon.
10335  * 0xFFFF - Will turn on the beacon until explicitly turned off.
10336  * Access: RW
10337  */
10338 MLXSW_ITEM32(reg, mlcr, beacon_duration, 0x04, 0, 16);
10339 
10340 /* reg_mlcr_beacon_remain
10341  * Remaining duration of the beacon, in seconds.
10342  * 0xFFFF indicates an infinite amount of time.
10343  * Access: RO
10344  */
10345 MLXSW_ITEM32(reg, mlcr, beacon_remain, 0x08, 0, 16);
10346 
10347 static inline void mlxsw_reg_mlcr_pack(char *payload, u8 local_port,
10348 				       bool active)
10349 {
10350 	MLXSW_REG_ZERO(mlcr, payload);
10351 	mlxsw_reg_mlcr_local_port_set(payload, local_port);
10352 	mlxsw_reg_mlcr_beacon_duration_set(payload, active ?
10353 					   MLXSW_REG_MLCR_DURATION_MAX : 0);
10354 }
10355 
10356 /* MTPPS - Management Pulse Per Second Register
10357  * --------------------------------------------
10358  * This register provides the device PPS capabilities, configure the PPS in and
10359  * out modules and holds the PPS in time stamp.
10360  */
10361 #define MLXSW_REG_MTPPS_ID 0x9053
10362 #define MLXSW_REG_MTPPS_LEN 0x3C
10363 
10364 MLXSW_REG_DEFINE(mtpps, MLXSW_REG_MTPPS_ID, MLXSW_REG_MTPPS_LEN);
10365 
10366 /* reg_mtpps_enable
10367  * Enables the PPS functionality the specific pin.
10368  * A boolean variable.
10369  * Access: RW
10370  */
10371 MLXSW_ITEM32(reg, mtpps, enable, 0x20, 31, 1);
10372 
10373 enum mlxsw_reg_mtpps_pin_mode {
10374 	MLXSW_REG_MTPPS_PIN_MODE_VIRTUAL_PIN = 0x2,
10375 };
10376 
10377 /* reg_mtpps_pin_mode
10378  * Pin mode to be used. The mode must comply with the supported modes of the
10379  * requested pin.
10380  * Access: RW
10381  */
10382 MLXSW_ITEM32(reg, mtpps, pin_mode, 0x20, 8, 4);
10383 
10384 #define MLXSW_REG_MTPPS_PIN_SP_VIRTUAL_PIN	7
10385 
10386 /* reg_mtpps_pin
10387  * Pin to be configured or queried out of the supported pins.
10388  * Access: Index
10389  */
10390 MLXSW_ITEM32(reg, mtpps, pin, 0x20, 0, 8);
10391 
10392 /* reg_mtpps_time_stamp
10393  * When pin_mode = pps_in, the latched device time when it was triggered from
10394  * the external GPIO pin.
10395  * When pin_mode = pps_out or virtual_pin or pps_out_and_virtual_pin, the target
10396  * time to generate next output signal.
10397  * Time is in units of device clock.
10398  * Access: RW
10399  */
10400 MLXSW_ITEM64(reg, mtpps, time_stamp, 0x28, 0, 64);
10401 
10402 static inline void
10403 mlxsw_reg_mtpps_vpin_pack(char *payload, u64 time_stamp)
10404 {
10405 	MLXSW_REG_ZERO(mtpps, payload);
10406 	mlxsw_reg_mtpps_pin_set(payload, MLXSW_REG_MTPPS_PIN_SP_VIRTUAL_PIN);
10407 	mlxsw_reg_mtpps_pin_mode_set(payload,
10408 				     MLXSW_REG_MTPPS_PIN_MODE_VIRTUAL_PIN);
10409 	mlxsw_reg_mtpps_enable_set(payload, true);
10410 	mlxsw_reg_mtpps_time_stamp_set(payload, time_stamp);
10411 }
10412 
10413 /* MTUTC - Management UTC Register
10414  * -------------------------------
10415  * Configures the HW UTC counter.
10416  */
10417 #define MLXSW_REG_MTUTC_ID 0x9055
10418 #define MLXSW_REG_MTUTC_LEN 0x1C
10419 
10420 MLXSW_REG_DEFINE(mtutc, MLXSW_REG_MTUTC_ID, MLXSW_REG_MTUTC_LEN);
10421 
10422 enum mlxsw_reg_mtutc_operation {
10423 	MLXSW_REG_MTUTC_OPERATION_SET_TIME_AT_NEXT_SEC = 0,
10424 	MLXSW_REG_MTUTC_OPERATION_ADJUST_FREQ = 3,
10425 };
10426 
10427 /* reg_mtutc_operation
10428  * Operation.
10429  * Access: OP
10430  */
10431 MLXSW_ITEM32(reg, mtutc, operation, 0x00, 0, 4);
10432 
10433 /* reg_mtutc_freq_adjustment
10434  * Frequency adjustment: Every PPS the HW frequency will be
10435  * adjusted by this value. Units of HW clock, where HW counts
10436  * 10^9 HW clocks for 1 HW second.
10437  * Access: RW
10438  */
10439 MLXSW_ITEM32(reg, mtutc, freq_adjustment, 0x04, 0, 32);
10440 
10441 /* reg_mtutc_utc_sec
10442  * UTC seconds.
10443  * Access: WO
10444  */
10445 MLXSW_ITEM32(reg, mtutc, utc_sec, 0x10, 0, 32);
10446 
10447 static inline void
10448 mlxsw_reg_mtutc_pack(char *payload, enum mlxsw_reg_mtutc_operation oper,
10449 		     u32 freq_adj, u32 utc_sec)
10450 {
10451 	MLXSW_REG_ZERO(mtutc, payload);
10452 	mlxsw_reg_mtutc_operation_set(payload, oper);
10453 	mlxsw_reg_mtutc_freq_adjustment_set(payload, freq_adj);
10454 	mlxsw_reg_mtutc_utc_sec_set(payload, utc_sec);
10455 }
10456 
10457 /* MCQI - Management Component Query Information
10458  * ---------------------------------------------
10459  * This register allows querying information about firmware components.
10460  */
10461 #define MLXSW_REG_MCQI_ID 0x9061
10462 #define MLXSW_REG_MCQI_BASE_LEN 0x18
10463 #define MLXSW_REG_MCQI_CAP_LEN 0x14
10464 #define MLXSW_REG_MCQI_LEN (MLXSW_REG_MCQI_BASE_LEN + MLXSW_REG_MCQI_CAP_LEN)
10465 
10466 MLXSW_REG_DEFINE(mcqi, MLXSW_REG_MCQI_ID, MLXSW_REG_MCQI_LEN);
10467 
10468 /* reg_mcqi_component_index
10469  * Index of the accessed component.
10470  * Access: Index
10471  */
10472 MLXSW_ITEM32(reg, mcqi, component_index, 0x00, 0, 16);
10473 
10474 enum mlxfw_reg_mcqi_info_type {
10475 	MLXSW_REG_MCQI_INFO_TYPE_CAPABILITIES,
10476 };
10477 
10478 /* reg_mcqi_info_type
10479  * Component properties set.
10480  * Access: RW
10481  */
10482 MLXSW_ITEM32(reg, mcqi, info_type, 0x08, 0, 5);
10483 
10484 /* reg_mcqi_offset
10485  * The requested/returned data offset from the section start, given in bytes.
10486  * Must be DWORD aligned.
10487  * Access: RW
10488  */
10489 MLXSW_ITEM32(reg, mcqi, offset, 0x10, 0, 32);
10490 
10491 /* reg_mcqi_data_size
10492  * The requested/returned data size, given in bytes. If data_size is not DWORD
10493  * aligned, the last bytes are zero padded.
10494  * Access: RW
10495  */
10496 MLXSW_ITEM32(reg, mcqi, data_size, 0x14, 0, 16);
10497 
10498 /* reg_mcqi_cap_max_component_size
10499  * Maximum size for this component, given in bytes.
10500  * Access: RO
10501  */
10502 MLXSW_ITEM32(reg, mcqi, cap_max_component_size, 0x20, 0, 32);
10503 
10504 /* reg_mcqi_cap_log_mcda_word_size
10505  * Log 2 of the access word size in bytes. Read and write access must be aligned
10506  * to the word size. Write access must be done for an integer number of words.
10507  * Access: RO
10508  */
10509 MLXSW_ITEM32(reg, mcqi, cap_log_mcda_word_size, 0x24, 28, 4);
10510 
10511 /* reg_mcqi_cap_mcda_max_write_size
10512  * Maximal write size for MCDA register
10513  * Access: RO
10514  */
10515 MLXSW_ITEM32(reg, mcqi, cap_mcda_max_write_size, 0x24, 0, 16);
10516 
10517 static inline void mlxsw_reg_mcqi_pack(char *payload, u16 component_index)
10518 {
10519 	MLXSW_REG_ZERO(mcqi, payload);
10520 	mlxsw_reg_mcqi_component_index_set(payload, component_index);
10521 	mlxsw_reg_mcqi_info_type_set(payload,
10522 				     MLXSW_REG_MCQI_INFO_TYPE_CAPABILITIES);
10523 	mlxsw_reg_mcqi_offset_set(payload, 0);
10524 	mlxsw_reg_mcqi_data_size_set(payload, MLXSW_REG_MCQI_CAP_LEN);
10525 }
10526 
10527 static inline void mlxsw_reg_mcqi_unpack(char *payload,
10528 					 u32 *p_cap_max_component_size,
10529 					 u8 *p_cap_log_mcda_word_size,
10530 					 u16 *p_cap_mcda_max_write_size)
10531 {
10532 	*p_cap_max_component_size =
10533 		mlxsw_reg_mcqi_cap_max_component_size_get(payload);
10534 	*p_cap_log_mcda_word_size =
10535 		mlxsw_reg_mcqi_cap_log_mcda_word_size_get(payload);
10536 	*p_cap_mcda_max_write_size =
10537 		mlxsw_reg_mcqi_cap_mcda_max_write_size_get(payload);
10538 }
10539 
10540 /* MCC - Management Component Control
10541  * ----------------------------------
10542  * Controls the firmware component and updates the FSM.
10543  */
10544 #define MLXSW_REG_MCC_ID 0x9062
10545 #define MLXSW_REG_MCC_LEN 0x1C
10546 
10547 MLXSW_REG_DEFINE(mcc, MLXSW_REG_MCC_ID, MLXSW_REG_MCC_LEN);
10548 
10549 enum mlxsw_reg_mcc_instruction {
10550 	MLXSW_REG_MCC_INSTRUCTION_LOCK_UPDATE_HANDLE = 0x01,
10551 	MLXSW_REG_MCC_INSTRUCTION_RELEASE_UPDATE_HANDLE = 0x02,
10552 	MLXSW_REG_MCC_INSTRUCTION_UPDATE_COMPONENT = 0x03,
10553 	MLXSW_REG_MCC_INSTRUCTION_VERIFY_COMPONENT = 0x04,
10554 	MLXSW_REG_MCC_INSTRUCTION_ACTIVATE = 0x06,
10555 	MLXSW_REG_MCC_INSTRUCTION_CANCEL = 0x08,
10556 };
10557 
10558 /* reg_mcc_instruction
10559  * Command to be executed by the FSM.
10560  * Applicable for write operation only.
10561  * Access: RW
10562  */
10563 MLXSW_ITEM32(reg, mcc, instruction, 0x00, 0, 8);
10564 
10565 /* reg_mcc_component_index
10566  * Index of the accessed component. Applicable only for commands that
10567  * refer to components. Otherwise, this field is reserved.
10568  * Access: Index
10569  */
10570 MLXSW_ITEM32(reg, mcc, component_index, 0x04, 0, 16);
10571 
10572 /* reg_mcc_update_handle
10573  * Token representing the current flow executed by the FSM.
10574  * Access: WO
10575  */
10576 MLXSW_ITEM32(reg, mcc, update_handle, 0x08, 0, 24);
10577 
10578 /* reg_mcc_error_code
10579  * Indicates the successful completion of the instruction, or the reason it
10580  * failed
10581  * Access: RO
10582  */
10583 MLXSW_ITEM32(reg, mcc, error_code, 0x0C, 8, 8);
10584 
10585 /* reg_mcc_control_state
10586  * Current FSM state
10587  * Access: RO
10588  */
10589 MLXSW_ITEM32(reg, mcc, control_state, 0x0C, 0, 4);
10590 
10591 /* reg_mcc_component_size
10592  * Component size in bytes. Valid for UPDATE_COMPONENT instruction. Specifying
10593  * the size may shorten the update time. Value 0x0 means that size is
10594  * unspecified.
10595  * Access: WO
10596  */
10597 MLXSW_ITEM32(reg, mcc, component_size, 0x10, 0, 32);
10598 
10599 static inline void mlxsw_reg_mcc_pack(char *payload,
10600 				      enum mlxsw_reg_mcc_instruction instr,
10601 				      u16 component_index, u32 update_handle,
10602 				      u32 component_size)
10603 {
10604 	MLXSW_REG_ZERO(mcc, payload);
10605 	mlxsw_reg_mcc_instruction_set(payload, instr);
10606 	mlxsw_reg_mcc_component_index_set(payload, component_index);
10607 	mlxsw_reg_mcc_update_handle_set(payload, update_handle);
10608 	mlxsw_reg_mcc_component_size_set(payload, component_size);
10609 }
10610 
10611 static inline void mlxsw_reg_mcc_unpack(char *payload, u32 *p_update_handle,
10612 					u8 *p_error_code, u8 *p_control_state)
10613 {
10614 	if (p_update_handle)
10615 		*p_update_handle = mlxsw_reg_mcc_update_handle_get(payload);
10616 	if (p_error_code)
10617 		*p_error_code = mlxsw_reg_mcc_error_code_get(payload);
10618 	if (p_control_state)
10619 		*p_control_state = mlxsw_reg_mcc_control_state_get(payload);
10620 }
10621 
10622 /* MCDA - Management Component Data Access
10623  * ---------------------------------------
10624  * This register allows reading and writing a firmware component.
10625  */
10626 #define MLXSW_REG_MCDA_ID 0x9063
10627 #define MLXSW_REG_MCDA_BASE_LEN 0x10
10628 #define MLXSW_REG_MCDA_MAX_DATA_LEN 0x80
10629 #define MLXSW_REG_MCDA_LEN \
10630 		(MLXSW_REG_MCDA_BASE_LEN + MLXSW_REG_MCDA_MAX_DATA_LEN)
10631 
10632 MLXSW_REG_DEFINE(mcda, MLXSW_REG_MCDA_ID, MLXSW_REG_MCDA_LEN);
10633 
10634 /* reg_mcda_update_handle
10635  * Token representing the current flow executed by the FSM.
10636  * Access: RW
10637  */
10638 MLXSW_ITEM32(reg, mcda, update_handle, 0x00, 0, 24);
10639 
10640 /* reg_mcda_offset
10641  * Offset of accessed address relative to component start. Accesses must be in
10642  * accordance to log_mcda_word_size in MCQI reg.
10643  * Access: RW
10644  */
10645 MLXSW_ITEM32(reg, mcda, offset, 0x04, 0, 32);
10646 
10647 /* reg_mcda_size
10648  * Size of the data accessed, given in bytes.
10649  * Access: RW
10650  */
10651 MLXSW_ITEM32(reg, mcda, size, 0x08, 0, 16);
10652 
10653 /* reg_mcda_data
10654  * Data block accessed.
10655  * Access: RW
10656  */
10657 MLXSW_ITEM32_INDEXED(reg, mcda, data, 0x10, 0, 32, 4, 0, false);
10658 
10659 static inline void mlxsw_reg_mcda_pack(char *payload, u32 update_handle,
10660 				       u32 offset, u16 size, u8 *data)
10661 {
10662 	int i;
10663 
10664 	MLXSW_REG_ZERO(mcda, payload);
10665 	mlxsw_reg_mcda_update_handle_set(payload, update_handle);
10666 	mlxsw_reg_mcda_offset_set(payload, offset);
10667 	mlxsw_reg_mcda_size_set(payload, size);
10668 
10669 	for (i = 0; i < size / 4; i++)
10670 		mlxsw_reg_mcda_data_set(payload, i, *(u32 *) &data[i * 4]);
10671 }
10672 
10673 /* MPSC - Monitoring Packet Sampling Configuration Register
10674  * --------------------------------------------------------
10675  * MPSC Register is used to configure the Packet Sampling mechanism.
10676  */
10677 #define MLXSW_REG_MPSC_ID 0x9080
10678 #define MLXSW_REG_MPSC_LEN 0x1C
10679 
10680 MLXSW_REG_DEFINE(mpsc, MLXSW_REG_MPSC_ID, MLXSW_REG_MPSC_LEN);
10681 
10682 /* reg_mpsc_local_port
10683  * Local port number
10684  * Not supported for CPU port
10685  * Access: Index
10686  */
10687 MLXSW_ITEM32(reg, mpsc, local_port, 0x00, 16, 8);
10688 
10689 /* reg_mpsc_e
10690  * Enable sampling on port local_port
10691  * Access: RW
10692  */
10693 MLXSW_ITEM32(reg, mpsc, e, 0x04, 30, 1);
10694 
10695 #define MLXSW_REG_MPSC_RATE_MAX 3500000000UL
10696 
10697 /* reg_mpsc_rate
10698  * Sampling rate = 1 out of rate packets (with randomization around
10699  * the point). Valid values are: 1 to MLXSW_REG_MPSC_RATE_MAX
10700  * Access: RW
10701  */
10702 MLXSW_ITEM32(reg, mpsc, rate, 0x08, 0, 32);
10703 
10704 static inline void mlxsw_reg_mpsc_pack(char *payload, u8 local_port, bool e,
10705 				       u32 rate)
10706 {
10707 	MLXSW_REG_ZERO(mpsc, payload);
10708 	mlxsw_reg_mpsc_local_port_set(payload, local_port);
10709 	mlxsw_reg_mpsc_e_set(payload, e);
10710 	mlxsw_reg_mpsc_rate_set(payload, rate);
10711 }
10712 
10713 /* MGPC - Monitoring General Purpose Counter Set Register
10714  * The MGPC register retrieves and sets the General Purpose Counter Set.
10715  */
10716 #define MLXSW_REG_MGPC_ID 0x9081
10717 #define MLXSW_REG_MGPC_LEN 0x18
10718 
10719 MLXSW_REG_DEFINE(mgpc, MLXSW_REG_MGPC_ID, MLXSW_REG_MGPC_LEN);
10720 
10721 /* reg_mgpc_counter_set_type
10722  * Counter set type.
10723  * Access: OP
10724  */
10725 MLXSW_ITEM32(reg, mgpc, counter_set_type, 0x00, 24, 8);
10726 
10727 /* reg_mgpc_counter_index
10728  * Counter index.
10729  * Access: Index
10730  */
10731 MLXSW_ITEM32(reg, mgpc, counter_index, 0x00, 0, 24);
10732 
10733 enum mlxsw_reg_mgpc_opcode {
10734 	/* Nop */
10735 	MLXSW_REG_MGPC_OPCODE_NOP = 0x00,
10736 	/* Clear counters */
10737 	MLXSW_REG_MGPC_OPCODE_CLEAR = 0x08,
10738 };
10739 
10740 /* reg_mgpc_opcode
10741  * Opcode.
10742  * Access: OP
10743  */
10744 MLXSW_ITEM32(reg, mgpc, opcode, 0x04, 28, 4);
10745 
10746 /* reg_mgpc_byte_counter
10747  * Byte counter value.
10748  * Access: RW
10749  */
10750 MLXSW_ITEM64(reg, mgpc, byte_counter, 0x08, 0, 64);
10751 
10752 /* reg_mgpc_packet_counter
10753  * Packet counter value.
10754  * Access: RW
10755  */
10756 MLXSW_ITEM64(reg, mgpc, packet_counter, 0x10, 0, 64);
10757 
10758 static inline void mlxsw_reg_mgpc_pack(char *payload, u32 counter_index,
10759 				       enum mlxsw_reg_mgpc_opcode opcode,
10760 				       enum mlxsw_reg_flow_counter_set_type set_type)
10761 {
10762 	MLXSW_REG_ZERO(mgpc, payload);
10763 	mlxsw_reg_mgpc_counter_index_set(payload, counter_index);
10764 	mlxsw_reg_mgpc_counter_set_type_set(payload, set_type);
10765 	mlxsw_reg_mgpc_opcode_set(payload, opcode);
10766 }
10767 
10768 /* MPRS - Monitoring Parsing State Register
10769  * ----------------------------------------
10770  * The MPRS register is used for setting up the parsing for hash,
10771  * policy-engine and routing.
10772  */
10773 #define MLXSW_REG_MPRS_ID 0x9083
10774 #define MLXSW_REG_MPRS_LEN 0x14
10775 
10776 MLXSW_REG_DEFINE(mprs, MLXSW_REG_MPRS_ID, MLXSW_REG_MPRS_LEN);
10777 
10778 /* reg_mprs_parsing_depth
10779  * Minimum parsing depth.
10780  * Need to enlarge parsing depth according to L3, MPLS, tunnels, ACL
10781  * rules, traps, hash, etc. Default is 96 bytes. Reserved when SwitchX-2.
10782  * Access: RW
10783  */
10784 MLXSW_ITEM32(reg, mprs, parsing_depth, 0x00, 0, 16);
10785 
10786 /* reg_mprs_parsing_en
10787  * Parsing enable.
10788  * Bit 0 - Enable parsing of NVE of types VxLAN, VxLAN-GPE, GENEVE and
10789  * NVGRE. Default is enabled. Reserved when SwitchX-2.
10790  * Access: RW
10791  */
10792 MLXSW_ITEM32(reg, mprs, parsing_en, 0x04, 0, 16);
10793 
10794 /* reg_mprs_vxlan_udp_dport
10795  * VxLAN UDP destination port.
10796  * Used for identifying VxLAN packets and for dport field in
10797  * encapsulation. Default is 4789.
10798  * Access: RW
10799  */
10800 MLXSW_ITEM32(reg, mprs, vxlan_udp_dport, 0x10, 0, 16);
10801 
10802 static inline void mlxsw_reg_mprs_pack(char *payload, u16 parsing_depth,
10803 				       u16 vxlan_udp_dport)
10804 {
10805 	MLXSW_REG_ZERO(mprs, payload);
10806 	mlxsw_reg_mprs_parsing_depth_set(payload, parsing_depth);
10807 	mlxsw_reg_mprs_parsing_en_set(payload, true);
10808 	mlxsw_reg_mprs_vxlan_udp_dport_set(payload, vxlan_udp_dport);
10809 }
10810 
10811 /* MOGCR - Monitoring Global Configuration Register
10812  * ------------------------------------------------
10813  */
10814 #define MLXSW_REG_MOGCR_ID 0x9086
10815 #define MLXSW_REG_MOGCR_LEN 0x20
10816 
10817 MLXSW_REG_DEFINE(mogcr, MLXSW_REG_MOGCR_ID, MLXSW_REG_MOGCR_LEN);
10818 
10819 /* reg_mogcr_ptp_iftc
10820  * PTP Ingress FIFO Trap Clear
10821  * The PTP_ING_FIFO trap provides MTPPTR with clr according
10822  * to this value. Default 0.
10823  * Reserved when IB switches and when SwitchX/-2, Spectrum-2
10824  * Access: RW
10825  */
10826 MLXSW_ITEM32(reg, mogcr, ptp_iftc, 0x00, 1, 1);
10827 
10828 /* reg_mogcr_ptp_eftc
10829  * PTP Egress FIFO Trap Clear
10830  * The PTP_EGR_FIFO trap provides MTPPTR with clr according
10831  * to this value. Default 0.
10832  * Reserved when IB switches and when SwitchX/-2, Spectrum-2
10833  * Access: RW
10834  */
10835 MLXSW_ITEM32(reg, mogcr, ptp_eftc, 0x00, 0, 1);
10836 
10837 /* reg_mogcr_mirroring_pid_base
10838  * Base policer id for mirroring policers.
10839  * Must have an even value (e.g. 1000, not 1001).
10840  * Reserved when SwitchX/-2, Switch-IB/2, Spectrum-1 and Quantum.
10841  * Access: RW
10842  */
10843 MLXSW_ITEM32(reg, mogcr, mirroring_pid_base, 0x0C, 0, 14);
10844 
10845 /* MPAGR - Monitoring Port Analyzer Global Register
10846  * ------------------------------------------------
10847  * This register is used for global port analyzer configurations.
10848  * Note: This register is not supported by current FW versions for Spectrum-1.
10849  */
10850 #define MLXSW_REG_MPAGR_ID 0x9089
10851 #define MLXSW_REG_MPAGR_LEN 0x0C
10852 
10853 MLXSW_REG_DEFINE(mpagr, MLXSW_REG_MPAGR_ID, MLXSW_REG_MPAGR_LEN);
10854 
10855 enum mlxsw_reg_mpagr_trigger {
10856 	MLXSW_REG_MPAGR_TRIGGER_EGRESS,
10857 	MLXSW_REG_MPAGR_TRIGGER_INGRESS,
10858 	MLXSW_REG_MPAGR_TRIGGER_INGRESS_WRED,
10859 	MLXSW_REG_MPAGR_TRIGGER_INGRESS_SHARED_BUFFER,
10860 	MLXSW_REG_MPAGR_TRIGGER_INGRESS_ING_CONG,
10861 	MLXSW_REG_MPAGR_TRIGGER_INGRESS_EGR_CONG,
10862 	MLXSW_REG_MPAGR_TRIGGER_EGRESS_ECN,
10863 	MLXSW_REG_MPAGR_TRIGGER_EGRESS_HIGH_LATENCY,
10864 };
10865 
10866 /* reg_mpagr_trigger
10867  * Mirror trigger.
10868  * Access: Index
10869  */
10870 MLXSW_ITEM32(reg, mpagr, trigger, 0x00, 0, 4);
10871 
10872 /* reg_mpagr_pa_id
10873  * Port analyzer ID.
10874  * Access: RW
10875  */
10876 MLXSW_ITEM32(reg, mpagr, pa_id, 0x04, 0, 4);
10877 
10878 #define MLXSW_REG_MPAGR_RATE_MAX 3500000000UL
10879 
10880 /* reg_mpagr_probability_rate
10881  * Sampling rate.
10882  * Valid values are: 1 to 3.5*10^9
10883  * Value of 1 means "sample all". Default is 1.
10884  * Access: RW
10885  */
10886 MLXSW_ITEM32(reg, mpagr, probability_rate, 0x08, 0, 32);
10887 
10888 static inline void mlxsw_reg_mpagr_pack(char *payload,
10889 					enum mlxsw_reg_mpagr_trigger trigger,
10890 					u8 pa_id, u32 probability_rate)
10891 {
10892 	MLXSW_REG_ZERO(mpagr, payload);
10893 	mlxsw_reg_mpagr_trigger_set(payload, trigger);
10894 	mlxsw_reg_mpagr_pa_id_set(payload, pa_id);
10895 	mlxsw_reg_mpagr_probability_rate_set(payload, probability_rate);
10896 }
10897 
10898 /* MOMTE - Monitoring Mirror Trigger Enable Register
10899  * -------------------------------------------------
10900  * This register is used to configure the mirror enable for different mirror
10901  * reasons.
10902  */
10903 #define MLXSW_REG_MOMTE_ID 0x908D
10904 #define MLXSW_REG_MOMTE_LEN 0x10
10905 
10906 MLXSW_REG_DEFINE(momte, MLXSW_REG_MOMTE_ID, MLXSW_REG_MOMTE_LEN);
10907 
10908 /* reg_momte_local_port
10909  * Local port number.
10910  * Access: Index
10911  */
10912 MLXSW_ITEM32(reg, momte, local_port, 0x00, 16, 8);
10913 
10914 enum mlxsw_reg_momte_type {
10915 	MLXSW_REG_MOMTE_TYPE_WRED = 0x20,
10916 	MLXSW_REG_MOMTE_TYPE_SHARED_BUFFER_TCLASS = 0x31,
10917 	MLXSW_REG_MOMTE_TYPE_SHARED_BUFFER_TCLASS_DESCRIPTORS = 0x32,
10918 	MLXSW_REG_MOMTE_TYPE_SHARED_BUFFER_EGRESS_PORT = 0x33,
10919 	MLXSW_REG_MOMTE_TYPE_ING_CONG = 0x40,
10920 	MLXSW_REG_MOMTE_TYPE_EGR_CONG = 0x50,
10921 	MLXSW_REG_MOMTE_TYPE_ECN = 0x60,
10922 	MLXSW_REG_MOMTE_TYPE_HIGH_LATENCY = 0x70,
10923 };
10924 
10925 /* reg_momte_type
10926  * Type of mirroring.
10927  * Access: Index
10928  */
10929 MLXSW_ITEM32(reg, momte, type, 0x04, 0, 8);
10930 
10931 /* reg_momte_tclass_en
10932  * TClass/PG mirror enable. Each bit represents corresponding tclass.
10933  * 0: disable (default)
10934  * 1: enable
10935  * Access: RW
10936  */
10937 MLXSW_ITEM_BIT_ARRAY(reg, momte, tclass_en, 0x08, 0x08, 1);
10938 
10939 static inline void mlxsw_reg_momte_pack(char *payload, u8 local_port,
10940 					enum mlxsw_reg_momte_type type)
10941 {
10942 	MLXSW_REG_ZERO(momte, payload);
10943 	mlxsw_reg_momte_local_port_set(payload, local_port);
10944 	mlxsw_reg_momte_type_set(payload, type);
10945 }
10946 
10947 /* MTPPPC - Time Precision Packet Port Configuration
10948  * -------------------------------------------------
10949  * This register serves for configuration of which PTP messages should be
10950  * timestamped. This is a global configuration, despite the register name.
10951  *
10952  * Reserved when Spectrum-2.
10953  */
10954 #define MLXSW_REG_MTPPPC_ID 0x9090
10955 #define MLXSW_REG_MTPPPC_LEN 0x28
10956 
10957 MLXSW_REG_DEFINE(mtpppc, MLXSW_REG_MTPPPC_ID, MLXSW_REG_MTPPPC_LEN);
10958 
10959 /* reg_mtpppc_ing_timestamp_message_type
10960  * Bitwise vector of PTP message types to timestamp at ingress.
10961  * MessageType field as defined by IEEE 1588
10962  * Each bit corresponds to a value (e.g. Bit0: Sync, Bit1: Delay_Req)
10963  * Default all 0
10964  * Access: RW
10965  */
10966 MLXSW_ITEM32(reg, mtpppc, ing_timestamp_message_type, 0x08, 0, 16);
10967 
10968 /* reg_mtpppc_egr_timestamp_message_type
10969  * Bitwise vector of PTP message types to timestamp at egress.
10970  * MessageType field as defined by IEEE 1588
10971  * Each bit corresponds to a value (e.g. Bit0: Sync, Bit1: Delay_Req)
10972  * Default all 0
10973  * Access: RW
10974  */
10975 MLXSW_ITEM32(reg, mtpppc, egr_timestamp_message_type, 0x0C, 0, 16);
10976 
10977 static inline void mlxsw_reg_mtpppc_pack(char *payload, u16 ing, u16 egr)
10978 {
10979 	MLXSW_REG_ZERO(mtpppc, payload);
10980 	mlxsw_reg_mtpppc_ing_timestamp_message_type_set(payload, ing);
10981 	mlxsw_reg_mtpppc_egr_timestamp_message_type_set(payload, egr);
10982 }
10983 
10984 /* MTPPTR - Time Precision Packet Timestamping Reading
10985  * ---------------------------------------------------
10986  * The MTPPTR is used for reading the per port PTP timestamp FIFO.
10987  * There is a trap for packets which are latched to the timestamp FIFO, thus the
10988  * SW knows which FIFO to read. Note that packets enter the FIFO before been
10989  * trapped. The sequence number is used to synchronize the timestamp FIFO
10990  * entries and the trapped packets.
10991  * Reserved when Spectrum-2.
10992  */
10993 
10994 #define MLXSW_REG_MTPPTR_ID 0x9091
10995 #define MLXSW_REG_MTPPTR_BASE_LEN 0x10 /* base length, without records */
10996 #define MLXSW_REG_MTPPTR_REC_LEN 0x10 /* record length */
10997 #define MLXSW_REG_MTPPTR_REC_MAX_COUNT 4
10998 #define MLXSW_REG_MTPPTR_LEN (MLXSW_REG_MTPPTR_BASE_LEN +		\
10999 		    MLXSW_REG_MTPPTR_REC_LEN * MLXSW_REG_MTPPTR_REC_MAX_COUNT)
11000 
11001 MLXSW_REG_DEFINE(mtpptr, MLXSW_REG_MTPPTR_ID, MLXSW_REG_MTPPTR_LEN);
11002 
11003 /* reg_mtpptr_local_port
11004  * Not supported for CPU port.
11005  * Access: Index
11006  */
11007 MLXSW_ITEM32(reg, mtpptr, local_port, 0x00, 16, 8);
11008 
11009 enum mlxsw_reg_mtpptr_dir {
11010 	MLXSW_REG_MTPPTR_DIR_INGRESS,
11011 	MLXSW_REG_MTPPTR_DIR_EGRESS,
11012 };
11013 
11014 /* reg_mtpptr_dir
11015  * Direction.
11016  * Access: Index
11017  */
11018 MLXSW_ITEM32(reg, mtpptr, dir, 0x00, 0, 1);
11019 
11020 /* reg_mtpptr_clr
11021  * Clear the records.
11022  * Access: OP
11023  */
11024 MLXSW_ITEM32(reg, mtpptr, clr, 0x04, 31, 1);
11025 
11026 /* reg_mtpptr_num_rec
11027  * Number of valid records in the response
11028  * Range 0.. cap_ptp_timestamp_fifo
11029  * Access: RO
11030  */
11031 MLXSW_ITEM32(reg, mtpptr, num_rec, 0x08, 0, 4);
11032 
11033 /* reg_mtpptr_rec_message_type
11034  * MessageType field as defined by IEEE 1588 Each bit corresponds to a value
11035  * (e.g. Bit0: Sync, Bit1: Delay_Req)
11036  * Access: RO
11037  */
11038 MLXSW_ITEM32_INDEXED(reg, mtpptr, rec_message_type,
11039 		     MLXSW_REG_MTPPTR_BASE_LEN, 8, 4,
11040 		     MLXSW_REG_MTPPTR_REC_LEN, 0, false);
11041 
11042 /* reg_mtpptr_rec_domain_number
11043  * DomainNumber field as defined by IEEE 1588
11044  * Access: RO
11045  */
11046 MLXSW_ITEM32_INDEXED(reg, mtpptr, rec_domain_number,
11047 		     MLXSW_REG_MTPPTR_BASE_LEN, 0, 8,
11048 		     MLXSW_REG_MTPPTR_REC_LEN, 0, false);
11049 
11050 /* reg_mtpptr_rec_sequence_id
11051  * SequenceId field as defined by IEEE 1588
11052  * Access: RO
11053  */
11054 MLXSW_ITEM32_INDEXED(reg, mtpptr, rec_sequence_id,
11055 		     MLXSW_REG_MTPPTR_BASE_LEN, 0, 16,
11056 		     MLXSW_REG_MTPPTR_REC_LEN, 0x4, false);
11057 
11058 /* reg_mtpptr_rec_timestamp_high
11059  * Timestamp of when the PTP packet has passed through the port Units of PLL
11060  * clock time.
11061  * For Spectrum-1 the PLL clock is 156.25Mhz and PLL clock time is 6.4nSec.
11062  * Access: RO
11063  */
11064 MLXSW_ITEM32_INDEXED(reg, mtpptr, rec_timestamp_high,
11065 		     MLXSW_REG_MTPPTR_BASE_LEN, 0, 32,
11066 		     MLXSW_REG_MTPPTR_REC_LEN, 0x8, false);
11067 
11068 /* reg_mtpptr_rec_timestamp_low
11069  * See rec_timestamp_high.
11070  * Access: RO
11071  */
11072 MLXSW_ITEM32_INDEXED(reg, mtpptr, rec_timestamp_low,
11073 		     MLXSW_REG_MTPPTR_BASE_LEN, 0, 32,
11074 		     MLXSW_REG_MTPPTR_REC_LEN, 0xC, false);
11075 
11076 static inline void mlxsw_reg_mtpptr_unpack(const char *payload,
11077 					   unsigned int rec,
11078 					   u8 *p_message_type,
11079 					   u8 *p_domain_number,
11080 					   u16 *p_sequence_id,
11081 					   u64 *p_timestamp)
11082 {
11083 	u32 timestamp_high, timestamp_low;
11084 
11085 	*p_message_type = mlxsw_reg_mtpptr_rec_message_type_get(payload, rec);
11086 	*p_domain_number = mlxsw_reg_mtpptr_rec_domain_number_get(payload, rec);
11087 	*p_sequence_id = mlxsw_reg_mtpptr_rec_sequence_id_get(payload, rec);
11088 	timestamp_high = mlxsw_reg_mtpptr_rec_timestamp_high_get(payload, rec);
11089 	timestamp_low = mlxsw_reg_mtpptr_rec_timestamp_low_get(payload, rec);
11090 	*p_timestamp = (u64)timestamp_high << 32 | timestamp_low;
11091 }
11092 
11093 /* MTPTPT - Monitoring Precision Time Protocol Trap Register
11094  * ---------------------------------------------------------
11095  * This register is used for configuring under which trap to deliver PTP
11096  * packets depending on type of the packet.
11097  */
11098 #define MLXSW_REG_MTPTPT_ID 0x9092
11099 #define MLXSW_REG_MTPTPT_LEN 0x08
11100 
11101 MLXSW_REG_DEFINE(mtptpt, MLXSW_REG_MTPTPT_ID, MLXSW_REG_MTPTPT_LEN);
11102 
11103 enum mlxsw_reg_mtptpt_trap_id {
11104 	MLXSW_REG_MTPTPT_TRAP_ID_PTP0,
11105 	MLXSW_REG_MTPTPT_TRAP_ID_PTP1,
11106 };
11107 
11108 /* reg_mtptpt_trap_id
11109  * Trap id.
11110  * Access: Index
11111  */
11112 MLXSW_ITEM32(reg, mtptpt, trap_id, 0x00, 0, 4);
11113 
11114 /* reg_mtptpt_message_type
11115  * Bitwise vector of PTP message types to trap. This is a necessary but
11116  * non-sufficient condition since need to enable also per port. See MTPPPC.
11117  * Message types are defined by IEEE 1588 Each bit corresponds to a value (e.g.
11118  * Bit0: Sync, Bit1: Delay_Req)
11119  */
11120 MLXSW_ITEM32(reg, mtptpt, message_type, 0x04, 0, 16);
11121 
11122 static inline void mlxsw_reg_mtptptp_pack(char *payload,
11123 					  enum mlxsw_reg_mtptpt_trap_id trap_id,
11124 					  u16 message_type)
11125 {
11126 	MLXSW_REG_ZERO(mtptpt, payload);
11127 	mlxsw_reg_mtptpt_trap_id_set(payload, trap_id);
11128 	mlxsw_reg_mtptpt_message_type_set(payload, message_type);
11129 }
11130 
11131 /* MFGD - Monitoring FW General Debug Register
11132  * -------------------------------------------
11133  */
11134 #define MLXSW_REG_MFGD_ID 0x90F0
11135 #define MLXSW_REG_MFGD_LEN 0x0C
11136 
11137 MLXSW_REG_DEFINE(mfgd, MLXSW_REG_MFGD_ID, MLXSW_REG_MFGD_LEN);
11138 
11139 /* reg_mfgd_fw_fatal_event_mode
11140  * 0 - don't check FW fatal (default)
11141  * 1 - check FW fatal - enable MFDE trap
11142  * Access: RW
11143  */
11144 MLXSW_ITEM32(reg, mfgd, fatal_event_mode, 0x00, 9, 2);
11145 
11146 /* reg_mfgd_trigger_test
11147  * Access: WO
11148  */
11149 MLXSW_ITEM32(reg, mfgd, trigger_test, 0x00, 11, 1);
11150 
11151 /* MGPIR - Management General Peripheral Information Register
11152  * ----------------------------------------------------------
11153  * MGPIR register allows software to query the hardware and
11154  * firmware general information of peripheral entities.
11155  */
11156 #define MLXSW_REG_MGPIR_ID 0x9100
11157 #define MLXSW_REG_MGPIR_LEN 0xA0
11158 
11159 MLXSW_REG_DEFINE(mgpir, MLXSW_REG_MGPIR_ID, MLXSW_REG_MGPIR_LEN);
11160 
11161 enum mlxsw_reg_mgpir_device_type {
11162 	MLXSW_REG_MGPIR_DEVICE_TYPE_NONE,
11163 	MLXSW_REG_MGPIR_DEVICE_TYPE_GEARBOX_DIE,
11164 };
11165 
11166 /* device_type
11167  * Access: RO
11168  */
11169 MLXSW_ITEM32(reg, mgpir, device_type, 0x00, 24, 4);
11170 
11171 /* devices_per_flash
11172  * Number of devices of device_type per flash (can be shared by few devices).
11173  * Access: RO
11174  */
11175 MLXSW_ITEM32(reg, mgpir, devices_per_flash, 0x00, 16, 8);
11176 
11177 /* num_of_devices
11178  * Number of devices of device_type.
11179  * Access: RO
11180  */
11181 MLXSW_ITEM32(reg, mgpir, num_of_devices, 0x00, 0, 8);
11182 
11183 /* num_of_modules
11184  * Number of modules.
11185  * Access: RO
11186  */
11187 MLXSW_ITEM32(reg, mgpir, num_of_modules, 0x04, 0, 8);
11188 
11189 static inline void mlxsw_reg_mgpir_pack(char *payload)
11190 {
11191 	MLXSW_REG_ZERO(mgpir, payload);
11192 }
11193 
11194 static inline void
11195 mlxsw_reg_mgpir_unpack(char *payload, u8 *num_of_devices,
11196 		       enum mlxsw_reg_mgpir_device_type *device_type,
11197 		       u8 *devices_per_flash, u8 *num_of_modules)
11198 {
11199 	if (num_of_devices)
11200 		*num_of_devices = mlxsw_reg_mgpir_num_of_devices_get(payload);
11201 	if (device_type)
11202 		*device_type = mlxsw_reg_mgpir_device_type_get(payload);
11203 	if (devices_per_flash)
11204 		*devices_per_flash =
11205 				mlxsw_reg_mgpir_devices_per_flash_get(payload);
11206 	if (num_of_modules)
11207 		*num_of_modules = mlxsw_reg_mgpir_num_of_modules_get(payload);
11208 }
11209 
11210 /* MFDE - Monitoring FW Debug Register
11211  * -----------------------------------
11212  */
11213 #define MLXSW_REG_MFDE_ID 0x9200
11214 #define MLXSW_REG_MFDE_LEN 0x18
11215 
11216 MLXSW_REG_DEFINE(mfde, MLXSW_REG_MFDE_ID, MLXSW_REG_MFDE_LEN);
11217 
11218 /* reg_mfde_irisc_id
11219  * Which irisc triggered the event
11220  * Access: RO
11221  */
11222 MLXSW_ITEM32(reg, mfde, irisc_id, 0x00, 24, 8);
11223 
11224 enum mlxsw_reg_mfde_event_id {
11225 	MLXSW_REG_MFDE_EVENT_ID_CRSPACE_TO = 1,
11226 	/* KVD insertion machine stopped */
11227 	MLXSW_REG_MFDE_EVENT_ID_KVD_IM_STOP,
11228 };
11229 
11230 /* reg_mfde_event_id
11231  * Access: RO
11232  */
11233 MLXSW_ITEM32(reg, mfde, event_id, 0x00, 0, 16);
11234 
11235 enum mlxsw_reg_mfde_method {
11236 	MLXSW_REG_MFDE_METHOD_QUERY,
11237 	MLXSW_REG_MFDE_METHOD_WRITE,
11238 };
11239 
11240 /* reg_mfde_method
11241  * Access: RO
11242  */
11243 MLXSW_ITEM32(reg, mfde, method, 0x04, 29, 1);
11244 
11245 /* reg_mfde_long_process
11246  * Indicates if the command is in long_process mode.
11247  * Access: RO
11248  */
11249 MLXSW_ITEM32(reg, mfde, long_process, 0x04, 28, 1);
11250 
11251 enum mlxsw_reg_mfde_command_type {
11252 	MLXSW_REG_MFDE_COMMAND_TYPE_MAD,
11253 	MLXSW_REG_MFDE_COMMAND_TYPE_EMAD,
11254 	MLXSW_REG_MFDE_COMMAND_TYPE_CMDIF,
11255 };
11256 
11257 /* reg_mfde_command_type
11258  * Access: RO
11259  */
11260 MLXSW_ITEM32(reg, mfde, command_type, 0x04, 24, 2);
11261 
11262 /* reg_mfde_reg_attr_id
11263  * EMAD - register id, MAD - attibute id
11264  * Access: RO
11265  */
11266 MLXSW_ITEM32(reg, mfde, reg_attr_id, 0x04, 0, 16);
11267 
11268 /* reg_mfde_log_address
11269  * crspace address accessed, which resulted in timeout.
11270  * Valid in case event_id == MLXSW_REG_MFDE_EVENT_ID_CRSPACE_TO
11271  * Access: RO
11272  */
11273 MLXSW_ITEM32(reg, mfde, log_address, 0x10, 0, 32);
11274 
11275 /* reg_mfde_log_id
11276  * Which irisc triggered the timeout.
11277  * Valid in case event_id == MLXSW_REG_MFDE_EVENT_ID_CRSPACE_TO
11278  * Access: RO
11279  */
11280 MLXSW_ITEM32(reg, mfde, log_id, 0x14, 0, 4);
11281 
11282 /* reg_mfde_log_ip
11283  * IP (instruction pointer) that triggered the timeout.
11284  * Valid in case event_id == MLXSW_REG_MFDE_EVENT_ID_CRSPACE_TO
11285  * Access: RO
11286  */
11287 MLXSW_ITEM64(reg, mfde, log_ip, 0x18, 0, 64);
11288 
11289 /* reg_mfde_pipes_mask
11290  * Bit per kvh pipe.
11291  * Access: RO
11292  */
11293 MLXSW_ITEM32(reg, mfde, pipes_mask, 0x10, 0, 16);
11294 
11295 /* TNGCR - Tunneling NVE General Configuration Register
11296  * ----------------------------------------------------
11297  * The TNGCR register is used for setting up the NVE Tunneling configuration.
11298  */
11299 #define MLXSW_REG_TNGCR_ID 0xA001
11300 #define MLXSW_REG_TNGCR_LEN 0x44
11301 
11302 MLXSW_REG_DEFINE(tngcr, MLXSW_REG_TNGCR_ID, MLXSW_REG_TNGCR_LEN);
11303 
11304 enum mlxsw_reg_tngcr_type {
11305 	MLXSW_REG_TNGCR_TYPE_VXLAN,
11306 	MLXSW_REG_TNGCR_TYPE_VXLAN_GPE,
11307 	MLXSW_REG_TNGCR_TYPE_GENEVE,
11308 	MLXSW_REG_TNGCR_TYPE_NVGRE,
11309 };
11310 
11311 /* reg_tngcr_type
11312  * Tunnel type for encapsulation and decapsulation. The types are mutually
11313  * exclusive.
11314  * Note: For Spectrum the NVE parsing must be enabled in MPRS.
11315  * Access: RW
11316  */
11317 MLXSW_ITEM32(reg, tngcr, type, 0x00, 0, 4);
11318 
11319 /* reg_tngcr_nve_valid
11320  * The VTEP is valid. Allows adding FDB entries for tunnel encapsulation.
11321  * Access: RW
11322  */
11323 MLXSW_ITEM32(reg, tngcr, nve_valid, 0x04, 31, 1);
11324 
11325 /* reg_tngcr_nve_ttl_uc
11326  * The TTL for NVE tunnel encapsulation underlay unicast packets.
11327  * Access: RW
11328  */
11329 MLXSW_ITEM32(reg, tngcr, nve_ttl_uc, 0x04, 0, 8);
11330 
11331 /* reg_tngcr_nve_ttl_mc
11332  * The TTL for NVE tunnel encapsulation underlay multicast packets.
11333  * Access: RW
11334  */
11335 MLXSW_ITEM32(reg, tngcr, nve_ttl_mc, 0x08, 0, 8);
11336 
11337 enum {
11338 	/* Do not copy flow label. Calculate flow label using nve_flh. */
11339 	MLXSW_REG_TNGCR_FL_NO_COPY,
11340 	/* Copy flow label from inner packet if packet is IPv6 and
11341 	 * encapsulation is by IPv6. Otherwise, calculate flow label using
11342 	 * nve_flh.
11343 	 */
11344 	MLXSW_REG_TNGCR_FL_COPY,
11345 };
11346 
11347 /* reg_tngcr_nve_flc
11348  * For NVE tunnel encapsulation: Flow label copy from inner packet.
11349  * Access: RW
11350  */
11351 MLXSW_ITEM32(reg, tngcr, nve_flc, 0x0C, 25, 1);
11352 
11353 enum {
11354 	/* Flow label is static. In Spectrum this means '0'. Spectrum-2
11355 	 * uses {nve_fl_prefix, nve_fl_suffix}.
11356 	 */
11357 	MLXSW_REG_TNGCR_FL_NO_HASH,
11358 	/* 8 LSBs of the flow label are calculated from ECMP hash of the
11359 	 * inner packet. 12 MSBs are configured by nve_fl_prefix.
11360 	 */
11361 	MLXSW_REG_TNGCR_FL_HASH,
11362 };
11363 
11364 /* reg_tngcr_nve_flh
11365  * NVE flow label hash.
11366  * Access: RW
11367  */
11368 MLXSW_ITEM32(reg, tngcr, nve_flh, 0x0C, 24, 1);
11369 
11370 /* reg_tngcr_nve_fl_prefix
11371  * NVE flow label prefix. Constant 12 MSBs of the flow label.
11372  * Access: RW
11373  */
11374 MLXSW_ITEM32(reg, tngcr, nve_fl_prefix, 0x0C, 8, 12);
11375 
11376 /* reg_tngcr_nve_fl_suffix
11377  * NVE flow label suffix. Constant 8 LSBs of the flow label.
11378  * Reserved when nve_flh=1 and for Spectrum.
11379  * Access: RW
11380  */
11381 MLXSW_ITEM32(reg, tngcr, nve_fl_suffix, 0x0C, 0, 8);
11382 
11383 enum {
11384 	/* Source UDP port is fixed (default '0') */
11385 	MLXSW_REG_TNGCR_UDP_SPORT_NO_HASH,
11386 	/* Source UDP port is calculated based on hash */
11387 	MLXSW_REG_TNGCR_UDP_SPORT_HASH,
11388 };
11389 
11390 /* reg_tngcr_nve_udp_sport_type
11391  * NVE UDP source port type.
11392  * Spectrum uses LAG hash (SLCRv2). Spectrum-2 uses ECMP hash (RECRv2).
11393  * When the source UDP port is calculated based on hash, then the 8 LSBs
11394  * are calculated from hash the 8 MSBs are configured by
11395  * nve_udp_sport_prefix.
11396  * Access: RW
11397  */
11398 MLXSW_ITEM32(reg, tngcr, nve_udp_sport_type, 0x10, 24, 1);
11399 
11400 /* reg_tngcr_nve_udp_sport_prefix
11401  * NVE UDP source port prefix. Constant 8 MSBs of the UDP source port.
11402  * Reserved when NVE type is NVGRE.
11403  * Access: RW
11404  */
11405 MLXSW_ITEM32(reg, tngcr, nve_udp_sport_prefix, 0x10, 8, 8);
11406 
11407 /* reg_tngcr_nve_group_size_mc
11408  * The amount of sequential linked lists of MC entries. The first linked
11409  * list is configured by SFD.underlay_mc_ptr.
11410  * Valid values: 1, 2, 4, 8, 16, 32, 64
11411  * The linked list are configured by TNUMT.
11412  * The hash is set by LAG hash.
11413  * Access: RW
11414  */
11415 MLXSW_ITEM32(reg, tngcr, nve_group_size_mc, 0x18, 0, 8);
11416 
11417 /* reg_tngcr_nve_group_size_flood
11418  * The amount of sequential linked lists of flooding entries. The first
11419  * linked list is configured by SFMR.nve_tunnel_flood_ptr
11420  * Valid values: 1, 2, 4, 8, 16, 32, 64
11421  * The linked list are configured by TNUMT.
11422  * The hash is set by LAG hash.
11423  * Access: RW
11424  */
11425 MLXSW_ITEM32(reg, tngcr, nve_group_size_flood, 0x1C, 0, 8);
11426 
11427 /* reg_tngcr_learn_enable
11428  * During decapsulation, whether to learn from NVE port.
11429  * Reserved when Spectrum-2. See TNPC.
11430  * Access: RW
11431  */
11432 MLXSW_ITEM32(reg, tngcr, learn_enable, 0x20, 31, 1);
11433 
11434 /* reg_tngcr_underlay_virtual_router
11435  * Underlay virtual router.
11436  * Reserved when Spectrum-2.
11437  * Access: RW
11438  */
11439 MLXSW_ITEM32(reg, tngcr, underlay_virtual_router, 0x20, 0, 16);
11440 
11441 /* reg_tngcr_underlay_rif
11442  * Underlay ingress router interface. RIF type should be loopback generic.
11443  * Reserved when Spectrum.
11444  * Access: RW
11445  */
11446 MLXSW_ITEM32(reg, tngcr, underlay_rif, 0x24, 0, 16);
11447 
11448 /* reg_tngcr_usipv4
11449  * Underlay source IPv4 address of the NVE.
11450  * Access: RW
11451  */
11452 MLXSW_ITEM32(reg, tngcr, usipv4, 0x28, 0, 32);
11453 
11454 /* reg_tngcr_usipv6
11455  * Underlay source IPv6 address of the NVE. For Spectrum, must not be
11456  * modified under traffic of NVE tunneling encapsulation.
11457  * Access: RW
11458  */
11459 MLXSW_ITEM_BUF(reg, tngcr, usipv6, 0x30, 16);
11460 
11461 static inline void mlxsw_reg_tngcr_pack(char *payload,
11462 					enum mlxsw_reg_tngcr_type type,
11463 					bool valid, u8 ttl)
11464 {
11465 	MLXSW_REG_ZERO(tngcr, payload);
11466 	mlxsw_reg_tngcr_type_set(payload, type);
11467 	mlxsw_reg_tngcr_nve_valid_set(payload, valid);
11468 	mlxsw_reg_tngcr_nve_ttl_uc_set(payload, ttl);
11469 	mlxsw_reg_tngcr_nve_ttl_mc_set(payload, ttl);
11470 	mlxsw_reg_tngcr_nve_flc_set(payload, MLXSW_REG_TNGCR_FL_NO_COPY);
11471 	mlxsw_reg_tngcr_nve_flh_set(payload, 0);
11472 	mlxsw_reg_tngcr_nve_udp_sport_type_set(payload,
11473 					       MLXSW_REG_TNGCR_UDP_SPORT_HASH);
11474 	mlxsw_reg_tngcr_nve_udp_sport_prefix_set(payload, 0);
11475 	mlxsw_reg_tngcr_nve_group_size_mc_set(payload, 1);
11476 	mlxsw_reg_tngcr_nve_group_size_flood_set(payload, 1);
11477 }
11478 
11479 /* TNUMT - Tunneling NVE Underlay Multicast Table Register
11480  * -------------------------------------------------------
11481  * The TNUMT register is for building the underlay MC table. It is used
11482  * for MC, flooding and BC traffic into the NVE tunnel.
11483  */
11484 #define MLXSW_REG_TNUMT_ID 0xA003
11485 #define MLXSW_REG_TNUMT_LEN 0x20
11486 
11487 MLXSW_REG_DEFINE(tnumt, MLXSW_REG_TNUMT_ID, MLXSW_REG_TNUMT_LEN);
11488 
11489 enum mlxsw_reg_tnumt_record_type {
11490 	MLXSW_REG_TNUMT_RECORD_TYPE_IPV4,
11491 	MLXSW_REG_TNUMT_RECORD_TYPE_IPV6,
11492 	MLXSW_REG_TNUMT_RECORD_TYPE_LABEL,
11493 };
11494 
11495 /* reg_tnumt_record_type
11496  * Record type.
11497  * Access: RW
11498  */
11499 MLXSW_ITEM32(reg, tnumt, record_type, 0x00, 28, 4);
11500 
11501 /* reg_tnumt_tunnel_port
11502  * Tunnel port.
11503  * Access: RW
11504  */
11505 MLXSW_ITEM32(reg, tnumt, tunnel_port, 0x00, 24, 4);
11506 
11507 /* reg_tnumt_underlay_mc_ptr
11508  * Index to the underlay multicast table.
11509  * For Spectrum the index is to the KVD linear.
11510  * Access: Index
11511  */
11512 MLXSW_ITEM32(reg, tnumt, underlay_mc_ptr, 0x00, 0, 24);
11513 
11514 /* reg_tnumt_vnext
11515  * The next_underlay_mc_ptr is valid.
11516  * Access: RW
11517  */
11518 MLXSW_ITEM32(reg, tnumt, vnext, 0x04, 31, 1);
11519 
11520 /* reg_tnumt_next_underlay_mc_ptr
11521  * The next index to the underlay multicast table.
11522  * Access: RW
11523  */
11524 MLXSW_ITEM32(reg, tnumt, next_underlay_mc_ptr, 0x04, 0, 24);
11525 
11526 /* reg_tnumt_record_size
11527  * Number of IP addresses in the record.
11528  * Range is 1..cap_max_nve_mc_entries_ipv{4,6}
11529  * Access: RW
11530  */
11531 MLXSW_ITEM32(reg, tnumt, record_size, 0x08, 0, 3);
11532 
11533 /* reg_tnumt_udip
11534  * The underlay IPv4 addresses. udip[i] is reserved if i >= size
11535  * Access: RW
11536  */
11537 MLXSW_ITEM32_INDEXED(reg, tnumt, udip, 0x0C, 0, 32, 0x04, 0x00, false);
11538 
11539 /* reg_tnumt_udip_ptr
11540  * The pointer to the underlay IPv6 addresses. udip_ptr[i] is reserved if
11541  * i >= size. The IPv6 addresses are configured by RIPS.
11542  * Access: RW
11543  */
11544 MLXSW_ITEM32_INDEXED(reg, tnumt, udip_ptr, 0x0C, 0, 24, 0x04, 0x00, false);
11545 
11546 static inline void mlxsw_reg_tnumt_pack(char *payload,
11547 					enum mlxsw_reg_tnumt_record_type type,
11548 					enum mlxsw_reg_tunnel_port tport,
11549 					u32 underlay_mc_ptr, bool vnext,
11550 					u32 next_underlay_mc_ptr,
11551 					u8 record_size)
11552 {
11553 	MLXSW_REG_ZERO(tnumt, payload);
11554 	mlxsw_reg_tnumt_record_type_set(payload, type);
11555 	mlxsw_reg_tnumt_tunnel_port_set(payload, tport);
11556 	mlxsw_reg_tnumt_underlay_mc_ptr_set(payload, underlay_mc_ptr);
11557 	mlxsw_reg_tnumt_vnext_set(payload, vnext);
11558 	mlxsw_reg_tnumt_next_underlay_mc_ptr_set(payload, next_underlay_mc_ptr);
11559 	mlxsw_reg_tnumt_record_size_set(payload, record_size);
11560 }
11561 
11562 /* TNQCR - Tunneling NVE QoS Configuration Register
11563  * ------------------------------------------------
11564  * The TNQCR register configures how QoS is set in encapsulation into the
11565  * underlay network.
11566  */
11567 #define MLXSW_REG_TNQCR_ID 0xA010
11568 #define MLXSW_REG_TNQCR_LEN 0x0C
11569 
11570 MLXSW_REG_DEFINE(tnqcr, MLXSW_REG_TNQCR_ID, MLXSW_REG_TNQCR_LEN);
11571 
11572 /* reg_tnqcr_enc_set_dscp
11573  * For encapsulation: How to set DSCP field:
11574  * 0 - Copy the DSCP from the overlay (inner) IP header to the underlay
11575  * (outer) IP header. If there is no IP header, use TNQDR.dscp
11576  * 1 - Set the DSCP field as TNQDR.dscp
11577  * Access: RW
11578  */
11579 MLXSW_ITEM32(reg, tnqcr, enc_set_dscp, 0x04, 28, 1);
11580 
11581 static inline void mlxsw_reg_tnqcr_pack(char *payload)
11582 {
11583 	MLXSW_REG_ZERO(tnqcr, payload);
11584 	mlxsw_reg_tnqcr_enc_set_dscp_set(payload, 0);
11585 }
11586 
11587 /* TNQDR - Tunneling NVE QoS Default Register
11588  * ------------------------------------------
11589  * The TNQDR register configures the default QoS settings for NVE
11590  * encapsulation.
11591  */
11592 #define MLXSW_REG_TNQDR_ID 0xA011
11593 #define MLXSW_REG_TNQDR_LEN 0x08
11594 
11595 MLXSW_REG_DEFINE(tnqdr, MLXSW_REG_TNQDR_ID, MLXSW_REG_TNQDR_LEN);
11596 
11597 /* reg_tnqdr_local_port
11598  * Local port number (receive port). CPU port is supported.
11599  * Access: Index
11600  */
11601 MLXSW_ITEM32(reg, tnqdr, local_port, 0x00, 16, 8);
11602 
11603 /* reg_tnqdr_dscp
11604  * For encapsulation, the default DSCP.
11605  * Access: RW
11606  */
11607 MLXSW_ITEM32(reg, tnqdr, dscp, 0x04, 0, 6);
11608 
11609 static inline void mlxsw_reg_tnqdr_pack(char *payload, u8 local_port)
11610 {
11611 	MLXSW_REG_ZERO(tnqdr, payload);
11612 	mlxsw_reg_tnqdr_local_port_set(payload, local_port);
11613 	mlxsw_reg_tnqdr_dscp_set(payload, 0);
11614 }
11615 
11616 /* TNEEM - Tunneling NVE Encapsulation ECN Mapping Register
11617  * --------------------------------------------------------
11618  * The TNEEM register maps ECN of the IP header at the ingress to the
11619  * encapsulation to the ECN of the underlay network.
11620  */
11621 #define MLXSW_REG_TNEEM_ID 0xA012
11622 #define MLXSW_REG_TNEEM_LEN 0x0C
11623 
11624 MLXSW_REG_DEFINE(tneem, MLXSW_REG_TNEEM_ID, MLXSW_REG_TNEEM_LEN);
11625 
11626 /* reg_tneem_overlay_ecn
11627  * ECN of the IP header in the overlay network.
11628  * Access: Index
11629  */
11630 MLXSW_ITEM32(reg, tneem, overlay_ecn, 0x04, 24, 2);
11631 
11632 /* reg_tneem_underlay_ecn
11633  * ECN of the IP header in the underlay network.
11634  * Access: RW
11635  */
11636 MLXSW_ITEM32(reg, tneem, underlay_ecn, 0x04, 16, 2);
11637 
11638 static inline void mlxsw_reg_tneem_pack(char *payload, u8 overlay_ecn,
11639 					u8 underlay_ecn)
11640 {
11641 	MLXSW_REG_ZERO(tneem, payload);
11642 	mlxsw_reg_tneem_overlay_ecn_set(payload, overlay_ecn);
11643 	mlxsw_reg_tneem_underlay_ecn_set(payload, underlay_ecn);
11644 }
11645 
11646 /* TNDEM - Tunneling NVE Decapsulation ECN Mapping Register
11647  * --------------------------------------------------------
11648  * The TNDEM register configures the actions that are done in the
11649  * decapsulation.
11650  */
11651 #define MLXSW_REG_TNDEM_ID 0xA013
11652 #define MLXSW_REG_TNDEM_LEN 0x0C
11653 
11654 MLXSW_REG_DEFINE(tndem, MLXSW_REG_TNDEM_ID, MLXSW_REG_TNDEM_LEN);
11655 
11656 /* reg_tndem_underlay_ecn
11657  * ECN field of the IP header in the underlay network.
11658  * Access: Index
11659  */
11660 MLXSW_ITEM32(reg, tndem, underlay_ecn, 0x04, 24, 2);
11661 
11662 /* reg_tndem_overlay_ecn
11663  * ECN field of the IP header in the overlay network.
11664  * Access: Index
11665  */
11666 MLXSW_ITEM32(reg, tndem, overlay_ecn, 0x04, 16, 2);
11667 
11668 /* reg_tndem_eip_ecn
11669  * Egress IP ECN. ECN field of the IP header of the packet which goes out
11670  * from the decapsulation.
11671  * Access: RW
11672  */
11673 MLXSW_ITEM32(reg, tndem, eip_ecn, 0x04, 8, 2);
11674 
11675 /* reg_tndem_trap_en
11676  * Trap enable:
11677  * 0 - No trap due to decap ECN
11678  * 1 - Trap enable with trap_id
11679  * Access: RW
11680  */
11681 MLXSW_ITEM32(reg, tndem, trap_en, 0x08, 28, 4);
11682 
11683 /* reg_tndem_trap_id
11684  * Trap ID. Either DECAP_ECN0 or DECAP_ECN1.
11685  * Reserved when trap_en is '0'.
11686  * Access: RW
11687  */
11688 MLXSW_ITEM32(reg, tndem, trap_id, 0x08, 0, 9);
11689 
11690 static inline void mlxsw_reg_tndem_pack(char *payload, u8 underlay_ecn,
11691 					u8 overlay_ecn, u8 ecn, bool trap_en,
11692 					u16 trap_id)
11693 {
11694 	MLXSW_REG_ZERO(tndem, payload);
11695 	mlxsw_reg_tndem_underlay_ecn_set(payload, underlay_ecn);
11696 	mlxsw_reg_tndem_overlay_ecn_set(payload, overlay_ecn);
11697 	mlxsw_reg_tndem_eip_ecn_set(payload, ecn);
11698 	mlxsw_reg_tndem_trap_en_set(payload, trap_en);
11699 	mlxsw_reg_tndem_trap_id_set(payload, trap_id);
11700 }
11701 
11702 /* TNPC - Tunnel Port Configuration Register
11703  * -----------------------------------------
11704  * The TNPC register is used for tunnel port configuration.
11705  * Reserved when Spectrum.
11706  */
11707 #define MLXSW_REG_TNPC_ID 0xA020
11708 #define MLXSW_REG_TNPC_LEN 0x18
11709 
11710 MLXSW_REG_DEFINE(tnpc, MLXSW_REG_TNPC_ID, MLXSW_REG_TNPC_LEN);
11711 
11712 /* reg_tnpc_tunnel_port
11713  * Tunnel port.
11714  * Access: Index
11715  */
11716 MLXSW_ITEM32(reg, tnpc, tunnel_port, 0x00, 0, 4);
11717 
11718 /* reg_tnpc_learn_enable_v6
11719  * During IPv6 underlay decapsulation, whether to learn from tunnel port.
11720  * Access: RW
11721  */
11722 MLXSW_ITEM32(reg, tnpc, learn_enable_v6, 0x04, 1, 1);
11723 
11724 /* reg_tnpc_learn_enable_v4
11725  * During IPv4 underlay decapsulation, whether to learn from tunnel port.
11726  * Access: RW
11727  */
11728 MLXSW_ITEM32(reg, tnpc, learn_enable_v4, 0x04, 0, 1);
11729 
11730 static inline void mlxsw_reg_tnpc_pack(char *payload,
11731 				       enum mlxsw_reg_tunnel_port tport,
11732 				       bool learn_enable)
11733 {
11734 	MLXSW_REG_ZERO(tnpc, payload);
11735 	mlxsw_reg_tnpc_tunnel_port_set(payload, tport);
11736 	mlxsw_reg_tnpc_learn_enable_v4_set(payload, learn_enable);
11737 	mlxsw_reg_tnpc_learn_enable_v6_set(payload, learn_enable);
11738 }
11739 
11740 /* TIGCR - Tunneling IPinIP General Configuration Register
11741  * -------------------------------------------------------
11742  * The TIGCR register is used for setting up the IPinIP Tunnel configuration.
11743  */
11744 #define MLXSW_REG_TIGCR_ID 0xA801
11745 #define MLXSW_REG_TIGCR_LEN 0x10
11746 
11747 MLXSW_REG_DEFINE(tigcr, MLXSW_REG_TIGCR_ID, MLXSW_REG_TIGCR_LEN);
11748 
11749 /* reg_tigcr_ipip_ttlc
11750  * For IPinIP Tunnel encapsulation: whether to copy the ttl from the packet
11751  * header.
11752  * Access: RW
11753  */
11754 MLXSW_ITEM32(reg, tigcr, ttlc, 0x04, 8, 1);
11755 
11756 /* reg_tigcr_ipip_ttl_uc
11757  * The TTL for IPinIP Tunnel encapsulation of unicast packets if
11758  * reg_tigcr_ipip_ttlc is unset.
11759  * Access: RW
11760  */
11761 MLXSW_ITEM32(reg, tigcr, ttl_uc, 0x04, 0, 8);
11762 
11763 static inline void mlxsw_reg_tigcr_pack(char *payload, bool ttlc, u8 ttl_uc)
11764 {
11765 	MLXSW_REG_ZERO(tigcr, payload);
11766 	mlxsw_reg_tigcr_ttlc_set(payload, ttlc);
11767 	mlxsw_reg_tigcr_ttl_uc_set(payload, ttl_uc);
11768 }
11769 
11770 /* TIEEM - Tunneling IPinIP Encapsulation ECN Mapping Register
11771  * -----------------------------------------------------------
11772  * The TIEEM register maps ECN of the IP header at the ingress to the
11773  * encapsulation to the ECN of the underlay network.
11774  */
11775 #define MLXSW_REG_TIEEM_ID 0xA812
11776 #define MLXSW_REG_TIEEM_LEN 0x0C
11777 
11778 MLXSW_REG_DEFINE(tieem, MLXSW_REG_TIEEM_ID, MLXSW_REG_TIEEM_LEN);
11779 
11780 /* reg_tieem_overlay_ecn
11781  * ECN of the IP header in the overlay network.
11782  * Access: Index
11783  */
11784 MLXSW_ITEM32(reg, tieem, overlay_ecn, 0x04, 24, 2);
11785 
11786 /* reg_tineem_underlay_ecn
11787  * ECN of the IP header in the underlay network.
11788  * Access: RW
11789  */
11790 MLXSW_ITEM32(reg, tieem, underlay_ecn, 0x04, 16, 2);
11791 
11792 static inline void mlxsw_reg_tieem_pack(char *payload, u8 overlay_ecn,
11793 					u8 underlay_ecn)
11794 {
11795 	MLXSW_REG_ZERO(tieem, payload);
11796 	mlxsw_reg_tieem_overlay_ecn_set(payload, overlay_ecn);
11797 	mlxsw_reg_tieem_underlay_ecn_set(payload, underlay_ecn);
11798 }
11799 
11800 /* TIDEM - Tunneling IPinIP Decapsulation ECN Mapping Register
11801  * -----------------------------------------------------------
11802  * The TIDEM register configures the actions that are done in the
11803  * decapsulation.
11804  */
11805 #define MLXSW_REG_TIDEM_ID 0xA813
11806 #define MLXSW_REG_TIDEM_LEN 0x0C
11807 
11808 MLXSW_REG_DEFINE(tidem, MLXSW_REG_TIDEM_ID, MLXSW_REG_TIDEM_LEN);
11809 
11810 /* reg_tidem_underlay_ecn
11811  * ECN field of the IP header in the underlay network.
11812  * Access: Index
11813  */
11814 MLXSW_ITEM32(reg, tidem, underlay_ecn, 0x04, 24, 2);
11815 
11816 /* reg_tidem_overlay_ecn
11817  * ECN field of the IP header in the overlay network.
11818  * Access: Index
11819  */
11820 MLXSW_ITEM32(reg, tidem, overlay_ecn, 0x04, 16, 2);
11821 
11822 /* reg_tidem_eip_ecn
11823  * Egress IP ECN. ECN field of the IP header of the packet which goes out
11824  * from the decapsulation.
11825  * Access: RW
11826  */
11827 MLXSW_ITEM32(reg, tidem, eip_ecn, 0x04, 8, 2);
11828 
11829 /* reg_tidem_trap_en
11830  * Trap enable:
11831  * 0 - No trap due to decap ECN
11832  * 1 - Trap enable with trap_id
11833  * Access: RW
11834  */
11835 MLXSW_ITEM32(reg, tidem, trap_en, 0x08, 28, 4);
11836 
11837 /* reg_tidem_trap_id
11838  * Trap ID. Either DECAP_ECN0 or DECAP_ECN1.
11839  * Reserved when trap_en is '0'.
11840  * Access: RW
11841  */
11842 MLXSW_ITEM32(reg, tidem, trap_id, 0x08, 0, 9);
11843 
11844 static inline void mlxsw_reg_tidem_pack(char *payload, u8 underlay_ecn,
11845 					u8 overlay_ecn, u8 eip_ecn,
11846 					bool trap_en, u16 trap_id)
11847 {
11848 	MLXSW_REG_ZERO(tidem, payload);
11849 	mlxsw_reg_tidem_underlay_ecn_set(payload, underlay_ecn);
11850 	mlxsw_reg_tidem_overlay_ecn_set(payload, overlay_ecn);
11851 	mlxsw_reg_tidem_eip_ecn_set(payload, eip_ecn);
11852 	mlxsw_reg_tidem_trap_en_set(payload, trap_en);
11853 	mlxsw_reg_tidem_trap_id_set(payload, trap_id);
11854 }
11855 
11856 /* SBPR - Shared Buffer Pools Register
11857  * -----------------------------------
11858  * The SBPR configures and retrieves the shared buffer pools and configuration.
11859  */
11860 #define MLXSW_REG_SBPR_ID 0xB001
11861 #define MLXSW_REG_SBPR_LEN 0x14
11862 
11863 MLXSW_REG_DEFINE(sbpr, MLXSW_REG_SBPR_ID, MLXSW_REG_SBPR_LEN);
11864 
11865 /* shared direstion enum for SBPR, SBCM, SBPM */
11866 enum mlxsw_reg_sbxx_dir {
11867 	MLXSW_REG_SBXX_DIR_INGRESS,
11868 	MLXSW_REG_SBXX_DIR_EGRESS,
11869 };
11870 
11871 /* reg_sbpr_dir
11872  * Direction.
11873  * Access: Index
11874  */
11875 MLXSW_ITEM32(reg, sbpr, dir, 0x00, 24, 2);
11876 
11877 /* reg_sbpr_pool
11878  * Pool index.
11879  * Access: Index
11880  */
11881 MLXSW_ITEM32(reg, sbpr, pool, 0x00, 0, 4);
11882 
11883 /* reg_sbpr_infi_size
11884  * Size is infinite.
11885  * Access: RW
11886  */
11887 MLXSW_ITEM32(reg, sbpr, infi_size, 0x04, 31, 1);
11888 
11889 /* reg_sbpr_size
11890  * Pool size in buffer cells.
11891  * Reserved when infi_size = 1.
11892  * Access: RW
11893  */
11894 MLXSW_ITEM32(reg, sbpr, size, 0x04, 0, 24);
11895 
11896 enum mlxsw_reg_sbpr_mode {
11897 	MLXSW_REG_SBPR_MODE_STATIC,
11898 	MLXSW_REG_SBPR_MODE_DYNAMIC,
11899 };
11900 
11901 /* reg_sbpr_mode
11902  * Pool quota calculation mode.
11903  * Access: RW
11904  */
11905 MLXSW_ITEM32(reg, sbpr, mode, 0x08, 0, 4);
11906 
11907 static inline void mlxsw_reg_sbpr_pack(char *payload, u8 pool,
11908 				       enum mlxsw_reg_sbxx_dir dir,
11909 				       enum mlxsw_reg_sbpr_mode mode, u32 size,
11910 				       bool infi_size)
11911 {
11912 	MLXSW_REG_ZERO(sbpr, payload);
11913 	mlxsw_reg_sbpr_pool_set(payload, pool);
11914 	mlxsw_reg_sbpr_dir_set(payload, dir);
11915 	mlxsw_reg_sbpr_mode_set(payload, mode);
11916 	mlxsw_reg_sbpr_size_set(payload, size);
11917 	mlxsw_reg_sbpr_infi_size_set(payload, infi_size);
11918 }
11919 
11920 /* SBCM - Shared Buffer Class Management Register
11921  * ----------------------------------------------
11922  * The SBCM register configures and retrieves the shared buffer allocation
11923  * and configuration according to Port-PG, including the binding to pool
11924  * and definition of the associated quota.
11925  */
11926 #define MLXSW_REG_SBCM_ID 0xB002
11927 #define MLXSW_REG_SBCM_LEN 0x28
11928 
11929 MLXSW_REG_DEFINE(sbcm, MLXSW_REG_SBCM_ID, MLXSW_REG_SBCM_LEN);
11930 
11931 /* reg_sbcm_local_port
11932  * Local port number.
11933  * For Ingress: excludes CPU port and Router port
11934  * For Egress: excludes IP Router
11935  * Access: Index
11936  */
11937 MLXSW_ITEM32(reg, sbcm, local_port, 0x00, 16, 8);
11938 
11939 /* reg_sbcm_pg_buff
11940  * PG buffer - Port PG (dir=ingress) / traffic class (dir=egress)
11941  * For PG buffer: range is 0..cap_max_pg_buffers - 1
11942  * For traffic class: range is 0..cap_max_tclass - 1
11943  * Note that when traffic class is in MC aware mode then the traffic
11944  * classes which are MC aware cannot be configured.
11945  * Access: Index
11946  */
11947 MLXSW_ITEM32(reg, sbcm, pg_buff, 0x00, 8, 6);
11948 
11949 /* reg_sbcm_dir
11950  * Direction.
11951  * Access: Index
11952  */
11953 MLXSW_ITEM32(reg, sbcm, dir, 0x00, 0, 2);
11954 
11955 /* reg_sbcm_min_buff
11956  * Minimum buffer size for the limiter, in cells.
11957  * Access: RW
11958  */
11959 MLXSW_ITEM32(reg, sbcm, min_buff, 0x18, 0, 24);
11960 
11961 /* shared max_buff limits for dynamic threshold for SBCM, SBPM */
11962 #define MLXSW_REG_SBXX_DYN_MAX_BUFF_MIN 1
11963 #define MLXSW_REG_SBXX_DYN_MAX_BUFF_MAX 14
11964 
11965 /* reg_sbcm_infi_max
11966  * Max buffer is infinite.
11967  * Access: RW
11968  */
11969 MLXSW_ITEM32(reg, sbcm, infi_max, 0x1C, 31, 1);
11970 
11971 /* reg_sbcm_max_buff
11972  * When the pool associated to the port-pg/tclass is configured to
11973  * static, Maximum buffer size for the limiter configured in cells.
11974  * When the pool associated to the port-pg/tclass is configured to
11975  * dynamic, the max_buff holds the "alpha" parameter, supporting
11976  * the following values:
11977  * 0: 0
11978  * i: (1/128)*2^(i-1), for i=1..14
11979  * 0xFF: Infinity
11980  * Reserved when infi_max = 1.
11981  * Access: RW
11982  */
11983 MLXSW_ITEM32(reg, sbcm, max_buff, 0x1C, 0, 24);
11984 
11985 /* reg_sbcm_pool
11986  * Association of the port-priority to a pool.
11987  * Access: RW
11988  */
11989 MLXSW_ITEM32(reg, sbcm, pool, 0x24, 0, 4);
11990 
11991 static inline void mlxsw_reg_sbcm_pack(char *payload, u8 local_port, u8 pg_buff,
11992 				       enum mlxsw_reg_sbxx_dir dir,
11993 				       u32 min_buff, u32 max_buff,
11994 				       bool infi_max, u8 pool)
11995 {
11996 	MLXSW_REG_ZERO(sbcm, payload);
11997 	mlxsw_reg_sbcm_local_port_set(payload, local_port);
11998 	mlxsw_reg_sbcm_pg_buff_set(payload, pg_buff);
11999 	mlxsw_reg_sbcm_dir_set(payload, dir);
12000 	mlxsw_reg_sbcm_min_buff_set(payload, min_buff);
12001 	mlxsw_reg_sbcm_max_buff_set(payload, max_buff);
12002 	mlxsw_reg_sbcm_infi_max_set(payload, infi_max);
12003 	mlxsw_reg_sbcm_pool_set(payload, pool);
12004 }
12005 
12006 /* SBPM - Shared Buffer Port Management Register
12007  * ---------------------------------------------
12008  * The SBPM register configures and retrieves the shared buffer allocation
12009  * and configuration according to Port-Pool, including the definition
12010  * of the associated quota.
12011  */
12012 #define MLXSW_REG_SBPM_ID 0xB003
12013 #define MLXSW_REG_SBPM_LEN 0x28
12014 
12015 MLXSW_REG_DEFINE(sbpm, MLXSW_REG_SBPM_ID, MLXSW_REG_SBPM_LEN);
12016 
12017 /* reg_sbpm_local_port
12018  * Local port number.
12019  * For Ingress: excludes CPU port and Router port
12020  * For Egress: excludes IP Router
12021  * Access: Index
12022  */
12023 MLXSW_ITEM32(reg, sbpm, local_port, 0x00, 16, 8);
12024 
12025 /* reg_sbpm_pool
12026  * The pool associated to quota counting on the local_port.
12027  * Access: Index
12028  */
12029 MLXSW_ITEM32(reg, sbpm, pool, 0x00, 8, 4);
12030 
12031 /* reg_sbpm_dir
12032  * Direction.
12033  * Access: Index
12034  */
12035 MLXSW_ITEM32(reg, sbpm, dir, 0x00, 0, 2);
12036 
12037 /* reg_sbpm_buff_occupancy
12038  * Current buffer occupancy in cells.
12039  * Access: RO
12040  */
12041 MLXSW_ITEM32(reg, sbpm, buff_occupancy, 0x10, 0, 24);
12042 
12043 /* reg_sbpm_clr
12044  * Clear Max Buffer Occupancy
12045  * When this bit is set, max_buff_occupancy field is cleared (and a
12046  * new max value is tracked from the time the clear was performed).
12047  * Access: OP
12048  */
12049 MLXSW_ITEM32(reg, sbpm, clr, 0x14, 31, 1);
12050 
12051 /* reg_sbpm_max_buff_occupancy
12052  * Maximum value of buffer occupancy in cells monitored. Cleared by
12053  * writing to the clr field.
12054  * Access: RO
12055  */
12056 MLXSW_ITEM32(reg, sbpm, max_buff_occupancy, 0x14, 0, 24);
12057 
12058 /* reg_sbpm_min_buff
12059  * Minimum buffer size for the limiter, in cells.
12060  * Access: RW
12061  */
12062 MLXSW_ITEM32(reg, sbpm, min_buff, 0x18, 0, 24);
12063 
12064 /* reg_sbpm_max_buff
12065  * When the pool associated to the port-pg/tclass is configured to
12066  * static, Maximum buffer size for the limiter configured in cells.
12067  * When the pool associated to the port-pg/tclass is configured to
12068  * dynamic, the max_buff holds the "alpha" parameter, supporting
12069  * the following values:
12070  * 0: 0
12071  * i: (1/128)*2^(i-1), for i=1..14
12072  * 0xFF: Infinity
12073  * Access: RW
12074  */
12075 MLXSW_ITEM32(reg, sbpm, max_buff, 0x1C, 0, 24);
12076 
12077 static inline void mlxsw_reg_sbpm_pack(char *payload, u8 local_port, u8 pool,
12078 				       enum mlxsw_reg_sbxx_dir dir, bool clr,
12079 				       u32 min_buff, u32 max_buff)
12080 {
12081 	MLXSW_REG_ZERO(sbpm, payload);
12082 	mlxsw_reg_sbpm_local_port_set(payload, local_port);
12083 	mlxsw_reg_sbpm_pool_set(payload, pool);
12084 	mlxsw_reg_sbpm_dir_set(payload, dir);
12085 	mlxsw_reg_sbpm_clr_set(payload, clr);
12086 	mlxsw_reg_sbpm_min_buff_set(payload, min_buff);
12087 	mlxsw_reg_sbpm_max_buff_set(payload, max_buff);
12088 }
12089 
12090 static inline void mlxsw_reg_sbpm_unpack(char *payload, u32 *p_buff_occupancy,
12091 					 u32 *p_max_buff_occupancy)
12092 {
12093 	*p_buff_occupancy = mlxsw_reg_sbpm_buff_occupancy_get(payload);
12094 	*p_max_buff_occupancy = mlxsw_reg_sbpm_max_buff_occupancy_get(payload);
12095 }
12096 
12097 /* SBMM - Shared Buffer Multicast Management Register
12098  * --------------------------------------------------
12099  * The SBMM register configures and retrieves the shared buffer allocation
12100  * and configuration for MC packets according to Switch-Priority, including
12101  * the binding to pool and definition of the associated quota.
12102  */
12103 #define MLXSW_REG_SBMM_ID 0xB004
12104 #define MLXSW_REG_SBMM_LEN 0x28
12105 
12106 MLXSW_REG_DEFINE(sbmm, MLXSW_REG_SBMM_ID, MLXSW_REG_SBMM_LEN);
12107 
12108 /* reg_sbmm_prio
12109  * Switch Priority.
12110  * Access: Index
12111  */
12112 MLXSW_ITEM32(reg, sbmm, prio, 0x00, 8, 4);
12113 
12114 /* reg_sbmm_min_buff
12115  * Minimum buffer size for the limiter, in cells.
12116  * Access: RW
12117  */
12118 MLXSW_ITEM32(reg, sbmm, min_buff, 0x18, 0, 24);
12119 
12120 /* reg_sbmm_max_buff
12121  * When the pool associated to the port-pg/tclass is configured to
12122  * static, Maximum buffer size for the limiter configured in cells.
12123  * When the pool associated to the port-pg/tclass is configured to
12124  * dynamic, the max_buff holds the "alpha" parameter, supporting
12125  * the following values:
12126  * 0: 0
12127  * i: (1/128)*2^(i-1), for i=1..14
12128  * 0xFF: Infinity
12129  * Access: RW
12130  */
12131 MLXSW_ITEM32(reg, sbmm, max_buff, 0x1C, 0, 24);
12132 
12133 /* reg_sbmm_pool
12134  * Association of the port-priority to a pool.
12135  * Access: RW
12136  */
12137 MLXSW_ITEM32(reg, sbmm, pool, 0x24, 0, 4);
12138 
12139 static inline void mlxsw_reg_sbmm_pack(char *payload, u8 prio, u32 min_buff,
12140 				       u32 max_buff, u8 pool)
12141 {
12142 	MLXSW_REG_ZERO(sbmm, payload);
12143 	mlxsw_reg_sbmm_prio_set(payload, prio);
12144 	mlxsw_reg_sbmm_min_buff_set(payload, min_buff);
12145 	mlxsw_reg_sbmm_max_buff_set(payload, max_buff);
12146 	mlxsw_reg_sbmm_pool_set(payload, pool);
12147 }
12148 
12149 /* SBSR - Shared Buffer Status Register
12150  * ------------------------------------
12151  * The SBSR register retrieves the shared buffer occupancy according to
12152  * Port-Pool. Note that this register enables reading a large amount of data.
12153  * It is the user's responsibility to limit the amount of data to ensure the
12154  * response can match the maximum transfer unit. In case the response exceeds
12155  * the maximum transport unit, it will be truncated with no special notice.
12156  */
12157 #define MLXSW_REG_SBSR_ID 0xB005
12158 #define MLXSW_REG_SBSR_BASE_LEN 0x5C /* base length, without records */
12159 #define MLXSW_REG_SBSR_REC_LEN 0x8 /* record length */
12160 #define MLXSW_REG_SBSR_REC_MAX_COUNT 120
12161 #define MLXSW_REG_SBSR_LEN (MLXSW_REG_SBSR_BASE_LEN +	\
12162 			    MLXSW_REG_SBSR_REC_LEN *	\
12163 			    MLXSW_REG_SBSR_REC_MAX_COUNT)
12164 
12165 MLXSW_REG_DEFINE(sbsr, MLXSW_REG_SBSR_ID, MLXSW_REG_SBSR_LEN);
12166 
12167 /* reg_sbsr_clr
12168  * Clear Max Buffer Occupancy. When this bit is set, the max_buff_occupancy
12169  * field is cleared (and a new max value is tracked from the time the clear
12170  * was performed).
12171  * Access: OP
12172  */
12173 MLXSW_ITEM32(reg, sbsr, clr, 0x00, 31, 1);
12174 
12175 /* reg_sbsr_ingress_port_mask
12176  * Bit vector for all ingress network ports.
12177  * Indicates which of the ports (for which the relevant bit is set)
12178  * are affected by the set operation. Configuration of any other port
12179  * does not change.
12180  * Access: Index
12181  */
12182 MLXSW_ITEM_BIT_ARRAY(reg, sbsr, ingress_port_mask, 0x10, 0x20, 1);
12183 
12184 /* reg_sbsr_pg_buff_mask
12185  * Bit vector for all switch priority groups.
12186  * Indicates which of the priorities (for which the relevant bit is set)
12187  * are affected by the set operation. Configuration of any other priority
12188  * does not change.
12189  * Range is 0..cap_max_pg_buffers - 1
12190  * Access: Index
12191  */
12192 MLXSW_ITEM_BIT_ARRAY(reg, sbsr, pg_buff_mask, 0x30, 0x4, 1);
12193 
12194 /* reg_sbsr_egress_port_mask
12195  * Bit vector for all egress network ports.
12196  * Indicates which of the ports (for which the relevant bit is set)
12197  * are affected by the set operation. Configuration of any other port
12198  * does not change.
12199  * Access: Index
12200  */
12201 MLXSW_ITEM_BIT_ARRAY(reg, sbsr, egress_port_mask, 0x34, 0x20, 1);
12202 
12203 /* reg_sbsr_tclass_mask
12204  * Bit vector for all traffic classes.
12205  * Indicates which of the traffic classes (for which the relevant bit is
12206  * set) are affected by the set operation. Configuration of any other
12207  * traffic class does not change.
12208  * Range is 0..cap_max_tclass - 1
12209  * Access: Index
12210  */
12211 MLXSW_ITEM_BIT_ARRAY(reg, sbsr, tclass_mask, 0x54, 0x8, 1);
12212 
12213 static inline void mlxsw_reg_sbsr_pack(char *payload, bool clr)
12214 {
12215 	MLXSW_REG_ZERO(sbsr, payload);
12216 	mlxsw_reg_sbsr_clr_set(payload, clr);
12217 }
12218 
12219 /* reg_sbsr_rec_buff_occupancy
12220  * Current buffer occupancy in cells.
12221  * Access: RO
12222  */
12223 MLXSW_ITEM32_INDEXED(reg, sbsr, rec_buff_occupancy, MLXSW_REG_SBSR_BASE_LEN,
12224 		     0, 24, MLXSW_REG_SBSR_REC_LEN, 0x00, false);
12225 
12226 /* reg_sbsr_rec_max_buff_occupancy
12227  * Maximum value of buffer occupancy in cells monitored. Cleared by
12228  * writing to the clr field.
12229  * Access: RO
12230  */
12231 MLXSW_ITEM32_INDEXED(reg, sbsr, rec_max_buff_occupancy, MLXSW_REG_SBSR_BASE_LEN,
12232 		     0, 24, MLXSW_REG_SBSR_REC_LEN, 0x04, false);
12233 
12234 static inline void mlxsw_reg_sbsr_rec_unpack(char *payload, int rec_index,
12235 					     u32 *p_buff_occupancy,
12236 					     u32 *p_max_buff_occupancy)
12237 {
12238 	*p_buff_occupancy =
12239 		mlxsw_reg_sbsr_rec_buff_occupancy_get(payload, rec_index);
12240 	*p_max_buff_occupancy =
12241 		mlxsw_reg_sbsr_rec_max_buff_occupancy_get(payload, rec_index);
12242 }
12243 
12244 /* SBIB - Shared Buffer Internal Buffer Register
12245  * ---------------------------------------------
12246  * The SBIB register configures per port buffers for internal use. The internal
12247  * buffers consume memory on the port buffers (note that the port buffers are
12248  * used also by PBMC).
12249  *
12250  * For Spectrum this is used for egress mirroring.
12251  */
12252 #define MLXSW_REG_SBIB_ID 0xB006
12253 #define MLXSW_REG_SBIB_LEN 0x10
12254 
12255 MLXSW_REG_DEFINE(sbib, MLXSW_REG_SBIB_ID, MLXSW_REG_SBIB_LEN);
12256 
12257 /* reg_sbib_local_port
12258  * Local port number
12259  * Not supported for CPU port and router port
12260  * Access: Index
12261  */
12262 MLXSW_ITEM32(reg, sbib, local_port, 0x00, 16, 8);
12263 
12264 /* reg_sbib_buff_size
12265  * Units represented in cells
12266  * Allowed range is 0 to (cap_max_headroom_size - 1)
12267  * Default is 0
12268  * Access: RW
12269  */
12270 MLXSW_ITEM32(reg, sbib, buff_size, 0x08, 0, 24);
12271 
12272 static inline void mlxsw_reg_sbib_pack(char *payload, u8 local_port,
12273 				       u32 buff_size)
12274 {
12275 	MLXSW_REG_ZERO(sbib, payload);
12276 	mlxsw_reg_sbib_local_port_set(payload, local_port);
12277 	mlxsw_reg_sbib_buff_size_set(payload, buff_size);
12278 }
12279 
12280 static const struct mlxsw_reg_info *mlxsw_reg_infos[] = {
12281 	MLXSW_REG(sgcr),
12282 	MLXSW_REG(spad),
12283 	MLXSW_REG(smid),
12284 	MLXSW_REG(sspr),
12285 	MLXSW_REG(sfdat),
12286 	MLXSW_REG(sfd),
12287 	MLXSW_REG(sfn),
12288 	MLXSW_REG(spms),
12289 	MLXSW_REG(spvid),
12290 	MLXSW_REG(spvm),
12291 	MLXSW_REG(spaft),
12292 	MLXSW_REG(sfgc),
12293 	MLXSW_REG(sftr),
12294 	MLXSW_REG(sfdf),
12295 	MLXSW_REG(sldr),
12296 	MLXSW_REG(slcr),
12297 	MLXSW_REG(slcor),
12298 	MLXSW_REG(spmlr),
12299 	MLXSW_REG(svfa),
12300 	MLXSW_REG(spvtr),
12301 	MLXSW_REG(svpe),
12302 	MLXSW_REG(sfmr),
12303 	MLXSW_REG(spvmlr),
12304 	MLXSW_REG(spvc),
12305 	MLXSW_REG(spevet),
12306 	MLXSW_REG(cwtp),
12307 	MLXSW_REG(cwtpm),
12308 	MLXSW_REG(pgcr),
12309 	MLXSW_REG(ppbt),
12310 	MLXSW_REG(pacl),
12311 	MLXSW_REG(pagt),
12312 	MLXSW_REG(ptar),
12313 	MLXSW_REG(ppbs),
12314 	MLXSW_REG(prcr),
12315 	MLXSW_REG(pefa),
12316 	MLXSW_REG(pemrbt),
12317 	MLXSW_REG(ptce2),
12318 	MLXSW_REG(perpt),
12319 	MLXSW_REG(peabfe),
12320 	MLXSW_REG(perar),
12321 	MLXSW_REG(ptce3),
12322 	MLXSW_REG(percr),
12323 	MLXSW_REG(pererp),
12324 	MLXSW_REG(iedr),
12325 	MLXSW_REG(qpts),
12326 	MLXSW_REG(qpcr),
12327 	MLXSW_REG(qtct),
12328 	MLXSW_REG(qeec),
12329 	MLXSW_REG(qrwe),
12330 	MLXSW_REG(qpdsm),
12331 	MLXSW_REG(qpdp),
12332 	MLXSW_REG(qpdpm),
12333 	MLXSW_REG(qtctm),
12334 	MLXSW_REG(qpsc),
12335 	MLXSW_REG(pmlp),
12336 	MLXSW_REG(pmtu),
12337 	MLXSW_REG(ptys),
12338 	MLXSW_REG(ppad),
12339 	MLXSW_REG(paos),
12340 	MLXSW_REG(pfcc),
12341 	MLXSW_REG(ppcnt),
12342 	MLXSW_REG(plib),
12343 	MLXSW_REG(pptb),
12344 	MLXSW_REG(pbmc),
12345 	MLXSW_REG(pspa),
12346 	MLXSW_REG(pmaos),
12347 	MLXSW_REG(pplr),
12348 	MLXSW_REG(pmtdb),
12349 	MLXSW_REG(pmpe),
12350 	MLXSW_REG(pddr),
12351 	MLXSW_REG(pllp),
12352 	MLXSW_REG(htgt),
12353 	MLXSW_REG(hpkt),
12354 	MLXSW_REG(rgcr),
12355 	MLXSW_REG(ritr),
12356 	MLXSW_REG(rtar),
12357 	MLXSW_REG(ratr),
12358 	MLXSW_REG(rtdp),
12359 	MLXSW_REG(rips),
12360 	MLXSW_REG(ratrad),
12361 	MLXSW_REG(rdpm),
12362 	MLXSW_REG(ricnt),
12363 	MLXSW_REG(rrcr),
12364 	MLXSW_REG(ralta),
12365 	MLXSW_REG(ralst),
12366 	MLXSW_REG(raltb),
12367 	MLXSW_REG(ralue),
12368 	MLXSW_REG(rauht),
12369 	MLXSW_REG(raleu),
12370 	MLXSW_REG(rauhtd),
12371 	MLXSW_REG(rigr2),
12372 	MLXSW_REG(recr2),
12373 	MLXSW_REG(rmft2),
12374 	MLXSW_REG(rxlte),
12375 	MLXSW_REG(rxltm),
12376 	MLXSW_REG(rlcmld),
12377 	MLXSW_REG(rlpmce),
12378 	MLXSW_REG(xltq),
12379 	MLXSW_REG(xmdr),
12380 	MLXSW_REG(xrmt),
12381 	MLXSW_REG(xralta),
12382 	MLXSW_REG(xralst),
12383 	MLXSW_REG(xraltb),
12384 	MLXSW_REG(mfcr),
12385 	MLXSW_REG(mfsc),
12386 	MLXSW_REG(mfsm),
12387 	MLXSW_REG(mfsl),
12388 	MLXSW_REG(fore),
12389 	MLXSW_REG(mtcap),
12390 	MLXSW_REG(mtmp),
12391 	MLXSW_REG(mtwe),
12392 	MLXSW_REG(mtbr),
12393 	MLXSW_REG(mcia),
12394 	MLXSW_REG(mpat),
12395 	MLXSW_REG(mpar),
12396 	MLXSW_REG(mgir),
12397 	MLXSW_REG(mrsr),
12398 	MLXSW_REG(mlcr),
12399 	MLXSW_REG(mtpps),
12400 	MLXSW_REG(mtutc),
12401 	MLXSW_REG(mpsc),
12402 	MLXSW_REG(mcqi),
12403 	MLXSW_REG(mcc),
12404 	MLXSW_REG(mcda),
12405 	MLXSW_REG(mgpc),
12406 	MLXSW_REG(mprs),
12407 	MLXSW_REG(mogcr),
12408 	MLXSW_REG(mpagr),
12409 	MLXSW_REG(momte),
12410 	MLXSW_REG(mtpppc),
12411 	MLXSW_REG(mtpptr),
12412 	MLXSW_REG(mtptpt),
12413 	MLXSW_REG(mfgd),
12414 	MLXSW_REG(mgpir),
12415 	MLXSW_REG(mfde),
12416 	MLXSW_REG(tngcr),
12417 	MLXSW_REG(tnumt),
12418 	MLXSW_REG(tnqcr),
12419 	MLXSW_REG(tnqdr),
12420 	MLXSW_REG(tneem),
12421 	MLXSW_REG(tndem),
12422 	MLXSW_REG(tnpc),
12423 	MLXSW_REG(tigcr),
12424 	MLXSW_REG(tieem),
12425 	MLXSW_REG(tidem),
12426 	MLXSW_REG(sbpr),
12427 	MLXSW_REG(sbcm),
12428 	MLXSW_REG(sbpm),
12429 	MLXSW_REG(sbmm),
12430 	MLXSW_REG(sbsr),
12431 	MLXSW_REG(sbib),
12432 };
12433 
12434 static inline const char *mlxsw_reg_id_str(u16 reg_id)
12435 {
12436 	const struct mlxsw_reg_info *reg_info;
12437 	int i;
12438 
12439 	for (i = 0; i < ARRAY_SIZE(mlxsw_reg_infos); i++) {
12440 		reg_info = mlxsw_reg_infos[i];
12441 		if (reg_info->id == reg_id)
12442 			return reg_info->name;
12443 	}
12444 	return "*UNKNOWN*";
12445 }
12446 
12447 /* PUDE - Port Up / Down Event
12448  * ---------------------------
12449  * Reports the operational state change of a port.
12450  */
12451 #define MLXSW_REG_PUDE_LEN 0x10
12452 
12453 /* reg_pude_swid
12454  * Switch partition ID with which to associate the port.
12455  * Access: Index
12456  */
12457 MLXSW_ITEM32(reg, pude, swid, 0x00, 24, 8);
12458 
12459 /* reg_pude_local_port
12460  * Local port number.
12461  * Access: Index
12462  */
12463 MLXSW_ITEM32(reg, pude, local_port, 0x00, 16, 8);
12464 
12465 /* reg_pude_admin_status
12466  * Port administrative state (the desired state).
12467  * 1 - Up.
12468  * 2 - Down.
12469  * 3 - Up once. This means that in case of link failure, the port won't go
12470  *     into polling mode, but will wait to be re-enabled by software.
12471  * 4 - Disabled by system. Can only be set by hardware.
12472  * Access: RO
12473  */
12474 MLXSW_ITEM32(reg, pude, admin_status, 0x00, 8, 4);
12475 
12476 /* reg_pude_oper_status
12477  * Port operatioanl state.
12478  * 1 - Up.
12479  * 2 - Down.
12480  * 3 - Down by port failure. This means that the device will not let the
12481  *     port up again until explicitly specified by software.
12482  * Access: RO
12483  */
12484 MLXSW_ITEM32(reg, pude, oper_status, 0x00, 0, 4);
12485 
12486 #endif
12487