]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/ethernet/qlogic/qed/qed_mcp.h
Merge tag 'nfc-next-4.7-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo...
[mirror_ubuntu-hirsute-kernel.git] / drivers / net / ethernet / qlogic / qed / qed_mcp.h
CommitLineData
fe56b9e6
YM
1/* QLogic qed NIC Driver
2 * Copyright (c) 2015 QLogic Corporation
3 *
4 * This software is available under the terms of the GNU General Public License
5 * (GPL) Version 2, available from the file COPYING in the main directory of
6 * this source tree.
7 */
8
9#ifndef _QED_MCP_H
10#define _QED_MCP_H
11
12#include <linux/types.h>
13#include <linux/delay.h>
fe56b9e6 14#include <linux/slab.h>
5529bad9 15#include <linux/spinlock.h>
fe56b9e6
YM
16#include "qed_hsi.h"
17
cc875c2e
YM
18struct qed_mcp_link_speed_params {
19 bool autoneg;
20 u32 advertised_speeds; /* bitmask of DRV_SPEED_CAPABILITY */
21 u32 forced_speed; /* In Mb/s */
22};
23
24struct qed_mcp_link_pause_params {
25 bool autoneg;
26 bool forced_rx;
27 bool forced_tx;
28};
29
30struct qed_mcp_link_params {
31 struct qed_mcp_link_speed_params speed;
32 struct qed_mcp_link_pause_params pause;
33 u32 loopback_mode;
34};
35
36struct qed_mcp_link_capabilities {
37 u32 speed_capabilities;
38};
39
40struct qed_mcp_link_state {
41 bool link_up;
42
a64b02d5
MC
43 u32 min_pf_rate;
44
4b01e519
MC
45 /* Actual link speed in Mb/s */
46 u32 line_speed;
47
48 /* PF max speed in Mb/s, deduced from line_speed
49 * according to PF max bandwidth configuration.
50 */
51 u32 speed;
cc875c2e
YM
52 bool full_duplex;
53
54 bool an;
55 bool an_complete;
56 bool parallel_detection;
57 bool pfc_enabled;
58
59#define QED_LINK_PARTNER_SPEED_1G_HD BIT(0)
60#define QED_LINK_PARTNER_SPEED_1G_FD BIT(1)
61#define QED_LINK_PARTNER_SPEED_10G BIT(2)
62#define QED_LINK_PARTNER_SPEED_20G BIT(3)
63#define QED_LINK_PARTNER_SPEED_40G BIT(4)
64#define QED_LINK_PARTNER_SPEED_50G BIT(5)
65#define QED_LINK_PARTNER_SPEED_100G BIT(6)
66 u32 partner_adv_speed;
67
68 bool partner_tx_flow_ctrl_en;
69 bool partner_rx_flow_ctrl_en;
70
71#define QED_LINK_PARTNER_SYMMETRIC_PAUSE (1)
72#define QED_LINK_PARTNER_ASYMMETRIC_PAUSE (2)
73#define QED_LINK_PARTNER_BOTH_PAUSE (3)
74 u8 partner_adv_pause;
75
76 bool sfp_tx_fault;
77};
78
fe56b9e6
YM
79struct qed_mcp_function_info {
80 u8 pause_on_host;
81
82 enum qed_pci_personality protocol;
83
84 u8 bandwidth_min;
85 u8 bandwidth_max;
86
87 u8 mac[ETH_ALEN];
88
89 u64 wwn_port;
90 u64 wwn_node;
91
92#define QED_MCP_VLAN_UNSET (0xffff)
93 u16 ovlan;
94};
95
96struct qed_mcp_nvm_common {
97 u32 offset;
98 u32 param;
99 u32 resp;
100 u32 cmd;
101};
102
103struct qed_mcp_drv_version {
104 u32 version;
105 u8 name[MCP_DRV_VER_STR_SIZE - 4];
106};
107
cc875c2e
YM
108/**
109 * @brief - returns the link params of the hw function
110 *
111 * @param p_hwfn
112 *
113 * @returns pointer to link params
114 */
115struct qed_mcp_link_params *qed_mcp_get_link_params(struct qed_hwfn *);
116
117/**
118 * @brief - return the link state of the hw function
119 *
120 * @param p_hwfn
121 *
122 * @returns pointer to link state
123 */
124struct qed_mcp_link_state *qed_mcp_get_link_state(struct qed_hwfn *);
125
126/**
127 * @brief - return the link capabilities of the hw function
128 *
129 * @param p_hwfn
130 *
131 * @returns pointer to link capabilities
132 */
133struct qed_mcp_link_capabilities
134 *qed_mcp_get_link_capabilities(struct qed_hwfn *p_hwfn);
135
136/**
137 * @brief Request the MFW to set the the link according to 'link_input'.
138 *
139 * @param p_hwfn
140 * @param p_ptt
141 * @param b_up - raise link if `true'. Reset link if `false'.
142 *
143 * @return int
144 */
145int qed_mcp_set_link(struct qed_hwfn *p_hwfn,
146 struct qed_ptt *p_ptt,
147 bool b_up);
148
fe56b9e6
YM
149/**
150 * @brief Get the management firmware version value
151 *
152 * @param cdev - qed dev pointer
153 * @param mfw_ver - mfw version value
154 *
155 * @return int - 0 - operation was successul.
156 */
157int qed_mcp_get_mfw_ver(struct qed_dev *cdev,
158 u32 *mfw_ver);
159
cc875c2e
YM
160/**
161 * @brief Get media type value of the port.
162 *
163 * @param cdev - qed dev pointer
164 * @param mfw_ver - media type value
165 *
166 * @return int -
167 * 0 - Operation was successul.
168 * -EBUSY - Operation failed
169 */
170int qed_mcp_get_media_type(struct qed_dev *cdev,
171 u32 *media_type);
172
fe56b9e6
YM
173/**
174 * @brief General function for sending commands to the MCP
175 * mailbox. It acquire mutex lock for the entire
176 * operation, from sending the request until the MCP
177 * response. Waiting for MCP response will be checked up
178 * to 5 seconds every 5ms.
179 *
180 * @param p_hwfn - hw function
181 * @param p_ptt - PTT required for register access
182 * @param cmd - command to be sent to the MCP.
183 * @param param - Optional param
184 * @param o_mcp_resp - The MCP response code (exclude sequence).
185 * @param o_mcp_param- Optional parameter provided by the MCP
186 * response
187 * @return int - 0 - operation
188 * was successul.
189 */
190int qed_mcp_cmd(struct qed_hwfn *p_hwfn,
191 struct qed_ptt *p_ptt,
192 u32 cmd,
193 u32 param,
194 u32 *o_mcp_resp,
195 u32 *o_mcp_param);
196
197/**
198 * @brief - drains the nig, allowing completion to pass in case of pauses.
199 * (Should be called only from sleepable context)
200 *
201 * @param p_hwfn
202 * @param p_ptt
203 */
204int qed_mcp_drain(struct qed_hwfn *p_hwfn,
205 struct qed_ptt *p_ptt);
206
cee4d264
MC
207/**
208 * @brief Get the flash size value
209 *
210 * @param p_hwfn
211 * @param p_ptt
212 * @param p_flash_size - flash size in bytes to be filled.
213 *
214 * @return int - 0 - operation was successul.
215 */
216int qed_mcp_get_flash_size(struct qed_hwfn *p_hwfn,
217 struct qed_ptt *p_ptt,
218 u32 *p_flash_size);
219
fe56b9e6
YM
220/**
221 * @brief Send driver version to MFW
222 *
223 * @param p_hwfn
224 * @param p_ptt
225 * @param version - Version value
226 * @param name - Protocol driver name
227 *
228 * @return int - 0 - operation was successul.
229 */
230int
231qed_mcp_send_drv_version(struct qed_hwfn *p_hwfn,
232 struct qed_ptt *p_ptt,
233 struct qed_mcp_drv_version *p_ver);
234
91420b83
SK
235/**
236 * @brief Set LED status
237 *
238 * @param p_hwfn
239 * @param p_ptt
240 * @param mode - LED mode
241 *
242 * @return int - 0 - operation was successful.
243 */
244int qed_mcp_set_led(struct qed_hwfn *p_hwfn,
245 struct qed_ptt *p_ptt,
246 enum qed_led_mode mode);
247
03dc76ca
SRK
248/**
249 * @brief Bist register test
250 *
251 * @param p_hwfn - hw function
252 * @param p_ptt - PTT required for register access
253 *
254 * @return int - 0 - operation was successful.
255 */
256int qed_mcp_bist_register_test(struct qed_hwfn *p_hwfn,
257 struct qed_ptt *p_ptt);
258
259/**
260 * @brief Bist clock test
261 *
262 * @param p_hwfn - hw function
263 * @param p_ptt - PTT required for register access
264 *
265 * @return int - 0 - operation was successful.
266 */
267int qed_mcp_bist_clock_test(struct qed_hwfn *p_hwfn,
268 struct qed_ptt *p_ptt);
269
fe56b9e6
YM
270/* Using hwfn number (and not pf_num) is required since in CMT mode,
271 * same pf_num may be used by two different hwfn
272 * TODO - this shouldn't really be in .h file, but until all fields
273 * required during hw-init will be placed in their correct place in shmem
274 * we need it in qed_dev.c [for readin the nvram reflection in shmem].
275 */
276#define MCP_PF_ID_BY_REL(p_hwfn, rel_pfid) (QED_IS_BB((p_hwfn)->cdev) ? \
277 ((rel_pfid) | \
278 ((p_hwfn)->abs_pf_id & 1) << 3) : \
279 rel_pfid)
280#define MCP_PF_ID(p_hwfn) MCP_PF_ID_BY_REL(p_hwfn, (p_hwfn)->rel_pf_id)
281
282/* TODO - this is only correct as long as only BB is supported, and
283 * no port-swapping is implemented; Afterwards we'll need to fix it.
284 */
285#define MFW_PORT(_p_hwfn) ((_p_hwfn)->abs_pf_id % \
286 ((_p_hwfn)->cdev->num_ports_in_engines * 2))
287struct qed_mcp_info {
5529bad9
TT
288 spinlock_t lock;
289 bool block_mb_sending;
fe56b9e6
YM
290 u32 public_base;
291 u32 drv_mb_addr;
292 u32 mfw_mb_addr;
293 u32 port_addr;
294 u16 drv_mb_seq;
295 u16 drv_pulse_seq;
cc875c2e
YM
296 struct qed_mcp_link_params link_input;
297 struct qed_mcp_link_state link_output;
298 struct qed_mcp_link_capabilities link_capabilities;
fe56b9e6 299 struct qed_mcp_function_info func_info;
fe56b9e6
YM
300 u8 *mfw_mb_cur;
301 u8 *mfw_mb_shadow;
302 u16 mfw_mb_length;
303 u16 mcp_hist;
304};
305
5529bad9
TT
306struct qed_mcp_mb_params {
307 u32 cmd;
308 u32 param;
309 union drv_union_data *p_data_src;
310 union drv_union_data *p_data_dst;
311 u32 mcp_resp;
312 u32 mcp_param;
313};
314
fe56b9e6
YM
315/**
316 * @brief Initialize the interface with the MCP
317 *
318 * @param p_hwfn - HW func
319 * @param p_ptt - PTT required for register access
320 *
321 * @return int
322 */
323int qed_mcp_cmd_init(struct qed_hwfn *p_hwfn,
324 struct qed_ptt *p_ptt);
325
326/**
327 * @brief Initialize the port interface with the MCP
328 *
329 * @param p_hwfn
330 * @param p_ptt
331 * Can only be called after `num_ports_in_engines' is set
332 */
333void qed_mcp_cmd_port_init(struct qed_hwfn *p_hwfn,
334 struct qed_ptt *p_ptt);
335/**
336 * @brief Releases resources allocated during the init process.
337 *
338 * @param p_hwfn - HW func
339 * @param p_ptt - PTT required for register access
340 *
341 * @return int
342 */
343
344int qed_mcp_free(struct qed_hwfn *p_hwfn);
345
cc875c2e
YM
346/**
347 * @brief This function is called from the DPC context. After
348 * pointing PTT to the mfw mb, check for events sent by the MCP
349 * to the driver and ack them. In case a critical event
350 * detected, it will be handled here, otherwise the work will be
351 * queued to a sleepable work-queue.
352 *
353 * @param p_hwfn - HW function
354 * @param p_ptt - PTT required for register access
355 * @return int - 0 - operation
356 * was successul.
357 */
358int qed_mcp_handle_events(struct qed_hwfn *p_hwfn,
359 struct qed_ptt *p_ptt);
360
fe56b9e6
YM
361/**
362 * @brief Sends a LOAD_REQ to the MFW, and in case operation
363 * succeed, returns whether this PF is the first on the
364 * chip/engine/port or function. This function should be
365 * called when driver is ready to accept MFW events after
366 * Storms initializations are done.
367 *
368 * @param p_hwfn - hw function
369 * @param p_ptt - PTT required for register access
370 * @param p_load_code - The MCP response param containing one
371 * of the following:
372 * FW_MSG_CODE_DRV_LOAD_ENGINE
373 * FW_MSG_CODE_DRV_LOAD_PORT
374 * FW_MSG_CODE_DRV_LOAD_FUNCTION
375 * @return int -
376 * 0 - Operation was successul.
377 * -EBUSY - Operation failed
378 */
379int qed_mcp_load_req(struct qed_hwfn *p_hwfn,
380 struct qed_ptt *p_ptt,
381 u32 *p_load_code);
382
383/**
384 * @brief Read the MFW mailbox into Current buffer.
385 *
386 * @param p_hwfn
387 * @param p_ptt
388 */
389void qed_mcp_read_mb(struct qed_hwfn *p_hwfn,
390 struct qed_ptt *p_ptt);
391
392/**
393 * @brief - calls during init to read shmem of all function-related info.
394 *
395 * @param p_hwfn
396 *
397 * @param return 0 upon success.
398 */
399int qed_mcp_fill_shmem_func_info(struct qed_hwfn *p_hwfn,
400 struct qed_ptt *p_ptt);
401
402/**
403 * @brief - Reset the MCP using mailbox command.
404 *
405 * @param p_hwfn
406 * @param p_ptt
407 *
408 * @param return 0 upon success.
409 */
410int qed_mcp_reset(struct qed_hwfn *p_hwfn,
411 struct qed_ptt *p_ptt);
412
413/**
414 * @brief indicates whether the MFW objects [under mcp_info] are accessible
415 *
416 * @param p_hwfn
417 *
418 * @return true iff MFW is running and mcp_info is initialized
419 */
420bool qed_mcp_is_init(struct qed_hwfn *p_hwfn);
a64b02d5 421int qed_configure_pf_min_bandwidth(struct qed_dev *cdev, u8 min_bw);
4b01e519
MC
422int qed_configure_pf_max_bandwidth(struct qed_dev *cdev, u8 max_bw);
423int __qed_configure_pf_max_bandwidth(struct qed_hwfn *p_hwfn,
424 struct qed_ptt *p_ptt,
425 struct qed_mcp_link_state *p_link,
426 u8 max_bw);
a64b02d5
MC
427int __qed_configure_pf_min_bandwidth(struct qed_hwfn *p_hwfn,
428 struct qed_ptt *p_ptt,
429 struct qed_mcp_link_state *p_link,
430 u8 min_bw);
fe56b9e6 431#endif