Re: [net-next PATCH 06/10] net: dsa: realtek: rtl8365mb: add VLAN support

From: Yury Norov

Date: Tue Mar 31 2026 - 22:33:40 EST


On Tue, Mar 31, 2026 at 08:00:06PM -0300, Luiz Angelo Daros de Luca wrote:
> Walleij <linusw@xxxxxxxxxx>,
> =?utf-8?q?Alvin_=C5=A0ipraga?= <alsi@xxxxxxxxxxxxxxx>,
> Yury Norov <yury.norov@xxxxxxxxx>,
> Rasmus Villemoes <linux@xxxxxxxxxxxxxxxxxx>,
> Russell King <linux@xxxxxxxxxxxxxxx>
> Cc: netdev@xxxxxxxxxxxxxxx, linux-kernel@xxxxxxxxxxxxxxx,
> Luiz Angelo Daros de Luca <luizluca@xxxxxxxxx>
> X-Mailer: b4 0.15.1
> Status: O
> Content-Length: 40249
> Lines: 1202
>
> From: Alvin Šipraga <alsi@xxxxxxxxxxxxxxx>
>
> Realtek RTL8365MB switches (a.k.a. RTL8367C family) use two different
> structures for VLANs:
>
> - VLAN4K: A full table with 4096 entries defining port membership and
> tagging.
> - VLANMC: A smaller table with 32 entries used primarily for PVID
> assignment.
>
> In this hardware, a port's PVID must point to an index in the VLANMC
> table rather than a VID directly. Since the VLANMC table is limited to
> 32 entries, the driver implements a dynamic allocation scheme to
> maximize resource usage:
>
> - VLAN4K is treated by the driver as the source of truth for membership.
> - A VLANMC entry is only allocated when a port is configured to use a
> specific VID as its PVID.
> - VLANMC entries are deleted when no longer needed as a PVID by any port.
>
> Although VLANMC has a members field, the switch only checks membership
> in the VLAN4K table. However, when a corresponding VLAN entry also exists
> in VLANMC, this driver keeps both membership configurations in sync.
>
> VLANMC index 0, although a valid entry, is reserved in this driver as a
> neutral PVID value for ports not using a specific PVID.
>
> In the subsequent RTL8367D switch family, VLANMC table was
> removed and PVID assignment was delegated to a dedicated set of
> registers.
>
> All ports start isolated, forwarding exclusively to CPU ports, and
> with VLAN transparent, ignoring VLAN membership. Once a member in a
> bridge, the port isolation is expanded to include the bridge members.
> When that bridge enables VLAN filtering, the VLAN transparent feature is
> disabled, letting the switch filter based on VLAN setup.
>
> Co-developed-by: Alvin Šipraga <alsi@xxxxxxxxxxxxxxx>
> Signed-off-by: Alvin Šipraga <alsi@xxxxxxxxxxxxxxx>
> Signed-off-by: Luiz Angelo Daros de Luca <luizluca@xxxxxxxxx>
> ---
> drivers/net/dsa/realtek/Makefile | 1 +
> drivers/net/dsa/realtek/rtl8365mb_main.c | 256 ++++++++++
> drivers/net/dsa/realtek/rtl8365mb_vlan.c | 805 +++++++++++++++++++++++++++++++
> drivers/net/dsa/realtek/rtl8365mb_vlan.h | 30 ++
> 4 files changed, 1092 insertions(+)
>
> diff --git a/drivers/net/dsa/realtek/Makefile b/drivers/net/dsa/realtek/Makefile
> index 99654c4c5a3d..b7fc4e852fd8 100644
> --- a/drivers/net/dsa/realtek/Makefile
> +++ b/drivers/net/dsa/realtek/Makefile
> @@ -18,3 +18,4 @@ endif
> obj-$(CONFIG_NET_DSA_REALTEK_RTL8365MB) += rtl8365mb.o
> rtl8365mb-objs := rtl8365mb_main.o \
> rtl8365mb_table.o \
> + rtl8365mb_vlan.o \
> diff --git a/drivers/net/dsa/realtek/rtl8365mb_main.c b/drivers/net/dsa/realtek/rtl8365mb_main.c
> index 530ff5503543..c604bd744d38 100644
> --- a/drivers/net/dsa/realtek/rtl8365mb_main.c
> +++ b/drivers/net/dsa/realtek/rtl8365mb_main.c
> @@ -104,6 +104,7 @@
> #include "realtek-smi.h"
> #include "realtek-mdio.h"
> #include "rtl83xx.h"
> +#include "rtl8365mb_vlan.h"
>
> /* Family-specific data and limits */
> #define RTL8365MB_PHYADDRMAX 7
> @@ -292,6 +293,67 @@
> #define RTL8365MB_MSTI_CTRL_PORT_STATE_MASK(_physport) \
> (0x3 << RTL8365MB_MSTI_CTRL_PORT_STATE_OFFSET((_physport)))
>
> +/* Miscellaneous port configuration register, incl. VLAN egress mode */
> +#define RTL8365MB_PORT_MISC_CFG_REG_BASE 0x000E
> +#define RTL8365MB_PORT_MISC_CFG_REG(_p) \
> + (RTL8365MB_PORT_MISC_CFG_REG_BASE + ((_p) << 5))
> +#define RTL8365MB_PORT_MISC_CFG_SMALL_TAG_IPG_MASK 0x8000
> +#define RTL8365MB_PORT_MISC_CFG_TX_ITFSP_MODE_MASK 0x4000
> +#define RTL8365MB_PORT_MISC_CFG_FLOWCTRL_INDEP_MASK 0x2000
> +#define RTL8365MB_PORT_MISC_CFG_DOT1Q_REMARK_ENABLE_MASK 0x1000
> +#define RTL8365MB_PORT_MISC_CFG_INGRESSBW_FLOWCTRL_MASK 0x0800
> +#define RTL8365MB_PORT_MISC_CFG_INGRESSBW_IFG_MASK 0x0400
> +#define RTL8365MB_PORT_MISC_CFG_RX_SPC_MASK 0x0200
> +#define RTL8365MB_PORT_MISC_CFG_CRC_SKIP_MASK 0x0100
> +#define RTL8365MB_PORT_MISC_CFG_PKTGEN_TX_FIRST_MASK 0x0080
> +#define RTL8365MB_PORT_MISC_CFG_MAC_LOOPBACK_MASK 0x0040
> +/* See &rtl8365mb_vlan_egress_mode */
> +#define RTL8365MB_PORT_MISC_CFG_VLAN_EGRESS_MODE_MASK 0x0030
> +#define RTL8365MB_PORT_MISC_CFG_CONGESTION_SUSTAIN_TIME_MASK 0x000F
> +
> +/**
> + * enum rtl8365mb_vlan_egress_mode - port VLAN engress mode
> + * @RTL8365MB_VLAN_EGRESS_MODE_ORIGINAL: follow untag mask in VLAN4k table entry
> + * @RTL8365MB_VLAN_EGRESS_MODE_KEEP: the VLAN tag format of egressed packets
> + * will remain the same as their ingressed format, but the priority and VID
> + * fields may be altered
> + * @RTL8365MB_VLAN_EGRESS_MODE_PRI_TAG: always egress with priority tag
> + * @RTL8365MB_VLAN_EGRESS_MODE_REAL_KEEP: the VLAN tag format of egressed
> + * packets will remain the same as their ingressed format, and neither the
> + * priority nor VID fields can be altered
> + */
> +enum rtl8365mb_vlan_egress_mode {
> + RTL8365MB_VLAN_EGRESS_MODE_ORIGINAL = 0,
> + RTL8365MB_VLAN_EGRESS_MODE_KEEP = 1,
> + RTL8365MB_VLAN_EGRESS_MODE_PRI_TAG = 2,
> + RTL8365MB_VLAN_EGRESS_MODE_REAL_KEEP = 3,
> +};
> +
> +/* VLAN control register */
> +#define RTL8365MB_VLAN_CTRL_REG 0x07A8
> +#define RTL8365MB_VLAN_CTRL_EN_MASK 0x0001
> +
> +/* VLAN ingress filter register */
> +#define RTL8365MB_VLAN_INGRESS_REG 0x07A9
> +#define RTL8365MB_VLAN_INGRESS_MASK GENMASK(10, 0)
> +#define RTL8365MB_VLAN_INGRESS_FILTER_PORT_EN_OFFSET(_p) (_p)
> +#define RTL8365MB_VLAN_INGRESS_FILTER_PORT_EN_MASK(_p) BIT(_p)
> +
> +/* VLAN "transparent" setting registers */
> +#define RTL8365MB_VLAN_EGRESS_TRANSPARENT_REG_BASE 0x09D0
> +#define RTL8365MB_VLAN_EGRESS_TRANSPARENT_REG(_p) \
> + (RTL8365MB_VLAN_EGRESS_TRANSPARENT_REG_BASE + (_p))
> +
> +/* Frame type filtering registers */
> +#define RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_BASE 0x07aa
> +#define RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_REG(port) \
> + (RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_BASE + ((port) >> 3))
> +/* required as FIELD_PREP cannot use non-constant masks */
> +#define RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_MASK(port) \
> + (0x3 << RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_OFFSET(port))
> +#define RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_OFFSET(port) \
> + (((port) & 0x7) << 1)
> +
> /* MIB counter value registers */
> #define RTL8365MB_MIB_COUNTER_BASE 0x1000
> #define RTL8365MB_MIB_COUNTER_REG(_x) (RTL8365MB_MIB_COUNTER_BASE + (_x))
> @@ -1196,6 +1258,183 @@ static void rtl8365mb_port_stp_state_set(struct dsa_switch *ds, int port,
> val << RTL8365MB_MSTI_CTRL_PORT_STATE_OFFSET(port));
> }
>
> +static int rtl8365mb_port_set_transparent(struct realtek_priv *priv,
> + int igr_port, int egr_port,
> + bool enable)
> +{
> + dev_dbg(priv->dev, "%s transparent VLAN from %d to %d\n",
> + enable ? "Enable" : "Disable", igr_port, egr_port);
> +
> + /* "Transparent" between the two ports means that packets forwarded by
> + * igr_port and egressed on egr_port will not be filtered by the usual
> + * VLAN membership settings.
> + */
> + return regmap_update_bits(priv->map,
> + RTL8365MB_VLAN_EGRESS_TRANSPARENT_REG(egr_port),
> + BIT(igr_port), enable ? BIT(igr_port) : 0);
> +}
> +
> +static int rtl8365mb_port_set_ingress_filtering(struct realtek_priv *priv,
> + int port, bool enable)
> +{
> + /* Ingress filtering enabled: Discard VLAN-tagged frames if the port is
> + * not a member of the VLAN with which the packet is associated.
> + * Untagged packets will also be discarded unless the port has a PVID
> + * programmed. Priority-tagged frames are treated as untagged frames.
> + *
> + * Ingress filtering disabled: Accept all tagged and untagged frames.
> + */
> + return regmap_update_bits(priv->map, RTL8365MB_VLAN_INGRESS_REG,
> + RTL8365MB_VLAN_INGRESS_FILTER_PORT_EN_MASK(port),
> + enable ?
> + RTL8365MB_VLAN_INGRESS_FILTER_PORT_EN_MASK(port) :
> + 0);
> +}
> +
> +static int rtl8365mb_port_vlan_filtering(struct dsa_switch *ds, int port,
> + bool vlan_filtering,
> + struct netlink_ext_ack *extack)
> +{
> + struct realtek_priv *priv = ds->priv;
> + struct dsa_port *dp;
> + int ret;
> +
> + dev_dbg(priv->dev, "port %d: %s VLAN filtering\n", port,
> + vlan_filtering ? "enable" : "disable");
> +
> + /* (En|dis)able incoming packets filter, i.e. ignore VLAN membership */
> + dsa_switch_for_each_available_port(dp, ds) {
> + /* after considering port isolation, if not filtering
> + * allow forwarding from port to dp->index ignoring
> + * VLAN membership.
> + */
> + ret = rtl8365mb_port_set_transparent(priv, port, dp->index,
> + !vlan_filtering);
> + if (ret)
> + return ret;
> + }
> +
> + /* If the port is not in the member set, the frame will be dropped */
> + return rtl8365mb_port_set_ingress_filtering(priv, port,
> + vlan_filtering);
> +}
> +
> +static int rtl8365mb_port_vlan_add(struct dsa_switch *ds, int port,
> + const struct switchdev_obj_port_vlan *vlan,
> + struct netlink_ext_ack *extack)
> +{
> + bool untagged = !!(vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED);
> + bool pvid = !!(vlan->flags & BRIDGE_VLAN_INFO_PVID);
> + struct realtek_priv *priv = ds->priv;
> + int ret;
> +
> + dev_dbg(priv->dev, "add VLAN %d on port %d, %s, %s\n",
> + vlan->vid, port, untagged ? "untagged" : "tagged",
> + pvid ? "PVID" : "no PVID");
> + /* add port to vlan4k. It knows nothing about PVID */
> + ret = rtl8365mb_vlan_4k_port_add(ds, port, vlan, extack);
> + if (ret)
> + return ret;
> +
> + /* VlanMC knows nothing about untagged but it is required for PVID */
> + ret = rtl8365mb_vlan_mc_port_add(ds, port, vlan, extack);
> + if (ret)
> + goto undo_vlan_4k;
> +
> + /* Set PVID if needed */
> + if (pvid) {
> + ret = rtl8365mb_vlan_pvid_port_add(ds, port, vlan, extack);
> + if (ret)
> + goto undo_vlan_mc;
> + }
> +
> + return 0;
> +
> +undo_vlan_mc:
> + (void)rtl8365mb_vlan_mc_port_del(ds, port, vlan);
> +
> +undo_vlan_4k:
> + (void)rtl8365mb_vlan_4k_port_del(ds, port, vlan);
> + return ret;
> +}
> +
> +static int rtl8365mb_port_vlan_del(struct dsa_switch *ds, int port,
> + const struct switchdev_obj_port_vlan *vlan)
> +{
> + bool untagged = !!(vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED);
> + bool pvid = !!(vlan->flags & BRIDGE_VLAN_INFO_PVID);
> + struct realtek_priv *priv = ds->priv;
> + int ret1, ret2, ret3;
> +
> + dev_dbg(priv->dev, "del VLAN %d on port %d, %s, %s\n",
> + vlan->vid, port, untagged ? "untagged" : "tagged",
> + pvid ? "PVID" : "no PVID");
> +
> + ret1 = rtl8365mb_vlan_pvid_port_del(ds, port, vlan);
> + ret2 = rtl8365mb_vlan_mc_port_del(ds, port, vlan);
> + ret3 = rtl8365mb_vlan_4k_port_del(ds, port, vlan);
> +
> + return ret1 ?: ret2 ?: ret3;
> +}
> +
> +static int
> +rtl8365mb_port_set_vlan_egress_mode(struct realtek_priv *priv, int port,
> + enum rtl8365mb_vlan_egress_mode mode)
> +{
> + u32 val;
> +
> + val = FIELD_PREP(RTL8365MB_PORT_MISC_CFG_VLAN_EGRESS_MODE_MASK, mode);
> + return regmap_update_bits(priv->map,
> + RTL8365MB_PORT_MISC_CFG_REG(port),
> + RTL8365MB_PORT_MISC_CFG_VLAN_EGRESS_MODE_MASK, val);
> +}
> +
> +/* VLAN support is always enabled in the switch.
> + *
> + * All ports starts with vlan-unaware state, letting non-bridge port forward
> + * to CPU.
> + *
> + */
> +static int rtl8365mb_vlan_setup(struct dsa_switch *ds)
> +{
> + struct realtek_priv *priv = ds->priv;
> + enum rtl8365mb_vlan_egress_mode mode;
> + struct dsa_port *dp;
> + int ret;
> +
> + dsa_switch_for_each_user_port(dp, ds) {
> + /* Disable vlan-filtering for all ports */
> + ret = rtl8365mb_port_vlan_filtering(ds, dp->index, false, NULL);
> + if (ret) {
> + dev_err(priv->dev,
> + "Failed to disable vlan filtering on port %d\n",
> + dp->index);
> + return ret;
> + }
> +
> + /* The switch default is RTL8365MB_VLAN_EGRESS_MODE_REAL_KEEP,
> + * that forwards the packet as it was received. However,
> + * different untag settings will require the switch to update
> + * the tag.
> + */
> + mode = RTL8365MB_VLAN_EGRESS_MODE_ORIGINAL;
> + ret = rtl8365mb_port_set_vlan_egress_mode(priv, dp->index,
> + mode);
> + if (ret) {
> + dev_err(priv->dev,
> + "Failed to set port %d egress mode\n",
> + dp->index);
> + return ret;
> + }
> + }
> +
> + /* VLAN is always enabled. */
> + ret = regmap_update_bits(priv->map, RTL8365MB_VLAN_CTRL_REG,
> + RTL8365MB_VLAN_CTRL_EN_MASK,
> + FIELD_PREP(RTL8365MB_VLAN_CTRL_EN_MASK, 1));
> + return ret;
> +}
> +
> static int rtl8365mb_port_set_learning(struct realtek_priv *priv, int port,
> bool enable)
> {
> @@ -2014,6 +2253,20 @@ static int rtl8365mb_setup(struct dsa_switch *ds)
> if (ret)
> goto out_teardown_irq;
>
> + /* vlan config will only be effective for ports with vlan filtering */
> + ds->configure_vlan_while_not_filtering = true;
> + /* Set up VLAN */
> + ret = rtl8365mb_vlan_setup(ds);
> + if (ret)
> + goto out_teardown_irq;
> +
> + /* Set maximum packet length to 1536 bytes */
> + ret = regmap_update_bits(priv->map, RTL8365MB_CFG0_MAX_LEN_REG,
> + RTL8365MB_CFG0_MAX_LEN_MASK,
> + FIELD_PREP(RTL8365MB_CFG0_MAX_LEN_MASK, 1536));
> + if (ret)
> + goto out_teardown_irq;
> +
> ret = rtl83xx_setup_user_mdio(ds);
> if (ret) {
> dev_err(priv->dev, "could not set up MDIO bus\n");
> @@ -2124,6 +2377,9 @@ static const struct dsa_switch_ops rtl8365mb_switch_ops = {
> .teardown = rtl8365mb_teardown,
> .phylink_get_caps = rtl8365mb_phylink_get_caps,
> .port_stp_state_set = rtl8365mb_port_stp_state_set,
> + .port_vlan_add = rtl8365mb_port_vlan_add,
> + .port_vlan_del = rtl8365mb_port_vlan_del,
> + .port_vlan_filtering = rtl8365mb_port_vlan_filtering,
> .get_strings = rtl8365mb_get_strings,
> .get_ethtool_stats = rtl8365mb_get_ethtool_stats,
> .get_sset_count = rtl8365mb_get_sset_count,
> diff --git a/drivers/net/dsa/realtek/rtl8365mb_vlan.c b/drivers/net/dsa/realtek/rtl8365mb_vlan.c
> new file mode 100644
> index 000000000000..1ac36c06dcf7
> --- /dev/null
> +++ b/drivers/net/dsa/realtek/rtl8365mb_vlan.c
> @@ -0,0 +1,805 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/* VLAN configuration interface for the rtl8365mb switch family
> + *
> + * Copyright (C) 2022 Alvin Šipraga <alsi@xxxxxxxxxxxxxxx>
> + *
> + * VLAN configuration takes place in two separate domains of the switch: the
> + * VLAN4k table and the VLAN membership configuration (MC) database. While the
> + * VLAN4k table is exhaustive and can be fully populated with 4096 VLAN
> + * configurations, the same does not hold for the VLAN membership configuration
> + * database, which is limited to 32 entries.
> + *
> + * The switch will normally only use the VLAN4k table when making forwarding
> + * decisions. The VLAN membership configuration database is a vestigial ASIC
> + * design and is only used for a few specific features in the rtl8365mb
> + * family. This means that the limit of 32 entries should not hinder us in
> + * programming a huge number of VLANs into the switch.
> + *
> + * One necessary use of the VLAN membership configuration database is for the
> + * programming of a port-based VLAN ID (PVID). The PVID is programmed on a
> + * per-port basis via register field, which refers to a specific VLAN membership
> + * configuration via an index 0~31. In order to maintain coherent behaviour on a
> + * port with a PVID, it is necessary to keep the VLAN configuration synchronized
> + * between the VLAN4k table and the VLAN membership configuration database.
> + *
> + * Since VLAN membership configs are a scarce resource, it will only be used
> + * when strictly needed (i.e. a VLAN with members using PVID). Otherwise, the
> + * VLAN4k will be enough.
> + *
> + * With some exceptions, the entries in both the VLAN4k table and the VLAN
> + * membership configuration database offer the same configuration options. The
> + * differences are as follows:
> + *
> + * 1. VLAN4k entries can specify whether to use Independent or Shared VLAN
> + * Learning (IVL or SVL respectively). VLAN membership config entries
> + * cannot. This underscores the fact that VLAN membership configs are not
> + * involved in the learning process of the ASIC.
> + *
> + * 2. VLAN membership config entries use an "enhanced VLAN ID" (efid), which has
> + * a range 0~8191 compared with the standard 0~4095 range of the VLAN4k
> + * table. This underscores the fact that VLAN membership configs can be used
> + * to group ports on a layer beyond the standard VLAN configuration, which
> + * may be useful for ACL rules which specify alternative forwarding
> + * decisions.
> + *
> + * VLANMC index 0 is reserved as a neutral PVID, used for vlan-unaware ports.
> + *
> + */
> +
> +#include "rtl8365mb_vlan.h"
> +#include "rtl8365mb_table.h"
> +#include <linux/if_bridge.h>
> +#include <linux/regmap.h>
> +
> +/* CVLAN (i.e. VLAN4k) table entry layout, u16[3] */
> +#define RTL8365MB_CVLAN_ENTRY_SIZE 3 /* 48-bits */
> +#define RTL8365MB_CVLAN_ENTRY_D0_MBR_MASK GENMASK(7, 0)
> +#define RTL8365MB_CVLAN_ENTRY_D0_UNTAG_MASK GENMASK(15, 8)
> +#define RTL8365MB_CVLAN_ENTRY_D1_FID_MASK GENMASK(3, 0)
> +#define RTL8365MB_CVLAN_ENTRY_D1_VBPEN_MASK GENMASK(4, 4)
> +#define RTL8365MB_CVLAN_ENTRY_D1_VBPRI_MASK GENMASK(7, 5)
> +#define RTL8365MB_CVLAN_ENTRY_D1_ENVLANPOL_MASK GENMASK(8, 8)
> +#define RTL8365MB_CVLAN_ENTRY_D1_METERIDX_MASK GENMASK(13, 9)
> +#define RTL8365MB_CVLAN_ENTRY_D1_IVL_SVL_MASK GENMASK(14, 14)
> +/* extends RTL8365MB_CVLAN_ENTRY_D0_MBR_MASK */
> +#define RTL8365MB_CVLAN_ENTRY_D2_MBR_EXT_MASK GENMASK(2, 0)
> +/* extends RTL8365MB_CVLAN_ENTRY_D0_UNTAG_MASK */
> +#define RTL8365MB_CVLAN_ENTRY_D2_UNTAG_EXT_MASK GENMASK(5, 3)
> +/* extends RTL8365MB_CVLAN_ENTRY_D1_METERIDX_MASK */
> +#define RTL8365MB_CVLAN_ENTRY_D2_METERIDX_EXT_MASK GENMASK(6, 6)
> +
> +/* VLAN member configuration registers 0~31, u16[3] */
> +#define RTL8365MB_VLAN_MC_BASE 0x0728
> +#define RTL8365MB_VLAN_MC_ENTRY_SIZE 4 /* 64-bit */
> +#define RTL8365MB_VLAN_MC_REG(index) \
> + (RTL8365MB_VLAN_MC_BASE + \
> + (RTL8365MB_VLAN_MC_ENTRY_SIZE * (index)))
> +#define RTL8365MB_VLAN_MC_D0_MBR_MASK GENMASK(10, 0)
> +#define RTL8365MB_VLAN_MC_D1_FID_MASK GENMASK(3, 0)
> +
> +#define RTL8365MB_VLAN_MC_D2_VBPEN_MASK GENMASK(0, 0)
> +#define RTL8365MB_VLAN_MC_D2_VBPRI_MASK GENMASK(3, 1)
> +#define RTL8365MB_VLAN_MC_D2_ENVLANPOL_MASK GENMASK(4, 4)
> +#define RTL8365MB_VLAN_MC_D2_METERIDX_MASK GENMASK(10, 5)
> +#define RTL8365MB_VLAN_MC_D3_EVID_MASK GENMASK(12, 0)
> +
> +/* Some limits for VLAN4k/VLAN membership config entries */
> +#define RTL8365MB_PRIORITYMAX 7
> +#define RTL8365MB_FIDMAX 15
> +#define RTL8365MB_METERMAX 63
> +#define RTL8365MB_VLAN_MCMAX 31
> +
> +/* RTL8367S supports 4k vlans (vid<=4095) and 32 enhanced vlans
> + * for VIDs up to 8191
> + */
> +#define RTL8365MB_MAX_4K_VID 0x0FFF /* 4095 */
> +#define RTL8365MB_MAX_MC_VID 0x1FFF /* 8191 */
> +
> + /* Port-based VID registers 0~5 - each one holds an MC index for two ports */
> +#define RTL8365MB_VLAN_PVID_CTRL_BASE 0x0700
> +#define RTL8365MB_VLAN_PVID_CTRL_REG(_p) \
> + (RTL8365MB_VLAN_PVID_CTRL_BASE + ((_p) >> 1))
> +#define RTL8365MB_VLAN_PVID_CTRL_PORT0_MCIDX_MASK 0x001F
> +#define RTL8365MB_VLAN_PVID_CTRL_PORT1_MCIDX_MASK 0x1F00
> +#define RTL8365MB_VLAN_PVID_CTRL_PORT_MCIDX_OFFSET(_p) \
> + (((_p) & 1) << 3)
> +#define RTL8365MB_VLAN_PVID_CTRL_PORT_MCIDX_MASK(_p) \
> + (0x1F << RTL8365MB_VLAN_PVID_CTRL_PORT_MCIDX_OFFSET(_p))
> +
> +/* Frame type filtering registers */
> +#define RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_BASE 0x07aa
> +#define RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_REG(port) \
> + (RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_BASE + ((port) >> 3))
> +/* required as FIELD_PREP cannot use non-constant masks */
> +#define RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_MASK(port) \
> + (0x3 << RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_OFFSET(port))
> +#define RTL8365MB_VLAN_ACCEPT_FRAME_TYPE_OFFSET(port) \
> + (((port) & 0x7) << 1)
> +
> +/**
> + * struct rtl8365mb_vlan4k - VLAN4k table entry
> + * @vid: VLAN ID (0~4095)
> + * @member: port mask of ports in this VLAN
> + * @untag: port mask of ports which untag on egress
> + * @fid: filter ID - only used with SVL (unused)
> + * @priority: priority classification (unused)
> + * @priority_en: enable priority (unused)
> + * @policing_en: enable policing (unused)
> + * @ivl_en: enable IVL instead of default SVL
> + * @meteridx: metering index (unused)
> + *
> + * This structure is used to get/set entries in the VLAN4k table. The
> + * VLAN4k table dictates the VLAN configuration for the switch for the
> + * vast majority of features.
> + */
> +struct rtl8365mb_vlan4k {
> + u16 vid;
> + u16 member;
> + u16 untag;
> + u8 fid : 4;
> + u8 priority : 3;
> + u8 priority_en : 1;
> + u8 policing_en : 1;
> + u8 ivl_en : 1;
> + u8 meteridx : 6;
> +};
> +
> +/**
> + * struct rtl8365mb_vlanmc - VLAN membership config
> + * @evid: Enhanced VLAN ID (0~8191)
> + * @member: port mask of ports in this VLAN
> + * @fid: filter ID - only used with SVL (unused)
> + * @priority: priority classification (unused)
> + * @priority_en: enable priority (unused)
> + * @policing_en: enable policing (unused)
> + * @meteridx: metering index (unused)
> + *
> + * This structure is used to get/set entries in the VLAN membership
> + * configuration database. This feature is largely vestigial, but
> + * still needed for at least the following features:
> + * - PVID configuration
> + * - ACL configuration
> + * - selection of VLAN by the CPU tag when VSEL=1, although the switch
> + * can also select VLAN based on the VLAN tag if VSEL=0
> + *
> + * This is a low-level structure and it is recommended to interface with
> + * the VLAN membership config database via &struct rtl8365mb_vlanmc_entry.
> + */
> +struct rtl8365mb_vlanmc {
> + u16 evid;
> + u16 member;
> + u8 fid : 4;
> + u8 priority : 3;
> + u8 priority_en : 1;
> + u8 policing_en : 1;
> + u8 meteridx : 6;
> +};
> +
> +enum rtl8365mb_frame_ingress {
> + RTL8365MB_FRAME_TYPE_ANY_FRAME = 0,
> + RTL8365MB_FRAME_TYPE_TAGGED_ONLY,
> + RTL8365MB_FRAME_TYPE_UNTAGGED_ONLY,
> +};
> +
> +static int rtl8365mb_vlan_4k_read(struct realtek_priv *priv, u16 vid,
> + struct rtl8365mb_vlan4k *vlan4k)
> +{
> + u16 data[RTL8365MB_CVLAN_ENTRY_SIZE];
> + int ret;
> +
> + ret = rtl8365mb_table_query(priv, RTL8365MB_TABLE_CVLAN,
> + RTL8365MB_TABLE_OP_READ, &vid, 0, 0,
> + data, ARRAY_SIZE(data));
> + if (ret)
> + return ret;
> +
> + /* Unpack table entry */
> + memset(vlan4k, 0, sizeof(*vlan4k));
> + vlan4k->vid = vid;
> + vlan4k->member =
> + FIELD_GET(RTL8365MB_CVLAN_ENTRY_D0_MBR_MASK, data[0]) |
> + (FIELD_GET(RTL8365MB_CVLAN_ENTRY_D2_MBR_EXT_MASK, data[2])
> + << FIELD_WIDTH(RTL8365MB_CVLAN_ENTRY_D0_MBR_MASK));

This FIELD_GET() << FIELD_WIDTH() resembles FIELD_PREP(), except that
you skip some checks. Is that intentional?