xref: /freebsd/sys/dev/irdma/osdep.h (revision 4b9d6057)
1 /*-
2  * SPDX-License-Identifier: GPL-2.0 or Linux-OpenIB
3  *
4  * Copyright (c) 2021 - 2023 Intel Corporation
5  *
6  * This software is available to you under a choice of one of two
7  * licenses.  You may choose to be licensed under the terms of the GNU
8  * General Public License (GPL) Version 2, available from the file
9  * COPYING in the main directory of this source tree, or the
10  * OpenFabrics.org BSD license below:
11  *
12  *   Redistribution and use in source and binary forms, with or
13  *   without modification, are permitted provided that the following
14  *   conditions are met:
15  *
16  *    - Redistributions of source code must retain the above
17  *	copyright notice, this list of conditions and the following
18  *	disclaimer.
19  *
20  *    - Redistributions in binary form must reproduce the above
21  *	copyright notice, this list of conditions and the following
22  *	disclaimer in the documentation and/or other materials
23  *	provided with the distribution.
24  *
25  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32  * SOFTWARE.
33  */
34 
35 #ifndef _ICRDMA_OSDEP_H_
36 #define _ICRDMA_OSDEP_H_
37 
38 #include <linux/dma-mapping.h>
39 #include <linux/etherdevice.h>
40 #include <linux/fs.h>
41 #include <linux/if_ether.h>
42 #include <linux/interrupt.h>
43 #include <linux/io.h>
44 #include <linux/jhash.h>
45 #include <linux/list.h>
46 #include <linux/log2.h>
47 #include <linux/mutex.h>
48 #include <linux/pci.h>
49 #include <linux/random.h>
50 #include <linux/spinlock.h>
51 #include <linux/timer.h>
52 #include <linux/workqueue.h>
53 #include <linux/atomic.h>
54 
55 #include <sys/bus.h>
56 #include <machine/bus.h>
57 
58 #define IOMEM
59 #define IRDMA_NTOHS(a) ntohs(a)
60 #define MAKEMASK(m, s) ((m) << (s))
61 #define OS_TIMER timer_list
62 #define DECLARE_HASHTABLE(n, b) struct hlist_head (n)[1 << (b)]
63 #define HASH_MIN(v, b) (sizeof(v) <= 4 ? hash_32(v, b) : hash_long(v, b))
64 #define HASH_FOR_EACH_RCU(n, b, o, m) 	for ((b) = 0, o = NULL; o == NULL && (b) < ARRAY_SIZE(n);\
65 			(b)++)\
66 		hlist_for_each_entry_rcu(o, &n[(b)], m)
67 #define HASH_FOR_EACH_POSSIBLE_RCU(n, o, m, k)		\
68 	hlist_for_each_entry_rcu(o, &n[jhash(&k, sizeof(k), 0) >> (32 - ilog2(ARRAY_SIZE(n)))],\
69 		m)
70 #define HASH_FOR_EACH_POSSIBLE(n, o, m, k)		\
71 	hlist_for_each_entry(o, &n[jhash(&k, sizeof(k), 0) >> (32 - ilog2(ARRAY_SIZE(n)))],\
72 		m)
73 #define HASH_ADD_RCU(h, n, k) \
74 	hlist_add_head_rcu(n, &h[jhash(&k, sizeof(k), 0) >> (32 - ilog2(ARRAY_SIZE(h)))])
75 #define HASH_DEL_RCU(tbl, node) hlist_del_rcu(node)
76 #define HASH_ADD(h, n, k) \
77 	hlist_add_head(n, &h[jhash(&k, sizeof(k), 0) >> (32 - ilog2(ARRAY_SIZE(h)))])
78 #define HASH_DEL(tbl, node) hlist_del(node)
79 
80 #define WQ_UNBOUND_MAX_ACTIVE max_t(int, 512, num_possible_cpus() * 4)
81 #define if_addr_rlock(x)
82 #define if_addr_runlock(x)
83 
84 /* constants */
85 #define STATS_TIMER_DELAY 60000
86 
87 /* a couple of linux size defines */
88 #define SZ_128     128
89 #define SPEED_1000     1000
90 #define SPEED_10000   10000
91 #define SPEED_20000   20000
92 #define SPEED_25000   25000
93 #define SPEED_40000   40000
94 #define SPEED_100000 100000
95 
96 #define irdma_mb()	mb()
97 #define irdma_wmb()	wmb()
98 #ifndef smp_mb
99 #define smp_mb()	mb()
100 #endif
101 #define irdma_get_virt_to_phy vtophys
102 
103 #define __aligned_u64 uint64_t __aligned(8)
104 
105 #define VLAN_PRIO_SHIFT 13
106 #if __FreeBSD_version < 1400000
107 #define IB_USER_VERBS_EX_CMD_MODIFY_QP IB_USER_VERBS_CMD_MODIFY_QP
108 #endif
109 
110 /*
111  * debug definition section
112  */
113 #define irdma_print(S, ...) printf("%s:%d "S, __FUNCTION__, __LINE__, ##__VA_ARGS__)
114 #define irdma_debug_buf(dev, mask, desc, buf, size)							\
115 do {													\
116 	u32 i;												\
117 	if (!((mask) & (dev)->debug_mask)) {								\
118 		break;											\
119 	}												\
120 	irdma_debug(dev, mask, "%s\n", desc);								\
121 	irdma_debug(dev, mask, "starting address virt=%p phy=%lxh\n", buf, irdma_get_virt_to_phy(buf));	\
122 	for (i = 0; i < size ; i += 8)									\
123 		irdma_debug(dev, mask, "index %03d val: %016lx\n", i, ((unsigned long *)(buf))[i / 8]);	\
124 } while(0)
125 
126 #define irdma_debug(h, m, s, ...)				\
127 do {								\
128 	if (!(h)) {						\
129 		if ((m) == IRDMA_DEBUG_INIT)			\
130 			printf("irdma INIT " s, ##__VA_ARGS__);	\
131 	} else if (((m) & (h)->debug_mask)) {			\
132 		printf("irdma " s, ##__VA_ARGS__);		\
133 	} 							\
134 } while (0)
135 #define irdma_dev_err(ibdev, fmt, ...) \
136 	pr_err("%s:%s:%d ERR "fmt, (ibdev)->name, __func__, __LINE__, ##__VA_ARGS__)
137 #define irdma_dev_warn(ibdev, fmt, ...) \
138 	pr_warn("%s:%s:%d WARN "fmt, (ibdev)->name, __func__, __LINE__, ##__VA_ARGS__)
139 #define irdma_dev_info(a, b, ...) printf(b, ##__VA_ARGS__)
140 #define irdma_pr_warn printf
141 
142 #define IRDMA_PRINT_IP6(ip6) \
143 	((u32*)ip6)[0], ((u32*)ip6)[1], ((u32*)ip6)[2], ((u32*)ip6)[3]
144 
145 /*
146  * debug definition end
147  */
148 
149 typedef __be16 BE16;
150 typedef __be32 BE32;
151 typedef uintptr_t irdma_uintptr;
152 
153 struct irdma_hw;
154 struct irdma_pci_f;
155 struct irdma_sc_dev;
156 struct irdma_sc_qp;
157 struct irdma_sc_vsi;
158 
159 struct irdma_task_arg {
160 	struct irdma_device *iwdev;
161 	struct ice_rdma_peer *peer;
162 	atomic_t open_ongoing;
163 	atomic_t close_ongoing;
164 };
165 
166 struct irdma_dev_ctx {
167 	bus_space_tag_t mem_bus_space_tag;
168 	bus_space_handle_t mem_bus_space_handle;
169 	bus_size_t mem_bus_space_size;
170 	void *dev;
171 	struct irdma_task_arg task_arg;
172 	atomic_t event_rfcnt;
173 };
174 
175 #define irdma_pr_info(fmt, args ...) printf("%s: WARN "fmt, __func__, ## args)
176 #define irdma_pr_err(fmt, args ...) printf("%s: ERR "fmt, __func__, ## args)
177 #define irdma_memcpy(a, b, c)  memcpy((a), (b), (c))
178 #define irdma_memset(a, b, c)  memset((a), (b), (c))
179 #define irdma_usec_delay(x) DELAY(x)
180 #define mdelay(x) DELAY((x) * 1000)
181 
182 #define rt_tos2priority(tos) (tos >> 5)
183 #define ah_attr_to_dmac(attr) ((attr).dmac)
184 #define irdma_del_timer_compat(tt) del_timer((tt))
185 #define IRDMA_TAILQ_FOREACH CK_STAILQ_FOREACH
186 #define IRDMA_TAILQ_FOREACH_SAFE CK_STAILQ_FOREACH_SAFE
187 #define between(a, b, c) (bool)(c-a >= b-a)
188 
189 #define rd32(a, reg)		irdma_rd32((a)->dev_context, (reg))
190 #define wr32(a, reg, value)	irdma_wr32((a)->dev_context, (reg), (value))
191 
192 #define rd64(a, reg)		irdma_rd64((a)->dev_context, (reg))
193 #define wr64(a, reg, value)	irdma_wr64((a)->dev_context, (reg), (value))
194 #define db_wr32(value, a)	writel((value), (a))
195 
196 void *hw_to_dev(struct irdma_hw *hw);
197 
198 struct irdma_dma_mem {
199 	void *va;
200 	u64 pa;
201 	bus_dma_tag_t tag;
202 	bus_dmamap_t map;
203 	bus_dma_segment_t seg;
204 	bus_size_t size;
205 	int nseg;
206 	int flags;
207 };
208 
209 struct irdma_virt_mem {
210 	void *va;
211 	u32 size;
212 };
213 
214 struct irdma_dma_info {
215 	dma_addr_t *dmaaddrs;
216 };
217 
218 struct list_head;
219 u32 irdma_rd32(struct irdma_dev_ctx *dev_ctx, u32 reg);
220 void irdma_wr32(struct irdma_dev_ctx *dev_ctx, u32 reg, u32 value);
221 u64 irdma_rd64(struct irdma_dev_ctx *dev_ctx, u32 reg);
222 void irdma_wr64(struct irdma_dev_ctx *dev_ctx, u32 reg, u64 value);
223 
224 void irdma_term_modify_qp(struct irdma_sc_qp *qp, u8 next_state, u8 term, u8 term_len);
225 void irdma_terminate_done(struct irdma_sc_qp *qp, int timeout_occurred);
226 void irdma_terminate_start_timer(struct irdma_sc_qp *qp);
227 void irdma_terminate_del_timer(struct irdma_sc_qp *qp);
228 
229 void irdma_hw_stats_start_timer(struct irdma_sc_vsi *vsi);
230 void irdma_hw_stats_stop_timer(struct irdma_sc_vsi *vsi);
231 void irdma_send_ieq_ack(struct irdma_sc_qp *qp);
232 
233 u8* irdma_get_hw_addr(void *par);
234 
235 void irdma_unmap_vm_page_list(struct irdma_hw *hw, u64 *pg_arr, u32 pg_cnt);
236 int irdma_map_vm_page_list(struct irdma_hw *hw, void *va,
237 			   u64 *pg_arr, u32 pg_cnt);
238 
239 struct ib_device *to_ibdev(struct irdma_sc_dev *dev);
240 
241 #endif /* _ICRDMA_OSDEP_H_ */
242