diff mbox series

[net-next] net: dsa: xrs700x: allow HSR/PRP supervision dupes for node_table

Message ID 20210604162922.76954-1-george.mccollister@gmail.com (mailing list archive)
State Accepted
Commit 1a42624aecba438f1d114430a14b640cdfa51c87
Delegated to: Netdev Maintainers
Headers show
Series [net-next] net: dsa: xrs700x: allow HSR/PRP supervision dupes for node_table | expand

Checks

Context Check Description
netdev/cover_letter success Link
netdev/fixes_present success Link
netdev/patch_count success Link
netdev/tree_selection success Clearly marked for net-next
netdev/subject_prefix success Link
netdev/cc_maintainers success CCed 8 of 8 maintainers
netdev/source_inline success Was 0 now: 0
netdev/verify_signedoff success Link
netdev/module_param success Was 0 now: 0
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/verify_fixes success Link
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 97 lines checked
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
netdev/header_inline success Link

Commit Message

George McCollister June 4, 2021, 4:29 p.m. UTC
Add an inbound policy filter which matches the HSR/PRP supervision
MAC range and forwards to the CPU port without discarding duplicates.
This is required to correctly populate time_in[A] and time_in[B] in the
HSR/PRP node_table. Leave the policy disabled by default and
enable/disable it when joining/leaving hsr.

Signed-off-by: George McCollister <george.mccollister@gmail.com>
---
 drivers/net/dsa/xrs700x/xrs700x.c | 67 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 67 insertions(+)

Comments

Vladimir Oltean June 4, 2021, 6:55 p.m. UTC | #1
On Fri, Jun 04, 2021 at 11:29:22AM -0500, George McCollister wrote:
> Add an inbound policy filter which matches the HSR/PRP supervision
> MAC range and forwards to the CPU port without discarding duplicates.
> This is required to correctly populate time_in[A] and time_in[B] in the
> HSR/PRP node_table. Leave the policy disabled by default and
> enable/disable it when joining/leaving hsr.
> 
> Signed-off-by: George McCollister <george.mccollister@gmail.com>
> ---

What happens if duplicates are discarded for supervision frames and
time_in[A] or time_in[B] is not updated in the node table?

>  drivers/net/dsa/xrs700x/xrs700x.c | 67 +++++++++++++++++++++++++++++++++++++++
>  1 file changed, 67 insertions(+)
> 
> diff --git a/drivers/net/dsa/xrs700x/xrs700x.c b/drivers/net/dsa/xrs700x/xrs700x.c
> index fde6e99274b6..a79066174a77 100644
> --- a/drivers/net/dsa/xrs700x/xrs700x.c
> +++ b/drivers/net/dsa/xrs700x/xrs700x.c
> @@ -79,6 +79,9 @@ static const struct xrs700x_mib xrs700x_mibs[] = {
>  	XRS700X_MIB(XRS_EARLY_DROP_L, "early_drop", tx_dropped),
>  };
>  
> +static const u8 eth_hsrsup_addr[ETH_ALEN] = {
> +	0x01, 0x15, 0x4e, 0x00, 0x01, 0x00};
> +

What if the user sets a different last address byte for supervision frames?

>  static void xrs700x_get_strings(struct dsa_switch *ds, int port,
>  				u32 stringset, u8 *data)
>  {
> @@ -329,6 +332,50 @@ static int xrs700x_port_add_bpdu_ipf(struct dsa_switch *ds, int port)
>  	return 0;
>  }
>  
> +/* Add an inbound policy filter which matches the HSR/PRP supervision MAC
> + * range and forwards to the CPU port without discarding duplicates.
> + * This is required to correctly populate the HSR/PRP node_table.
> + * Leave the policy disabled, it will be enabled as needed.
> + */
> +static int xrs700x_port_add_hsrsup_ipf(struct dsa_switch *ds, int port)
> +{
> +	struct xrs700x *priv = ds->priv;
> +	unsigned int val = 0;
> +	int i = 0;
> +	int ret;
> +
> +	/* Compare 40 bits of the destination MAC address. */
> +	ret = regmap_write(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 40 << 2);
> +	if (ret)
> +		return ret;
> +
> +	/* match HSR/PRP supervision destination 01:15:4e:00:01:XX */
> +	for (i = 0; i < sizeof(eth_hsrsup_addr); i += 2) {
> +		ret = regmap_write(priv->regmap, XRS_ETH_ADDR_0(port, 1) + i,
> +				   eth_hsrsup_addr[i] |
> +				   (eth_hsrsup_addr[i + 1] << 8));
> +		if (ret)
> +			return ret;
> +	}
> +
> +	/* Mirror HSR/PRP supervision to CPU port */
> +	for (i = 0; i < ds->num_ports; i++) {
> +		if (dsa_is_cpu_port(ds, i))
> +			val |= BIT(i);
> +	}
> +
> +	ret = regmap_write(priv->regmap, XRS_ETH_ADDR_FWD_MIRROR(port, 1), val);
> +	if (ret)
> +		return ret;
> +
> +	/* Allow must be set prevent duplicate discard */
> +	ret = regmap_write(priv->regmap, XRS_ETH_ADDR_FWD_ALLOW(port, 1), val);
> +	if (ret)
> +		return ret;
> +
> +	return 0;
> +}
> +
>  static int xrs700x_port_setup(struct dsa_switch *ds, int port)
>  {
>  	bool cpu_port = dsa_is_cpu_port(ds, port);
> @@ -358,6 +405,10 @@ static int xrs700x_port_setup(struct dsa_switch *ds, int port)
>  		ret = xrs700x_port_add_bpdu_ipf(ds, port);
>  		if (ret)
>  			return ret;
> +
> +		ret = xrs700x_port_add_hsrsup_ipf(ds, port);
> +		if (ret)
> +			return ret;
>  	}
>  
>  	return 0;
> @@ -565,6 +616,14 @@ static int xrs700x_hsr_join(struct dsa_switch *ds, int port,
>  			    XRS_PORT_FORWARDING);
>  	regmap_fields_write(priv->ps_forward, port, XRS_PORT_FORWARDING);
>  
> +	/* Enable inbound policy added by xrs700x_port_add_hsrsup_ipf()
> +	 * which allows HSR/PRP supervision forwarding to the CPU port without
> +	 * discarding duplicates.
> +	 */
> +	regmap_update_bits(priv->regmap,
> +			   XRS_ETH_ADDR_CFG(partner->index, 1), 1, 1);
> +	regmap_update_bits(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 1, 1);
> +
>  	hsr_pair[0] = port;
>  	hsr_pair[1] = partner->index;
>  	for (i = 0; i < ARRAY_SIZE(hsr_pair); i++) {
> @@ -611,6 +670,14 @@ static int xrs700x_hsr_leave(struct dsa_switch *ds, int port,
>  			    XRS_PORT_FORWARDING);
>  	regmap_fields_write(priv->ps_forward, port, XRS_PORT_FORWARDING);
>  
> +	/* Disable inbound policy added by xrs700x_port_add_hsrsup_ipf()
> +	 * which allows HSR/PRP supervision forwarding to the CPU port without
> +	 * discarding duplicates.
> +	 */
> +	regmap_update_bits(priv->regmap,
> +			   XRS_ETH_ADDR_CFG(partner->index, 1), 1, 0);
> +	regmap_update_bits(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 1, 0);
> +
>  	hsr_pair[0] = port;
>  	hsr_pair[1] = partner->index;
>  	for (i = 0; i < ARRAY_SIZE(hsr_pair); i++) {
> -- 
> 2.11.0
>
George McCollister June 4, 2021, 7:50 p.m. UTC | #2
On Fri, Jun 4, 2021 at 1:55 PM Vladimir Oltean <olteanv@gmail.com> wrote:
>
> On Fri, Jun 04, 2021 at 11:29:22AM -0500, George McCollister wrote:
> > Add an inbound policy filter which matches the HSR/PRP supervision
> > MAC range and forwards to the CPU port without discarding duplicates.
> > This is required to correctly populate time_in[A] and time_in[B] in the
> > HSR/PRP node_table. Leave the policy disabled by default and
> > enable/disable it when joining/leaving hsr.
> >
> > Signed-off-by: George McCollister <george.mccollister@gmail.com>
> > ---
>
> What happens if duplicates are discarded for supervision frames and
> time_in[A] or time_in[B] is not updated in the node table?

It'll indicate an error condition that doesn't exist though everything
will work just fine.
It'll call hsr_nl_ringerror() and show only time_in[A] or time_in[B]
updating in /sys/kernel/debug/hsr/hsr0/node_table.

IEC 62439-3 specifies an SNMP MIB that contains the node_table. I've
implemented Net-SNMP mibgroup code to provide the node table data for
remote monitoring.

Basically if time_in[A] and time_in[B] aren't both updating it means:
For HSR there is a break in the ring.
For PRP: A device has a cable connecting to a switch unplugged or a failed port.

>
> >  drivers/net/dsa/xrs700x/xrs700x.c | 67 +++++++++++++++++++++++++++++++++++++++
> >  1 file changed, 67 insertions(+)
> >
> > diff --git a/drivers/net/dsa/xrs700x/xrs700x.c b/drivers/net/dsa/xrs700x/xrs700x.c
> > index fde6e99274b6..a79066174a77 100644
> > --- a/drivers/net/dsa/xrs700x/xrs700x.c
> > +++ b/drivers/net/dsa/xrs700x/xrs700x.c
> > @@ -79,6 +79,9 @@ static const struct xrs700x_mib xrs700x_mibs[] = {
> >       XRS700X_MIB(XRS_EARLY_DROP_L, "early_drop", tx_dropped),
> >  };
> >
> > +static const u8 eth_hsrsup_addr[ETH_ALEN] = {
> > +     0x01, 0x15, 0x4e, 0x00, 0x01, 0x00};
> > +
>
> What if the user sets a different last address byte for supervision frames?

Below I only actually use 40 bits in the policy. See comment in the code.

>
> >  static void xrs700x_get_strings(struct dsa_switch *ds, int port,
> >                               u32 stringset, u8 *data)
> >  {
> > @@ -329,6 +332,50 @@ static int xrs700x_port_add_bpdu_ipf(struct dsa_switch *ds, int port)
> >       return 0;
> >  }
> >
> > +/* Add an inbound policy filter which matches the HSR/PRP supervision MAC
> > + * range and forwards to the CPU port without discarding duplicates.
> > + * This is required to correctly populate the HSR/PRP node_table.
> > + * Leave the policy disabled, it will be enabled as needed.
> > + */
> > +static int xrs700x_port_add_hsrsup_ipf(struct dsa_switch *ds, int port)
> > +{
> > +     struct xrs700x *priv = ds->priv;
> > +     unsigned int val = 0;
> > +     int i = 0;
> > +     int ret;
> > +
> > +     /* Compare 40 bits of the destination MAC address. */
> > +     ret = regmap_write(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 40 << 2);
> > +     if (ret)
> > +             return ret;
> > +
> > +     /* match HSR/PRP supervision destination 01:15:4e:00:01:XX */
> > +     for (i = 0; i < sizeof(eth_hsrsup_addr); i += 2) {
> > +             ret = regmap_write(priv->regmap, XRS_ETH_ADDR_0(port, 1) + i,
> > +                                eth_hsrsup_addr[i] |
> > +                                (eth_hsrsup_addr[i + 1] << 8));
> > +             if (ret)
> > +                     return ret;
> > +     }
> > +
> > +     /* Mirror HSR/PRP supervision to CPU port */
> > +     for (i = 0; i < ds->num_ports; i++) {
> > +             if (dsa_is_cpu_port(ds, i))
> > +                     val |= BIT(i);
> > +     }
> > +
> > +     ret = regmap_write(priv->regmap, XRS_ETH_ADDR_FWD_MIRROR(port, 1), val);
> > +     if (ret)
> > +             return ret;
> > +
> > +     /* Allow must be set prevent duplicate discard */
> > +     ret = regmap_write(priv->regmap, XRS_ETH_ADDR_FWD_ALLOW(port, 1), val);
> > +     if (ret)
> > +             return ret;
> > +
> > +     return 0;
> > +}
> > +
> >  static int xrs700x_port_setup(struct dsa_switch *ds, int port)
> >  {
> >       bool cpu_port = dsa_is_cpu_port(ds, port);
> > @@ -358,6 +405,10 @@ static int xrs700x_port_setup(struct dsa_switch *ds, int port)
> >               ret = xrs700x_port_add_bpdu_ipf(ds, port);
> >               if (ret)
> >                       return ret;
> > +
> > +             ret = xrs700x_port_add_hsrsup_ipf(ds, port);
> > +             if (ret)
> > +                     return ret;
> >       }
> >
> >       return 0;
> > @@ -565,6 +616,14 @@ static int xrs700x_hsr_join(struct dsa_switch *ds, int port,
> >                           XRS_PORT_FORWARDING);
> >       regmap_fields_write(priv->ps_forward, port, XRS_PORT_FORWARDING);
> >
> > +     /* Enable inbound policy added by xrs700x_port_add_hsrsup_ipf()
> > +      * which allows HSR/PRP supervision forwarding to the CPU port without
> > +      * discarding duplicates.
> > +      */
> > +     regmap_update_bits(priv->regmap,
> > +                        XRS_ETH_ADDR_CFG(partner->index, 1), 1, 1);
> > +     regmap_update_bits(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 1, 1);
> > +
> >       hsr_pair[0] = port;
> >       hsr_pair[1] = partner->index;
> >       for (i = 0; i < ARRAY_SIZE(hsr_pair); i++) {
> > @@ -611,6 +670,14 @@ static int xrs700x_hsr_leave(struct dsa_switch *ds, int port,
> >                           XRS_PORT_FORWARDING);
> >       regmap_fields_write(priv->ps_forward, port, XRS_PORT_FORWARDING);
> >
> > +     /* Disable inbound policy added by xrs700x_port_add_hsrsup_ipf()
> > +      * which allows HSR/PRP supervision forwarding to the CPU port without
> > +      * discarding duplicates.
> > +      */
> > +     regmap_update_bits(priv->regmap,
> > +                        XRS_ETH_ADDR_CFG(partner->index, 1), 1, 0);
> > +     regmap_update_bits(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 1, 0);
> > +
> >       hsr_pair[0] = port;
> >       hsr_pair[1] = partner->index;
> >       for (i = 0; i < ARRAY_SIZE(hsr_pair); i++) {
> > --
> > 2.11.0
> >
Vladimir Oltean June 4, 2021, 8:39 p.m. UTC | #3
On Fri, Jun 04, 2021 at 02:50:31PM -0500, George McCollister wrote:
> On Fri, Jun 4, 2021 at 1:55 PM Vladimir Oltean <olteanv@gmail.com> wrote:
> >
> > On Fri, Jun 04, 2021 at 11:29:22AM -0500, George McCollister wrote:
> > > Add an inbound policy filter which matches the HSR/PRP supervision
> > > MAC range and forwards to the CPU port without discarding duplicates.
> > > This is required to correctly populate time_in[A] and time_in[B] in the
> > > HSR/PRP node_table. Leave the policy disabled by default and
> > > enable/disable it when joining/leaving hsr.
> > >
> > > Signed-off-by: George McCollister <george.mccollister@gmail.com>
> > > ---
> >
> > What happens if duplicates are discarded for supervision frames and
> > time_in[A] or time_in[B] is not updated in the node table?
> 
> It'll indicate an error condition that doesn't exist though everything
> will work just fine.
> It'll call hsr_nl_ringerror() and show only time_in[A] or time_in[B]
> updating in /sys/kernel/debug/hsr/hsr0/node_table.

I see.

> IEC 62439-3 specifies an SNMP MIB that contains the node_table. I've
> implemented Net-SNMP mibgroup code to provide the node table data for
> remote monitoring.
> 
> Basically if time_in[A] and time_in[B] aren't both updating it means:
> For HSR there is a break in the ring.
> For PRP: A device has a cable connecting to a switch unplugged or a failed port.
> 
> >
> > >  drivers/net/dsa/xrs700x/xrs700x.c | 67 +++++++++++++++++++++++++++++++++++++++
> > >  1 file changed, 67 insertions(+)
> > >
> > > diff --git a/drivers/net/dsa/xrs700x/xrs700x.c b/drivers/net/dsa/xrs700x/xrs700x.c
> > > index fde6e99274b6..a79066174a77 100644
> > > --- a/drivers/net/dsa/xrs700x/xrs700x.c
> > > +++ b/drivers/net/dsa/xrs700x/xrs700x.c
> > > @@ -79,6 +79,9 @@ static const struct xrs700x_mib xrs700x_mibs[] = {
> > >       XRS700X_MIB(XRS_EARLY_DROP_L, "early_drop", tx_dropped),
> > >  };
> > >
> > > +static const u8 eth_hsrsup_addr[ETH_ALEN] = {
> > > +     0x01, 0x15, 0x4e, 0x00, 0x01, 0x00};
> > > +
> >
> > What if the user sets a different last address byte for supervision frames?
> 
> Below I only actually use 40 bits in the policy. See comment in the code.

Yes, I didn't reach that far with reading.

> >
> > >  static void xrs700x_get_strings(struct dsa_switch *ds, int port,
> > >                               u32 stringset, u8 *data)
> > >  {
> > > @@ -329,6 +332,50 @@ static int xrs700x_port_add_bpdu_ipf(struct dsa_switch *ds, int port)
> > >       return 0;
> > >  }
> > >
> > > +/* Add an inbound policy filter which matches the HSR/PRP supervision MAC
> > > + * range and forwards to the CPU port without discarding duplicates.
> > > + * This is required to correctly populate the HSR/PRP node_table.
> > > + * Leave the policy disabled, it will be enabled as needed.
> > > + */
> > > +static int xrs700x_port_add_hsrsup_ipf(struct dsa_switch *ds, int port)
> > > +{
> > > +     struct xrs700x *priv = ds->priv;
> > > +     unsigned int val = 0;
> > > +     int i = 0;
> > > +     int ret;
> > > +
> > > +     /* Compare 40 bits of the destination MAC address. */
> > > +     ret = regmap_write(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 40 << 2);
> > > +     if (ret)
> > > +             return ret;
> > > +
> > > +     /* match HSR/PRP supervision destination 01:15:4e:00:01:XX */
> > > +     for (i = 0; i < sizeof(eth_hsrsup_addr); i += 2) {
> > > +             ret = regmap_write(priv->regmap, XRS_ETH_ADDR_0(port, 1) + i,
> > > +                                eth_hsrsup_addr[i] |
> > > +                                (eth_hsrsup_addr[i + 1] << 8));
> > > +             if (ret)
> > > +                     return ret;
> > > +     }
> > > +
> > > +     /* Mirror HSR/PRP supervision to CPU port */
> > > +     for (i = 0; i < ds->num_ports; i++) {
> > > +             if (dsa_is_cpu_port(ds, i))
> > > +                     val |= BIT(i);
> > > +     }
> > > +
> > > +     ret = regmap_write(priv->regmap, XRS_ETH_ADDR_FWD_MIRROR(port, 1), val);
> > > +     if (ret)
> > > +             return ret;
> > > +
> > > +     /* Allow must be set prevent duplicate discard */
> > > +     ret = regmap_write(priv->regmap, XRS_ETH_ADDR_FWD_ALLOW(port, 1), val);
> > > +     if (ret)
> > > +             return ret;
> > > +
> > > +     return 0;
> > > +}
> > > +
> > >  static int xrs700x_port_setup(struct dsa_switch *ds, int port)
> > >  {
> > >       bool cpu_port = dsa_is_cpu_port(ds, port);
> > > @@ -358,6 +405,10 @@ static int xrs700x_port_setup(struct dsa_switch *ds, int port)
> > >               ret = xrs700x_port_add_bpdu_ipf(ds, port);
> > >               if (ret)
> > >                       return ret;
> > > +
> > > +             ret = xrs700x_port_add_hsrsup_ipf(ds, port);
> > > +             if (ret)
> > > +                     return ret;
> > >       }
> > >
> > >       return 0;
> > > @@ -565,6 +616,14 @@ static int xrs700x_hsr_join(struct dsa_switch *ds, int port,
> > >                           XRS_PORT_FORWARDING);
> > >       regmap_fields_write(priv->ps_forward, port, XRS_PORT_FORWARDING);
> > >
> > > +     /* Enable inbound policy added by xrs700x_port_add_hsrsup_ipf()
> > > +      * which allows HSR/PRP supervision forwarding to the CPU port without
> > > +      * discarding duplicates.
> > > +      */
> > > +     regmap_update_bits(priv->regmap,
> > > +                        XRS_ETH_ADDR_CFG(partner->index, 1), 1, 1);
> > > +     regmap_update_bits(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 1, 1);
> > > +
> > >       hsr_pair[0] = port;
> > >       hsr_pair[1] = partner->index;
> > >       for (i = 0; i < ARRAY_SIZE(hsr_pair); i++) {
> > > @@ -611,6 +670,14 @@ static int xrs700x_hsr_leave(struct dsa_switch *ds, int port,
> > >                           XRS_PORT_FORWARDING);
> > >       regmap_fields_write(priv->ps_forward, port, XRS_PORT_FORWARDING);
> > >
> > > +     /* Disable inbound policy added by xrs700x_port_add_hsrsup_ipf()
> > > +      * which allows HSR/PRP supervision forwarding to the CPU port without
> > > +      * discarding duplicates.
> > > +      */
> > > +     regmap_update_bits(priv->regmap,
> > > +                        XRS_ETH_ADDR_CFG(partner->index, 1), 1, 0);
> > > +     regmap_update_bits(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 1, 0);
> > > +
> > >       hsr_pair[0] = port;
> > >       hsr_pair[1] = partner->index;
> > >       for (i = 0; i < ARRAY_SIZE(hsr_pair); i++) {
> > > --
> > > 2.11.0
> > >
Vladimir Oltean June 4, 2021, 8:50 p.m. UTC | #4
On Fri, Jun 04, 2021 at 11:29:22AM -0500, George McCollister wrote:
> Add an inbound policy filter which matches the HSR/PRP supervision
> MAC range and forwards to the CPU port without discarding duplicates.
> This is required to correctly populate time_in[A] and time_in[B] in the
> HSR/PRP node_table. Leave the policy disabled by default and
> enable/disable it when joining/leaving hsr.
> 
> Signed-off-by: George McCollister <george.mccollister@gmail.com>
> ---

Reviewed-by: Vladimir Oltean <olteanv@gmail.com>
patchwork-bot+netdevbpf@kernel.org June 4, 2021, 10 p.m. UTC | #5
Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Fri,  4 Jun 2021 11:29:22 -0500 you wrote:
> Add an inbound policy filter which matches the HSR/PRP supervision
> MAC range and forwards to the CPU port without discarding duplicates.
> This is required to correctly populate time_in[A] and time_in[B] in the
> HSR/PRP node_table. Leave the policy disabled by default and
> enable/disable it when joining/leaving hsr.
> 
> Signed-off-by: George McCollister <george.mccollister@gmail.com>
> 
> [...]

Here is the summary with links:
  - [net-next] net: dsa: xrs700x: allow HSR/PRP supervision dupes for node_table
    https://git.kernel.org/netdev/net-next/c/1a42624aecba

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
diff mbox series

Patch

diff --git a/drivers/net/dsa/xrs700x/xrs700x.c b/drivers/net/dsa/xrs700x/xrs700x.c
index fde6e99274b6..a79066174a77 100644
--- a/drivers/net/dsa/xrs700x/xrs700x.c
+++ b/drivers/net/dsa/xrs700x/xrs700x.c
@@ -79,6 +79,9 @@  static const struct xrs700x_mib xrs700x_mibs[] = {
 	XRS700X_MIB(XRS_EARLY_DROP_L, "early_drop", tx_dropped),
 };
 
+static const u8 eth_hsrsup_addr[ETH_ALEN] = {
+	0x01, 0x15, 0x4e, 0x00, 0x01, 0x00};
+
 static void xrs700x_get_strings(struct dsa_switch *ds, int port,
 				u32 stringset, u8 *data)
 {
@@ -329,6 +332,50 @@  static int xrs700x_port_add_bpdu_ipf(struct dsa_switch *ds, int port)
 	return 0;
 }
 
+/* Add an inbound policy filter which matches the HSR/PRP supervision MAC
+ * range and forwards to the CPU port without discarding duplicates.
+ * This is required to correctly populate the HSR/PRP node_table.
+ * Leave the policy disabled, it will be enabled as needed.
+ */
+static int xrs700x_port_add_hsrsup_ipf(struct dsa_switch *ds, int port)
+{
+	struct xrs700x *priv = ds->priv;
+	unsigned int val = 0;
+	int i = 0;
+	int ret;
+
+	/* Compare 40 bits of the destination MAC address. */
+	ret = regmap_write(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 40 << 2);
+	if (ret)
+		return ret;
+
+	/* match HSR/PRP supervision destination 01:15:4e:00:01:XX */
+	for (i = 0; i < sizeof(eth_hsrsup_addr); i += 2) {
+		ret = regmap_write(priv->regmap, XRS_ETH_ADDR_0(port, 1) + i,
+				   eth_hsrsup_addr[i] |
+				   (eth_hsrsup_addr[i + 1] << 8));
+		if (ret)
+			return ret;
+	}
+
+	/* Mirror HSR/PRP supervision to CPU port */
+	for (i = 0; i < ds->num_ports; i++) {
+		if (dsa_is_cpu_port(ds, i))
+			val |= BIT(i);
+	}
+
+	ret = regmap_write(priv->regmap, XRS_ETH_ADDR_FWD_MIRROR(port, 1), val);
+	if (ret)
+		return ret;
+
+	/* Allow must be set prevent duplicate discard */
+	ret = regmap_write(priv->regmap, XRS_ETH_ADDR_FWD_ALLOW(port, 1), val);
+	if (ret)
+		return ret;
+
+	return 0;
+}
+
 static int xrs700x_port_setup(struct dsa_switch *ds, int port)
 {
 	bool cpu_port = dsa_is_cpu_port(ds, port);
@@ -358,6 +405,10 @@  static int xrs700x_port_setup(struct dsa_switch *ds, int port)
 		ret = xrs700x_port_add_bpdu_ipf(ds, port);
 		if (ret)
 			return ret;
+
+		ret = xrs700x_port_add_hsrsup_ipf(ds, port);
+		if (ret)
+			return ret;
 	}
 
 	return 0;
@@ -565,6 +616,14 @@  static int xrs700x_hsr_join(struct dsa_switch *ds, int port,
 			    XRS_PORT_FORWARDING);
 	regmap_fields_write(priv->ps_forward, port, XRS_PORT_FORWARDING);
 
+	/* Enable inbound policy added by xrs700x_port_add_hsrsup_ipf()
+	 * which allows HSR/PRP supervision forwarding to the CPU port without
+	 * discarding duplicates.
+	 */
+	regmap_update_bits(priv->regmap,
+			   XRS_ETH_ADDR_CFG(partner->index, 1), 1, 1);
+	regmap_update_bits(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 1, 1);
+
 	hsr_pair[0] = port;
 	hsr_pair[1] = partner->index;
 	for (i = 0; i < ARRAY_SIZE(hsr_pair); i++) {
@@ -611,6 +670,14 @@  static int xrs700x_hsr_leave(struct dsa_switch *ds, int port,
 			    XRS_PORT_FORWARDING);
 	regmap_fields_write(priv->ps_forward, port, XRS_PORT_FORWARDING);
 
+	/* Disable inbound policy added by xrs700x_port_add_hsrsup_ipf()
+	 * which allows HSR/PRP supervision forwarding to the CPU port without
+	 * discarding duplicates.
+	 */
+	regmap_update_bits(priv->regmap,
+			   XRS_ETH_ADDR_CFG(partner->index, 1), 1, 0);
+	regmap_update_bits(priv->regmap, XRS_ETH_ADDR_CFG(port, 1), 1, 0);
+
 	hsr_pair[0] = port;
 	hsr_pair[1] = partner->index;
 	for (i = 0; i < ARRAY_SIZE(hsr_pair); i++) {