1 /* QLogic qed NIC Driver
2 * Copyright (c) 2015-2017 QLogic Corporation
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and /or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 #include <linux/types.h>
37 #include <linux/delay.h>
38 #include <linux/slab.h>
39 #include <linux/spinlock.h>
40 #include <linux/qed/qed_fcoe_if.h>
42 #include "qed_dev_api.h"
44 struct qed_mcp_link_speed_params
{
46 u32 advertised_speeds
; /* bitmask of DRV_SPEED_CAPABILITY */
47 u32 forced_speed
; /* In Mb/s */
50 struct qed_mcp_link_pause_params
{
56 enum qed_mcp_eee_mode
{
59 QED_MCP_EEE_UNSUPPORTED
62 struct qed_mcp_link_params
{
63 struct qed_mcp_link_speed_params speed
;
64 struct qed_mcp_link_pause_params pause
;
66 struct qed_link_eee_params eee
;
69 struct qed_mcp_link_capabilities
{
70 u32 speed_capabilities
;
71 bool default_speed_autoneg
;
72 enum qed_mcp_eee_mode default_eee
;
77 struct qed_mcp_link_state
{
82 /* Actual link speed in Mb/s */
85 /* PF max speed in Mb/s, deduced from line_speed
86 * according to PF max bandwidth configuration.
93 bool parallel_detection
;
96 #define QED_LINK_PARTNER_SPEED_1G_HD BIT(0)
97 #define QED_LINK_PARTNER_SPEED_1G_FD BIT(1)
98 #define QED_LINK_PARTNER_SPEED_10G BIT(2)
99 #define QED_LINK_PARTNER_SPEED_20G BIT(3)
100 #define QED_LINK_PARTNER_SPEED_25G BIT(4)
101 #define QED_LINK_PARTNER_SPEED_40G BIT(5)
102 #define QED_LINK_PARTNER_SPEED_50G BIT(6)
103 #define QED_LINK_PARTNER_SPEED_100G BIT(7)
104 u32 partner_adv_speed
;
106 bool partner_tx_flow_ctrl_en
;
107 bool partner_rx_flow_ctrl_en
;
109 #define QED_LINK_PARTNER_SYMMETRIC_PAUSE (1)
110 #define QED_LINK_PARTNER_ASYMMETRIC_PAUSE (2)
111 #define QED_LINK_PARTNER_BOTH_PAUSE (3)
112 u8 partner_adv_pause
;
120 struct qed_mcp_function_info
{
123 enum qed_pci_personality protocol
;
133 #define QED_MCP_VLAN_UNSET (0xffff)
139 struct qed_mcp_nvm_common
{
146 struct qed_mcp_drv_version
{
148 u8 name
[MCP_DRV_VER_STR_SIZE
- 4];
151 struct qed_mcp_lan_stats
{
157 struct qed_mcp_fcoe_stats
{
164 struct qed_mcp_iscsi_stats
{
171 struct qed_mcp_rdma_stats
{
178 enum qed_mcp_protocol_type
{
185 union qed_mcp_protocol_stats
{
186 struct qed_mcp_lan_stats lan_stats
;
187 struct qed_mcp_fcoe_stats fcoe_stats
;
188 struct qed_mcp_iscsi_stats iscsi_stats
;
189 struct qed_mcp_rdma_stats rdma_stats
;
192 enum qed_ov_eswitch
{
201 QED_OV_CLIENT_VENDOR_SPEC
204 enum qed_ov_driver_state
{
205 QED_OV_DRIVER_STATE_NOT_LOADED
,
206 QED_OV_DRIVER_STATE_DISABLED
,
207 QED_OV_DRIVER_STATE_ACTIVE
216 enum qed_mfw_tlv_type
{
217 QED_MFW_TLV_GENERIC
= 0x1, /* Core driver TLVs */
218 QED_MFW_TLV_ETH
= 0x2, /* L2 driver TLVs */
219 QED_MFW_TLV_FCOE
= 0x4, /* FCoE protocol TLVs */
220 QED_MFW_TLV_ISCSI
= 0x8, /* SCSI protocol TLVs */
221 QED_MFW_TLV_MAX
= 0x16,
224 struct qed_mfw_tlv_generic
{
225 #define QED_MFW_TLV_FLAGS_SIZE 2
227 u8 ipv4_csum_offload
;
232 #define QED_MFW_TLV_MAC_COUNT 3
233 /* First entry for primary MAC, 2 secondary MACs possible */
234 u8 mac
[QED_MFW_TLV_MAC_COUNT
][6];
235 bool mac_set
[QED_MFW_TLV_MAC_COUNT
];
247 union qed_mfw_tlv_data
{
248 struct qed_mfw_tlv_generic generic
;
249 struct qed_mfw_tlv_eth eth
;
250 struct qed_mfw_tlv_fcoe fcoe
;
251 struct qed_mfw_tlv_iscsi iscsi
;
254 #define QED_NVM_CFG_OPTION_ALL BIT(0)
255 #define QED_NVM_CFG_OPTION_INIT BIT(1)
256 #define QED_NVM_CFG_OPTION_COMMIT BIT(2)
257 #define QED_NVM_CFG_OPTION_FREE BIT(3)
258 #define QED_NVM_CFG_OPTION_ENTITY_SEL BIT(4)
261 * @brief - returns the link params of the hw function
265 * @returns pointer to link params
267 struct qed_mcp_link_params
*qed_mcp_get_link_params(struct qed_hwfn
*);
270 * @brief - return the link state of the hw function
274 * @returns pointer to link state
276 struct qed_mcp_link_state
*qed_mcp_get_link_state(struct qed_hwfn
*);
279 * @brief - return the link capabilities of the hw function
283 * @returns pointer to link capabilities
285 struct qed_mcp_link_capabilities
286 *qed_mcp_get_link_capabilities(struct qed_hwfn
*p_hwfn
);
289 * @brief Request the MFW to set the the link according to 'link_input'.
293 * @param b_up - raise link if `true'. Reset link if `false'.
297 int qed_mcp_set_link(struct qed_hwfn
*p_hwfn
,
298 struct qed_ptt
*p_ptt
,
302 * @brief Get the management firmware version value
306 * @param p_mfw_ver - mfw version value
307 * @param p_running_bundle_id - image id in nvram; Optional.
309 * @return int - 0 - operation was successful.
311 int qed_mcp_get_mfw_ver(struct qed_hwfn
*p_hwfn
,
312 struct qed_ptt
*p_ptt
,
313 u32
*p_mfw_ver
, u32
*p_running_bundle_id
);
316 * @brief Get the MBI version value
320 * @param p_mbi_ver - A pointer to a variable to be filled with the MBI version.
322 * @return int - 0 - operation was successful.
324 int qed_mcp_get_mbi_ver(struct qed_hwfn
*p_hwfn
,
325 struct qed_ptt
*p_ptt
, u32
*p_mbi_ver
);
328 * @brief Get media type value of the port.
330 * @param cdev - qed dev pointer
332 * @param mfw_ver - media type value
335 * 0 - Operation was successul.
336 * -EBUSY - Operation failed
338 int qed_mcp_get_media_type(struct qed_hwfn
*p_hwfn
,
339 struct qed_ptt
*p_ptt
, u32
*media_type
);
342 * @brief Get transceiver data of the port.
344 * @param cdev - qed dev pointer
346 * @param p_transceiver_state - transceiver state.
347 * @param p_transceiver_type - media type value
350 * 0 - Operation was successful.
351 * -EBUSY - Operation failed
353 int qed_mcp_get_transceiver_data(struct qed_hwfn
*p_hwfn
,
354 struct qed_ptt
*p_ptt
,
355 u32
*p_transceiver_state
,
356 u32
*p_tranceiver_type
);
359 * @brief Get transceiver supported speed mask.
361 * @param cdev - qed dev pointer
363 * @param p_speed_mask - Bit mask of all supported speeds.
366 * 0 - Operation was successful.
367 * -EBUSY - Operation failed
370 int qed_mcp_trans_speed_mask(struct qed_hwfn
*p_hwfn
,
371 struct qed_ptt
*p_ptt
, u32
*p_speed_mask
);
374 * @brief Get board configuration.
376 * @param cdev - qed dev pointer
378 * @param p_board_config - Board config.
381 * 0 - Operation was successful.
382 * -EBUSY - Operation failed
384 int qed_mcp_get_board_config(struct qed_hwfn
*p_hwfn
,
385 struct qed_ptt
*p_ptt
, u32
*p_board_config
);
388 * @brief General function for sending commands to the MCP
389 * mailbox. It acquire mutex lock for the entire
390 * operation, from sending the request until the MCP
391 * response. Waiting for MCP response will be checked up
392 * to 5 seconds every 5ms.
394 * @param p_hwfn - hw function
395 * @param p_ptt - PTT required for register access
396 * @param cmd - command to be sent to the MCP.
397 * @param param - Optional param
398 * @param o_mcp_resp - The MCP response code (exclude sequence).
399 * @param o_mcp_param- Optional parameter provided by the MCP
401 * @return int - 0 - operation
404 int qed_mcp_cmd(struct qed_hwfn
*p_hwfn
,
405 struct qed_ptt
*p_ptt
,
412 * @brief - drains the nig, allowing completion to pass in case of pauses.
413 * (Should be called only from sleepable context)
418 int qed_mcp_drain(struct qed_hwfn
*p_hwfn
,
419 struct qed_ptt
*p_ptt
);
422 * @brief Get the flash size value
426 * @param p_flash_size - flash size in bytes to be filled.
428 * @return int - 0 - operation was successul.
430 int qed_mcp_get_flash_size(struct qed_hwfn
*p_hwfn
,
431 struct qed_ptt
*p_ptt
,
435 * @brief Send driver version to MFW
439 * @param version - Version value
440 * @param name - Protocol driver name
442 * @return int - 0 - operation was successul.
445 qed_mcp_send_drv_version(struct qed_hwfn
*p_hwfn
,
446 struct qed_ptt
*p_ptt
,
447 struct qed_mcp_drv_version
*p_ver
);
450 * @brief Read the MFW process kill counter
457 u32
qed_get_process_kill_counter(struct qed_hwfn
*p_hwfn
,
458 struct qed_ptt
*p_ptt
);
461 * @brief Trigger a recovery process
468 int qed_start_recovery_process(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
471 * @brief A recovery handler must call this function as its first step.
472 * It is assumed that the handler is not run from an interrupt context.
479 int qed_recovery_prolog(struct qed_dev
*cdev
);
482 * @brief Notify MFW about the change in base device properties
486 * @param client - qed client type
488 * @return int - 0 - operation was successful.
490 int qed_mcp_ov_update_current_config(struct qed_hwfn
*p_hwfn
,
491 struct qed_ptt
*p_ptt
,
492 enum qed_ov_client client
);
495 * @brief Notify MFW about the driver state
499 * @param drv_state - Driver state
501 * @return int - 0 - operation was successful.
503 int qed_mcp_ov_update_driver_state(struct qed_hwfn
*p_hwfn
,
504 struct qed_ptt
*p_ptt
,
505 enum qed_ov_driver_state drv_state
);
508 * @brief Send MTU size to MFW
512 * @param mtu - MTU size
514 * @return int - 0 - operation was successful.
516 int qed_mcp_ov_update_mtu(struct qed_hwfn
*p_hwfn
,
517 struct qed_ptt
*p_ptt
, u16 mtu
);
520 * @brief Send MAC address to MFW
524 * @param mac - MAC address
526 * @return int - 0 - operation was successful.
528 int qed_mcp_ov_update_mac(struct qed_hwfn
*p_hwfn
,
529 struct qed_ptt
*p_ptt
, u8
*mac
);
532 * @brief Send WOL mode to MFW
536 * @param wol - WOL mode
538 * @return int - 0 - operation was successful.
540 int qed_mcp_ov_update_wol(struct qed_hwfn
*p_hwfn
,
541 struct qed_ptt
*p_ptt
,
542 enum qed_ov_wol wol
);
545 * @brief Set LED status
549 * @param mode - LED mode
551 * @return int - 0 - operation was successful.
553 int qed_mcp_set_led(struct qed_hwfn
*p_hwfn
,
554 struct qed_ptt
*p_ptt
,
555 enum qed_led_mode mode
);
558 * @brief Read from nvm
561 * @param addr - nvm offset
562 * @param p_buf - nvm read buffer
563 * @param len - buffer len
565 * @return int - 0 - operation was successful.
567 int qed_mcp_nvm_read(struct qed_dev
*cdev
, u32 addr
, u8
*p_buf
, u32 len
);
570 * @brief Write to nvm
573 * @param addr - nvm offset
574 * @param cmd - nvm command
575 * @param p_buf - nvm write buffer
576 * @param len - buffer len
578 * @return int - 0 - operation was successful.
580 int qed_mcp_nvm_write(struct qed_dev
*cdev
,
581 u32 cmd
, u32 addr
, u8
*p_buf
, u32 len
);
584 * @brief Check latest response
587 * @param p_buf - nvm write buffer
589 * @return int - 0 - operation was successful.
591 int qed_mcp_nvm_resp(struct qed_dev
*cdev
, u8
*p_buf
);
593 struct qed_nvm_image_att
{
599 * @brief Allows reading a whole nvram image
602 * @param image_id - image to get attributes for
603 * @param p_image_att - image attributes structure into which to fill data
605 * @return int - 0 - operation was successful.
608 qed_mcp_get_nvm_image_att(struct qed_hwfn
*p_hwfn
,
609 enum qed_nvm_images image_id
,
610 struct qed_nvm_image_att
*p_image_att
);
613 * @brief Allows reading a whole nvram image
616 * @param image_id - image requested for reading
617 * @param p_buffer - allocated buffer into which to fill data
618 * @param buffer_len - length of the allocated buffer.
620 * @return 0 iff p_buffer now contains the nvram image.
622 int qed_mcp_get_nvm_image(struct qed_hwfn
*p_hwfn
,
623 enum qed_nvm_images image_id
,
624 u8
*p_buffer
, u32 buffer_len
);
627 * @brief Bist register test
629 * @param p_hwfn - hw function
630 * @param p_ptt - PTT required for register access
632 * @return int - 0 - operation was successful.
634 int qed_mcp_bist_register_test(struct qed_hwfn
*p_hwfn
,
635 struct qed_ptt
*p_ptt
);
638 * @brief Bist clock test
640 * @param p_hwfn - hw function
641 * @param p_ptt - PTT required for register access
643 * @return int - 0 - operation was successful.
645 int qed_mcp_bist_clock_test(struct qed_hwfn
*p_hwfn
,
646 struct qed_ptt
*p_ptt
);
649 * @brief Bist nvm test - get number of images
651 * @param p_hwfn - hw function
652 * @param p_ptt - PTT required for register access
653 * @param num_images - number of images if operation was
654 * successful. 0 if not.
656 * @return int - 0 - operation was successful.
658 int qed_mcp_bist_nvm_get_num_images(struct qed_hwfn
*p_hwfn
,
659 struct qed_ptt
*p_ptt
,
663 * @brief Bist nvm test - get image attributes by index
665 * @param p_hwfn - hw function
666 * @param p_ptt - PTT required for register access
667 * @param p_image_att - Attributes of image
668 * @param image_index - Index of image to get information for
670 * @return int - 0 - operation was successful.
672 int qed_mcp_bist_nvm_get_image_att(struct qed_hwfn
*p_hwfn
,
673 struct qed_ptt
*p_ptt
,
674 struct bist_nvm_image_att
*p_image_att
,
678 * @brief - Processes the TLV request from MFW i.e., get the required TLV info
679 * from the qed client and send it to the MFW.
684 * @param return 0 upon success.
686 int qed_mfw_process_tlv_req(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
688 /* Using hwfn number (and not pf_num) is required since in CMT mode,
689 * same pf_num may be used by two different hwfn
690 * TODO - this shouldn't really be in .h file, but until all fields
691 * required during hw-init will be placed in their correct place in shmem
692 * we need it in qed_dev.c [for readin the nvram reflection in shmem].
694 #define MCP_PF_ID_BY_REL(p_hwfn, rel_pfid) (QED_IS_BB((p_hwfn)->cdev) ? \
696 ((p_hwfn)->abs_pf_id & 1) << 3) : \
698 #define MCP_PF_ID(p_hwfn) MCP_PF_ID_BY_REL(p_hwfn, (p_hwfn)->rel_pf_id)
700 struct qed_mcp_info
{
701 /* List for mailbox commands which were sent and wait for a response */
702 struct list_head cmd_list
;
704 /* Spinlock used for protecting the access to the mailbox commands list
705 * and the sending of the commands.
709 /* Flag to indicate whether sending a MFW mailbox command is blocked */
712 /* Spinlock used for syncing SW link-changes and link-changes
713 * originating from attention context.
715 spinlock_t link_lock
;
723 struct qed_mcp_link_params link_input
;
724 struct qed_mcp_link_state link_output
;
725 struct qed_mcp_link_capabilities link_capabilities
;
726 struct qed_mcp_function_info func_info
;
732 /* Capabilties negotiated with the MFW */
736 struct qed_mcp_mb_params
{
746 #define QED_MB_FLAG_CAN_SLEEP (0x1 << 0)
747 #define QED_MB_FLAG_AVOID_BLOCK (0x1 << 1)
748 #define QED_MB_FLAGS_IS_SET(params, flag) \
749 ({ typeof(params) __params = (params); \
750 (__params && (__params->flags & QED_MB_FLAG_ ## flag)); })
753 struct qed_drv_tlv_hdr
{
755 u8 tlv_length
; /* In dwords - not including this header */
757 #define QED_DRV_TLV_FLAGS_CHANGED 0x01
762 * @brief Initialize the interface with the MCP
764 * @param p_hwfn - HW func
765 * @param p_ptt - PTT required for register access
769 int qed_mcp_cmd_init(struct qed_hwfn
*p_hwfn
,
770 struct qed_ptt
*p_ptt
);
773 * @brief Initialize the port interface with the MCP
777 * Can only be called after `num_ports_in_engines' is set
779 void qed_mcp_cmd_port_init(struct qed_hwfn
*p_hwfn
,
780 struct qed_ptt
*p_ptt
);
782 * @brief Releases resources allocated during the init process.
784 * @param p_hwfn - HW func
785 * @param p_ptt - PTT required for register access
790 int qed_mcp_free(struct qed_hwfn
*p_hwfn
);
793 * @brief This function is called from the DPC context. After
794 * pointing PTT to the mfw mb, check for events sent by the MCP
795 * to the driver and ack them. In case a critical event
796 * detected, it will be handled here, otherwise the work will be
797 * queued to a sleepable work-queue.
799 * @param p_hwfn - HW function
800 * @param p_ptt - PTT required for register access
801 * @return int - 0 - operation
804 int qed_mcp_handle_events(struct qed_hwfn
*p_hwfn
,
805 struct qed_ptt
*p_ptt
);
812 struct qed_load_req_params
{
814 enum qed_drv_role drv_role
;
816 bool avoid_eng_reset
;
817 enum qed_override_force_load override_force_load
;
824 * @brief Sends a LOAD_REQ to the MFW, and in case the operation succeeds,
825 * returns whether this PF is the first on the engine/port or function.
831 * @return int - 0 - Operation was successful.
833 int qed_mcp_load_req(struct qed_hwfn
*p_hwfn
,
834 struct qed_ptt
*p_ptt
,
835 struct qed_load_req_params
*p_params
);
838 * @brief Sends a LOAD_DONE message to the MFW
843 * @return int - 0 - Operation was successful.
845 int qed_mcp_load_done(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
848 * @brief Sends a UNLOAD_REQ message to the MFW
853 * @return int - 0 - Operation was successful.
855 int qed_mcp_unload_req(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
858 * @brief Sends a UNLOAD_DONE message to the MFW
863 * @return int - 0 - Operation was successful.
865 int qed_mcp_unload_done(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
868 * @brief Read the MFW mailbox into Current buffer.
873 void qed_mcp_read_mb(struct qed_hwfn
*p_hwfn
,
874 struct qed_ptt
*p_ptt
);
877 * @brief Ack to mfw that driver finished FLR process for VFs
881 * @param vfs_to_ack - bit mask of all engine VFs for which the PF acks.
883 * @param return int - 0 upon success.
885 int qed_mcp_ack_vf_flr(struct qed_hwfn
*p_hwfn
,
886 struct qed_ptt
*p_ptt
, u32
*vfs_to_ack
);
889 * @brief - calls during init to read shmem of all function-related info.
893 * @param return 0 upon success.
895 int qed_mcp_fill_shmem_func_info(struct qed_hwfn
*p_hwfn
,
896 struct qed_ptt
*p_ptt
);
899 * @brief - Reset the MCP using mailbox command.
904 * @param return 0 upon success.
906 int qed_mcp_reset(struct qed_hwfn
*p_hwfn
,
907 struct qed_ptt
*p_ptt
);
910 * @brief - Sends an NVM read command request to the MFW to get
915 * @param cmd - Command: DRV_MSG_CODE_NVM_GET_FILE_DATA or
916 * DRV_MSG_CODE_NVM_READ_NVRAM commands
917 * @param param - [0:23] - Offset [24:31] - Size
918 * @param o_mcp_resp - MCP response
919 * @param o_mcp_param - MCP response param
920 * @param o_txn_size - Buffer size output
921 * @param o_buf - Pointer to the buffer returned by the MFW.
923 * @param return 0 upon success.
925 int qed_mcp_nvm_rd_cmd(struct qed_hwfn
*p_hwfn
,
926 struct qed_ptt
*p_ptt
,
930 u32
*o_mcp_param
, u32
*o_txn_size
, u32
*o_buf
);
933 * @brief Read from sfp
935 * @param p_hwfn - hw function
936 * @param p_ptt - PTT required for register access
937 * @param port - transceiver port
938 * @param addr - I2C address
939 * @param offset - offset in sfp
940 * @param len - buffer length
941 * @param p_buf - buffer to read into
943 * @return int - 0 - operation was successful.
945 int qed_mcp_phy_sfp_read(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
,
946 u32 port
, u32 addr
, u32 offset
, u32 len
, u8
*p_buf
);
949 * @brief indicates whether the MFW objects [under mcp_info] are accessible
953 * @return true iff MFW is running and mcp_info is initialized
955 bool qed_mcp_is_init(struct qed_hwfn
*p_hwfn
);
958 * @brief request MFW to configure MSI-X for a VF
962 * @param vf_id - absolute inside engine
963 * @param num_sbs - number of entries to request
967 int qed_mcp_config_vf_msix(struct qed_hwfn
*p_hwfn
,
968 struct qed_ptt
*p_ptt
, u8 vf_id
, u8 num
);
971 * @brief - Halt the MCP.
976 * @param return 0 upon success.
978 int qed_mcp_halt(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
981 * @brief - Wake up the MCP.
986 * @param return 0 upon success.
988 int qed_mcp_resume(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
990 int qed_configure_pf_min_bandwidth(struct qed_dev
*cdev
, u8 min_bw
);
991 int qed_configure_pf_max_bandwidth(struct qed_dev
*cdev
, u8 max_bw
);
992 int __qed_configure_pf_max_bandwidth(struct qed_hwfn
*p_hwfn
,
993 struct qed_ptt
*p_ptt
,
994 struct qed_mcp_link_state
*p_link
,
996 int __qed_configure_pf_min_bandwidth(struct qed_hwfn
*p_hwfn
,
997 struct qed_ptt
*p_ptt
,
998 struct qed_mcp_link_state
*p_link
,
1001 int qed_mcp_mask_parities(struct qed_hwfn
*p_hwfn
,
1002 struct qed_ptt
*p_ptt
, u32 mask_parities
);
1005 * @brief - Sets the MFW's max value for the given resource
1010 * @param resc_max_val
1013 * @return int - 0 - operation was successful.
1016 qed_mcp_set_resc_max_val(struct qed_hwfn
*p_hwfn
,
1017 struct qed_ptt
*p_ptt
,
1018 enum qed_resources res_id
,
1019 u32 resc_max_val
, u32
*p_mcp_resp
);
1022 * @brief - Gets the MFW allocation info for the given resource
1029 * @param p_resc_start
1031 * @return int - 0 - operation was successful.
1034 qed_mcp_get_resc_info(struct qed_hwfn
*p_hwfn
,
1035 struct qed_ptt
*p_ptt
,
1036 enum qed_resources res_id
,
1037 u32
*p_mcp_resp
, u32
*p_resc_num
, u32
*p_resc_start
);
1040 * @brief Send eswitch mode to MFW
1044 * @param eswitch - eswitch mode
1046 * @return int - 0 - operation was successful.
1048 int qed_mcp_ov_update_eswitch(struct qed_hwfn
*p_hwfn
,
1049 struct qed_ptt
*p_ptt
,
1050 enum qed_ov_eswitch eswitch
);
1052 #define QED_MCP_RESC_LOCK_MIN_VAL RESOURCE_DUMP
1053 #define QED_MCP_RESC_LOCK_MAX_VAL 31
1055 enum qed_resc_lock
{
1056 QED_RESC_LOCK_DBG_DUMP
= QED_MCP_RESC_LOCK_MIN_VAL
,
1057 QED_RESC_LOCK_PTP_PORT0
,
1058 QED_RESC_LOCK_PTP_PORT1
,
1059 QED_RESC_LOCK_PTP_PORT2
,
1060 QED_RESC_LOCK_PTP_PORT3
,
1061 QED_RESC_LOCK_RESC_ALLOC
= QED_MCP_RESC_LOCK_MAX_VAL
,
1062 QED_RESC_LOCK_RESC_INVALID
1066 * @brief - Initiates PF FLR
1071 * @return int - 0 - operation was successful.
1073 int qed_mcp_initiate_pf_flr(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
1074 struct qed_resc_lock_params
{
1075 /* Resource number [valid values are 0..31] */
1078 /* Lock timeout value in seconds [default, none or 1..254] */
1080 #define QED_MCP_RESC_LOCK_TO_DEFAULT 0
1081 #define QED_MCP_RESC_LOCK_TO_NONE 255
1083 /* Number of times to retry locking */
1085 #define QED_MCP_RESC_LOCK_RETRY_CNT_DFLT 10
1087 /* The interval in usec between retries */
1089 #define QED_MCP_RESC_LOCK_RETRY_VAL_DFLT 10000
1091 /* Use sleep or delay between retries */
1092 bool sleep_b4_retry
;
1094 /* Will be set as true if the resource is free and granted */
1097 /* Will be filled with the resource owner.
1098 * [0..15 = PF0-15, 16 = MFW]
1104 * @brief Acquires MFW generic resource lock
1110 * @return int - 0 - operation was successful.
1113 qed_mcp_resc_lock(struct qed_hwfn
*p_hwfn
,
1114 struct qed_ptt
*p_ptt
, struct qed_resc_lock_params
*p_params
);
1116 struct qed_resc_unlock_params
{
1117 /* Resource number [valid values are 0..31] */
1120 /* Allow to release a resource even if belongs to another PF */
1123 /* Will be set as true if the resource is released */
1128 * @brief Releases MFW generic resource lock
1134 * @return int - 0 - operation was successful.
1137 qed_mcp_resc_unlock(struct qed_hwfn
*p_hwfn
,
1138 struct qed_ptt
*p_ptt
,
1139 struct qed_resc_unlock_params
*p_params
);
1142 * @brief - default initialization for lock/unlock resource structs
1144 * @param p_lock - lock params struct to be initialized; Can be NULL
1145 * @param p_unlock - unlock params struct to be initialized; Can be NULL
1146 * @param resource - the requested resource
1147 * @paral b_is_permanent - disable retries & aging when set
1149 void qed_mcp_resc_lock_default_init(struct qed_resc_lock_params
*p_lock
,
1150 struct qed_resc_unlock_params
*p_unlock
,
1152 resource
, bool b_is_permanent
);
1155 * @brief - Return whether management firmware support smart AN
1159 * @return bool - true if feature is supported.
1161 bool qed_mcp_is_smart_an_supported(struct qed_hwfn
*p_hwfn
);
1164 * @brief Learn of supported MFW features; To be done during early init
1169 int qed_mcp_get_capabilities(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
1172 * @brief Inform MFW of set of features supported by driver. Should be done
1173 * inside the content of the LOAD_REQ.
1178 int qed_mcp_set_capabilities(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
1181 * @brief Read ufp config from the shared memory.
1186 void qed_mcp_read_ufp_config(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
1189 * @brief Populate the nvm info shadow in the given hardware function
1193 int qed_mcp_nvm_info_populate(struct qed_hwfn
*p_hwfn
);
1196 * @brief Get the engine affinity configuration.
1201 int qed_mcp_get_engine_config(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
1204 * @brief Get the PPFID bitmap.
1209 int qed_mcp_get_ppfid_bitmap(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
);
1212 * @brief Get NVM config attribute value.
1222 int qed_mcp_nvm_get_cfg(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
,
1223 u16 option_id
, u8 entity_id
, u16 flags
, u8
*p_buf
,
1227 * @brief Set NVM config attribute value.
1237 int qed_mcp_nvm_set_cfg(struct qed_hwfn
*p_hwfn
, struct qed_ptt
*p_ptt
,
1238 u16 option_id
, u8 entity_id
, u16 flags
, u8
*p_buf
,