fm10k_pf.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* Intel Ethernet Switch Host Interface Driver
  2. * Copyright(c) 2013 - 2015 Intel Corporation.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms and conditions of the GNU General Public License,
  6. * version 2, as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope it will be useful, but WITHOUT
  9. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  10. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  11. * more details.
  12. *
  13. * The full GNU General Public License is included in this distribution in
  14. * the file called "COPYING".
  15. *
  16. * Contact Information:
  17. * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
  18. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  19. */
  20. #ifndef _FM10K_PF_H_
  21. #define _FM10K_PF_H_
  22. #include "fm10k_type.h"
  23. #include "fm10k_common.h"
  24. bool fm10k_glort_valid_pf(struct fm10k_hw *hw, u16 glort);
  25. u16 fm10k_queues_per_pool(struct fm10k_hw *hw);
  26. u16 fm10k_vf_queue_index(struct fm10k_hw *hw, u16 vf_idx);
  27. enum fm10k_pf_tlv_msg_id_v1 {
  28. FM10K_PF_MSG_ID_TEST = 0x000, /* msg ID reserved */
  29. FM10K_PF_MSG_ID_XCAST_MODES = 0x001,
  30. FM10K_PF_MSG_ID_UPDATE_MAC_FWD_RULE = 0x002,
  31. FM10K_PF_MSG_ID_LPORT_MAP = 0x100,
  32. FM10K_PF_MSG_ID_LPORT_CREATE = 0x200,
  33. FM10K_PF_MSG_ID_LPORT_DELETE = 0x201,
  34. FM10K_PF_MSG_ID_CONFIG = 0x300,
  35. FM10K_PF_MSG_ID_UPDATE_PVID = 0x400,
  36. FM10K_PF_MSG_ID_CREATE_FLOW_TABLE = 0x501,
  37. FM10K_PF_MSG_ID_DELETE_FLOW_TABLE = 0x502,
  38. FM10K_PF_MSG_ID_UPDATE_FLOW = 0x503,
  39. FM10K_PF_MSG_ID_DELETE_FLOW = 0x504,
  40. FM10K_PF_MSG_ID_SET_FLOW_STATE = 0x505,
  41. FM10K_PF_MSG_ID_GET_1588_INFO = 0x506,
  42. FM10K_PF_MSG_ID_1588_TIMESTAMP = 0x701,
  43. };
  44. enum fm10k_pf_tlv_attr_id_v1 {
  45. FM10K_PF_ATTR_ID_ERR = 0x00,
  46. FM10K_PF_ATTR_ID_LPORT_MAP = 0x01,
  47. FM10K_PF_ATTR_ID_XCAST_MODE = 0x02,
  48. FM10K_PF_ATTR_ID_MAC_UPDATE = 0x03,
  49. FM10K_PF_ATTR_ID_VLAN_UPDATE = 0x04,
  50. FM10K_PF_ATTR_ID_CONFIG = 0x05,
  51. FM10K_PF_ATTR_ID_CREATE_FLOW_TABLE = 0x06,
  52. FM10K_PF_ATTR_ID_DELETE_FLOW_TABLE = 0x07,
  53. FM10K_PF_ATTR_ID_UPDATE_FLOW = 0x08,
  54. FM10K_PF_ATTR_ID_FLOW_STATE = 0x09,
  55. FM10K_PF_ATTR_ID_FLOW_HANDLE = 0x0A,
  56. FM10K_PF_ATTR_ID_DELETE_FLOW = 0x0B,
  57. FM10K_PF_ATTR_ID_PORT = 0x0C,
  58. FM10K_PF_ATTR_ID_UPDATE_PVID = 0x0D,
  59. FM10K_PF_ATTR_ID_1588_TIMESTAMP = 0x10,
  60. };
  61. #define FM10K_MSG_LPORT_MAP_GLORT_SHIFT 0
  62. #define FM10K_MSG_LPORT_MAP_GLORT_SIZE 16
  63. #define FM10K_MSG_LPORT_MAP_MASK_SHIFT 16
  64. #define FM10K_MSG_LPORT_MAP_MASK_SIZE 16
  65. #define FM10K_MSG_UPDATE_PVID_GLORT_SHIFT 0
  66. #define FM10K_MSG_UPDATE_PVID_GLORT_SIZE 16
  67. #define FM10K_MSG_UPDATE_PVID_PVID_SHIFT 16
  68. #define FM10K_MSG_UPDATE_PVID_PVID_SIZE 16
  69. /* The following data structures are overlayed directly onto TLV mailbox
  70. * messages, and must not break 4 byte alignment. Ensure the structures line
  71. * up correctly as per their TLV definition.
  72. */
  73. struct fm10k_mac_update {
  74. __le32 mac_lower;
  75. __le16 mac_upper;
  76. __le16 vlan;
  77. __le16 glort;
  78. u8 flags;
  79. u8 action;
  80. } __aligned(4) __packed;
  81. struct fm10k_global_table_data {
  82. __le32 used;
  83. __le32 avail;
  84. } __aligned(4) __packed;
  85. struct fm10k_swapi_error {
  86. __le32 status;
  87. struct fm10k_global_table_data mac;
  88. struct fm10k_global_table_data nexthop;
  89. struct fm10k_global_table_data ffu;
  90. } __aligned(4) __packed;
  91. struct fm10k_swapi_1588_timestamp {
  92. __le64 egress;
  93. __le64 ingress;
  94. __le16 dglort;
  95. __le16 sglort;
  96. } __aligned(4) __packed;
  97. s32 fm10k_msg_lport_map_pf(struct fm10k_hw *, u32 **, struct fm10k_mbx_info *);
  98. extern const struct fm10k_tlv_attr fm10k_lport_map_msg_attr[];
  99. #define FM10K_PF_MSG_LPORT_MAP_HANDLER(func) \
  100. FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_LPORT_MAP, \
  101. fm10k_lport_map_msg_attr, func)
  102. extern const struct fm10k_tlv_attr fm10k_update_pvid_msg_attr[];
  103. #define FM10K_PF_MSG_UPDATE_PVID_HANDLER(func) \
  104. FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_UPDATE_PVID, \
  105. fm10k_update_pvid_msg_attr, func)
  106. s32 fm10k_msg_err_pf(struct fm10k_hw *, u32 **, struct fm10k_mbx_info *);
  107. extern const struct fm10k_tlv_attr fm10k_err_msg_attr[];
  108. #define FM10K_PF_MSG_ERR_HANDLER(msg, func) \
  109. FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_##msg, fm10k_err_msg_attr, func)
  110. extern const struct fm10k_tlv_attr fm10k_1588_timestamp_msg_attr[];
  111. #define FM10K_PF_MSG_1588_TIMESTAMP_HANDLER(func) \
  112. FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_1588_TIMESTAMP, \
  113. fm10k_1588_timestamp_msg_attr, func)
  114. s32 fm10k_iov_msg_msix_pf(struct fm10k_hw *, u32 **, struct fm10k_mbx_info *);
  115. s32 fm10k_iov_msg_mac_vlan_pf(struct fm10k_hw *, u32 **,
  116. struct fm10k_mbx_info *);
  117. s32 fm10k_iov_msg_lport_state_pf(struct fm10k_hw *, u32 **,
  118. struct fm10k_mbx_info *);
  119. extern const struct fm10k_info fm10k_pf_info;
  120. #endif /* _FM10K_PF_H */