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 * qed_init_iro_array(): init iro_arr.
17 * @cdev: Qed dev pointer.
21 void qed_init_iro_array(struct qed_dev
*cdev
);
24 * qed_init_run(): Run the init-sequence.
26 * @p_hwfn: HW device data.
29 * @phase_id: Phase ID.
32 * Return: _qed_status_t
34 int qed_init_run(struct qed_hwfn
*p_hwfn
,
35 struct qed_ptt
*p_ptt
,
41 * qed_init_alloc(): Allocate RT array, Store 'values' ptrs.
43 * @p_hwfn: HW device data.
45 * Return: _qed_status_t.
47 int qed_init_alloc(struct qed_hwfn
*p_hwfn
);
50 * qed_init_free(): Init HW function deallocate.
52 * @p_hwfn: HW device data.
56 void qed_init_free(struct qed_hwfn
*p_hwfn
);
59 * qed_init_store_rt_reg(): Store a configuration value in the RT array.
61 * @p_hwfn: HW device data.
62 * @rt_offset: RT offset.
67 void qed_init_store_rt_reg(struct qed_hwfn
*p_hwfn
,
71 #define STORE_RT_REG(hwfn, offset, val) \
72 qed_init_store_rt_reg(hwfn, offset, val)
74 #define OVERWRITE_RT_REG(hwfn, offset, val) \
75 qed_init_store_rt_reg(hwfn, offset, val)
77 void qed_init_store_rt_agg(struct qed_hwfn
*p_hwfn
,
82 #define STORE_RT_REG_AGG(hwfn, offset, val) \
83 qed_init_store_rt_agg(hwfn, offset, (u32 *)&(val), sizeof(val))
86 * qed_gtt_init(): Initialize GTT global windows and set admin window
87 * related params of GTT/PTT to default values.
89 * @p_hwfn: HW device data.
93 void qed_gtt_init(struct qed_hwfn
*p_hwfn
);