mirror of https://gitee.com/openkylin/linux.git
net: dsa: mv88e6xxx: add port mask helper
Add a mv88e6xxx_port_mask() helper to get the bitmask of ports in a switch chip, that will be used in several features. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0f230ca940
commit
4d294af2cd
|
@ -944,6 +944,11 @@ static inline unsigned int mv88e6xxx_num_ports(struct mv88e6xxx_chip *chip)
|
||||||
return chip->info->num_ports;
|
return chip->info->num_ports;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline u16 mv88e6xxx_port_mask(struct mv88e6xxx_chip *chip)
|
||||||
|
{
|
||||||
|
return GENMASK(mv88e6xxx_num_ports(chip) - 1, 0);
|
||||||
|
}
|
||||||
|
|
||||||
int mv88e6xxx_read(struct mv88e6xxx_chip *chip, int addr, int reg, u16 *val);
|
int mv88e6xxx_read(struct mv88e6xxx_chip *chip, int addr, int reg, u16 *val);
|
||||||
int mv88e6xxx_write(struct mv88e6xxx_chip *chip, int addr, int reg, u16 val);
|
int mv88e6xxx_write(struct mv88e6xxx_chip *chip, int addr, int reg, u16 val);
|
||||||
int mv88e6xxx_update(struct mv88e6xxx_chip *chip, int addr, int reg,
|
int mv88e6xxx_update(struct mv88e6xxx_chip *chip, int addr, int reg,
|
||||||
|
|
|
@ -539,7 +539,7 @@ int mv88e6351_port_set_egress_unknowns(struct mv88e6xxx_chip *chip, int port,
|
||||||
|
|
||||||
int mv88e6xxx_port_set_vlan_map(struct mv88e6xxx_chip *chip, int port, u16 map)
|
int mv88e6xxx_port_set_vlan_map(struct mv88e6xxx_chip *chip, int port, u16 map)
|
||||||
{
|
{
|
||||||
const u16 mask = GENMASK(mv88e6xxx_num_ports(chip) - 1, 0);
|
const u16 mask = mv88e6xxx_port_mask(chip);
|
||||||
u16 reg;
|
u16 reg;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue