this patch copies the following files from 5.4 to 5.10: - config-5.4 -> config-5.10 - files-5.4/ -> files-5.10/ - patches-5.4/ -> patches-5.10/ Signed-off-by: INAGAKI Hiroshi <musashino.open@gmail.com> [rebase on change in files-5.4] Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
		
			
				
	
	
		
			577 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			577 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-only
 | 
						|
 | 
						|
#include <net/dsa.h>
 | 
						|
#include <linux/delay.h>
 | 
						|
 | 
						|
#include <asm/mach-rtl838x/mach-rtl83xx.h>
 | 
						|
#include "rtl83xx.h"
 | 
						|
 | 
						|
static struct rtl838x_switch_priv *switch_priv;
 | 
						|
extern struct rtl83xx_soc_info soc_info;
 | 
						|
 | 
						|
enum scheduler_type {
 | 
						|
	WEIGHTED_FAIR_QUEUE = 0,
 | 
						|
	WEIGHTED_ROUND_ROBIN,
 | 
						|
};
 | 
						|
 | 
						|
int max_available_queue[] = {0, 1, 2, 3, 4, 5, 6, 7};
 | 
						|
int default_queue_weights[] = {1, 1, 1, 1, 1, 1, 1, 1};
 | 
						|
int dot1p_priority_remapping[] = {0, 1, 2, 3, 4, 5, 6, 7};
 | 
						|
 | 
						|
static void rtl839x_read_scheduling_table(int port)
 | 
						|
{
 | 
						|
	u32 cmd = 1 << 9 /* Execute cmd */
 | 
						|
		| 0 << 8 /* Read */
 | 
						|
		| 0 << 6 /* Table type 0b00 */
 | 
						|
		| (port & 0x3f);
 | 
						|
	rtl839x_exec_tbl2_cmd(cmd);
 | 
						|
}
 | 
						|
 | 
						|
static void rtl839x_write_scheduling_table(int port)
 | 
						|
{
 | 
						|
	u32 cmd = 1 << 9 /* Execute cmd */
 | 
						|
		| 1 << 8 /* Write */
 | 
						|
		| 0 << 6 /* Table type 0b00 */
 | 
						|
		| (port & 0x3f);
 | 
						|
	rtl839x_exec_tbl2_cmd(cmd);
 | 
						|
}
 | 
						|
 | 
						|
static void rtl839x_read_out_q_table(int port)
 | 
						|
{
 | 
						|
	u32 cmd = 1 << 9 /* Execute cmd */
 | 
						|
		| 0 << 8 /* Read */
 | 
						|
		| 2 << 6 /* Table type 0b10 */
 | 
						|
		| (port & 0x3f);
 | 
						|
	rtl839x_exec_tbl2_cmd(cmd);
 | 
						|
}
 | 
						|
 | 
						|
static void rtl838x_storm_enable(struct rtl838x_switch_priv *priv, int port, bool enable)
 | 
						|
{
 | 
						|
	// Enable Storm control for that port for UC, MC, and BC
 | 
						|
	if (enable)
 | 
						|
		sw_w32(0x7, RTL838X_STORM_CTRL_LB_CTRL(port));
 | 
						|
	else
 | 
						|
		sw_w32(0x0, RTL838X_STORM_CTRL_LB_CTRL(port));
 | 
						|
}
 | 
						|
 | 
						|
u32 rtl838x_get_egress_rate(struct rtl838x_switch_priv *priv, int port)
 | 
						|
{
 | 
						|
	u32 rate;
 | 
						|
 | 
						|
	if (port > priv->cpu_port)
 | 
						|
		return 0;
 | 
						|
	rate = sw_r32(RTL838X_SCHED_P_EGR_RATE_CTRL(port)) & 0x3fff;
 | 
						|
	return rate;
 | 
						|
}
 | 
						|
 | 
						|
/* Sets the rate limit, 10MBit/s is equal to a rate value of 625 */
 | 
						|
int rtl838x_set_egress_rate(struct rtl838x_switch_priv *priv, int port, u32 rate)
 | 
						|
{
 | 
						|
	u32 old_rate;
 | 
						|
 | 
						|
	if (port > priv->cpu_port)
 | 
						|
		return -1;
 | 
						|
 | 
						|
	old_rate = sw_r32(RTL838X_SCHED_P_EGR_RATE_CTRL(port));
 | 
						|
	sw_w32(rate, RTL838X_SCHED_P_EGR_RATE_CTRL(port));
 | 
						|
 | 
						|
	return old_rate;
 | 
						|
}
 | 
						|
 | 
						|
/* Set the rate limit for a particular queue in Bits/s
 | 
						|
 * units of the rate is 16Kbps
 | 
						|
 */
 | 
						|
void rtl838x_egress_rate_queue_limit(struct rtl838x_switch_priv *priv, int port,
 | 
						|
					    int queue, u32 rate)
 | 
						|
{
 | 
						|
	if (port > priv->cpu_port)
 | 
						|
		return;
 | 
						|
	if (queue > 7)
 | 
						|
		return;
 | 
						|
	sw_w32(rate, RTL838X_SCHED_Q_EGR_RATE_CTRL(port, queue));
 | 
						|
}
 | 
						|
 | 
						|
static void rtl838x_rate_control_init(struct rtl838x_switch_priv *priv)
 | 
						|
{
 | 
						|
	int i;
 | 
						|
 | 
						|
	pr_info("Enabling Storm control\n");
 | 
						|
	// TICK_PERIOD_PPS
 | 
						|
	if (priv->id == 0x8380)
 | 
						|
		sw_w32_mask(0x3ff << 20, 434 << 20, RTL838X_SCHED_LB_TICK_TKN_CTRL_0);
 | 
						|
 | 
						|
	// Set burst rate
 | 
						|
	sw_w32(0x00008000, RTL838X_STORM_CTRL_BURST_0); // UC
 | 
						|
	sw_w32(0x80008000, RTL838X_STORM_CTRL_BURST_1); // MC and BC
 | 
						|
 | 
						|
	// Set burst Packets per Second to 32
 | 
						|
	sw_w32(0x00000020, RTL838X_STORM_CTRL_BURST_PPS_0); // UC
 | 
						|
	sw_w32(0x00200020, RTL838X_STORM_CTRL_BURST_PPS_1); // MC and BC
 | 
						|
 | 
						|
	// Include IFG in storm control, rate based on bytes/s (0 = packets)
 | 
						|
	sw_w32_mask(0, 1 << 6 | 1 << 5, RTL838X_STORM_CTRL);
 | 
						|
	// Bandwidth control includes preamble and IFG (10 Bytes)
 | 
						|
	sw_w32_mask(0, 1, RTL838X_SCHED_CTRL);
 | 
						|
 | 
						|
	// On SoCs except RTL8382M, set burst size of port egress
 | 
						|
	if (priv->id != 0x8382)
 | 
						|
		sw_w32_mask(0xffff, 0x800, RTL838X_SCHED_LB_THR);
 | 
						|
 | 
						|
	/* Enable storm control on all ports with a PHY and limit rates,
 | 
						|
	 * for UC and MC for both known and unknown addresses */
 | 
						|
	for (i = 0; i < priv->cpu_port; i++) {
 | 
						|
		if (priv->ports[i].phy) {
 | 
						|
			sw_w32((1 << 18) | 0x8000, RTL838X_STORM_CTRL_PORT_UC(i));
 | 
						|
			sw_w32((1 << 18) | 0x8000, RTL838X_STORM_CTRL_PORT_MC(i));
 | 
						|
			sw_w32(0x8000, RTL838X_STORM_CTRL_PORT_BC(i));
 | 
						|
			rtl838x_storm_enable(priv, i, true);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// Attack prevention, enable all attack prevention measures
 | 
						|
	//sw_w32(0x1ffff, RTL838X_ATK_PRVNT_CTRL);
 | 
						|
	/* Attack prevention, drop (bit = 0) problematic packets on all ports.
 | 
						|
	 * Setting bit = 1 means: trap to CPU
 | 
						|
	 */
 | 
						|
	//sw_w32(0, RTL838X_ATK_PRVNT_ACT);
 | 
						|
	// Enable attack prevention on all ports
 | 
						|
	//sw_w32(0x0fffffff, RTL838X_ATK_PRVNT_PORT_EN);
 | 
						|
}
 | 
						|
 | 
						|
/* Sets the rate limit, 10MBit/s is equal to a rate value of 625 */
 | 
						|
u32 rtl839x_get_egress_rate(struct rtl838x_switch_priv *priv, int port)
 | 
						|
{
 | 
						|
	u32 rate;
 | 
						|
 | 
						|
	pr_debug("%s: Getting egress rate on port %d to %d\n", __func__, port, rate);
 | 
						|
	if (port >= priv->cpu_port)
 | 
						|
		return 0;
 | 
						|
 | 
						|
	mutex_lock(&priv->reg_mutex);
 | 
						|
 | 
						|
	rtl839x_read_scheduling_table(port);
 | 
						|
 | 
						|
	rate = sw_r32(RTL839X_TBL_ACCESS_DATA_2(7));
 | 
						|
	rate <<= 12;
 | 
						|
	rate |= sw_r32(RTL839X_TBL_ACCESS_DATA_2(8)) >> 20;
 | 
						|
 | 
						|
	mutex_unlock(&priv->reg_mutex);
 | 
						|
 | 
						|
	return rate;
 | 
						|
}
 | 
						|
 | 
						|
/* Sets the rate limit, 10MBit/s is equal to a rate value of 625, returns previous rate */
 | 
						|
int rtl839x_set_egress_rate(struct rtl838x_switch_priv *priv, int port, u32 rate)
 | 
						|
{
 | 
						|
	u32 old_rate;
 | 
						|
 | 
						|
	pr_debug("%s: Setting egress rate on port %d to %d\n", __func__, port, rate);
 | 
						|
	if (port >= priv->cpu_port)
 | 
						|
		return -1;
 | 
						|
 | 
						|
	mutex_lock(&priv->reg_mutex);
 | 
						|
 | 
						|
	rtl839x_read_scheduling_table(port);
 | 
						|
 | 
						|
	old_rate = sw_r32(RTL839X_TBL_ACCESS_DATA_2(7)) & 0xff;
 | 
						|
	old_rate <<= 12;
 | 
						|
	old_rate |= sw_r32(RTL839X_TBL_ACCESS_DATA_2(8)) >> 20;
 | 
						|
	sw_w32_mask(0xff, (rate >> 12) & 0xff, RTL839X_TBL_ACCESS_DATA_2(7));
 | 
						|
	sw_w32_mask(0xfff << 20, rate << 20, RTL839X_TBL_ACCESS_DATA_2(8));
 | 
						|
 | 
						|
	rtl839x_write_scheduling_table(port);
 | 
						|
	
 | 
						|
	mutex_unlock(&priv->reg_mutex);
 | 
						|
 | 
						|
	return old_rate;
 | 
						|
}
 | 
						|
 | 
						|
/* Set the rate limit for a particular queue in Bits/s
 | 
						|
 * units of the rate is 16Kbps
 | 
						|
 */
 | 
						|
void rtl839x_egress_rate_queue_limit(struct rtl838x_switch_priv *priv, int port,
 | 
						|
					int queue, u32 rate)
 | 
						|
{
 | 
						|
	int lsb = 128 + queue * 20;
 | 
						|
	int low_byte = 8 - (lsb >> 5);
 | 
						|
	int start_bit = lsb - (low_byte << 5);
 | 
						|
	u32 high_mask = 0xfffff	>> (32 - start_bit);
 | 
						|
 | 
						|
	pr_debug("%s: Setting egress rate on port %d, queue %d to %d\n",
 | 
						|
		__func__, port, queue, rate);
 | 
						|
	if (port >= priv->cpu_port)
 | 
						|
		return;
 | 
						|
	if (queue > 7)
 | 
						|
		return;
 | 
						|
 | 
						|
	mutex_lock(&priv->reg_mutex);
 | 
						|
 | 
						|
	rtl839x_read_scheduling_table(port);
 | 
						|
 | 
						|
	sw_w32_mask(0xfffff << start_bit, (rate & 0xfffff) << start_bit,
 | 
						|
		    RTL839X_TBL_ACCESS_DATA_2(low_byte));
 | 
						|
	if (high_mask)
 | 
						|
		sw_w32_mask(high_mask, (rate & 0xfffff) >> (32- start_bit),
 | 
						|
			    RTL839X_TBL_ACCESS_DATA_2(low_byte - 1));
 | 
						|
 | 
						|
	rtl839x_write_scheduling_table(port);
 | 
						|
 | 
						|
	mutex_unlock(&priv->reg_mutex);
 | 
						|
}
 | 
						|
 | 
						|
static void rtl839x_rate_control_init(struct rtl838x_switch_priv *priv)
 | 
						|
{
 | 
						|
	int p, q;
 | 
						|
 | 
						|
	pr_info("%s: enabling rate control\n", __func__);
 | 
						|
	/* Tick length and token size settings for SoC with 250MHz,
 | 
						|
	 * RTL8350 family would use 50MHz
 | 
						|
	 */
 | 
						|
	// Set the special tick period
 | 
						|
	sw_w32(976563, RTL839X_STORM_CTRL_SPCL_LB_TICK_TKN_CTRL);
 | 
						|
	// Ingress tick period and token length 10G
 | 
						|
	sw_w32(18 << 11 | 151, RTL839X_IGR_BWCTRL_LB_TICK_TKN_CTRL_0);
 | 
						|
	// Ingress tick period and token length 1G
 | 
						|
	sw_w32(245 << 11 | 129, RTL839X_IGR_BWCTRL_LB_TICK_TKN_CTRL_1);
 | 
						|
	// Egress tick period 10G, bytes/token 10G and tick period 1G, bytes/token 1G
 | 
						|
	sw_w32(18 << 24 | 151 << 16 | 185 << 8 | 97, RTL839X_SCHED_LB_TICK_TKN_CTRL);
 | 
						|
	// Set the tick period of the CPU and the Token Len
 | 
						|
	sw_w32(3815 << 8 | 1, RTL839X_SCHED_LB_TICK_TKN_PPS_CTRL);
 | 
						|
 | 
						|
	// Set the Weighted Fair Queueing burst size
 | 
						|
	sw_w32_mask(0xffff, 4500, RTL839X_SCHED_LB_THR);
 | 
						|
 | 
						|
	// Storm-rate calculation is based on bytes/sec (bit 5), include IFG (bit 6)
 | 
						|
	sw_w32_mask(0, 1 << 5 | 1 << 6, RTL839X_STORM_CTRL);
 | 
						|
 | 
						|
	/* Based on the rate control mode being bytes/s
 | 
						|
	 * set tick period and token length for 10G
 | 
						|
	 */
 | 
						|
	sw_w32(18 << 10 | 151, RTL839X_STORM_CTRL_LB_TICK_TKN_CTRL_0);
 | 
						|
	/* and for 1G ports */
 | 
						|
	sw_w32(246 << 10 | 129, RTL839X_STORM_CTRL_LB_TICK_TKN_CTRL_1);
 | 
						|
 | 
						|
	/* Set default burst rates on all ports (the same for 1G / 10G) with a PHY
 | 
						|
	 * for UC, MC and BC
 | 
						|
	 * For 1G port, the minimum burst rate is 1700, maximum 65535,
 | 
						|
	 * For 10G ports it is 2650 and 1048575 respectively */
 | 
						|
	for (p = 0; p < priv->cpu_port; p++) {
 | 
						|
		if (priv->ports[p].phy && !priv->ports[p].is10G) {
 | 
						|
			sw_w32_mask(0xffff, 0x8000, RTL839X_STORM_CTRL_PORT_UC_1(p));
 | 
						|
			sw_w32_mask(0xffff, 0x8000, RTL839X_STORM_CTRL_PORT_MC_1(p));
 | 
						|
			sw_w32_mask(0xffff, 0x8000, RTL839X_STORM_CTRL_PORT_BC_1(p));
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	/* Setup ingress/egress per-port rate control */
 | 
						|
	for (p = 0; p < priv->cpu_port; p++) {
 | 
						|
		if (!priv->ports[p].phy)
 | 
						|
			continue;
 | 
						|
 | 
						|
		if (priv->ports[p].is10G)
 | 
						|
			rtl839x_set_egress_rate(priv, p, 625000); // 10GB/s
 | 
						|
		else
 | 
						|
			rtl839x_set_egress_rate(priv, p, 62500);  // 1GB/s
 | 
						|
 | 
						|
		// Setup queues: all RTL83XX SoCs have 8 queues, maximum rate
 | 
						|
		for (q = 0; q < 8; q++)
 | 
						|
			rtl839x_egress_rate_queue_limit(priv, p, q, 0xfffff);
 | 
						|
 | 
						|
		if (priv->ports[p].is10G) {
 | 
						|
			// Set high threshold to maximum
 | 
						|
			sw_w32_mask(0xffff, 0xffff, RTL839X_IGR_BWCTRL_PORT_CTRL_10G_0(p));
 | 
						|
		} else {
 | 
						|
			// Set high threshold to maximum
 | 
						|
			sw_w32_mask(0xffff, 0xffff, RTL839X_IGR_BWCTRL_PORT_CTRL_1(p));
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// Set global ingress low watermark rate
 | 
						|
	sw_w32(65532, RTL839X_IGR_BWCTRL_CTRL_LB_THR);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
void rtl838x_setup_prio2queue_matrix(int *min_queues)
 | 
						|
{
 | 
						|
	int i;
 | 
						|
	u32 v;
 | 
						|
 | 
						|
	pr_info("Current Intprio2queue setting: %08x\n", sw_r32(RTL838X_QM_INTPRI2QID_CTRL));
 | 
						|
	for (i = 0; i < MAX_PRIOS; i++)
 | 
						|
		v |= i << (min_queues[i] * 3);
 | 
						|
	sw_w32(v, RTL838X_QM_INTPRI2QID_CTRL);
 | 
						|
}
 | 
						|
 | 
						|
void rtl839x_setup_prio2queue_matrix(int *min_queues)
 | 
						|
{
 | 
						|
	int i, q;
 | 
						|
 | 
						|
	pr_info("Current Intprio2queue setting: %08x\n", sw_r32(RTL839X_QM_INTPRI2QID_CTRL(0)));
 | 
						|
	for (i = 0; i < MAX_PRIOS; i++) {
 | 
						|
		q = min_queues[i];
 | 
						|
		sw_w32(i << (q * 3), RTL839X_QM_INTPRI2QID_CTRL(q));
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
/* Sets the CPU queue depending on the internal priority of a packet */
 | 
						|
void rtl83xx_setup_prio2queue_cpu_matrix(int *max_queues)
 | 
						|
{
 | 
						|
	int reg = soc_info.family == RTL8380_FAMILY_ID ? RTL838X_QM_PKT2CPU_INTPRI_MAP 
 | 
						|
					: RTL839X_QM_PKT2CPU_INTPRI_MAP;
 | 
						|
	int i;
 | 
						|
	u32 v;
 | 
						|
 | 
						|
	pr_info("QM_PKT2CPU_INTPRI_MAP: %08x\n", sw_r32(reg));
 | 
						|
	for (i = 0; i < MAX_PRIOS; i++)
 | 
						|
		v |= max_queues[i] << (i * 3);
 | 
						|
	sw_w32(v, reg);
 | 
						|
}
 | 
						|
 | 
						|
void rtl83xx_setup_default_prio2queue(void)
 | 
						|
{
 | 
						|
	if (soc_info.family == RTL8380_FAMILY_ID) {
 | 
						|
		rtl838x_setup_prio2queue_matrix(max_available_queue);
 | 
						|
	} else {
 | 
						|
		rtl839x_setup_prio2queue_matrix(max_available_queue);
 | 
						|
	}
 | 
						|
	rtl83xx_setup_prio2queue_cpu_matrix(max_available_queue);
 | 
						|
}
 | 
						|
 | 
						|
/* Sets the output queue assigned to a port, the port can be the CPU-port */
 | 
						|
void rtl839x_set_egress_queue(int port, int queue)
 | 
						|
{
 | 
						|
	sw_w32(queue << ((port % 10) *3), RTL839X_QM_PORT_QNUM(port));
 | 
						|
}
 | 
						|
 | 
						|
/* Sets the priority assigned of an ingress port, the port can be the CPU-port */
 | 
						|
void rtl83xx_set_ingress_priority(int port, int priority)
 | 
						|
{
 | 
						|
	if (soc_info.family == RTL8380_FAMILY_ID)
 | 
						|
		sw_w32(priority << ((port % 10) *3), RTL838X_PRI_SEL_PORT_PRI(port));
 | 
						|
	else
 | 
						|
		sw_w32(priority << ((port % 10) *3), RTL839X_PRI_SEL_PORT_PRI(port));
 | 
						|
	
 | 
						|
}
 | 
						|
 | 
						|
int rtl839x_get_scheduling_algorithm(struct rtl838x_switch_priv *priv, int port)
 | 
						|
{
 | 
						|
	u32 v;
 | 
						|
 | 
						|
	mutex_lock(&priv->reg_mutex);
 | 
						|
 | 
						|
	rtl839x_read_scheduling_table(port);
 | 
						|
	v = sw_r32(RTL839X_TBL_ACCESS_DATA_2(8));
 | 
						|
 | 
						|
	mutex_unlock(&priv->reg_mutex);
 | 
						|
 | 
						|
	if (v & BIT(19))
 | 
						|
		return WEIGHTED_ROUND_ROBIN;
 | 
						|
	return WEIGHTED_FAIR_QUEUE;
 | 
						|
}
 | 
						|
 | 
						|
void rtl839x_set_scheduling_algorithm(struct rtl838x_switch_priv *priv, int port,
 | 
						|
				      enum scheduler_type sched)
 | 
						|
{
 | 
						|
	enum scheduler_type t = rtl839x_get_scheduling_algorithm(priv, port);
 | 
						|
	u32 v, oam_state, oam_port_state;
 | 
						|
	u32 count;
 | 
						|
	int i, egress_rate;
 | 
						|
 | 
						|
	mutex_lock(&priv->reg_mutex);
 | 
						|
	/* Check whether we need to empty the egress queue of that port due to Errata E0014503 */
 | 
						|
	if (sched == WEIGHTED_FAIR_QUEUE && t == WEIGHTED_ROUND_ROBIN && port != priv->cpu_port) {
 | 
						|
		// Read Operations, Adminstatrion and Management control register
 | 
						|
		oam_state = sw_r32(RTL839X_OAM_CTRL);
 | 
						|
 | 
						|
		// Get current OAM state
 | 
						|
		oam_port_state = sw_r32(RTL839X_OAM_PORT_ACT_CTRL(port));
 | 
						|
	
 | 
						|
		// Disable OAM to block traffice
 | 
						|
		v = sw_r32(RTL839X_OAM_CTRL);
 | 
						|
		sw_w32_mask(0, 1, RTL839X_OAM_CTRL);
 | 
						|
		v = sw_r32(RTL839X_OAM_CTRL);
 | 
						|
 | 
						|
		// Set to trap action OAM forward (bits 1, 2) and OAM Mux Action Drop (bit 0)
 | 
						|
		sw_w32(0x2, RTL839X_OAM_PORT_ACT_CTRL(port));
 | 
						|
 | 
						|
		// Set port egress rate to unlimited
 | 
						|
		egress_rate = rtl839x_set_egress_rate(priv, port, 0xFFFFF);
 | 
						|
	
 | 
						|
		// Wait until the egress used page count of that port is 0
 | 
						|
		i = 0;
 | 
						|
		do {
 | 
						|
			usleep_range(100, 200);
 | 
						|
			rtl839x_read_out_q_table(port);
 | 
						|
			count = sw_r32(RTL839X_TBL_ACCESS_DATA_2(6));
 | 
						|
			count >>= 20;
 | 
						|
			i++;
 | 
						|
		} while (i < 3500 && count > 0);
 | 
						|
	}
 | 
						|
 | 
						|
	// Actually set the scheduling algorithm
 | 
						|
	rtl839x_read_scheduling_table(port);
 | 
						|
	sw_w32_mask(BIT(19), sched ? BIT(19) : 0, RTL839X_TBL_ACCESS_DATA_2(8));
 | 
						|
	rtl839x_write_scheduling_table(port);
 | 
						|
 | 
						|
	if (sched == WEIGHTED_FAIR_QUEUE && t == WEIGHTED_ROUND_ROBIN && port != priv->cpu_port) {
 | 
						|
		// Restore OAM state to control register
 | 
						|
		sw_w32(oam_state, RTL839X_OAM_CTRL);
 | 
						|
 | 
						|
		// Restore trap action state
 | 
						|
		sw_w32(oam_port_state, RTL839X_OAM_PORT_ACT_CTRL(port));
 | 
						|
 | 
						|
		// Restore port egress rate
 | 
						|
		rtl839x_set_egress_rate(priv, port, egress_rate);
 | 
						|
	}
 | 
						|
 | 
						|
	mutex_unlock(&priv->reg_mutex);
 | 
						|
}
 | 
						|
 | 
						|
void rtl839x_set_scheduling_queue_weights(struct rtl838x_switch_priv *priv, int port,
 | 
						|
					  int *queue_weights)
 | 
						|
{
 | 
						|
	int i, lsb, low_byte, start_bit, high_mask;
 | 
						|
 | 
						|
	mutex_lock(&priv->reg_mutex);
 | 
						|
 | 
						|
	rtl839x_read_scheduling_table(port);
 | 
						|
 | 
						|
	for (i = 0; i < 8; i++) {
 | 
						|
		lsb = 48 + i * 8;
 | 
						|
		low_byte = 8 - (lsb >> 5);
 | 
						|
		start_bit = lsb - (low_byte << 5);
 | 
						|
		high_mask = 0x3ff >> (32 - start_bit);
 | 
						|
		sw_w32_mask(0x3ff << start_bit, (queue_weights[i] & 0x3ff) << start_bit,
 | 
						|
				RTL839X_TBL_ACCESS_DATA_2(low_byte));
 | 
						|
		if (high_mask)
 | 
						|
			sw_w32_mask(high_mask, (queue_weights[i] & 0x3ff) >> (32- start_bit),
 | 
						|
					RTL839X_TBL_ACCESS_DATA_2(low_byte - 1));
 | 
						|
	}
 | 
						|
 | 
						|
	rtl839x_write_scheduling_table(port);
 | 
						|
	mutex_unlock(&priv->reg_mutex);
 | 
						|
}
 | 
						|
 | 
						|
void rtl838x_config_qos(void)
 | 
						|
{
 | 
						|
	int i, p;
 | 
						|
	u32 v;
 | 
						|
 | 
						|
	pr_info("Setting up RTL838X QoS\n");
 | 
						|
	pr_info("RTL838X_PRI_SEL_TBL_CTRL(i): %08x\n", sw_r32(RTL838X_PRI_SEL_TBL_CTRL(0)));
 | 
						|
	rtl83xx_setup_default_prio2queue();
 | 
						|
 | 
						|
	// Enable inner (bit 12) and outer (bit 13) priority remapping from DSCP
 | 
						|
	sw_w32_mask(0, BIT(12) | BIT(13), RTL838X_PRI_DSCP_INVLD_CTRL0);
 | 
						|
 | 
						|
	/* Set default weight for calculating internal priority, in prio selection group 0
 | 
						|
	 * Port based (prio 3), Port outer-tag (4), DSCP (5), Inner Tag (6), Outer Tag (7)
 | 
						|
	 */
 | 
						|
	v = 3 | (4 << 3) | (5 << 6) | (6 << 9) | (7 << 12);
 | 
						|
	sw_w32(v, RTL838X_PRI_SEL_TBL_CTRL(0));
 | 
						|
 | 
						|
	// Set the inner and outer priority one-to-one to re-marked outer dot1p priority
 | 
						|
	v = 0;
 | 
						|
	for (p = 0; p < 8; p++)
 | 
						|
		v |= p << (3 * p);
 | 
						|
	sw_w32(v, RTL838X_RMK_OPRI_CTRL);
 | 
						|
	sw_w32(v, RTL838X_RMK_IPRI_CTRL);
 | 
						|
 | 
						|
	v = 0;
 | 
						|
	for (p = 0; p < 8; p++)
 | 
						|
		v |= (dot1p_priority_remapping[p] & 0x7) << (p * 3);
 | 
						|
	sw_w32(v, RTL838X_PRI_SEL_IPRI_REMAP);
 | 
						|
 | 
						|
	// On all ports set scheduler type to WFQ
 | 
						|
	for (i = 0; i <= soc_info.cpu_port; i++)
 | 
						|
		sw_w32(0, RTL838X_SCHED_P_TYPE_CTRL(i));
 | 
						|
 | 
						|
	// Enable egress scheduler for CPU-Port
 | 
						|
	sw_w32_mask(0, BIT(8), RTL838X_SCHED_LB_CTRL(soc_info.cpu_port));
 | 
						|
 | 
						|
	// Enable egress drop allways on
 | 
						|
	sw_w32_mask(0, BIT(11), RTL838X_FC_P_EGR_DROP_CTRL(soc_info.cpu_port));
 | 
						|
 | 
						|
	// Give special trap frames priority 7 (BPDUs) and routing exceptions:
 | 
						|
	sw_w32_mask(0, 7 << 3 | 7, RTL838X_QM_PKT2CPU_INTPRI_2);
 | 
						|
	// Give RMA frames priority 7:
 | 
						|
	sw_w32_mask(0, 7, RTL838X_QM_PKT2CPU_INTPRI_1);
 | 
						|
}
 | 
						|
 | 
						|
void rtl839x_config_qos(void)
 | 
						|
{
 | 
						|
	int port, p, q;
 | 
						|
	u32 v;
 | 
						|
	struct rtl838x_switch_priv *priv = switch_priv;
 | 
						|
 | 
						|
	pr_info("Setting up RTL839X QoS\n");
 | 
						|
	pr_info("RTL839X_PRI_SEL_TBL_CTRL(i): %08x\n", sw_r32(RTL839X_PRI_SEL_TBL_CTRL(0)));
 | 
						|
	rtl83xx_setup_default_prio2queue();
 | 
						|
 | 
						|
	for (port = 0; port < soc_info.cpu_port; port++)
 | 
						|
		sw_w32(7, RTL839X_QM_PORT_QNUM(port));
 | 
						|
 | 
						|
	// CPU-port gets queue number 7
 | 
						|
	sw_w32(7, RTL839X_QM_PORT_QNUM(soc_info.cpu_port));
 | 
						|
 | 
						|
	for (port = 0; port <= soc_info.cpu_port; port++) {
 | 
						|
		rtl83xx_set_ingress_priority(port, 0);
 | 
						|
		rtl839x_set_scheduling_algorithm(priv, port, WEIGHTED_FAIR_QUEUE);
 | 
						|
		rtl839x_set_scheduling_queue_weights(priv, port, default_queue_weights);
 | 
						|
		// Do re-marking based on outer tag
 | 
						|
		sw_w32_mask(0, BIT(port % 32), RTL839X_RMK_PORT_DEI_TAG_CTRL(port));
 | 
						|
	}
 | 
						|
 | 
						|
	// Remap dot1p priorities to internal priority, for this the outer tag needs be re-marked
 | 
						|
	v = 0;
 | 
						|
	for (p = 0; p < 8; p++)
 | 
						|
		v |= (dot1p_priority_remapping[p] & 0x7) << (p * 3);
 | 
						|
	sw_w32(v, RTL839X_PRI_SEL_IPRI_REMAP);
 | 
						|
	
 | 
						|
	/* Configure Drop Precedence for Drop Eligible Indicator (DEI)
 | 
						|
	 * Index 0: 0
 | 
						|
	 * Index 1: 2
 | 
						|
	 * Each indicator is 2 bits long
 | 
						|
	 */
 | 
						|
	sw_w32(2 << 2, RTL839X_PRI_SEL_DEI2DP_REMAP);
 | 
						|
 | 
						|
	// Re-mark DEI: 4 bit-fields of 2 bits each, field 0 is bits 0-1, ...
 | 
						|
	sw_w32((0x1 << 2) | (0x1 << 4), RTL839X_RMK_DEI_CTRL);
 | 
						|
 | 
						|
	/* Set Congestion avoidance drop probability to 0 for drop precedences 0-2 (bits 24-31)
 | 
						|
	 * low threshold (bits 0-11) to 4095 and high threshold (bits 12-23) to 4095
 | 
						|
	 * Weighted Random Early Detection (WRED) is used
 | 
						|
	 */
 | 
						|
	sw_w32(4095 << 12| 4095, RTL839X_WRED_PORT_THR_CTRL(0));
 | 
						|
	sw_w32(4095 << 12| 4095, RTL839X_WRED_PORT_THR_CTRL(1));
 | 
						|
	sw_w32(4095 << 12| 4095, RTL839X_WRED_PORT_THR_CTRL(2));
 | 
						|
 | 
						|
	/* Set queue-based congestion avoidance properties, register fields are as
 | 
						|
	 * for forward RTL839X_WRED_PORT_THR_CTRL
 | 
						|
	 */
 | 
						|
	for (q = 0; q < 8; q++) {
 | 
						|
		sw_w32(255 << 24 | 78 << 12 | 68, RTL839X_WRED_QUEUE_THR_CTRL(q, 0));
 | 
						|
		sw_w32(255 << 24 | 74 << 12 | 64, RTL839X_WRED_QUEUE_THR_CTRL(q, 0));
 | 
						|
		sw_w32(255 << 24 | 70 << 12 | 60, RTL839X_WRED_QUEUE_THR_CTRL(q, 0));
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
void __init rtl83xx_setup_qos(struct rtl838x_switch_priv *priv)
 | 
						|
{
 | 
						|
	switch_priv = priv;
 | 
						|
 | 
						|
	pr_info("In %s\n", __func__);
 | 
						|
 | 
						|
	if (priv->family_id == RTL8380_FAMILY_ID)
 | 
						|
		return rtl838x_config_qos();
 | 
						|
	else if (priv->family_id == RTL8390_FAMILY_ID)
 | 
						|
		return rtl839x_config_qos();
 | 
						|
 | 
						|
	if (priv->family_id == RTL8380_FAMILY_ID)
 | 
						|
		rtl838x_rate_control_init(priv);
 | 
						|
	else if (priv->family_id == RTL8390_FAMILY_ID)
 | 
						|
		rtl839x_rate_control_init(priv);
 | 
						|
	
 | 
						|
}
 |