blob: dc9e61eb9dd18242da7bf8c5bea9738751555667 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001From: Tobias Waldekranz <tobias@waldekranz.com>
2Subject: [RFC net-next 7/7] net: dsa: mv88e6xxx: Request assisted learning on CPU port
3Date: Sat, 16 Jan 2021 02:25:15 +0100
4Archived-At: <https://lore.kernel.org/netdev/20210116012515.3152-8-tobias@waldekranz.com/>
5
6While the hardware is capable of performing learning on the CPU port,
7it requires alot of additions to the bridge's forwarding path in order
8to handle multi-destination traffic correctly.
9
10Until that is in place, opt for the next best thing and let DSA sync
11the relevant addresses down to the hardware FDB.
12
13Signed-off-by: Tobias Waldekranz <tobias@waldekranz.com>
14---
15 drivers/net/dsa/mv88e6xxx/chip.c | 1 +
16 1 file changed, 1 insertion(+)
17
18--- a/drivers/net/dsa/mv88e6xxx/chip.c
19+++ b/drivers/net/dsa/mv88e6xxx/chip.c
20@@ -5083,6 +5083,7 @@ static int mv88e6xxx_register_switch(str
21 ds->ops = &mv88e6xxx_switch_ops;
22 ds->ageing_time_min = chip->info->age_time_coeff;
23 ds->ageing_time_max = chip->info->age_time_coeff * U8_MAX;
24+ ds->assisted_learning_on_cpu_port = true;
25
26 dev_set_drvdata(dev, ds);
27