xref: /freebsd/sys/dev/irdma/osdep.h (revision 9768746b)
1 /*-
2  * SPDX-License-Identifier: GPL-2.0 or Linux-OpenIB
3  *
4  * Copyright (c) 2021 - 2022 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 /*$FreeBSD$*/
35 
36 #ifndef _ICRDMA_OSDEP_H_
37 #define _ICRDMA_OSDEP_H_
38 
39 #include <linux/dma-mapping.h>
40 #include <linux/etherdevice.h>
41 #include <linux/fs.h>
42 #include <linux/if_ether.h>
43 #include <linux/interrupt.h>
44 #include <linux/io.h>
45 #include <linux/jhash.h>
46 #include <linux/list.h>
47 #include <linux/log2.h>
48 #include <linux/mutex.h>
49 #include <linux/pci.h>
50 #include <linux/random.h>
51 #include <linux/spinlock.h>
52 #include <linux/timer.h>
53 #include <linux/workqueue.h>
54 
55 #include <sys/bus.h>
56 #include <machine/bus.h>
57 
58 #define ATOMIC atomic_t
59 #define IOMEM
60 #define IRDMA_NTOHS(a) ntohs(a)
61 #define MAKEMASK(m, s) ((m) << (s))
62 #define OS_TIMER timer_list
63 #define DECLARE_HASHTABLE(n, b) struct hlist_head (n)[1 << (b)]
64 #define HASH_MIN(v, b) (sizeof(v) <= 4 ? hash_32(v, b) : hash_long(v, b))
65 #define HASH_FOR_EACH_RCU(n, b, o, m) 	for ((b) = 0, o = NULL; o == NULL && (b) < ARRAY_SIZE(n);\
66 			(b)++)\
67 		hlist_for_each_entry_rcu(o, &n[(b)], m)
68 #define HASH_FOR_EACH_POSSIBLE_RCU(n, o, m, k)		\
69 	hlist_for_each_entry_rcu(o, &n[jhash(&k, sizeof(k), 0) >> (32 - ilog2(ARRAY_SIZE(n)))],\
70 		m)
71 #define HASH_FOR_EACH_POSSIBLE(n, o, m, k)		\
72 	hlist_for_each_entry(o, &n[jhash(&k, sizeof(k), 0) >> (32 - ilog2(ARRAY_SIZE(n)))],\
73 		m)
74 #define HASH_ADD_RCU(h, n, k) \
75 	hlist_add_head_rcu(n, &h[jhash(&k, sizeof(k), 0) >> (32 - ilog2(ARRAY_SIZE(h)))])
76 #define HASH_DEL_RCU(tbl, node) hlist_del_rcu(node)
77 #define HASH_ADD(h, n, k) \
78 	hlist_add_head(n, &h[jhash(&k, sizeof(k), 0) >> (32 - ilog2(ARRAY_SIZE(h)))])
79 #define HASH_DEL(tbl, node) hlist_del(node)
80 
81 #define WQ_UNBOUND_MAX_ACTIVE max_t(int, 512, num_possible_cpus() * 4)
82 #define if_addr_rlock(x)
83 #define if_addr_runlock(x)
84 
85 /* constants */
86 #define STATS_TIMER_DELAY 60000
87 
88 /* a couple of linux size defines */
89 #define SZ_128     128
90 #define SPEED_1000     1000
91 #define SPEED_10000   10000
92 #define SPEED_20000   20000
93 #define SPEED_25000   25000
94 #define SPEED_40000   40000
95 #define SPEED_100000 100000
96 
97 #define irdma_mb()	mb()
98 #define irdma_wmb()	wmb()
99 #define irdma_get_virt_to_phy vtophys
100 
101 #define __aligned_u64 uint64_t __aligned(8)
102 
103 #define VLAN_PRIO_SHIFT 13
104 #if __FreeBSD_version < 1400000
105 #define IB_USER_VERBS_EX_CMD_MODIFY_QP IB_USER_VERBS_CMD_MODIFY_QP
106 #endif
107 
108 /*
109  * debug definition section
110  */
111 #define irdma_print(S, ...) printf("%s:%d "S, __FUNCTION__, __LINE__, ##__VA_ARGS__)
112 #define irdma_debug_buf(dev, mask, desc, buf, size)							\
113 do {													\
114 	u32    i;											\
115 	if (!((mask) & (dev)->debug_mask)) {								\
116 		break;											\
117 	}												\
118 	irdma_debug(dev, mask, "%s\n", desc);								\
119 	irdma_debug(dev, mask, "starting address virt=%p phy=%lxh\n", buf, irdma_get_virt_to_phy(buf));	\
120 	for (i = 0; i < size ; i += 8)									\
121 		irdma_debug(dev, mask, "index %03d val: %016lx\n", i, ((unsigned long *)buf)[i / 8]);	\
122 } while(0)
123 
124 #define irdma_debug(h, m, s, ...)					\
125 do {									\
126 	if (!(h)) {							\
127 		if ((m) == IRDMA_DEBUG_INIT)				\
128 			printf("irdma INIT " s, ##__VA_ARGS__);	\
129 	} else if (((m) & (h)->debug_mask)) {				\
130 		printf("irdma " s, ##__VA_ARGS__);			\
131 	} 								\
132 } while (0)
133 #define irdma_dev_err(a, b, ...) printf(b, ##__VA_ARGS__)
134 #define irdma_dev_warn(a, b, ...) printf(b, ##__VA_ARGS__) /*dev_warn(a, b)*/
135 #define irdma_dev_info(a, b, ...) printf(b, ##__VA_ARGS__)
136 #define irdma_pr_warn printf
137 #define ibdev_err(ibdev, fmt, ...)  printf("%s:"fmt, (ibdev)->name, ##__VA_ARGS__)
138 
139 #define dump_struct(s, sz, name)	\
140 do {				\
141 	unsigned char *a;	\
142 	printf("%s %u", (name), (unsigned int)(sz));				\
143 	for (a = (unsigned char*)(s); a < (unsigned char *)(s) + (sz) ; a ++) {	\
144 		if ((u64)a % 8 == 0)		\
145 			printf("\n%p ", a);	\
146 		printf("%2x ", *a);		\
147 	}			\
148 	printf("\n");		\
149 }while(0)
150 
151 /*
152  * debug definition end
153  */
154 
155 typedef __be16 BE16;
156 typedef __be32 BE32;
157 typedef uintptr_t irdma_uintptr;
158 
159 struct irdma_hw;
160 struct irdma_pci_f;
161 struct irdma_sc_dev;
162 struct irdma_sc_qp;
163 struct irdma_sc_vsi;
164 
165 struct irdma_task_arg {
166 	struct irdma_device *iwdev;
167 	struct ice_rdma_peer *peer;
168 	atomic_t open_ongoing;
169 	atomic_t close_ongoing;
170 };
171 
172 struct irdma_dev_ctx {
173 	bus_space_tag_t mem_bus_space_tag;
174 	bus_space_handle_t mem_bus_space_handle;
175 	bus_size_t mem_bus_space_size;
176 	void *dev;
177 	struct irdma_task_arg task_arg;
178 };
179 
180 #define irdma_pr_info(fmt, args ...) printf("%s: WARN "fmt, __func__, ## args)
181 #define irdma_pr_err(fmt, args ...) printf("%s: ERR "fmt, __func__, ## args)
182 #define irdma_memcpy(a, b, c)  memcpy((a), (b), (c))
183 #define irdma_memset(a, b, c)  memset((a), (b), (c))
184 #define irdma_usec_delay(x) DELAY(x)
185 #define mdelay(x) DELAY((x) * 1000)
186 
187 #define rt_tos2priority(tos) (tos >> 5)
188 #define ah_attr_to_dmac(attr) ((attr).dmac)
189 #define kc_ib_modify_qp_is_ok(cur_state, next_state, type, mask, ll) \
190         ib_modify_qp_is_ok(cur_state, next_state, type, mask)
191 #define kc_rdma_gid_attr_network_type(sgid_attr, gid_type, gid) \
192         ib_gid_to_network_type(gid_type, gid)
193 #define irdma_del_timer_compat(tt) del_timer((tt))
194 #define IRDMA_TAILQ_FOREACH CK_STAILQ_FOREACH
195 #define IRDMA_TAILQ_FOREACH_SAFE CK_STAILQ_FOREACH_SAFE
196 #define between(a, b, c) (bool)(c-a >= b-a)
197 
198 #define rd32(a, reg)            irdma_rd32((a)->dev_context, (reg))
199 #define wr32(a, reg, value)     irdma_wr32((a)->dev_context, (reg), (value))
200 
201 #define rd64(a, reg)            irdma_rd64((a)->dev_context, (reg))
202 #define wr64(a, reg, value)     irdma_wr64((a)->dev_context, (reg), (value))
203 #define db_wr32(value, a)	writel((value), (a))
204 
205 void *hw_to_dev(struct irdma_hw *hw);
206 
207 struct irdma_dma_mem {
208 	void  *va;
209 	u64    pa;
210 	bus_dma_tag_t tag;
211 	bus_dmamap_t map;
212 	bus_dma_segment_t seg;
213 	bus_size_t size;
214 	int    nseg;
215 	int    flags;
216 };
217 
218 struct irdma_virt_mem {
219 	void  *va;
220 	u32    size;
221 };
222 
223 struct irdma_dma_info {
224 	dma_addr_t *dmaaddrs;
225 };
226 
227 struct list_head;
228 u32 irdma_rd32(struct irdma_dev_ctx *dev_ctx, u32 reg);
229 void irdma_wr32(struct irdma_dev_ctx *dev_ctx, u32 reg, u32 value);
230 u64 irdma_rd64(struct irdma_dev_ctx *dev_ctx, u32 reg);
231 void irdma_wr64(struct irdma_dev_ctx *dev_ctx, u32 reg, u64 value);
232 
233 void irdma_term_modify_qp(struct irdma_sc_qp *qp, u8 next_state, u8 term, u8 term_len);
234 void irdma_terminate_done(struct irdma_sc_qp *qp, int timeout_occurred);
235 void irdma_terminate_start_timer(struct irdma_sc_qp *qp);
236 void irdma_terminate_del_timer(struct irdma_sc_qp *qp);
237 
238 void irdma_hw_stats_start_timer(struct irdma_sc_vsi *vsi);
239 void irdma_hw_stats_stop_timer(struct irdma_sc_vsi *vsi);
240 void irdma_send_ieq_ack(struct irdma_sc_qp *qp);
241 
242 u8* irdma_get_hw_addr(void *par);
243 
244 void irdma_unmap_vm_page_list(struct irdma_hw *hw, u64 *pg_arr, u32 pg_cnt);
245 int irdma_map_vm_page_list(struct irdma_hw *hw, void *va,
246 			   u64 *pg_arr, u32 pg_cnt);
247 
248 struct ib_device *irdma_get_ibdev(struct irdma_sc_dev *dev);
249 
250 #endif /* _ICRDMA_OSDEP_H_ */
251