xref: /linux/drivers/net/ethernet/mellanox/mlxsw/pci.c (revision 3bdab16c55f57a24245c97d707241dd9b48d1a91)
1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /* Copyright (c) 2015-2018 Mellanox Technologies. All rights reserved */
3 
4 #include <linux/kernel.h>
5 #include <linux/module.h>
6 #include <linux/export.h>
7 #include <linux/err.h>
8 #include <linux/device.h>
9 #include <linux/pci.h>
10 #include <linux/interrupt.h>
11 #include <linux/wait.h>
12 #include <linux/types.h>
13 #include <linux/skbuff.h>
14 #include <linux/if_vlan.h>
15 #include <linux/log2.h>
16 #include <linux/string.h>
17 
18 #include "pci_hw.h"
19 #include "pci.h"
20 #include "core.h"
21 #include "cmd.h"
22 #include "port.h"
23 #include "resources.h"
24 
25 #define mlxsw_pci_write32(mlxsw_pci, reg, val) \
26 	iowrite32be(val, (mlxsw_pci)->hw_addr + (MLXSW_PCI_ ## reg))
27 #define mlxsw_pci_read32(mlxsw_pci, reg) \
28 	ioread32be((mlxsw_pci)->hw_addr + (MLXSW_PCI_ ## reg))
29 
30 enum mlxsw_pci_queue_type {
31 	MLXSW_PCI_QUEUE_TYPE_SDQ,
32 	MLXSW_PCI_QUEUE_TYPE_RDQ,
33 	MLXSW_PCI_QUEUE_TYPE_CQ,
34 	MLXSW_PCI_QUEUE_TYPE_EQ,
35 };
36 
37 #define MLXSW_PCI_QUEUE_TYPE_COUNT	4
38 
39 static const u16 mlxsw_pci_doorbell_type_offset[] = {
40 	MLXSW_PCI_DOORBELL_SDQ_OFFSET,	/* for type MLXSW_PCI_QUEUE_TYPE_SDQ */
41 	MLXSW_PCI_DOORBELL_RDQ_OFFSET,	/* for type MLXSW_PCI_QUEUE_TYPE_RDQ */
42 	MLXSW_PCI_DOORBELL_CQ_OFFSET,	/* for type MLXSW_PCI_QUEUE_TYPE_CQ */
43 	MLXSW_PCI_DOORBELL_EQ_OFFSET,	/* for type MLXSW_PCI_QUEUE_TYPE_EQ */
44 };
45 
46 static const u16 mlxsw_pci_doorbell_arm_type_offset[] = {
47 	0, /* unused */
48 	0, /* unused */
49 	MLXSW_PCI_DOORBELL_ARM_CQ_OFFSET, /* for type MLXSW_PCI_QUEUE_TYPE_CQ */
50 	MLXSW_PCI_DOORBELL_ARM_EQ_OFFSET, /* for type MLXSW_PCI_QUEUE_TYPE_EQ */
51 };
52 
53 struct mlxsw_pci_mem_item {
54 	char *buf;
55 	dma_addr_t mapaddr;
56 	size_t size;
57 };
58 
59 struct mlxsw_pci_queue_elem_info {
60 	char *elem; /* pointer to actual dma mapped element mem chunk */
61 	union {
62 		struct {
63 			struct sk_buff *skb;
64 		} sdq;
65 		struct {
66 			struct sk_buff *skb;
67 		} rdq;
68 	} u;
69 };
70 
71 struct mlxsw_pci_queue {
72 	spinlock_t lock; /* for queue accesses */
73 	struct mlxsw_pci_mem_item mem_item;
74 	struct mlxsw_pci_queue_elem_info *elem_info;
75 	u16 producer_counter;
76 	u16 consumer_counter;
77 	u16 count; /* number of elements in queue */
78 	u8 num; /* queue number */
79 	u8 elem_size; /* size of one element */
80 	enum mlxsw_pci_queue_type type;
81 	struct tasklet_struct tasklet; /* queue processing tasklet */
82 	struct mlxsw_pci *pci;
83 	union {
84 		struct {
85 			u32 comp_sdq_count;
86 			u32 comp_rdq_count;
87 			enum mlxsw_pci_cqe_v v;
88 		} cq;
89 		struct {
90 			u32 ev_cmd_count;
91 			u32 ev_comp_count;
92 			u32 ev_other_count;
93 		} eq;
94 	} u;
95 };
96 
97 struct mlxsw_pci_queue_type_group {
98 	struct mlxsw_pci_queue *q;
99 	u8 count; /* number of queues in group */
100 };
101 
102 struct mlxsw_pci {
103 	struct pci_dev *pdev;
104 	u8 __iomem *hw_addr;
105 	struct mlxsw_pci_queue_type_group queues[MLXSW_PCI_QUEUE_TYPE_COUNT];
106 	u32 doorbell_offset;
107 	struct mlxsw_core *core;
108 	struct {
109 		struct mlxsw_pci_mem_item *items;
110 		unsigned int count;
111 	} fw_area;
112 	struct {
113 		struct mlxsw_pci_mem_item out_mbox;
114 		struct mlxsw_pci_mem_item in_mbox;
115 		struct mutex lock; /* Lock access to command registers */
116 		bool nopoll;
117 		wait_queue_head_t wait;
118 		bool wait_done;
119 		struct {
120 			u8 status;
121 			u64 out_param;
122 		} comp;
123 	} cmd;
124 	struct mlxsw_bus_info bus_info;
125 	const struct pci_device_id *id;
126 	enum mlxsw_pci_cqe_v max_cqe_ver; /* Maximal supported CQE version */
127 	u8 num_sdq_cqs; /* Number of CQs used for SDQs */
128 };
129 
130 static void mlxsw_pci_queue_tasklet_schedule(struct mlxsw_pci_queue *q)
131 {
132 	tasklet_schedule(&q->tasklet);
133 }
134 
135 static char *__mlxsw_pci_queue_elem_get(struct mlxsw_pci_queue *q,
136 					size_t elem_size, int elem_index)
137 {
138 	return q->mem_item.buf + (elem_size * elem_index);
139 }
140 
141 static struct mlxsw_pci_queue_elem_info *
142 mlxsw_pci_queue_elem_info_get(struct mlxsw_pci_queue *q, int elem_index)
143 {
144 	return &q->elem_info[elem_index];
145 }
146 
147 static struct mlxsw_pci_queue_elem_info *
148 mlxsw_pci_queue_elem_info_producer_get(struct mlxsw_pci_queue *q)
149 {
150 	int index = q->producer_counter & (q->count - 1);
151 
152 	if ((u16) (q->producer_counter - q->consumer_counter) == q->count)
153 		return NULL;
154 	return mlxsw_pci_queue_elem_info_get(q, index);
155 }
156 
157 static struct mlxsw_pci_queue_elem_info *
158 mlxsw_pci_queue_elem_info_consumer_get(struct mlxsw_pci_queue *q)
159 {
160 	int index = q->consumer_counter & (q->count - 1);
161 
162 	return mlxsw_pci_queue_elem_info_get(q, index);
163 }
164 
165 static char *mlxsw_pci_queue_elem_get(struct mlxsw_pci_queue *q, int elem_index)
166 {
167 	return mlxsw_pci_queue_elem_info_get(q, elem_index)->elem;
168 }
169 
170 static bool mlxsw_pci_elem_hw_owned(struct mlxsw_pci_queue *q, bool owner_bit)
171 {
172 	return owner_bit != !!(q->consumer_counter & q->count);
173 }
174 
175 static struct mlxsw_pci_queue_type_group *
176 mlxsw_pci_queue_type_group_get(struct mlxsw_pci *mlxsw_pci,
177 			       enum mlxsw_pci_queue_type q_type)
178 {
179 	return &mlxsw_pci->queues[q_type];
180 }
181 
182 static u8 __mlxsw_pci_queue_count(struct mlxsw_pci *mlxsw_pci,
183 				  enum mlxsw_pci_queue_type q_type)
184 {
185 	struct mlxsw_pci_queue_type_group *queue_group;
186 
187 	queue_group = mlxsw_pci_queue_type_group_get(mlxsw_pci, q_type);
188 	return queue_group->count;
189 }
190 
191 static u8 mlxsw_pci_sdq_count(struct mlxsw_pci *mlxsw_pci)
192 {
193 	return __mlxsw_pci_queue_count(mlxsw_pci, MLXSW_PCI_QUEUE_TYPE_SDQ);
194 }
195 
196 static u8 mlxsw_pci_cq_count(struct mlxsw_pci *mlxsw_pci)
197 {
198 	return __mlxsw_pci_queue_count(mlxsw_pci, MLXSW_PCI_QUEUE_TYPE_CQ);
199 }
200 
201 static struct mlxsw_pci_queue *
202 __mlxsw_pci_queue_get(struct mlxsw_pci *mlxsw_pci,
203 		      enum mlxsw_pci_queue_type q_type, u8 q_num)
204 {
205 	return &mlxsw_pci->queues[q_type].q[q_num];
206 }
207 
208 static struct mlxsw_pci_queue *mlxsw_pci_sdq_get(struct mlxsw_pci *mlxsw_pci,
209 						 u8 q_num)
210 {
211 	return __mlxsw_pci_queue_get(mlxsw_pci,
212 				     MLXSW_PCI_QUEUE_TYPE_SDQ, q_num);
213 }
214 
215 static struct mlxsw_pci_queue *mlxsw_pci_rdq_get(struct mlxsw_pci *mlxsw_pci,
216 						 u8 q_num)
217 {
218 	return __mlxsw_pci_queue_get(mlxsw_pci,
219 				     MLXSW_PCI_QUEUE_TYPE_RDQ, q_num);
220 }
221 
222 static struct mlxsw_pci_queue *mlxsw_pci_cq_get(struct mlxsw_pci *mlxsw_pci,
223 						u8 q_num)
224 {
225 	return __mlxsw_pci_queue_get(mlxsw_pci, MLXSW_PCI_QUEUE_TYPE_CQ, q_num);
226 }
227 
228 static struct mlxsw_pci_queue *mlxsw_pci_eq_get(struct mlxsw_pci *mlxsw_pci,
229 						u8 q_num)
230 {
231 	return __mlxsw_pci_queue_get(mlxsw_pci, MLXSW_PCI_QUEUE_TYPE_EQ, q_num);
232 }
233 
234 static void __mlxsw_pci_queue_doorbell_set(struct mlxsw_pci *mlxsw_pci,
235 					   struct mlxsw_pci_queue *q,
236 					   u16 val)
237 {
238 	mlxsw_pci_write32(mlxsw_pci,
239 			  DOORBELL(mlxsw_pci->doorbell_offset,
240 				   mlxsw_pci_doorbell_type_offset[q->type],
241 				   q->num), val);
242 }
243 
244 static void __mlxsw_pci_queue_doorbell_arm_set(struct mlxsw_pci *mlxsw_pci,
245 					       struct mlxsw_pci_queue *q,
246 					       u16 val)
247 {
248 	mlxsw_pci_write32(mlxsw_pci,
249 			  DOORBELL(mlxsw_pci->doorbell_offset,
250 				   mlxsw_pci_doorbell_arm_type_offset[q->type],
251 				   q->num), val);
252 }
253 
254 static void mlxsw_pci_queue_doorbell_producer_ring(struct mlxsw_pci *mlxsw_pci,
255 						   struct mlxsw_pci_queue *q)
256 {
257 	wmb(); /* ensure all writes are done before we ring a bell */
258 	__mlxsw_pci_queue_doorbell_set(mlxsw_pci, q, q->producer_counter);
259 }
260 
261 static void mlxsw_pci_queue_doorbell_consumer_ring(struct mlxsw_pci *mlxsw_pci,
262 						   struct mlxsw_pci_queue *q)
263 {
264 	wmb(); /* ensure all writes are done before we ring a bell */
265 	__mlxsw_pci_queue_doorbell_set(mlxsw_pci, q,
266 				       q->consumer_counter + q->count);
267 }
268 
269 static void
270 mlxsw_pci_queue_doorbell_arm_consumer_ring(struct mlxsw_pci *mlxsw_pci,
271 					   struct mlxsw_pci_queue *q)
272 {
273 	wmb(); /* ensure all writes are done before we ring a bell */
274 	__mlxsw_pci_queue_doorbell_arm_set(mlxsw_pci, q, q->consumer_counter);
275 }
276 
277 static dma_addr_t __mlxsw_pci_queue_page_get(struct mlxsw_pci_queue *q,
278 					     int page_index)
279 {
280 	return q->mem_item.mapaddr + MLXSW_PCI_PAGE_SIZE * page_index;
281 }
282 
283 static int mlxsw_pci_sdq_init(struct mlxsw_pci *mlxsw_pci, char *mbox,
284 			      struct mlxsw_pci_queue *q)
285 {
286 	int i;
287 	int err;
288 
289 	q->producer_counter = 0;
290 	q->consumer_counter = 0;
291 
292 	/* Set CQ of same number of this SDQ. */
293 	mlxsw_cmd_mbox_sw2hw_dq_cq_set(mbox, q->num);
294 	mlxsw_cmd_mbox_sw2hw_dq_sdq_tclass_set(mbox, 3);
295 	mlxsw_cmd_mbox_sw2hw_dq_log2_dq_sz_set(mbox, 3); /* 8 pages */
296 	for (i = 0; i < MLXSW_PCI_AQ_PAGES; i++) {
297 		dma_addr_t mapaddr = __mlxsw_pci_queue_page_get(q, i);
298 
299 		mlxsw_cmd_mbox_sw2hw_dq_pa_set(mbox, i, mapaddr);
300 	}
301 
302 	err = mlxsw_cmd_sw2hw_sdq(mlxsw_pci->core, mbox, q->num);
303 	if (err)
304 		return err;
305 	mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci, q);
306 	return 0;
307 }
308 
309 static void mlxsw_pci_sdq_fini(struct mlxsw_pci *mlxsw_pci,
310 			       struct mlxsw_pci_queue *q)
311 {
312 	mlxsw_cmd_hw2sw_sdq(mlxsw_pci->core, q->num);
313 }
314 
315 static int mlxsw_pci_wqe_frag_map(struct mlxsw_pci *mlxsw_pci, char *wqe,
316 				  int index, char *frag_data, size_t frag_len,
317 				  int direction)
318 {
319 	struct pci_dev *pdev = mlxsw_pci->pdev;
320 	dma_addr_t mapaddr;
321 
322 	mapaddr = pci_map_single(pdev, frag_data, frag_len, direction);
323 	if (unlikely(pci_dma_mapping_error(pdev, mapaddr))) {
324 		dev_err_ratelimited(&pdev->dev, "failed to dma map tx frag\n");
325 		return -EIO;
326 	}
327 	mlxsw_pci_wqe_address_set(wqe, index, mapaddr);
328 	mlxsw_pci_wqe_byte_count_set(wqe, index, frag_len);
329 	return 0;
330 }
331 
332 static void mlxsw_pci_wqe_frag_unmap(struct mlxsw_pci *mlxsw_pci, char *wqe,
333 				     int index, int direction)
334 {
335 	struct pci_dev *pdev = mlxsw_pci->pdev;
336 	size_t frag_len = mlxsw_pci_wqe_byte_count_get(wqe, index);
337 	dma_addr_t mapaddr = mlxsw_pci_wqe_address_get(wqe, index);
338 
339 	if (!frag_len)
340 		return;
341 	pci_unmap_single(pdev, mapaddr, frag_len, direction);
342 }
343 
344 static int mlxsw_pci_rdq_skb_alloc(struct mlxsw_pci *mlxsw_pci,
345 				   struct mlxsw_pci_queue_elem_info *elem_info)
346 {
347 	size_t buf_len = MLXSW_PORT_MAX_MTU;
348 	char *wqe = elem_info->elem;
349 	struct sk_buff *skb;
350 	int err;
351 
352 	elem_info->u.rdq.skb = NULL;
353 	skb = netdev_alloc_skb_ip_align(NULL, buf_len);
354 	if (!skb)
355 		return -ENOMEM;
356 
357 	/* Assume that wqe was previously zeroed. */
358 
359 	err = mlxsw_pci_wqe_frag_map(mlxsw_pci, wqe, 0, skb->data,
360 				     buf_len, DMA_FROM_DEVICE);
361 	if (err)
362 		goto err_frag_map;
363 
364 	elem_info->u.rdq.skb = skb;
365 	return 0;
366 
367 err_frag_map:
368 	dev_kfree_skb_any(skb);
369 	return err;
370 }
371 
372 static void mlxsw_pci_rdq_skb_free(struct mlxsw_pci *mlxsw_pci,
373 				   struct mlxsw_pci_queue_elem_info *elem_info)
374 {
375 	struct sk_buff *skb;
376 	char *wqe;
377 
378 	skb = elem_info->u.rdq.skb;
379 	wqe = elem_info->elem;
380 
381 	mlxsw_pci_wqe_frag_unmap(mlxsw_pci, wqe, 0, DMA_FROM_DEVICE);
382 	dev_kfree_skb_any(skb);
383 }
384 
385 static int mlxsw_pci_rdq_init(struct mlxsw_pci *mlxsw_pci, char *mbox,
386 			      struct mlxsw_pci_queue *q)
387 {
388 	struct mlxsw_pci_queue_elem_info *elem_info;
389 	u8 sdq_count = mlxsw_pci_sdq_count(mlxsw_pci);
390 	int i;
391 	int err;
392 
393 	q->producer_counter = 0;
394 	q->consumer_counter = 0;
395 
396 	/* Set CQ of same number of this RDQ with base
397 	 * above SDQ count as the lower ones are assigned to SDQs.
398 	 */
399 	mlxsw_cmd_mbox_sw2hw_dq_cq_set(mbox, sdq_count + q->num);
400 	mlxsw_cmd_mbox_sw2hw_dq_log2_dq_sz_set(mbox, 3); /* 8 pages */
401 	for (i = 0; i < MLXSW_PCI_AQ_PAGES; i++) {
402 		dma_addr_t mapaddr = __mlxsw_pci_queue_page_get(q, i);
403 
404 		mlxsw_cmd_mbox_sw2hw_dq_pa_set(mbox, i, mapaddr);
405 	}
406 
407 	err = mlxsw_cmd_sw2hw_rdq(mlxsw_pci->core, mbox, q->num);
408 	if (err)
409 		return err;
410 
411 	mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci, q);
412 
413 	for (i = 0; i < q->count; i++) {
414 		elem_info = mlxsw_pci_queue_elem_info_producer_get(q);
415 		BUG_ON(!elem_info);
416 		err = mlxsw_pci_rdq_skb_alloc(mlxsw_pci, elem_info);
417 		if (err)
418 			goto rollback;
419 		/* Everything is set up, ring doorbell to pass elem to HW */
420 		q->producer_counter++;
421 		mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci, q);
422 	}
423 
424 	return 0;
425 
426 rollback:
427 	for (i--; i >= 0; i--) {
428 		elem_info = mlxsw_pci_queue_elem_info_get(q, i);
429 		mlxsw_pci_rdq_skb_free(mlxsw_pci, elem_info);
430 	}
431 	mlxsw_cmd_hw2sw_rdq(mlxsw_pci->core, q->num);
432 
433 	return err;
434 }
435 
436 static void mlxsw_pci_rdq_fini(struct mlxsw_pci *mlxsw_pci,
437 			       struct mlxsw_pci_queue *q)
438 {
439 	struct mlxsw_pci_queue_elem_info *elem_info;
440 	int i;
441 
442 	mlxsw_cmd_hw2sw_rdq(mlxsw_pci->core, q->num);
443 	for (i = 0; i < q->count; i++) {
444 		elem_info = mlxsw_pci_queue_elem_info_get(q, i);
445 		mlxsw_pci_rdq_skb_free(mlxsw_pci, elem_info);
446 	}
447 }
448 
449 static void mlxsw_pci_cq_pre_init(struct mlxsw_pci *mlxsw_pci,
450 				  struct mlxsw_pci_queue *q)
451 {
452 	q->u.cq.v = mlxsw_pci->max_cqe_ver;
453 
454 	/* For SDQ it is pointless to use CQEv2, so use CQEv1 instead */
455 	if (q->u.cq.v == MLXSW_PCI_CQE_V2 &&
456 	    q->num < mlxsw_pci->num_sdq_cqs)
457 		q->u.cq.v = MLXSW_PCI_CQE_V1;
458 }
459 
460 static int mlxsw_pci_cq_init(struct mlxsw_pci *mlxsw_pci, char *mbox,
461 			     struct mlxsw_pci_queue *q)
462 {
463 	int i;
464 	int err;
465 
466 	q->consumer_counter = 0;
467 
468 	for (i = 0; i < q->count; i++) {
469 		char *elem = mlxsw_pci_queue_elem_get(q, i);
470 
471 		mlxsw_pci_cqe_owner_set(q->u.cq.v, elem, 1);
472 	}
473 
474 	if (q->u.cq.v == MLXSW_PCI_CQE_V1)
475 		mlxsw_cmd_mbox_sw2hw_cq_cqe_ver_set(mbox,
476 				MLXSW_CMD_MBOX_SW2HW_CQ_CQE_VER_1);
477 	else if (q->u.cq.v == MLXSW_PCI_CQE_V2)
478 		mlxsw_cmd_mbox_sw2hw_cq_cqe_ver_set(mbox,
479 				MLXSW_CMD_MBOX_SW2HW_CQ_CQE_VER_2);
480 
481 	mlxsw_cmd_mbox_sw2hw_cq_c_eqn_set(mbox, MLXSW_PCI_EQ_COMP_NUM);
482 	mlxsw_cmd_mbox_sw2hw_cq_st_set(mbox, 0);
483 	mlxsw_cmd_mbox_sw2hw_cq_log_cq_size_set(mbox, ilog2(q->count));
484 	for (i = 0; i < MLXSW_PCI_AQ_PAGES; i++) {
485 		dma_addr_t mapaddr = __mlxsw_pci_queue_page_get(q, i);
486 
487 		mlxsw_cmd_mbox_sw2hw_cq_pa_set(mbox, i, mapaddr);
488 	}
489 	err = mlxsw_cmd_sw2hw_cq(mlxsw_pci->core, mbox, q->num);
490 	if (err)
491 		return err;
492 	mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci, q);
493 	mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci, q);
494 	return 0;
495 }
496 
497 static void mlxsw_pci_cq_fini(struct mlxsw_pci *mlxsw_pci,
498 			      struct mlxsw_pci_queue *q)
499 {
500 	mlxsw_cmd_hw2sw_cq(mlxsw_pci->core, q->num);
501 }
502 
503 static void mlxsw_pci_cqe_sdq_handle(struct mlxsw_pci *mlxsw_pci,
504 				     struct mlxsw_pci_queue *q,
505 				     u16 consumer_counter_limit,
506 				     char *cqe)
507 {
508 	struct pci_dev *pdev = mlxsw_pci->pdev;
509 	struct mlxsw_pci_queue_elem_info *elem_info;
510 	char *wqe;
511 	struct sk_buff *skb;
512 	int i;
513 
514 	spin_lock(&q->lock);
515 	elem_info = mlxsw_pci_queue_elem_info_consumer_get(q);
516 	skb = elem_info->u.sdq.skb;
517 	wqe = elem_info->elem;
518 	for (i = 0; i < MLXSW_PCI_WQE_SG_ENTRIES; i++)
519 		mlxsw_pci_wqe_frag_unmap(mlxsw_pci, wqe, i, DMA_TO_DEVICE);
520 	dev_kfree_skb_any(skb);
521 	elem_info->u.sdq.skb = NULL;
522 
523 	if (q->consumer_counter++ != consumer_counter_limit)
524 		dev_dbg_ratelimited(&pdev->dev, "Consumer counter does not match limit in SDQ\n");
525 	spin_unlock(&q->lock);
526 }
527 
528 static void mlxsw_pci_cqe_rdq_handle(struct mlxsw_pci *mlxsw_pci,
529 				     struct mlxsw_pci_queue *q,
530 				     u16 consumer_counter_limit,
531 				     enum mlxsw_pci_cqe_v cqe_v, char *cqe)
532 {
533 	struct pci_dev *pdev = mlxsw_pci->pdev;
534 	struct mlxsw_pci_queue_elem_info *elem_info;
535 	char *wqe;
536 	struct sk_buff *skb;
537 	struct mlxsw_rx_info rx_info;
538 	u16 byte_count;
539 	int err;
540 
541 	elem_info = mlxsw_pci_queue_elem_info_consumer_get(q);
542 	skb = elem_info->u.sdq.skb;
543 	if (!skb)
544 		return;
545 	wqe = elem_info->elem;
546 	mlxsw_pci_wqe_frag_unmap(mlxsw_pci, wqe, 0, DMA_FROM_DEVICE);
547 
548 	if (q->consumer_counter++ != consumer_counter_limit)
549 		dev_dbg_ratelimited(&pdev->dev, "Consumer counter does not match limit in RDQ\n");
550 
551 	if (mlxsw_pci_cqe_lag_get(cqe_v, cqe)) {
552 		rx_info.is_lag = true;
553 		rx_info.u.lag_id = mlxsw_pci_cqe_lag_id_get(cqe_v, cqe);
554 		rx_info.lag_port_index =
555 			mlxsw_pci_cqe_lag_subport_get(cqe_v, cqe);
556 	} else {
557 		rx_info.is_lag = false;
558 		rx_info.u.sys_port = mlxsw_pci_cqe_system_port_get(cqe);
559 	}
560 
561 	rx_info.trap_id = mlxsw_pci_cqe_trap_id_get(cqe);
562 
563 	byte_count = mlxsw_pci_cqe_byte_count_get(cqe);
564 	if (mlxsw_pci_cqe_crc_get(cqe_v, cqe))
565 		byte_count -= ETH_FCS_LEN;
566 	skb_put(skb, byte_count);
567 	mlxsw_core_skb_receive(mlxsw_pci->core, skb, &rx_info);
568 
569 	memset(wqe, 0, q->elem_size);
570 	err = mlxsw_pci_rdq_skb_alloc(mlxsw_pci, elem_info);
571 	if (err)
572 		dev_dbg_ratelimited(&pdev->dev, "Failed to alloc skb for RDQ\n");
573 	/* Everything is set up, ring doorbell to pass elem to HW */
574 	q->producer_counter++;
575 	mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci, q);
576 	return;
577 }
578 
579 static char *mlxsw_pci_cq_sw_cqe_get(struct mlxsw_pci_queue *q)
580 {
581 	struct mlxsw_pci_queue_elem_info *elem_info;
582 	char *elem;
583 	bool owner_bit;
584 
585 	elem_info = mlxsw_pci_queue_elem_info_consumer_get(q);
586 	elem = elem_info->elem;
587 	owner_bit = mlxsw_pci_cqe_owner_get(q->u.cq.v, elem);
588 	if (mlxsw_pci_elem_hw_owned(q, owner_bit))
589 		return NULL;
590 	q->consumer_counter++;
591 	rmb(); /* make sure we read owned bit before the rest of elem */
592 	return elem;
593 }
594 
595 static void mlxsw_pci_cq_tasklet(unsigned long data)
596 {
597 	struct mlxsw_pci_queue *q = (struct mlxsw_pci_queue *) data;
598 	struct mlxsw_pci *mlxsw_pci = q->pci;
599 	char *cqe;
600 	int items = 0;
601 	int credits = q->count >> 1;
602 
603 	while ((cqe = mlxsw_pci_cq_sw_cqe_get(q))) {
604 		u16 wqe_counter = mlxsw_pci_cqe_wqe_counter_get(cqe);
605 		u8 sendq = mlxsw_pci_cqe_sr_get(q->u.cq.v, cqe);
606 		u8 dqn = mlxsw_pci_cqe_dqn_get(q->u.cq.v, cqe);
607 		char ncqe[MLXSW_PCI_CQE_SIZE_MAX];
608 
609 		memcpy(ncqe, cqe, q->elem_size);
610 		mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci, q);
611 
612 		if (sendq) {
613 			struct mlxsw_pci_queue *sdq;
614 
615 			sdq = mlxsw_pci_sdq_get(mlxsw_pci, dqn);
616 			mlxsw_pci_cqe_sdq_handle(mlxsw_pci, sdq,
617 						 wqe_counter, ncqe);
618 			q->u.cq.comp_sdq_count++;
619 		} else {
620 			struct mlxsw_pci_queue *rdq;
621 
622 			rdq = mlxsw_pci_rdq_get(mlxsw_pci, dqn);
623 			mlxsw_pci_cqe_rdq_handle(mlxsw_pci, rdq,
624 						 wqe_counter, q->u.cq.v, ncqe);
625 			q->u.cq.comp_rdq_count++;
626 		}
627 		if (++items == credits)
628 			break;
629 	}
630 	if (items)
631 		mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci, q);
632 }
633 
634 static u16 mlxsw_pci_cq_elem_count(const struct mlxsw_pci_queue *q)
635 {
636 	return q->u.cq.v == MLXSW_PCI_CQE_V2 ? MLXSW_PCI_CQE2_COUNT :
637 					       MLXSW_PCI_CQE01_COUNT;
638 }
639 
640 static u8 mlxsw_pci_cq_elem_size(const struct mlxsw_pci_queue *q)
641 {
642 	return q->u.cq.v == MLXSW_PCI_CQE_V2 ? MLXSW_PCI_CQE2_SIZE :
643 					       MLXSW_PCI_CQE01_SIZE;
644 }
645 
646 static int mlxsw_pci_eq_init(struct mlxsw_pci *mlxsw_pci, char *mbox,
647 			     struct mlxsw_pci_queue *q)
648 {
649 	int i;
650 	int err;
651 
652 	q->consumer_counter = 0;
653 
654 	for (i = 0; i < q->count; i++) {
655 		char *elem = mlxsw_pci_queue_elem_get(q, i);
656 
657 		mlxsw_pci_eqe_owner_set(elem, 1);
658 	}
659 
660 	mlxsw_cmd_mbox_sw2hw_eq_int_msix_set(mbox, 1); /* MSI-X used */
661 	mlxsw_cmd_mbox_sw2hw_eq_st_set(mbox, 1); /* armed */
662 	mlxsw_cmd_mbox_sw2hw_eq_log_eq_size_set(mbox, ilog2(q->count));
663 	for (i = 0; i < MLXSW_PCI_AQ_PAGES; i++) {
664 		dma_addr_t mapaddr = __mlxsw_pci_queue_page_get(q, i);
665 
666 		mlxsw_cmd_mbox_sw2hw_eq_pa_set(mbox, i, mapaddr);
667 	}
668 	err = mlxsw_cmd_sw2hw_eq(mlxsw_pci->core, mbox, q->num);
669 	if (err)
670 		return err;
671 	mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci, q);
672 	mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci, q);
673 	return 0;
674 }
675 
676 static void mlxsw_pci_eq_fini(struct mlxsw_pci *mlxsw_pci,
677 			      struct mlxsw_pci_queue *q)
678 {
679 	mlxsw_cmd_hw2sw_eq(mlxsw_pci->core, q->num);
680 }
681 
682 static void mlxsw_pci_eq_cmd_event(struct mlxsw_pci *mlxsw_pci, char *eqe)
683 {
684 	mlxsw_pci->cmd.comp.status = mlxsw_pci_eqe_cmd_status_get(eqe);
685 	mlxsw_pci->cmd.comp.out_param =
686 		((u64) mlxsw_pci_eqe_cmd_out_param_h_get(eqe)) << 32 |
687 		mlxsw_pci_eqe_cmd_out_param_l_get(eqe);
688 	mlxsw_pci->cmd.wait_done = true;
689 	wake_up(&mlxsw_pci->cmd.wait);
690 }
691 
692 static char *mlxsw_pci_eq_sw_eqe_get(struct mlxsw_pci_queue *q)
693 {
694 	struct mlxsw_pci_queue_elem_info *elem_info;
695 	char *elem;
696 	bool owner_bit;
697 
698 	elem_info = mlxsw_pci_queue_elem_info_consumer_get(q);
699 	elem = elem_info->elem;
700 	owner_bit = mlxsw_pci_eqe_owner_get(elem);
701 	if (mlxsw_pci_elem_hw_owned(q, owner_bit))
702 		return NULL;
703 	q->consumer_counter++;
704 	rmb(); /* make sure we read owned bit before the rest of elem */
705 	return elem;
706 }
707 
708 static void mlxsw_pci_eq_tasklet(unsigned long data)
709 {
710 	struct mlxsw_pci_queue *q = (struct mlxsw_pci_queue *) data;
711 	struct mlxsw_pci *mlxsw_pci = q->pci;
712 	u8 cq_count = mlxsw_pci_cq_count(mlxsw_pci);
713 	unsigned long active_cqns[BITS_TO_LONGS(MLXSW_PCI_CQS_MAX)];
714 	char *eqe;
715 	u8 cqn;
716 	bool cq_handle = false;
717 	int items = 0;
718 	int credits = q->count >> 1;
719 
720 	memset(&active_cqns, 0, sizeof(active_cqns));
721 
722 	while ((eqe = mlxsw_pci_eq_sw_eqe_get(q))) {
723 
724 		/* Command interface completion events are always received on
725 		 * queue MLXSW_PCI_EQ_ASYNC_NUM (EQ0) and completion events
726 		 * are mapped to queue MLXSW_PCI_EQ_COMP_NUM (EQ1).
727 		 */
728 		switch (q->num) {
729 		case MLXSW_PCI_EQ_ASYNC_NUM:
730 			mlxsw_pci_eq_cmd_event(mlxsw_pci, eqe);
731 			q->u.eq.ev_cmd_count++;
732 			break;
733 		case MLXSW_PCI_EQ_COMP_NUM:
734 			cqn = mlxsw_pci_eqe_cqn_get(eqe);
735 			set_bit(cqn, active_cqns);
736 			cq_handle = true;
737 			q->u.eq.ev_comp_count++;
738 			break;
739 		default:
740 			q->u.eq.ev_other_count++;
741 		}
742 		if (++items == credits)
743 			break;
744 	}
745 	if (items) {
746 		mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci, q);
747 		mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci, q);
748 	}
749 
750 	if (!cq_handle)
751 		return;
752 	for_each_set_bit(cqn, active_cqns, cq_count) {
753 		q = mlxsw_pci_cq_get(mlxsw_pci, cqn);
754 		mlxsw_pci_queue_tasklet_schedule(q);
755 	}
756 }
757 
758 struct mlxsw_pci_queue_ops {
759 	const char *name;
760 	enum mlxsw_pci_queue_type type;
761 	void (*pre_init)(struct mlxsw_pci *mlxsw_pci,
762 			 struct mlxsw_pci_queue *q);
763 	int (*init)(struct mlxsw_pci *mlxsw_pci, char *mbox,
764 		    struct mlxsw_pci_queue *q);
765 	void (*fini)(struct mlxsw_pci *mlxsw_pci,
766 		     struct mlxsw_pci_queue *q);
767 	void (*tasklet)(unsigned long data);
768 	u16 (*elem_count_f)(const struct mlxsw_pci_queue *q);
769 	u8 (*elem_size_f)(const struct mlxsw_pci_queue *q);
770 	u16 elem_count;
771 	u8 elem_size;
772 };
773 
774 static const struct mlxsw_pci_queue_ops mlxsw_pci_sdq_ops = {
775 	.type		= MLXSW_PCI_QUEUE_TYPE_SDQ,
776 	.init		= mlxsw_pci_sdq_init,
777 	.fini		= mlxsw_pci_sdq_fini,
778 	.elem_count	= MLXSW_PCI_WQE_COUNT,
779 	.elem_size	= MLXSW_PCI_WQE_SIZE,
780 };
781 
782 static const struct mlxsw_pci_queue_ops mlxsw_pci_rdq_ops = {
783 	.type		= MLXSW_PCI_QUEUE_TYPE_RDQ,
784 	.init		= mlxsw_pci_rdq_init,
785 	.fini		= mlxsw_pci_rdq_fini,
786 	.elem_count	= MLXSW_PCI_WQE_COUNT,
787 	.elem_size	= MLXSW_PCI_WQE_SIZE
788 };
789 
790 static const struct mlxsw_pci_queue_ops mlxsw_pci_cq_ops = {
791 	.type		= MLXSW_PCI_QUEUE_TYPE_CQ,
792 	.pre_init	= mlxsw_pci_cq_pre_init,
793 	.init		= mlxsw_pci_cq_init,
794 	.fini		= mlxsw_pci_cq_fini,
795 	.tasklet	= mlxsw_pci_cq_tasklet,
796 	.elem_count_f	= mlxsw_pci_cq_elem_count,
797 	.elem_size_f	= mlxsw_pci_cq_elem_size
798 };
799 
800 static const struct mlxsw_pci_queue_ops mlxsw_pci_eq_ops = {
801 	.type		= MLXSW_PCI_QUEUE_TYPE_EQ,
802 	.init		= mlxsw_pci_eq_init,
803 	.fini		= mlxsw_pci_eq_fini,
804 	.tasklet	= mlxsw_pci_eq_tasklet,
805 	.elem_count	= MLXSW_PCI_EQE_COUNT,
806 	.elem_size	= MLXSW_PCI_EQE_SIZE
807 };
808 
809 static int mlxsw_pci_queue_init(struct mlxsw_pci *mlxsw_pci, char *mbox,
810 				const struct mlxsw_pci_queue_ops *q_ops,
811 				struct mlxsw_pci_queue *q, u8 q_num)
812 {
813 	struct mlxsw_pci_mem_item *mem_item = &q->mem_item;
814 	int i;
815 	int err;
816 
817 	q->num = q_num;
818 	if (q_ops->pre_init)
819 		q_ops->pre_init(mlxsw_pci, q);
820 
821 	spin_lock_init(&q->lock);
822 	q->count = q_ops->elem_count_f ? q_ops->elem_count_f(q) :
823 					 q_ops->elem_count;
824 	q->elem_size = q_ops->elem_size_f ? q_ops->elem_size_f(q) :
825 					    q_ops->elem_size;
826 	q->type = q_ops->type;
827 	q->pci = mlxsw_pci;
828 
829 	if (q_ops->tasklet)
830 		tasklet_init(&q->tasklet, q_ops->tasklet, (unsigned long) q);
831 
832 	mem_item->size = MLXSW_PCI_AQ_SIZE;
833 	mem_item->buf = pci_alloc_consistent(mlxsw_pci->pdev,
834 					     mem_item->size,
835 					     &mem_item->mapaddr);
836 	if (!mem_item->buf)
837 		return -ENOMEM;
838 	memset(mem_item->buf, 0, mem_item->size);
839 
840 	q->elem_info = kcalloc(q->count, sizeof(*q->elem_info), GFP_KERNEL);
841 	if (!q->elem_info) {
842 		err = -ENOMEM;
843 		goto err_elem_info_alloc;
844 	}
845 
846 	/* Initialize dma mapped elements info elem_info for
847 	 * future easy access.
848 	 */
849 	for (i = 0; i < q->count; i++) {
850 		struct mlxsw_pci_queue_elem_info *elem_info;
851 
852 		elem_info = mlxsw_pci_queue_elem_info_get(q, i);
853 		elem_info->elem =
854 			__mlxsw_pci_queue_elem_get(q, q->elem_size, i);
855 	}
856 
857 	mlxsw_cmd_mbox_zero(mbox);
858 	err = q_ops->init(mlxsw_pci, mbox, q);
859 	if (err)
860 		goto err_q_ops_init;
861 	return 0;
862 
863 err_q_ops_init:
864 	kfree(q->elem_info);
865 err_elem_info_alloc:
866 	pci_free_consistent(mlxsw_pci->pdev, mem_item->size,
867 			    mem_item->buf, mem_item->mapaddr);
868 	return err;
869 }
870 
871 static void mlxsw_pci_queue_fini(struct mlxsw_pci *mlxsw_pci,
872 				 const struct mlxsw_pci_queue_ops *q_ops,
873 				 struct mlxsw_pci_queue *q)
874 {
875 	struct mlxsw_pci_mem_item *mem_item = &q->mem_item;
876 
877 	q_ops->fini(mlxsw_pci, q);
878 	kfree(q->elem_info);
879 	pci_free_consistent(mlxsw_pci->pdev, mem_item->size,
880 			    mem_item->buf, mem_item->mapaddr);
881 }
882 
883 static int mlxsw_pci_queue_group_init(struct mlxsw_pci *mlxsw_pci, char *mbox,
884 				      const struct mlxsw_pci_queue_ops *q_ops,
885 				      u8 num_qs)
886 {
887 	struct mlxsw_pci_queue_type_group *queue_group;
888 	int i;
889 	int err;
890 
891 	queue_group = mlxsw_pci_queue_type_group_get(mlxsw_pci, q_ops->type);
892 	queue_group->q = kcalloc(num_qs, sizeof(*queue_group->q), GFP_KERNEL);
893 	if (!queue_group->q)
894 		return -ENOMEM;
895 
896 	for (i = 0; i < num_qs; i++) {
897 		err = mlxsw_pci_queue_init(mlxsw_pci, mbox, q_ops,
898 					   &queue_group->q[i], i);
899 		if (err)
900 			goto err_queue_init;
901 	}
902 	queue_group->count = num_qs;
903 
904 	return 0;
905 
906 err_queue_init:
907 	for (i--; i >= 0; i--)
908 		mlxsw_pci_queue_fini(mlxsw_pci, q_ops, &queue_group->q[i]);
909 	kfree(queue_group->q);
910 	return err;
911 }
912 
913 static void mlxsw_pci_queue_group_fini(struct mlxsw_pci *mlxsw_pci,
914 				       const struct mlxsw_pci_queue_ops *q_ops)
915 {
916 	struct mlxsw_pci_queue_type_group *queue_group;
917 	int i;
918 
919 	queue_group = mlxsw_pci_queue_type_group_get(mlxsw_pci, q_ops->type);
920 	for (i = 0; i < queue_group->count; i++)
921 		mlxsw_pci_queue_fini(mlxsw_pci, q_ops, &queue_group->q[i]);
922 	kfree(queue_group->q);
923 }
924 
925 static int mlxsw_pci_aqs_init(struct mlxsw_pci *mlxsw_pci, char *mbox)
926 {
927 	struct pci_dev *pdev = mlxsw_pci->pdev;
928 	u8 num_sdqs;
929 	u8 sdq_log2sz;
930 	u8 num_rdqs;
931 	u8 rdq_log2sz;
932 	u8 num_cqs;
933 	u8 cq_log2sz;
934 	u8 cqv2_log2sz;
935 	u8 num_eqs;
936 	u8 eq_log2sz;
937 	int err;
938 
939 	mlxsw_cmd_mbox_zero(mbox);
940 	err = mlxsw_cmd_query_aq_cap(mlxsw_pci->core, mbox);
941 	if (err)
942 		return err;
943 
944 	num_sdqs = mlxsw_cmd_mbox_query_aq_cap_max_num_sdqs_get(mbox);
945 	sdq_log2sz = mlxsw_cmd_mbox_query_aq_cap_log_max_sdq_sz_get(mbox);
946 	num_rdqs = mlxsw_cmd_mbox_query_aq_cap_max_num_rdqs_get(mbox);
947 	rdq_log2sz = mlxsw_cmd_mbox_query_aq_cap_log_max_rdq_sz_get(mbox);
948 	num_cqs = mlxsw_cmd_mbox_query_aq_cap_max_num_cqs_get(mbox);
949 	cq_log2sz = mlxsw_cmd_mbox_query_aq_cap_log_max_cq_sz_get(mbox);
950 	cqv2_log2sz = mlxsw_cmd_mbox_query_aq_cap_log_max_cqv2_sz_get(mbox);
951 	num_eqs = mlxsw_cmd_mbox_query_aq_cap_max_num_eqs_get(mbox);
952 	eq_log2sz = mlxsw_cmd_mbox_query_aq_cap_log_max_eq_sz_get(mbox);
953 
954 	if (num_sdqs + num_rdqs > num_cqs ||
955 	    num_cqs > MLXSW_PCI_CQS_MAX || num_eqs != MLXSW_PCI_EQS_COUNT) {
956 		dev_err(&pdev->dev, "Unsupported number of queues\n");
957 		return -EINVAL;
958 	}
959 
960 	if ((1 << sdq_log2sz != MLXSW_PCI_WQE_COUNT) ||
961 	    (1 << rdq_log2sz != MLXSW_PCI_WQE_COUNT) ||
962 	    (1 << cq_log2sz != MLXSW_PCI_CQE01_COUNT) ||
963 	    (mlxsw_pci->max_cqe_ver == MLXSW_PCI_CQE_V2 &&
964 	     (1 << cqv2_log2sz != MLXSW_PCI_CQE2_COUNT)) ||
965 	    (1 << eq_log2sz != MLXSW_PCI_EQE_COUNT)) {
966 		dev_err(&pdev->dev, "Unsupported number of async queue descriptors\n");
967 		return -EINVAL;
968 	}
969 
970 	mlxsw_pci->num_sdq_cqs = num_sdqs;
971 
972 	err = mlxsw_pci_queue_group_init(mlxsw_pci, mbox, &mlxsw_pci_eq_ops,
973 					 num_eqs);
974 	if (err) {
975 		dev_err(&pdev->dev, "Failed to initialize event queues\n");
976 		return err;
977 	}
978 
979 	err = mlxsw_pci_queue_group_init(mlxsw_pci, mbox, &mlxsw_pci_cq_ops,
980 					 num_cqs);
981 	if (err) {
982 		dev_err(&pdev->dev, "Failed to initialize completion queues\n");
983 		goto err_cqs_init;
984 	}
985 
986 	err = mlxsw_pci_queue_group_init(mlxsw_pci, mbox, &mlxsw_pci_sdq_ops,
987 					 num_sdqs);
988 	if (err) {
989 		dev_err(&pdev->dev, "Failed to initialize send descriptor queues\n");
990 		goto err_sdqs_init;
991 	}
992 
993 	err = mlxsw_pci_queue_group_init(mlxsw_pci, mbox, &mlxsw_pci_rdq_ops,
994 					 num_rdqs);
995 	if (err) {
996 		dev_err(&pdev->dev, "Failed to initialize receive descriptor queues\n");
997 		goto err_rdqs_init;
998 	}
999 
1000 	/* We have to poll in command interface until queues are initialized */
1001 	mlxsw_pci->cmd.nopoll = true;
1002 	return 0;
1003 
1004 err_rdqs_init:
1005 	mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_sdq_ops);
1006 err_sdqs_init:
1007 	mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_cq_ops);
1008 err_cqs_init:
1009 	mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_eq_ops);
1010 	return err;
1011 }
1012 
1013 static void mlxsw_pci_aqs_fini(struct mlxsw_pci *mlxsw_pci)
1014 {
1015 	mlxsw_pci->cmd.nopoll = false;
1016 	mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_rdq_ops);
1017 	mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_sdq_ops);
1018 	mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_cq_ops);
1019 	mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_eq_ops);
1020 }
1021 
1022 static void
1023 mlxsw_pci_config_profile_swid_config(struct mlxsw_pci *mlxsw_pci,
1024 				     char *mbox, int index,
1025 				     const struct mlxsw_swid_config *swid)
1026 {
1027 	u8 mask = 0;
1028 
1029 	if (swid->used_type) {
1030 		mlxsw_cmd_mbox_config_profile_swid_config_type_set(
1031 			mbox, index, swid->type);
1032 		mask |= 1;
1033 	}
1034 	if (swid->used_properties) {
1035 		mlxsw_cmd_mbox_config_profile_swid_config_properties_set(
1036 			mbox, index, swid->properties);
1037 		mask |= 2;
1038 	}
1039 	mlxsw_cmd_mbox_config_profile_swid_config_mask_set(mbox, index, mask);
1040 }
1041 
1042 static int
1043 mlxsw_pci_profile_get_kvd_sizes(const struct mlxsw_pci *mlxsw_pci,
1044 				const struct mlxsw_config_profile *profile,
1045 				struct mlxsw_res *res)
1046 {
1047 	u64 single_size, double_size, linear_size;
1048 	int err;
1049 
1050 	err = mlxsw_core_kvd_sizes_get(mlxsw_pci->core, profile,
1051 				       &single_size, &double_size,
1052 				       &linear_size);
1053 	if (err)
1054 		return err;
1055 
1056 	MLXSW_RES_SET(res, KVD_SINGLE_SIZE, single_size);
1057 	MLXSW_RES_SET(res, KVD_DOUBLE_SIZE, double_size);
1058 	MLXSW_RES_SET(res, KVD_LINEAR_SIZE, linear_size);
1059 
1060 	return 0;
1061 }
1062 
1063 static int mlxsw_pci_config_profile(struct mlxsw_pci *mlxsw_pci, char *mbox,
1064 				    const struct mlxsw_config_profile *profile,
1065 				    struct mlxsw_res *res)
1066 {
1067 	int i;
1068 	int err;
1069 
1070 	mlxsw_cmd_mbox_zero(mbox);
1071 
1072 	if (profile->used_max_vepa_channels) {
1073 		mlxsw_cmd_mbox_config_profile_set_max_vepa_channels_set(
1074 			mbox, 1);
1075 		mlxsw_cmd_mbox_config_profile_max_vepa_channels_set(
1076 			mbox, profile->max_vepa_channels);
1077 	}
1078 	if (profile->used_max_mid) {
1079 		mlxsw_cmd_mbox_config_profile_set_max_mid_set(
1080 			mbox, 1);
1081 		mlxsw_cmd_mbox_config_profile_max_mid_set(
1082 			mbox, profile->max_mid);
1083 	}
1084 	if (profile->used_max_pgt) {
1085 		mlxsw_cmd_mbox_config_profile_set_max_pgt_set(
1086 			mbox, 1);
1087 		mlxsw_cmd_mbox_config_profile_max_pgt_set(
1088 			mbox, profile->max_pgt);
1089 	}
1090 	if (profile->used_max_system_port) {
1091 		mlxsw_cmd_mbox_config_profile_set_max_system_port_set(
1092 			mbox, 1);
1093 		mlxsw_cmd_mbox_config_profile_max_system_port_set(
1094 			mbox, profile->max_system_port);
1095 	}
1096 	if (profile->used_max_vlan_groups) {
1097 		mlxsw_cmd_mbox_config_profile_set_max_vlan_groups_set(
1098 			mbox, 1);
1099 		mlxsw_cmd_mbox_config_profile_max_vlan_groups_set(
1100 			mbox, profile->max_vlan_groups);
1101 	}
1102 	if (profile->used_max_regions) {
1103 		mlxsw_cmd_mbox_config_profile_set_max_regions_set(
1104 			mbox, 1);
1105 		mlxsw_cmd_mbox_config_profile_max_regions_set(
1106 			mbox, profile->max_regions);
1107 	}
1108 	if (profile->used_flood_tables) {
1109 		mlxsw_cmd_mbox_config_profile_set_flood_tables_set(
1110 			mbox, 1);
1111 		mlxsw_cmd_mbox_config_profile_max_flood_tables_set(
1112 			mbox, profile->max_flood_tables);
1113 		mlxsw_cmd_mbox_config_profile_max_vid_flood_tables_set(
1114 			mbox, profile->max_vid_flood_tables);
1115 		mlxsw_cmd_mbox_config_profile_max_fid_offset_flood_tables_set(
1116 			mbox, profile->max_fid_offset_flood_tables);
1117 		mlxsw_cmd_mbox_config_profile_fid_offset_flood_table_size_set(
1118 			mbox, profile->fid_offset_flood_table_size);
1119 		mlxsw_cmd_mbox_config_profile_max_fid_flood_tables_set(
1120 			mbox, profile->max_fid_flood_tables);
1121 		mlxsw_cmd_mbox_config_profile_fid_flood_table_size_set(
1122 			mbox, profile->fid_flood_table_size);
1123 	}
1124 	if (profile->used_flood_mode) {
1125 		mlxsw_cmd_mbox_config_profile_set_flood_mode_set(
1126 			mbox, 1);
1127 		mlxsw_cmd_mbox_config_profile_flood_mode_set(
1128 			mbox, profile->flood_mode);
1129 	}
1130 	if (profile->used_max_ib_mc) {
1131 		mlxsw_cmd_mbox_config_profile_set_max_ib_mc_set(
1132 			mbox, 1);
1133 		mlxsw_cmd_mbox_config_profile_max_ib_mc_set(
1134 			mbox, profile->max_ib_mc);
1135 	}
1136 	if (profile->used_max_pkey) {
1137 		mlxsw_cmd_mbox_config_profile_set_max_pkey_set(
1138 			mbox, 1);
1139 		mlxsw_cmd_mbox_config_profile_max_pkey_set(
1140 			mbox, profile->max_pkey);
1141 	}
1142 	if (profile->used_ar_sec) {
1143 		mlxsw_cmd_mbox_config_profile_set_ar_sec_set(
1144 			mbox, 1);
1145 		mlxsw_cmd_mbox_config_profile_ar_sec_set(
1146 			mbox, profile->ar_sec);
1147 	}
1148 	if (profile->used_adaptive_routing_group_cap) {
1149 		mlxsw_cmd_mbox_config_profile_set_adaptive_routing_group_cap_set(
1150 			mbox, 1);
1151 		mlxsw_cmd_mbox_config_profile_adaptive_routing_group_cap_set(
1152 			mbox, profile->adaptive_routing_group_cap);
1153 	}
1154 	if (profile->used_kvd_sizes && MLXSW_RES_VALID(res, KVD_SIZE)) {
1155 		err = mlxsw_pci_profile_get_kvd_sizes(mlxsw_pci, profile, res);
1156 		if (err)
1157 			return err;
1158 
1159 		mlxsw_cmd_mbox_config_profile_set_kvd_linear_size_set(mbox, 1);
1160 		mlxsw_cmd_mbox_config_profile_kvd_linear_size_set(mbox,
1161 					MLXSW_RES_GET(res, KVD_LINEAR_SIZE));
1162 		mlxsw_cmd_mbox_config_profile_set_kvd_hash_single_size_set(mbox,
1163 									   1);
1164 		mlxsw_cmd_mbox_config_profile_kvd_hash_single_size_set(mbox,
1165 					MLXSW_RES_GET(res, KVD_SINGLE_SIZE));
1166 		mlxsw_cmd_mbox_config_profile_set_kvd_hash_double_size_set(
1167 								mbox, 1);
1168 		mlxsw_cmd_mbox_config_profile_kvd_hash_double_size_set(mbox,
1169 					MLXSW_RES_GET(res, KVD_DOUBLE_SIZE));
1170 	}
1171 
1172 	for (i = 0; i < MLXSW_CONFIG_PROFILE_SWID_COUNT; i++)
1173 		mlxsw_pci_config_profile_swid_config(mlxsw_pci, mbox, i,
1174 						     &profile->swid_config[i]);
1175 
1176 	if (mlxsw_pci->max_cqe_ver > MLXSW_PCI_CQE_V0) {
1177 		mlxsw_cmd_mbox_config_profile_set_cqe_version_set(mbox, 1);
1178 		mlxsw_cmd_mbox_config_profile_cqe_version_set(mbox, 1);
1179 	}
1180 
1181 	return mlxsw_cmd_config_profile_set(mlxsw_pci->core, mbox);
1182 }
1183 
1184 static int mlxsw_pci_boardinfo(struct mlxsw_pci *mlxsw_pci, char *mbox)
1185 {
1186 	struct mlxsw_bus_info *bus_info = &mlxsw_pci->bus_info;
1187 	int err;
1188 
1189 	mlxsw_cmd_mbox_zero(mbox);
1190 	err = mlxsw_cmd_boardinfo(mlxsw_pci->core, mbox);
1191 	if (err)
1192 		return err;
1193 	mlxsw_cmd_mbox_boardinfo_vsd_memcpy_from(mbox, bus_info->vsd);
1194 	mlxsw_cmd_mbox_boardinfo_psid_memcpy_from(mbox, bus_info->psid);
1195 	return 0;
1196 }
1197 
1198 static int mlxsw_pci_fw_area_init(struct mlxsw_pci *mlxsw_pci, char *mbox,
1199 				  u16 num_pages)
1200 {
1201 	struct mlxsw_pci_mem_item *mem_item;
1202 	int nent = 0;
1203 	int i;
1204 	int err;
1205 
1206 	mlxsw_pci->fw_area.items = kcalloc(num_pages, sizeof(*mem_item),
1207 					   GFP_KERNEL);
1208 	if (!mlxsw_pci->fw_area.items)
1209 		return -ENOMEM;
1210 	mlxsw_pci->fw_area.count = num_pages;
1211 
1212 	mlxsw_cmd_mbox_zero(mbox);
1213 	for (i = 0; i < num_pages; i++) {
1214 		mem_item = &mlxsw_pci->fw_area.items[i];
1215 
1216 		mem_item->size = MLXSW_PCI_PAGE_SIZE;
1217 		mem_item->buf = pci_alloc_consistent(mlxsw_pci->pdev,
1218 						     mem_item->size,
1219 						     &mem_item->mapaddr);
1220 		if (!mem_item->buf) {
1221 			err = -ENOMEM;
1222 			goto err_alloc;
1223 		}
1224 		mlxsw_cmd_mbox_map_fa_pa_set(mbox, nent, mem_item->mapaddr);
1225 		mlxsw_cmd_mbox_map_fa_log2size_set(mbox, nent, 0); /* 1 page */
1226 		if (++nent == MLXSW_CMD_MAP_FA_VPM_ENTRIES_MAX) {
1227 			err = mlxsw_cmd_map_fa(mlxsw_pci->core, mbox, nent);
1228 			if (err)
1229 				goto err_cmd_map_fa;
1230 			nent = 0;
1231 			mlxsw_cmd_mbox_zero(mbox);
1232 		}
1233 	}
1234 
1235 	if (nent) {
1236 		err = mlxsw_cmd_map_fa(mlxsw_pci->core, mbox, nent);
1237 		if (err)
1238 			goto err_cmd_map_fa;
1239 	}
1240 
1241 	return 0;
1242 
1243 err_cmd_map_fa:
1244 err_alloc:
1245 	for (i--; i >= 0; i--) {
1246 		mem_item = &mlxsw_pci->fw_area.items[i];
1247 
1248 		pci_free_consistent(mlxsw_pci->pdev, mem_item->size,
1249 				    mem_item->buf, mem_item->mapaddr);
1250 	}
1251 	kfree(mlxsw_pci->fw_area.items);
1252 	return err;
1253 }
1254 
1255 static void mlxsw_pci_fw_area_fini(struct mlxsw_pci *mlxsw_pci)
1256 {
1257 	struct mlxsw_pci_mem_item *mem_item;
1258 	int i;
1259 
1260 	mlxsw_cmd_unmap_fa(mlxsw_pci->core);
1261 
1262 	for (i = 0; i < mlxsw_pci->fw_area.count; i++) {
1263 		mem_item = &mlxsw_pci->fw_area.items[i];
1264 
1265 		pci_free_consistent(mlxsw_pci->pdev, mem_item->size,
1266 				    mem_item->buf, mem_item->mapaddr);
1267 	}
1268 	kfree(mlxsw_pci->fw_area.items);
1269 }
1270 
1271 static irqreturn_t mlxsw_pci_eq_irq_handler(int irq, void *dev_id)
1272 {
1273 	struct mlxsw_pci *mlxsw_pci = dev_id;
1274 	struct mlxsw_pci_queue *q;
1275 	int i;
1276 
1277 	for (i = 0; i < MLXSW_PCI_EQS_COUNT; i++) {
1278 		q = mlxsw_pci_eq_get(mlxsw_pci, i);
1279 		mlxsw_pci_queue_tasklet_schedule(q);
1280 	}
1281 	return IRQ_HANDLED;
1282 }
1283 
1284 static int mlxsw_pci_mbox_alloc(struct mlxsw_pci *mlxsw_pci,
1285 				struct mlxsw_pci_mem_item *mbox)
1286 {
1287 	struct pci_dev *pdev = mlxsw_pci->pdev;
1288 	int err = 0;
1289 
1290 	mbox->size = MLXSW_CMD_MBOX_SIZE;
1291 	mbox->buf = pci_alloc_consistent(pdev, MLXSW_CMD_MBOX_SIZE,
1292 					 &mbox->mapaddr);
1293 	if (!mbox->buf) {
1294 		dev_err(&pdev->dev, "Failed allocating memory for mailbox\n");
1295 		err = -ENOMEM;
1296 	}
1297 
1298 	return err;
1299 }
1300 
1301 static void mlxsw_pci_mbox_free(struct mlxsw_pci *mlxsw_pci,
1302 				struct mlxsw_pci_mem_item *mbox)
1303 {
1304 	struct pci_dev *pdev = mlxsw_pci->pdev;
1305 
1306 	pci_free_consistent(pdev, MLXSW_CMD_MBOX_SIZE, mbox->buf,
1307 			    mbox->mapaddr);
1308 }
1309 
1310 static int mlxsw_pci_sw_reset(struct mlxsw_pci *mlxsw_pci,
1311 			      const struct pci_device_id *id)
1312 {
1313 	unsigned long end;
1314 	char mrsr_pl[MLXSW_REG_MRSR_LEN];
1315 	int err;
1316 
1317 	mlxsw_reg_mrsr_pack(mrsr_pl);
1318 	err = mlxsw_reg_write(mlxsw_pci->core, MLXSW_REG(mrsr), mrsr_pl);
1319 	if (err)
1320 		return err;
1321 	if (id->device == PCI_DEVICE_ID_MELLANOX_SWITCHX2) {
1322 		msleep(MLXSW_PCI_SW_RESET_TIMEOUT_MSECS);
1323 		return 0;
1324 	}
1325 
1326 	/* We must wait for the HW to become responsive once again. */
1327 	msleep(MLXSW_PCI_SW_RESET_WAIT_MSECS);
1328 
1329 	end = jiffies + msecs_to_jiffies(MLXSW_PCI_SW_RESET_TIMEOUT_MSECS);
1330 	do {
1331 		u32 val = mlxsw_pci_read32(mlxsw_pci, FW_READY);
1332 
1333 		if ((val & MLXSW_PCI_FW_READY_MASK) == MLXSW_PCI_FW_READY_MAGIC)
1334 			return 0;
1335 		cond_resched();
1336 	} while (time_before(jiffies, end));
1337 	return -EBUSY;
1338 }
1339 
1340 static int mlxsw_pci_alloc_irq_vectors(struct mlxsw_pci *mlxsw_pci)
1341 {
1342 	int err;
1343 
1344 	err = pci_alloc_irq_vectors(mlxsw_pci->pdev, 1, 1, PCI_IRQ_MSIX);
1345 	if (err < 0)
1346 		dev_err(&mlxsw_pci->pdev->dev, "MSI-X init failed\n");
1347 	return err;
1348 }
1349 
1350 static void mlxsw_pci_free_irq_vectors(struct mlxsw_pci *mlxsw_pci)
1351 {
1352 	pci_free_irq_vectors(mlxsw_pci->pdev);
1353 }
1354 
1355 static int mlxsw_pci_init(void *bus_priv, struct mlxsw_core *mlxsw_core,
1356 			  const struct mlxsw_config_profile *profile,
1357 			  struct mlxsw_res *res)
1358 {
1359 	struct mlxsw_pci *mlxsw_pci = bus_priv;
1360 	struct pci_dev *pdev = mlxsw_pci->pdev;
1361 	char *mbox;
1362 	u16 num_pages;
1363 	int err;
1364 
1365 	mutex_init(&mlxsw_pci->cmd.lock);
1366 	init_waitqueue_head(&mlxsw_pci->cmd.wait);
1367 
1368 	mlxsw_pci->core = mlxsw_core;
1369 
1370 	mbox = mlxsw_cmd_mbox_alloc();
1371 	if (!mbox)
1372 		return -ENOMEM;
1373 
1374 	err = mlxsw_pci_mbox_alloc(mlxsw_pci, &mlxsw_pci->cmd.in_mbox);
1375 	if (err)
1376 		goto mbox_put;
1377 
1378 	err = mlxsw_pci_mbox_alloc(mlxsw_pci, &mlxsw_pci->cmd.out_mbox);
1379 	if (err)
1380 		goto err_out_mbox_alloc;
1381 
1382 	err = mlxsw_pci_sw_reset(mlxsw_pci, mlxsw_pci->id);
1383 	if (err)
1384 		goto err_sw_reset;
1385 
1386 	err = mlxsw_pci_alloc_irq_vectors(mlxsw_pci);
1387 	if (err < 0) {
1388 		dev_err(&pdev->dev, "MSI-X init failed\n");
1389 		goto err_alloc_irq;
1390 	}
1391 
1392 	err = mlxsw_cmd_query_fw(mlxsw_core, mbox);
1393 	if (err)
1394 		goto err_query_fw;
1395 
1396 	mlxsw_pci->bus_info.fw_rev.major =
1397 		mlxsw_cmd_mbox_query_fw_fw_rev_major_get(mbox);
1398 	mlxsw_pci->bus_info.fw_rev.minor =
1399 		mlxsw_cmd_mbox_query_fw_fw_rev_minor_get(mbox);
1400 	mlxsw_pci->bus_info.fw_rev.subminor =
1401 		mlxsw_cmd_mbox_query_fw_fw_rev_subminor_get(mbox);
1402 
1403 	if (mlxsw_cmd_mbox_query_fw_cmd_interface_rev_get(mbox) != 1) {
1404 		dev_err(&pdev->dev, "Unsupported cmd interface revision ID queried from hw\n");
1405 		err = -EINVAL;
1406 		goto err_iface_rev;
1407 	}
1408 	if (mlxsw_cmd_mbox_query_fw_doorbell_page_bar_get(mbox) != 0) {
1409 		dev_err(&pdev->dev, "Unsupported doorbell page bar queried from hw\n");
1410 		err = -EINVAL;
1411 		goto err_doorbell_page_bar;
1412 	}
1413 
1414 	mlxsw_pci->doorbell_offset =
1415 		mlxsw_cmd_mbox_query_fw_doorbell_page_offset_get(mbox);
1416 
1417 	num_pages = mlxsw_cmd_mbox_query_fw_fw_pages_get(mbox);
1418 	err = mlxsw_pci_fw_area_init(mlxsw_pci, mbox, num_pages);
1419 	if (err)
1420 		goto err_fw_area_init;
1421 
1422 	err = mlxsw_pci_boardinfo(mlxsw_pci, mbox);
1423 	if (err)
1424 		goto err_boardinfo;
1425 
1426 	err = mlxsw_core_resources_query(mlxsw_core, mbox, res);
1427 	if (err)
1428 		goto err_query_resources;
1429 
1430 	if (MLXSW_CORE_RES_VALID(mlxsw_core, CQE_V2) &&
1431 	    MLXSW_CORE_RES_GET(mlxsw_core, CQE_V2))
1432 		mlxsw_pci->max_cqe_ver = MLXSW_PCI_CQE_V2;
1433 	else if (MLXSW_CORE_RES_VALID(mlxsw_core, CQE_V1) &&
1434 		 MLXSW_CORE_RES_GET(mlxsw_core, CQE_V1))
1435 		mlxsw_pci->max_cqe_ver = MLXSW_PCI_CQE_V1;
1436 	else if ((MLXSW_CORE_RES_VALID(mlxsw_core, CQE_V0) &&
1437 		  MLXSW_CORE_RES_GET(mlxsw_core, CQE_V0)) ||
1438 		 !MLXSW_CORE_RES_VALID(mlxsw_core, CQE_V0)) {
1439 		mlxsw_pci->max_cqe_ver = MLXSW_PCI_CQE_V0;
1440 	} else {
1441 		dev_err(&pdev->dev, "Invalid supported CQE version combination reported\n");
1442 		goto err_cqe_v_check;
1443 	}
1444 
1445 	err = mlxsw_pci_config_profile(mlxsw_pci, mbox, profile, res);
1446 	if (err)
1447 		goto err_config_profile;
1448 
1449 	err = mlxsw_pci_aqs_init(mlxsw_pci, mbox);
1450 	if (err)
1451 		goto err_aqs_init;
1452 
1453 	err = request_irq(pci_irq_vector(pdev, 0),
1454 			  mlxsw_pci_eq_irq_handler, 0,
1455 			  mlxsw_pci->bus_info.device_kind, mlxsw_pci);
1456 	if (err) {
1457 		dev_err(&pdev->dev, "IRQ request failed\n");
1458 		goto err_request_eq_irq;
1459 	}
1460 
1461 	goto mbox_put;
1462 
1463 err_request_eq_irq:
1464 	mlxsw_pci_aqs_fini(mlxsw_pci);
1465 err_aqs_init:
1466 err_config_profile:
1467 err_cqe_v_check:
1468 err_query_resources:
1469 err_boardinfo:
1470 	mlxsw_pci_fw_area_fini(mlxsw_pci);
1471 err_fw_area_init:
1472 err_doorbell_page_bar:
1473 err_iface_rev:
1474 err_query_fw:
1475 	mlxsw_pci_free_irq_vectors(mlxsw_pci);
1476 err_alloc_irq:
1477 err_sw_reset:
1478 	mlxsw_pci_mbox_free(mlxsw_pci, &mlxsw_pci->cmd.out_mbox);
1479 err_out_mbox_alloc:
1480 	mlxsw_pci_mbox_free(mlxsw_pci, &mlxsw_pci->cmd.in_mbox);
1481 mbox_put:
1482 	mlxsw_cmd_mbox_free(mbox);
1483 	return err;
1484 }
1485 
1486 static void mlxsw_pci_fini(void *bus_priv)
1487 {
1488 	struct mlxsw_pci *mlxsw_pci = bus_priv;
1489 
1490 	free_irq(pci_irq_vector(mlxsw_pci->pdev, 0), mlxsw_pci);
1491 	mlxsw_pci_aqs_fini(mlxsw_pci);
1492 	mlxsw_pci_fw_area_fini(mlxsw_pci);
1493 	mlxsw_pci_free_irq_vectors(mlxsw_pci);
1494 	mlxsw_pci_mbox_free(mlxsw_pci, &mlxsw_pci->cmd.out_mbox);
1495 	mlxsw_pci_mbox_free(mlxsw_pci, &mlxsw_pci->cmd.in_mbox);
1496 }
1497 
1498 static struct mlxsw_pci_queue *
1499 mlxsw_pci_sdq_pick(struct mlxsw_pci *mlxsw_pci,
1500 		   const struct mlxsw_tx_info *tx_info)
1501 {
1502 	u8 sdqn = tx_info->local_port % mlxsw_pci_sdq_count(mlxsw_pci);
1503 
1504 	return mlxsw_pci_sdq_get(mlxsw_pci, sdqn);
1505 }
1506 
1507 static bool mlxsw_pci_skb_transmit_busy(void *bus_priv,
1508 					const struct mlxsw_tx_info *tx_info)
1509 {
1510 	struct mlxsw_pci *mlxsw_pci = bus_priv;
1511 	struct mlxsw_pci_queue *q = mlxsw_pci_sdq_pick(mlxsw_pci, tx_info);
1512 
1513 	return !mlxsw_pci_queue_elem_info_producer_get(q);
1514 }
1515 
1516 static int mlxsw_pci_skb_transmit(void *bus_priv, struct sk_buff *skb,
1517 				  const struct mlxsw_tx_info *tx_info)
1518 {
1519 	struct mlxsw_pci *mlxsw_pci = bus_priv;
1520 	struct mlxsw_pci_queue *q;
1521 	struct mlxsw_pci_queue_elem_info *elem_info;
1522 	char *wqe;
1523 	int i;
1524 	int err;
1525 
1526 	if (skb_shinfo(skb)->nr_frags > MLXSW_PCI_WQE_SG_ENTRIES - 1) {
1527 		err = skb_linearize(skb);
1528 		if (err)
1529 			return err;
1530 	}
1531 
1532 	q = mlxsw_pci_sdq_pick(mlxsw_pci, tx_info);
1533 	spin_lock_bh(&q->lock);
1534 	elem_info = mlxsw_pci_queue_elem_info_producer_get(q);
1535 	if (!elem_info) {
1536 		/* queue is full */
1537 		err = -EAGAIN;
1538 		goto unlock;
1539 	}
1540 	elem_info->u.sdq.skb = skb;
1541 
1542 	wqe = elem_info->elem;
1543 	mlxsw_pci_wqe_c_set(wqe, 1); /* always report completion */
1544 	mlxsw_pci_wqe_lp_set(wqe, !!tx_info->is_emad);
1545 	mlxsw_pci_wqe_type_set(wqe, MLXSW_PCI_WQE_TYPE_ETHERNET);
1546 
1547 	err = mlxsw_pci_wqe_frag_map(mlxsw_pci, wqe, 0, skb->data,
1548 				     skb_headlen(skb), DMA_TO_DEVICE);
1549 	if (err)
1550 		goto unlock;
1551 
1552 	for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1553 		const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
1554 
1555 		err = mlxsw_pci_wqe_frag_map(mlxsw_pci, wqe, i + 1,
1556 					     skb_frag_address(frag),
1557 					     skb_frag_size(frag),
1558 					     DMA_TO_DEVICE);
1559 		if (err)
1560 			goto unmap_frags;
1561 	}
1562 
1563 	/* Set unused sq entries byte count to zero. */
1564 	for (i++; i < MLXSW_PCI_WQE_SG_ENTRIES; i++)
1565 		mlxsw_pci_wqe_byte_count_set(wqe, i, 0);
1566 
1567 	/* Everything is set up, ring producer doorbell to get HW going */
1568 	q->producer_counter++;
1569 	mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci, q);
1570 
1571 	goto unlock;
1572 
1573 unmap_frags:
1574 	for (; i >= 0; i--)
1575 		mlxsw_pci_wqe_frag_unmap(mlxsw_pci, wqe, i, DMA_TO_DEVICE);
1576 unlock:
1577 	spin_unlock_bh(&q->lock);
1578 	return err;
1579 }
1580 
1581 static int mlxsw_pci_cmd_exec(void *bus_priv, u16 opcode, u8 opcode_mod,
1582 			      u32 in_mod, bool out_mbox_direct,
1583 			      char *in_mbox, size_t in_mbox_size,
1584 			      char *out_mbox, size_t out_mbox_size,
1585 			      u8 *p_status)
1586 {
1587 	struct mlxsw_pci *mlxsw_pci = bus_priv;
1588 	dma_addr_t in_mapaddr = 0, out_mapaddr = 0;
1589 	bool evreq = mlxsw_pci->cmd.nopoll;
1590 	unsigned long timeout = msecs_to_jiffies(MLXSW_PCI_CIR_TIMEOUT_MSECS);
1591 	bool *p_wait_done = &mlxsw_pci->cmd.wait_done;
1592 	int err;
1593 
1594 	*p_status = MLXSW_CMD_STATUS_OK;
1595 
1596 	err = mutex_lock_interruptible(&mlxsw_pci->cmd.lock);
1597 	if (err)
1598 		return err;
1599 
1600 	if (in_mbox) {
1601 		memcpy(mlxsw_pci->cmd.in_mbox.buf, in_mbox, in_mbox_size);
1602 		in_mapaddr = mlxsw_pci->cmd.in_mbox.mapaddr;
1603 	}
1604 	mlxsw_pci_write32(mlxsw_pci, CIR_IN_PARAM_HI, upper_32_bits(in_mapaddr));
1605 	mlxsw_pci_write32(mlxsw_pci, CIR_IN_PARAM_LO, lower_32_bits(in_mapaddr));
1606 
1607 	if (out_mbox)
1608 		out_mapaddr = mlxsw_pci->cmd.out_mbox.mapaddr;
1609 	mlxsw_pci_write32(mlxsw_pci, CIR_OUT_PARAM_HI, upper_32_bits(out_mapaddr));
1610 	mlxsw_pci_write32(mlxsw_pci, CIR_OUT_PARAM_LO, lower_32_bits(out_mapaddr));
1611 
1612 	mlxsw_pci_write32(mlxsw_pci, CIR_IN_MODIFIER, in_mod);
1613 	mlxsw_pci_write32(mlxsw_pci, CIR_TOKEN, 0);
1614 
1615 	*p_wait_done = false;
1616 
1617 	wmb(); /* all needs to be written before we write control register */
1618 	mlxsw_pci_write32(mlxsw_pci, CIR_CTRL,
1619 			  MLXSW_PCI_CIR_CTRL_GO_BIT |
1620 			  (evreq ? MLXSW_PCI_CIR_CTRL_EVREQ_BIT : 0) |
1621 			  (opcode_mod << MLXSW_PCI_CIR_CTRL_OPCODE_MOD_SHIFT) |
1622 			  opcode);
1623 
1624 	if (!evreq) {
1625 		unsigned long end;
1626 
1627 		end = jiffies + timeout;
1628 		do {
1629 			u32 ctrl = mlxsw_pci_read32(mlxsw_pci, CIR_CTRL);
1630 
1631 			if (!(ctrl & MLXSW_PCI_CIR_CTRL_GO_BIT)) {
1632 				*p_wait_done = true;
1633 				*p_status = ctrl >> MLXSW_PCI_CIR_CTRL_STATUS_SHIFT;
1634 				break;
1635 			}
1636 			cond_resched();
1637 		} while (time_before(jiffies, end));
1638 	} else {
1639 		wait_event_timeout(mlxsw_pci->cmd.wait, *p_wait_done, timeout);
1640 		*p_status = mlxsw_pci->cmd.comp.status;
1641 	}
1642 
1643 	err = 0;
1644 	if (*p_wait_done) {
1645 		if (*p_status)
1646 			err = -EIO;
1647 	} else {
1648 		err = -ETIMEDOUT;
1649 	}
1650 
1651 	if (!err && out_mbox && out_mbox_direct) {
1652 		/* Some commands don't use output param as address to mailbox
1653 		 * but they store output directly into registers. In that case,
1654 		 * copy registers into mbox buffer.
1655 		 */
1656 		__be32 tmp;
1657 
1658 		if (!evreq) {
1659 			tmp = cpu_to_be32(mlxsw_pci_read32(mlxsw_pci,
1660 							   CIR_OUT_PARAM_HI));
1661 			memcpy(out_mbox, &tmp, sizeof(tmp));
1662 			tmp = cpu_to_be32(mlxsw_pci_read32(mlxsw_pci,
1663 							   CIR_OUT_PARAM_LO));
1664 			memcpy(out_mbox + sizeof(tmp), &tmp, sizeof(tmp));
1665 		}
1666 	} else if (!err && out_mbox) {
1667 		memcpy(out_mbox, mlxsw_pci->cmd.out_mbox.buf, out_mbox_size);
1668 	}
1669 
1670 	mutex_unlock(&mlxsw_pci->cmd.lock);
1671 
1672 	return err;
1673 }
1674 
1675 static const struct mlxsw_bus mlxsw_pci_bus = {
1676 	.kind			= "pci",
1677 	.init			= mlxsw_pci_init,
1678 	.fini			= mlxsw_pci_fini,
1679 	.skb_transmit_busy	= mlxsw_pci_skb_transmit_busy,
1680 	.skb_transmit		= mlxsw_pci_skb_transmit,
1681 	.cmd_exec		= mlxsw_pci_cmd_exec,
1682 	.features		= MLXSW_BUS_F_TXRX | MLXSW_BUS_F_RESET,
1683 };
1684 
1685 static int mlxsw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
1686 {
1687 	const char *driver_name = pdev->driver->name;
1688 	struct mlxsw_pci *mlxsw_pci;
1689 	int err;
1690 
1691 	mlxsw_pci = kzalloc(sizeof(*mlxsw_pci), GFP_KERNEL);
1692 	if (!mlxsw_pci)
1693 		return -ENOMEM;
1694 
1695 	err = pci_enable_device(pdev);
1696 	if (err) {
1697 		dev_err(&pdev->dev, "pci_enable_device failed\n");
1698 		goto err_pci_enable_device;
1699 	}
1700 
1701 	err = pci_request_regions(pdev, driver_name);
1702 	if (err) {
1703 		dev_err(&pdev->dev, "pci_request_regions failed\n");
1704 		goto err_pci_request_regions;
1705 	}
1706 
1707 	err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
1708 	if (!err) {
1709 		err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
1710 		if (err) {
1711 			dev_err(&pdev->dev, "pci_set_consistent_dma_mask failed\n");
1712 			goto err_pci_set_dma_mask;
1713 		}
1714 	} else {
1715 		err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
1716 		if (err) {
1717 			dev_err(&pdev->dev, "pci_set_dma_mask failed\n");
1718 			goto err_pci_set_dma_mask;
1719 		}
1720 	}
1721 
1722 	if (pci_resource_len(pdev, 0) < MLXSW_PCI_BAR0_SIZE) {
1723 		dev_err(&pdev->dev, "invalid PCI region size\n");
1724 		err = -EINVAL;
1725 		goto err_pci_resource_len_check;
1726 	}
1727 
1728 	mlxsw_pci->hw_addr = ioremap(pci_resource_start(pdev, 0),
1729 				     pci_resource_len(pdev, 0));
1730 	if (!mlxsw_pci->hw_addr) {
1731 		dev_err(&pdev->dev, "ioremap failed\n");
1732 		err = -EIO;
1733 		goto err_ioremap;
1734 	}
1735 	pci_set_master(pdev);
1736 
1737 	mlxsw_pci->pdev = pdev;
1738 	pci_set_drvdata(pdev, mlxsw_pci);
1739 
1740 	mlxsw_pci->bus_info.device_kind = driver_name;
1741 	mlxsw_pci->bus_info.device_name = pci_name(mlxsw_pci->pdev);
1742 	mlxsw_pci->bus_info.dev = &pdev->dev;
1743 	mlxsw_pci->id = id;
1744 
1745 	err = mlxsw_core_bus_device_register(&mlxsw_pci->bus_info,
1746 					     &mlxsw_pci_bus, mlxsw_pci, false,
1747 					     NULL);
1748 	if (err) {
1749 		dev_err(&pdev->dev, "cannot register bus device\n");
1750 		goto err_bus_device_register;
1751 	}
1752 
1753 	return 0;
1754 
1755 err_bus_device_register:
1756 	iounmap(mlxsw_pci->hw_addr);
1757 err_ioremap:
1758 err_pci_resource_len_check:
1759 err_pci_set_dma_mask:
1760 	pci_release_regions(pdev);
1761 err_pci_request_regions:
1762 	pci_disable_device(pdev);
1763 err_pci_enable_device:
1764 	kfree(mlxsw_pci);
1765 	return err;
1766 }
1767 
1768 static void mlxsw_pci_remove(struct pci_dev *pdev)
1769 {
1770 	struct mlxsw_pci *mlxsw_pci = pci_get_drvdata(pdev);
1771 
1772 	mlxsw_core_bus_device_unregister(mlxsw_pci->core, false);
1773 	iounmap(mlxsw_pci->hw_addr);
1774 	pci_release_regions(mlxsw_pci->pdev);
1775 	pci_disable_device(mlxsw_pci->pdev);
1776 	kfree(mlxsw_pci);
1777 }
1778 
1779 int mlxsw_pci_driver_register(struct pci_driver *pci_driver)
1780 {
1781 	pci_driver->probe = mlxsw_pci_probe;
1782 	pci_driver->remove = mlxsw_pci_remove;
1783 	return pci_register_driver(pci_driver);
1784 }
1785 EXPORT_SYMBOL(mlxsw_pci_driver_register);
1786 
1787 void mlxsw_pci_driver_unregister(struct pci_driver *pci_driver)
1788 {
1789 	pci_unregister_driver(pci_driver);
1790 }
1791 EXPORT_SYMBOL(mlxsw_pci_driver_unregister);
1792 
1793 static int __init mlxsw_pci_module_init(void)
1794 {
1795 	return 0;
1796 }
1797 
1798 static void __exit mlxsw_pci_module_exit(void)
1799 {
1800 }
1801 
1802 module_init(mlxsw_pci_module_init);
1803 module_exit(mlxsw_pci_module_exit);
1804 
1805 MODULE_LICENSE("Dual BSD/GPL");
1806 MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
1807 MODULE_DESCRIPTION("Mellanox switch PCI interface driver");
1808