| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | /*******************************************************************************
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Intel 10 Gigabit PCI Express Linux driver | 
					
						
							| 
									
										
										
										
											2013-01-08 05:02:28 +00:00
										 |  |  |   Copyright(c) 1999 - 2013 Intel Corporation. | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   This program is free software; you can redistribute it and/or modify it | 
					
						
							|  |  |  |   under the terms and conditions of the GNU General Public License, | 
					
						
							|  |  |  |   version 2, as published by the Free Software Foundation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   This program is distributed in the hope it will be useful, but WITHOUT | 
					
						
							|  |  |  |   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | 
					
						
							|  |  |  |   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for | 
					
						
							|  |  |  |   more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   You should have received a copy of the GNU General Public License along with | 
					
						
							|  |  |  |   this program; if not, write to the Free Software Foundation, Inc., | 
					
						
							|  |  |  |   51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   The full GNU General Public License is included in this distribution in | 
					
						
							|  |  |  |   the file called "COPYING". | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Contact Information: | 
					
						
							|  |  |  |   Linux NICS <linux.nics@intel.com> | 
					
						
							|  |  |  |   e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> | 
					
						
							|  |  |  |   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | *******************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "ixgbe.h"
 | 
					
						
							|  |  |  | #include "ixgbe_type.h"
 | 
					
						
							|  |  |  | #include "ixgbe_dcb.h"
 | 
					
						
							|  |  |  | #include "ixgbe_dcb_82598.h"
 | 
					
						
							| 
									
										
										
										
											2009-02-27 15:44:48 +00:00
										 |  |  | #include "ixgbe_dcb_82599.h"
 | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * ixgbe_ieee_credits - This calculates the ieee traffic class | 
					
						
							|  |  |  |  * credits from the configured bandwidth percentages. Credits | 
					
						
							| 
									
										
										
										
											2011-03-30 22:57:33 -03:00
										 |  |  |  * are the smallest unit programmable into the underlying | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  |  * hardware. The IEEE 802.1Qaz specification do not use bandwidth | 
					
						
							|  |  |  |  * groups so this is much simplified from the CEE case. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-08-04 05:47:07 +00:00
										 |  |  | static s32 ixgbe_ieee_credits(__u8 *bw, __u16 *refill, | 
					
						
							|  |  |  | 			      __u16 *max, int max_frame) | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int min_percent = 100; | 
					
						
							|  |  |  | 	int min_credit, multiplier; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	min_credit = ((max_frame / 2) + DCB_CREDIT_QUANTUM - 1) / | 
					
						
							|  |  |  | 			DCB_CREDIT_QUANTUM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { | 
					
						
							|  |  |  | 		if (bw[i] < min_percent && bw[i]) | 
					
						
							|  |  |  | 			min_percent = bw[i]; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	multiplier = (min_credit / min_percent) + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Find out the hw credits for each TC */ | 
					
						
							|  |  |  | 	for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { | 
					
						
							|  |  |  | 		int val = min(bw[i] * multiplier, MAX_CREDIT_REFILL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (val < min_credit) | 
					
						
							|  |  |  | 			val = min_credit; | 
					
						
							|  |  |  | 		refill[i] = val; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-09 04:46:16 +00:00
										 |  |  | 		max[i] = bw[i] ? (bw[i] * MAX_CREDIT)/100 : min_credit; | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * ixgbe_dcb_calculate_tc_credits - Calculates traffic class credits | 
					
						
							|  |  |  |  * @ixgbe_dcb_config: Struct containing DCB settings. | 
					
						
							|  |  |  |  * @direction: Configuring either Tx or Rx. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This function calculates the credits allocated to each traffic class. | 
					
						
							|  |  |  |  * It should be called only after the rules are checked by | 
					
						
							|  |  |  |  * ixgbe_dcb_check_config(). | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-11-16 19:26:45 -08:00
										 |  |  | s32 ixgbe_dcb_calculate_tc_credits(struct ixgbe_hw *hw, | 
					
						
							|  |  |  | 				   struct ixgbe_dcb_config *dcb_config, | 
					
						
							| 
									
										
										
										
											2010-10-28 00:59:57 +00:00
										 |  |  | 				   int max_frame, u8 direction) | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct tc_bw_alloc *p; | 
					
						
							| 
									
										
										
										
											2010-10-28 00:59:57 +00:00
										 |  |  | 	int min_credit; | 
					
						
							|  |  |  | 	int min_multiplier; | 
					
						
							|  |  |  | 	int min_percent = 100; | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | 	s32 ret_val = 0; | 
					
						
							|  |  |  | 	/* Initialization values default for Tx settings */ | 
					
						
							|  |  |  | 	u32 credit_refill       = 0; | 
					
						
							|  |  |  | 	u32 credit_max          = 0; | 
					
						
							|  |  |  | 	u16 link_percentage     = 0; | 
					
						
							|  |  |  | 	u8  bw_percent          = 0; | 
					
						
							|  |  |  | 	u8  i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dcb_config == NULL) { | 
					
						
							|  |  |  | 		ret_val = DCB_ERR_CONFIG; | 
					
						
							|  |  |  | 		goto out; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-28 00:59:57 +00:00
										 |  |  | 	min_credit = ((max_frame / 2) + DCB_CREDIT_QUANTUM - 1) / | 
					
						
							|  |  |  | 			DCB_CREDIT_QUANTUM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Find smallest link percentage */ | 
					
						
							|  |  |  | 	for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { | 
					
						
							|  |  |  | 		p = &dcb_config->tc_config[i].path[direction]; | 
					
						
							|  |  |  | 		bw_percent = dcb_config->bw_percentage[direction][p->bwg_id]; | 
					
						
							|  |  |  | 		link_percentage = p->bwg_percent; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		link_percentage = (link_percentage * bw_percent) / 100; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (link_percentage && link_percentage < min_percent) | 
					
						
							|  |  |  | 			min_percent = link_percentage; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * The ratio between traffic classes will control the bandwidth | 
					
						
							|  |  |  | 	 * percentages seen on the wire. To calculate this ratio we use | 
					
						
							|  |  |  | 	 * a multiplier. It is required that the refill credits must be | 
					
						
							|  |  |  | 	 * larger than the max frame size so here we find the smallest | 
					
						
							|  |  |  | 	 * multiplier that will allow all bandwidth percentages to be | 
					
						
							|  |  |  | 	 * greater than the max frame size. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	min_multiplier = (min_credit / min_percent) + 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | 	/* Find out the link percentage for each TC first */ | 
					
						
							|  |  |  | 	for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { | 
					
						
							|  |  |  | 		p = &dcb_config->tc_config[i].path[direction]; | 
					
						
							|  |  |  | 		bw_percent = dcb_config->bw_percentage[direction][p->bwg_id]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		link_percentage = p->bwg_percent; | 
					
						
							|  |  |  | 		/* Must be careful of integer division for very small nums */ | 
					
						
							|  |  |  | 		link_percentage = (link_percentage * bw_percent) / 100; | 
					
						
							|  |  |  | 		if (p->bwg_percent > 0 && link_percentage == 0) | 
					
						
							|  |  |  | 			link_percentage = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Save link_percentage for reference */ | 
					
						
							|  |  |  | 		p->link_percent = (u8)link_percentage; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-28 00:59:57 +00:00
										 |  |  | 		/* Calculate credit refill ratio using multiplier */ | 
					
						
							|  |  |  | 		credit_refill = min(link_percentage * min_multiplier, | 
					
						
							|  |  |  | 				    MAX_CREDIT_REFILL); | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | 		p->data_credits_refill = (u16)credit_refill; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Calculate maximum credit for the TC */ | 
					
						
							|  |  |  | 		credit_max = (link_percentage * MAX_CREDIT) / 100; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/*
 | 
					
						
							|  |  |  | 		 * Adjustment based on rule checking, if the percentage | 
					
						
							|  |  |  | 		 * of a TC is too small, the maximum credit may not be | 
					
						
							|  |  |  | 		 * enough to send out a jumbo frame in data plane arbitration. | 
					
						
							|  |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2010-10-28 00:59:57 +00:00
										 |  |  | 		if (credit_max && (credit_max < min_credit)) | 
					
						
							|  |  |  | 			credit_max = min_credit; | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (direction == DCB_TX_CONFIG) { | 
					
						
							|  |  |  | 			/*
 | 
					
						
							|  |  |  | 			 * Adjustment based on rule checking, if the | 
					
						
							|  |  |  | 			 * percentage of a TC is too small, the maximum | 
					
						
							|  |  |  | 			 * credit may not be enough to send out a TSO | 
					
						
							|  |  |  | 			 * packet in descriptor plane arbitration. | 
					
						
							|  |  |  | 			 */ | 
					
						
							| 
									
										
										
										
											2010-11-16 19:26:45 -08:00
										 |  |  | 			if ((hw->mac.type == ixgbe_mac_82598EB) && | 
					
						
							|  |  |  | 			    credit_max && | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | 			    (credit_max < MINIMUM_CREDIT_FOR_TSO)) | 
					
						
							|  |  |  | 				credit_max = MINIMUM_CREDIT_FOR_TSO; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			dcb_config->tc_config[i].desc_credits_max = | 
					
						
							|  |  |  | 				(u16)credit_max; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		p->data_credits_max = (u16)credit_max; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | out: | 
					
						
							|  |  |  | 	return ret_val; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | void ixgbe_dcb_unpack_pfc(struct ixgbe_dcb_config *cfg, u8 *pfc_en) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:39 +00:00
										 |  |  | 	struct tc_configuration *tc_config = &cfg->tc_config[0]; | 
					
						
							|  |  |  | 	int tc; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:39 +00:00
										 |  |  | 	for (*pfc_en = 0, tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) { | 
					
						
							|  |  |  | 		if (tc_config[tc].dcb_pfc != pfc_disabled) | 
					
						
							|  |  |  | 			*pfc_en |= 1 << tc; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ixgbe_dcb_unpack_refill(struct ixgbe_dcb_config *cfg, int direction, | 
					
						
							|  |  |  | 			     u16 *refill) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:39 +00:00
										 |  |  | 	struct tc_configuration *tc_config = &cfg->tc_config[0]; | 
					
						
							|  |  |  | 	int tc; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:39 +00:00
										 |  |  | 	for (tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) | 
					
						
							|  |  |  | 		refill[tc] = tc_config[tc].path[direction].data_credits_refill; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ixgbe_dcb_unpack_max(struct ixgbe_dcb_config *cfg, u16 *max) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:39 +00:00
										 |  |  | 	struct tc_configuration *tc_config = &cfg->tc_config[0]; | 
					
						
							|  |  |  | 	int tc; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:39 +00:00
										 |  |  | 	for (tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) | 
					
						
							|  |  |  | 		max[tc] = tc_config[tc].desc_credits_max; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ixgbe_dcb_unpack_bwgid(struct ixgbe_dcb_config *cfg, int direction, | 
					
						
							|  |  |  | 			    u8 *bwgid) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:39 +00:00
										 |  |  | 	struct tc_configuration *tc_config = &cfg->tc_config[0]; | 
					
						
							|  |  |  | 	int tc; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:39 +00:00
										 |  |  | 	for (tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) | 
					
						
							|  |  |  | 		bwgid[tc] = tc_config[tc].path[direction].bwg_id; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ixgbe_dcb_unpack_prio(struct ixgbe_dcb_config *cfg, int direction, | 
					
						
							|  |  |  | 			    u8 *ptype) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:39 +00:00
										 |  |  | 	struct tc_configuration *tc_config = &cfg->tc_config[0]; | 
					
						
							|  |  |  | 	int tc; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:39 +00:00
										 |  |  | 	for (tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) | 
					
						
							|  |  |  | 		ptype[tc] = tc_config[tc].path[direction].prio_type; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-18 06:33:31 +00:00
										 |  |  | u8 ixgbe_dcb_get_tc_from_up(struct ixgbe_dcb_config *cfg, int direction, u8 up) | 
					
						
							| 
									
										
										
										
											2011-09-27 03:51:56 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:34 +00:00
										 |  |  | 	struct tc_configuration *tc_config = &cfg->tc_config[0]; | 
					
						
							|  |  |  | 	u8 prio_mask = 1 << up; | 
					
						
							| 
									
										
										
										
											2012-05-25 01:45:38 +00:00
										 |  |  | 	u8 tc = cfg->num_tcs.pg_tcs; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If tc is 0 then DCB is likely not enabled or supported */ | 
					
						
							|  |  |  | 	if (!tc) | 
					
						
							|  |  |  | 		goto out; | 
					
						
							| 
									
										
										
										
											2011-09-27 03:51:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:34 +00:00
										 |  |  | 	/*
 | 
					
						
							| 
									
										
										
										
											2012-05-25 01:45:38 +00:00
										 |  |  | 	 * Test from maximum TC to 1 and report the first match we find.  If | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:34 +00:00
										 |  |  | 	 * we find no match we can assume that the TC is 0 since the TC must | 
					
						
							|  |  |  | 	 * be set for all user priorities | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2012-05-25 01:45:38 +00:00
										 |  |  | 	for (tc--; tc; tc--) { | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:34 +00:00
										 |  |  | 		if (prio_mask & tc_config[tc].path[direction].up_to_tc_bitmap) | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2011-09-27 03:51:56 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-05-25 01:45:38 +00:00
										 |  |  | out: | 
					
						
							| 
									
										
										
										
											2012-05-17 05:14:34 +00:00
										 |  |  | 	return tc; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ixgbe_dcb_unpack_map(struct ixgbe_dcb_config *cfg, int direction, u8 *map) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u8 up; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (up = 0; up < MAX_USER_PRIORITY; up++) | 
					
						
							|  |  |  | 		map[up] = ixgbe_dcb_get_tc_from_up(cfg, direction, up); | 
					
						
							| 
									
										
										
										
											2011-09-27 03:51:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * ixgbe_dcb_hw_config - Config and enable DCB | 
					
						
							|  |  |  |  * @hw: pointer to hardware structure | 
					
						
							|  |  |  |  * @dcb_config: pointer to ixgbe_dcb_config structure | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Configure dcb settings and enable dcb mode. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | s32 ixgbe_dcb_hw_config(struct ixgbe_hw *hw, | 
					
						
							|  |  |  |                         struct ixgbe_dcb_config *dcb_config) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	s32 ret = 0; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | 	u8 pfc_en; | 
					
						
							|  |  |  | 	u8 ptype[MAX_TRAFFIC_CLASS]; | 
					
						
							|  |  |  | 	u8 bwgid[MAX_TRAFFIC_CLASS]; | 
					
						
							| 
									
										
										
										
											2011-09-27 03:51:56 +00:00
										 |  |  | 	u8 prio_tc[MAX_TRAFFIC_CLASS]; | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | 	u16 refill[MAX_TRAFFIC_CLASS]; | 
					
						
							|  |  |  | 	u16 max[MAX_TRAFFIC_CLASS]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Unpack CEE standard containers */ | 
					
						
							|  |  |  | 	ixgbe_dcb_unpack_pfc(dcb_config, &pfc_en); | 
					
						
							|  |  |  | 	ixgbe_dcb_unpack_refill(dcb_config, DCB_TX_CONFIG, refill); | 
					
						
							|  |  |  | 	ixgbe_dcb_unpack_max(dcb_config, max); | 
					
						
							|  |  |  | 	ixgbe_dcb_unpack_bwgid(dcb_config, DCB_TX_CONFIG, bwgid); | 
					
						
							|  |  |  | 	ixgbe_dcb_unpack_prio(dcb_config, DCB_TX_CONFIG, ptype); | 
					
						
							| 
									
										
										
										
											2011-09-27 03:51:56 +00:00
										 |  |  | 	ixgbe_dcb_unpack_map(dcb_config, DCB_TX_CONFIG, prio_tc); | 
					
						
							| 
									
										
										
										
											2011-01-05 04:47:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-16 19:27:17 -08:00
										 |  |  | 	switch (hw->mac.type) { | 
					
						
							|  |  |  | 	case ixgbe_mac_82598EB: | 
					
						
							| 
									
										
										
										
											2011-05-02 12:34:10 +00:00
										 |  |  | 		ret = ixgbe_dcb_hw_config_82598(hw, pfc_en, refill, max, | 
					
						
							|  |  |  | 						bwgid, ptype); | 
					
						
							| 
									
										
										
										
											2010-11-16 19:27:17 -08:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case ixgbe_mac_82599EB: | 
					
						
							|  |  |  | 	case ixgbe_mac_X540: | 
					
						
							| 
									
										
										
										
											2011-05-02 12:34:10 +00:00
										 |  |  | 		ret = ixgbe_dcb_hw_config_82599(hw, pfc_en, refill, max, | 
					
						
							|  |  |  | 						bwgid, ptype, prio_tc); | 
					
						
							| 
									
										
										
										
											2010-11-16 19:27:17 -08:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-11-20 20:52:10 -08:00
										 |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  | /* Helper routines to abstract HW specifics from DCB netlink ops */ | 
					
						
							| 
									
										
										
										
											2011-09-27 03:51:56 +00:00
										 |  |  | s32 ixgbe_dcb_hw_pfc_config(struct ixgbe_hw *hw, u8 pfc_en, u8 *prio_tc) | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int ret = -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (hw->mac.type) { | 
					
						
							|  |  |  | 	case ixgbe_mac_82598EB: | 
					
						
							|  |  |  | 		ret = ixgbe_dcb_config_pfc_82598(hw, pfc_en); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case ixgbe_mac_82599EB: | 
					
						
							|  |  |  | 	case ixgbe_mac_X540: | 
					
						
							| 
									
										
										
										
											2011-09-27 03:51:56 +00:00
										 |  |  | 		ret = ixgbe_dcb_config_pfc_82599(hw, pfc_en, prio_tc); | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-04 05:47:07 +00:00
										 |  |  | s32 ixgbe_dcb_hw_ets(struct ixgbe_hw *hw, struct ieee_ets *ets, int max_frame) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	__u16 refill[IEEE_8021QAZ_MAX_TCS], max[IEEE_8021QAZ_MAX_TCS]; | 
					
						
							|  |  |  | 	__u8 prio_type[IEEE_8021QAZ_MAX_TCS]; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* naively give each TC a bwg to map onto CEE hardware */ | 
					
						
							|  |  |  | 	__u8 bwg_id[IEEE_8021QAZ_MAX_TCS] = {0, 1, 2, 3, 4, 5, 6, 7}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Map TSA onto CEE prio type */ | 
					
						
							|  |  |  | 	for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) { | 
					
						
							|  |  |  | 		switch (ets->tc_tsa[i]) { | 
					
						
							|  |  |  | 		case IEEE_8021QAZ_TSA_STRICT: | 
					
						
							|  |  |  | 			prio_type[i] = 2; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case IEEE_8021QAZ_TSA_ETS: | 
					
						
							|  |  |  | 			prio_type[i] = 0; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			/* Hardware only supports priority strict or
 | 
					
						
							|  |  |  | 			 * ETS transmission selection algorithms if | 
					
						
							|  |  |  | 			 * we receive some other value from dcbnl | 
					
						
							|  |  |  | 			 * throw an error | 
					
						
							|  |  |  | 			 */ | 
					
						
							|  |  |  | 			return -EINVAL; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ixgbe_ieee_credits(ets->tc_tx_bw, refill, max, max_frame); | 
					
						
							|  |  |  | 	return ixgbe_dcb_hw_ets_config(hw, refill, max, | 
					
						
							|  |  |  | 				       bwg_id, prio_type, ets->prio_tc); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  | s32 ixgbe_dcb_hw_ets_config(struct ixgbe_hw *hw, | 
					
						
							| 
									
										
										
										
											2011-02-23 05:58:19 +00:00
										 |  |  | 			    u16 *refill, u16 *max, u8 *bwg_id, | 
					
						
							|  |  |  | 			    u8 *prio_type, u8 *prio_tc) | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	switch (hw->mac.type) { | 
					
						
							|  |  |  | 	case ixgbe_mac_82598EB: | 
					
						
							|  |  |  | 		ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, | 
					
						
							|  |  |  | 							prio_type); | 
					
						
							|  |  |  | 		ixgbe_dcb_config_tx_desc_arbiter_82598(hw, refill, max, | 
					
						
							|  |  |  | 							     bwg_id, prio_type); | 
					
						
							|  |  |  | 		ixgbe_dcb_config_tx_data_arbiter_82598(hw, refill, max, | 
					
						
							|  |  |  | 							     bwg_id, prio_type); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case ixgbe_mac_82599EB: | 
					
						
							|  |  |  | 	case ixgbe_mac_X540: | 
					
						
							|  |  |  | 		ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, | 
					
						
							| 
									
										
										
										
											2011-02-23 05:58:19 +00:00
										 |  |  | 						  bwg_id, prio_type, prio_tc); | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  | 		ixgbe_dcb_config_tx_desc_arbiter_82599(hw, refill, max, | 
					
						
							|  |  |  | 						       bwg_id, prio_type); | 
					
						
							| 
									
										
										
										
											2011-02-23 05:58:19 +00:00
										 |  |  | 		ixgbe_dcb_config_tx_data_arbiter_82599(hw, refill, max, bwg_id, | 
					
						
							|  |  |  | 						       prio_type, prio_tc); | 
					
						
							| 
									
										
										
										
											2011-02-10 14:40:01 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-04-18 04:23:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static void ixgbe_dcb_read_rtrup2tc_82599(struct ixgbe_hw *hw, u8 *map) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	u32 reg, i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC); | 
					
						
							|  |  |  | 	for (i = 0; i < MAX_USER_PRIORITY; i++) | 
					
						
							|  |  |  | 		map[i] = IXGBE_RTRUP2TC_UP_MASK & | 
					
						
							|  |  |  | 			(reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT)); | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ixgbe_dcb_read_rtrup2tc(struct ixgbe_hw *hw, u8 *map) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	switch (hw->mac.type) { | 
					
						
							|  |  |  | 	case ixgbe_mac_82599EB: | 
					
						
							|  |  |  | 	case ixgbe_mac_X540: | 
					
						
							|  |  |  | 		ixgbe_dcb_read_rtrup2tc_82599(hw, map); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |