2 * Copyright (c) 2016 QLogic Corporation.
6 * See LICENSE.qede_pmd for copyright and licensing details.
10 #define __ECORE_HW_H__
13 #include "ecore_dev_api.h"
15 /* Forward decleration */
20 RESERVED_PTT_USER_SPACE,
26 /* @@@TMP - in earlier versions of the emulation, the HW lock started from 1
27 * instead of 0, this should be fixed in later HW versions.
29 #ifndef MISC_REG_DRIVER_CONTROL_0
30 #define MISC_REG_DRIVER_CONTROL_0 MISC_REG_DRIVER_CONTROL_1
32 #ifndef MISC_REG_DRIVER_CONTROL_0_SIZE
33 #define MISC_REG_DRIVER_CONTROL_0_SIZE MISC_REG_DRIVER_CONTROL_1_SIZE
36 enum _dmae_cmd_dst_mask {
37 DMAE_CMD_DST_MASK_NONE = 0,
38 DMAE_CMD_DST_MASK_PCIE = 1,
39 DMAE_CMD_DST_MASK_GRC = 2
42 enum _dmae_cmd_src_mask {
43 DMAE_CMD_SRC_MASK_PCIE = 0,
44 DMAE_CMD_SRC_MASK_GRC = 1
47 enum _dmae_cmd_crc_mask {
48 DMAE_CMD_COMP_CRC_EN_MASK_NONE = 0,
49 DMAE_CMD_COMP_CRC_EN_MASK_SET = 1
52 /* definitions for DMA constants */
53 #define DMAE_GO_VALUE 0x1
56 #define DMAE_COMPLETION_VAL 0xAED10000
57 #define DMAE_CMD_ENDIANITY 0x3
59 #define DMAE_COMPLETION_VAL 0xD1AE
60 #define DMAE_CMD_ENDIANITY 0x2
63 #define DMAE_CMD_SIZE 14
64 /* size of DMAE command structure to fill.. DMAE_CMD_SIZE-5 */
65 #define DMAE_CMD_SIZE_TO_FILL (DMAE_CMD_SIZE - 5)
66 /* Minimum wait for dmae opertaion to complete 2 milliseconds */
67 #define DMAE_MIN_WAIT_TIME 0x2
68 #define DMAE_MAX_CLIENTS 32
71 * @brief ecore_gtt_init - Initialize GTT windows
75 void ecore_gtt_init(struct ecore_hwfn *p_hwfn);
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_hw_addr - Get PTT's GRC/HW address
108 u32 ecore_ptt_get_hw_addr(struct ecore_hwfn *p_hwfn,
109 struct ecore_ptt *p_ptt);
112 * @brief ecore_ptt_get_bar_addr - Get PPT's external BAR address
119 u32 ecore_ptt_get_bar_addr(struct ecore_ptt *p_ptt);
122 * @brief ecore_ptt_set_win - Set PTT Window's GRC BAR address
128 void ecore_ptt_set_win(struct ecore_hwfn *p_hwfn,
129 struct ecore_ptt *p_ptt,
133 * @brief ecore_get_reserved_ptt - Get a specific reserved PTT
138 * @return struct ecore_ptt *
140 struct ecore_ptt *ecore_get_reserved_ptt(struct ecore_hwfn *p_hwfn,
141 enum reserved_ptts ptt_idx);
144 * @brief ecore_wr - Write value to BAR using the given ptt
151 void ecore_wr(struct ecore_hwfn *p_hwfn,
152 struct ecore_ptt *p_ptt,
157 * @brief ecore_rd - Read value from BAR using the given ptt
164 u32 ecore_rd(struct ecore_hwfn *p_hwfn,
165 struct ecore_ptt *p_ptt,
169 * @brief ecore_memcpy_from - copy n bytes from BAR using the given
178 void ecore_memcpy_from(struct ecore_hwfn *p_hwfn,
179 struct ecore_ptt *p_ptt,
185 * @brief ecore_memcpy_to - copy n bytes to BAR using the given
194 void ecore_memcpy_to(struct ecore_hwfn *p_hwfn,
195 struct ecore_ptt *p_ptt,
200 * @brief ecore_fid_pretend - pretend to another function when
201 * accessing the ptt window. There is no way to unpretend
202 * a function. The only way to cancel a pretend is to
203 * pretend back to the original function.
207 * @param fid - fid field of pxp_pretend structure. Can contain
208 * either pf / vf, port/path fields are don't care.
210 void ecore_fid_pretend(struct ecore_hwfn *p_hwfn,
211 struct ecore_ptt *p_ptt,
215 * @brief ecore_port_pretend - pretend to another port when
216 * accessing the ptt window
220 * @param port_id - the port to pretend to
222 void ecore_port_pretend(struct ecore_hwfn *p_hwfn,
223 struct ecore_ptt *p_ptt,
227 * @brief ecore_port_unpretend - cancel any previously set port
233 void ecore_port_unpretend(struct ecore_hwfn *p_hwfn,
234 struct ecore_ptt *p_ptt);
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 union ecore_qm_pq_params {
278 u8 qpid; /* roce relative */
286 u16 ecore_get_qm_pq(struct ecore_hwfn *p_hwfn,
287 enum protocol_type proto,
288 union ecore_qm_pq_params *params);
290 enum _ecore_status_t ecore_init_fw_data(struct ecore_dev *p_dev,
293 void ecore_hw_err_notify(struct ecore_hwfn *p_hwfn,
294 enum ecore_hw_err_type err_type);
296 #endif /* __ECORE_HW_H__ */