|
|
@@ -103,6 +103,7 @@ static void bcm_sf2_brcm_hdr_setup(struct bcm_sf2_priv *priv, int port)
|
|
|
static void bcm_sf2_imp_setup(struct dsa_switch *ds, int port)
|
|
|
{
|
|
|
struct bcm_sf2_priv *priv = bcm_sf2_to_priv(ds);
|
|
|
+ unsigned int i;
|
|
|
u32 reg, offset;
|
|
|
|
|
|
if (priv->type == BCM7445_DEVICE_ID)
|
|
|
@@ -129,6 +130,14 @@ static void bcm_sf2_imp_setup(struct dsa_switch *ds, int port)
|
|
|
reg |= MII_DUMB_FWDG_EN;
|
|
|
core_writel(priv, reg, CORE_SWITCH_CTRL);
|
|
|
|
|
|
+ /* Configure Traffic Class to QoS mapping, allow each priority to map
|
|
|
+ * to a different queue number
|
|
|
+ */
|
|
|
+ reg = core_readl(priv, CORE_PORT_TC2_QOS_MAP_PORT(port));
|
|
|
+ for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++)
|
|
|
+ reg |= i << (PRT_TO_QID_SHIFT * i);
|
|
|
+ core_writel(priv, reg, CORE_PORT_TC2_QOS_MAP_PORT(port));
|
|
|
+
|
|
|
bcm_sf2_brcm_hdr_setup(priv, port);
|
|
|
|
|
|
/* Force link status for IMP port */
|
|
|
@@ -244,7 +253,7 @@ static int bcm_sf2_port_setup(struct dsa_switch *ds, int port,
|
|
|
* to a different queue number
|
|
|
*/
|
|
|
reg = core_readl(priv, CORE_PORT_TC2_QOS_MAP_PORT(port));
|
|
|
- for (i = 0; i < 8; i++)
|
|
|
+ for (i = 0; i < SF2_NUM_EGRESS_QUEUES; i++)
|
|
|
reg |= i << (PRT_TO_QID_SHIFT * i);
|
|
|
core_writel(priv, reg, CORE_PORT_TC2_QOS_MAP_PORT(port));
|
|
|
|
|
|
@@ -1151,6 +1160,9 @@ static int bcm_sf2_sw_probe(struct platform_device *pdev)
|
|
|
ds = dev->ds;
|
|
|
ds->ops = &bcm_sf2_ops;
|
|
|
|
|
|
+ /* Advertise the 8 egress queues */
|
|
|
+ ds->num_tx_queues = SF2_NUM_EGRESS_QUEUES;
|
|
|
+
|
|
|
dev_set_drvdata(&pdev->dev, priv);
|
|
|
|
|
|
spin_lock_init(&priv->indir_lock);
|