1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2016 - 2018 Cavium Inc.
11 #include "ecore_dev_api.h"
13 /* Forward decleration */
18 RESERVED_PTT_USER_SPACE,
24 /* @@@TMP - in earlier versions of the emulation, the HW lock started from 1
25 * instead of 0, this should be fixed in later HW versions.
27 #ifndef MISC_REG_DRIVER_CONTROL_0
28 #define MISC_REG_DRIVER_CONTROL_0 MISC_REG_DRIVER_CONTROL_1
30 #ifndef MISC_REG_DRIVER_CONTROL_0_SIZE
31 #define MISC_REG_DRIVER_CONTROL_0_SIZE MISC_REG_DRIVER_CONTROL_1_SIZE
34 enum _dmae_cmd_dst_mask {
35 DMAE_CMD_DST_MASK_NONE = 0,
36 DMAE_CMD_DST_MASK_PCIE = 1,
37 DMAE_CMD_DST_MASK_GRC = 2
40 enum _dmae_cmd_src_mask {
41 DMAE_CMD_SRC_MASK_PCIE = 0,
42 DMAE_CMD_SRC_MASK_GRC = 1
45 enum _dmae_cmd_crc_mask {
46 DMAE_CMD_COMP_CRC_EN_MASK_NONE = 0,
47 DMAE_CMD_COMP_CRC_EN_MASK_SET = 1
50 /* definitions for DMA constants */
51 #define DMAE_GO_VALUE 0x1
54 #define DMAE_COMPLETION_VAL 0xAED10000
55 #define DMAE_CMD_ENDIANITY 0x3
57 #define DMAE_COMPLETION_VAL 0xD1AE
58 #define DMAE_CMD_ENDIANITY 0x2
61 #define DMAE_CMD_SIZE 14
62 /* size of DMAE command structure to fill.. DMAE_CMD_SIZE-5 */
63 #define DMAE_CMD_SIZE_TO_FILL (DMAE_CMD_SIZE - 5)
64 /* Minimum wait for dmae opertaion to complete 2 milliseconds */
65 #define DMAE_MIN_WAIT_TIME 0x2
66 #define DMAE_MAX_CLIENTS 32
69 * @brief ecore_gtt_init - Initialize GTT windows
74 void ecore_gtt_init(struct ecore_hwfn *p_hwfn,
75 struct ecore_ptt *p_ptt);
78 * @brief ecore_ptt_invalidate - Forces all ptt entries to be re-configured
82 void ecore_ptt_invalidate(struct ecore_hwfn *p_hwfn);
85 * @brief ecore_ptt_pool_alloc - Allocate and initialize PTT pool
89 * @return _ecore_status_t - success (0), negative - error.
91 enum _ecore_status_t ecore_ptt_pool_alloc(struct ecore_hwfn *p_hwfn);
94 * @brief ecore_ptt_pool_free -
98 void ecore_ptt_pool_free(struct ecore_hwfn *p_hwfn);
101 * @brief ecore_ptt_get_bar_addr - Get PPT's external BAR address
108 u32 ecore_ptt_get_bar_addr(struct ecore_ptt *p_ptt);
111 * @brief ecore_ptt_set_win - Set PTT Window's GRC BAR address
117 void ecore_ptt_set_win(struct ecore_hwfn *p_hwfn,
118 struct ecore_ptt *p_ptt,
122 * @brief ecore_get_reserved_ptt - Get a specific reserved PTT
127 * @return struct ecore_ptt *
129 struct ecore_ptt *ecore_get_reserved_ptt(struct ecore_hwfn *p_hwfn,
130 enum reserved_ptts ptt_idx);
133 * @brief ecore_wr - Write value to BAR using the given ptt
140 void ecore_wr(struct ecore_hwfn *p_hwfn,
141 struct ecore_ptt *p_ptt,
146 * @brief ecore_rd - Read value from BAR using the given ptt
152 u32 ecore_rd(struct ecore_hwfn *p_hwfn,
153 struct ecore_ptt *p_ptt,
157 * @brief ecore_memcpy_from - copy n bytes from BAR using the given
166 void ecore_memcpy_from(struct ecore_hwfn *p_hwfn,
167 struct ecore_ptt *p_ptt,
173 * @brief ecore_memcpy_to - copy n bytes to BAR using the given
182 void ecore_memcpy_to(struct ecore_hwfn *p_hwfn,
183 struct ecore_ptt *p_ptt,
188 * @brief ecore_fid_pretend - pretend to another function when
189 * accessing the ptt window. There is no way to unpretend
190 * a function. The only way to cancel a pretend is to
191 * pretend back to the original function.
195 * @param fid - fid field of pxp_pretend structure. Can contain
196 * either pf / vf, port/path fields are don't care.
198 void ecore_fid_pretend(struct ecore_hwfn *p_hwfn,
199 struct ecore_ptt *p_ptt,
203 * @brief ecore_port_pretend - pretend to another port when
204 * accessing the ptt window
208 * @param port_id - the port to pretend to
210 void ecore_port_pretend(struct ecore_hwfn *p_hwfn,
211 struct ecore_ptt *p_ptt,
215 * @brief ecore_port_unpretend - cancel any previously set port
221 void ecore_port_unpretend(struct ecore_hwfn *p_hwfn,
222 struct ecore_ptt *p_ptt);
225 * @brief ecore_port_fid_pretend - pretend to another port and another function
226 * when accessing the ptt window
230 * @param port_id - the port to pretend to
231 * @param fid - fid field of pxp_pretend structure. Can contain either pf / vf.
233 void ecore_port_fid_pretend(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
234 u8 port_id, u16 fid);
237 * @brief ecore_vfid_to_concrete - build a concrete FID for a
244 u32 ecore_vfid_to_concrete(struct ecore_hwfn *p_hwfn, u8 vfid);
247 * @brief ecore_dmae_info_alloc - Init the dmae_info structure
248 * which is part of p_hwfn.
251 enum _ecore_status_t ecore_dmae_info_alloc(struct ecore_hwfn *p_hwfn);
254 * @brief ecore_dmae_info_free - Free the dmae_info structure
255 * which is part of p_hwfn
259 void ecore_dmae_info_free(struct ecore_hwfn *p_hwfn);
261 enum _ecore_status_t ecore_init_fw_data(struct ecore_dev *p_dev,
264 void ecore_hw_err_notify(struct ecore_hwfn *p_hwfn,
265 enum ecore_hw_err_type err_type);
267 enum _ecore_status_t ecore_dmae_sanity(struct ecore_hwfn *p_hwfn,
268 struct ecore_ptt *p_ptt,
272 * @brief ecore_ppfid_wr - Write value to BAR using the given ptt while
273 * pretending to a PF to which the given PPFID pertains.
281 void ecore_ppfid_wr(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
282 u8 abs_ppfid, u32 hw_addr, u32 val);
285 * @brief ecore_ppfid_rd - Read value from BAR using the given ptt while
286 * pretending to a PF to which the given PPFID pertains.
293 u32 ecore_ppfid_rd(struct ecore_hwfn *p_hwfn, struct ecore_ptt *p_ptt,
294 u8 abs_ppfid, u32 hw_addr);
296 #endif /* __ECORE_HW_H__ */