On 5/30/2020 4:51 AM, Vladimir Oltean wrote:
> From: Vladimir Oltean <vladimir.olt...@nxp.com>
> 
> Currently Felix and Ocelot share the same bit layout in these per-port
> registers, but Seville does not. So we need reg_fields for that.
> 
> Actually since these are per-port registers, we need to also specify the
> number of ports, and register size per port, and use the regmap API for
> multiple ports.
> 
> Signed-off-by: Vladimir Oltean <vladimir.olt...@nxp.com>
> ---
> Changes in v2:
> None.

[snip]


>       /* Core: Enable port for frame transfer */
> -     ocelot_write_rix(ocelot, QSYS_SWITCH_PORT_MODE_INGRESS_DROP_MODE |
> -                      QSYS_SWITCH_PORT_MODE_SCH_NEXT_CFG(1) |
> -                      QSYS_SWITCH_PORT_MODE_PORT_ENA,
> -                      QSYS_SWITCH_PORT_MODE, port);
> +     ocelot_fields_write(ocelot, port,
> +                         QSYS_SWITCH_PORT_MODE_INGRESS_DROP_MODE, 1);
> +     ocelot_fields_write(ocelot, port,
> +                         QSYS_SWITCH_PORT_MODE_PORT_ENA, 1);

I am a bit confused throughout this patch sometimes SCH_NEXT_CFG is set
to 1, sometimes not, this makes it a bit harder to review the
conversion, assuming this is fine:

Reviewed-by: Florian Fainelli <f.faine...@gmail.com>
-- 
Florian

Reply via email to