1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2014-2018 Chelsio Communications.
6 #ifndef _CXGBE_COMPAT_H_
7 #define _CXGBE_COMPAT_H_
14 #include <rte_common.h>
15 #include <rte_memcpy.h>
16 #include <rte_byteorder.h>
17 #include <rte_cycles.h>
18 #include <rte_spinlock.h>
23 extern int cxgbe_logtype;
25 #define dev_printf(level, fmt, ...) \
26 rte_log(RTE_LOG_ ## level, cxgbe_logtype, \
27 "rte_cxgbe_pmd: " fmt, ##__VA_ARGS__)
29 #define dev_err(x, fmt, ...) dev_printf(ERR, fmt, ##__VA_ARGS__)
30 #define dev_info(x, fmt, ...) dev_printf(INFO, fmt, ##__VA_ARGS__)
31 #define dev_warn(x, fmt, ...) dev_printf(WARNING, fmt, ##__VA_ARGS__)
33 #ifdef RTE_LIBRTE_CXGBE_DEBUG
34 #define dev_debug(x, fmt, ...) dev_printf(INFO, fmt, ##__VA_ARGS__)
36 #define dev_debug(x, fmt, ...) do { } while (0)
39 #ifdef RTE_LIBRTE_CXGBE_DEBUG_REG
40 #define CXGBE_DEBUG_REG(x, fmt, ...) \
41 dev_printf(INFO, "REG:" fmt, ##__VA_ARGS__)
43 #define CXGBE_DEBUG_REG(x, fmt, ...) do { } while (0)
46 #ifdef RTE_LIBRTE_CXGBE_DEBUG_MBOX
47 #define CXGBE_DEBUG_MBOX(x, fmt, ...) \
48 dev_printf(INFO, "MBOX:" fmt, ##__VA_ARGS__)
50 #define CXGBE_DEBUG_MBOX(x, fmt, ...) do { } while (0)
53 #ifdef RTE_LIBRTE_CXGBE_DEBUG_TX
54 #define CXGBE_DEBUG_TX(x, fmt, ...) \
55 dev_printf(INFO, "TX:" fmt, ##__VA_ARGS__)
57 #define CXGBE_DEBUG_TX(x, fmt, ...) do { } while (0)
60 #ifdef RTE_LIBRTE_CXGBE_DEBUG_RX
61 #define CXGBE_DEBUG_RX(x, fmt, ...) \
62 dev_printf(INFO, "RX:" fmt, ##__VA_ARGS__)
64 #define CXGBE_DEBUG_RX(x, fmt, ...) do { } while (0)
67 #ifdef RTE_LIBRTE_CXGBE_DEBUG
68 #define CXGBE_FUNC_TRACE() \
69 dev_printf(DEBUG, "CXGBE trace: %s\n", __func__)
71 #define CXGBE_FUNC_TRACE() do { } while (0)
74 #define pr_err(fmt, ...) dev_err(0, fmt, ##__VA_ARGS__)
75 #define pr_warn(fmt, ...) dev_warn(0, fmt, ##__VA_ARGS__)
76 #define pr_info(fmt, ...) dev_info(0, fmt, ##__VA_ARGS__)
77 #define BUG() pr_err("BUG at %s:%d", __func__, __LINE__)
79 #define ASSERT(x) do {\
81 rte_panic("CXGBE: x"); \
83 #define BUG_ON(x) ASSERT(!(x))
86 #define WARN_ON(x) do { \
89 pr_warn("WARN_ON: \"" #x "\" at %s:%d\n", __func__, __LINE__); \
96 #define BIT(n) (1 << (n))
99 #define L1_CACHE_SHIFT 6
100 #define L1_CACHE_BYTES BIT(L1_CACHE_SHIFT)
102 #define PAGE_SHIFT 12
103 #define CXGBE_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
104 #define PTR_ALIGN(p, a) ((typeof(p))CXGBE_ALIGN((unsigned long)(p), (a)))
107 #define ETHER_ADDR_LEN 6
109 #define rmb() rte_rmb() /* dpdk rte provided rmb */
110 #define wmb() rte_wmb() /* dpdk rte provided wmb */
114 typedef uint16_t u16;
115 typedef uint32_t u32;
117 typedef uint64_t u64;
119 typedef uint64_t dma_addr_t;
122 #define __le16 uint16_t
125 #define __le32 uint32_t
128 #define __le64 uint64_t
131 #define __be16 uint16_t
134 #define __be32 uint32_t
137 #define __be64 uint64_t
143 #define __u16 uint16_t
146 #define __u32 uint32_t
149 #define __u64 uint64_t
158 #define min(a, b) RTE_MIN(a, b)
162 #define max(a, b) RTE_MAX(a, b)
166 * round up val _p to a power of 2 size _s
168 #define cxgbe_roundup(_p, _s) (((unsigned long)(_p) + (_s - 1)) & ~(_s - 1))
171 #define container_of(ptr, type, member) ({ \
172 typeof(((type *)0)->member)(*__mptr) = (ptr); \
173 (type *)((char *)__mptr - offsetof(type, member)); })
176 #define ARRAY_SIZE(arr) RTE_DIM(arr)
178 #define cpu_to_be16(o) rte_cpu_to_be_16(o)
179 #define cpu_to_be32(o) rte_cpu_to_be_32(o)
180 #define cpu_to_be64(o) rte_cpu_to_be_64(o)
181 #define cpu_to_le32(o) rte_cpu_to_le_32(o)
182 #define be16_to_cpu(o) rte_be_to_cpu_16(o)
183 #define be32_to_cpu(o) rte_be_to_cpu_32(o)
184 #define be64_to_cpu(o) rte_be_to_cpu_64(o)
185 #define le32_to_cpu(o) rte_le_to_cpu_32(o)
188 #define ntohs(o) be16_to_cpu(o)
192 #define ntohl(o) be32_to_cpu(o)
196 #define htons(o) cpu_to_be16(o)
200 #define htonl(o) cpu_to_be32(o)
204 typedef char *caddr_t;
207 #define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
208 #define DELAY(x) rte_delay_us(x)
209 #define udelay(x) DELAY(x)
210 #define msleep(x) DELAY(1000 * (x))
211 #define usleep_range(min, max) msleep(DIV_ROUND_UP(min, 1000))
213 static inline uint8_t hweight32(uint32_t word32)
215 uint32_t res = word32 - ((word32 >> 1) & 0x55555555);
217 res = (res & 0x33333333) + ((res >> 2) & 0x33333333);
218 res = (res + (res >> 4)) & 0x0F0F0F0F;
219 res = res + (res >> 8);
220 return (res + (res >> 16)) & 0x000000FF;
225 * cxgbe_fls - find last (most-significant) bit set
226 * @x: the word to search
228 * This is defined the same way as ffs.
229 * Note cxgbe_fls(0) = 0, cxgbe_fls(1) = 1, cxgbe_fls(0x80000000) = 32.
231 static inline int cxgbe_fls(int x)
233 return x ? sizeof(x) * 8 - __builtin_clz(x) : 0;
236 static inline unsigned long ilog2(unsigned long n)
241 if (n & ~((1 << 8) - 1)) {
247 if (n & ~((1 << 4) - 1)) {
263 static inline void writel(unsigned int val, volatile void __iomem *addr)
265 rte_write32(val, addr);
268 static inline void writeq(u64 val, volatile void __iomem *addr)
271 writel(val >> 32, (void *)((uintptr_t)addr + 4));
274 static inline void writel_relaxed(unsigned int val, volatile void __iomem *addr)
276 rte_write32_relaxed(val, addr);
280 * Multiplies an integer by a fraction, while avoiding unnecessary
281 * overflow or loss of precision.
283 static inline unsigned int mult_frac(unsigned int x, unsigned int numer,
286 unsigned int quot = x / denom;
287 unsigned int rem = x % denom;
289 return (quot * numer) + ((rem * numer) / denom);
291 #endif /* _CXGBE_COMPAT_H_ */