1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2016 - 2018 Cavium Inc.
7 #include <rte_memzone.h>
13 #include "ecore_dev_api.h"
14 #include "ecore_iov_api.h"
15 #include "ecore_mcp_api.h"
16 #include "ecore_l2_api.h"
18 /* Array of memzone pointers */
19 static const struct rte_memzone *ecore_mz_mapping[RTE_MAX_MEMZONE];
20 /* Counter to track current memzone allocated */
21 static uint16_t ecore_mz_count;
23 unsigned long qede_log2_align(unsigned long n)
25 unsigned long ret = n ? 1 : 0;
26 unsigned long _n = n >> 1;
39 u32 qede_osal_log2(u32 val)
49 inline void qede_set_bit(u32 nr, unsigned long *addr)
51 __sync_fetch_and_or(addr, (1UL << nr));
54 inline void qede_clr_bit(u32 nr, unsigned long *addr)
56 __sync_fetch_and_and(addr, ~(1UL << nr));
59 inline bool qede_test_bit(u32 nr, unsigned long *addr)
64 res = ((*addr) & (1UL << nr)) != 0;
69 static inline u32 qede_ffb(unsigned long word)
71 unsigned long first_bit;
73 first_bit = __builtin_ffsl(word);
74 return first_bit ? (first_bit - 1) : OSAL_BITS_PER_UL;
77 inline u32 qede_find_first_bit(unsigned long *addr, u32 limit)
81 OSAL_BUILD_BUG_ON(!limit);
82 nwords = (limit - 1) / OSAL_BITS_PER_UL + 1;
83 for (i = 0; i < nwords; i++)
87 return (i == nwords) ? limit : i * OSAL_BITS_PER_UL + qede_ffb(addr[i]);
90 static inline u32 qede_ffz(unsigned long word)
92 unsigned long first_zero;
94 first_zero = __builtin_ffsl(~word);
95 return first_zero ? (first_zero - 1) : OSAL_BITS_PER_UL;
98 inline u32 qede_find_first_zero_bit(unsigned long *addr, u32 limit)
102 OSAL_BUILD_BUG_ON(!limit);
103 nwords = (limit - 1) / OSAL_BITS_PER_UL + 1;
104 for (i = 0; i < nwords && ~(addr[i]) == 0; i++);
105 return (i == nwords) ? limit : i * OSAL_BITS_PER_UL + qede_ffz(addr[i]);
108 void qede_vf_fill_driver_data(struct ecore_hwfn *hwfn,
109 __rte_unused struct vf_pf_resc_request *resc_req,
110 struct ecore_vf_acquire_sw_info *vf_sw_info)
112 vf_sw_info->os_type = VFPF_ACQUIRE_OS_LINUX_USERSPACE;
113 vf_sw_info->override_fw_version = 1;
116 void *osal_dma_alloc_coherent(struct ecore_dev *p_dev,
117 dma_addr_t *phys, size_t size)
119 const struct rte_memzone *mz;
120 char mz_name[RTE_MEMZONE_NAMESIZE];
121 uint32_t core_id = rte_lcore_id();
122 unsigned int socket_id;
124 if (ecore_mz_count >= RTE_MAX_MEMZONE) {
125 DP_ERR(p_dev, "Memzone allocation count exceeds %u\n",
131 OSAL_MEM_ZERO(mz_name, sizeof(*mz_name));
132 snprintf(mz_name, sizeof(mz_name), "%lx",
133 (unsigned long)rte_get_timer_cycles());
134 if (core_id == (unsigned int)LCORE_ID_ANY)
135 core_id = rte_get_master_lcore();
136 socket_id = rte_lcore_to_socket_id(core_id);
137 mz = rte_memzone_reserve_aligned(mz_name, size, socket_id,
138 RTE_MEMZONE_IOVA_CONTIG, RTE_CACHE_LINE_SIZE);
140 DP_ERR(p_dev, "Unable to allocate DMA memory "
141 "of size %zu bytes - %s\n",
142 size, rte_strerror(rte_errno));
147 ecore_mz_mapping[ecore_mz_count++] = mz;
148 DP_VERBOSE(p_dev, ECORE_MSG_SP,
149 "Allocated dma memory size=%zu phys=0x%lx"
150 " virt=%p core=%d\n",
151 mz->len, (unsigned long)mz->iova, mz->addr, core_id);
155 void *osal_dma_alloc_coherent_aligned(struct ecore_dev *p_dev,
156 dma_addr_t *phys, size_t size, int align)
158 const struct rte_memzone *mz;
159 char mz_name[RTE_MEMZONE_NAMESIZE];
160 uint32_t core_id = rte_lcore_id();
161 unsigned int socket_id;
163 if (ecore_mz_count >= RTE_MAX_MEMZONE) {
164 DP_ERR(p_dev, "Memzone allocation count exceeds %u\n",
170 OSAL_MEM_ZERO(mz_name, sizeof(*mz_name));
171 snprintf(mz_name, sizeof(mz_name), "%lx",
172 (unsigned long)rte_get_timer_cycles());
173 if (core_id == (unsigned int)LCORE_ID_ANY)
174 core_id = rte_get_master_lcore();
175 socket_id = rte_lcore_to_socket_id(core_id);
176 mz = rte_memzone_reserve_aligned(mz_name, size, socket_id,
177 RTE_MEMZONE_IOVA_CONTIG, align);
179 DP_ERR(p_dev, "Unable to allocate DMA memory "
180 "of size %zu bytes - %s\n",
181 size, rte_strerror(rte_errno));
186 ecore_mz_mapping[ecore_mz_count++] = mz;
187 DP_VERBOSE(p_dev, ECORE_MSG_SP,
188 "Allocated aligned dma memory size=%zu phys=0x%lx"
189 " virt=%p core=%d\n",
190 mz->len, (unsigned long)mz->iova, mz->addr, core_id);
194 void osal_dma_free_mem(struct ecore_dev *p_dev, dma_addr_t phys)
198 for (j = 0 ; j < ecore_mz_count; j++) {
199 if (phys == ecore_mz_mapping[j]->iova) {
200 DP_VERBOSE(p_dev, ECORE_MSG_SP,
201 "Free memzone %s\n", ecore_mz_mapping[j]->name);
202 rte_memzone_free(ecore_mz_mapping[j]);
203 while (j < ecore_mz_count - 1) {
204 ecore_mz_mapping[j] = ecore_mz_mapping[j + 1];
212 DP_ERR(p_dev, "Unexpected memory free request\n");
215 #ifdef CONFIG_ECORE_ZIPPED_FW
216 u32 qede_unzip_data(struct ecore_hwfn *p_hwfn, u32 input_len,
217 u8 *input_buf, u32 max_size, u8 *unzip_buf)
221 p_hwfn->stream->next_in = input_buf;
222 p_hwfn->stream->avail_in = input_len;
223 p_hwfn->stream->next_out = unzip_buf;
224 p_hwfn->stream->avail_out = max_size;
226 rc = inflateInit2(p_hwfn->stream, MAX_WBITS);
230 "zlib init failed, rc = %d\n", rc);
234 rc = inflate(p_hwfn->stream, Z_FINISH);
235 inflateEnd(p_hwfn->stream);
237 if (rc != Z_OK && rc != Z_STREAM_END) {
239 "FW unzip error: %s, rc=%d\n", p_hwfn->stream->msg,
244 return p_hwfn->stream->total_out / 4;
249 qede_get_mcp_proto_stats(struct ecore_dev *edev,
250 enum ecore_mcp_protocol_type type,
251 union ecore_mcp_protocol_stats *stats)
253 struct ecore_eth_stats lan_stats;
255 if (type == ECORE_MCP_LAN_STATS) {
256 ecore_get_vport_stats(edev, &lan_stats);
259 stats->lan_stats.ucast_rx_pkts = lan_stats.common.rx_ucast_pkts;
260 stats->lan_stats.ucast_tx_pkts = lan_stats.common.tx_ucast_pkts;
262 stats->lan_stats.fcs_err = -1;
264 DP_INFO(edev, "Statistics request type %d not supported\n",
270 qede_hw_err_notify(struct ecore_hwfn *p_hwfn, enum ecore_hw_err_type err_type)
275 case ECORE_HW_ERR_FAN_FAIL:
276 strcpy(err_str, "Fan Failure");
278 case ECORE_HW_ERR_MFW_RESP_FAIL:
279 strcpy(err_str, "MFW Response Failure");
281 case ECORE_HW_ERR_HW_ATTN:
282 strcpy(err_str, "HW Attention");
284 case ECORE_HW_ERR_DMAE_FAIL:
285 strcpy(err_str, "DMAE Failure");
287 case ECORE_HW_ERR_RAMROD_FAIL:
288 strcpy(err_str, "Ramrod Failure");
290 case ECORE_HW_ERR_FW_ASSERT:
291 strcpy(err_str, "FW Assertion");
294 strcpy(err_str, "Unknown");
297 DP_ERR(p_hwfn, "HW error occurred [%s]\n", err_str);
298 ecore_int_attn_clr_enable(p_hwfn->p_dev, true);
301 u32 qede_crc32(u32 crc, u8 *ptr, u32 length)
307 for (i = 0; i < 8; i++)
308 crc = (crc >> 1) ^ ((crc & 1) ? 0xedb88320 : 0);