blob: 6f4a7b00ca6059172b55fbf87c0262e30a63ece6 [file] [log] [blame]
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001/*
2 * drivers/net/ethernet/mellanox/mlxsw/reg.h
3 * Copyright (c) 2015 Mellanox Technologies. All rights reserved.
4 * Copyright (c) 2015 Ido Schimmel <idosch@mellanox.com>
5 * Copyright (c) 2015 Elad Raz <eladr@mellanox.com>
6 * Copyright (c) 2015 Jiri Pirko <jiri@mellanox.com>
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#ifndef _MLXSW_REG_H
38#define _MLXSW_REG_H
39
40#include <linux/string.h>
41#include <linux/bitops.h>
42#include <linux/if_vlan.h>
43
44#include "item.h"
45#include "port.h"
46
47struct mlxsw_reg_info {
48 u16 id;
49 u16 len; /* In u8 */
50};
51
52#define MLXSW_REG(type) (&mlxsw_reg_##type)
53#define MLXSW_REG_LEN(type) MLXSW_REG(type)->len
54#define MLXSW_REG_ZERO(type, payload) memset(payload, 0, MLXSW_REG(type)->len)
55
56/* SGCR - Switch General Configuration Register
57 * --------------------------------------------
58 * This register is used for configuration of the switch capabilities.
59 */
60#define MLXSW_REG_SGCR_ID 0x2000
61#define MLXSW_REG_SGCR_LEN 0x10
62
63static const struct mlxsw_reg_info mlxsw_reg_sgcr = {
64 .id = MLXSW_REG_SGCR_ID,
65 .len = MLXSW_REG_SGCR_LEN,
66};
67
68/* reg_sgcr_llb
69 * Link Local Broadcast (Default=0)
70 * When set, all Link Local packets (224.0.0.X) will be treated as broadcast
71 * packets and ignore the IGMP snooping entries.
72 * Access: RW
73 */
74MLXSW_ITEM32(reg, sgcr, llb, 0x04, 0, 1);
75
76static inline void mlxsw_reg_sgcr_pack(char *payload, bool llb)
77{
78 MLXSW_REG_ZERO(sgcr, payload);
79 mlxsw_reg_sgcr_llb_set(payload, !!llb);
80}
81
82/* SPAD - Switch Physical Address Register
83 * ---------------------------------------
84 * The SPAD register configures the switch physical MAC address.
85 */
86#define MLXSW_REG_SPAD_ID 0x2002
87#define MLXSW_REG_SPAD_LEN 0x10
88
89static const struct mlxsw_reg_info mlxsw_reg_spad = {
90 .id = MLXSW_REG_SPAD_ID,
91 .len = MLXSW_REG_SPAD_LEN,
92};
93
94/* reg_spad_base_mac
95 * Base MAC address for the switch partitions.
96 * Per switch partition MAC address is equal to:
97 * base_mac + swid
98 * Access: RW
99 */
100MLXSW_ITEM_BUF(reg, spad, base_mac, 0x02, 6);
101
Ido Schimmele61011b2015-08-06 16:41:53 +0200102/* SSPR - Switch System Port Record Register
103 * -----------------------------------------
104 * Configures the system port to local port mapping.
105 */
106#define MLXSW_REG_SSPR_ID 0x2008
107#define MLXSW_REG_SSPR_LEN 0x8
108
109static const struct mlxsw_reg_info mlxsw_reg_sspr = {
110 .id = MLXSW_REG_SSPR_ID,
111 .len = MLXSW_REG_SSPR_LEN,
112};
113
114/* reg_sspr_m
115 * Master - if set, then the record describes the master system port.
116 * This is needed in case a local port is mapped into several system ports
117 * (for multipathing). That number will be reported as the source system
118 * port when packets are forwarded to the CPU. Only one master port is allowed
119 * per local port.
120 *
121 * Note: Must be set for Spectrum.
122 * Access: RW
123 */
124MLXSW_ITEM32(reg, sspr, m, 0x00, 31, 1);
125
126/* reg_sspr_local_port
127 * Local port number.
128 *
129 * Access: RW
130 */
131MLXSW_ITEM32(reg, sspr, local_port, 0x00, 16, 8);
132
133/* reg_sspr_sub_port
134 * Virtual port within the physical port.
135 * Should be set to 0 when virtual ports are not enabled on the port.
136 *
137 * Access: RW
138 */
139MLXSW_ITEM32(reg, sspr, sub_port, 0x00, 8, 8);
140
141/* reg_sspr_system_port
142 * Unique identifier within the stacking domain that represents all the ports
143 * that are available in the system (external ports).
144 *
145 * Currently, only single-ASIC configurations are supported, so we default to
146 * 1:1 mapping between system ports and local ports.
147 * Access: Index
148 */
149MLXSW_ITEM32(reg, sspr, system_port, 0x04, 0, 16);
150
151static inline void mlxsw_reg_sspr_pack(char *payload, u8 local_port)
152{
153 MLXSW_REG_ZERO(sspr, payload);
154 mlxsw_reg_sspr_m_set(payload, 1);
155 mlxsw_reg_sspr_local_port_set(payload, local_port);
156 mlxsw_reg_sspr_sub_port_set(payload, 0);
157 mlxsw_reg_sspr_system_port_set(payload, local_port);
158}
159
Jiri Pirko236033b2015-10-16 14:01:28 +0200160/* SFD - Switch Filtering Database
161 * -------------------------------
162 * The following register defines the access to the filtering database.
163 * The register supports querying, adding, removing and modifying the database.
164 * The access is optimized for bulk updates in which case more than one
165 * FDB record is present in the same command.
166 */
167#define MLXSW_REG_SFD_ID 0x200A
168#define MLXSW_REG_SFD_BASE_LEN 0x10 /* base length, without records */
169#define MLXSW_REG_SFD_REC_LEN 0x10 /* record length */
170#define MLXSW_REG_SFD_REC_MAX_COUNT 64
171#define MLXSW_REG_SFD_LEN (MLXSW_REG_SFD_BASE_LEN + \
172 MLXSW_REG_SFD_REC_LEN * MLXSW_REG_SFD_REC_MAX_COUNT)
173
174static const struct mlxsw_reg_info mlxsw_reg_sfd = {
175 .id = MLXSW_REG_SFD_ID,
176 .len = MLXSW_REG_SFD_LEN,
177};
178
179/* reg_sfd_swid
180 * Switch partition ID for queries. Reserved on Write.
181 * Access: Index
182 */
183MLXSW_ITEM32(reg, sfd, swid, 0x00, 24, 8);
184
185enum mlxsw_reg_sfd_op {
186 /* Dump entire FDB a (process according to record_locator) */
187 MLXSW_REG_SFD_OP_QUERY_DUMP = 0,
188 /* Query records by {MAC, VID/FID} value */
189 MLXSW_REG_SFD_OP_QUERY_QUERY = 1,
190 /* Query and clear activity. Query records by {MAC, VID/FID} value */
191 MLXSW_REG_SFD_OP_QUERY_QUERY_AND_CLEAR_ACTIVITY = 2,
192 /* Test. Response indicates if each of the records could be
193 * added to the FDB.
194 */
195 MLXSW_REG_SFD_OP_WRITE_TEST = 0,
196 /* Add/modify. Aged-out records cannot be added. This command removes
197 * the learning notification of the {MAC, VID/FID}. Response includes
198 * the entries that were added to the FDB.
199 */
200 MLXSW_REG_SFD_OP_WRITE_EDIT = 1,
201 /* Remove record by {MAC, VID/FID}. This command also removes
202 * the learning notification and aged-out notifications
203 * of the {MAC, VID/FID}. The response provides current (pre-removal)
204 * entries as non-aged-out.
205 */
206 MLXSW_REG_SFD_OP_WRITE_REMOVE = 2,
207 /* Remove learned notification by {MAC, VID/FID}. The response provides
208 * the removed learning notification.
209 */
210 MLXSW_REG_SFD_OP_WRITE_REMOVE_NOTIFICATION = 2,
211};
212
213/* reg_sfd_op
214 * Operation.
215 * Access: OP
216 */
217MLXSW_ITEM32(reg, sfd, op, 0x04, 30, 2);
218
219/* reg_sfd_record_locator
220 * Used for querying the FDB. Use record_locator=0 to initiate the
221 * query. When a record is returned, a new record_locator is
222 * returned to be used in the subsequent query.
223 * Reserved for database update.
224 * Access: Index
225 */
226MLXSW_ITEM32(reg, sfd, record_locator, 0x04, 0, 30);
227
228/* reg_sfd_num_rec
229 * Request: Number of records to read/add/modify/remove
230 * Response: Number of records read/added/replaced/removed
231 * See above description for more details.
232 * Ranges 0..64
233 * Access: RW
234 */
235MLXSW_ITEM32(reg, sfd, num_rec, 0x08, 0, 8);
236
237static inline void mlxsw_reg_sfd_pack(char *payload, enum mlxsw_reg_sfd_op op,
238 u32 record_locator)
239{
240 MLXSW_REG_ZERO(sfd, payload);
241 mlxsw_reg_sfd_op_set(payload, op);
242 mlxsw_reg_sfd_record_locator_set(payload, record_locator);
243}
244
245/* reg_sfd_rec_swid
246 * Switch partition ID.
247 * Access: Index
248 */
249MLXSW_ITEM32_INDEXED(reg, sfd, rec_swid, MLXSW_REG_SFD_BASE_LEN, 24, 8,
250 MLXSW_REG_SFD_REC_LEN, 0x00, false);
251
252enum mlxsw_reg_sfd_rec_type {
253 MLXSW_REG_SFD_REC_TYPE_UNICAST = 0x0,
254};
255
256/* reg_sfd_rec_type
257 * FDB record type.
258 * Access: RW
259 */
260MLXSW_ITEM32_INDEXED(reg, sfd, rec_type, MLXSW_REG_SFD_BASE_LEN, 20, 4,
261 MLXSW_REG_SFD_REC_LEN, 0x00, false);
262
263enum mlxsw_reg_sfd_rec_policy {
264 /* Replacement disabled, aging disabled. */
265 MLXSW_REG_SFD_REC_POLICY_STATIC_ENTRY = 0,
266 /* (mlag remote): Replacement enabled, aging disabled,
267 * learning notification enabled on this port.
268 */
269 MLXSW_REG_SFD_REC_POLICY_DYNAMIC_ENTRY_MLAG = 1,
270 /* (ingress device): Replacement enabled, aging enabled. */
271 MLXSW_REG_SFD_REC_POLICY_DYNAMIC_ENTRY_INGRESS = 3,
272};
273
274/* reg_sfd_rec_policy
275 * Policy.
276 * Access: RW
277 */
278MLXSW_ITEM32_INDEXED(reg, sfd, rec_policy, MLXSW_REG_SFD_BASE_LEN, 18, 2,
279 MLXSW_REG_SFD_REC_LEN, 0x00, false);
280
281/* reg_sfd_rec_a
282 * Activity. Set for new static entries. Set for static entries if a frame SMAC
283 * lookup hits on the entry.
284 * To clear the a bit, use "query and clear activity" op.
285 * Access: RO
286 */
287MLXSW_ITEM32_INDEXED(reg, sfd, rec_a, MLXSW_REG_SFD_BASE_LEN, 16, 1,
288 MLXSW_REG_SFD_REC_LEN, 0x00, false);
289
290/* reg_sfd_rec_mac
291 * MAC address.
292 * Access: Index
293 */
294MLXSW_ITEM_BUF_INDEXED(reg, sfd, rec_mac, MLXSW_REG_SFD_BASE_LEN, 6,
295 MLXSW_REG_SFD_REC_LEN, 0x02);
296
297enum mlxsw_reg_sfd_rec_action {
298 /* forward */
299 MLXSW_REG_SFD_REC_ACTION_NOP = 0,
300 /* forward and trap, trap_id is FDB_TRAP */
301 MLXSW_REG_SFD_REC_ACTION_MIRROR_TO_CPU = 1,
302 /* trap and do not forward, trap_id is FDB_TRAP */
303 MLXSW_REG_SFD_REC_ACTION_TRAP = 3,
304 MLXSW_REG_SFD_REC_ACTION_DISCARD_ERROR = 15,
305};
306
307/* reg_sfd_rec_action
308 * Action to apply on the packet.
309 * Note: Dynamic entries can only be configured with NOP action.
310 * Access: RW
311 */
312MLXSW_ITEM32_INDEXED(reg, sfd, rec_action, MLXSW_REG_SFD_BASE_LEN, 28, 4,
313 MLXSW_REG_SFD_REC_LEN, 0x0C, false);
314
315/* reg_sfd_uc_sub_port
316 * LAG sub port.
317 * Must be 0 if multichannel VEPA is not enabled.
318 * Access: RW
319 */
320MLXSW_ITEM32_INDEXED(reg, sfd, uc_sub_port, MLXSW_REG_SFD_BASE_LEN, 16, 8,
321 MLXSW_REG_SFD_REC_LEN, 0x08, false);
322
323/* reg_sfd_uc_fid_vid
324 * Filtering ID or VLAN ID
325 * For SwitchX and SwitchX-2:
326 * - Dynamic entries (policy 2,3) use FID
327 * - Static entries (policy 0) use VID
328 * - When independent learning is configured, VID=FID
329 * For Spectrum: use FID for both Dynamic and Static entries.
330 * VID should not be used.
331 * Access: Index
332 */
333MLXSW_ITEM32_INDEXED(reg, sfd, uc_fid_vid, MLXSW_REG_SFD_BASE_LEN, 0, 16,
334 MLXSW_REG_SFD_REC_LEN, 0x08, false);
335
336/* reg_sfd_uc_system_port
337 * Unique port identifier for the final destination of the packet.
338 * Access: RW
339 */
340MLXSW_ITEM32_INDEXED(reg, sfd, uc_system_port, MLXSW_REG_SFD_BASE_LEN, 0, 16,
341 MLXSW_REG_SFD_REC_LEN, 0x0C, false);
342
343static inline void mlxsw_reg_sfd_uc_pack(char *payload, int rec_index,
344 enum mlxsw_reg_sfd_rec_policy policy,
345 const char *mac, u16 vid,
346 enum mlxsw_reg_sfd_rec_action action,
347 u8 local_port)
348{
349 u8 num_rec = mlxsw_reg_sfd_num_rec_get(payload);
350
351 if (rec_index >= num_rec)
352 mlxsw_reg_sfd_num_rec_set(payload, rec_index + 1);
353 mlxsw_reg_sfd_rec_swid_set(payload, rec_index, 0);
354 mlxsw_reg_sfd_rec_type_set(payload, rec_index,
355 MLXSW_REG_SFD_REC_TYPE_UNICAST);
356 mlxsw_reg_sfd_rec_policy_set(payload, rec_index, policy);
357 mlxsw_reg_sfd_rec_mac_memcpy_to(payload, rec_index, mac);
358 mlxsw_reg_sfd_uc_sub_port_set(payload, rec_index, 0);
359 mlxsw_reg_sfd_uc_fid_vid_set(payload, rec_index, vid);
360 mlxsw_reg_sfd_rec_action_set(payload, rec_index, action);
361 mlxsw_reg_sfd_uc_system_port_set(payload, rec_index, local_port);
362}
363
364static inline void
365mlxsw_reg_sfd_uc_unpack(char *payload, int rec_index,
366 char *mac, u16 *p_vid,
367 u8 *p_local_port)
368{
369 mlxsw_reg_sfd_rec_mac_memcpy_from(payload, rec_index, mac);
370 *p_vid = mlxsw_reg_sfd_uc_fid_vid_get(payload, rec_index);
371 *p_local_port = mlxsw_reg_sfd_uc_system_port_get(payload, rec_index);
372}
373
Jiri Pirkof5d88f52015-10-16 14:01:29 +0200374/* SFN - Switch FDB Notification Register
375 * -------------------------------------------
376 * The switch provides notifications on newly learned FDB entries and
377 * aged out entries. The notifications can be polled by software.
378 */
379#define MLXSW_REG_SFN_ID 0x200B
380#define MLXSW_REG_SFN_BASE_LEN 0x10 /* base length, without records */
381#define MLXSW_REG_SFN_REC_LEN 0x10 /* record length */
382#define MLXSW_REG_SFN_REC_MAX_COUNT 64
383#define MLXSW_REG_SFN_LEN (MLXSW_REG_SFN_BASE_LEN + \
384 MLXSW_REG_SFN_REC_LEN * MLXSW_REG_SFN_REC_MAX_COUNT)
385
386static const struct mlxsw_reg_info mlxsw_reg_sfn = {
387 .id = MLXSW_REG_SFN_ID,
388 .len = MLXSW_REG_SFN_LEN,
389};
390
391/* reg_sfn_swid
392 * Switch partition ID.
393 * Access: Index
394 */
395MLXSW_ITEM32(reg, sfn, swid, 0x00, 24, 8);
396
397/* reg_sfn_num_rec
398 * Request: Number of learned notifications and aged-out notification
399 * records requested.
400 * Response: Number of notification records returned (must be smaller
401 * than or equal to the value requested)
402 * Ranges 0..64
403 * Access: OP
404 */
405MLXSW_ITEM32(reg, sfn, num_rec, 0x04, 0, 8);
406
407static inline void mlxsw_reg_sfn_pack(char *payload)
408{
409 MLXSW_REG_ZERO(sfn, payload);
410 mlxsw_reg_sfn_swid_set(payload, 0);
411 mlxsw_reg_sfn_num_rec_set(payload, MLXSW_REG_SFN_REC_MAX_COUNT);
412}
413
414/* reg_sfn_rec_swid
415 * Switch partition ID.
416 * Access: RO
417 */
418MLXSW_ITEM32_INDEXED(reg, sfn, rec_swid, MLXSW_REG_SFN_BASE_LEN, 24, 8,
419 MLXSW_REG_SFN_REC_LEN, 0x00, false);
420
421enum mlxsw_reg_sfn_rec_type {
422 /* MAC addresses learned on a regular port. */
423 MLXSW_REG_SFN_REC_TYPE_LEARNED_MAC = 0x5,
424 /* Aged-out MAC address on a regular port */
425 MLXSW_REG_SFN_REC_TYPE_AGED_OUT_MAC = 0x7,
426};
427
428/* reg_sfn_rec_type
429 * Notification record type.
430 * Access: RO
431 */
432MLXSW_ITEM32_INDEXED(reg, sfn, rec_type, MLXSW_REG_SFN_BASE_LEN, 20, 4,
433 MLXSW_REG_SFN_REC_LEN, 0x00, false);
434
435/* reg_sfn_rec_mac
436 * MAC address.
437 * Access: RO
438 */
439MLXSW_ITEM_BUF_INDEXED(reg, sfn, rec_mac, MLXSW_REG_SFN_BASE_LEN, 6,
440 MLXSW_REG_SFN_REC_LEN, 0x02);
441
442/* reg_sfd_mac_sub_port
443 * VEPA channel on the local port.
444 * 0 if multichannel VEPA is not enabled.
445 * Access: RO
446 */
447MLXSW_ITEM32_INDEXED(reg, sfn, mac_sub_port, MLXSW_REG_SFN_BASE_LEN, 16, 8,
448 MLXSW_REG_SFN_REC_LEN, 0x08, false);
449
450/* reg_sfd_mac_fid
451 * Filtering identifier.
452 * Access: RO
453 */
454MLXSW_ITEM32_INDEXED(reg, sfn, mac_fid, MLXSW_REG_SFN_BASE_LEN, 0, 16,
455 MLXSW_REG_SFN_REC_LEN, 0x08, false);
456
457/* reg_sfd_mac_system_port
458 * Unique port identifier for the final destination of the packet.
459 * Access: RO
460 */
461MLXSW_ITEM32_INDEXED(reg, sfn, mac_system_port, MLXSW_REG_SFN_BASE_LEN, 0, 16,
462 MLXSW_REG_SFN_REC_LEN, 0x0C, false);
463
464static inline void mlxsw_reg_sfn_mac_unpack(char *payload, int rec_index,
465 char *mac, u16 *p_vid,
466 u8 *p_local_port)
467{
468 mlxsw_reg_sfn_rec_mac_memcpy_from(payload, rec_index, mac);
469 *p_vid = mlxsw_reg_sfn_mac_fid_get(payload, rec_index);
470 *p_local_port = mlxsw_reg_sfn_mac_system_port_get(payload, rec_index);
471}
472
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200473/* SPMS - Switch Port MSTP/RSTP State Register
474 * -------------------------------------------
475 * Configures the spanning tree state of a physical port.
476 */
Jiri Pirko3f0effd2015-10-15 17:43:23 +0200477#define MLXSW_REG_SPMS_ID 0x200D
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200478#define MLXSW_REG_SPMS_LEN 0x404
479
480static const struct mlxsw_reg_info mlxsw_reg_spms = {
481 .id = MLXSW_REG_SPMS_ID,
482 .len = MLXSW_REG_SPMS_LEN,
483};
484
485/* reg_spms_local_port
486 * Local port number.
487 * Access: Index
488 */
489MLXSW_ITEM32(reg, spms, local_port, 0x00, 16, 8);
490
491enum mlxsw_reg_spms_state {
492 MLXSW_REG_SPMS_STATE_NO_CHANGE,
493 MLXSW_REG_SPMS_STATE_DISCARDING,
494 MLXSW_REG_SPMS_STATE_LEARNING,
495 MLXSW_REG_SPMS_STATE_FORWARDING,
496};
497
498/* reg_spms_state
499 * Spanning tree state of each VLAN ID (VID) of the local port.
500 * 0 - Do not change spanning tree state (used only when writing).
501 * 1 - Discarding. No learning or forwarding to/from this port (default).
502 * 2 - Learning. Port is learning, but not forwarding.
503 * 3 - Forwarding. Port is learning and forwarding.
504 * Access: RW
505 */
506MLXSW_ITEM_BIT_ARRAY(reg, spms, state, 0x04, 0x400, 2);
507
Jiri Pirkoebb79632015-10-15 17:43:26 +0200508static inline void mlxsw_reg_spms_pack(char *payload, u8 local_port)
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200509{
510 MLXSW_REG_ZERO(spms, payload);
511 mlxsw_reg_spms_local_port_set(payload, local_port);
Jiri Pirkoebb79632015-10-15 17:43:26 +0200512}
513
514static inline void mlxsw_reg_spms_vid_pack(char *payload, u16 vid,
515 enum mlxsw_reg_spms_state state)
516{
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200517 mlxsw_reg_spms_state_set(payload, vid, state);
518}
519
Elad Razb2e345f2015-10-16 14:01:30 +0200520/* SPVID - Switch Port VID
521 * -----------------------
522 * The switch port VID configures the default VID for a port.
523 */
524#define MLXSW_REG_SPVID_ID 0x200E
525#define MLXSW_REG_SPVID_LEN 0x08
526
527static const struct mlxsw_reg_info mlxsw_reg_spvid = {
528 .id = MLXSW_REG_SPVID_ID,
529 .len = MLXSW_REG_SPVID_LEN,
530};
531
532/* reg_spvid_local_port
533 * Local port number.
534 * Access: Index
535 */
536MLXSW_ITEM32(reg, spvid, local_port, 0x00, 16, 8);
537
538/* reg_spvid_sub_port
539 * Virtual port within the physical port.
540 * Should be set to 0 when virtual ports are not enabled on the port.
541 * Access: Index
542 */
543MLXSW_ITEM32(reg, spvid, sub_port, 0x00, 8, 8);
544
545/* reg_spvid_pvid
546 * Port default VID
547 * Access: RW
548 */
549MLXSW_ITEM32(reg, spvid, pvid, 0x04, 0, 12);
550
551static inline void mlxsw_reg_spvid_pack(char *payload, u8 local_port, u16 pvid)
552{
553 MLXSW_REG_ZERO(spvid, payload);
554 mlxsw_reg_spvid_local_port_set(payload, local_port);
555 mlxsw_reg_spvid_pvid_set(payload, pvid);
556}
557
558/* SPVM - Switch Port VLAN Membership
559 * ----------------------------------
560 * The Switch Port VLAN Membership register configures the VLAN membership
561 * of a port in a VLAN denoted by VID. VLAN membership is managed per
562 * virtual port. The register can be used to add and remove VID(s) from a port.
563 */
564#define MLXSW_REG_SPVM_ID 0x200F
565#define MLXSW_REG_SPVM_BASE_LEN 0x04 /* base length, without records */
566#define MLXSW_REG_SPVM_REC_LEN 0x04 /* record length */
567#define MLXSW_REG_SPVM_REC_MAX_COUNT 256
568#define MLXSW_REG_SPVM_LEN (MLXSW_REG_SPVM_BASE_LEN + \
569 MLXSW_REG_SPVM_REC_LEN * MLXSW_REG_SPVM_REC_MAX_COUNT)
570
571static const struct mlxsw_reg_info mlxsw_reg_spvm = {
572 .id = MLXSW_REG_SPVM_ID,
573 .len = MLXSW_REG_SPVM_LEN,
574};
575
576/* reg_spvm_pt
577 * Priority tagged. If this bit is set, packets forwarded to the port with
578 * untagged VLAN membership (u bit is set) will be tagged with priority tag
579 * (VID=0)
580 * Access: RW
581 */
582MLXSW_ITEM32(reg, spvm, pt, 0x00, 31, 1);
583
584/* reg_spvm_pte
585 * Priority Tagged Update Enable. On Write operations, if this bit is cleared,
586 * the pt bit will NOT be updated. To update the pt bit, pte must be set.
587 * Access: WO
588 */
589MLXSW_ITEM32(reg, spvm, pte, 0x00, 30, 1);
590
591/* reg_spvm_local_port
592 * Local port number.
593 * Access: Index
594 */
595MLXSW_ITEM32(reg, spvm, local_port, 0x00, 16, 8);
596
597/* reg_spvm_sub_port
598 * Virtual port within the physical port.
599 * Should be set to 0 when virtual ports are not enabled on the port.
600 * Access: Index
601 */
602MLXSW_ITEM32(reg, spvm, sub_port, 0x00, 8, 8);
603
604/* reg_spvm_num_rec
605 * Number of records to update. Each record contains: i, e, u, vid.
606 * Access: OP
607 */
608MLXSW_ITEM32(reg, spvm, num_rec, 0x00, 0, 8);
609
610/* reg_spvm_rec_i
611 * Ingress membership in VLAN ID.
612 * Access: Index
613 */
614MLXSW_ITEM32_INDEXED(reg, spvm, rec_i,
615 MLXSW_REG_SPVM_BASE_LEN, 14, 1,
616 MLXSW_REG_SPVM_REC_LEN, 0, false);
617
618/* reg_spvm_rec_e
619 * Egress membership in VLAN ID.
620 * Access: Index
621 */
622MLXSW_ITEM32_INDEXED(reg, spvm, rec_e,
623 MLXSW_REG_SPVM_BASE_LEN, 13, 1,
624 MLXSW_REG_SPVM_REC_LEN, 0, false);
625
626/* reg_spvm_rec_u
627 * Untagged - port is an untagged member - egress transmission uses untagged
628 * frames on VID<n>
629 * Access: Index
630 */
631MLXSW_ITEM32_INDEXED(reg, spvm, rec_u,
632 MLXSW_REG_SPVM_BASE_LEN, 12, 1,
633 MLXSW_REG_SPVM_REC_LEN, 0, false);
634
635/* reg_spvm_rec_vid
636 * Egress membership in VLAN ID.
637 * Access: Index
638 */
639MLXSW_ITEM32_INDEXED(reg, spvm, rec_vid,
640 MLXSW_REG_SPVM_BASE_LEN, 0, 12,
641 MLXSW_REG_SPVM_REC_LEN, 0, false);
642
643static inline void mlxsw_reg_spvm_pack(char *payload, u8 local_port,
644 u16 vid_begin, u16 vid_end,
645 bool is_member, bool untagged)
646{
647 int size = vid_end - vid_begin + 1;
648 int i;
649
650 MLXSW_REG_ZERO(spvm, payload);
651 mlxsw_reg_spvm_local_port_set(payload, local_port);
652 mlxsw_reg_spvm_num_rec_set(payload, size);
653
654 for (i = 0; i < size; i++) {
655 mlxsw_reg_spvm_rec_i_set(payload, i, is_member);
656 mlxsw_reg_spvm_rec_e_set(payload, i, is_member);
657 mlxsw_reg_spvm_rec_u_set(payload, i, untagged);
658 mlxsw_reg_spvm_rec_vid_set(payload, i, vid_begin + i);
659 }
660}
661
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200662/* SFGC - Switch Flooding Group Configuration
663 * ------------------------------------------
664 * The following register controls the association of flooding tables and MIDs
665 * to packet types used for flooding.
666 */
Jiri Pirko36b78e82015-10-15 17:43:24 +0200667#define MLXSW_REG_SFGC_ID 0x2011
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200668#define MLXSW_REG_SFGC_LEN 0x10
669
670static const struct mlxsw_reg_info mlxsw_reg_sfgc = {
671 .id = MLXSW_REG_SFGC_ID,
672 .len = MLXSW_REG_SFGC_LEN,
673};
674
675enum mlxsw_reg_sfgc_type {
Ido Schimmelfa6ad052015-10-15 17:43:25 +0200676 MLXSW_REG_SFGC_TYPE_BROADCAST,
677 MLXSW_REG_SFGC_TYPE_UNKNOWN_UNICAST,
678 MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_IPV4,
679 MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_IPV6,
680 MLXSW_REG_SFGC_TYPE_RESERVED,
681 MLXSW_REG_SFGC_TYPE_UNREGISTERED_MULTICAST_NON_IP,
682 MLXSW_REG_SFGC_TYPE_IPV4_LINK_LOCAL,
683 MLXSW_REG_SFGC_TYPE_IPV6_ALL_HOST,
684 MLXSW_REG_SFGC_TYPE_MAX,
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200685};
686
687/* reg_sfgc_type
688 * The traffic type to reach the flooding table.
689 * Access: Index
690 */
691MLXSW_ITEM32(reg, sfgc, type, 0x00, 0, 4);
692
693enum mlxsw_reg_sfgc_bridge_type {
694 MLXSW_REG_SFGC_BRIDGE_TYPE_1Q_FID = 0,
695 MLXSW_REG_SFGC_BRIDGE_TYPE_VFID = 1,
696};
697
698/* reg_sfgc_bridge_type
699 * Access: Index
700 *
701 * Note: SwitchX-2 only supports 802.1Q mode.
702 */
703MLXSW_ITEM32(reg, sfgc, bridge_type, 0x04, 24, 3);
704
705enum mlxsw_flood_table_type {
706 MLXSW_REG_SFGC_TABLE_TYPE_VID = 1,
707 MLXSW_REG_SFGC_TABLE_TYPE_SINGLE = 2,
708 MLXSW_REG_SFGC_TABLE_TYPE_ANY = 0,
709 MLXSW_REG_SFGC_TABLE_TYPE_FID_OFFEST = 3,
710 MLXSW_REG_SFGC_TABLE_TYPE_FID = 4,
711};
712
713/* reg_sfgc_table_type
714 * See mlxsw_flood_table_type
715 * Access: RW
716 *
717 * Note: FID offset and FID types are not supported in SwitchX-2.
718 */
719MLXSW_ITEM32(reg, sfgc, table_type, 0x04, 16, 3);
720
721/* reg_sfgc_flood_table
722 * Flooding table index to associate with the specific type on the specific
723 * switch partition.
724 * Access: RW
725 */
726MLXSW_ITEM32(reg, sfgc, flood_table, 0x04, 0, 6);
727
728/* reg_sfgc_mid
729 * The multicast ID for the swid. Not supported for Spectrum
730 * Access: RW
731 */
732MLXSW_ITEM32(reg, sfgc, mid, 0x08, 0, 16);
733
734/* reg_sfgc_counter_set_type
735 * Counter Set Type for flow counters.
736 * Access: RW
737 */
738MLXSW_ITEM32(reg, sfgc, counter_set_type, 0x0C, 24, 8);
739
740/* reg_sfgc_counter_index
741 * Counter Index for flow counters.
742 * Access: RW
743 */
744MLXSW_ITEM32(reg, sfgc, counter_index, 0x0C, 0, 24);
745
746static inline void
747mlxsw_reg_sfgc_pack(char *payload, enum mlxsw_reg_sfgc_type type,
748 enum mlxsw_reg_sfgc_bridge_type bridge_type,
749 enum mlxsw_flood_table_type table_type,
750 unsigned int flood_table)
751{
752 MLXSW_REG_ZERO(sfgc, payload);
753 mlxsw_reg_sfgc_type_set(payload, type);
754 mlxsw_reg_sfgc_bridge_type_set(payload, bridge_type);
755 mlxsw_reg_sfgc_table_type_set(payload, table_type);
756 mlxsw_reg_sfgc_flood_table_set(payload, flood_table);
757 mlxsw_reg_sfgc_mid_set(payload, MLXSW_PORT_MID);
758}
759
760/* SFTR - Switch Flooding Table Register
761 * -------------------------------------
762 * The switch flooding table is used for flooding packet replication. The table
763 * defines a bit mask of ports for packet replication.
764 */
765#define MLXSW_REG_SFTR_ID 0x2012
766#define MLXSW_REG_SFTR_LEN 0x420
767
768static const struct mlxsw_reg_info mlxsw_reg_sftr = {
769 .id = MLXSW_REG_SFTR_ID,
770 .len = MLXSW_REG_SFTR_LEN,
771};
772
773/* reg_sftr_swid
774 * Switch partition ID with which to associate the port.
775 * Access: Index
776 */
777MLXSW_ITEM32(reg, sftr, swid, 0x00, 24, 8);
778
779/* reg_sftr_flood_table
780 * Flooding table index to associate with the specific type on the specific
781 * switch partition.
782 * Access: Index
783 */
784MLXSW_ITEM32(reg, sftr, flood_table, 0x00, 16, 6);
785
786/* reg_sftr_index
787 * Index. Used as an index into the Flooding Table in case the table is
788 * configured to use VID / FID or FID Offset.
789 * Access: Index
790 */
791MLXSW_ITEM32(reg, sftr, index, 0x00, 0, 16);
792
793/* reg_sftr_table_type
794 * See mlxsw_flood_table_type
795 * Access: RW
796 */
797MLXSW_ITEM32(reg, sftr, table_type, 0x04, 16, 3);
798
799/* reg_sftr_range
800 * Range of entries to update
801 * Access: Index
802 */
803MLXSW_ITEM32(reg, sftr, range, 0x04, 0, 16);
804
805/* reg_sftr_port
806 * Local port membership (1 bit per port).
807 * Access: RW
808 */
809MLXSW_ITEM_BIT_ARRAY(reg, sftr, port, 0x20, 0x20, 1);
810
811/* reg_sftr_cpu_port_mask
812 * CPU port mask (1 bit per port).
813 * Access: W
814 */
815MLXSW_ITEM_BIT_ARRAY(reg, sftr, port_mask, 0x220, 0x20, 1);
816
817static inline void mlxsw_reg_sftr_pack(char *payload,
818 unsigned int flood_table,
819 unsigned int index,
820 enum mlxsw_flood_table_type table_type,
Ido Schimmelbc2055f2015-10-16 14:01:23 +0200821 unsigned int range, u8 port, bool set)
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200822{
823 MLXSW_REG_ZERO(sftr, payload);
824 mlxsw_reg_sftr_swid_set(payload, 0);
825 mlxsw_reg_sftr_flood_table_set(payload, flood_table);
826 mlxsw_reg_sftr_index_set(payload, index);
827 mlxsw_reg_sftr_table_type_set(payload, table_type);
828 mlxsw_reg_sftr_range_set(payload, range);
Ido Schimmelbc2055f2015-10-16 14:01:23 +0200829 mlxsw_reg_sftr_port_set(payload, port, set);
830 mlxsw_reg_sftr_port_mask_set(payload, port, 1);
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200831}
832
833/* SPMLR - Switch Port MAC Learning Register
834 * -----------------------------------------
835 * Controls the Switch MAC learning policy per port.
836 */
837#define MLXSW_REG_SPMLR_ID 0x2018
838#define MLXSW_REG_SPMLR_LEN 0x8
839
840static const struct mlxsw_reg_info mlxsw_reg_spmlr = {
841 .id = MLXSW_REG_SPMLR_ID,
842 .len = MLXSW_REG_SPMLR_LEN,
843};
844
845/* reg_spmlr_local_port
846 * Local port number.
847 * Access: Index
848 */
849MLXSW_ITEM32(reg, spmlr, local_port, 0x00, 16, 8);
850
851/* reg_spmlr_sub_port
852 * Virtual port within the physical port.
853 * Should be set to 0 when virtual ports are not enabled on the port.
854 * Access: Index
855 */
856MLXSW_ITEM32(reg, spmlr, sub_port, 0x00, 8, 8);
857
858enum mlxsw_reg_spmlr_learn_mode {
859 MLXSW_REG_SPMLR_LEARN_MODE_DISABLE = 0,
860 MLXSW_REG_SPMLR_LEARN_MODE_ENABLE = 2,
861 MLXSW_REG_SPMLR_LEARN_MODE_SEC = 3,
862};
863
864/* reg_spmlr_learn_mode
865 * Learning mode on the port.
866 * 0 - Learning disabled.
867 * 2 - Learning enabled.
868 * 3 - Security mode.
869 *
870 * In security mode the switch does not learn MACs on the port, but uses the
871 * SMAC to see if it exists on another ingress port. If so, the packet is
872 * classified as a bad packet and is discarded unless the software registers
873 * to receive port security error packets usign HPKT.
874 */
875MLXSW_ITEM32(reg, spmlr, learn_mode, 0x04, 30, 2);
876
877static inline void mlxsw_reg_spmlr_pack(char *payload, u8 local_port,
878 enum mlxsw_reg_spmlr_learn_mode mode)
879{
880 MLXSW_REG_ZERO(spmlr, payload);
881 mlxsw_reg_spmlr_local_port_set(payload, local_port);
882 mlxsw_reg_spmlr_sub_port_set(payload, 0);
883 mlxsw_reg_spmlr_learn_mode_set(payload, mode);
884}
885
Ido Schimmelf1fb6932015-10-16 14:01:32 +0200886/* SFMR - Switch FID Management Register
887 * -------------------------------------
888 * Creates and configures FIDs.
889 */
890#define MLXSW_REG_SFMR_ID 0x201F
891#define MLXSW_REG_SFMR_LEN 0x18
892
893static const struct mlxsw_reg_info mlxsw_reg_sfmr = {
894 .id = MLXSW_REG_SFMR_ID,
895 .len = MLXSW_REG_SFMR_LEN,
896};
897
898enum mlxsw_reg_sfmr_op {
899 MLXSW_REG_SFMR_OP_CREATE_FID,
900 MLXSW_REG_SFMR_OP_DESTROY_FID,
901};
902
903/* reg_sfmr_op
904 * Operation.
905 * 0 - Create or edit FID.
906 * 1 - Destroy FID.
907 * Access: WO
908 */
909MLXSW_ITEM32(reg, sfmr, op, 0x00, 24, 4);
910
911/* reg_sfmr_fid
912 * Filtering ID.
913 * Access: Index
914 */
915MLXSW_ITEM32(reg, sfmr, fid, 0x00, 0, 16);
916
917/* reg_sfmr_fid_offset
918 * FID offset.
919 * Used to point into the flooding table selected by SFGC register if
920 * the table is of type FID-Offset. Otherwise, this field is reserved.
921 * Access: RW
922 */
923MLXSW_ITEM32(reg, sfmr, fid_offset, 0x08, 0, 16);
924
925/* reg_sfmr_vtfp
926 * Valid Tunnel Flood Pointer.
927 * If not set, then nve_tunnel_flood_ptr is reserved and considered NULL.
928 * Access: RW
929 *
930 * Note: Reserved for 802.1Q FIDs.
931 */
932MLXSW_ITEM32(reg, sfmr, vtfp, 0x0C, 31, 1);
933
934/* reg_sfmr_nve_tunnel_flood_ptr
935 * Underlay Flooding and BC Pointer.
936 * Used as a pointer to the first entry of the group based link lists of
937 * flooding or BC entries (for NVE tunnels).
938 * Access: RW
939 */
940MLXSW_ITEM32(reg, sfmr, nve_tunnel_flood_ptr, 0x0C, 0, 24);
941
942/* reg_sfmr_vv
943 * VNI Valid.
944 * If not set, then vni is reserved.
945 * Access: RW
946 *
947 * Note: Reserved for 802.1Q FIDs.
948 */
949MLXSW_ITEM32(reg, sfmr, vv, 0x10, 31, 1);
950
951/* reg_sfmr_vni
952 * Virtual Network Identifier.
953 * Access: RW
954 *
955 * Note: A given VNI can only be assigned to one FID.
956 */
957MLXSW_ITEM32(reg, sfmr, vni, 0x10, 0, 24);
958
959static inline void mlxsw_reg_sfmr_pack(char *payload,
960 enum mlxsw_reg_sfmr_op op, u16 fid,
961 u16 fid_offset)
962{
963 MLXSW_REG_ZERO(sfmr, payload);
964 mlxsw_reg_sfmr_op_set(payload, op);
965 mlxsw_reg_sfmr_fid_set(payload, fid);
966 mlxsw_reg_sfmr_fid_offset_set(payload, fid_offset);
967 mlxsw_reg_sfmr_vtfp_set(payload, false);
968 mlxsw_reg_sfmr_vv_set(payload, false);
969}
970
Ido Schimmel4ec14b72015-07-29 23:33:48 +0200971/* PMLP - Ports Module to Local Port Register
972 * ------------------------------------------
973 * Configures the assignment of modules to local ports.
974 */
975#define MLXSW_REG_PMLP_ID 0x5002
976#define MLXSW_REG_PMLP_LEN 0x40
977
978static const struct mlxsw_reg_info mlxsw_reg_pmlp = {
979 .id = MLXSW_REG_PMLP_ID,
980 .len = MLXSW_REG_PMLP_LEN,
981};
982
983/* reg_pmlp_rxtx
984 * 0 - Tx value is used for both Tx and Rx.
985 * 1 - Rx value is taken from a separte field.
986 * Access: RW
987 */
988MLXSW_ITEM32(reg, pmlp, rxtx, 0x00, 31, 1);
989
990/* reg_pmlp_local_port
991 * Local port number.
992 * Access: Index
993 */
994MLXSW_ITEM32(reg, pmlp, local_port, 0x00, 16, 8);
995
996/* reg_pmlp_width
997 * 0 - Unmap local port.
998 * 1 - Lane 0 is used.
999 * 2 - Lanes 0 and 1 are used.
1000 * 4 - Lanes 0, 1, 2 and 3 are used.
1001 * Access: RW
1002 */
1003MLXSW_ITEM32(reg, pmlp, width, 0x00, 0, 8);
1004
1005/* reg_pmlp_module
1006 * Module number.
1007 * Access: RW
1008 */
1009MLXSW_ITEM32_INDEXED(reg, pmlp, module, 0x04, 0, 8, 0x04, 0, false);
1010
1011/* reg_pmlp_tx_lane
1012 * Tx Lane. When rxtx field is cleared, this field is used for Rx as well.
1013 * Access: RW
1014 */
1015MLXSW_ITEM32_INDEXED(reg, pmlp, tx_lane, 0x04, 16, 2, 0x04, 16, false);
1016
1017/* reg_pmlp_rx_lane
1018 * Rx Lane. When rxtx field is cleared, this field is ignored and Rx lane is
1019 * equal to Tx lane.
1020 * Access: RW
1021 */
1022MLXSW_ITEM32_INDEXED(reg, pmlp, rx_lane, 0x04, 24, 2, 0x04, 24, false);
1023
1024static inline void mlxsw_reg_pmlp_pack(char *payload, u8 local_port)
1025{
1026 MLXSW_REG_ZERO(pmlp, payload);
1027 mlxsw_reg_pmlp_local_port_set(payload, local_port);
1028}
1029
1030/* PMTU - Port MTU Register
1031 * ------------------------
1032 * Configures and reports the port MTU.
1033 */
1034#define MLXSW_REG_PMTU_ID 0x5003
1035#define MLXSW_REG_PMTU_LEN 0x10
1036
1037static const struct mlxsw_reg_info mlxsw_reg_pmtu = {
1038 .id = MLXSW_REG_PMTU_ID,
1039 .len = MLXSW_REG_PMTU_LEN,
1040};
1041
1042/* reg_pmtu_local_port
1043 * Local port number.
1044 * Access: Index
1045 */
1046MLXSW_ITEM32(reg, pmtu, local_port, 0x00, 16, 8);
1047
1048/* reg_pmtu_max_mtu
1049 * Maximum MTU.
1050 * When port type (e.g. Ethernet) is configured, the relevant MTU is
1051 * reported, otherwise the minimum between the max_mtu of the different
1052 * types is reported.
1053 * Access: RO
1054 */
1055MLXSW_ITEM32(reg, pmtu, max_mtu, 0x04, 16, 16);
1056
1057/* reg_pmtu_admin_mtu
1058 * MTU value to set port to. Must be smaller or equal to max_mtu.
1059 * Note: If port type is Infiniband, then port must be disabled, when its
1060 * MTU is set.
1061 * Access: RW
1062 */
1063MLXSW_ITEM32(reg, pmtu, admin_mtu, 0x08, 16, 16);
1064
1065/* reg_pmtu_oper_mtu
1066 * The actual MTU configured on the port. Packets exceeding this size
1067 * will be dropped.
1068 * Note: In Ethernet and FC oper_mtu == admin_mtu, however, in Infiniband
1069 * oper_mtu might be smaller than admin_mtu.
1070 * Access: RO
1071 */
1072MLXSW_ITEM32(reg, pmtu, oper_mtu, 0x0C, 16, 16);
1073
1074static inline void mlxsw_reg_pmtu_pack(char *payload, u8 local_port,
1075 u16 new_mtu)
1076{
1077 MLXSW_REG_ZERO(pmtu, payload);
1078 mlxsw_reg_pmtu_local_port_set(payload, local_port);
1079 mlxsw_reg_pmtu_max_mtu_set(payload, 0);
1080 mlxsw_reg_pmtu_admin_mtu_set(payload, new_mtu);
1081 mlxsw_reg_pmtu_oper_mtu_set(payload, 0);
1082}
1083
1084/* PTYS - Port Type and Speed Register
1085 * -----------------------------------
1086 * Configures and reports the port speed type.
1087 *
1088 * Note: When set while the link is up, the changes will not take effect
1089 * until the port transitions from down to up state.
1090 */
1091#define MLXSW_REG_PTYS_ID 0x5004
1092#define MLXSW_REG_PTYS_LEN 0x40
1093
1094static const struct mlxsw_reg_info mlxsw_reg_ptys = {
1095 .id = MLXSW_REG_PTYS_ID,
1096 .len = MLXSW_REG_PTYS_LEN,
1097};
1098
1099/* reg_ptys_local_port
1100 * Local port number.
1101 * Access: Index
1102 */
1103MLXSW_ITEM32(reg, ptys, local_port, 0x00, 16, 8);
1104
1105#define MLXSW_REG_PTYS_PROTO_MASK_ETH BIT(2)
1106
1107/* reg_ptys_proto_mask
1108 * Protocol mask. Indicates which protocol is used.
1109 * 0 - Infiniband.
1110 * 1 - Fibre Channel.
1111 * 2 - Ethernet.
1112 * Access: Index
1113 */
1114MLXSW_ITEM32(reg, ptys, proto_mask, 0x00, 0, 3);
1115
1116#define MLXSW_REG_PTYS_ETH_SPEED_SGMII BIT(0)
1117#define MLXSW_REG_PTYS_ETH_SPEED_1000BASE_KX BIT(1)
1118#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_CX4 BIT(2)
1119#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_KX4 BIT(3)
1120#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_KR BIT(4)
1121#define MLXSW_REG_PTYS_ETH_SPEED_20GBASE_KR2 BIT(5)
1122#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_CR4 BIT(6)
1123#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_KR4 BIT(7)
1124#define MLXSW_REG_PTYS_ETH_SPEED_56GBASE_R4 BIT(8)
1125#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_CR BIT(12)
1126#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_SR BIT(13)
1127#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_ER_LR BIT(14)
1128#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_SR4 BIT(15)
1129#define MLXSW_REG_PTYS_ETH_SPEED_40GBASE_LR4_ER4 BIT(16)
1130#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_KR4 BIT(19)
1131#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_CR4 BIT(20)
1132#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_SR4 BIT(21)
1133#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_KR4 BIT(22)
1134#define MLXSW_REG_PTYS_ETH_SPEED_100GBASE_LR4_ER4 BIT(23)
1135#define MLXSW_REG_PTYS_ETH_SPEED_100BASE_TX BIT(24)
1136#define MLXSW_REG_PTYS_ETH_SPEED_100BASE_T BIT(25)
1137#define MLXSW_REG_PTYS_ETH_SPEED_10GBASE_T BIT(26)
1138#define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_CR BIT(27)
1139#define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_KR BIT(28)
1140#define MLXSW_REG_PTYS_ETH_SPEED_25GBASE_SR BIT(29)
1141#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_CR2 BIT(30)
1142#define MLXSW_REG_PTYS_ETH_SPEED_50GBASE_KR2 BIT(31)
1143
1144/* reg_ptys_eth_proto_cap
1145 * Ethernet port supported speeds and protocols.
1146 * Access: RO
1147 */
1148MLXSW_ITEM32(reg, ptys, eth_proto_cap, 0x0C, 0, 32);
1149
1150/* reg_ptys_eth_proto_admin
1151 * Speed and protocol to set port to.
1152 * Access: RW
1153 */
1154MLXSW_ITEM32(reg, ptys, eth_proto_admin, 0x18, 0, 32);
1155
1156/* reg_ptys_eth_proto_oper
1157 * The current speed and protocol configured for the port.
1158 * Access: RO
1159 */
1160MLXSW_ITEM32(reg, ptys, eth_proto_oper, 0x24, 0, 32);
1161
1162static inline void mlxsw_reg_ptys_pack(char *payload, u8 local_port,
1163 u32 proto_admin)
1164{
1165 MLXSW_REG_ZERO(ptys, payload);
1166 mlxsw_reg_ptys_local_port_set(payload, local_port);
1167 mlxsw_reg_ptys_proto_mask_set(payload, MLXSW_REG_PTYS_PROTO_MASK_ETH);
1168 mlxsw_reg_ptys_eth_proto_admin_set(payload, proto_admin);
1169}
1170
1171static inline void mlxsw_reg_ptys_unpack(char *payload, u32 *p_eth_proto_cap,
1172 u32 *p_eth_proto_adm,
1173 u32 *p_eth_proto_oper)
1174{
1175 if (p_eth_proto_cap)
1176 *p_eth_proto_cap = mlxsw_reg_ptys_eth_proto_cap_get(payload);
1177 if (p_eth_proto_adm)
1178 *p_eth_proto_adm = mlxsw_reg_ptys_eth_proto_admin_get(payload);
1179 if (p_eth_proto_oper)
1180 *p_eth_proto_oper = mlxsw_reg_ptys_eth_proto_oper_get(payload);
1181}
1182
1183/* PPAD - Port Physical Address Register
1184 * -------------------------------------
1185 * The PPAD register configures the per port physical MAC address.
1186 */
1187#define MLXSW_REG_PPAD_ID 0x5005
1188#define MLXSW_REG_PPAD_LEN 0x10
1189
1190static const struct mlxsw_reg_info mlxsw_reg_ppad = {
1191 .id = MLXSW_REG_PPAD_ID,
1192 .len = MLXSW_REG_PPAD_LEN,
1193};
1194
1195/* reg_ppad_single_base_mac
1196 * 0: base_mac, local port should be 0 and mac[7:0] is
1197 * reserved. HW will set incremental
1198 * 1: single_mac - mac of the local_port
1199 * Access: RW
1200 */
1201MLXSW_ITEM32(reg, ppad, single_base_mac, 0x00, 28, 1);
1202
1203/* reg_ppad_local_port
1204 * port number, if single_base_mac = 0 then local_port is reserved
1205 * Access: RW
1206 */
1207MLXSW_ITEM32(reg, ppad, local_port, 0x00, 16, 8);
1208
1209/* reg_ppad_mac
1210 * If single_base_mac = 0 - base MAC address, mac[7:0] is reserved.
1211 * If single_base_mac = 1 - the per port MAC address
1212 * Access: RW
1213 */
1214MLXSW_ITEM_BUF(reg, ppad, mac, 0x02, 6);
1215
1216static inline void mlxsw_reg_ppad_pack(char *payload, bool single_base_mac,
1217 u8 local_port)
1218{
1219 MLXSW_REG_ZERO(ppad, payload);
1220 mlxsw_reg_ppad_single_base_mac_set(payload, !!single_base_mac);
1221 mlxsw_reg_ppad_local_port_set(payload, local_port);
1222}
1223
1224/* PAOS - Ports Administrative and Operational Status Register
1225 * -----------------------------------------------------------
1226 * Configures and retrieves per port administrative and operational status.
1227 */
1228#define MLXSW_REG_PAOS_ID 0x5006
1229#define MLXSW_REG_PAOS_LEN 0x10
1230
1231static const struct mlxsw_reg_info mlxsw_reg_paos = {
1232 .id = MLXSW_REG_PAOS_ID,
1233 .len = MLXSW_REG_PAOS_LEN,
1234};
1235
1236/* reg_paos_swid
1237 * Switch partition ID with which to associate the port.
1238 * Note: while external ports uses unique local port numbers (and thus swid is
1239 * redundant), router ports use the same local port number where swid is the
1240 * only indication for the relevant port.
1241 * Access: Index
1242 */
1243MLXSW_ITEM32(reg, paos, swid, 0x00, 24, 8);
1244
1245/* reg_paos_local_port
1246 * Local port number.
1247 * Access: Index
1248 */
1249MLXSW_ITEM32(reg, paos, local_port, 0x00, 16, 8);
1250
1251/* reg_paos_admin_status
1252 * Port administrative state (the desired state of the port):
1253 * 1 - Up.
1254 * 2 - Down.
1255 * 3 - Up once. This means that in case of link failure, the port won't go
1256 * into polling mode, but will wait to be re-enabled by software.
1257 * 4 - Disabled by system. Can only be set by hardware.
1258 * Access: RW
1259 */
1260MLXSW_ITEM32(reg, paos, admin_status, 0x00, 8, 4);
1261
1262/* reg_paos_oper_status
1263 * Port operational state (the current state):
1264 * 1 - Up.
1265 * 2 - Down.
1266 * 3 - Down by port failure. This means that the device will not let the
1267 * port up again until explicitly specified by software.
1268 * Access: RO
1269 */
1270MLXSW_ITEM32(reg, paos, oper_status, 0x00, 0, 4);
1271
1272/* reg_paos_ase
1273 * Admin state update enabled.
1274 * Access: WO
1275 */
1276MLXSW_ITEM32(reg, paos, ase, 0x04, 31, 1);
1277
1278/* reg_paos_ee
1279 * Event update enable. If this bit is set, event generation will be
1280 * updated based on the e field.
1281 * Access: WO
1282 */
1283MLXSW_ITEM32(reg, paos, ee, 0x04, 30, 1);
1284
1285/* reg_paos_e
1286 * Event generation on operational state change:
1287 * 0 - Do not generate event.
1288 * 1 - Generate Event.
1289 * 2 - Generate Single Event.
1290 * Access: RW
1291 */
1292MLXSW_ITEM32(reg, paos, e, 0x04, 0, 2);
1293
1294static inline void mlxsw_reg_paos_pack(char *payload, u8 local_port,
1295 enum mlxsw_port_admin_status status)
1296{
1297 MLXSW_REG_ZERO(paos, payload);
1298 mlxsw_reg_paos_swid_set(payload, 0);
1299 mlxsw_reg_paos_local_port_set(payload, local_port);
1300 mlxsw_reg_paos_admin_status_set(payload, status);
1301 mlxsw_reg_paos_oper_status_set(payload, 0);
1302 mlxsw_reg_paos_ase_set(payload, 1);
1303 mlxsw_reg_paos_ee_set(payload, 1);
1304 mlxsw_reg_paos_e_set(payload, 1);
1305}
1306
1307/* PPCNT - Ports Performance Counters Register
1308 * -------------------------------------------
1309 * The PPCNT register retrieves per port performance counters.
1310 */
1311#define MLXSW_REG_PPCNT_ID 0x5008
1312#define MLXSW_REG_PPCNT_LEN 0x100
1313
1314static const struct mlxsw_reg_info mlxsw_reg_ppcnt = {
1315 .id = MLXSW_REG_PPCNT_ID,
1316 .len = MLXSW_REG_PPCNT_LEN,
1317};
1318
1319/* reg_ppcnt_swid
1320 * For HCA: must be always 0.
1321 * Switch partition ID to associate port with.
1322 * Switch partitions are numbered from 0 to 7 inclusively.
1323 * Switch partition 254 indicates stacking ports.
1324 * Switch partition 255 indicates all switch partitions.
1325 * Only valid on Set() operation with local_port=255.
1326 * Access: Index
1327 */
1328MLXSW_ITEM32(reg, ppcnt, swid, 0x00, 24, 8);
1329
1330/* reg_ppcnt_local_port
1331 * Local port number.
1332 * 255 indicates all ports on the device, and is only allowed
1333 * for Set() operation.
1334 * Access: Index
1335 */
1336MLXSW_ITEM32(reg, ppcnt, local_port, 0x00, 16, 8);
1337
1338/* reg_ppcnt_pnat
1339 * Port number access type:
1340 * 0 - Local port number
1341 * 1 - IB port number
1342 * Access: Index
1343 */
1344MLXSW_ITEM32(reg, ppcnt, pnat, 0x00, 14, 2);
1345
1346/* reg_ppcnt_grp
1347 * Performance counter group.
1348 * Group 63 indicates all groups. Only valid on Set() operation with
1349 * clr bit set.
1350 * 0x0: IEEE 802.3 Counters
1351 * 0x1: RFC 2863 Counters
1352 * 0x2: RFC 2819 Counters
1353 * 0x3: RFC 3635 Counters
1354 * 0x5: Ethernet Extended Counters
1355 * 0x8: Link Level Retransmission Counters
1356 * 0x10: Per Priority Counters
1357 * 0x11: Per Traffic Class Counters
1358 * 0x12: Physical Layer Counters
1359 * Access: Index
1360 */
1361MLXSW_ITEM32(reg, ppcnt, grp, 0x00, 0, 6);
1362
1363/* reg_ppcnt_clr
1364 * Clear counters. Setting the clr bit will reset the counter value
1365 * for all counters in the counter group. This bit can be set
1366 * for both Set() and Get() operation.
1367 * Access: OP
1368 */
1369MLXSW_ITEM32(reg, ppcnt, clr, 0x04, 31, 1);
1370
1371/* reg_ppcnt_prio_tc
1372 * Priority for counter set that support per priority, valid values: 0-7.
1373 * Traffic class for counter set that support per traffic class,
1374 * valid values: 0- cap_max_tclass-1 .
1375 * For HCA: cap_max_tclass is always 8.
1376 * Otherwise must be 0.
1377 * Access: Index
1378 */
1379MLXSW_ITEM32(reg, ppcnt, prio_tc, 0x04, 0, 5);
1380
1381/* reg_ppcnt_a_frames_transmitted_ok
1382 * Access: RO
1383 */
1384MLXSW_ITEM64(reg, ppcnt, a_frames_transmitted_ok,
1385 0x08 + 0x00, 0, 64);
1386
1387/* reg_ppcnt_a_frames_received_ok
1388 * Access: RO
1389 */
1390MLXSW_ITEM64(reg, ppcnt, a_frames_received_ok,
1391 0x08 + 0x08, 0, 64);
1392
1393/* reg_ppcnt_a_frame_check_sequence_errors
1394 * Access: RO
1395 */
1396MLXSW_ITEM64(reg, ppcnt, a_frame_check_sequence_errors,
1397 0x08 + 0x10, 0, 64);
1398
1399/* reg_ppcnt_a_alignment_errors
1400 * Access: RO
1401 */
1402MLXSW_ITEM64(reg, ppcnt, a_alignment_errors,
1403 0x08 + 0x18, 0, 64);
1404
1405/* reg_ppcnt_a_octets_transmitted_ok
1406 * Access: RO
1407 */
1408MLXSW_ITEM64(reg, ppcnt, a_octets_transmitted_ok,
1409 0x08 + 0x20, 0, 64);
1410
1411/* reg_ppcnt_a_octets_received_ok
1412 * Access: RO
1413 */
1414MLXSW_ITEM64(reg, ppcnt, a_octets_received_ok,
1415 0x08 + 0x28, 0, 64);
1416
1417/* reg_ppcnt_a_multicast_frames_xmitted_ok
1418 * Access: RO
1419 */
1420MLXSW_ITEM64(reg, ppcnt, a_multicast_frames_xmitted_ok,
1421 0x08 + 0x30, 0, 64);
1422
1423/* reg_ppcnt_a_broadcast_frames_xmitted_ok
1424 * Access: RO
1425 */
1426MLXSW_ITEM64(reg, ppcnt, a_broadcast_frames_xmitted_ok,
1427 0x08 + 0x38, 0, 64);
1428
1429/* reg_ppcnt_a_multicast_frames_received_ok
1430 * Access: RO
1431 */
1432MLXSW_ITEM64(reg, ppcnt, a_multicast_frames_received_ok,
1433 0x08 + 0x40, 0, 64);
1434
1435/* reg_ppcnt_a_broadcast_frames_received_ok
1436 * Access: RO
1437 */
1438MLXSW_ITEM64(reg, ppcnt, a_broadcast_frames_received_ok,
1439 0x08 + 0x48, 0, 64);
1440
1441/* reg_ppcnt_a_in_range_length_errors
1442 * Access: RO
1443 */
1444MLXSW_ITEM64(reg, ppcnt, a_in_range_length_errors,
1445 0x08 + 0x50, 0, 64);
1446
1447/* reg_ppcnt_a_out_of_range_length_field
1448 * Access: RO
1449 */
1450MLXSW_ITEM64(reg, ppcnt, a_out_of_range_length_field,
1451 0x08 + 0x58, 0, 64);
1452
1453/* reg_ppcnt_a_frame_too_long_errors
1454 * Access: RO
1455 */
1456MLXSW_ITEM64(reg, ppcnt, a_frame_too_long_errors,
1457 0x08 + 0x60, 0, 64);
1458
1459/* reg_ppcnt_a_symbol_error_during_carrier
1460 * Access: RO
1461 */
1462MLXSW_ITEM64(reg, ppcnt, a_symbol_error_during_carrier,
1463 0x08 + 0x68, 0, 64);
1464
1465/* reg_ppcnt_a_mac_control_frames_transmitted
1466 * Access: RO
1467 */
1468MLXSW_ITEM64(reg, ppcnt, a_mac_control_frames_transmitted,
1469 0x08 + 0x70, 0, 64);
1470
1471/* reg_ppcnt_a_mac_control_frames_received
1472 * Access: RO
1473 */
1474MLXSW_ITEM64(reg, ppcnt, a_mac_control_frames_received,
1475 0x08 + 0x78, 0, 64);
1476
1477/* reg_ppcnt_a_unsupported_opcodes_received
1478 * Access: RO
1479 */
1480MLXSW_ITEM64(reg, ppcnt, a_unsupported_opcodes_received,
1481 0x08 + 0x80, 0, 64);
1482
1483/* reg_ppcnt_a_pause_mac_ctrl_frames_received
1484 * Access: RO
1485 */
1486MLXSW_ITEM64(reg, ppcnt, a_pause_mac_ctrl_frames_received,
1487 0x08 + 0x88, 0, 64);
1488
1489/* reg_ppcnt_a_pause_mac_ctrl_frames_transmitted
1490 * Access: RO
1491 */
1492MLXSW_ITEM64(reg, ppcnt, a_pause_mac_ctrl_frames_transmitted,
1493 0x08 + 0x90, 0, 64);
1494
1495static inline void mlxsw_reg_ppcnt_pack(char *payload, u8 local_port)
1496{
1497 MLXSW_REG_ZERO(ppcnt, payload);
1498 mlxsw_reg_ppcnt_swid_set(payload, 0);
1499 mlxsw_reg_ppcnt_local_port_set(payload, local_port);
1500 mlxsw_reg_ppcnt_pnat_set(payload, 0);
1501 mlxsw_reg_ppcnt_grp_set(payload, 0);
1502 mlxsw_reg_ppcnt_clr_set(payload, 0);
1503 mlxsw_reg_ppcnt_prio_tc_set(payload, 0);
1504}
1505
Jiri Pirkoe0594362015-10-16 14:01:31 +02001506/* PBMC - Port Buffer Management Control Register
1507 * ----------------------------------------------
1508 * The PBMC register configures and retrieves the port packet buffer
1509 * allocation for different Prios, and the Pause threshold management.
1510 */
1511#define MLXSW_REG_PBMC_ID 0x500C
1512#define MLXSW_REG_PBMC_LEN 0x68
1513
1514static const struct mlxsw_reg_info mlxsw_reg_pbmc = {
1515 .id = MLXSW_REG_PBMC_ID,
1516 .len = MLXSW_REG_PBMC_LEN,
1517};
1518
1519/* reg_pbmc_local_port
1520 * Local port number.
1521 * Access: Index
1522 */
1523MLXSW_ITEM32(reg, pbmc, local_port, 0x00, 16, 8);
1524
1525/* reg_pbmc_xoff_timer_value
1526 * When device generates a pause frame, it uses this value as the pause
1527 * timer (time for the peer port to pause in quota-512 bit time).
1528 * Access: RW
1529 */
1530MLXSW_ITEM32(reg, pbmc, xoff_timer_value, 0x04, 16, 16);
1531
1532/* reg_pbmc_xoff_refresh
1533 * The time before a new pause frame should be sent to refresh the pause RW
1534 * state. Using the same units as xoff_timer_value above (in quota-512 bit
1535 * time).
1536 * Access: RW
1537 */
1538MLXSW_ITEM32(reg, pbmc, xoff_refresh, 0x04, 0, 16);
1539
1540/* reg_pbmc_buf_lossy
1541 * The field indicates if the buffer is lossy.
1542 * 0 - Lossless
1543 * 1 - Lossy
1544 * Access: RW
1545 */
1546MLXSW_ITEM32_INDEXED(reg, pbmc, buf_lossy, 0x0C, 25, 1, 0x08, 0x00, false);
1547
1548/* reg_pbmc_buf_epsb
1549 * Eligible for Port Shared buffer.
1550 * If epsb is set, packets assigned to buffer are allowed to insert the port
1551 * shared buffer.
1552 * When buf_lossy is MLXSW_REG_PBMC_LOSSY_LOSSY this field is reserved.
1553 * Access: RW
1554 */
1555MLXSW_ITEM32_INDEXED(reg, pbmc, buf_epsb, 0x0C, 24, 1, 0x08, 0x00, false);
1556
1557/* reg_pbmc_buf_size
1558 * The part of the packet buffer array is allocated for the specific buffer.
1559 * Units are represented in cells.
1560 * Access: RW
1561 */
1562MLXSW_ITEM32_INDEXED(reg, pbmc, buf_size, 0x0C, 0, 16, 0x08, 0x00, false);
1563
1564static inline void mlxsw_reg_pbmc_pack(char *payload, u8 local_port,
1565 u16 xoff_timer_value, u16 xoff_refresh)
1566{
1567 MLXSW_REG_ZERO(pbmc, payload);
1568 mlxsw_reg_pbmc_local_port_set(payload, local_port);
1569 mlxsw_reg_pbmc_xoff_timer_value_set(payload, xoff_timer_value);
1570 mlxsw_reg_pbmc_xoff_refresh_set(payload, xoff_refresh);
1571}
1572
1573static inline void mlxsw_reg_pbmc_lossy_buffer_pack(char *payload,
1574 int buf_index,
1575 u16 size)
1576{
1577 mlxsw_reg_pbmc_buf_lossy_set(payload, buf_index, 1);
1578 mlxsw_reg_pbmc_buf_epsb_set(payload, buf_index, 0);
1579 mlxsw_reg_pbmc_buf_size_set(payload, buf_index, size);
1580}
1581
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001582/* PSPA - Port Switch Partition Allocation
1583 * ---------------------------------------
1584 * Controls the association of a port with a switch partition and enables
1585 * configuring ports as stacking ports.
1586 */
Jiri Pirko3f0effd2015-10-15 17:43:23 +02001587#define MLXSW_REG_PSPA_ID 0x500D
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001588#define MLXSW_REG_PSPA_LEN 0x8
1589
1590static const struct mlxsw_reg_info mlxsw_reg_pspa = {
1591 .id = MLXSW_REG_PSPA_ID,
1592 .len = MLXSW_REG_PSPA_LEN,
1593};
1594
1595/* reg_pspa_swid
1596 * Switch partition ID.
1597 * Access: RW
1598 */
1599MLXSW_ITEM32(reg, pspa, swid, 0x00, 24, 8);
1600
1601/* reg_pspa_local_port
1602 * Local port number.
1603 * Access: Index
1604 */
1605MLXSW_ITEM32(reg, pspa, local_port, 0x00, 16, 8);
1606
1607/* reg_pspa_sub_port
1608 * Virtual port within the local port. Set to 0 when virtual ports are
1609 * disabled on the local port.
1610 * Access: Index
1611 */
1612MLXSW_ITEM32(reg, pspa, sub_port, 0x00, 8, 8);
1613
1614static inline void mlxsw_reg_pspa_pack(char *payload, u8 swid, u8 local_port)
1615{
1616 MLXSW_REG_ZERO(pspa, payload);
1617 mlxsw_reg_pspa_swid_set(payload, swid);
1618 mlxsw_reg_pspa_local_port_set(payload, local_port);
1619 mlxsw_reg_pspa_sub_port_set(payload, 0);
1620}
1621
1622/* HTGT - Host Trap Group Table
1623 * ----------------------------
1624 * Configures the properties for forwarding to CPU.
1625 */
1626#define MLXSW_REG_HTGT_ID 0x7002
1627#define MLXSW_REG_HTGT_LEN 0x100
1628
1629static const struct mlxsw_reg_info mlxsw_reg_htgt = {
1630 .id = MLXSW_REG_HTGT_ID,
1631 .len = MLXSW_REG_HTGT_LEN,
1632};
1633
1634/* reg_htgt_swid
1635 * Switch partition ID.
1636 * Access: Index
1637 */
1638MLXSW_ITEM32(reg, htgt, swid, 0x00, 24, 8);
1639
1640#define MLXSW_REG_HTGT_PATH_TYPE_LOCAL 0x0 /* For locally attached CPU */
1641
1642/* reg_htgt_type
1643 * CPU path type.
1644 * Access: RW
1645 */
1646MLXSW_ITEM32(reg, htgt, type, 0x00, 8, 4);
1647
Ido Schimmel801bd3d2015-10-15 17:43:28 +02001648enum mlxsw_reg_htgt_trap_group {
1649 MLXSW_REG_HTGT_TRAP_GROUP_EMAD,
1650 MLXSW_REG_HTGT_TRAP_GROUP_RX,
1651 MLXSW_REG_HTGT_TRAP_GROUP_CTRL,
1652};
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001653
1654/* reg_htgt_trap_group
1655 * Trap group number. User defined number specifying which trap groups
1656 * should be forwarded to the CPU. The mapping between trap IDs and trap
1657 * groups is configured using HPKT register.
1658 * Access: Index
1659 */
1660MLXSW_ITEM32(reg, htgt, trap_group, 0x00, 0, 8);
1661
1662enum {
1663 MLXSW_REG_HTGT_POLICER_DISABLE,
1664 MLXSW_REG_HTGT_POLICER_ENABLE,
1665};
1666
1667/* reg_htgt_pide
1668 * Enable policer ID specified using 'pid' field.
1669 * Access: RW
1670 */
1671MLXSW_ITEM32(reg, htgt, pide, 0x04, 15, 1);
1672
1673/* reg_htgt_pid
1674 * Policer ID for the trap group.
1675 * Access: RW
1676 */
1677MLXSW_ITEM32(reg, htgt, pid, 0x04, 0, 8);
1678
1679#define MLXSW_REG_HTGT_TRAP_TO_CPU 0x0
1680
1681/* reg_htgt_mirror_action
1682 * Mirror action to use.
1683 * 0 - Trap to CPU.
1684 * 1 - Trap to CPU and mirror to a mirroring agent.
1685 * 2 - Mirror to a mirroring agent and do not trap to CPU.
1686 * Access: RW
1687 *
1688 * Note: Mirroring to a mirroring agent is only supported in Spectrum.
1689 */
1690MLXSW_ITEM32(reg, htgt, mirror_action, 0x08, 8, 2);
1691
1692/* reg_htgt_mirroring_agent
1693 * Mirroring agent.
1694 * Access: RW
1695 */
1696MLXSW_ITEM32(reg, htgt, mirroring_agent, 0x08, 0, 3);
1697
1698/* reg_htgt_priority
1699 * Trap group priority.
1700 * In case a packet matches multiple classification rules, the packet will
1701 * only be trapped once, based on the trap ID associated with the group (via
1702 * register HPKT) with the highest priority.
1703 * Supported values are 0-7, with 7 represnting the highest priority.
1704 * Access: RW
1705 *
1706 * Note: In SwitchX-2 this field is ignored and the priority value is replaced
1707 * by the 'trap_group' field.
1708 */
1709MLXSW_ITEM32(reg, htgt, priority, 0x0C, 0, 4);
1710
1711/* reg_htgt_local_path_cpu_tclass
1712 * CPU ingress traffic class for the trap group.
1713 * Access: RW
1714 */
1715MLXSW_ITEM32(reg, htgt, local_path_cpu_tclass, 0x10, 16, 6);
1716
1717#define MLXSW_REG_HTGT_LOCAL_PATH_RDQ_EMAD 0x15
1718#define MLXSW_REG_HTGT_LOCAL_PATH_RDQ_RX 0x14
Ido Schimmel801bd3d2015-10-15 17:43:28 +02001719#define MLXSW_REG_HTGT_LOCAL_PATH_RDQ_CTRL 0x13
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001720
1721/* reg_htgt_local_path_rdq
1722 * Receive descriptor queue (RDQ) to use for the trap group.
1723 * Access: RW
1724 */
1725MLXSW_ITEM32(reg, htgt, local_path_rdq, 0x10, 0, 6);
1726
Ido Schimmel801bd3d2015-10-15 17:43:28 +02001727static inline void mlxsw_reg_htgt_pack(char *payload,
1728 enum mlxsw_reg_htgt_trap_group group)
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001729{
1730 u8 swid, rdq;
1731
1732 MLXSW_REG_ZERO(htgt, payload);
Ido Schimmel801bd3d2015-10-15 17:43:28 +02001733 switch (group) {
1734 case MLXSW_REG_HTGT_TRAP_GROUP_EMAD:
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001735 swid = MLXSW_PORT_SWID_ALL_SWIDS;
1736 rdq = MLXSW_REG_HTGT_LOCAL_PATH_RDQ_EMAD;
Ido Schimmel801bd3d2015-10-15 17:43:28 +02001737 break;
1738 case MLXSW_REG_HTGT_TRAP_GROUP_RX:
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001739 swid = 0;
1740 rdq = MLXSW_REG_HTGT_LOCAL_PATH_RDQ_RX;
Ido Schimmel801bd3d2015-10-15 17:43:28 +02001741 break;
1742 case MLXSW_REG_HTGT_TRAP_GROUP_CTRL:
1743 swid = 0;
1744 rdq = MLXSW_REG_HTGT_LOCAL_PATH_RDQ_CTRL;
1745 break;
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001746 }
1747 mlxsw_reg_htgt_swid_set(payload, swid);
1748 mlxsw_reg_htgt_type_set(payload, MLXSW_REG_HTGT_PATH_TYPE_LOCAL);
Ido Schimmel801bd3d2015-10-15 17:43:28 +02001749 mlxsw_reg_htgt_trap_group_set(payload, group);
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001750 mlxsw_reg_htgt_pide_set(payload, MLXSW_REG_HTGT_POLICER_DISABLE);
1751 mlxsw_reg_htgt_pid_set(payload, 0);
1752 mlxsw_reg_htgt_mirror_action_set(payload, MLXSW_REG_HTGT_TRAP_TO_CPU);
1753 mlxsw_reg_htgt_mirroring_agent_set(payload, 0);
1754 mlxsw_reg_htgt_priority_set(payload, 0);
1755 mlxsw_reg_htgt_local_path_cpu_tclass_set(payload, 7);
1756 mlxsw_reg_htgt_local_path_rdq_set(payload, rdq);
1757}
1758
1759/* HPKT - Host Packet Trap
1760 * -----------------------
1761 * Configures trap IDs inside trap groups.
1762 */
1763#define MLXSW_REG_HPKT_ID 0x7003
1764#define MLXSW_REG_HPKT_LEN 0x10
1765
1766static const struct mlxsw_reg_info mlxsw_reg_hpkt = {
1767 .id = MLXSW_REG_HPKT_ID,
1768 .len = MLXSW_REG_HPKT_LEN,
1769};
1770
1771enum {
1772 MLXSW_REG_HPKT_ACK_NOT_REQUIRED,
1773 MLXSW_REG_HPKT_ACK_REQUIRED,
1774};
1775
1776/* reg_hpkt_ack
1777 * Require acknowledgements from the host for events.
1778 * If set, then the device will wait for the event it sent to be acknowledged
1779 * by the host. This option is only relevant for event trap IDs.
1780 * Access: RW
1781 *
1782 * Note: Currently not supported by firmware.
1783 */
1784MLXSW_ITEM32(reg, hpkt, ack, 0x00, 24, 1);
1785
1786enum mlxsw_reg_hpkt_action {
1787 MLXSW_REG_HPKT_ACTION_FORWARD,
1788 MLXSW_REG_HPKT_ACTION_TRAP_TO_CPU,
1789 MLXSW_REG_HPKT_ACTION_MIRROR_TO_CPU,
1790 MLXSW_REG_HPKT_ACTION_DISCARD,
1791 MLXSW_REG_HPKT_ACTION_SOFT_DISCARD,
1792 MLXSW_REG_HPKT_ACTION_TRAP_AND_SOFT_DISCARD,
1793};
1794
1795/* reg_hpkt_action
1796 * Action to perform on packet when trapped.
1797 * 0 - No action. Forward to CPU based on switching rules.
1798 * 1 - Trap to CPU (CPU receives sole copy).
1799 * 2 - Mirror to CPU (CPU receives a replica of the packet).
1800 * 3 - Discard.
1801 * 4 - Soft discard (allow other traps to act on the packet).
1802 * 5 - Trap and soft discard (allow other traps to overwrite this trap).
1803 * Access: RW
1804 *
1805 * Note: Must be set to 0 (forward) for event trap IDs, as they are already
1806 * addressed to the CPU.
1807 */
1808MLXSW_ITEM32(reg, hpkt, action, 0x00, 20, 3);
1809
1810/* reg_hpkt_trap_group
1811 * Trap group to associate the trap with.
1812 * Access: RW
1813 */
1814MLXSW_ITEM32(reg, hpkt, trap_group, 0x00, 12, 6);
1815
1816/* reg_hpkt_trap_id
1817 * Trap ID.
1818 * Access: Index
1819 *
1820 * Note: A trap ID can only be associated with a single trap group. The device
1821 * will associate the trap ID with the last trap group configured.
1822 */
1823MLXSW_ITEM32(reg, hpkt, trap_id, 0x00, 0, 9);
1824
1825enum {
1826 MLXSW_REG_HPKT_CTRL_PACKET_DEFAULT,
1827 MLXSW_REG_HPKT_CTRL_PACKET_NO_BUFFER,
1828 MLXSW_REG_HPKT_CTRL_PACKET_USE_BUFFER,
1829};
1830
1831/* reg_hpkt_ctrl
1832 * Configure dedicated buffer resources for control packets.
1833 * 0 - Keep factory defaults.
1834 * 1 - Do not use control buffer for this trap ID.
1835 * 2 - Use control buffer for this trap ID.
1836 * Access: RW
1837 */
1838MLXSW_ITEM32(reg, hpkt, ctrl, 0x04, 16, 2);
1839
Ido Schimmelf24af332015-10-15 17:43:27 +02001840static inline void mlxsw_reg_hpkt_pack(char *payload, u8 action, u16 trap_id)
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001841{
Ido Schimmel801bd3d2015-10-15 17:43:28 +02001842 enum mlxsw_reg_htgt_trap_group trap_group;
Ido Schimmelf24af332015-10-15 17:43:27 +02001843
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001844 MLXSW_REG_ZERO(hpkt, payload);
1845 mlxsw_reg_hpkt_ack_set(payload, MLXSW_REG_HPKT_ACK_NOT_REQUIRED);
1846 mlxsw_reg_hpkt_action_set(payload, action);
Ido Schimmelf24af332015-10-15 17:43:27 +02001847 switch (trap_id) {
1848 case MLXSW_TRAP_ID_ETHEMAD:
1849 case MLXSW_TRAP_ID_PUDE:
1850 trap_group = MLXSW_REG_HTGT_TRAP_GROUP_EMAD;
1851 break;
1852 default:
1853 trap_group = MLXSW_REG_HTGT_TRAP_GROUP_RX;
1854 break;
1855 }
Ido Schimmel4ec14b72015-07-29 23:33:48 +02001856 mlxsw_reg_hpkt_trap_group_set(payload, trap_group);
1857 mlxsw_reg_hpkt_trap_id_set(payload, trap_id);
1858 mlxsw_reg_hpkt_ctrl_set(payload, MLXSW_REG_HPKT_CTRL_PACKET_DEFAULT);
1859}
1860
Jiri Pirkoe0594362015-10-16 14:01:31 +02001861/* SBPR - Shared Buffer Pools Register
1862 * -----------------------------------
1863 * The SBPR configures and retrieves the shared buffer pools and configuration.
1864 */
1865#define MLXSW_REG_SBPR_ID 0xB001
1866#define MLXSW_REG_SBPR_LEN 0x14
1867
1868static const struct mlxsw_reg_info mlxsw_reg_sbpr = {
1869 .id = MLXSW_REG_SBPR_ID,
1870 .len = MLXSW_REG_SBPR_LEN,
1871};
1872
1873enum mlxsw_reg_sbpr_dir {
1874 MLXSW_REG_SBPR_DIR_INGRESS,
1875 MLXSW_REG_SBPR_DIR_EGRESS,
1876};
1877
1878/* reg_sbpr_dir
1879 * Direction.
1880 * Access: Index
1881 */
1882MLXSW_ITEM32(reg, sbpr, dir, 0x00, 24, 2);
1883
1884/* reg_sbpr_pool
1885 * Pool index.
1886 * Access: Index
1887 */
1888MLXSW_ITEM32(reg, sbpr, pool, 0x00, 0, 4);
1889
1890/* reg_sbpr_size
1891 * Pool size in buffer cells.
1892 * Access: RW
1893 */
1894MLXSW_ITEM32(reg, sbpr, size, 0x04, 0, 24);
1895
1896enum mlxsw_reg_sbpr_mode {
1897 MLXSW_REG_SBPR_MODE_STATIC,
1898 MLXSW_REG_SBPR_MODE_DYNAMIC,
1899};
1900
1901/* reg_sbpr_mode
1902 * Pool quota calculation mode.
1903 * Access: RW
1904 */
1905MLXSW_ITEM32(reg, sbpr, mode, 0x08, 0, 4);
1906
1907static inline void mlxsw_reg_sbpr_pack(char *payload, u8 pool,
1908 enum mlxsw_reg_sbpr_dir dir,
1909 enum mlxsw_reg_sbpr_mode mode, u32 size)
1910{
1911 MLXSW_REG_ZERO(sbpr, payload);
1912 mlxsw_reg_sbpr_pool_set(payload, pool);
1913 mlxsw_reg_sbpr_dir_set(payload, dir);
1914 mlxsw_reg_sbpr_mode_set(payload, mode);
1915 mlxsw_reg_sbpr_size_set(payload, size);
1916}
1917
1918/* SBCM - Shared Buffer Class Management Register
1919 * ----------------------------------------------
1920 * The SBCM register configures and retrieves the shared buffer allocation
1921 * and configuration according to Port-PG, including the binding to pool
1922 * and definition of the associated quota.
1923 */
1924#define MLXSW_REG_SBCM_ID 0xB002
1925#define MLXSW_REG_SBCM_LEN 0x28
1926
1927static const struct mlxsw_reg_info mlxsw_reg_sbcm = {
1928 .id = MLXSW_REG_SBCM_ID,
1929 .len = MLXSW_REG_SBCM_LEN,
1930};
1931
1932/* reg_sbcm_local_port
1933 * Local port number.
1934 * For Ingress: excludes CPU port and Router port
1935 * For Egress: excludes IP Router
1936 * Access: Index
1937 */
1938MLXSW_ITEM32(reg, sbcm, local_port, 0x00, 16, 8);
1939
1940/* reg_sbcm_pg_buff
1941 * PG buffer - Port PG (dir=ingress) / traffic class (dir=egress)
1942 * For PG buffer: range is 0..cap_max_pg_buffers - 1
1943 * For traffic class: range is 0..cap_max_tclass - 1
1944 * Note that when traffic class is in MC aware mode then the traffic
1945 * classes which are MC aware cannot be configured.
1946 * Access: Index
1947 */
1948MLXSW_ITEM32(reg, sbcm, pg_buff, 0x00, 8, 6);
1949
1950enum mlxsw_reg_sbcm_dir {
1951 MLXSW_REG_SBCM_DIR_INGRESS,
1952 MLXSW_REG_SBCM_DIR_EGRESS,
1953};
1954
1955/* reg_sbcm_dir
1956 * Direction.
1957 * Access: Index
1958 */
1959MLXSW_ITEM32(reg, sbcm, dir, 0x00, 0, 2);
1960
1961/* reg_sbcm_min_buff
1962 * Minimum buffer size for the limiter, in cells.
1963 * Access: RW
1964 */
1965MLXSW_ITEM32(reg, sbcm, min_buff, 0x18, 0, 24);
1966
1967/* reg_sbcm_max_buff
1968 * When the pool associated to the port-pg/tclass is configured to
1969 * static, Maximum buffer size for the limiter configured in cells.
1970 * When the pool associated to the port-pg/tclass is configured to
1971 * dynamic, the max_buff holds the "alpha" parameter, supporting
1972 * the following values:
1973 * 0: 0
1974 * i: (1/128)*2^(i-1), for i=1..14
1975 * 0xFF: Infinity
1976 * Access: RW
1977 */
1978MLXSW_ITEM32(reg, sbcm, max_buff, 0x1C, 0, 24);
1979
1980/* reg_sbcm_pool
1981 * Association of the port-priority to a pool.
1982 * Access: RW
1983 */
1984MLXSW_ITEM32(reg, sbcm, pool, 0x24, 0, 4);
1985
1986static inline void mlxsw_reg_sbcm_pack(char *payload, u8 local_port, u8 pg_buff,
1987 enum mlxsw_reg_sbcm_dir dir,
1988 u32 min_buff, u32 max_buff, u8 pool)
1989{
1990 MLXSW_REG_ZERO(sbcm, payload);
1991 mlxsw_reg_sbcm_local_port_set(payload, local_port);
1992 mlxsw_reg_sbcm_pg_buff_set(payload, pg_buff);
1993 mlxsw_reg_sbcm_dir_set(payload, dir);
1994 mlxsw_reg_sbcm_min_buff_set(payload, min_buff);
1995 mlxsw_reg_sbcm_max_buff_set(payload, max_buff);
1996 mlxsw_reg_sbcm_pool_set(payload, pool);
1997}
1998
1999/* SBPM - Shared Buffer Class Management Register
2000 * ----------------------------------------------
2001 * The SBPM register configures and retrieves the shared buffer allocation
2002 * and configuration according to Port-Pool, including the definition
2003 * of the associated quota.
2004 */
2005#define MLXSW_REG_SBPM_ID 0xB003
2006#define MLXSW_REG_SBPM_LEN 0x28
2007
2008static const struct mlxsw_reg_info mlxsw_reg_sbpm = {
2009 .id = MLXSW_REG_SBPM_ID,
2010 .len = MLXSW_REG_SBPM_LEN,
2011};
2012
2013/* reg_sbpm_local_port
2014 * Local port number.
2015 * For Ingress: excludes CPU port and Router port
2016 * For Egress: excludes IP Router
2017 * Access: Index
2018 */
2019MLXSW_ITEM32(reg, sbpm, local_port, 0x00, 16, 8);
2020
2021/* reg_sbpm_pool
2022 * The pool associated to quota counting on the local_port.
2023 * Access: Index
2024 */
2025MLXSW_ITEM32(reg, sbpm, pool, 0x00, 8, 4);
2026
2027enum mlxsw_reg_sbpm_dir {
2028 MLXSW_REG_SBPM_DIR_INGRESS,
2029 MLXSW_REG_SBPM_DIR_EGRESS,
2030};
2031
2032/* reg_sbpm_dir
2033 * Direction.
2034 * Access: Index
2035 */
2036MLXSW_ITEM32(reg, sbpm, dir, 0x00, 0, 2);
2037
2038/* reg_sbpm_min_buff
2039 * Minimum buffer size for the limiter, in cells.
2040 * Access: RW
2041 */
2042MLXSW_ITEM32(reg, sbpm, min_buff, 0x18, 0, 24);
2043
2044/* reg_sbpm_max_buff
2045 * When the pool associated to the port-pg/tclass is configured to
2046 * static, Maximum buffer size for the limiter configured in cells.
2047 * When the pool associated to the port-pg/tclass is configured to
2048 * dynamic, the max_buff holds the "alpha" parameter, supporting
2049 * the following values:
2050 * 0: 0
2051 * i: (1/128)*2^(i-1), for i=1..14
2052 * 0xFF: Infinity
2053 * Access: RW
2054 */
2055MLXSW_ITEM32(reg, sbpm, max_buff, 0x1C, 0, 24);
2056
2057static inline void mlxsw_reg_sbpm_pack(char *payload, u8 local_port, u8 pool,
2058 enum mlxsw_reg_sbpm_dir dir,
2059 u32 min_buff, u32 max_buff)
2060{
2061 MLXSW_REG_ZERO(sbpm, payload);
2062 mlxsw_reg_sbpm_local_port_set(payload, local_port);
2063 mlxsw_reg_sbpm_pool_set(payload, pool);
2064 mlxsw_reg_sbpm_dir_set(payload, dir);
2065 mlxsw_reg_sbpm_min_buff_set(payload, min_buff);
2066 mlxsw_reg_sbpm_max_buff_set(payload, max_buff);
2067}
2068
2069/* SBMM - Shared Buffer Multicast Management Register
2070 * --------------------------------------------------
2071 * The SBMM register configures and retrieves the shared buffer allocation
2072 * and configuration for MC packets according to Switch-Priority, including
2073 * the binding to pool and definition of the associated quota.
2074 */
2075#define MLXSW_REG_SBMM_ID 0xB004
2076#define MLXSW_REG_SBMM_LEN 0x28
2077
2078static const struct mlxsw_reg_info mlxsw_reg_sbmm = {
2079 .id = MLXSW_REG_SBMM_ID,
2080 .len = MLXSW_REG_SBMM_LEN,
2081};
2082
2083/* reg_sbmm_prio
2084 * Switch Priority.
2085 * Access: Index
2086 */
2087MLXSW_ITEM32(reg, sbmm, prio, 0x00, 8, 4);
2088
2089/* reg_sbmm_min_buff
2090 * Minimum buffer size for the limiter, in cells.
2091 * Access: RW
2092 */
2093MLXSW_ITEM32(reg, sbmm, min_buff, 0x18, 0, 24);
2094
2095/* reg_sbmm_max_buff
2096 * When the pool associated to the port-pg/tclass is configured to
2097 * static, Maximum buffer size for the limiter configured in cells.
2098 * When the pool associated to the port-pg/tclass is configured to
2099 * dynamic, the max_buff holds the "alpha" parameter, supporting
2100 * the following values:
2101 * 0: 0
2102 * i: (1/128)*2^(i-1), for i=1..14
2103 * 0xFF: Infinity
2104 * Access: RW
2105 */
2106MLXSW_ITEM32(reg, sbmm, max_buff, 0x1C, 0, 24);
2107
2108/* reg_sbmm_pool
2109 * Association of the port-priority to a pool.
2110 * Access: RW
2111 */
2112MLXSW_ITEM32(reg, sbmm, pool, 0x24, 0, 4);
2113
2114static inline void mlxsw_reg_sbmm_pack(char *payload, u8 prio, u32 min_buff,
2115 u32 max_buff, u8 pool)
2116{
2117 MLXSW_REG_ZERO(sbmm, payload);
2118 mlxsw_reg_sbmm_prio_set(payload, prio);
2119 mlxsw_reg_sbmm_min_buff_set(payload, min_buff);
2120 mlxsw_reg_sbmm_max_buff_set(payload, max_buff);
2121 mlxsw_reg_sbmm_pool_set(payload, pool);
2122}
2123
Ido Schimmel4ec14b72015-07-29 23:33:48 +02002124static inline const char *mlxsw_reg_id_str(u16 reg_id)
2125{
2126 switch (reg_id) {
2127 case MLXSW_REG_SGCR_ID:
2128 return "SGCR";
2129 case MLXSW_REG_SPAD_ID:
2130 return "SPAD";
Ido Schimmele61011b2015-08-06 16:41:53 +02002131 case MLXSW_REG_SSPR_ID:
2132 return "SSPR";
Jiri Pirko236033b2015-10-16 14:01:28 +02002133 case MLXSW_REG_SFD_ID:
2134 return "SFD";
Jiri Pirkof5d88f52015-10-16 14:01:29 +02002135 case MLXSW_REG_SFN_ID:
2136 return "SFN";
Ido Schimmel4ec14b72015-07-29 23:33:48 +02002137 case MLXSW_REG_SPMS_ID:
2138 return "SPMS";
Elad Razb2e345f2015-10-16 14:01:30 +02002139 case MLXSW_REG_SPVID_ID:
2140 return "SPVID";
2141 case MLXSW_REG_SPVM_ID:
2142 return "SPVM";
Ido Schimmel4ec14b72015-07-29 23:33:48 +02002143 case MLXSW_REG_SFGC_ID:
2144 return "SFGC";
2145 case MLXSW_REG_SFTR_ID:
2146 return "SFTR";
2147 case MLXSW_REG_SPMLR_ID:
2148 return "SPMLR";
Ido Schimmelf1fb6932015-10-16 14:01:32 +02002149 case MLXSW_REG_SFMR_ID:
2150 return "SFMR";
Ido Schimmel4ec14b72015-07-29 23:33:48 +02002151 case MLXSW_REG_PMLP_ID:
2152 return "PMLP";
2153 case MLXSW_REG_PMTU_ID:
2154 return "PMTU";
2155 case MLXSW_REG_PTYS_ID:
2156 return "PTYS";
2157 case MLXSW_REG_PPAD_ID:
2158 return "PPAD";
2159 case MLXSW_REG_PAOS_ID:
2160 return "PAOS";
2161 case MLXSW_REG_PPCNT_ID:
2162 return "PPCNT";
Jiri Pirkoe0594362015-10-16 14:01:31 +02002163 case MLXSW_REG_PBMC_ID:
2164 return "PBMC";
Ido Schimmel4ec14b72015-07-29 23:33:48 +02002165 case MLXSW_REG_PSPA_ID:
2166 return "PSPA";
2167 case MLXSW_REG_HTGT_ID:
2168 return "HTGT";
2169 case MLXSW_REG_HPKT_ID:
2170 return "HPKT";
Jiri Pirkoe0594362015-10-16 14:01:31 +02002171 case MLXSW_REG_SBPR_ID:
2172 return "SBPR";
2173 case MLXSW_REG_SBCM_ID:
2174 return "SBCM";
2175 case MLXSW_REG_SBPM_ID:
2176 return "SBPM";
2177 case MLXSW_REG_SBMM_ID:
2178 return "SBMM";
Ido Schimmel4ec14b72015-07-29 23:33:48 +02002179 default:
2180 return "*UNKNOWN*";
2181 }
2182}
2183
2184/* PUDE - Port Up / Down Event
2185 * ---------------------------
2186 * Reports the operational state change of a port.
2187 */
2188#define MLXSW_REG_PUDE_LEN 0x10
2189
2190/* reg_pude_swid
2191 * Switch partition ID with which to associate the port.
2192 * Access: Index
2193 */
2194MLXSW_ITEM32(reg, pude, swid, 0x00, 24, 8);
2195
2196/* reg_pude_local_port
2197 * Local port number.
2198 * Access: Index
2199 */
2200MLXSW_ITEM32(reg, pude, local_port, 0x00, 16, 8);
2201
2202/* reg_pude_admin_status
2203 * Port administrative state (the desired state).
2204 * 1 - Up.
2205 * 2 - Down.
2206 * 3 - Up once. This means that in case of link failure, the port won't go
2207 * into polling mode, but will wait to be re-enabled by software.
2208 * 4 - Disabled by system. Can only be set by hardware.
2209 * Access: RO
2210 */
2211MLXSW_ITEM32(reg, pude, admin_status, 0x00, 8, 4);
2212
2213/* reg_pude_oper_status
2214 * Port operatioanl state.
2215 * 1 - Up.
2216 * 2 - Down.
2217 * 3 - Down by port failure. This means that the device will not let the
2218 * port up again until explicitly specified by software.
2219 * Access: RO
2220 */
2221MLXSW_ITEM32(reg, pude, oper_status, 0x00, 0, 4);
2222
2223#endif