On Sat, Mar 26, 2016 at 09:59:40PM -0400, Vivien Didelot wrote: > The 6185 family does not have a ATU FID register. It splits it in the > ATU Control register and the ATU Operation.
Looking at the reference code, the following devices have a FID register: ( DEV_88E6097_FAMILY | DEV_88E6165_FAMILY | DEV_88E6351_FAMILY | DEV_88E6352_FAMILY) If there are 256 databases, it gets split across the two registers. If there are only 64, it all goes in the ATU operation. Andrew > > Add 6185 support for FID (a.k.a. DBNum) in ATU commands. > > Signed-off-by: Vivien Didelot <vivien.dide...@savoirfairelinux.com> > --- > drivers/net/dsa/mv88e6xxx.c | 14 ++++++++++++++ > drivers/net/dsa/mv88e6xxx.h | 2 +- > 2 files changed, 15 insertions(+), 1 deletion(-) > > diff --git a/drivers/net/dsa/mv88e6xxx.c b/drivers/net/dsa/mv88e6xxx.c > index df3f219..4b3c466 100644 > --- a/drivers/net/dsa/mv88e6xxx.c > +++ b/drivers/net/dsa/mv88e6xxx.c > @@ -961,6 +961,20 @@ static int _mv88e6xxx_atu_cmd(struct dsa_switch *ds, u16 > fid, u16 cmd) > ret = _mv88e6xxx_reg_write(ds, REG_GLOBAL, GLOBAL_ATU_FID, fid); > if (ret < 0) > return ret; > + } else if (mv88e6xxx_6185_family(ds)) { > + /* ATU DBNum[7:4] are located in ATU Control 15:12 */ > + ret = _mv88e6xxx_reg_read(ds, REG_GLOBAL, GLOBAL_ATU_CONTROL); > + if (ret < 0) > + return ret; > + > + ret = _mv88e6xxx_reg_write(ds, REG_GLOBAL, GLOBAL_ATU_CONTROL, > + (ret & 0xfff) | > + ((fid << 8) & 0xf000)); > + if (ret < 0) > + return ret; > + > + /* ATU DBNum[3:0] are located in ATU Operation 3:0 */ > + cmd |= fid & 0xf; > } else { > return -EOPNOTSUPP; > } > diff --git a/drivers/net/dsa/mv88e6xxx.h b/drivers/net/dsa/mv88e6xxx.h > index febab76..94d3cb3 100644 > --- a/drivers/net/dsa/mv88e6xxx.h > +++ b/drivers/net/dsa/mv88e6xxx.h > @@ -366,7 +366,7 @@ struct mv88e6xxx_switch_id { > }; > > struct mv88e6xxx_atu_entry { > - u16 fid; > + u16 fid; /* 8-bit DBNum in 88E6185 family */ > u8 state; > bool trunk; > u16 portv_trunkid; > -- > 2.7.4 >