Commit 6c95dd8f authored by Prabhakar Kushwaha's avatar Prabhakar Kushwaha Committed by David S. Miller

qed: Update debug related changes

qed_debug features are updated to support FW version 8.59.1.0 along
with few enhancements.
  - Removal of _BB_K2 from register defines.
  - Add new condition cond14.
  - Add dump of new area sw-platform, epoch, iscsi_task_pages,
    fcoe_task_pages, roce_task_pages and eth_task_pages.
  - Introduced new functions qed_dbg_phy_size().
  - Update in qed_mcp_nvm_rd_cmd() declaration.
  - Allow QED to control init/exit at pf level.
  - Dump partial "ILT-dump" if buffer size is not sufficient.

This patch also fixes the existing checkpatch warnings and few important
checks.
Signed-off-by: default avatarAriel Elior <aelior@marvell.com>
Signed-off-by: default avatarShai Malin <smalin@marvell.com>
Signed-off-by: default avatarOmkar Kulkarni <okulkarni@marvell.com>
Signed-off-by: default avatarPrabhakar Kushwaha <pkushwaha@marvell.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e2dbc223
...@@ -1003,4 +1003,5 @@ int qed_llh_add_dst_tcp_port_filter(struct qed_dev *cdev, u16 dest_port); ...@@ -1003,4 +1003,5 @@ int qed_llh_add_dst_tcp_port_filter(struct qed_dev *cdev, u16 dest_port);
void qed_llh_remove_src_tcp_port_filter(struct qed_dev *cdev, u16 src_port); void qed_llh_remove_src_tcp_port_filter(struct qed_dev *cdev, u16 src_port);
void qed_llh_remove_dst_tcp_port_filter(struct qed_dev *cdev, u16 src_port); void qed_llh_remove_dst_tcp_port_filter(struct qed_dev *cdev, u16 src_port);
void qed_llh_clear_all_filters(struct qed_dev *cdev); void qed_llh_clear_all_filters(struct qed_dev *cdev);
unsigned long qed_get_epoch_time(void);
#endif /* _QED_H */ #endif /* _QED_H */
...@@ -346,7 +346,10 @@ struct qed_cxt_mngr { ...@@ -346,7 +346,10 @@ struct qed_cxt_mngr {
/* Maximal number of L2 steering filters */ /* Maximal number of L2 steering filters */
u32 arfs_count; u32 arfs_count;
u8 task_type_id; u16 iscsi_task_pages;
u16 fcoe_task_pages;
u16 roce_task_pages;
u16 eth_task_pages;
u16 task_ctx_size; u16 task_ctx_size;
u16 conn_ctx_size; u16 conn_ctx_size;
}; };
......
This diff is collapsed.
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */ /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
/* QLogic qed NIC Driver /* QLogic qed NIC Driver
* Copyright (c) 2015 QLogic Corporation * Copyright (c) 2015 QLogic Corporation
* Copyright (c) 2019-2020 Marvell International Ltd. * Copyright (c) 2019-2021 Marvell International Ltd.
*/ */
#ifndef _QED_DEBUGFS_H #ifndef _QED_DEBUG_H
#define _QED_DEBUGFS_H #define _QED_DEBUG_H
enum qed_dbg_features { enum qed_dbg_features {
DBG_FEATURE_GRC, DBG_FEATURE_GRC,
...@@ -45,6 +45,7 @@ int qed_dbg_ilt_size(struct qed_dev *cdev); ...@@ -45,6 +45,7 @@ int qed_dbg_ilt_size(struct qed_dev *cdev);
int qed_dbg_mcp_trace(struct qed_dev *cdev, void *buffer, int qed_dbg_mcp_trace(struct qed_dev *cdev, void *buffer,
u32 *num_dumped_bytes); u32 *num_dumped_bytes);
int qed_dbg_mcp_trace_size(struct qed_dev *cdev); int qed_dbg_mcp_trace_size(struct qed_dev *cdev);
int qed_dbg_phy_size(struct qed_dev *cdev);
int qed_dbg_all_data(struct qed_dev *cdev, void *buffer); int qed_dbg_all_data(struct qed_dev *cdev, void *buffer);
int qed_dbg_all_data_size(struct qed_dev *cdev); int qed_dbg_all_data_size(struct qed_dev *cdev);
u8 qed_get_debug_engine(struct qed_dev *cdev); u8 qed_get_debug_engine(struct qed_dev *cdev);
......
...@@ -3156,3 +3156,8 @@ int qed_mfw_fill_tlv_data(struct qed_hwfn *hwfn, enum qed_mfw_tlv_type type, ...@@ -3156,3 +3156,8 @@ int qed_mfw_fill_tlv_data(struct qed_hwfn *hwfn, enum qed_mfw_tlv_type type,
return 0; return 0;
} }
unsigned long qed_get_epoch_time(void)
{
return ktime_get_real_seconds();
}
...@@ -31,11 +31,11 @@ ...@@ -31,11 +31,11 @@
#define QED_MCP_RESET_RETRIES (50 * 1000) /* Account for 500 msec */ #define QED_MCP_RESET_RETRIES (50 * 1000) /* Account for 500 msec */
#define DRV_INNER_WR(_p_hwfn, _p_ptt, _ptr, _offset, _val) \ #define DRV_INNER_WR(_p_hwfn, _p_ptt, _ptr, _offset, _val) \
qed_wr(_p_hwfn, _p_ptt, (_p_hwfn->mcp_info->_ptr + _offset), \ qed_wr(_p_hwfn, _p_ptt, (_p_hwfn->mcp_info->_ptr + (_offset)), \
_val) _val)
#define DRV_INNER_RD(_p_hwfn, _p_ptt, _ptr, _offset) \ #define DRV_INNER_RD(_p_hwfn, _p_ptt, _ptr, _offset) \
qed_rd(_p_hwfn, _p_ptt, (_p_hwfn->mcp_info->_ptr + _offset)) qed_rd(_p_hwfn, _p_ptt, (_p_hwfn->mcp_info->_ptr + (_offset)))
#define DRV_MB_WR(_p_hwfn, _p_ptt, _field, _val) \ #define DRV_MB_WR(_p_hwfn, _p_ptt, _field, _val) \
DRV_INNER_WR(p_hwfn, _p_ptt, drv_mb_addr, \ DRV_INNER_WR(p_hwfn, _p_ptt, drv_mb_addr, \
...@@ -385,7 +385,7 @@ qed_mcp_update_pending_cmd(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt) ...@@ -385,7 +385,7 @@ qed_mcp_update_pending_cmd(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt)
p_mb_params->mcp_param = DRV_MB_RD(p_hwfn, p_ptt, fw_mb_param); p_mb_params->mcp_param = DRV_MB_RD(p_hwfn, p_ptt, fw_mb_param);
/* Get the union data */ /* Get the union data */
if (p_mb_params->p_data_dst != NULL && p_mb_params->data_dst_size) { if (p_mb_params->p_data_dst && p_mb_params->data_dst_size) {
u32 union_data_addr = p_hwfn->mcp_info->drv_mb_addr + u32 union_data_addr = p_hwfn->mcp_info->drv_mb_addr +
offsetof(struct public_drv_mb, offsetof(struct public_drv_mb,
union_data); union_data);
...@@ -411,7 +411,7 @@ static void __qed_mcp_cmd_and_union(struct qed_hwfn *p_hwfn, ...@@ -411,7 +411,7 @@ static void __qed_mcp_cmd_and_union(struct qed_hwfn *p_hwfn,
union_data_addr = p_hwfn->mcp_info->drv_mb_addr + union_data_addr = p_hwfn->mcp_info->drv_mb_addr +
offsetof(struct public_drv_mb, union_data); offsetof(struct public_drv_mb, union_data);
memset(&union_data, 0, sizeof(union_data)); memset(&union_data, 0, sizeof(union_data));
if (p_mb_params->p_data_src != NULL && p_mb_params->data_src_size) if (p_mb_params->p_data_src && p_mb_params->data_src_size)
memcpy(&union_data, p_mb_params->p_data_src, memcpy(&union_data, p_mb_params->p_data_src,
p_mb_params->data_src_size); p_mb_params->data_src_size);
qed_memcpy_to(p_hwfn, p_ptt, union_data_addr, &union_data, qed_memcpy_to(p_hwfn, p_ptt, union_data_addr, &union_data,
...@@ -672,7 +672,8 @@ int qed_mcp_nvm_rd_cmd(struct qed_hwfn *p_hwfn, ...@@ -672,7 +672,8 @@ int qed_mcp_nvm_rd_cmd(struct qed_hwfn *p_hwfn,
u32 cmd, u32 cmd,
u32 param, u32 param,
u32 *o_mcp_resp, u32 *o_mcp_resp,
u32 *o_mcp_param, u32 *o_txn_size, u32 *o_buf) u32 *o_mcp_param,
u32 *o_txn_size, u32 *o_buf, bool b_can_sleep)
{ {
struct qed_mcp_mb_params mb_params; struct qed_mcp_mb_params mb_params;
u8 raw_data[MCP_DRV_NVM_BUF_LEN]; u8 raw_data[MCP_DRV_NVM_BUF_LEN];
...@@ -685,6 +686,8 @@ int qed_mcp_nvm_rd_cmd(struct qed_hwfn *p_hwfn, ...@@ -685,6 +686,8 @@ int qed_mcp_nvm_rd_cmd(struct qed_hwfn *p_hwfn,
/* Use the maximal value since the actual one is part of the response */ /* Use the maximal value since the actual one is part of the response */
mb_params.data_dst_size = MCP_DRV_NVM_BUF_LEN; mb_params.data_dst_size = MCP_DRV_NVM_BUF_LEN;
if (b_can_sleep)
mb_params.flags = QED_MB_FLAG_CAN_SLEEP;
rc = qed_mcp_cmd_and_union(p_hwfn, p_ptt, &mb_params); rc = qed_mcp_cmd_and_union(p_hwfn, p_ptt, &mb_params);
if (rc) if (rc)
...@@ -917,7 +920,6 @@ enum qed_load_req_force { ...@@ -917,7 +920,6 @@ enum qed_load_req_force {
}; };
static void qed_get_mfw_force_cmd(struct qed_hwfn *p_hwfn, static void qed_get_mfw_force_cmd(struct qed_hwfn *p_hwfn,
enum qed_load_req_force force_cmd, enum qed_load_req_force force_cmd,
u8 *p_mfw_force_cmd) u8 *p_mfw_force_cmd)
{ {
...@@ -2078,7 +2080,7 @@ int qed_mcp_get_mfw_ver(struct qed_hwfn *p_hwfn, ...@@ -2078,7 +2080,7 @@ int qed_mcp_get_mfw_ver(struct qed_hwfn *p_hwfn,
struct qed_ptt *p_ptt, struct qed_ptt *p_ptt,
u32 *p_mfw_ver, u32 *p_running_bundle_id) u32 *p_mfw_ver, u32 *p_running_bundle_id)
{ {
u32 global_offsize; u32 global_offsize, public_base;
if (IS_VF(p_hwfn->cdev)) { if (IS_VF(p_hwfn->cdev)) {
if (p_hwfn->vf_iov_info) { if (p_hwfn->vf_iov_info) {
...@@ -2095,16 +2097,16 @@ int qed_mcp_get_mfw_ver(struct qed_hwfn *p_hwfn, ...@@ -2095,16 +2097,16 @@ int qed_mcp_get_mfw_ver(struct qed_hwfn *p_hwfn,
} }
} }
public_base = p_hwfn->mcp_info->public_base;
global_offsize = qed_rd(p_hwfn, p_ptt, global_offsize = qed_rd(p_hwfn, p_ptt,
SECTION_OFFSIZE_ADDR(p_hwfn-> SECTION_OFFSIZE_ADDR(public_base,
mcp_info->public_base,
PUBLIC_GLOBAL)); PUBLIC_GLOBAL));
*p_mfw_ver = *p_mfw_ver =
qed_rd(p_hwfn, p_ptt, qed_rd(p_hwfn, p_ptt,
SECTION_ADDR(global_offsize, SECTION_ADDR(global_offsize,
0) + offsetof(struct public_global, mfw_ver)); 0) + offsetof(struct public_global, mfw_ver));
if (p_running_bundle_id != NULL) { if (p_running_bundle_id) {
*p_running_bundle_id = qed_rd(p_hwfn, p_ptt, *p_running_bundle_id = qed_rd(p_hwfn, p_ptt,
SECTION_ADDR(global_offsize, 0) + SECTION_ADDR(global_offsize, 0) +
offsetof(struct public_global, offsetof(struct public_global,
...@@ -2206,6 +2208,7 @@ int qed_mcp_get_transceiver_data(struct qed_hwfn *p_hwfn, ...@@ -2206,6 +2208,7 @@ int qed_mcp_get_transceiver_data(struct qed_hwfn *p_hwfn,
return 0; return 0;
} }
static bool qed_is_transceiver_ready(u32 transceiver_state, static bool qed_is_transceiver_ready(u32 transceiver_state,
u32 transceiver_type) u32 transceiver_type)
{ {
...@@ -2375,7 +2378,7 @@ qed_mcp_get_shmem_proto_legacy(struct qed_hwfn *p_hwfn, ...@@ -2375,7 +2378,7 @@ qed_mcp_get_shmem_proto_legacy(struct qed_hwfn *p_hwfn,
DP_VERBOSE(p_hwfn, NETIF_MSG_IFUP, DP_VERBOSE(p_hwfn, NETIF_MSG_IFUP,
"According to Legacy capabilities, L2 personality is %08x\n", "According to Legacy capabilities, L2 personality is %08x\n",
(u32) *p_proto); (u32)*p_proto);
} }
static int static int
...@@ -2420,7 +2423,7 @@ qed_mcp_get_shmem_proto_mfw(struct qed_hwfn *p_hwfn, ...@@ -2420,7 +2423,7 @@ qed_mcp_get_shmem_proto_mfw(struct qed_hwfn *p_hwfn,
DP_VERBOSE(p_hwfn, DP_VERBOSE(p_hwfn,
NETIF_MSG_IFUP, NETIF_MSG_IFUP,
"According to capabilities, L2 personality is %08x [resp %08x param %08x]\n", "According to capabilities, L2 personality is %08x [resp %08x param %08x]\n",
(u32) *p_proto, resp, param); (u32)*p_proto, resp, param);
return 0; return 0;
} }
...@@ -3020,7 +3023,7 @@ int qed_mcp_nvm_read(struct qed_dev *cdev, u32 addr, u8 *p_buf, u32 len) ...@@ -3020,7 +3023,7 @@ int qed_mcp_nvm_read(struct qed_dev *cdev, u32 addr, u8 *p_buf, u32 len)
DRV_MB_PARAM_NVM_LEN_OFFSET), DRV_MB_PARAM_NVM_LEN_OFFSET),
&resp, &resp_param, &resp, &resp_param,
&read_len, &read_len,
(u32 *)(p_buf + offset)); (u32 *)(p_buf + offset), false);
if (rc || (resp != FW_MSG_CODE_NVM_OK)) { if (rc || (resp != FW_MSG_CODE_NVM_OK)) {
DP_NOTICE(cdev, "MCP command rc = %d\n", rc); DP_NOTICE(cdev, "MCP command rc = %d\n", rc);
...@@ -3028,7 +3031,7 @@ int qed_mcp_nvm_read(struct qed_dev *cdev, u32 addr, u8 *p_buf, u32 len) ...@@ -3028,7 +3031,7 @@ int qed_mcp_nvm_read(struct qed_dev *cdev, u32 addr, u8 *p_buf, u32 len)
} }
/* This can be a lengthy process, and it's possible scheduler /* This can be a lengthy process, and it's possible scheduler
* isn't preemptable. Sleep a bit to prevent CPU hogging. * isn't preemptible. Sleep a bit to prevent CPU hogging.
*/ */
if (bytes_left % 0x1000 < if (bytes_left % 0x1000 <
(bytes_left - read_len) % 0x1000) (bytes_left - read_len) % 0x1000)
...@@ -3123,9 +3126,11 @@ int qed_mcp_nvm_write(struct qed_dev *cdev, ...@@ -3123,9 +3126,11 @@ int qed_mcp_nvm_write(struct qed_dev *cdev,
* to be delivered to MFW. * to be delivered to MFW.
*/ */
if (param && cmd == QED_PUT_FILE_DATA) { if (param && cmd == QED_PUT_FILE_DATA) {
buf_idx = QED_MFW_GET_FIELD(param, buf_idx =
QED_MFW_GET_FIELD(param,
FW_MB_PARAM_NVM_PUT_FILE_REQ_OFFSET); FW_MB_PARAM_NVM_PUT_FILE_REQ_OFFSET);
buf_size = QED_MFW_GET_FIELD(param, buf_size =
QED_MFW_GET_FIELD(param,
FW_MB_PARAM_NVM_PUT_FILE_REQ_SIZE); FW_MB_PARAM_NVM_PUT_FILE_REQ_SIZE);
} else { } else {
buf_idx += buf_size; buf_idx += buf_size;
...@@ -3170,7 +3175,7 @@ int qed_mcp_phy_sfp_read(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, ...@@ -3170,7 +3175,7 @@ int qed_mcp_phy_sfp_read(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
rc = qed_mcp_nvm_rd_cmd(p_hwfn, p_ptt, rc = qed_mcp_nvm_rd_cmd(p_hwfn, p_ptt,
DRV_MSG_CODE_TRANSCEIVER_READ, DRV_MSG_CODE_TRANSCEIVER_READ,
nvm_offset, &resp, &param, &buf_size, nvm_offset, &resp, &param, &buf_size,
(u32 *)(p_buf + offset)); (u32 *)(p_buf + offset), true);
if (rc) { if (rc) {
DP_NOTICE(p_hwfn, DP_NOTICE(p_hwfn,
"Failed to send a transceiver read command to the MFW. rc = %d.\n", "Failed to send a transceiver read command to the MFW. rc = %d.\n",
...@@ -3269,7 +3274,7 @@ int qed_mcp_bist_nvm_get_image_att(struct qed_hwfn *p_hwfn, ...@@ -3269,7 +3274,7 @@ int qed_mcp_bist_nvm_get_image_att(struct qed_hwfn *p_hwfn,
DRV_MSG_CODE_BIST_TEST, param, DRV_MSG_CODE_BIST_TEST, param,
&resp, &resp_param, &resp, &resp_param,
&buf_size, &buf_size,
(u32 *)p_image_att); (u32 *)p_image_att, false);
if (rc) if (rc)
return rc; return rc;
...@@ -3992,7 +3997,8 @@ int qed_mcp_nvm_get_cfg(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt, ...@@ -3992,7 +3997,8 @@ int qed_mcp_nvm_get_cfg(struct qed_hwfn *p_hwfn, struct qed_ptt *p_ptt,
rc = qed_mcp_nvm_rd_cmd(p_hwfn, p_ptt, rc = qed_mcp_nvm_rd_cmd(p_hwfn, p_ptt,
DRV_MSG_CODE_GET_NVM_CFG_OPTION, DRV_MSG_CODE_GET_NVM_CFG_OPTION,
mb_param, &resp, &param, p_len, (u32 *)p_buf); mb_param, &resp, &param, p_len,
(u32 *)p_buf, false);
return rc; return rc;
} }
......
...@@ -969,6 +969,7 @@ int qed_mcp_reset(struct qed_hwfn *p_hwfn, ...@@ -969,6 +969,7 @@ int qed_mcp_reset(struct qed_hwfn *p_hwfn,
* @o_mcp_param: MCP response param. * @o_mcp_param: MCP response param.
* @o_txn_size: Buffer size output. * @o_txn_size: Buffer size output.
* @o_buf: Pointer to the buffer returned by the MFW. * @o_buf: Pointer to the buffer returned by the MFW.
* @b_can_sleep: Can sleep.
* *
* Return: 0 upon success. * Return: 0 upon success.
*/ */
...@@ -977,7 +978,8 @@ int qed_mcp_nvm_rd_cmd(struct qed_hwfn *p_hwfn, ...@@ -977,7 +978,8 @@ int qed_mcp_nvm_rd_cmd(struct qed_hwfn *p_hwfn,
u32 cmd, u32 cmd,
u32 param, u32 param,
u32 *o_mcp_resp, u32 *o_mcp_resp,
u32 *o_mcp_param, u32 *o_txn_size, u32 *o_buf); u32 *o_mcp_param,
u32 *o_txn_size, u32 *o_buf, bool b_can_sleep);
/** /**
* qed_mcp_phy_sfp_read(): Read from sfp. * qed_mcp_phy_sfp_read(): Read from sfp.
......
...@@ -600,7 +600,6 @@ ...@@ -600,7 +600,6 @@
#define DORQ_REG_L2_EDPM_TUNNEL_NGE_IP_EN_K2 0x10092cUL #define DORQ_REG_L2_EDPM_TUNNEL_NGE_IP_EN_K2 0x10092cUL
#define DORQ_REG_L2_EDPM_TUNNEL_NGE_ETH_EN_K2 0x100930UL #define DORQ_REG_L2_EDPM_TUNNEL_NGE_ETH_EN_K2 0x100930UL
#define NIG_REG_NGE_IP_ENABLE 0x508b28UL #define NIG_REG_NGE_IP_ENABLE 0x508b28UL
#define NIG_REG_NGE_ETH_ENABLE 0x508b2cUL #define NIG_REG_NGE_ETH_ENABLE 0x508b2cUL
#define NIG_REG_NGE_COMP_VER 0x508b30UL #define NIG_REG_NGE_COMP_VER 0x508b30UL
...@@ -1443,29 +1442,29 @@ ...@@ -1443,29 +1442,29 @@
0x1401140UL 0x1401140UL
#define XSEM_REG_SYNC_DBG_EMPTY \ #define XSEM_REG_SYNC_DBG_EMPTY \
0x1401160UL 0x1401160UL
#define XSEM_REG_SLOW_DBG_ACTIVE_BB_K2 \ #define XSEM_REG_SLOW_DBG_ACTIVE \
0x1401400UL 0x1401400UL
#define XSEM_REG_SLOW_DBG_MODE_BB_K2 \ #define XSEM_REG_SLOW_DBG_MODE \
0x1401404UL 0x1401404UL
#define XSEM_REG_DBG_FRAME_MODE_BB_K2 \ #define XSEM_REG_DBG_FRAME_MODE \
0x1401408UL 0x1401408UL
#define XSEM_REG_DBG_GPRE_VECT \ #define XSEM_REG_DBG_GPRE_VECT \
0x1401410UL 0x1401410UL
#define XSEM_REG_DBG_MODE1_CFG_BB_K2 \ #define XSEM_REG_DBG_MODE1_CFG \
0x1401420UL 0x1401420UL
#define XSEM_REG_FAST_MEMORY \ #define XSEM_REG_FAST_MEMORY \
0x1440000UL 0x1440000UL
#define YSEM_REG_SYNC_DBG_EMPTY \ #define YSEM_REG_SYNC_DBG_EMPTY \
0x1501160UL 0x1501160UL
#define YSEM_REG_SLOW_DBG_ACTIVE_BB_K2 \ #define YSEM_REG_SLOW_DBG_ACTIVE \
0x1501400UL 0x1501400UL
#define YSEM_REG_SLOW_DBG_MODE_BB_K2 \ #define YSEM_REG_SLOW_DBG_MODE \
0x1501404UL 0x1501404UL
#define YSEM_REG_DBG_FRAME_MODE_BB_K2 \ #define YSEM_REG_DBG_FRAME_MODE \
0x1501408UL 0x1501408UL
#define YSEM_REG_DBG_GPRE_VECT \ #define YSEM_REG_DBG_GPRE_VECT \
0x1501410UL 0x1501410UL
#define YSEM_REG_DBG_MODE1_CFG_BB_K2 \ #define YSEM_REG_DBG_MODE1_CFG \
0x1501420UL 0x1501420UL
#define YSEM_REG_FAST_MEMORY \ #define YSEM_REG_FAST_MEMORY \
0x1540000UL 0x1540000UL
...@@ -1473,15 +1472,15 @@ ...@@ -1473,15 +1472,15 @@
0x1601140UL 0x1601140UL
#define PSEM_REG_SYNC_DBG_EMPTY \ #define PSEM_REG_SYNC_DBG_EMPTY \
0x1601160UL 0x1601160UL
#define PSEM_REG_SLOW_DBG_ACTIVE_BB_K2 \ #define PSEM_REG_SLOW_DBG_ACTIVE \
0x1601400UL 0x1601400UL
#define PSEM_REG_SLOW_DBG_MODE_BB_K2 \ #define PSEM_REG_SLOW_DBG_MODE \
0x1601404UL 0x1601404UL
#define PSEM_REG_DBG_FRAME_MODE_BB_K2 \ #define PSEM_REG_DBG_FRAME_MODE \
0x1601408UL 0x1601408UL
#define PSEM_REG_DBG_GPRE_VECT \ #define PSEM_REG_DBG_GPRE_VECT \
0x1601410UL 0x1601410UL
#define PSEM_REG_DBG_MODE1_CFG_BB_K2 \ #define PSEM_REG_DBG_MODE1_CFG \
0x1601420UL 0x1601420UL
#define PSEM_REG_FAST_MEMORY \ #define PSEM_REG_FAST_MEMORY \
0x1640000UL 0x1640000UL
...@@ -1489,15 +1488,15 @@ ...@@ -1489,15 +1488,15 @@
0x1701140UL 0x1701140UL
#define TSEM_REG_SYNC_DBG_EMPTY \ #define TSEM_REG_SYNC_DBG_EMPTY \
0x1701160UL 0x1701160UL
#define TSEM_REG_SLOW_DBG_ACTIVE_BB_K2 \ #define TSEM_REG_SLOW_DBG_ACTIVE \
0x1701400UL 0x1701400UL
#define TSEM_REG_SLOW_DBG_MODE_BB_K2 \ #define TSEM_REG_SLOW_DBG_MODE \
0x1701404UL 0x1701404UL
#define TSEM_REG_DBG_FRAME_MODE_BB_K2 \ #define TSEM_REG_DBG_FRAME_MODE \
0x1701408UL 0x1701408UL
#define TSEM_REG_DBG_GPRE_VECT \ #define TSEM_REG_DBG_GPRE_VECT \
0x1701410UL 0x1701410UL
#define TSEM_REG_DBG_MODE1_CFG_BB_K2 \ #define TSEM_REG_DBG_MODE1_CFG \
0x1701420UL 0x1701420UL
#define TSEM_REG_FAST_MEMORY \ #define TSEM_REG_FAST_MEMORY \
0x1740000UL 0x1740000UL
...@@ -1505,15 +1504,15 @@ ...@@ -1505,15 +1504,15 @@
0x1801140UL 0x1801140UL
#define MSEM_REG_SYNC_DBG_EMPTY \ #define MSEM_REG_SYNC_DBG_EMPTY \
0x1801160UL 0x1801160UL
#define MSEM_REG_SLOW_DBG_ACTIVE_BB_K2 \ #define MSEM_REG_SLOW_DBG_ACTIVE \
0x1801400UL 0x1801400UL
#define MSEM_REG_SLOW_DBG_MODE_BB_K2 \ #define MSEM_REG_SLOW_DBG_MODE \
0x1801404UL 0x1801404UL
#define MSEM_REG_DBG_FRAME_MODE_BB_K2 \ #define MSEM_REG_DBG_FRAME_MODE \
0x1801408UL 0x1801408UL
#define MSEM_REG_DBG_GPRE_VECT \ #define MSEM_REG_DBG_GPRE_VECT \
0x1801410UL 0x1801410UL
#define MSEM_REG_DBG_MODE1_CFG_BB_K2 \ #define MSEM_REG_DBG_MODE1_CFG \
0x1801420UL 0x1801420UL
#define MSEM_REG_FAST_MEMORY \ #define MSEM_REG_FAST_MEMORY \
0x1840000UL 0x1840000UL
...@@ -1523,15 +1522,15 @@ ...@@ -1523,15 +1522,15 @@
20480 20480
#define USEM_REG_SYNC_DBG_EMPTY \ #define USEM_REG_SYNC_DBG_EMPTY \
0x1901160UL 0x1901160UL
#define USEM_REG_SLOW_DBG_ACTIVE_BB_K2 \ #define USEM_REG_SLOW_DBG_ACTIVE \
0x1901400UL 0x1901400UL
#define USEM_REG_SLOW_DBG_MODE_BB_K2 \ #define USEM_REG_SLOW_DBG_MODE \
0x1901404UL 0x1901404UL
#define USEM_REG_DBG_FRAME_MODE_BB_K2 \ #define USEM_REG_DBG_FRAME_MODE \
0x1901408UL 0x1901408UL
#define USEM_REG_DBG_GPRE_VECT \ #define USEM_REG_DBG_GPRE_VECT \
0x1901410UL 0x1901410UL
#define USEM_REG_DBG_MODE1_CFG_BB_K2 \ #define USEM_REG_DBG_MODE1_CFG \
0x1901420UL 0x1901420UL
#define USEM_REG_FAST_MEMORY \ #define USEM_REG_FAST_MEMORY \
0x1940000UL 0x1940000UL
...@@ -1567,7 +1566,7 @@ ...@@ -1567,7 +1566,7 @@
0x341500UL 0x341500UL
#define BRB_REG_BIG_RAM_DATA_SIZE \ #define BRB_REG_BIG_RAM_DATA_SIZE \
64 64
#define SEM_FAST_REG_STALL_0_BB_K2 \ #define SEM_FAST_REG_STALL_0 \
0x000488UL 0x000488UL
#define SEM_FAST_REG_STALLED \ #define SEM_FAST_REG_STALLED \
0x000494UL 0x000494UL
...@@ -1625,35 +1624,35 @@ ...@@ -1625,35 +1624,35 @@
0x008c14UL 0x008c14UL
#define NWS_REG_NWS_CMU_K2 \ #define NWS_REG_NWS_CMU_K2 \
0x720000UL 0x720000UL
#define PHY_NW_IP_REG_PHY0_TOP_TBUS_ADDR_7_0_K2_E5 \ #define PHY_NW_IP_REG_PHY0_TOP_TBUS_ADDR_7_0_K2 \
0x000680UL 0x000680UL
#define PHY_NW_IP_REG_PHY0_TOP_TBUS_ADDR_15_8_K2_E5 \ #define PHY_NW_IP_REG_PHY0_TOP_TBUS_ADDR_15_8_K2 \
0x000684UL 0x000684UL
#define PHY_NW_IP_REG_PHY0_TOP_TBUS_DATA_7_0_K2_E5 \ #define PHY_NW_IP_REG_PHY0_TOP_TBUS_DATA_7_0_K2 \
0x0006c0UL 0x0006c0UL
#define PHY_NW_IP_REG_PHY0_TOP_TBUS_DATA_11_8_K2_E5 \ #define PHY_NW_IP_REG_PHY0_TOP_TBUS_DATA_11_8_K2 \
0x0006c4UL 0x0006c4UL
#define MS_REG_MS_CMU_K2_E5 \ #define MS_REG_MS_CMU_K2 \
0x6a4000UL 0x6a4000UL
#define PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X130_K2_E5 \ #define PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X130_K2 \
0x000208UL 0x000208UL
#define PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X131_K2_E5 \ #define PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X131_K2 \
0x00020cUL 0x00020cUL
#define PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X132_K2_E5 \ #define PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X132_K2 \
0x000210UL 0x000210UL
#define PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X133_K2_E5 \ #define PHY_SGMII_IP_REG_AHB_CMU_CSR_0_X133_K2 \
0x000214UL 0x000214UL
#define PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X130_K2_E5 \ #define PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X130_K2 \
0x000208UL 0x000208UL
#define PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X131_K2_E5 \ #define PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X131_K2 \
0x00020cUL 0x00020cUL
#define PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X132_K2_E5 \ #define PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X132_K2 \
0x000210UL 0x000210UL
#define PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X133_K2_E5 \ #define PHY_PCIE_IP_REG_AHB_CMU_CSR_0_X133_K2 \
0x000214UL 0x000214UL
#define PHY_PCIE_REG_PHY0_K2_E5 \ #define PHY_PCIE_REG_PHY0_K2 \
0x620000UL 0x620000UL
#define PHY_PCIE_REG_PHY1_K2_E5 \ #define PHY_PCIE_REG_PHY1_K2 \
0x624000UL 0x624000UL
#define NIG_REG_ROCE_DUPLICATE_TO_HOST 0x5088f0UL #define NIG_REG_ROCE_DUPLICATE_TO_HOST 0x5088f0UL
#define NIG_REG_PPF_TO_ENGINE_SEL 0x508900UL #define NIG_REG_PPF_TO_ENGINE_SEL 0x508900UL
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment