ice_sched.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Copyright (c) 2018, Intel Corporation. */
  3. #ifndef _ICE_SCHED_H_
  4. #define _ICE_SCHED_H_
  5. #include "ice_common.h"
  6. #define ICE_QGRP_LAYER_OFFSET 2
  7. #define ICE_VSI_LAYER_OFFSET 4
  8. struct ice_sched_agg_vsi_info {
  9. struct list_head list_entry;
  10. DECLARE_BITMAP(tc_bitmap, ICE_MAX_TRAFFIC_CLASS);
  11. u16 vsi_id;
  12. };
  13. struct ice_sched_agg_info {
  14. struct list_head agg_vsi_list;
  15. struct list_head list_entry;
  16. DECLARE_BITMAP(tc_bitmap, ICE_MAX_TRAFFIC_CLASS);
  17. u32 agg_id;
  18. enum ice_agg_type agg_type;
  19. };
  20. /* FW AQ command calls */
  21. enum ice_status ice_sched_init_port(struct ice_port_info *pi);
  22. enum ice_status ice_sched_query_res_alloc(struct ice_hw *hw);
  23. void ice_sched_cleanup_all(struct ice_hw *hw);
  24. struct ice_sched_node *
  25. ice_sched_find_node_by_teid(struct ice_sched_node *start_node, u32 teid);
  26. enum ice_status
  27. ice_sched_add_node(struct ice_port_info *pi, u8 layer,
  28. struct ice_aqc_txsched_elem_data *info);
  29. void ice_free_sched_node(struct ice_port_info *pi, struct ice_sched_node *node);
  30. struct ice_sched_node *ice_sched_get_tc_node(struct ice_port_info *pi, u8 tc);
  31. struct ice_sched_node *
  32. ice_sched_get_free_qparent(struct ice_port_info *pi, u16 vsi_id, u8 tc,
  33. u8 owner);
  34. enum ice_status
  35. ice_sched_cfg_vsi(struct ice_port_info *pi, u16 vsi_id, u8 tc, u16 maxqs,
  36. u8 owner, bool enable);
  37. #endif /* _ICE_SCHED_H_ */