aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/intel/ice/ice_common.h
diff options
context:
space:
mode:
authorAnirudh Venkataramanan <anirudh.venkataramanan@intel.com>2018-03-20 10:58:08 -0400
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2018-03-26 13:14:57 -0400
commit9c20346b6309e20f64ee8e7054914ddc92c60baf (patch)
treeefc92292f19570987f9bb4e9c0be518efa98efe6 /drivers/net/ethernet/intel/ice/ice_common.h
parentf31e4b6fe227dfd7ed51c3fc0550878c7d7a8cf2 (diff)
ice: Get switch config, scheduler config and device capabilities
This patch adds to the initialization flow by getting switch configuration, scheduler configuration and device capabilities. Switch configuration: On boot, an L2 switch element is created in the firmware per physical function. Each physical function is also mapped to a port, to which its switch element is connected. In other words, this switch can be visualized as an embedded vSwitch that can connect a physical function's virtual station interfaces (VSIs) to the egress/ingress port. Egress/ingress filters will be eventually created and applied on this switch element. As part of the initialization flow, the driver gets configuration data from this switch element and stores it. Scheduler configuration: The Tx scheduler is a subsystem responsible for setting and enforcing QoS. As part of the initialization flow, the driver queries and stores the default scheduler configuration for the given physical function. Device capabilities: As part of initialization, the driver has to determine what the device is capable of (ex. max queues, VSIs, etc). This information is obtained from the firmware and stored by the driver. CC: Shannon Nelson <shannon.nelson@oracle.com> Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Acked-by: Shannon Nelson <shannon.nelson@oracle.com> Tested-by: Tony Brelinski <tonyx.brelinski@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_common.h')
-rw-r--r--drivers/net/ethernet/intel/ice/ice_common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_common.h b/drivers/net/ethernet/intel/ice/ice_common.h
index b1a7c5afe86b..87d873493bdd 100644
--- a/drivers/net/ethernet/intel/ice/ice_common.h
+++ b/drivers/net/ethernet/intel/ice/ice_common.h
@@ -6,6 +6,7 @@
6 6
7#include "ice.h" 7#include "ice.h"
8#include "ice_type.h" 8#include "ice_type.h"
9#include "ice_switch.h"
9 10
10void ice_debug_cq(struct ice_hw *hw, u32 mask, void *desc, void *buf, 11void ice_debug_cq(struct ice_hw *hw, u32 mask, void *desc, void *buf,
11 u16 buf_len); 12 u16 buf_len);
@@ -25,6 +26,7 @@ ice_sq_send_cmd(struct ice_hw *hw, struct ice_ctl_q_info *cq,
25 struct ice_aq_desc *desc, void *buf, u16 buf_size, 26 struct ice_aq_desc *desc, void *buf, u16 buf_size,
26 struct ice_sq_cd *cd); 27 struct ice_sq_cd *cd);
27void ice_clear_pxe_mode(struct ice_hw *hw); 28void ice_clear_pxe_mode(struct ice_hw *hw);
29enum ice_status ice_get_caps(struct ice_hw *hw);
28bool ice_check_sq_alive(struct ice_hw *hw, struct ice_ctl_q_info *cq); 30bool ice_check_sq_alive(struct ice_hw *hw, struct ice_ctl_q_info *cq);
29enum ice_status ice_aq_q_shutdown(struct ice_hw *hw, bool unloading); 31enum ice_status ice_aq_q_shutdown(struct ice_hw *hw, bool unloading);
30void ice_fill_dflt_direct_cmd_desc(struct ice_aq_desc *desc, u16 opcode); 32void ice_fill_dflt_direct_cmd_desc(struct ice_aq_desc *desc, u16 opcode);