| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */ |
|---|
| 1 | 2 | /* QLogic qed NIC Driver |
|---|
| 2 | 3 | * 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. |
|---|
| 4 | + * Copyright (c) 2019-2020 Marvell International Ltd. |
|---|
| 7 | 5 | */ |
|---|
| 8 | 6 | |
|---|
| 9 | 7 | #ifndef _QED_DEBUGFS_H |
|---|
| .. | .. |
|---|
| 17 | 15 | DBG_FEATURE_IGU_FIFO, |
|---|
| 18 | 16 | DBG_FEATURE_PROTECTION_OVERRIDE, |
|---|
| 19 | 17 | DBG_FEATURE_FW_ASSERTS, |
|---|
| 18 | + DBG_FEATURE_ILT, |
|---|
| 20 | 19 | DBG_FEATURE_NUM |
|---|
| 21 | 20 | }; |
|---|
| 22 | 21 | |
|---|
| 23 | 22 | /* Forward Declaration */ |
|---|
| 24 | 23 | struct qed_dev; |
|---|
| 24 | +struct qed_hwfn; |
|---|
| 25 | 25 | |
|---|
| 26 | 26 | int qed_dbg_grc(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes); |
|---|
| 27 | 27 | int qed_dbg_grc_size(struct qed_dev *cdev); |
|---|
| .. | .. |
|---|
| 40 | 40 | int qed_dbg_fw_asserts(struct qed_dev *cdev, void *buffer, |
|---|
| 41 | 41 | u32 *num_dumped_bytes); |
|---|
| 42 | 42 | int qed_dbg_fw_asserts_size(struct qed_dev *cdev); |
|---|
| 43 | +int qed_dbg_ilt(struct qed_dev *cdev, void *buffer, u32 *num_dumped_bytes); |
|---|
| 44 | +int qed_dbg_ilt_size(struct qed_dev *cdev); |
|---|
| 43 | 45 | int qed_dbg_mcp_trace(struct qed_dev *cdev, void *buffer, |
|---|
| 44 | 46 | u32 *num_dumped_bytes); |
|---|
| 45 | 47 | int qed_dbg_mcp_trace_size(struct qed_dev *cdev); |
|---|