1 /*******************************************************************************
3 Copyright (c) 2013 - 2015, Intel Corporation
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
9 1. Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
12 2. Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
16 3. Neither the name of the Intel Corporation nor the names of its
17 contributors may be used to endorse or promote products derived from
18 this software without specific prior written permission.
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.
32 ***************************************************************************/
37 #include "fm10k_type.h"
38 #include "fm10k_common.h"
40 bool fm10k_glort_valid_pf(struct fm10k_hw *hw, u16 glort);
41 u16 fm10k_queues_per_pool(struct fm10k_hw *hw);
42 u16 fm10k_vf_queue_index(struct fm10k_hw *hw, u16 vf_idx);
44 enum fm10k_pf_tlv_msg_id_v1 {
45 FM10K_PF_MSG_ID_TEST = 0x000, /* msg ID reserved */
46 FM10K_PF_MSG_ID_XCAST_MODES = 0x001,
47 FM10K_PF_MSG_ID_UPDATE_MAC_FWD_RULE = 0x002,
48 FM10K_PF_MSG_ID_LPORT_MAP = 0x100,
49 FM10K_PF_MSG_ID_LPORT_CREATE = 0x200,
50 FM10K_PF_MSG_ID_LPORT_DELETE = 0x201,
51 FM10K_PF_MSG_ID_CONFIG = 0x300,
52 FM10K_PF_MSG_ID_UPDATE_PVID = 0x400,
53 FM10K_PF_MSG_ID_CREATE_FLOW_TABLE = 0x501,
54 FM10K_PF_MSG_ID_DELETE_FLOW_TABLE = 0x502,
55 FM10K_PF_MSG_ID_UPDATE_FLOW = 0x503,
56 FM10K_PF_MSG_ID_DELETE_FLOW = 0x504,
57 FM10K_PF_MSG_ID_SET_FLOW_STATE = 0x505,
58 FM10K_PF_MSG_ID_GET_1588_INFO = 0x506,
59 FM10K_PF_MSG_ID_1588_TIMESTAMP = 0x701,
60 FM10K_PF_MSG_ID_1588_CLOCK_OWNER = 0x702,
61 FM10K_PF_MSG_ID_MASTER_CLK_OFFSET = 0x703,
64 enum fm10k_pf_tlv_attr_id_v1 {
65 FM10K_PF_ATTR_ID_ERR = 0x00,
66 FM10K_PF_ATTR_ID_LPORT_MAP = 0x01,
67 FM10K_PF_ATTR_ID_XCAST_MODE = 0x02,
68 FM10K_PF_ATTR_ID_MAC_UPDATE = 0x03,
69 FM10K_PF_ATTR_ID_VLAN_UPDATE = 0x04,
70 FM10K_PF_ATTR_ID_CONFIG = 0x05,
71 FM10K_PF_ATTR_ID_CREATE_FLOW_TABLE = 0x06,
72 FM10K_PF_ATTR_ID_DELETE_FLOW_TABLE = 0x07,
73 FM10K_PF_ATTR_ID_UPDATE_FLOW = 0x08,
74 FM10K_PF_ATTR_ID_FLOW_STATE = 0x09,
75 FM10K_PF_ATTR_ID_FLOW_HANDLE = 0x0A,
76 FM10K_PF_ATTR_ID_DELETE_FLOW = 0x0B,
77 FM10K_PF_ATTR_ID_PORT = 0x0C,
78 FM10K_PF_ATTR_ID_UPDATE_PVID = 0x0D,
79 FM10K_PF_ATTR_ID_1588_TIMESTAMP = 0x10,
80 FM10K_PF_ATTR_ID_1588_CLOCK_OWNER = 0x12,
81 FM10K_PF_ATTR_ID_MASTER_CLK_OFFSET = 0x14,
84 #define FM10K_MSG_LPORT_MAP_GLORT_SHIFT 0
85 #define FM10K_MSG_LPORT_MAP_GLORT_SIZE 16
86 #define FM10K_MSG_LPORT_MAP_MASK_SHIFT 16
87 #define FM10K_MSG_LPORT_MAP_MASK_SIZE 16
89 #define FM10K_MSG_UPDATE_PVID_GLORT_SHIFT 0
90 #define FM10K_MSG_UPDATE_PVID_GLORT_SIZE 16
91 #define FM10K_MSG_UPDATE_PVID_PVID_SHIFT 16
92 #define FM10K_MSG_UPDATE_PVID_PVID_SIZE 16
94 /* The following data structures are overlayed specifically to TLV mailbox
95 * messages, and must not have gaps between their values. They must line up
96 * correctly to the TLV definition.
104 struct fm10k_mac_update {
113 struct fm10k_global_table_data {
118 struct fm10k_swapi_error {
120 struct fm10k_global_table_data mac;
121 struct fm10k_global_table_data nexthop;
122 struct fm10k_global_table_data ffu;
125 struct fm10k_swapi_1588_timestamp {
132 struct fm10k_swapi_1588_clock_owner {
143 #define FM10K_PF_MSG_LPORT_CREATE_HANDLER(func) \
144 FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_LPORT_CREATE, NULL, func)
145 #define FM10K_PF_MSG_LPORT_DELETE_HANDLER(func) \
146 FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_LPORT_DELETE, NULL, func)
147 s32 fm10k_msg_lport_map_pf(struct fm10k_hw *, u32 **, struct fm10k_mbx_info *);
148 extern const struct fm10k_tlv_attr fm10k_lport_map_msg_attr[];
149 #define FM10K_PF_MSG_LPORT_MAP_HANDLER(func) \
150 FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_LPORT_MAP, \
151 fm10k_lport_map_msg_attr, func)
152 extern const struct fm10k_tlv_attr fm10k_update_pvid_msg_attr[];
153 #define FM10K_PF_MSG_UPDATE_PVID_HANDLER(func) \
154 FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_UPDATE_PVID, \
155 fm10k_update_pvid_msg_attr, func)
157 s32 fm10k_msg_err_pf(struct fm10k_hw *, u32 **, struct fm10k_mbx_info *);
158 extern const struct fm10k_tlv_attr fm10k_err_msg_attr[];
159 #define FM10K_PF_MSG_ERR_HANDLER(msg, func) \
160 FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_##msg, fm10k_err_msg_attr, func)
162 extern const struct fm10k_tlv_attr fm10k_1588_timestamp_msg_attr[];
163 #define FM10K_PF_MSG_1588_TIMESTAMP_HANDLER(func) \
164 FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_1588_TIMESTAMP, \
165 fm10k_1588_timestamp_msg_attr, func)
167 s32 fm10k_msg_1588_clock_owner_pf(struct fm10k_hw *, u32 **,
168 struct fm10k_mbx_info *);
169 extern const struct fm10k_tlv_attr fm10k_1588_clock_owner_attr[];
170 #define FM10K_PF_MSG_1588_CLOCK_OWNER_HANDLER(func) \
171 FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_1588_CLOCK_OWNER, \
172 fm10k_1588_clock_owner_attr, func)
174 extern const struct fm10k_tlv_attr fm10k_master_clk_offset_attr[];
175 #define FM10K_PF_MSG_MASTER_CLK_OFFSET_HANDLER(func) \
176 FM10K_MSG_HANDLER(FM10K_PF_MSG_ID_MASTER_CLK_OFFSET, \
177 fm10k_master_clk_offset_attr, func)
179 s32 fm10k_iov_msg_msix_pf(struct fm10k_hw *, u32 **, struct fm10k_mbx_info *);
180 s32 fm10k_iov_msg_mac_vlan_pf(struct fm10k_hw *, u32 **,
181 struct fm10k_mbx_info *);
182 s32 fm10k_iov_msg_lport_state_pf(struct fm10k_hw *, u32 **,
183 struct fm10k_mbx_info *);
184 #ifndef NO_DEFAULT_SRIOV_MSG_HANDLERS
185 extern const struct fm10k_msg_data fm10k_iov_msg_data_pf[];
188 s32 fm10k_init_ops_pf(struct fm10k_hw *hw);
189 #endif /* _FM10K_PF_H */