root/drivers/net/ethernet/intel/ice/ice_common.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0 */
   2 /* Copyright (c) 2018, Intel Corporation. */
   3 
   4 #ifndef _ICE_COMMON_H_
   5 #define _ICE_COMMON_H_
   6 
   7 #include "ice.h"
   8 #include "ice_type.h"
   9 #include "ice_flex_pipe.h"
  10 #include "ice_switch.h"
  11 #include <linux/avf/virtchnl.h>
  12 
  13 enum ice_status ice_nvm_validate_checksum(struct ice_hw *hw);
  14 
  15 void
  16 ice_debug_cq(struct ice_hw *hw, u32 mask, void *desc, void *buf, u16 buf_len);
  17 enum ice_status ice_init_hw(struct ice_hw *hw);
  18 void ice_deinit_hw(struct ice_hw *hw);
  19 enum ice_status ice_check_reset(struct ice_hw *hw);
  20 enum ice_status ice_reset(struct ice_hw *hw, enum ice_reset_req req);
  21 enum ice_status ice_create_all_ctrlq(struct ice_hw *hw);
  22 enum ice_status ice_init_all_ctrlq(struct ice_hw *hw);
  23 void ice_shutdown_all_ctrlq(struct ice_hw *hw);
  24 void ice_destroy_all_ctrlq(struct ice_hw *hw);
  25 enum ice_status
  26 ice_clean_rq_elem(struct ice_hw *hw, struct ice_ctl_q_info *cq,
  27                   struct ice_rq_event_info *e, u16 *pending);
  28 enum ice_status
  29 ice_get_link_status(struct ice_port_info *pi, bool *link_up);
  30 enum ice_status ice_update_link_info(struct ice_port_info *pi);
  31 enum ice_status
  32 ice_acquire_res(struct ice_hw *hw, enum ice_aq_res_ids res,
  33                 enum ice_aq_res_access_type access, u32 timeout);
  34 void ice_release_res(struct ice_hw *hw, enum ice_aq_res_ids res);
  35 enum ice_status ice_init_nvm(struct ice_hw *hw);
  36 enum ice_status
  37 ice_read_sr_buf(struct ice_hw *hw, u16 offset, u16 *words, u16 *data);
  38 enum ice_status
  39 ice_sq_send_cmd(struct ice_hw *hw, struct ice_ctl_q_info *cq,
  40                 struct ice_aq_desc *desc, void *buf, u16 buf_size,
  41                 struct ice_sq_cd *cd);
  42 void ice_clear_pxe_mode(struct ice_hw *hw);
  43 enum ice_status ice_get_caps(struct ice_hw *hw);
  44 
  45 void ice_set_safe_mode_caps(struct ice_hw *hw);
  46 
  47 void ice_dev_onetime_setup(struct ice_hw *hw);
  48 
  49 enum ice_status
  50 ice_write_rxq_ctx(struct ice_hw *hw, struct ice_rlan_ctx *rlan_ctx,
  51                   u32 rxq_index);
  52 
  53 enum ice_status
  54 ice_aq_get_rss_lut(struct ice_hw *hw, u16 vsi_handle, u8 lut_type, u8 *lut,
  55                    u16 lut_size);
  56 enum ice_status
  57 ice_aq_set_rss_lut(struct ice_hw *hw, u16 vsi_handle, u8 lut_type, u8 *lut,
  58                    u16 lut_size);
  59 enum ice_status
  60 ice_aq_get_rss_key(struct ice_hw *hw, u16 vsi_handle,
  61                    struct ice_aqc_get_set_rss_keys *keys);
  62 enum ice_status
  63 ice_aq_set_rss_key(struct ice_hw *hw, u16 vsi_handle,
  64                    struct ice_aqc_get_set_rss_keys *keys);
  65 
  66 bool ice_check_sq_alive(struct ice_hw *hw, struct ice_ctl_q_info *cq);
  67 enum ice_status ice_aq_q_shutdown(struct ice_hw *hw, bool unloading);
  68 void ice_fill_dflt_direct_cmd_desc(struct ice_aq_desc *desc, u16 opcode);
  69 extern const struct ice_ctx_ele ice_tlan_ctx_info[];
  70 enum ice_status
  71 ice_set_ctx(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info);
  72 
  73 extern struct mutex ice_global_cfg_lock_sw;
  74 
  75 enum ice_status
  76 ice_aq_send_cmd(struct ice_hw *hw, struct ice_aq_desc *desc,
  77                 void *buf, u16 buf_size, struct ice_sq_cd *cd);
  78 enum ice_status ice_aq_get_fw_ver(struct ice_hw *hw, struct ice_sq_cd *cd);
  79 
  80 enum ice_status
  81 ice_aq_send_driver_ver(struct ice_hw *hw, struct ice_driver_ver *dv,
  82                        struct ice_sq_cd *cd);
  83 enum ice_status
  84 ice_aq_get_phy_caps(struct ice_port_info *pi, bool qual_mods, u8 report_mode,
  85                     struct ice_aqc_get_phy_caps_data *caps,
  86                     struct ice_sq_cd *cd);
  87 void
  88 ice_update_phy_type(u64 *phy_type_low, u64 *phy_type_high,
  89                     u16 link_speeds_bitmap);
  90 enum ice_status
  91 ice_aq_manage_mac_write(struct ice_hw *hw, const u8 *mac_addr, u8 flags,
  92                         struct ice_sq_cd *cd);
  93 enum ice_status ice_clear_pf_cfg(struct ice_hw *hw);
  94 enum ice_status
  95 ice_aq_set_phy_cfg(struct ice_hw *hw, u8 lport,
  96                    struct ice_aqc_set_phy_cfg_data *cfg, struct ice_sq_cd *cd);
  97 enum ice_status
  98 ice_set_fc(struct ice_port_info *pi, u8 *aq_failures,
  99            bool ena_auto_link_update);
 100 void
 101 ice_cfg_phy_fec(struct ice_aqc_set_phy_cfg_data *cfg, enum ice_fec_mode fec);
 102 void
 103 ice_copy_phy_caps_to_cfg(struct ice_aqc_get_phy_caps_data *caps,
 104                          struct ice_aqc_set_phy_cfg_data *cfg);
 105 enum ice_status
 106 ice_aq_set_link_restart_an(struct ice_port_info *pi, bool ena_link,
 107                            struct ice_sq_cd *cd);
 108 enum ice_status
 109 ice_aq_get_link_info(struct ice_port_info *pi, bool ena_lse,
 110                      struct ice_link_status *link, struct ice_sq_cd *cd);
 111 enum ice_status
 112 ice_aq_set_event_mask(struct ice_hw *hw, u8 port_num, u16 mask,
 113                       struct ice_sq_cd *cd);
 114 enum ice_status
 115 ice_aq_set_mac_loopback(struct ice_hw *hw, bool ena_lpbk, struct ice_sq_cd *cd);
 116 
 117 enum ice_status
 118 ice_aq_set_port_id_led(struct ice_port_info *pi, bool is_orig_mode,
 119                        struct ice_sq_cd *cd);
 120 
 121 enum ice_status
 122 ice_dis_vsi_txq(struct ice_port_info *pi, u16 vsi_handle, u8 tc, u8 num_queues,
 123                 u16 *q_handle, u16 *q_ids, u32 *q_teids,
 124                 enum ice_disq_rst_src rst_src, u16 vmvf_num,
 125                 struct ice_sq_cd *cd);
 126 enum ice_status
 127 ice_cfg_vsi_lan(struct ice_port_info *pi, u16 vsi_handle, u8 tc_bitmap,
 128                 u16 *max_lanqs);
 129 enum ice_status
 130 ice_ena_vsi_txq(struct ice_port_info *pi, u16 vsi_handle, u8 tc, u16 q_handle,
 131                 u8 num_qgrps, struct ice_aqc_add_tx_qgrp *buf, u16 buf_size,
 132                 struct ice_sq_cd *cd);
 133 enum ice_status ice_replay_vsi(struct ice_hw *hw, u16 vsi_handle);
 134 void ice_replay_post(struct ice_hw *hw);
 135 void ice_output_fw_log(struct ice_hw *hw, struct ice_aq_desc *desc, void *buf);
 136 void
 137 ice_stat_update40(struct ice_hw *hw, u32 reg, bool prev_stat_loaded,
 138                   u64 *prev_stat, u64 *cur_stat);
 139 void
 140 ice_stat_update32(struct ice_hw *hw, u32 reg, bool prev_stat_loaded,
 141                   u64 *prev_stat, u64 *cur_stat);
 142 void
 143 ice_get_nvm_version(struct ice_hw *hw, u8 *oem_ver, u16 *oem_build,
 144                     u8 *oem_patch, u8 *ver_hi, u8 *ver_lo);
 145 enum ice_status
 146 ice_sched_query_elem(struct ice_hw *hw, u32 node_teid,
 147                      struct ice_aqc_get_elem *buf);
 148 #endif /* _ICE_COMMON_H_ */

/* [<][>][^][v][top][bottom][index][help] */