1 // SPDX-License-Identifier: GPL-2.0
3 * Texas Instruments N-Port Ethernet Switch Address Lookup Engine
5 * Copyright (C) 2012 Texas Instruments
8 #include <linux/bitmap.h>
9 #include <linux/if_vlan.h>
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
13 #include <linux/seq_file.h>
14 #include <linux/slab.h>
15 #include <linux/err.h>
17 #include <linux/stat.h>
18 #include <linux/sysfs.h>
19 #include <linux/etherdevice.h>
23 #define BITMASK(bits) (BIT(bits) - 1)
25 #define ALE_VERSION_MAJOR(rev, mask) (((rev) >> 8) & (mask))
26 #define ALE_VERSION_MINOR(rev) (rev & 0xff)
27 #define ALE_VERSION_1R3 0x0103
28 #define ALE_VERSION_1R4 0x0104
31 #define ALE_IDVER 0x00
32 #define ALE_STATUS 0x04
33 #define ALE_CONTROL 0x08
34 #define ALE_PRESCALE 0x10
35 #define ALE_AGING_TIMER 0x14
36 #define ALE_UNKNOWNVLAN 0x18
37 #define ALE_TABLE_CONTROL 0x20
38 #define ALE_TABLE 0x34
39 #define ALE_PORTCTL 0x40
41 /* ALE NetCP NU switch specific Registers */
42 #define ALE_UNKNOWNVLAN_MEMBER 0x90
43 #define ALE_UNKNOWNVLAN_UNREG_MCAST_FLOOD 0x94
44 #define ALE_UNKNOWNVLAN_REG_MCAST_FLOOD 0x98
45 #define ALE_UNKNOWNVLAN_FORCE_UNTAG_EGRESS 0x9C
46 #define ALE_VLAN_MASK_MUX(reg) (0xc0 + (0x4 * (reg)))
48 #define AM65_CPSW_ALE_THREAD_DEF_REG 0x134
51 #define ALE_AGING_TIMER_MASK GENMASK(23, 0)
54 * struct ale_entry_fld - The ALE tbl entry field description
55 * @start_bit: field start bit
56 * @num_bits: field bit length
59 struct ale_entry_fld
{
66 CPSW_ALE_F_STATUS_REG
= BIT(0), /* Status register present */
67 CPSW_ALE_F_HW_AUTOAGING
= BIT(1), /* HW auto aging */
73 * struct ale_dev_id - The ALE version/SoC specific configuration
74 * @dev_id: ALE version/SoC id
75 * @features: features supported by ALE
76 * @tbl_entries: number of ALE entries
77 * @major_ver_mask: mask of ALE Major Version Value in ALE_IDVER reg.
78 * @nu_switch_ale: NU Switch ALE
79 * @vlan_entry_tbl: ALE vlan entry fields description tbl
81 struct cpsw_ale_dev_id
{
87 const struct ale_entry_fld
*vlan_entry_tbl
;
90 #define ALE_TABLE_WRITE BIT(31)
92 #define ALE_TYPE_FREE 0
93 #define ALE_TYPE_ADDR 1
94 #define ALE_TYPE_VLAN 2
95 #define ALE_TYPE_VLAN_ADDR 3
97 #define ALE_UCAST_PERSISTANT 0
98 #define ALE_UCAST_UNTOUCHED 1
99 #define ALE_UCAST_OUI 2
100 #define ALE_UCAST_TOUCHED 3
102 #define ALE_TABLE_SIZE_MULTIPLIER 1024
103 #define ALE_STATUS_SIZE_MASK 0x1f
105 static inline int cpsw_ale_get_field(u32
*ale_entry
, u32 start
, u32 bits
)
111 idx
= 2 - idx
; /* flip */
112 return (ale_entry
[idx
] >> start
) & BITMASK(bits
);
115 static inline void cpsw_ale_set_field(u32
*ale_entry
, u32 start
, u32 bits
,
120 value
&= BITMASK(bits
);
123 idx
= 2 - idx
; /* flip */
124 ale_entry
[idx
] &= ~(BITMASK(bits
) << start
);
125 ale_entry
[idx
] |= (value
<< start
);
128 #define DEFINE_ALE_FIELD(name, start, bits) \
129 static inline int cpsw_ale_get_##name(u32 *ale_entry) \
131 return cpsw_ale_get_field(ale_entry, start, bits); \
133 static inline void cpsw_ale_set_##name(u32 *ale_entry, u32 value) \
135 cpsw_ale_set_field(ale_entry, start, bits, value); \
138 #define DEFINE_ALE_FIELD1(name, start) \
139 static inline int cpsw_ale_get_##name(u32 *ale_entry, u32 bits) \
141 return cpsw_ale_get_field(ale_entry, start, bits); \
143 static inline void cpsw_ale_set_##name(u32 *ale_entry, u32 value, \
146 cpsw_ale_set_field(ale_entry, start, bits, value); \
150 ALE_ENT_VID_MEMBER_LIST
= 0,
151 ALE_ENT_VID_UNREG_MCAST_MSK
,
152 ALE_ENT_VID_REG_MCAST_MSK
,
153 ALE_ENT_VID_FORCE_UNTAGGED_MSK
,
154 ALE_ENT_VID_UNREG_MCAST_IDX
,
155 ALE_ENT_VID_REG_MCAST_IDX
,
159 #define ALE_FLD_ALLOWED BIT(0)
160 #define ALE_FLD_SIZE_PORT_MASK_BITS BIT(1)
161 #define ALE_FLD_SIZE_PORT_NUM_BITS BIT(2)
163 #define ALE_ENTRY_FLD(id, start, bits) \
165 .start_bit = start, \
167 .flags = ALE_FLD_ALLOWED, \
170 #define ALE_ENTRY_FLD_DYN_MSK_SIZE(id, start) \
172 .start_bit = start, \
174 .flags = ALE_FLD_ALLOWED | \
175 ALE_FLD_SIZE_PORT_MASK_BITS, \
178 /* dm814x, am3/am4/am5, k2hk */
179 static const struct ale_entry_fld vlan_entry_cpsw
[ALE_ENT_VID_LAST
] = {
180 ALE_ENTRY_FLD(ALE_ENT_VID_MEMBER_LIST
, 0, 3),
181 ALE_ENTRY_FLD(ALE_ENT_VID_UNREG_MCAST_MSK
, 8, 3),
182 ALE_ENTRY_FLD(ALE_ENT_VID_REG_MCAST_MSK
, 16, 3),
183 ALE_ENTRY_FLD(ALE_ENT_VID_FORCE_UNTAGGED_MSK
, 24, 3),
186 /* k2e/k2l, k3 am65/j721e cpsw2g */
187 static const struct ale_entry_fld vlan_entry_nu
[ALE_ENT_VID_LAST
] = {
188 ALE_ENTRY_FLD_DYN_MSK_SIZE(ALE_ENT_VID_MEMBER_LIST
, 0),
189 ALE_ENTRY_FLD(ALE_ENT_VID_UNREG_MCAST_IDX
, 20, 3),
190 ALE_ENTRY_FLD_DYN_MSK_SIZE(ALE_ENT_VID_FORCE_UNTAGGED_MSK
, 24),
191 ALE_ENTRY_FLD(ALE_ENT_VID_REG_MCAST_IDX
, 44, 3),
194 /* K3 j721e/j7200 cpsw9g/5g, am64x cpsw3g */
195 static const struct ale_entry_fld vlan_entry_k3_cpswxg
[] = {
196 ALE_ENTRY_FLD_DYN_MSK_SIZE(ALE_ENT_VID_MEMBER_LIST
, 0),
197 ALE_ENTRY_FLD_DYN_MSK_SIZE(ALE_ENT_VID_UNREG_MCAST_MSK
, 12),
198 ALE_ENTRY_FLD_DYN_MSK_SIZE(ALE_ENT_VID_FORCE_UNTAGGED_MSK
, 24),
199 ALE_ENTRY_FLD_DYN_MSK_SIZE(ALE_ENT_VID_REG_MCAST_MSK
, 36),
202 DEFINE_ALE_FIELD(entry_type
, 60, 2)
203 DEFINE_ALE_FIELD(vlan_id
, 48, 12)
204 DEFINE_ALE_FIELD(mcast_state
, 62, 2)
205 DEFINE_ALE_FIELD1(port_mask
, 66)
206 DEFINE_ALE_FIELD(super
, 65, 1)
207 DEFINE_ALE_FIELD(ucast_type
, 62, 2)
208 DEFINE_ALE_FIELD1(port_num
, 66)
209 DEFINE_ALE_FIELD(blocked
, 65, 1)
210 DEFINE_ALE_FIELD(secure
, 64, 1)
211 DEFINE_ALE_FIELD(mcast
, 40, 1)
213 #define NU_VLAN_UNREG_MCAST_IDX 1
215 static int cpsw_ale_entry_get_fld(struct cpsw_ale
*ale
,
217 const struct ale_entry_fld
*entry_tbl
,
220 const struct ale_entry_fld
*entry_fld
;
223 if (!ale
|| !ale_entry
)
226 entry_fld
= &entry_tbl
[fld_id
];
227 if (!(entry_fld
->flags
& ALE_FLD_ALLOWED
)) {
228 dev_err(ale
->params
.dev
, "get: wrong ale fld id %d\n", fld_id
);
232 bits
= entry_fld
->num_bits
;
233 if (entry_fld
->flags
& ALE_FLD_SIZE_PORT_MASK_BITS
)
234 bits
= ale
->port_mask_bits
;
236 return cpsw_ale_get_field(ale_entry
, entry_fld
->start_bit
, bits
);
239 static void cpsw_ale_entry_set_fld(struct cpsw_ale
*ale
,
241 const struct ale_entry_fld
*entry_tbl
,
245 const struct ale_entry_fld
*entry_fld
;
248 if (!ale
|| !ale_entry
)
251 entry_fld
= &entry_tbl
[fld_id
];
252 if (!(entry_fld
->flags
& ALE_FLD_ALLOWED
)) {
253 dev_err(ale
->params
.dev
, "set: wrong ale fld id %d\n", fld_id
);
257 bits
= entry_fld
->num_bits
;
258 if (entry_fld
->flags
& ALE_FLD_SIZE_PORT_MASK_BITS
)
259 bits
= ale
->port_mask_bits
;
261 cpsw_ale_set_field(ale_entry
, entry_fld
->start_bit
, bits
, value
);
264 static int cpsw_ale_vlan_get_fld(struct cpsw_ale
*ale
,
268 return cpsw_ale_entry_get_fld(ale
, ale_entry
,
269 ale
->vlan_entry_tbl
, fld_id
);
272 static void cpsw_ale_vlan_set_fld(struct cpsw_ale
*ale
,
277 cpsw_ale_entry_set_fld(ale
, ale_entry
,
278 ale
->vlan_entry_tbl
, fld_id
, value
);
281 /* The MAC address field in the ALE entry cannot be macroized as above */
282 static inline void cpsw_ale_get_addr(u32
*ale_entry
, u8
*addr
)
286 for (i
= 0; i
< 6; i
++)
287 addr
[i
] = cpsw_ale_get_field(ale_entry
, 40 - 8*i
, 8);
290 static inline void cpsw_ale_set_addr(u32
*ale_entry
, const u8
*addr
)
294 for (i
= 0; i
< 6; i
++)
295 cpsw_ale_set_field(ale_entry
, 40 - 8*i
, 8, addr
[i
]);
298 static int cpsw_ale_read(struct cpsw_ale
*ale
, int idx
, u32
*ale_entry
)
302 WARN_ON(idx
> ale
->params
.ale_entries
);
304 writel_relaxed(idx
, ale
->params
.ale_regs
+ ALE_TABLE_CONTROL
);
306 for (i
= 0; i
< ALE_ENTRY_WORDS
; i
++)
307 ale_entry
[i
] = readl_relaxed(ale
->params
.ale_regs
+
313 static int cpsw_ale_write(struct cpsw_ale
*ale
, int idx
, u32
*ale_entry
)
317 WARN_ON(idx
> ale
->params
.ale_entries
);
319 for (i
= 0; i
< ALE_ENTRY_WORDS
; i
++)
320 writel_relaxed(ale_entry
[i
], ale
->params
.ale_regs
+
323 writel_relaxed(idx
| ALE_TABLE_WRITE
, ale
->params
.ale_regs
+
329 static int cpsw_ale_match_addr(struct cpsw_ale
*ale
, const u8
*addr
, u16 vid
)
331 u32 ale_entry
[ALE_ENTRY_WORDS
];
334 for (idx
= 0; idx
< ale
->params
.ale_entries
; idx
++) {
337 cpsw_ale_read(ale
, idx
, ale_entry
);
338 type
= cpsw_ale_get_entry_type(ale_entry
);
339 if (type
!= ALE_TYPE_ADDR
&& type
!= ALE_TYPE_VLAN_ADDR
)
341 if (cpsw_ale_get_vlan_id(ale_entry
) != vid
)
343 cpsw_ale_get_addr(ale_entry
, entry_addr
);
344 if (ether_addr_equal(entry_addr
, addr
))
350 static int cpsw_ale_match_vlan(struct cpsw_ale
*ale
, u16 vid
)
352 u32 ale_entry
[ALE_ENTRY_WORDS
];
355 for (idx
= 0; idx
< ale
->params
.ale_entries
; idx
++) {
356 cpsw_ale_read(ale
, idx
, ale_entry
);
357 type
= cpsw_ale_get_entry_type(ale_entry
);
358 if (type
!= ALE_TYPE_VLAN
)
360 if (cpsw_ale_get_vlan_id(ale_entry
) == vid
)
366 static int cpsw_ale_match_free(struct cpsw_ale
*ale
)
368 u32 ale_entry
[ALE_ENTRY_WORDS
];
371 for (idx
= 0; idx
< ale
->params
.ale_entries
; idx
++) {
372 cpsw_ale_read(ale
, idx
, ale_entry
);
373 type
= cpsw_ale_get_entry_type(ale_entry
);
374 if (type
== ALE_TYPE_FREE
)
380 static int cpsw_ale_find_ageable(struct cpsw_ale
*ale
)
382 u32 ale_entry
[ALE_ENTRY_WORDS
];
385 for (idx
= 0; idx
< ale
->params
.ale_entries
; idx
++) {
386 cpsw_ale_read(ale
, idx
, ale_entry
);
387 type
= cpsw_ale_get_entry_type(ale_entry
);
388 if (type
!= ALE_TYPE_ADDR
&& type
!= ALE_TYPE_VLAN_ADDR
)
390 if (cpsw_ale_get_mcast(ale_entry
))
392 type
= cpsw_ale_get_ucast_type(ale_entry
);
393 if (type
!= ALE_UCAST_PERSISTANT
&&
394 type
!= ALE_UCAST_OUI
)
400 static void cpsw_ale_flush_mcast(struct cpsw_ale
*ale
, u32
*ale_entry
,
405 mask
= cpsw_ale_get_port_mask(ale_entry
,
406 ale
->port_mask_bits
);
407 if ((mask
& port_mask
) == 0)
408 return; /* ports dont intersect, not interested */
411 /* free if only remaining port is host port */
413 cpsw_ale_set_port_mask(ale_entry
, mask
,
414 ale
->port_mask_bits
);
416 cpsw_ale_set_entry_type(ale_entry
, ALE_TYPE_FREE
);
419 int cpsw_ale_flush_multicast(struct cpsw_ale
*ale
, int port_mask
, int vid
)
421 u32 ale_entry
[ALE_ENTRY_WORDS
];
424 for (idx
= 0; idx
< ale
->params
.ale_entries
; idx
++) {
425 cpsw_ale_read(ale
, idx
, ale_entry
);
426 ret
= cpsw_ale_get_entry_type(ale_entry
);
427 if (ret
!= ALE_TYPE_ADDR
&& ret
!= ALE_TYPE_VLAN_ADDR
)
430 /* if vid passed is -1 then remove all multicast entry from
431 * the table irrespective of vlan id, if a valid vlan id is
432 * passed then remove only multicast added to that vlan id.
433 * if vlan id doesn't match then move on to next entry.
435 if (vid
!= -1 && cpsw_ale_get_vlan_id(ale_entry
) != vid
)
438 if (cpsw_ale_get_mcast(ale_entry
)) {
441 if (cpsw_ale_get_super(ale_entry
))
444 cpsw_ale_get_addr(ale_entry
, addr
);
445 if (!is_broadcast_ether_addr(addr
))
446 cpsw_ale_flush_mcast(ale
, ale_entry
, port_mask
);
449 cpsw_ale_write(ale
, idx
, ale_entry
);
454 static inline void cpsw_ale_set_vlan_entry_type(u32
*ale_entry
,
457 if (flags
& ALE_VLAN
) {
458 cpsw_ale_set_entry_type(ale_entry
, ALE_TYPE_VLAN_ADDR
);
459 cpsw_ale_set_vlan_id(ale_entry
, vid
);
461 cpsw_ale_set_entry_type(ale_entry
, ALE_TYPE_ADDR
);
465 int cpsw_ale_add_ucast(struct cpsw_ale
*ale
, const u8
*addr
, int port
,
468 u32 ale_entry
[ALE_ENTRY_WORDS
] = {0, 0, 0};
471 cpsw_ale_set_vlan_entry_type(ale_entry
, flags
, vid
);
473 cpsw_ale_set_addr(ale_entry
, addr
);
474 cpsw_ale_set_ucast_type(ale_entry
, ALE_UCAST_PERSISTANT
);
475 cpsw_ale_set_secure(ale_entry
, (flags
& ALE_SECURE
) ? 1 : 0);
476 cpsw_ale_set_blocked(ale_entry
, (flags
& ALE_BLOCKED
) ? 1 : 0);
477 cpsw_ale_set_port_num(ale_entry
, port
, ale
->port_num_bits
);
479 idx
= cpsw_ale_match_addr(ale
, addr
, (flags
& ALE_VLAN
) ? vid
: 0);
481 idx
= cpsw_ale_match_free(ale
);
483 idx
= cpsw_ale_find_ageable(ale
);
487 cpsw_ale_write(ale
, idx
, ale_entry
);
491 int cpsw_ale_del_ucast(struct cpsw_ale
*ale
, const u8
*addr
, int port
,
494 u32 ale_entry
[ALE_ENTRY_WORDS
] = {0, 0, 0};
497 idx
= cpsw_ale_match_addr(ale
, addr
, (flags
& ALE_VLAN
) ? vid
: 0);
501 cpsw_ale_set_entry_type(ale_entry
, ALE_TYPE_FREE
);
502 cpsw_ale_write(ale
, idx
, ale_entry
);
506 int cpsw_ale_add_mcast(struct cpsw_ale
*ale
, const u8
*addr
, int port_mask
,
507 int flags
, u16 vid
, int mcast_state
)
509 u32 ale_entry
[ALE_ENTRY_WORDS
] = {0, 0, 0};
512 idx
= cpsw_ale_match_addr(ale
, addr
, (flags
& ALE_VLAN
) ? vid
: 0);
514 cpsw_ale_read(ale
, idx
, ale_entry
);
516 cpsw_ale_set_vlan_entry_type(ale_entry
, flags
, vid
);
518 cpsw_ale_set_addr(ale_entry
, addr
);
519 cpsw_ale_set_super(ale_entry
, (flags
& ALE_SUPER
) ? 1 : 0);
520 cpsw_ale_set_mcast_state(ale_entry
, mcast_state
);
522 mask
= cpsw_ale_get_port_mask(ale_entry
,
523 ale
->port_mask_bits
);
525 cpsw_ale_set_port_mask(ale_entry
, port_mask
,
526 ale
->port_mask_bits
);
529 idx
= cpsw_ale_match_free(ale
);
531 idx
= cpsw_ale_find_ageable(ale
);
535 cpsw_ale_write(ale
, idx
, ale_entry
);
539 int cpsw_ale_del_mcast(struct cpsw_ale
*ale
, const u8
*addr
, int port_mask
,
542 u32 ale_entry
[ALE_ENTRY_WORDS
] = {0, 0, 0};
543 int mcast_members
= 0;
546 idx
= cpsw_ale_match_addr(ale
, addr
, (flags
& ALE_VLAN
) ? vid
: 0);
550 cpsw_ale_read(ale
, idx
, ale_entry
);
553 mcast_members
= cpsw_ale_get_port_mask(ale_entry
,
554 ale
->port_mask_bits
);
555 mcast_members
&= ~port_mask
;
559 cpsw_ale_set_port_mask(ale_entry
, mcast_members
,
560 ale
->port_mask_bits
);
562 cpsw_ale_set_entry_type(ale_entry
, ALE_TYPE_FREE
);
564 cpsw_ale_write(ale
, idx
, ale_entry
);
568 /* ALE NetCP NU switch specific vlan functions */
569 static void cpsw_ale_set_vlan_mcast(struct cpsw_ale
*ale
, u32
*ale_entry
,
570 int reg_mcast
, int unreg_mcast
)
574 /* Set VLAN registered multicast flood mask */
575 idx
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
576 ALE_ENT_VID_REG_MCAST_IDX
);
577 writel(reg_mcast
, ale
->params
.ale_regs
+ ALE_VLAN_MASK_MUX(idx
));
579 /* Set VLAN unregistered multicast flood mask */
580 idx
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
581 ALE_ENT_VID_UNREG_MCAST_IDX
);
582 writel(unreg_mcast
, ale
->params
.ale_regs
+ ALE_VLAN_MASK_MUX(idx
));
585 static void cpsw_ale_set_vlan_untag(struct cpsw_ale
*ale
, u32
*ale_entry
,
586 u16 vid
, int untag_mask
)
588 cpsw_ale_vlan_set_fld(ale
, ale_entry
,
589 ALE_ENT_VID_FORCE_UNTAGGED_MSK
,
591 if (untag_mask
& ALE_PORT_HOST
)
592 bitmap_set(ale
->p0_untag_vid_mask
, vid
, 1);
594 bitmap_clear(ale
->p0_untag_vid_mask
, vid
, 1);
597 int cpsw_ale_add_vlan(struct cpsw_ale
*ale
, u16 vid
, int port_mask
, int untag
,
598 int reg_mcast
, int unreg_mcast
)
600 u32 ale_entry
[ALE_ENTRY_WORDS
] = {0, 0, 0};
603 idx
= cpsw_ale_match_vlan(ale
, vid
);
605 cpsw_ale_read(ale
, idx
, ale_entry
);
607 cpsw_ale_set_entry_type(ale_entry
, ALE_TYPE_VLAN
);
608 cpsw_ale_set_vlan_id(ale_entry
, vid
);
609 cpsw_ale_set_vlan_untag(ale
, ale_entry
, vid
, untag
);
611 if (!ale
->params
.nu_switch_ale
) {
612 cpsw_ale_vlan_set_fld(ale
, ale_entry
,
613 ALE_ENT_VID_REG_MCAST_MSK
, reg_mcast
);
614 cpsw_ale_vlan_set_fld(ale
, ale_entry
,
615 ALE_ENT_VID_UNREG_MCAST_MSK
, unreg_mcast
);
617 cpsw_ale_vlan_set_fld(ale
, ale_entry
,
618 ALE_ENT_VID_UNREG_MCAST_IDX
,
619 NU_VLAN_UNREG_MCAST_IDX
);
620 cpsw_ale_set_vlan_mcast(ale
, ale_entry
, reg_mcast
, unreg_mcast
);
623 cpsw_ale_vlan_set_fld(ale
, ale_entry
,
624 ALE_ENT_VID_MEMBER_LIST
, port_mask
);
627 idx
= cpsw_ale_match_free(ale
);
629 idx
= cpsw_ale_find_ageable(ale
);
633 cpsw_ale_write(ale
, idx
, ale_entry
);
637 static void cpsw_ale_vlan_del_modify_int(struct cpsw_ale
*ale
, u32
*ale_entry
,
638 u16 vid
, int port_mask
)
640 int reg_mcast
, unreg_mcast
;
643 members
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
644 ALE_ENT_VID_MEMBER_LIST
);
645 members
&= ~port_mask
;
647 cpsw_ale_set_vlan_untag(ale
, ale_entry
, vid
, 0);
648 cpsw_ale_set_entry_type(ale_entry
, ALE_TYPE_FREE
);
652 untag
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
653 ALE_ENT_VID_FORCE_UNTAGGED_MSK
);
654 reg_mcast
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
655 ALE_ENT_VID_REG_MCAST_MSK
);
656 unreg_mcast
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
657 ALE_ENT_VID_UNREG_MCAST_MSK
);
659 reg_mcast
&= members
;
660 unreg_mcast
&= members
;
662 cpsw_ale_set_vlan_untag(ale
, ale_entry
, vid
, untag
);
664 if (!ale
->params
.nu_switch_ale
) {
665 cpsw_ale_vlan_set_fld(ale
, ale_entry
,
666 ALE_ENT_VID_REG_MCAST_MSK
, reg_mcast
);
667 cpsw_ale_vlan_set_fld(ale
, ale_entry
,
668 ALE_ENT_VID_UNREG_MCAST_MSK
, unreg_mcast
);
670 cpsw_ale_set_vlan_mcast(ale
, ale_entry
, reg_mcast
,
673 cpsw_ale_vlan_set_fld(ale
, ale_entry
,
674 ALE_ENT_VID_MEMBER_LIST
, members
);
677 int cpsw_ale_vlan_del_modify(struct cpsw_ale
*ale
, u16 vid
, int port_mask
)
679 u32 ale_entry
[ALE_ENTRY_WORDS
] = {0, 0, 0};
682 idx
= cpsw_ale_match_vlan(ale
, vid
);
686 cpsw_ale_read(ale
, idx
, ale_entry
);
688 cpsw_ale_vlan_del_modify_int(ale
, ale_entry
, vid
, port_mask
);
689 cpsw_ale_write(ale
, idx
, ale_entry
);
694 int cpsw_ale_del_vlan(struct cpsw_ale
*ale
, u16 vid
, int port_mask
)
696 u32 ale_entry
[ALE_ENTRY_WORDS
] = {0, 0, 0};
699 idx
= cpsw_ale_match_vlan(ale
, vid
);
703 cpsw_ale_read(ale
, idx
, ale_entry
);
705 /* if !port_mask - force remove VLAN (legacy).
706 * Check if there are other VLAN members ports
707 * if no - remove VLAN.
708 * if yes it means same VLAN was added to >1 port in multi port mode, so
709 * remove port_mask ports from VLAN ALE entry excluding Host port.
711 members
= cpsw_ale_vlan_get_fld(ale
, ale_entry
, ALE_ENT_VID_MEMBER_LIST
);
712 members
&= ~port_mask
;
714 if (!port_mask
|| !members
) {
715 /* last port or force remove - remove VLAN */
716 cpsw_ale_set_vlan_untag(ale
, ale_entry
, vid
, 0);
717 cpsw_ale_set_entry_type(ale_entry
, ALE_TYPE_FREE
);
719 port_mask
&= ~ALE_PORT_HOST
;
720 cpsw_ale_vlan_del_modify_int(ale
, ale_entry
, vid
, port_mask
);
723 cpsw_ale_write(ale
, idx
, ale_entry
);
728 int cpsw_ale_vlan_add_modify(struct cpsw_ale
*ale
, u16 vid
, int port_mask
,
729 int untag_mask
, int reg_mask
, int unreg_mask
)
731 u32 ale_entry
[ALE_ENTRY_WORDS
] = {0, 0, 0};
732 int reg_mcast_members
, unreg_mcast_members
;
733 int vlan_members
, untag_members
;
736 idx
= cpsw_ale_match_vlan(ale
, vid
);
738 cpsw_ale_read(ale
, idx
, ale_entry
);
740 vlan_members
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
741 ALE_ENT_VID_MEMBER_LIST
);
742 reg_mcast_members
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
743 ALE_ENT_VID_REG_MCAST_MSK
);
744 unreg_mcast_members
=
745 cpsw_ale_vlan_get_fld(ale
, ale_entry
,
746 ALE_ENT_VID_UNREG_MCAST_MSK
);
747 untag_members
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
748 ALE_ENT_VID_FORCE_UNTAGGED_MSK
);
750 vlan_members
|= port_mask
;
751 untag_members
= (untag_members
& ~port_mask
) | untag_mask
;
752 reg_mcast_members
= (reg_mcast_members
& ~port_mask
) | reg_mask
;
753 unreg_mcast_members
= (unreg_mcast_members
& ~port_mask
) | unreg_mask
;
755 ret
= cpsw_ale_add_vlan(ale
, vid
, vlan_members
, untag_members
,
756 reg_mcast_members
, unreg_mcast_members
);
758 dev_err(ale
->params
.dev
, "Unable to add vlan\n");
761 dev_dbg(ale
->params
.dev
, "port mask 0x%x untag 0x%x\n", vlan_members
,
767 void cpsw_ale_set_unreg_mcast(struct cpsw_ale
*ale
, int unreg_mcast_mask
,
770 u32 ale_entry
[ALE_ENTRY_WORDS
];
771 int unreg_members
= 0;
774 for (idx
= 0; idx
< ale
->params
.ale_entries
; idx
++) {
775 cpsw_ale_read(ale
, idx
, ale_entry
);
776 type
= cpsw_ale_get_entry_type(ale_entry
);
777 if (type
!= ALE_TYPE_VLAN
)
781 cpsw_ale_vlan_get_fld(ale
, ale_entry
,
782 ALE_ENT_VID_UNREG_MCAST_MSK
);
784 unreg_members
|= unreg_mcast_mask
;
786 unreg_members
&= ~unreg_mcast_mask
;
787 cpsw_ale_vlan_set_fld(ale
, ale_entry
,
788 ALE_ENT_VID_UNREG_MCAST_MSK
,
790 cpsw_ale_write(ale
, idx
, ale_entry
);
794 static void cpsw_ale_vlan_set_unreg_mcast(struct cpsw_ale
*ale
, u32
*ale_entry
,
799 unreg_mcast
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
800 ALE_ENT_VID_UNREG_MCAST_MSK
);
802 unreg_mcast
|= ALE_PORT_HOST
;
804 unreg_mcast
&= ~ALE_PORT_HOST
;
806 cpsw_ale_vlan_set_fld(ale
, ale_entry
,
807 ALE_ENT_VID_UNREG_MCAST_MSK
, unreg_mcast
);
811 cpsw_ale_vlan_set_unreg_mcast_idx(struct cpsw_ale
*ale
, u32
*ale_entry
,
817 idx
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
818 ALE_ENT_VID_UNREG_MCAST_IDX
);
820 unreg_mcast
= readl(ale
->params
.ale_regs
+ ALE_VLAN_MASK_MUX(idx
));
823 unreg_mcast
|= ALE_PORT_HOST
;
825 unreg_mcast
&= ~ALE_PORT_HOST
;
827 writel(unreg_mcast
, ale
->params
.ale_regs
+ ALE_VLAN_MASK_MUX(idx
));
830 void cpsw_ale_set_allmulti(struct cpsw_ale
*ale
, int allmulti
, int port
)
832 u32 ale_entry
[ALE_ENTRY_WORDS
];
835 for (idx
= 0; idx
< ale
->params
.ale_entries
; idx
++) {
838 cpsw_ale_read(ale
, idx
, ale_entry
);
839 type
= cpsw_ale_get_entry_type(ale_entry
);
840 if (type
!= ALE_TYPE_VLAN
)
843 vlan_members
= cpsw_ale_vlan_get_fld(ale
, ale_entry
,
844 ALE_ENT_VID_MEMBER_LIST
);
846 if (port
!= -1 && !(vlan_members
& BIT(port
)))
849 if (!ale
->params
.nu_switch_ale
)
850 cpsw_ale_vlan_set_unreg_mcast(ale
, ale_entry
, allmulti
);
852 cpsw_ale_vlan_set_unreg_mcast_idx(ale
, ale_entry
,
855 cpsw_ale_write(ale
, idx
, ale_entry
);
859 struct ale_control_info
{
861 int offset
, port_offset
;
862 int shift
, port_shift
;
866 static struct ale_control_info ale_controls
[ALE_NUM_CONTROLS
] = {
869 .offset
= ALE_CONTROL
,
877 .offset
= ALE_CONTROL
,
885 .offset
= ALE_CONTROL
,
891 [ALE_P0_UNI_FLOOD
] = {
892 .name
= "port0_unicast_flood",
893 .offset
= ALE_CONTROL
,
899 [ALE_VLAN_NOLEARN
] = {
900 .name
= "vlan_nolearn",
901 .offset
= ALE_CONTROL
,
907 [ALE_NO_PORT_VLAN
] = {
908 .name
= "no_port_vlan",
909 .offset
= ALE_CONTROL
,
917 .offset
= ALE_CONTROL
,
925 .offset
= ALE_CONTROL
,
931 [ALE_RATE_LIMIT_TX
] = {
932 .name
= "rate_limit_tx",
933 .offset
= ALE_CONTROL
,
940 .name
= "vlan_aware",
941 .offset
= ALE_CONTROL
,
947 [ALE_AUTH_ENABLE
] = {
948 .name
= "auth_enable",
949 .offset
= ALE_CONTROL
,
956 .name
= "rate_limit",
957 .offset
= ALE_CONTROL
,
964 .name
= "port_state",
965 .offset
= ALE_PORTCTL
,
971 [ALE_PORT_DROP_UNTAGGED
] = {
972 .name
= "drop_untagged",
973 .offset
= ALE_PORTCTL
,
979 [ALE_PORT_DROP_UNKNOWN_VLAN
] = {
980 .name
= "drop_unknown",
981 .offset
= ALE_PORTCTL
,
987 [ALE_PORT_NOLEARN
] = {
989 .offset
= ALE_PORTCTL
,
995 [ALE_PORT_NO_SA_UPDATE
] = {
996 .name
= "no_source_update",
997 .offset
= ALE_PORTCTL
,
1003 [ALE_PORT_MACONLY
] = {
1004 .name
= "mac_only_port_mode",
1005 .offset
= ALE_PORTCTL
,
1011 [ALE_PORT_MACONLY_CAF
] = {
1012 .name
= "mac_only_port_caf",
1013 .offset
= ALE_PORTCTL
,
1019 [ALE_PORT_MCAST_LIMIT
] = {
1020 .name
= "mcast_limit",
1021 .offset
= ALE_PORTCTL
,
1027 [ALE_PORT_BCAST_LIMIT
] = {
1028 .name
= "bcast_limit",
1029 .offset
= ALE_PORTCTL
,
1035 [ALE_PORT_UNKNOWN_VLAN_MEMBER
] = {
1036 .name
= "unknown_vlan_member",
1037 .offset
= ALE_UNKNOWNVLAN
,
1043 [ALE_PORT_UNKNOWN_MCAST_FLOOD
] = {
1044 .name
= "unknown_mcast_flood",
1045 .offset
= ALE_UNKNOWNVLAN
,
1051 [ALE_PORT_UNKNOWN_REG_MCAST_FLOOD
] = {
1052 .name
= "unknown_reg_flood",
1053 .offset
= ALE_UNKNOWNVLAN
,
1059 [ALE_PORT_UNTAGGED_EGRESS
] = {
1060 .name
= "untagged_egress",
1061 .offset
= ALE_UNKNOWNVLAN
,
1067 [ALE_DEFAULT_THREAD_ID
] = {
1068 .name
= "default_thread_id",
1069 .offset
= AM65_CPSW_ALE_THREAD_DEF_REG
,
1075 [ALE_DEFAULT_THREAD_ENABLE
] = {
1076 .name
= "default_thread_id_enable",
1077 .offset
= AM65_CPSW_ALE_THREAD_DEF_REG
,
1085 int cpsw_ale_control_set(struct cpsw_ale
*ale
, int port
, int control
,
1088 const struct ale_control_info
*info
;
1092 if (control
< 0 || control
>= ARRAY_SIZE(ale_controls
))
1095 info
= &ale_controls
[control
];
1096 if (info
->port_offset
== 0 && info
->port_shift
== 0)
1097 port
= 0; /* global, port is a dont care */
1099 if (port
< 0 || port
>= ale
->params
.ale_ports
)
1102 mask
= BITMASK(info
->bits
);
1106 offset
= info
->offset
+ (port
* info
->port_offset
);
1107 shift
= info
->shift
+ (port
* info
->port_shift
);
1109 tmp
= readl_relaxed(ale
->params
.ale_regs
+ offset
);
1110 tmp
= (tmp
& ~(mask
<< shift
)) | (value
<< shift
);
1111 writel_relaxed(tmp
, ale
->params
.ale_regs
+ offset
);
1116 int cpsw_ale_control_get(struct cpsw_ale
*ale
, int port
, int control
)
1118 const struct ale_control_info
*info
;
1122 if (control
< 0 || control
>= ARRAY_SIZE(ale_controls
))
1125 info
= &ale_controls
[control
];
1126 if (info
->port_offset
== 0 && info
->port_shift
== 0)
1127 port
= 0; /* global, port is a dont care */
1129 if (port
< 0 || port
>= ale
->params
.ale_ports
)
1132 offset
= info
->offset
+ (port
* info
->port_offset
);
1133 shift
= info
->shift
+ (port
* info
->port_shift
);
1135 tmp
= readl_relaxed(ale
->params
.ale_regs
+ offset
) >> shift
;
1136 return tmp
& BITMASK(info
->bits
);
1139 static void cpsw_ale_timer(struct timer_list
*t
)
1141 struct cpsw_ale
*ale
= from_timer(ale
, t
, timer
);
1143 cpsw_ale_control_set(ale
, 0, ALE_AGEOUT
, 1);
1146 ale
->timer
.expires
= jiffies
+ ale
->ageout
;
1147 add_timer(&ale
->timer
);
1151 static void cpsw_ale_hw_aging_timer_start(struct cpsw_ale
*ale
)
1155 aging_timer
= ale
->params
.bus_freq
/ 1000000;
1156 aging_timer
*= ale
->params
.ale_ageout
;
1158 if (aging_timer
& ~ALE_AGING_TIMER_MASK
) {
1159 aging_timer
= ALE_AGING_TIMER_MASK
;
1160 dev_warn(ale
->params
.dev
,
1161 "ALE aging timer overflow, set to max\n");
1164 writel(aging_timer
, ale
->params
.ale_regs
+ ALE_AGING_TIMER
);
1167 static void cpsw_ale_hw_aging_timer_stop(struct cpsw_ale
*ale
)
1169 writel(0, ale
->params
.ale_regs
+ ALE_AGING_TIMER
);
1172 static void cpsw_ale_aging_start(struct cpsw_ale
*ale
)
1174 if (!ale
->params
.ale_ageout
)
1177 if (ale
->features
& CPSW_ALE_F_HW_AUTOAGING
) {
1178 cpsw_ale_hw_aging_timer_start(ale
);
1182 timer_setup(&ale
->timer
, cpsw_ale_timer
, 0);
1183 ale
->timer
.expires
= jiffies
+ ale
->ageout
;
1184 add_timer(&ale
->timer
);
1187 static void cpsw_ale_aging_stop(struct cpsw_ale
*ale
)
1189 if (!ale
->params
.ale_ageout
)
1192 if (ale
->features
& CPSW_ALE_F_HW_AUTOAGING
) {
1193 cpsw_ale_hw_aging_timer_stop(ale
);
1197 del_timer_sync(&ale
->timer
);
1200 void cpsw_ale_start(struct cpsw_ale
*ale
)
1202 cpsw_ale_control_set(ale
, 0, ALE_ENABLE
, 1);
1203 cpsw_ale_control_set(ale
, 0, ALE_CLEAR
, 1);
1205 cpsw_ale_aging_start(ale
);
1208 void cpsw_ale_stop(struct cpsw_ale
*ale
)
1210 cpsw_ale_aging_stop(ale
);
1211 cpsw_ale_control_set(ale
, 0, ALE_CLEAR
, 1);
1212 cpsw_ale_control_set(ale
, 0, ALE_ENABLE
, 0);
1215 static const struct cpsw_ale_dev_id cpsw_ale_id_match
[] = {
1217 /* am3/4/5, dra7. dm814x, 66ak2hk-gbe */
1219 .tbl_entries
= 1024,
1220 .major_ver_mask
= 0xff,
1221 .vlan_entry_tbl
= vlan_entry_cpsw
,
1225 .dev_id
= "66ak2h-xgbe",
1226 .tbl_entries
= 2048,
1227 .major_ver_mask
= 0xff,
1228 .vlan_entry_tbl
= vlan_entry_cpsw
,
1231 .dev_id
= "66ak2el",
1232 .features
= CPSW_ALE_F_STATUS_REG
,
1233 .major_ver_mask
= 0x7,
1234 .nu_switch_ale
= true,
1235 .vlan_entry_tbl
= vlan_entry_nu
,
1239 .features
= CPSW_ALE_F_STATUS_REG
,
1241 .major_ver_mask
= 0x7,
1242 .nu_switch_ale
= true,
1243 .vlan_entry_tbl
= vlan_entry_nu
,
1246 .dev_id
= "am65x-cpsw2g",
1247 .features
= CPSW_ALE_F_STATUS_REG
| CPSW_ALE_F_HW_AUTOAGING
,
1249 .major_ver_mask
= 0x7,
1250 .nu_switch_ale
= true,
1251 .vlan_entry_tbl
= vlan_entry_nu
,
1254 .dev_id
= "j721e-cpswxg",
1255 .features
= CPSW_ALE_F_STATUS_REG
| CPSW_ALE_F_HW_AUTOAGING
,
1256 .major_ver_mask
= 0x7,
1257 .vlan_entry_tbl
= vlan_entry_k3_cpswxg
,
1263 cpsw_ale_dev_id
*cpsw_ale_match_id(const struct cpsw_ale_dev_id
*id
,
1269 while (id
->dev_id
) {
1270 if (strcmp(dev_id
, id
->dev_id
) == 0)
1277 struct cpsw_ale
*cpsw_ale_create(struct cpsw_ale_params
*params
)
1279 const struct cpsw_ale_dev_id
*ale_dev_id
;
1280 struct cpsw_ale
*ale
;
1281 u32 rev
, ale_entries
;
1283 ale_dev_id
= cpsw_ale_match_id(cpsw_ale_id_match
, params
->dev_id
);
1285 return ERR_PTR(-EINVAL
);
1287 params
->ale_entries
= ale_dev_id
->tbl_entries
;
1288 params
->major_ver_mask
= ale_dev_id
->major_ver_mask
;
1289 params
->nu_switch_ale
= ale_dev_id
->nu_switch_ale
;
1291 ale
= devm_kzalloc(params
->dev
, sizeof(*ale
), GFP_KERNEL
);
1293 return ERR_PTR(-ENOMEM
);
1295 ale
->p0_untag_vid_mask
=
1296 devm_kmalloc_array(params
->dev
, BITS_TO_LONGS(VLAN_N_VID
),
1297 sizeof(unsigned long),
1299 if (!ale
->p0_untag_vid_mask
)
1300 return ERR_PTR(-ENOMEM
);
1302 ale
->params
= *params
;
1303 ale
->ageout
= ale
->params
.ale_ageout
* HZ
;
1304 ale
->features
= ale_dev_id
->features
;
1305 ale
->vlan_entry_tbl
= ale_dev_id
->vlan_entry_tbl
;
1307 rev
= readl_relaxed(ale
->params
.ale_regs
+ ALE_IDVER
);
1309 (ALE_VERSION_MAJOR(rev
, ale
->params
.major_ver_mask
) << 8) |
1310 ALE_VERSION_MINOR(rev
);
1311 dev_info(ale
->params
.dev
, "initialized cpsw ale version %d.%d\n",
1312 ALE_VERSION_MAJOR(rev
, ale
->params
.major_ver_mask
),
1313 ALE_VERSION_MINOR(rev
));
1315 if (ale
->features
& CPSW_ALE_F_STATUS_REG
&&
1316 !ale
->params
.ale_entries
) {
1318 readl_relaxed(ale
->params
.ale_regs
+ ALE_STATUS
) &
1319 ALE_STATUS_SIZE_MASK
;
1320 /* ALE available on newer NetCP switches has introduced
1321 * a register, ALE_STATUS, to indicate the size of ALE
1322 * table which shows the size as a multiple of 1024 entries.
1323 * For these, params.ale_entries will be set to zero. So
1324 * read the register and update the value of ale_entries.
1325 * return error if ale_entries is zero in ALE_STATUS.
1328 return ERR_PTR(-EINVAL
);
1330 ale_entries
*= ALE_TABLE_SIZE_MULTIPLIER
;
1331 ale
->params
.ale_entries
= ale_entries
;
1333 dev_info(ale
->params
.dev
,
1334 "ALE Table size %ld\n", ale
->params
.ale_entries
);
1336 /* set default bits for existing h/w */
1337 ale
->port_mask_bits
= ale
->params
.ale_ports
;
1338 ale
->port_num_bits
= order_base_2(ale
->params
.ale_ports
);
1339 ale
->vlan_field_bits
= ale
->params
.ale_ports
;
1341 /* Set defaults override for ALE on NetCP NU switch and for version
1344 if (ale
->params
.nu_switch_ale
) {
1345 /* Separate registers for unknown vlan configuration.
1346 * Also there are N bits, where N is number of ale
1347 * ports and shift value should be 0
1349 ale_controls
[ALE_PORT_UNKNOWN_VLAN_MEMBER
].bits
=
1350 ale
->params
.ale_ports
;
1351 ale_controls
[ALE_PORT_UNKNOWN_VLAN_MEMBER
].offset
=
1352 ALE_UNKNOWNVLAN_MEMBER
;
1353 ale_controls
[ALE_PORT_UNKNOWN_MCAST_FLOOD
].bits
=
1354 ale
->params
.ale_ports
;
1355 ale_controls
[ALE_PORT_UNKNOWN_MCAST_FLOOD
].shift
= 0;
1356 ale_controls
[ALE_PORT_UNKNOWN_MCAST_FLOOD
].offset
=
1357 ALE_UNKNOWNVLAN_UNREG_MCAST_FLOOD
;
1358 ale_controls
[ALE_PORT_UNKNOWN_REG_MCAST_FLOOD
].bits
=
1359 ale
->params
.ale_ports
;
1360 ale_controls
[ALE_PORT_UNKNOWN_REG_MCAST_FLOOD
].shift
= 0;
1361 ale_controls
[ALE_PORT_UNKNOWN_REG_MCAST_FLOOD
].offset
=
1362 ALE_UNKNOWNVLAN_REG_MCAST_FLOOD
;
1363 ale_controls
[ALE_PORT_UNTAGGED_EGRESS
].bits
=
1364 ale
->params
.ale_ports
;
1365 ale_controls
[ALE_PORT_UNTAGGED_EGRESS
].shift
= 0;
1366 ale_controls
[ALE_PORT_UNTAGGED_EGRESS
].offset
=
1367 ALE_UNKNOWNVLAN_FORCE_UNTAG_EGRESS
;
1370 cpsw_ale_control_set(ale
, 0, ALE_CLEAR
, 1);
1374 void cpsw_ale_dump(struct cpsw_ale
*ale
, u32
*data
)
1378 for (i
= 0; i
< ale
->params
.ale_entries
; i
++) {
1379 cpsw_ale_read(ale
, i
, data
);
1380 data
+= ALE_ENTRY_WORDS
;
1384 u32
cpsw_ale_get_num_entries(struct cpsw_ale
*ale
)
1386 return ale
? ale
->params
.ale_entries
: 0;