1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause) */
2 /* QLogic qed NIC Driver
3 * Copyright (c) 2015-2017 QLogic Corporation
4 * Copyright (c) 2019-2020 Marvell International Ltd.
7 #ifndef _QED_INIT_OPS_H
8 #define _QED_INIT_OPS_H
10 #include <linux/types.h>
11 #include <linux/slab.h>
15 * @brief qed_init_iro_array - init iro_arr.
20 void qed_init_iro_array(struct qed_dev
*cdev
);
23 * @brief qed_init_run - Run the init-sequence.
31 * @return _qed_status_t
33 int qed_init_run(struct qed_hwfn
*p_hwfn
,
34 struct qed_ptt
*p_ptt
,
40 * @brief qed_init_hwfn_allocate - Allocate RT array, Store 'values' ptrs.
45 * @return _qed_status_t
47 int qed_init_alloc(struct qed_hwfn
*p_hwfn
);
50 * @brief qed_init_hwfn_deallocate
55 void qed_init_free(struct qed_hwfn
*p_hwfn
);
58 * @brief qed_init_store_rt_reg - Store a configuration value in the RT array.
65 void qed_init_store_rt_reg(struct qed_hwfn
*p_hwfn
,
69 #define STORE_RT_REG(hwfn, offset, val) \
70 qed_init_store_rt_reg(hwfn, offset, val)
72 #define OVERWRITE_RT_REG(hwfn, offset, val) \
73 qed_init_store_rt_reg(hwfn, offset, val)
84 void qed_init_store_rt_agg(struct qed_hwfn
*p_hwfn
,
89 #define STORE_RT_REG_AGG(hwfn, offset, val) \
90 qed_init_store_rt_agg(hwfn, offset, (u32 *)&val, sizeof(val))
94 * Initialize GTT global windows and set admin window
95 * related params of GTT/PTT to default values.
99 void qed_gtt_init(struct qed_hwfn
*p_hwfn
);