mirror of
https://github.com/torvalds/linux.git
synced 2025-11-08 20:49:35 +02:00
net: sparx5: use SPX5_CONST for constants which already have a symbol
Now that we have indentified all the chip constants, update the use of them where a symbol is already defined for the constant. Reviewed-by: Steen Hegelund <Steen.Hegelund@microchip.com> Signed-off-by: Daniel Machon <daniel.machon@microchip.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
parent
d5a1eb4845
commit
3f9e46347a
15 changed files with 90 additions and 63 deletions
|
|
@ -131,7 +131,7 @@ static enum sparx5_cal_bw sparx5_get_port_cal_speed(struct sparx5 *sparx5,
|
||||||
{
|
{
|
||||||
struct sparx5_port *port;
|
struct sparx5_port *port;
|
||||||
|
|
||||||
if (portno >= SPX5_PORTS) {
|
if (portno >= sparx5->data->consts->n_ports) {
|
||||||
/* Internal ports */
|
/* Internal ports */
|
||||||
if (portno == SPX5_PORT_CPU_0 || portno == SPX5_PORT_CPU_1) {
|
if (portno == SPX5_PORT_CPU_0 || portno == SPX5_PORT_CPU_1) {
|
||||||
/* Equals 1.25G */
|
/* Equals 1.25G */
|
||||||
|
|
@ -159,6 +159,7 @@ static enum sparx5_cal_bw sparx5_get_port_cal_speed(struct sparx5 *sparx5,
|
||||||
/* Auto configure the QSYS calendar based on port configuration */
|
/* Auto configure the QSYS calendar based on port configuration */
|
||||||
int sparx5_config_auto_calendar(struct sparx5 *sparx5)
|
int sparx5_config_auto_calendar(struct sparx5 *sparx5)
|
||||||
{
|
{
|
||||||
|
const struct sparx5_consts *consts = sparx5->data->consts;
|
||||||
u32 cal[7], value, idx, portno;
|
u32 cal[7], value, idx, portno;
|
||||||
u32 max_core_bw;
|
u32 max_core_bw;
|
||||||
u32 total_bw = 0, used_port_bw = 0;
|
u32 total_bw = 0, used_port_bw = 0;
|
||||||
|
|
@ -174,7 +175,7 @@ int sparx5_config_auto_calendar(struct sparx5 *sparx5)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Setup the calendar with the bandwidth to each port */
|
/* Setup the calendar with the bandwidth to each port */
|
||||||
for (portno = 0; portno < SPX5_PORTS_ALL; portno++) {
|
for (portno = 0; portno < consts->n_ports_all; portno++) {
|
||||||
u64 reg, offset, this_bw;
|
u64 reg, offset, this_bw;
|
||||||
|
|
||||||
spd = sparx5_get_port_cal_speed(sparx5, portno);
|
spd = sparx5_get_port_cal_speed(sparx5, portno);
|
||||||
|
|
@ -182,7 +183,7 @@ int sparx5_config_auto_calendar(struct sparx5 *sparx5)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
this_bw = sparx5_cal_speed_to_value(spd);
|
this_bw = sparx5_cal_speed_to_value(spd);
|
||||||
if (portno < SPX5_PORTS)
|
if (portno < consts->n_ports)
|
||||||
used_port_bw += this_bw;
|
used_port_bw += this_bw;
|
||||||
else
|
else
|
||||||
/* Internal ports are granted half the value */
|
/* Internal ports are granted half the value */
|
||||||
|
|
@ -213,7 +214,7 @@ int sparx5_config_auto_calendar(struct sparx5 *sparx5)
|
||||||
sparx5, QSYS_CAL_CTRL);
|
sparx5, QSYS_CAL_CTRL);
|
||||||
|
|
||||||
/* Assign port bandwidth to auto calendar */
|
/* Assign port bandwidth to auto calendar */
|
||||||
for (idx = 0; idx < ARRAY_SIZE(cal); idx++)
|
for (idx = 0; idx < consts->n_auto_cals; idx++)
|
||||||
spx5_wr(cal[idx], sparx5, QSYS_CAL_AUTO(idx));
|
spx5_wr(cal[idx], sparx5, QSYS_CAL_AUTO(idx));
|
||||||
|
|
||||||
/* Increase grant rate of all ports to account for
|
/* Increase grant rate of all ports to account for
|
||||||
|
|
@ -304,7 +305,7 @@ static int sparx5_dsm_calendar_calc(struct sparx5 *sparx5, u32 taxi,
|
||||||
for (idx = 0; idx < SPX5_DSM_CAL_MAX_DEVS_PER_TAXI; idx++) {
|
for (idx = 0; idx < SPX5_DSM_CAL_MAX_DEVS_PER_TAXI; idx++) {
|
||||||
u32 portno = data->taxi_ports[idx];
|
u32 portno = data->taxi_ports[idx];
|
||||||
|
|
||||||
if (portno < SPX5_TAXI_PORT_MAX) {
|
if (portno < sparx5->data->consts->n_ports_all) {
|
||||||
data->taxi_speeds[idx] = sparx5_cal_speed_to_value
|
data->taxi_speeds[idx] = sparx5_cal_speed_to_value
|
||||||
(sparx5_get_port_cal_speed(sparx5, portno));
|
(sparx5_get_port_cal_speed(sparx5, portno));
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -573,7 +574,7 @@ int sparx5_config_dsm_calendar(struct sparx5 *sparx5)
|
||||||
if (!data)
|
if (!data)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
for (taxi = 0; taxi < SPX5_DSM_CAL_TAXIS; ++taxi) {
|
for (taxi = 0; taxi < sparx5->data->consts->n_dsm_cal_taxis; ++taxi) {
|
||||||
err = sparx5_dsm_calendar_calc(sparx5, taxi, data);
|
err = sparx5_dsm_calendar_calc(sparx5, taxi, data);
|
||||||
if (err) {
|
if (err) {
|
||||||
dev_err(sparx5->dev, "DSM calendar calculation failed\n");
|
dev_err(sparx5->dev, "DSM calendar calculation failed\n");
|
||||||
|
|
|
||||||
|
|
@ -234,10 +234,11 @@ static int sparx5_dcb_ieee_dscp_setdel(struct net_device *dev,
|
||||||
struct dcb_app *))
|
struct dcb_app *))
|
||||||
{
|
{
|
||||||
struct sparx5_port *port = netdev_priv(dev);
|
struct sparx5_port *port = netdev_priv(dev);
|
||||||
|
struct sparx5 *sparx5 = port->sparx5;
|
||||||
struct sparx5_port *port_itr;
|
struct sparx5_port *port_itr;
|
||||||
int err, i;
|
int err, i;
|
||||||
|
|
||||||
for (i = 0; i < SPX5_PORTS; i++) {
|
for (i = 0; i < sparx5->data->consts->n_ports; i++) {
|
||||||
port_itr = port->sparx5->ports[i];
|
port_itr = port->sparx5->ports[i];
|
||||||
if (!port_itr)
|
if (!port_itr)
|
||||||
continue;
|
continue;
|
||||||
|
|
@ -386,7 +387,7 @@ int sparx5_dcb_init(struct sparx5 *sparx5)
|
||||||
struct sparx5_port *port;
|
struct sparx5_port *port;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < SPX5_PORTS; i++) {
|
for (i = 0; i < sparx5->data->consts->n_ports; i++) {
|
||||||
port = sparx5->ports[i];
|
port = sparx5->ports[i];
|
||||||
if (!port)
|
if (!port)
|
||||||
continue;
|
continue;
|
||||||
|
|
|
||||||
|
|
@ -1122,7 +1122,7 @@ static void sparx5_update_stats(struct sparx5 *sparx5)
|
||||||
{
|
{
|
||||||
int idx;
|
int idx;
|
||||||
|
|
||||||
for (idx = 0; idx < SPX5_PORTS; idx++)
|
for (idx = 0; idx < sparx5->data->consts->n_ports; idx++)
|
||||||
if (sparx5->ports[idx])
|
if (sparx5->ports[idx])
|
||||||
sparx5_update_port_stats(sparx5, idx);
|
sparx5_update_port_stats(sparx5, idx);
|
||||||
}
|
}
|
||||||
|
|
@ -1228,6 +1228,7 @@ const struct ethtool_ops sparx5_ethtool_ops = {
|
||||||
|
|
||||||
int sparx_stats_init(struct sparx5 *sparx5)
|
int sparx_stats_init(struct sparx5 *sparx5)
|
||||||
{
|
{
|
||||||
|
const struct sparx5_consts *consts = sparx5->data->consts;
|
||||||
char queue_name[32];
|
char queue_name[32];
|
||||||
int portno;
|
int portno;
|
||||||
|
|
||||||
|
|
@ -1235,14 +1236,15 @@ int sparx_stats_init(struct sparx5 *sparx5)
|
||||||
sparx5->num_stats = spx5_stats_count;
|
sparx5->num_stats = spx5_stats_count;
|
||||||
sparx5->num_ethtool_stats = ARRAY_SIZE(sparx5_stats_layout);
|
sparx5->num_ethtool_stats = ARRAY_SIZE(sparx5_stats_layout);
|
||||||
sparx5->stats = devm_kcalloc(sparx5->dev,
|
sparx5->stats = devm_kcalloc(sparx5->dev,
|
||||||
SPX5_PORTS_ALL * sparx5->num_stats,
|
consts->n_ports_all *
|
||||||
|
sparx5->num_stats,
|
||||||
sizeof(u64), GFP_KERNEL);
|
sizeof(u64), GFP_KERNEL);
|
||||||
if (!sparx5->stats)
|
if (!sparx5->stats)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
mutex_init(&sparx5->queue_stats_lock);
|
mutex_init(&sparx5->queue_stats_lock);
|
||||||
sparx5_config_stats(sparx5);
|
sparx5_config_stats(sparx5);
|
||||||
for (portno = 0; portno < SPX5_PORTS; portno++)
|
for (portno = 0; portno < consts->n_ports; portno++)
|
||||||
if (sparx5->ports[portno])
|
if (sparx5->ports[portno])
|
||||||
sparx5_config_port_stats(sparx5, portno);
|
sparx5_config_port_stats(sparx5, portno);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -156,7 +156,9 @@ static bool sparx5_fdma_rx_get_frame(struct sparx5 *sparx5, struct sparx5_rx *rx
|
||||||
/* Now do the normal processing of the skb */
|
/* Now do the normal processing of the skb */
|
||||||
sparx5_ifh_parse((u32 *)skb->data, &fi);
|
sparx5_ifh_parse((u32 *)skb->data, &fi);
|
||||||
/* Map to port netdev */
|
/* Map to port netdev */
|
||||||
port = fi.src_port < SPX5_PORTS ? sparx5->ports[fi.src_port] : NULL;
|
port = fi.src_port < sparx5->data->consts->n_ports ?
|
||||||
|
sparx5->ports[fi.src_port] :
|
||||||
|
NULL;
|
||||||
if (!port || !port->ndev) {
|
if (!port || !port->ndev) {
|
||||||
dev_err(sparx5->dev, "Data on inactive port %d\n", fi.src_port);
|
dev_err(sparx5->dev, "Data on inactive port %d\n", fi.src_port);
|
||||||
sparx5_xtr_flush(sparx5, XTR_QUEUE);
|
sparx5_xtr_flush(sparx5, XTR_QUEUE);
|
||||||
|
|
@ -296,7 +298,7 @@ static void sparx5_fdma_rx_init(struct sparx5 *sparx5,
|
||||||
fdma->ops.dataptr_cb = &sparx5_fdma_rx_dataptr_cb;
|
fdma->ops.dataptr_cb = &sparx5_fdma_rx_dataptr_cb;
|
||||||
fdma->ops.nextptr_cb = &fdma_nextptr_cb;
|
fdma->ops.nextptr_cb = &fdma_nextptr_cb;
|
||||||
/* Fetch a netdev for SKB and NAPI use, any will do */
|
/* Fetch a netdev for SKB and NAPI use, any will do */
|
||||||
for (idx = 0; idx < SPX5_PORTS; ++idx) {
|
for (idx = 0; idx < sparx5->data->consts->n_ports; ++idx) {
|
||||||
struct sparx5_port *port = sparx5->ports[idx];
|
struct sparx5_port *port = sparx5->ports[idx];
|
||||||
|
|
||||||
if (port && port->ndev) {
|
if (port && port->ndev) {
|
||||||
|
|
|
||||||
|
|
@ -80,15 +80,16 @@ static void sparx5_mact_select(struct sparx5 *sparx5,
|
||||||
int sparx5_mact_learn(struct sparx5 *sparx5, int pgid,
|
int sparx5_mact_learn(struct sparx5 *sparx5, int pgid,
|
||||||
const unsigned char mac[ETH_ALEN], u16 vid)
|
const unsigned char mac[ETH_ALEN], u16 vid)
|
||||||
{
|
{
|
||||||
|
const struct sparx5_consts *consts = sparx5->data->consts;
|
||||||
int addr, type, ret;
|
int addr, type, ret;
|
||||||
|
|
||||||
if (pgid < SPX5_PORTS) {
|
if (pgid < consts->n_ports) {
|
||||||
type = MAC_ENTRY_ADDR_TYPE_UPSID_PN;
|
type = MAC_ENTRY_ADDR_TYPE_UPSID_PN;
|
||||||
addr = pgid % 32;
|
addr = pgid % 32;
|
||||||
addr += (pgid / 32) << 5; /* Add upsid */
|
addr += (pgid / 32) << 5; /* Add upsid */
|
||||||
} else {
|
} else {
|
||||||
type = MAC_ENTRY_ADDR_TYPE_MC_IDX;
|
type = MAC_ENTRY_ADDR_TYPE_MC_IDX;
|
||||||
addr = pgid - SPX5_PORTS;
|
addr = pgid - consts->n_ports;
|
||||||
}
|
}
|
||||||
|
|
||||||
mutex_lock(&sparx5->lock);
|
mutex_lock(&sparx5->lock);
|
||||||
|
|
@ -371,7 +372,7 @@ static void sparx5_mact_handle_entry(struct sparx5 *sparx5,
|
||||||
return;
|
return;
|
||||||
|
|
||||||
port = LRN_MAC_ACCESS_CFG_2_MAC_ENTRY_ADDR_GET(cfg2);
|
port = LRN_MAC_ACCESS_CFG_2_MAC_ENTRY_ADDR_GET(cfg2);
|
||||||
if (port >= SPX5_PORTS)
|
if (port >= sparx5->data->consts->n_ports)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!test_bit(port, sparx5->bridge_mask))
|
if (!test_bit(port, sparx5->bridge_mask))
|
||||||
|
|
|
||||||
|
|
@ -31,8 +31,6 @@
|
||||||
|
|
||||||
const struct sparx5_regs *regs;
|
const struct sparx5_regs *regs;
|
||||||
|
|
||||||
#define QLIM_WM(fraction) \
|
|
||||||
((SPX5_BUFFER_MEMORY / SPX5_BUFFER_CELL_SZ - 100) * (fraction) / 100)
|
|
||||||
#define IO_RANGES 3
|
#define IO_RANGES 3
|
||||||
|
|
||||||
struct initial_port_config {
|
struct initial_port_config {
|
||||||
|
|
@ -544,6 +542,12 @@ static int sparx5_init_coreclock(struct sparx5 *sparx5)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static u32 qlim_wm(struct sparx5 *sparx5, int fraction)
|
||||||
|
{
|
||||||
|
return (sparx5->data->consts->buf_size / SPX5_BUFFER_CELL_SZ - 100) *
|
||||||
|
fraction / 100;
|
||||||
|
}
|
||||||
|
|
||||||
static int sparx5_qlim_set(struct sparx5 *sparx5)
|
static int sparx5_qlim_set(struct sparx5 *sparx5)
|
||||||
{
|
{
|
||||||
u32 res, dp, prio;
|
u32 res, dp, prio;
|
||||||
|
|
@ -559,10 +563,10 @@ static int sparx5_qlim_set(struct sparx5 *sparx5)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Set 80,90,95,100% of memory size for top watermarks */
|
/* Set 80,90,95,100% of memory size for top watermarks */
|
||||||
spx5_wr(QLIM_WM(80), sparx5, XQS_QLIMIT_SHR_QLIM_CFG(0));
|
spx5_wr(qlim_wm(sparx5, 80), sparx5, XQS_QLIMIT_SHR_QLIM_CFG(0));
|
||||||
spx5_wr(QLIM_WM(90), sparx5, XQS_QLIMIT_SHR_CTOP_CFG(0));
|
spx5_wr(qlim_wm(sparx5, 90), sparx5, XQS_QLIMIT_SHR_CTOP_CFG(0));
|
||||||
spx5_wr(QLIM_WM(95), sparx5, XQS_QLIMIT_SHR_ATOP_CFG(0));
|
spx5_wr(qlim_wm(sparx5, 95), sparx5, XQS_QLIMIT_SHR_ATOP_CFG(0));
|
||||||
spx5_wr(QLIM_WM(100), sparx5, XQS_QLIMIT_SHR_TOP_CFG(0));
|
spx5_wr(qlim_wm(sparx5, 100), sparx5, XQS_QLIMIT_SHR_TOP_CFG(0));
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
@ -584,7 +588,7 @@ static void sparx5_board_init(struct sparx5 *sparx5)
|
||||||
GCB_HW_SGPIO_SD_CFG);
|
GCB_HW_SGPIO_SD_CFG);
|
||||||
|
|
||||||
/* Refer to LOS SGPIO */
|
/* Refer to LOS SGPIO */
|
||||||
for (idx = 0; idx < SPX5_PORTS; idx++)
|
for (idx = 0; idx < sparx5->data->consts->n_ports; idx++)
|
||||||
if (sparx5->ports[idx])
|
if (sparx5->ports[idx])
|
||||||
if (sparx5->ports[idx]->conf.sd_sgpio != ~0)
|
if (sparx5->ports[idx]->conf.sd_sgpio != ~0)
|
||||||
spx5_wr(sparx5->ports[idx]->conf.sd_sgpio,
|
spx5_wr(sparx5->ports[idx]->conf.sd_sgpio,
|
||||||
|
|
@ -595,6 +599,7 @@ static void sparx5_board_init(struct sparx5 *sparx5)
|
||||||
static int sparx5_start(struct sparx5 *sparx5)
|
static int sparx5_start(struct sparx5 *sparx5)
|
||||||
{
|
{
|
||||||
u8 broadcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
|
u8 broadcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
|
||||||
|
const struct sparx5_consts *consts = sparx5->data->consts;
|
||||||
char queue_name[32];
|
char queue_name[32];
|
||||||
u32 idx;
|
u32 idx;
|
||||||
int err;
|
int err;
|
||||||
|
|
@ -608,7 +613,7 @@ static int sparx5_start(struct sparx5 *sparx5)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Enable CPU ports */
|
/* Enable CPU ports */
|
||||||
for (idx = SPX5_PORTS; idx < SPX5_PORTS_ALL; idx++)
|
for (idx = consts->n_ports; idx < consts->n_ports_all; idx++)
|
||||||
spx5_rmw(QFWD_SWITCH_PORT_MODE_PORT_ENA_SET(1),
|
spx5_rmw(QFWD_SWITCH_PORT_MODE_PORT_ENA_SET(1),
|
||||||
QFWD_SWITCH_PORT_MODE_PORT_ENA,
|
QFWD_SWITCH_PORT_MODE_PORT_ENA,
|
||||||
sparx5,
|
sparx5,
|
||||||
|
|
|
||||||
|
|
@ -290,7 +290,7 @@ int sparx5_register_netdevs(struct sparx5 *sparx5)
|
||||||
int portno;
|
int portno;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
for (portno = 0; portno < SPX5_PORTS; portno++)
|
for (portno = 0; portno < sparx5->data->consts->n_ports; portno++)
|
||||||
if (sparx5->ports[portno]) {
|
if (sparx5->ports[portno]) {
|
||||||
err = register_netdev(sparx5->ports[portno]->ndev);
|
err = register_netdev(sparx5->ports[portno]->ndev);
|
||||||
if (err) {
|
if (err) {
|
||||||
|
|
@ -309,7 +309,7 @@ void sparx5_destroy_netdevs(struct sparx5 *sparx5)
|
||||||
struct sparx5_port *port;
|
struct sparx5_port *port;
|
||||||
int portno;
|
int portno;
|
||||||
|
|
||||||
for (portno = 0; portno < SPX5_PORTS; portno++) {
|
for (portno = 0; portno < sparx5->data->consts->n_ports; portno++) {
|
||||||
port = sparx5->ports[portno];
|
port = sparx5->ports[portno];
|
||||||
if (port && port->phylink) {
|
if (port && port->phylink) {
|
||||||
/* Disconnect the phy */
|
/* Disconnect the phy */
|
||||||
|
|
@ -327,8 +327,7 @@ void sparx5_unregister_netdevs(struct sparx5 *sparx5)
|
||||||
{
|
{
|
||||||
int portno;
|
int portno;
|
||||||
|
|
||||||
for (portno = 0; portno < SPX5_PORTS; portno++)
|
for (portno = 0; portno < sparx5->data->consts->n_ports; portno++)
|
||||||
if (sparx5->ports[portno])
|
if (sparx5->ports[portno])
|
||||||
unregister_netdev(sparx5->ports[portno]->ndev);
|
unregister_netdev(sparx5->ports[portno]->ndev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ static void sparx5_xtr_grp(struct sparx5 *sparx5, u8 grp, bool byte_swap)
|
||||||
sparx5_ifh_parse(ifh, &fi);
|
sparx5_ifh_parse(ifh, &fi);
|
||||||
|
|
||||||
/* Map to port netdev */
|
/* Map to port netdev */
|
||||||
port = fi.src_port < SPX5_PORTS ?
|
port = fi.src_port < sparx5->data->consts->n_ports ?
|
||||||
sparx5->ports[fi.src_port] : NULL;
|
sparx5->ports[fi.src_port] : NULL;
|
||||||
if (!port || !port->ndev) {
|
if (!port || !port->ndev) {
|
||||||
dev_err(sparx5->dev, "Data on inactive port %d\n", fi.src_port);
|
dev_err(sparx5->dev, "Data on inactive port %d\n", fi.src_port);
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ void sparx5_pgid_init(struct sparx5 *spx5)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < PGID_TABLE_SIZE; i++)
|
for (i = 0; i < spx5->data->consts->n_pgids; i++)
|
||||||
spx5->pgid_map[i] = SPX5_PGID_FREE;
|
spx5->pgid_map[i] = SPX5_PGID_FREE;
|
||||||
|
|
||||||
/* Reserved for unicast, flood control, broadcast, and CPU.
|
/* Reserved for unicast, flood control, broadcast, and CPU.
|
||||||
|
|
@ -22,7 +22,7 @@ int sparx5_pgid_alloc_mcast(struct sparx5 *spx5, u16 *idx)
|
||||||
/* The multicast area starts at index 65, but the first 7
|
/* The multicast area starts at index 65, but the first 7
|
||||||
* are reserved for flood masks and CPU. Start alloc after that.
|
* are reserved for flood masks and CPU. Start alloc after that.
|
||||||
*/
|
*/
|
||||||
for (i = PGID_MCAST_START; i < PGID_TABLE_SIZE; i++) {
|
for (i = PGID_MCAST_START; i < spx5->data->consts->n_pgids; i++) {
|
||||||
if (spx5->pgid_map[i] == SPX5_PGID_FREE) {
|
if (spx5->pgid_map[i] == SPX5_PGID_FREE) {
|
||||||
spx5->pgid_map[i] = SPX5_PGID_MULTICAST;
|
spx5->pgid_map[i] = SPX5_PGID_MULTICAST;
|
||||||
*idx = i;
|
*idx = i;
|
||||||
|
|
@ -35,7 +35,7 @@ int sparx5_pgid_alloc_mcast(struct sparx5 *spx5, u16 *idx)
|
||||||
|
|
||||||
int sparx5_pgid_free(struct sparx5 *spx5, u16 idx)
|
int sparx5_pgid_free(struct sparx5 *spx5, u16 idx)
|
||||||
{
|
{
|
||||||
if (idx <= PGID_CPU || idx >= PGID_TABLE_SIZE)
|
if (idx <= PGID_CPU || idx >= spx5->data->consts->n_pgids)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
if (spx5->pgid_map[idx] == SPX5_PGID_FREE)
|
if (spx5->pgid_map[idx] == SPX5_PGID_FREE)
|
||||||
|
|
|
||||||
|
|
@ -22,34 +22,38 @@ static struct sparx5_pool_entry sparx5_psfp_sf_pool[SPX5_PSFP_SF_CNT];
|
||||||
|
|
||||||
static int sparx5_psfp_sf_get(struct sparx5 *sparx5, u32 *id)
|
static int sparx5_psfp_sf_get(struct sparx5 *sparx5, u32 *id)
|
||||||
{
|
{
|
||||||
return sparx5_pool_get(sparx5_psfp_sf_pool, SPX5_PSFP_SF_CNT, id);
|
return sparx5_pool_get(sparx5_psfp_sf_pool,
|
||||||
|
sparx5->data->consts->n_filters, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sparx5_psfp_sf_put(struct sparx5 *sparx5, u32 id)
|
static int sparx5_psfp_sf_put(struct sparx5 *sparx5, u32 id)
|
||||||
{
|
{
|
||||||
return sparx5_pool_put(sparx5_psfp_sf_pool, SPX5_PSFP_SF_CNT, id);
|
return sparx5_pool_put(sparx5_psfp_sf_pool,
|
||||||
|
sparx5->data->consts->n_filters, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sparx5_psfp_sg_get(struct sparx5 *sparx5, u32 idx, u32 *id)
|
static int sparx5_psfp_sg_get(struct sparx5 *sparx5, u32 idx, u32 *id)
|
||||||
{
|
{
|
||||||
return sparx5_pool_get_with_idx(sparx5_psfp_sg_pool, SPX5_PSFP_SG_CNT,
|
return sparx5_pool_get_with_idx(sparx5_psfp_sg_pool,
|
||||||
idx, id);
|
sparx5->data->consts->n_gates, idx, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sparx5_psfp_sg_put(struct sparx5 *sparx5, u32 id)
|
static int sparx5_psfp_sg_put(struct sparx5 *sparx5, u32 id)
|
||||||
{
|
{
|
||||||
return sparx5_pool_put(sparx5_psfp_sg_pool, SPX5_PSFP_SG_CNT, id);
|
return sparx5_pool_put(sparx5_psfp_sg_pool,
|
||||||
|
sparx5->data->consts->n_gates, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sparx5_psfp_fm_get(struct sparx5 *sparx5, u32 idx, u32 *id)
|
static int sparx5_psfp_fm_get(struct sparx5 *sparx5, u32 idx, u32 *id)
|
||||||
{
|
{
|
||||||
return sparx5_pool_get_with_idx(sparx5_psfp_fm_pool, SPX5_SDLB_CNT, idx,
|
return sparx5_pool_get_with_idx(sparx5_psfp_fm_pool,
|
||||||
id);
|
sparx5->data->consts->n_sdlbs, idx, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int sparx5_psfp_fm_put(struct sparx5 *sparx5, u32 id)
|
static int sparx5_psfp_fm_put(struct sparx5 *sparx5, u32 id)
|
||||||
{
|
{
|
||||||
return sparx5_pool_put(sparx5_psfp_fm_pool, SPX5_SDLB_CNT, id);
|
return sparx5_pool_put(sparx5_psfp_fm_pool,
|
||||||
|
sparx5->data->consts->n_sdlbs, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
u32 sparx5_psfp_isdx_get_sf(struct sparx5 *sparx5, u32 isdx)
|
u32 sparx5_psfp_isdx_get_sf(struct sparx5 *sparx5, u32 isdx)
|
||||||
|
|
@ -318,7 +322,7 @@ void sparx5_psfp_init(struct sparx5 *sparx5)
|
||||||
const struct sparx5_sdlb_group *group;
|
const struct sparx5_sdlb_group *group;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < SPX5_SDLB_GROUP_CNT; i++) {
|
for (i = 0; i < sparx5->data->consts->n_lb_groups; i++) {
|
||||||
group = &sdlb_groups[i];
|
group = &sdlb_groups[i];
|
||||||
sparx5_sdlb_group_init(sparx5, group->max_rate,
|
sparx5_sdlb_group_init(sparx5, group->max_rate,
|
||||||
group->min_burst, group->frame_size, i);
|
group->min_burst, group->frame_size, i);
|
||||||
|
|
|
||||||
|
|
@ -274,6 +274,7 @@ static void sparx5_get_hwtimestamp(struct sparx5 *sparx5,
|
||||||
u32 nsec)
|
u32 nsec)
|
||||||
{
|
{
|
||||||
/* Read current PTP time to get seconds */
|
/* Read current PTP time to get seconds */
|
||||||
|
const struct sparx5_consts *consts = sparx5->data->consts;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
u32 curr_nsec;
|
u32 curr_nsec;
|
||||||
|
|
||||||
|
|
@ -285,10 +286,10 @@ static void sparx5_get_hwtimestamp(struct sparx5 *sparx5,
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
||||||
sparx5, PTP_PTP_PIN_CFG(TOD_ACC_PIN));
|
sparx5, PTP_PTP_PIN_CFG(consts->tod_pin));
|
||||||
|
|
||||||
ts->tv_sec = spx5_rd(sparx5, PTP_PTP_TOD_SEC_LSB(TOD_ACC_PIN));
|
ts->tv_sec = spx5_rd(sparx5, PTP_PTP_TOD_SEC_LSB(consts->tod_pin));
|
||||||
curr_nsec = spx5_rd(sparx5, PTP_PTP_TOD_NSEC(TOD_ACC_PIN));
|
curr_nsec = spx5_rd(sparx5, PTP_PTP_TOD_NSEC(consts->tod_pin));
|
||||||
|
|
||||||
ts->tv_nsec = nsec;
|
ts->tv_nsec = nsec;
|
||||||
|
|
||||||
|
|
@ -440,8 +441,11 @@ static int sparx5_ptp_settime64(struct ptp_clock_info *ptp,
|
||||||
{
|
{
|
||||||
struct sparx5_phc *phc = container_of(ptp, struct sparx5_phc, info);
|
struct sparx5_phc *phc = container_of(ptp, struct sparx5_phc, info);
|
||||||
struct sparx5 *sparx5 = phc->sparx5;
|
struct sparx5 *sparx5 = phc->sparx5;
|
||||||
|
const struct sparx5_consts *consts;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
|
consts = sparx5->data->consts;
|
||||||
|
|
||||||
spin_lock_irqsave(&sparx5->ptp_clock_lock, flags);
|
spin_lock_irqsave(&sparx5->ptp_clock_lock, flags);
|
||||||
|
|
||||||
/* Must be in IDLE mode before the time can be loaded */
|
/* Must be in IDLE mode before the time can be loaded */
|
||||||
|
|
@ -451,14 +455,14 @@ static int sparx5_ptp_settime64(struct ptp_clock_info *ptp,
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
||||||
sparx5, PTP_PTP_PIN_CFG(TOD_ACC_PIN));
|
sparx5, PTP_PTP_PIN_CFG(consts->tod_pin));
|
||||||
|
|
||||||
/* Set new value */
|
/* Set new value */
|
||||||
spx5_wr(PTP_PTP_TOD_SEC_MSB_PTP_TOD_SEC_MSB_SET(upper_32_bits(ts->tv_sec)),
|
spx5_wr(PTP_PTP_TOD_SEC_MSB_PTP_TOD_SEC_MSB_SET(upper_32_bits(ts->tv_sec)),
|
||||||
sparx5, PTP_PTP_TOD_SEC_MSB(TOD_ACC_PIN));
|
sparx5, PTP_PTP_TOD_SEC_MSB(consts->tod_pin));
|
||||||
spx5_wr(lower_32_bits(ts->tv_sec),
|
spx5_wr(lower_32_bits(ts->tv_sec),
|
||||||
sparx5, PTP_PTP_TOD_SEC_LSB(TOD_ACC_PIN));
|
sparx5, PTP_PTP_TOD_SEC_LSB(consts->tod_pin));
|
||||||
spx5_wr(ts->tv_nsec, sparx5, PTP_PTP_TOD_NSEC(TOD_ACC_PIN));
|
spx5_wr(ts->tv_nsec, sparx5, PTP_PTP_TOD_NSEC(consts->tod_pin));
|
||||||
|
|
||||||
/* Apply new values */
|
/* Apply new values */
|
||||||
spx5_rmw(PTP_PTP_PIN_CFG_PTP_PIN_ACTION_SET(PTP_PIN_ACTION_LOAD) |
|
spx5_rmw(PTP_PTP_PIN_CFG_PTP_PIN_ACTION_SET(PTP_PIN_ACTION_LOAD) |
|
||||||
|
|
@ -467,7 +471,7 @@ static int sparx5_ptp_settime64(struct ptp_clock_info *ptp,
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
||||||
sparx5, PTP_PTP_PIN_CFG(TOD_ACC_PIN));
|
sparx5, PTP_PTP_PIN_CFG(consts->tod_pin));
|
||||||
|
|
||||||
spin_unlock_irqrestore(&sparx5->ptp_clock_lock, flags);
|
spin_unlock_irqrestore(&sparx5->ptp_clock_lock, flags);
|
||||||
|
|
||||||
|
|
@ -478,10 +482,13 @@ int sparx5_ptp_gettime64(struct ptp_clock_info *ptp, struct timespec64 *ts)
|
||||||
{
|
{
|
||||||
struct sparx5_phc *phc = container_of(ptp, struct sparx5_phc, info);
|
struct sparx5_phc *phc = container_of(ptp, struct sparx5_phc, info);
|
||||||
struct sparx5 *sparx5 = phc->sparx5;
|
struct sparx5 *sparx5 = phc->sparx5;
|
||||||
|
const struct sparx5_consts *consts;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
time64_t s;
|
time64_t s;
|
||||||
s64 ns;
|
s64 ns;
|
||||||
|
|
||||||
|
consts = sparx5->data->consts;
|
||||||
|
|
||||||
spin_lock_irqsave(&sparx5->ptp_clock_lock, flags);
|
spin_lock_irqsave(&sparx5->ptp_clock_lock, flags);
|
||||||
|
|
||||||
spx5_rmw(PTP_PTP_PIN_CFG_PTP_PIN_ACTION_SET(PTP_PIN_ACTION_SAVE) |
|
spx5_rmw(PTP_PTP_PIN_CFG_PTP_PIN_ACTION_SET(PTP_PIN_ACTION_SAVE) |
|
||||||
|
|
@ -490,12 +497,12 @@ int sparx5_ptp_gettime64(struct ptp_clock_info *ptp, struct timespec64 *ts)
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
||||||
sparx5, PTP_PTP_PIN_CFG(TOD_ACC_PIN));
|
sparx5, PTP_PTP_PIN_CFG(consts->tod_pin));
|
||||||
|
|
||||||
s = spx5_rd(sparx5, PTP_PTP_TOD_SEC_MSB(TOD_ACC_PIN));
|
s = spx5_rd(sparx5, PTP_PTP_TOD_SEC_MSB(consts->tod_pin));
|
||||||
s <<= 32;
|
s <<= 32;
|
||||||
s |= spx5_rd(sparx5, PTP_PTP_TOD_SEC_LSB(TOD_ACC_PIN));
|
s |= spx5_rd(sparx5, PTP_PTP_TOD_SEC_LSB(consts->tod_pin));
|
||||||
ns = spx5_rd(sparx5, PTP_PTP_TOD_NSEC(TOD_ACC_PIN));
|
ns = spx5_rd(sparx5, PTP_PTP_TOD_NSEC(consts->tod_pin));
|
||||||
ns &= PTP_PTP_TOD_NSEC_PTP_TOD_NSEC;
|
ns &= PTP_PTP_TOD_NSEC_PTP_TOD_NSEC;
|
||||||
|
|
||||||
spin_unlock_irqrestore(&sparx5->ptp_clock_lock, flags);
|
spin_unlock_irqrestore(&sparx5->ptp_clock_lock, flags);
|
||||||
|
|
@ -515,6 +522,9 @@ static int sparx5_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
|
||||||
{
|
{
|
||||||
struct sparx5_phc *phc = container_of(ptp, struct sparx5_phc, info);
|
struct sparx5_phc *phc = container_of(ptp, struct sparx5_phc, info);
|
||||||
struct sparx5 *sparx5 = phc->sparx5;
|
struct sparx5 *sparx5 = phc->sparx5;
|
||||||
|
const struct sparx5_consts *consts;
|
||||||
|
|
||||||
|
consts = sparx5->data->consts;
|
||||||
|
|
||||||
if (delta > -(NSEC_PER_SEC / 2) && delta < (NSEC_PER_SEC / 2)) {
|
if (delta > -(NSEC_PER_SEC / 2) && delta < (NSEC_PER_SEC / 2)) {
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
@ -528,10 +538,10 @@ static int sparx5_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
||||||
sparx5, PTP_PTP_PIN_CFG(TOD_ACC_PIN));
|
sparx5, PTP_PTP_PIN_CFG(consts->tod_pin));
|
||||||
|
|
||||||
spx5_wr(PTP_PTP_TOD_NSEC_PTP_TOD_NSEC_SET(delta),
|
spx5_wr(PTP_PTP_TOD_NSEC_PTP_TOD_NSEC_SET(delta),
|
||||||
sparx5, PTP_PTP_TOD_NSEC(TOD_ACC_PIN));
|
sparx5, PTP_PTP_TOD_NSEC(consts->tod_pin));
|
||||||
|
|
||||||
/* Adjust time with the value of PTP_TOD_NSEC */
|
/* Adjust time with the value of PTP_TOD_NSEC */
|
||||||
spx5_rmw(PTP_PTP_PIN_CFG_PTP_PIN_ACTION_SET(PTP_PIN_ACTION_DELTA) |
|
spx5_rmw(PTP_PTP_PIN_CFG_PTP_PIN_ACTION_SET(PTP_PIN_ACTION_DELTA) |
|
||||||
|
|
@ -540,7 +550,7 @@ static int sparx5_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta)
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
PTP_PTP_PIN_CFG_PTP_PIN_ACTION |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
PTP_PTP_PIN_CFG_PTP_PIN_DOM |
|
||||||
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
PTP_PTP_PIN_CFG_PTP_PIN_SYNC,
|
||||||
sparx5, PTP_PTP_PIN_CFG(TOD_ACC_PIN));
|
sparx5, PTP_PTP_PIN_CFG(consts->tod_pin));
|
||||||
|
|
||||||
spin_unlock_irqrestore(&sparx5->ptp_clock_lock, flags);
|
spin_unlock_irqrestore(&sparx5->ptp_clock_lock, flags);
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -630,7 +640,7 @@ int sparx5_ptp_init(struct sparx5 *sparx5)
|
||||||
/* Enable master counters */
|
/* Enable master counters */
|
||||||
spx5_wr(PTP_PTP_DOM_CFG_PTP_ENA_SET(0x7), sparx5, PTP_PTP_DOM_CFG);
|
spx5_wr(PTP_PTP_DOM_CFG_PTP_ENA_SET(0x7), sparx5, PTP_PTP_DOM_CFG);
|
||||||
|
|
||||||
for (i = 0; i < SPX5_PORTS; i++) {
|
for (i = 0; i < sparx5->data->consts->n_ports; i++) {
|
||||||
port = sparx5->ports[i];
|
port = sparx5->ports[i];
|
||||||
if (!port)
|
if (!port)
|
||||||
continue;
|
continue;
|
||||||
|
|
@ -646,7 +656,7 @@ void sparx5_ptp_deinit(struct sparx5 *sparx5)
|
||||||
struct sparx5_port *port;
|
struct sparx5_port *port;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < SPX5_PORTS; i++) {
|
for (i = 0; i < sparx5->data->consts->n_ports; i++) {
|
||||||
port = sparx5->ports[i];
|
port = sparx5->ports[i];
|
||||||
if (!port)
|
if (!port)
|
||||||
continue;
|
continue;
|
||||||
|
|
|
||||||
|
|
@ -184,7 +184,7 @@ int sparx5_sdlb_group_get_by_rate(struct sparx5 *sparx5, u32 rate, u32 burst)
|
||||||
|
|
||||||
rate_bps = rate * 1000;
|
rate_bps = rate * 1000;
|
||||||
|
|
||||||
for (i = SPX5_SDLB_GROUP_CNT - 1; i >= 0; i--) {
|
for (i = sparx5->data->consts->n_lb_groups - 1; i >= 0; i--) {
|
||||||
group = &sdlb_groups[i];
|
group = &sdlb_groups[i];
|
||||||
|
|
||||||
count = sparx5_sdlb_group_get_count(sparx5, i);
|
count = sparx5_sdlb_group_get_count(sparx5, i);
|
||||||
|
|
@ -208,7 +208,7 @@ int sparx5_sdlb_group_get_by_index(struct sparx5 *sparx5, u32 idx, u32 *group)
|
||||||
u32 itr, next;
|
u32 itr, next;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < SPX5_SDLB_GROUP_CNT; i++) {
|
for (i = 0; i < sparx5->data->consts->n_lb_groups; i++) {
|
||||||
if (sparx5_sdlb_group_is_empty(sparx5, i))
|
if (sparx5_sdlb_group_is_empty(sparx5, i))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -547,7 +547,7 @@ static int sparx5_handle_port_mdb_add(struct net_device *dev,
|
||||||
|
|
||||||
/* Add any mrouter ports to the new entry */
|
/* Add any mrouter ports to the new entry */
|
||||||
if (is_new && ether_addr_is_ip_mcast(v->addr))
|
if (is_new && ether_addr_is_ip_mcast(v->addr))
|
||||||
for (i = 0; i < SPX5_PORTS; i++)
|
for (i = 0; i < spx5->data->consts->n_ports; i++)
|
||||||
if (spx5->ports[i] && spx5->ports[i]->is_mrouter)
|
if (spx5->ports[i] && spx5->ports[i]->is_mrouter)
|
||||||
sparx5_pgid_update_mask(spx5->ports[i],
|
sparx5_pgid_update_mask(spx5->ports[i],
|
||||||
entry->pgid_idx,
|
entry->pgid_idx,
|
||||||
|
|
|
||||||
|
|
@ -785,7 +785,9 @@ static int sparx5_tc_flower_psfp_setup(struct sparx5 *sparx5,
|
||||||
* allocate a stream gate that is always open.
|
* allocate a stream gate that is always open.
|
||||||
*/
|
*/
|
||||||
if (sg_idx < 0) {
|
if (sg_idx < 0) {
|
||||||
sg_idx = sparx5_pool_idx_to_id(SPX5_PSFP_SG_OPEN);
|
/* Always-open stream gate is always the last */
|
||||||
|
sg_idx = sparx5_pool_idx_to_id(sparx5->data->consts->n_gates -
|
||||||
|
1);
|
||||||
sg->ipv = 0; /* Disabled */
|
sg->ipv = 0; /* Disabled */
|
||||||
sg->cycletime = SPX5_PSFP_SG_CYCLE_TIME_DEFAULT;
|
sg->cycletime = SPX5_PSFP_SG_CYCLE_TIME_DEFAULT;
|
||||||
sg->num_entries = 1;
|
sg->num_entries = 1;
|
||||||
|
|
|
||||||
|
|
@ -169,7 +169,7 @@ void sparx5_update_fwd(struct sparx5 *sparx5)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Update SRC masks */
|
/* Update SRC masks */
|
||||||
for (port = 0; port < SPX5_PORTS; port++) {
|
for (port = 0; port < sparx5->data->consts->n_ports; port++) {
|
||||||
if (test_bit(port, sparx5->bridge_fwd_mask)) {
|
if (test_bit(port, sparx5->bridge_fwd_mask)) {
|
||||||
/* Allow to send to all bridged but self */
|
/* Allow to send to all bridged but self */
|
||||||
bitmap_copy(workmask, sparx5->bridge_fwd_mask, SPX5_PORTS);
|
bitmap_copy(workmask, sparx5->bridge_fwd_mask, SPX5_PORTS);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue