2 * Copyright (c) 2016 QLogic Corporation.
6 * See LICENSE.qede_pmd for copyright and licensing details.
9 #include <rte_memzone.h>
10 #include <rte_errno.h>
15 #include "ecore_iov_api.h"
16 #include "ecore_mcp_api.h"
17 #include "ecore_l2_api.h"
20 unsigned long qede_log2_align(unsigned long n)
22 unsigned long ret = n ? 1 : 0;
23 unsigned long _n = n >> 1;
36 u32 qede_osal_log2(u32 val)
46 inline void qede_set_bit(u32 nr, unsigned long *addr)
48 __sync_fetch_and_or(addr, (1UL << nr));
51 inline void qede_clr_bit(u32 nr, unsigned long *addr)
53 __sync_fetch_and_and(addr, ~(1UL << nr));
56 inline bool qede_test_bit(u32 nr, unsigned long *addr)
61 res = ((*addr) & (1UL << nr)) != 0;
66 static inline u32 qede_ffb(unsigned long word)
68 unsigned long first_bit;
70 first_bit = __builtin_ffsl(word);
71 return first_bit ? (first_bit - 1) : OSAL_BITS_PER_UL;
74 inline u32 qede_find_first_bit(unsigned long *addr, u32 limit)
78 OSAL_BUILD_BUG_ON(!limit);
79 nwords = (limit - 1) / OSAL_BITS_PER_UL + 1;
80 for (i = 0; i < nwords; i++)
84 return (i == nwords) ? limit : i * OSAL_BITS_PER_UL + qede_ffb(addr[i]);
87 static inline u32 qede_ffz(unsigned long word)
89 unsigned long first_zero;
91 first_zero = __builtin_ffsl(~word);
92 return first_zero ? (first_zero - 1) : OSAL_BITS_PER_UL;
95 inline u32 qede_find_first_zero_bit(unsigned long *addr, u32 limit)
99 OSAL_BUILD_BUG_ON(!limit);
100 nwords = (limit - 1) / OSAL_BITS_PER_UL + 1;
101 for (i = 0; i < nwords; i++)
104 return (i == nwords) ? limit : i * OSAL_BITS_PER_UL + qede_ffz(addr[i]);
107 void qede_vf_fill_driver_data(struct ecore_hwfn *hwfn,
108 __rte_unused struct vf_pf_resc_request *resc_req,
109 struct ecore_vf_acquire_sw_info *vf_sw_info)
111 vf_sw_info->os_type = VFPF_ACQUIRE_OS_LINUX_USERSPACE;
112 vf_sw_info->override_fw_version = 1;
115 void *osal_dma_alloc_coherent(struct ecore_dev *p_dev,
116 dma_addr_t *phys, size_t size)
118 const struct rte_memzone *mz;
119 char mz_name[RTE_MEMZONE_NAMESIZE];
120 uint32_t core_id = rte_lcore_id();
121 unsigned int socket_id;
123 OSAL_MEM_ZERO(mz_name, sizeof(*mz_name));
124 snprintf(mz_name, sizeof(mz_name) - 1, "%lx",
125 (unsigned long)rte_get_timer_cycles());
126 if (core_id == (unsigned int)LCORE_ID_ANY)
128 socket_id = rte_lcore_to_socket_id(core_id);
129 mz = rte_memzone_reserve_aligned(mz_name, size,
130 socket_id, 0, RTE_CACHE_LINE_SIZE);
132 DP_ERR(p_dev, "Unable to allocate DMA memory "
133 "of size %zu bytes - %s\n",
134 size, rte_strerror(rte_errno));
138 *phys = mz->phys_addr;
139 DP_VERBOSE(p_dev, ECORE_MSG_PROBE,
140 "size=%zu phys=0x%" PRIx64 " virt=%p on socket=%u\n",
141 mz->len, mz->phys_addr, mz->addr, socket_id);
145 void *osal_dma_alloc_coherent_aligned(struct ecore_dev *p_dev,
146 dma_addr_t *phys, size_t size, int align)
148 const struct rte_memzone *mz;
149 char mz_name[RTE_MEMZONE_NAMESIZE];
150 uint32_t core_id = rte_lcore_id();
151 unsigned int socket_id;
153 OSAL_MEM_ZERO(mz_name, sizeof(*mz_name));
154 snprintf(mz_name, sizeof(mz_name) - 1, "%lx",
155 (unsigned long)rte_get_timer_cycles());
156 if (core_id == (unsigned int)LCORE_ID_ANY)
158 socket_id = rte_lcore_to_socket_id(core_id);
159 mz = rte_memzone_reserve_aligned(mz_name, size, socket_id, 0, align);
161 DP_ERR(p_dev, "Unable to allocate DMA memory "
162 "of size %zu bytes - %s\n",
163 size, rte_strerror(rte_errno));
167 *phys = mz->phys_addr;
168 DP_VERBOSE(p_dev, ECORE_MSG_PROBE,
169 "aligned memory size=%zu phys=0x%" PRIx64 " virt=%p core=%d\n",
170 mz->len, mz->phys_addr, mz->addr, core_id);
174 #ifdef CONFIG_ECORE_ZIPPED_FW
175 u32 qede_unzip_data(struct ecore_hwfn *p_hwfn, u32 input_len,
176 u8 *input_buf, u32 max_size, u8 *unzip_buf)
180 p_hwfn->stream->next_in = input_buf;
181 p_hwfn->stream->avail_in = input_len;
182 p_hwfn->stream->next_out = unzip_buf;
183 p_hwfn->stream->avail_out = max_size;
185 rc = inflateInit2(p_hwfn->stream, MAX_WBITS);
189 "zlib init failed, rc = %d\n", rc);
193 rc = inflate(p_hwfn->stream, Z_FINISH);
194 inflateEnd(p_hwfn->stream);
196 if (rc != Z_OK && rc != Z_STREAM_END) {
198 "FW unzip error: %s, rc=%d\n", p_hwfn->stream->msg,
203 return p_hwfn->stream->total_out / 4;
208 qede_get_mcp_proto_stats(struct ecore_dev *edev,
209 enum ecore_mcp_protocol_type type,
210 union ecore_mcp_protocol_stats *stats)
212 struct ecore_eth_stats lan_stats;
214 if (type == ECORE_MCP_LAN_STATS) {
215 ecore_get_vport_stats(edev, &lan_stats);
216 stats->lan_stats.ucast_rx_pkts = lan_stats.rx_ucast_pkts;
217 stats->lan_stats.ucast_tx_pkts = lan_stats.tx_ucast_pkts;
218 stats->lan_stats.fcs_err = -1;
220 DP_INFO(edev, "Statistics request type %d not supported\n",