1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
2 /* Copyright (c) 2015-2018 Mellanox Technologies. All rights reserved */
4 #include <linux/kernel.h>
5 #include <linux/module.h>
6 #include <linux/export.h>
8 #include <linux/device.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>
23 #include "resources.h"
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))
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
,
37 #define MLXSW_PCI_QUEUE_TYPE_COUNT 4
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 */
46 static const u16 mlxsw_pci_doorbell_arm_type_offset
[] = {
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 */
53 struct mlxsw_pci_mem_item
{
59 struct mlxsw_pci_queue_elem_info
{
60 char *elem
; /* pointer to actual dma mapped element mem chunk */
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
;
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
;
87 enum mlxsw_pci_cqe_v v
;
97 struct mlxsw_pci_queue_type_group
{
98 struct mlxsw_pci_queue
*q
;
99 u8 count
; /* number of queues in group */
103 struct pci_dev
*pdev
;
105 u64 free_running_clock_offset
;
106 struct mlxsw_pci_queue_type_group queues
[MLXSW_PCI_QUEUE_TYPE_COUNT
];
108 struct mlxsw_core
*core
;
110 struct mlxsw_pci_mem_item
*items
;
114 struct mlxsw_pci_mem_item out_mbox
;
115 struct mlxsw_pci_mem_item in_mbox
;
116 struct mutex lock
; /* Lock access to command registers */
118 wait_queue_head_t wait
;
125 struct mlxsw_bus_info bus_info
;
126 const struct pci_device_id
*id
;
127 enum mlxsw_pci_cqe_v max_cqe_ver
; /* Maximal supported CQE version */
128 u8 num_sdq_cqs
; /* Number of CQs used for SDQs */
131 static void mlxsw_pci_queue_tasklet_schedule(struct mlxsw_pci_queue
*q
)
133 tasklet_schedule(&q
->tasklet
);
136 static char *__mlxsw_pci_queue_elem_get(struct mlxsw_pci_queue
*q
,
137 size_t elem_size
, int elem_index
)
139 return q
->mem_item
.buf
+ (elem_size
* elem_index
);
142 static struct mlxsw_pci_queue_elem_info
*
143 mlxsw_pci_queue_elem_info_get(struct mlxsw_pci_queue
*q
, int elem_index
)
145 return &q
->elem_info
[elem_index
];
148 static struct mlxsw_pci_queue_elem_info
*
149 mlxsw_pci_queue_elem_info_producer_get(struct mlxsw_pci_queue
*q
)
151 int index
= q
->producer_counter
& (q
->count
- 1);
153 if ((u16
) (q
->producer_counter
- q
->consumer_counter
) == q
->count
)
155 return mlxsw_pci_queue_elem_info_get(q
, index
);
158 static struct mlxsw_pci_queue_elem_info
*
159 mlxsw_pci_queue_elem_info_consumer_get(struct mlxsw_pci_queue
*q
)
161 int index
= q
->consumer_counter
& (q
->count
- 1);
163 return mlxsw_pci_queue_elem_info_get(q
, index
);
166 static char *mlxsw_pci_queue_elem_get(struct mlxsw_pci_queue
*q
, int elem_index
)
168 return mlxsw_pci_queue_elem_info_get(q
, elem_index
)->elem
;
171 static bool mlxsw_pci_elem_hw_owned(struct mlxsw_pci_queue
*q
, bool owner_bit
)
173 return owner_bit
!= !!(q
->consumer_counter
& q
->count
);
176 static struct mlxsw_pci_queue_type_group
*
177 mlxsw_pci_queue_type_group_get(struct mlxsw_pci
*mlxsw_pci
,
178 enum mlxsw_pci_queue_type q_type
)
180 return &mlxsw_pci
->queues
[q_type
];
183 static u8
__mlxsw_pci_queue_count(struct mlxsw_pci
*mlxsw_pci
,
184 enum mlxsw_pci_queue_type q_type
)
186 struct mlxsw_pci_queue_type_group
*queue_group
;
188 queue_group
= mlxsw_pci_queue_type_group_get(mlxsw_pci
, q_type
);
189 return queue_group
->count
;
192 static u8
mlxsw_pci_sdq_count(struct mlxsw_pci
*mlxsw_pci
)
194 return __mlxsw_pci_queue_count(mlxsw_pci
, MLXSW_PCI_QUEUE_TYPE_SDQ
);
197 static u8
mlxsw_pci_cq_count(struct mlxsw_pci
*mlxsw_pci
)
199 return __mlxsw_pci_queue_count(mlxsw_pci
, MLXSW_PCI_QUEUE_TYPE_CQ
);
202 static struct mlxsw_pci_queue
*
203 __mlxsw_pci_queue_get(struct mlxsw_pci
*mlxsw_pci
,
204 enum mlxsw_pci_queue_type q_type
, u8 q_num
)
206 return &mlxsw_pci
->queues
[q_type
].q
[q_num
];
209 static struct mlxsw_pci_queue
*mlxsw_pci_sdq_get(struct mlxsw_pci
*mlxsw_pci
,
212 return __mlxsw_pci_queue_get(mlxsw_pci
,
213 MLXSW_PCI_QUEUE_TYPE_SDQ
, q_num
);
216 static struct mlxsw_pci_queue
*mlxsw_pci_rdq_get(struct mlxsw_pci
*mlxsw_pci
,
219 return __mlxsw_pci_queue_get(mlxsw_pci
,
220 MLXSW_PCI_QUEUE_TYPE_RDQ
, q_num
);
223 static struct mlxsw_pci_queue
*mlxsw_pci_cq_get(struct mlxsw_pci
*mlxsw_pci
,
226 return __mlxsw_pci_queue_get(mlxsw_pci
, MLXSW_PCI_QUEUE_TYPE_CQ
, q_num
);
229 static struct mlxsw_pci_queue
*mlxsw_pci_eq_get(struct mlxsw_pci
*mlxsw_pci
,
232 return __mlxsw_pci_queue_get(mlxsw_pci
, MLXSW_PCI_QUEUE_TYPE_EQ
, q_num
);
235 static void __mlxsw_pci_queue_doorbell_set(struct mlxsw_pci
*mlxsw_pci
,
236 struct mlxsw_pci_queue
*q
,
239 mlxsw_pci_write32(mlxsw_pci
,
240 DOORBELL(mlxsw_pci
->doorbell_offset
,
241 mlxsw_pci_doorbell_type_offset
[q
->type
],
245 static void __mlxsw_pci_queue_doorbell_arm_set(struct mlxsw_pci
*mlxsw_pci
,
246 struct mlxsw_pci_queue
*q
,
249 mlxsw_pci_write32(mlxsw_pci
,
250 DOORBELL(mlxsw_pci
->doorbell_offset
,
251 mlxsw_pci_doorbell_arm_type_offset
[q
->type
],
255 static void mlxsw_pci_queue_doorbell_producer_ring(struct mlxsw_pci
*mlxsw_pci
,
256 struct mlxsw_pci_queue
*q
)
258 wmb(); /* ensure all writes are done before we ring a bell */
259 __mlxsw_pci_queue_doorbell_set(mlxsw_pci
, q
, q
->producer_counter
);
262 static void mlxsw_pci_queue_doorbell_consumer_ring(struct mlxsw_pci
*mlxsw_pci
,
263 struct mlxsw_pci_queue
*q
)
265 wmb(); /* ensure all writes are done before we ring a bell */
266 __mlxsw_pci_queue_doorbell_set(mlxsw_pci
, q
,
267 q
->consumer_counter
+ q
->count
);
271 mlxsw_pci_queue_doorbell_arm_consumer_ring(struct mlxsw_pci
*mlxsw_pci
,
272 struct mlxsw_pci_queue
*q
)
274 wmb(); /* ensure all writes are done before we ring a bell */
275 __mlxsw_pci_queue_doorbell_arm_set(mlxsw_pci
, q
, q
->consumer_counter
);
278 static dma_addr_t
__mlxsw_pci_queue_page_get(struct mlxsw_pci_queue
*q
,
281 return q
->mem_item
.mapaddr
+ MLXSW_PCI_PAGE_SIZE
* page_index
;
284 static int mlxsw_pci_sdq_init(struct mlxsw_pci
*mlxsw_pci
, char *mbox
,
285 struct mlxsw_pci_queue
*q
)
291 q
->producer_counter
= 0;
292 q
->consumer_counter
= 0;
293 tclass
= q
->num
== MLXSW_PCI_SDQ_EMAD_INDEX
? MLXSW_PCI_SDQ_EMAD_TC
:
294 MLXSW_PCI_SDQ_CTL_TC
;
296 /* Set CQ of same number of this SDQ. */
297 mlxsw_cmd_mbox_sw2hw_dq_cq_set(mbox
, q
->num
);
298 mlxsw_cmd_mbox_sw2hw_dq_sdq_tclass_set(mbox
, tclass
);
299 mlxsw_cmd_mbox_sw2hw_dq_log2_dq_sz_set(mbox
, 3); /* 8 pages */
300 for (i
= 0; i
< MLXSW_PCI_AQ_PAGES
; i
++) {
301 dma_addr_t mapaddr
= __mlxsw_pci_queue_page_get(q
, i
);
303 mlxsw_cmd_mbox_sw2hw_dq_pa_set(mbox
, i
, mapaddr
);
306 err
= mlxsw_cmd_sw2hw_sdq(mlxsw_pci
->core
, mbox
, q
->num
);
309 mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci
, q
);
313 static void mlxsw_pci_sdq_fini(struct mlxsw_pci
*mlxsw_pci
,
314 struct mlxsw_pci_queue
*q
)
316 mlxsw_cmd_hw2sw_sdq(mlxsw_pci
->core
, q
->num
);
319 static int mlxsw_pci_wqe_frag_map(struct mlxsw_pci
*mlxsw_pci
, char *wqe
,
320 int index
, char *frag_data
, size_t frag_len
,
323 struct pci_dev
*pdev
= mlxsw_pci
->pdev
;
326 mapaddr
= pci_map_single(pdev
, frag_data
, frag_len
, direction
);
327 if (unlikely(pci_dma_mapping_error(pdev
, mapaddr
))) {
328 dev_err_ratelimited(&pdev
->dev
, "failed to dma map tx frag\n");
331 mlxsw_pci_wqe_address_set(wqe
, index
, mapaddr
);
332 mlxsw_pci_wqe_byte_count_set(wqe
, index
, frag_len
);
336 static void mlxsw_pci_wqe_frag_unmap(struct mlxsw_pci
*mlxsw_pci
, char *wqe
,
337 int index
, int direction
)
339 struct pci_dev
*pdev
= mlxsw_pci
->pdev
;
340 size_t frag_len
= mlxsw_pci_wqe_byte_count_get(wqe
, index
);
341 dma_addr_t mapaddr
= mlxsw_pci_wqe_address_get(wqe
, index
);
345 pci_unmap_single(pdev
, mapaddr
, frag_len
, direction
);
348 static int mlxsw_pci_rdq_skb_alloc(struct mlxsw_pci
*mlxsw_pci
,
349 struct mlxsw_pci_queue_elem_info
*elem_info
)
351 size_t buf_len
= MLXSW_PORT_MAX_MTU
;
352 char *wqe
= elem_info
->elem
;
356 elem_info
->u
.rdq
.skb
= NULL
;
357 skb
= netdev_alloc_skb_ip_align(NULL
, buf_len
);
361 /* Assume that wqe was previously zeroed. */
363 err
= mlxsw_pci_wqe_frag_map(mlxsw_pci
, wqe
, 0, skb
->data
,
364 buf_len
, DMA_FROM_DEVICE
);
368 elem_info
->u
.rdq
.skb
= skb
;
372 dev_kfree_skb_any(skb
);
376 static void mlxsw_pci_rdq_skb_free(struct mlxsw_pci
*mlxsw_pci
,
377 struct mlxsw_pci_queue_elem_info
*elem_info
)
382 skb
= elem_info
->u
.rdq
.skb
;
383 wqe
= elem_info
->elem
;
385 mlxsw_pci_wqe_frag_unmap(mlxsw_pci
, wqe
, 0, DMA_FROM_DEVICE
);
386 dev_kfree_skb_any(skb
);
389 static int mlxsw_pci_rdq_init(struct mlxsw_pci
*mlxsw_pci
, char *mbox
,
390 struct mlxsw_pci_queue
*q
)
392 struct mlxsw_pci_queue_elem_info
*elem_info
;
393 u8 sdq_count
= mlxsw_pci_sdq_count(mlxsw_pci
);
397 q
->producer_counter
= 0;
398 q
->consumer_counter
= 0;
400 /* Set CQ of same number of this RDQ with base
401 * above SDQ count as the lower ones are assigned to SDQs.
403 mlxsw_cmd_mbox_sw2hw_dq_cq_set(mbox
, sdq_count
+ q
->num
);
404 mlxsw_cmd_mbox_sw2hw_dq_log2_dq_sz_set(mbox
, 3); /* 8 pages */
405 for (i
= 0; i
< MLXSW_PCI_AQ_PAGES
; i
++) {
406 dma_addr_t mapaddr
= __mlxsw_pci_queue_page_get(q
, i
);
408 mlxsw_cmd_mbox_sw2hw_dq_pa_set(mbox
, i
, mapaddr
);
411 err
= mlxsw_cmd_sw2hw_rdq(mlxsw_pci
->core
, mbox
, q
->num
);
415 mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci
, q
);
417 for (i
= 0; i
< q
->count
; i
++) {
418 elem_info
= mlxsw_pci_queue_elem_info_producer_get(q
);
420 err
= mlxsw_pci_rdq_skb_alloc(mlxsw_pci
, elem_info
);
423 /* Everything is set up, ring doorbell to pass elem to HW */
424 q
->producer_counter
++;
425 mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci
, q
);
431 for (i
--; i
>= 0; i
--) {
432 elem_info
= mlxsw_pci_queue_elem_info_get(q
, i
);
433 mlxsw_pci_rdq_skb_free(mlxsw_pci
, elem_info
);
435 mlxsw_cmd_hw2sw_rdq(mlxsw_pci
->core
, q
->num
);
440 static void mlxsw_pci_rdq_fini(struct mlxsw_pci
*mlxsw_pci
,
441 struct mlxsw_pci_queue
*q
)
443 struct mlxsw_pci_queue_elem_info
*elem_info
;
446 mlxsw_cmd_hw2sw_rdq(mlxsw_pci
->core
, q
->num
);
447 for (i
= 0; i
< q
->count
; i
++) {
448 elem_info
= mlxsw_pci_queue_elem_info_get(q
, i
);
449 mlxsw_pci_rdq_skb_free(mlxsw_pci
, elem_info
);
453 static void mlxsw_pci_cq_pre_init(struct mlxsw_pci
*mlxsw_pci
,
454 struct mlxsw_pci_queue
*q
)
456 q
->u
.cq
.v
= mlxsw_pci
->max_cqe_ver
;
458 /* For SDQ it is pointless to use CQEv2, so use CQEv1 instead */
459 if (q
->u
.cq
.v
== MLXSW_PCI_CQE_V2
&&
460 q
->num
< mlxsw_pci
->num_sdq_cqs
)
461 q
->u
.cq
.v
= MLXSW_PCI_CQE_V1
;
464 static int mlxsw_pci_cq_init(struct mlxsw_pci
*mlxsw_pci
, char *mbox
,
465 struct mlxsw_pci_queue
*q
)
470 q
->consumer_counter
= 0;
472 for (i
= 0; i
< q
->count
; i
++) {
473 char *elem
= mlxsw_pci_queue_elem_get(q
, i
);
475 mlxsw_pci_cqe_owner_set(q
->u
.cq
.v
, elem
, 1);
478 if (q
->u
.cq
.v
== MLXSW_PCI_CQE_V1
)
479 mlxsw_cmd_mbox_sw2hw_cq_cqe_ver_set(mbox
,
480 MLXSW_CMD_MBOX_SW2HW_CQ_CQE_VER_1
);
481 else if (q
->u
.cq
.v
== MLXSW_PCI_CQE_V2
)
482 mlxsw_cmd_mbox_sw2hw_cq_cqe_ver_set(mbox
,
483 MLXSW_CMD_MBOX_SW2HW_CQ_CQE_VER_2
);
485 mlxsw_cmd_mbox_sw2hw_cq_c_eqn_set(mbox
, MLXSW_PCI_EQ_COMP_NUM
);
486 mlxsw_cmd_mbox_sw2hw_cq_st_set(mbox
, 0);
487 mlxsw_cmd_mbox_sw2hw_cq_log_cq_size_set(mbox
, ilog2(q
->count
));
488 for (i
= 0; i
< MLXSW_PCI_AQ_PAGES
; i
++) {
489 dma_addr_t mapaddr
= __mlxsw_pci_queue_page_get(q
, i
);
491 mlxsw_cmd_mbox_sw2hw_cq_pa_set(mbox
, i
, mapaddr
);
493 err
= mlxsw_cmd_sw2hw_cq(mlxsw_pci
->core
, mbox
, q
->num
);
496 mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci
, q
);
497 mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci
, q
);
501 static void mlxsw_pci_cq_fini(struct mlxsw_pci
*mlxsw_pci
,
502 struct mlxsw_pci_queue
*q
)
504 mlxsw_cmd_hw2sw_cq(mlxsw_pci
->core
, q
->num
);
507 static void mlxsw_pci_cqe_sdq_handle(struct mlxsw_pci
*mlxsw_pci
,
508 struct mlxsw_pci_queue
*q
,
509 u16 consumer_counter_limit
,
512 struct pci_dev
*pdev
= mlxsw_pci
->pdev
;
513 struct mlxsw_pci_queue_elem_info
*elem_info
;
514 struct mlxsw_tx_info tx_info
;
520 elem_info
= mlxsw_pci_queue_elem_info_consumer_get(q
);
521 tx_info
= mlxsw_skb_cb(elem_info
->u
.sdq
.skb
)->tx_info
;
522 skb
= elem_info
->u
.sdq
.skb
;
523 wqe
= elem_info
->elem
;
524 for (i
= 0; i
< MLXSW_PCI_WQE_SG_ENTRIES
; i
++)
525 mlxsw_pci_wqe_frag_unmap(mlxsw_pci
, wqe
, i
, DMA_TO_DEVICE
);
527 if (unlikely(!tx_info
.is_emad
&&
528 skb_shinfo(skb
)->tx_flags
& SKBTX_HW_TSTAMP
)) {
529 mlxsw_core_ptp_transmitted(mlxsw_pci
->core
, skb
,
535 dev_kfree_skb_any(skb
);
536 elem_info
->u
.sdq
.skb
= NULL
;
538 if (q
->consumer_counter
++ != consumer_counter_limit
)
539 dev_dbg_ratelimited(&pdev
->dev
, "Consumer counter does not match limit in SDQ\n");
540 spin_unlock(&q
->lock
);
543 static void mlxsw_pci_cqe_rdq_handle(struct mlxsw_pci
*mlxsw_pci
,
544 struct mlxsw_pci_queue
*q
,
545 u16 consumer_counter_limit
,
546 enum mlxsw_pci_cqe_v cqe_v
, char *cqe
)
548 struct pci_dev
*pdev
= mlxsw_pci
->pdev
;
549 struct mlxsw_pci_queue_elem_info
*elem_info
;
552 struct mlxsw_rx_info rx_info
;
556 elem_info
= mlxsw_pci_queue_elem_info_consumer_get(q
);
557 skb
= elem_info
->u
.sdq
.skb
;
560 wqe
= elem_info
->elem
;
561 mlxsw_pci_wqe_frag_unmap(mlxsw_pci
, wqe
, 0, DMA_FROM_DEVICE
);
563 if (q
->consumer_counter
++ != consumer_counter_limit
)
564 dev_dbg_ratelimited(&pdev
->dev
, "Consumer counter does not match limit in RDQ\n");
566 if (mlxsw_pci_cqe_lag_get(cqe_v
, cqe
)) {
567 rx_info
.is_lag
= true;
568 rx_info
.u
.lag_id
= mlxsw_pci_cqe_lag_id_get(cqe_v
, cqe
);
569 rx_info
.lag_port_index
=
570 mlxsw_pci_cqe_lag_subport_get(cqe_v
, cqe
);
572 rx_info
.is_lag
= false;
573 rx_info
.u
.sys_port
= mlxsw_pci_cqe_system_port_get(cqe
);
576 rx_info
.trap_id
= mlxsw_pci_cqe_trap_id_get(cqe
);
578 if (rx_info
.trap_id
== MLXSW_TRAP_ID_DISCARD_INGRESS_ACL
||
579 rx_info
.trap_id
== MLXSW_TRAP_ID_DISCARD_EGRESS_ACL
) {
580 u32 cookie_index
= 0;
582 if (mlxsw_pci
->max_cqe_ver
>= MLXSW_PCI_CQE_V2
)
583 cookie_index
= mlxsw_pci_cqe2_user_def_val_orig_pkt_len_get(cqe
);
584 mlxsw_skb_cb(skb
)->cookie_index
= cookie_index
;
587 byte_count
= mlxsw_pci_cqe_byte_count_get(cqe
);
588 if (mlxsw_pci_cqe_crc_get(cqe_v
, cqe
))
589 byte_count
-= ETH_FCS_LEN
;
590 skb_put(skb
, byte_count
);
591 mlxsw_core_skb_receive(mlxsw_pci
->core
, skb
, &rx_info
);
593 memset(wqe
, 0, q
->elem_size
);
594 err
= mlxsw_pci_rdq_skb_alloc(mlxsw_pci
, elem_info
);
596 dev_dbg_ratelimited(&pdev
->dev
, "Failed to alloc skb for RDQ\n");
597 /* Everything is set up, ring doorbell to pass elem to HW */
598 q
->producer_counter
++;
599 mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci
, q
);
603 static char *mlxsw_pci_cq_sw_cqe_get(struct mlxsw_pci_queue
*q
)
605 struct mlxsw_pci_queue_elem_info
*elem_info
;
609 elem_info
= mlxsw_pci_queue_elem_info_consumer_get(q
);
610 elem
= elem_info
->elem
;
611 owner_bit
= mlxsw_pci_cqe_owner_get(q
->u
.cq
.v
, elem
);
612 if (mlxsw_pci_elem_hw_owned(q
, owner_bit
))
614 q
->consumer_counter
++;
615 rmb(); /* make sure we read owned bit before the rest of elem */
619 static void mlxsw_pci_cq_tasklet(unsigned long data
)
621 struct mlxsw_pci_queue
*q
= (struct mlxsw_pci_queue
*) data
;
622 struct mlxsw_pci
*mlxsw_pci
= q
->pci
;
625 int credits
= q
->count
>> 1;
627 while ((cqe
= mlxsw_pci_cq_sw_cqe_get(q
))) {
628 u16 wqe_counter
= mlxsw_pci_cqe_wqe_counter_get(cqe
);
629 u8 sendq
= mlxsw_pci_cqe_sr_get(q
->u
.cq
.v
, cqe
);
630 u8 dqn
= mlxsw_pci_cqe_dqn_get(q
->u
.cq
.v
, cqe
);
631 char ncqe
[MLXSW_PCI_CQE_SIZE_MAX
];
633 memcpy(ncqe
, cqe
, q
->elem_size
);
634 mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci
, q
);
637 struct mlxsw_pci_queue
*sdq
;
639 sdq
= mlxsw_pci_sdq_get(mlxsw_pci
, dqn
);
640 mlxsw_pci_cqe_sdq_handle(mlxsw_pci
, sdq
,
642 q
->u
.cq
.comp_sdq_count
++;
644 struct mlxsw_pci_queue
*rdq
;
646 rdq
= mlxsw_pci_rdq_get(mlxsw_pci
, dqn
);
647 mlxsw_pci_cqe_rdq_handle(mlxsw_pci
, rdq
,
648 wqe_counter
, q
->u
.cq
.v
, ncqe
);
649 q
->u
.cq
.comp_rdq_count
++;
651 if (++items
== credits
)
655 mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci
, q
);
658 static u16
mlxsw_pci_cq_elem_count(const struct mlxsw_pci_queue
*q
)
660 return q
->u
.cq
.v
== MLXSW_PCI_CQE_V2
? MLXSW_PCI_CQE2_COUNT
:
661 MLXSW_PCI_CQE01_COUNT
;
664 static u8
mlxsw_pci_cq_elem_size(const struct mlxsw_pci_queue
*q
)
666 return q
->u
.cq
.v
== MLXSW_PCI_CQE_V2
? MLXSW_PCI_CQE2_SIZE
:
667 MLXSW_PCI_CQE01_SIZE
;
670 static int mlxsw_pci_eq_init(struct mlxsw_pci
*mlxsw_pci
, char *mbox
,
671 struct mlxsw_pci_queue
*q
)
676 q
->consumer_counter
= 0;
678 for (i
= 0; i
< q
->count
; i
++) {
679 char *elem
= mlxsw_pci_queue_elem_get(q
, i
);
681 mlxsw_pci_eqe_owner_set(elem
, 1);
684 mlxsw_cmd_mbox_sw2hw_eq_int_msix_set(mbox
, 1); /* MSI-X used */
685 mlxsw_cmd_mbox_sw2hw_eq_st_set(mbox
, 1); /* armed */
686 mlxsw_cmd_mbox_sw2hw_eq_log_eq_size_set(mbox
, ilog2(q
->count
));
687 for (i
= 0; i
< MLXSW_PCI_AQ_PAGES
; i
++) {
688 dma_addr_t mapaddr
= __mlxsw_pci_queue_page_get(q
, i
);
690 mlxsw_cmd_mbox_sw2hw_eq_pa_set(mbox
, i
, mapaddr
);
692 err
= mlxsw_cmd_sw2hw_eq(mlxsw_pci
->core
, mbox
, q
->num
);
695 mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci
, q
);
696 mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci
, q
);
700 static void mlxsw_pci_eq_fini(struct mlxsw_pci
*mlxsw_pci
,
701 struct mlxsw_pci_queue
*q
)
703 mlxsw_cmd_hw2sw_eq(mlxsw_pci
->core
, q
->num
);
706 static void mlxsw_pci_eq_cmd_event(struct mlxsw_pci
*mlxsw_pci
, char *eqe
)
708 mlxsw_pci
->cmd
.comp
.status
= mlxsw_pci_eqe_cmd_status_get(eqe
);
709 mlxsw_pci
->cmd
.comp
.out_param
=
710 ((u64
) mlxsw_pci_eqe_cmd_out_param_h_get(eqe
)) << 32 |
711 mlxsw_pci_eqe_cmd_out_param_l_get(eqe
);
712 mlxsw_pci
->cmd
.wait_done
= true;
713 wake_up(&mlxsw_pci
->cmd
.wait
);
716 static char *mlxsw_pci_eq_sw_eqe_get(struct mlxsw_pci_queue
*q
)
718 struct mlxsw_pci_queue_elem_info
*elem_info
;
722 elem_info
= mlxsw_pci_queue_elem_info_consumer_get(q
);
723 elem
= elem_info
->elem
;
724 owner_bit
= mlxsw_pci_eqe_owner_get(elem
);
725 if (mlxsw_pci_elem_hw_owned(q
, owner_bit
))
727 q
->consumer_counter
++;
728 rmb(); /* make sure we read owned bit before the rest of elem */
732 static void mlxsw_pci_eq_tasklet(unsigned long data
)
734 struct mlxsw_pci_queue
*q
= (struct mlxsw_pci_queue
*) data
;
735 struct mlxsw_pci
*mlxsw_pci
= q
->pci
;
736 u8 cq_count
= mlxsw_pci_cq_count(mlxsw_pci
);
737 unsigned long active_cqns
[BITS_TO_LONGS(MLXSW_PCI_CQS_MAX
)];
740 bool cq_handle
= false;
742 int credits
= q
->count
>> 1;
744 memset(&active_cqns
, 0, sizeof(active_cqns
));
746 while ((eqe
= mlxsw_pci_eq_sw_eqe_get(q
))) {
748 /* Command interface completion events are always received on
749 * queue MLXSW_PCI_EQ_ASYNC_NUM (EQ0) and completion events
750 * are mapped to queue MLXSW_PCI_EQ_COMP_NUM (EQ1).
753 case MLXSW_PCI_EQ_ASYNC_NUM
:
754 mlxsw_pci_eq_cmd_event(mlxsw_pci
, eqe
);
755 q
->u
.eq
.ev_cmd_count
++;
757 case MLXSW_PCI_EQ_COMP_NUM
:
758 cqn
= mlxsw_pci_eqe_cqn_get(eqe
);
759 set_bit(cqn
, active_cqns
);
761 q
->u
.eq
.ev_comp_count
++;
764 q
->u
.eq
.ev_other_count
++;
766 if (++items
== credits
)
770 mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci
, q
);
771 mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci
, q
);
776 for_each_set_bit(cqn
, active_cqns
, cq_count
) {
777 q
= mlxsw_pci_cq_get(mlxsw_pci
, cqn
);
778 mlxsw_pci_queue_tasklet_schedule(q
);
782 struct mlxsw_pci_queue_ops
{
784 enum mlxsw_pci_queue_type type
;
785 void (*pre_init
)(struct mlxsw_pci
*mlxsw_pci
,
786 struct mlxsw_pci_queue
*q
);
787 int (*init
)(struct mlxsw_pci
*mlxsw_pci
, char *mbox
,
788 struct mlxsw_pci_queue
*q
);
789 void (*fini
)(struct mlxsw_pci
*mlxsw_pci
,
790 struct mlxsw_pci_queue
*q
);
791 void (*tasklet
)(unsigned long data
);
792 u16 (*elem_count_f
)(const struct mlxsw_pci_queue
*q
);
793 u8 (*elem_size_f
)(const struct mlxsw_pci_queue
*q
);
798 static const struct mlxsw_pci_queue_ops mlxsw_pci_sdq_ops
= {
799 .type
= MLXSW_PCI_QUEUE_TYPE_SDQ
,
800 .init
= mlxsw_pci_sdq_init
,
801 .fini
= mlxsw_pci_sdq_fini
,
802 .elem_count
= MLXSW_PCI_WQE_COUNT
,
803 .elem_size
= MLXSW_PCI_WQE_SIZE
,
806 static const struct mlxsw_pci_queue_ops mlxsw_pci_rdq_ops
= {
807 .type
= MLXSW_PCI_QUEUE_TYPE_RDQ
,
808 .init
= mlxsw_pci_rdq_init
,
809 .fini
= mlxsw_pci_rdq_fini
,
810 .elem_count
= MLXSW_PCI_WQE_COUNT
,
811 .elem_size
= MLXSW_PCI_WQE_SIZE
814 static const struct mlxsw_pci_queue_ops mlxsw_pci_cq_ops
= {
815 .type
= MLXSW_PCI_QUEUE_TYPE_CQ
,
816 .pre_init
= mlxsw_pci_cq_pre_init
,
817 .init
= mlxsw_pci_cq_init
,
818 .fini
= mlxsw_pci_cq_fini
,
819 .tasklet
= mlxsw_pci_cq_tasklet
,
820 .elem_count_f
= mlxsw_pci_cq_elem_count
,
821 .elem_size_f
= mlxsw_pci_cq_elem_size
824 static const struct mlxsw_pci_queue_ops mlxsw_pci_eq_ops
= {
825 .type
= MLXSW_PCI_QUEUE_TYPE_EQ
,
826 .init
= mlxsw_pci_eq_init
,
827 .fini
= mlxsw_pci_eq_fini
,
828 .tasklet
= mlxsw_pci_eq_tasklet
,
829 .elem_count
= MLXSW_PCI_EQE_COUNT
,
830 .elem_size
= MLXSW_PCI_EQE_SIZE
833 static int mlxsw_pci_queue_init(struct mlxsw_pci
*mlxsw_pci
, char *mbox
,
834 const struct mlxsw_pci_queue_ops
*q_ops
,
835 struct mlxsw_pci_queue
*q
, u8 q_num
)
837 struct mlxsw_pci_mem_item
*mem_item
= &q
->mem_item
;
843 q_ops
->pre_init(mlxsw_pci
, q
);
845 spin_lock_init(&q
->lock
);
846 q
->count
= q_ops
->elem_count_f
? q_ops
->elem_count_f(q
) :
848 q
->elem_size
= q_ops
->elem_size_f
? q_ops
->elem_size_f(q
) :
850 q
->type
= q_ops
->type
;
854 tasklet_init(&q
->tasklet
, q_ops
->tasklet
, (unsigned long) q
);
856 mem_item
->size
= MLXSW_PCI_AQ_SIZE
;
857 mem_item
->buf
= pci_alloc_consistent(mlxsw_pci
->pdev
,
863 q
->elem_info
= kcalloc(q
->count
, sizeof(*q
->elem_info
), GFP_KERNEL
);
866 goto err_elem_info_alloc
;
869 /* Initialize dma mapped elements info elem_info for
870 * future easy access.
872 for (i
= 0; i
< q
->count
; i
++) {
873 struct mlxsw_pci_queue_elem_info
*elem_info
;
875 elem_info
= mlxsw_pci_queue_elem_info_get(q
, i
);
877 __mlxsw_pci_queue_elem_get(q
, q
->elem_size
, i
);
880 mlxsw_cmd_mbox_zero(mbox
);
881 err
= q_ops
->init(mlxsw_pci
, mbox
, q
);
889 pci_free_consistent(mlxsw_pci
->pdev
, mem_item
->size
,
890 mem_item
->buf
, mem_item
->mapaddr
);
894 static void mlxsw_pci_queue_fini(struct mlxsw_pci
*mlxsw_pci
,
895 const struct mlxsw_pci_queue_ops
*q_ops
,
896 struct mlxsw_pci_queue
*q
)
898 struct mlxsw_pci_mem_item
*mem_item
= &q
->mem_item
;
900 q_ops
->fini(mlxsw_pci
, q
);
902 pci_free_consistent(mlxsw_pci
->pdev
, mem_item
->size
,
903 mem_item
->buf
, mem_item
->mapaddr
);
906 static int mlxsw_pci_queue_group_init(struct mlxsw_pci
*mlxsw_pci
, char *mbox
,
907 const struct mlxsw_pci_queue_ops
*q_ops
,
910 struct mlxsw_pci_queue_type_group
*queue_group
;
914 queue_group
= mlxsw_pci_queue_type_group_get(mlxsw_pci
, q_ops
->type
);
915 queue_group
->q
= kcalloc(num_qs
, sizeof(*queue_group
->q
), GFP_KERNEL
);
919 for (i
= 0; i
< num_qs
; i
++) {
920 err
= mlxsw_pci_queue_init(mlxsw_pci
, mbox
, q_ops
,
921 &queue_group
->q
[i
], i
);
925 queue_group
->count
= num_qs
;
930 for (i
--; i
>= 0; i
--)
931 mlxsw_pci_queue_fini(mlxsw_pci
, q_ops
, &queue_group
->q
[i
]);
932 kfree(queue_group
->q
);
936 static void mlxsw_pci_queue_group_fini(struct mlxsw_pci
*mlxsw_pci
,
937 const struct mlxsw_pci_queue_ops
*q_ops
)
939 struct mlxsw_pci_queue_type_group
*queue_group
;
942 queue_group
= mlxsw_pci_queue_type_group_get(mlxsw_pci
, q_ops
->type
);
943 for (i
= 0; i
< queue_group
->count
; i
++)
944 mlxsw_pci_queue_fini(mlxsw_pci
, q_ops
, &queue_group
->q
[i
]);
945 kfree(queue_group
->q
);
948 static int mlxsw_pci_aqs_init(struct mlxsw_pci
*mlxsw_pci
, char *mbox
)
950 struct pci_dev
*pdev
= mlxsw_pci
->pdev
;
962 mlxsw_cmd_mbox_zero(mbox
);
963 err
= mlxsw_cmd_query_aq_cap(mlxsw_pci
->core
, mbox
);
967 num_sdqs
= mlxsw_cmd_mbox_query_aq_cap_max_num_sdqs_get(mbox
);
968 sdq_log2sz
= mlxsw_cmd_mbox_query_aq_cap_log_max_sdq_sz_get(mbox
);
969 num_rdqs
= mlxsw_cmd_mbox_query_aq_cap_max_num_rdqs_get(mbox
);
970 rdq_log2sz
= mlxsw_cmd_mbox_query_aq_cap_log_max_rdq_sz_get(mbox
);
971 num_cqs
= mlxsw_cmd_mbox_query_aq_cap_max_num_cqs_get(mbox
);
972 cq_log2sz
= mlxsw_cmd_mbox_query_aq_cap_log_max_cq_sz_get(mbox
);
973 cqv2_log2sz
= mlxsw_cmd_mbox_query_aq_cap_log_max_cqv2_sz_get(mbox
);
974 num_eqs
= mlxsw_cmd_mbox_query_aq_cap_max_num_eqs_get(mbox
);
975 eq_log2sz
= mlxsw_cmd_mbox_query_aq_cap_log_max_eq_sz_get(mbox
);
977 if (num_sdqs
+ num_rdqs
> num_cqs
||
978 num_sdqs
< MLXSW_PCI_SDQS_MIN
||
979 num_cqs
> MLXSW_PCI_CQS_MAX
|| num_eqs
!= MLXSW_PCI_EQS_COUNT
) {
980 dev_err(&pdev
->dev
, "Unsupported number of queues\n");
984 if ((1 << sdq_log2sz
!= MLXSW_PCI_WQE_COUNT
) ||
985 (1 << rdq_log2sz
!= MLXSW_PCI_WQE_COUNT
) ||
986 (1 << cq_log2sz
!= MLXSW_PCI_CQE01_COUNT
) ||
987 (mlxsw_pci
->max_cqe_ver
== MLXSW_PCI_CQE_V2
&&
988 (1 << cqv2_log2sz
!= MLXSW_PCI_CQE2_COUNT
)) ||
989 (1 << eq_log2sz
!= MLXSW_PCI_EQE_COUNT
)) {
990 dev_err(&pdev
->dev
, "Unsupported number of async queue descriptors\n");
994 mlxsw_pci
->num_sdq_cqs
= num_sdqs
;
996 err
= mlxsw_pci_queue_group_init(mlxsw_pci
, mbox
, &mlxsw_pci_eq_ops
,
999 dev_err(&pdev
->dev
, "Failed to initialize event queues\n");
1003 err
= mlxsw_pci_queue_group_init(mlxsw_pci
, mbox
, &mlxsw_pci_cq_ops
,
1006 dev_err(&pdev
->dev
, "Failed to initialize completion queues\n");
1010 err
= mlxsw_pci_queue_group_init(mlxsw_pci
, mbox
, &mlxsw_pci_sdq_ops
,
1013 dev_err(&pdev
->dev
, "Failed to initialize send descriptor queues\n");
1017 err
= mlxsw_pci_queue_group_init(mlxsw_pci
, mbox
, &mlxsw_pci_rdq_ops
,
1020 dev_err(&pdev
->dev
, "Failed to initialize receive descriptor queues\n");
1024 /* We have to poll in command interface until queues are initialized */
1025 mlxsw_pci
->cmd
.nopoll
= true;
1029 mlxsw_pci_queue_group_fini(mlxsw_pci
, &mlxsw_pci_sdq_ops
);
1031 mlxsw_pci_queue_group_fini(mlxsw_pci
, &mlxsw_pci_cq_ops
);
1033 mlxsw_pci_queue_group_fini(mlxsw_pci
, &mlxsw_pci_eq_ops
);
1037 static void mlxsw_pci_aqs_fini(struct mlxsw_pci
*mlxsw_pci
)
1039 mlxsw_pci
->cmd
.nopoll
= false;
1040 mlxsw_pci_queue_group_fini(mlxsw_pci
, &mlxsw_pci_rdq_ops
);
1041 mlxsw_pci_queue_group_fini(mlxsw_pci
, &mlxsw_pci_sdq_ops
);
1042 mlxsw_pci_queue_group_fini(mlxsw_pci
, &mlxsw_pci_cq_ops
);
1043 mlxsw_pci_queue_group_fini(mlxsw_pci
, &mlxsw_pci_eq_ops
);
1047 mlxsw_pci_config_profile_swid_config(struct mlxsw_pci
*mlxsw_pci
,
1048 char *mbox
, int index
,
1049 const struct mlxsw_swid_config
*swid
)
1053 if (swid
->used_type
) {
1054 mlxsw_cmd_mbox_config_profile_swid_config_type_set(
1055 mbox
, index
, swid
->type
);
1058 if (swid
->used_properties
) {
1059 mlxsw_cmd_mbox_config_profile_swid_config_properties_set(
1060 mbox
, index
, swid
->properties
);
1063 mlxsw_cmd_mbox_config_profile_swid_config_mask_set(mbox
, index
, mask
);
1067 mlxsw_pci_profile_get_kvd_sizes(const struct mlxsw_pci
*mlxsw_pci
,
1068 const struct mlxsw_config_profile
*profile
,
1069 struct mlxsw_res
*res
)
1071 u64 single_size
, double_size
, linear_size
;
1074 err
= mlxsw_core_kvd_sizes_get(mlxsw_pci
->core
, profile
,
1075 &single_size
, &double_size
,
1080 MLXSW_RES_SET(res
, KVD_SINGLE_SIZE
, single_size
);
1081 MLXSW_RES_SET(res
, KVD_DOUBLE_SIZE
, double_size
);
1082 MLXSW_RES_SET(res
, KVD_LINEAR_SIZE
, linear_size
);
1087 static int mlxsw_pci_config_profile(struct mlxsw_pci
*mlxsw_pci
, char *mbox
,
1088 const struct mlxsw_config_profile
*profile
,
1089 struct mlxsw_res
*res
)
1094 mlxsw_cmd_mbox_zero(mbox
);
1096 if (profile
->used_max_vepa_channels
) {
1097 mlxsw_cmd_mbox_config_profile_set_max_vepa_channels_set(
1099 mlxsw_cmd_mbox_config_profile_max_vepa_channels_set(
1100 mbox
, profile
->max_vepa_channels
);
1102 if (profile
->used_max_mid
) {
1103 mlxsw_cmd_mbox_config_profile_set_max_mid_set(
1105 mlxsw_cmd_mbox_config_profile_max_mid_set(
1106 mbox
, profile
->max_mid
);
1108 if (profile
->used_max_pgt
) {
1109 mlxsw_cmd_mbox_config_profile_set_max_pgt_set(
1111 mlxsw_cmd_mbox_config_profile_max_pgt_set(
1112 mbox
, profile
->max_pgt
);
1114 if (profile
->used_max_system_port
) {
1115 mlxsw_cmd_mbox_config_profile_set_max_system_port_set(
1117 mlxsw_cmd_mbox_config_profile_max_system_port_set(
1118 mbox
, profile
->max_system_port
);
1120 if (profile
->used_max_vlan_groups
) {
1121 mlxsw_cmd_mbox_config_profile_set_max_vlan_groups_set(
1123 mlxsw_cmd_mbox_config_profile_max_vlan_groups_set(
1124 mbox
, profile
->max_vlan_groups
);
1126 if (profile
->used_max_regions
) {
1127 mlxsw_cmd_mbox_config_profile_set_max_regions_set(
1129 mlxsw_cmd_mbox_config_profile_max_regions_set(
1130 mbox
, profile
->max_regions
);
1132 if (profile
->used_flood_tables
) {
1133 mlxsw_cmd_mbox_config_profile_set_flood_tables_set(
1135 mlxsw_cmd_mbox_config_profile_max_flood_tables_set(
1136 mbox
, profile
->max_flood_tables
);
1137 mlxsw_cmd_mbox_config_profile_max_vid_flood_tables_set(
1138 mbox
, profile
->max_vid_flood_tables
);
1139 mlxsw_cmd_mbox_config_profile_max_fid_offset_flood_tables_set(
1140 mbox
, profile
->max_fid_offset_flood_tables
);
1141 mlxsw_cmd_mbox_config_profile_fid_offset_flood_table_size_set(
1142 mbox
, profile
->fid_offset_flood_table_size
);
1143 mlxsw_cmd_mbox_config_profile_max_fid_flood_tables_set(
1144 mbox
, profile
->max_fid_flood_tables
);
1145 mlxsw_cmd_mbox_config_profile_fid_flood_table_size_set(
1146 mbox
, profile
->fid_flood_table_size
);
1148 if (profile
->used_flood_mode
) {
1149 mlxsw_cmd_mbox_config_profile_set_flood_mode_set(
1151 mlxsw_cmd_mbox_config_profile_flood_mode_set(
1152 mbox
, profile
->flood_mode
);
1154 if (profile
->used_max_ib_mc
) {
1155 mlxsw_cmd_mbox_config_profile_set_max_ib_mc_set(
1157 mlxsw_cmd_mbox_config_profile_max_ib_mc_set(
1158 mbox
, profile
->max_ib_mc
);
1160 if (profile
->used_max_pkey
) {
1161 mlxsw_cmd_mbox_config_profile_set_max_pkey_set(
1163 mlxsw_cmd_mbox_config_profile_max_pkey_set(
1164 mbox
, profile
->max_pkey
);
1166 if (profile
->used_ar_sec
) {
1167 mlxsw_cmd_mbox_config_profile_set_ar_sec_set(
1169 mlxsw_cmd_mbox_config_profile_ar_sec_set(
1170 mbox
, profile
->ar_sec
);
1172 if (profile
->used_adaptive_routing_group_cap
) {
1173 mlxsw_cmd_mbox_config_profile_set_adaptive_routing_group_cap_set(
1175 mlxsw_cmd_mbox_config_profile_adaptive_routing_group_cap_set(
1176 mbox
, profile
->adaptive_routing_group_cap
);
1178 if (profile
->used_kvd_sizes
&& MLXSW_RES_VALID(res
, KVD_SIZE
)) {
1179 err
= mlxsw_pci_profile_get_kvd_sizes(mlxsw_pci
, profile
, res
);
1183 mlxsw_cmd_mbox_config_profile_set_kvd_linear_size_set(mbox
, 1);
1184 mlxsw_cmd_mbox_config_profile_kvd_linear_size_set(mbox
,
1185 MLXSW_RES_GET(res
, KVD_LINEAR_SIZE
));
1186 mlxsw_cmd_mbox_config_profile_set_kvd_hash_single_size_set(mbox
,
1188 mlxsw_cmd_mbox_config_profile_kvd_hash_single_size_set(mbox
,
1189 MLXSW_RES_GET(res
, KVD_SINGLE_SIZE
));
1190 mlxsw_cmd_mbox_config_profile_set_kvd_hash_double_size_set(
1192 mlxsw_cmd_mbox_config_profile_kvd_hash_double_size_set(mbox
,
1193 MLXSW_RES_GET(res
, KVD_DOUBLE_SIZE
));
1196 for (i
= 0; i
< MLXSW_CONFIG_PROFILE_SWID_COUNT
; i
++)
1197 mlxsw_pci_config_profile_swid_config(mlxsw_pci
, mbox
, i
,
1198 &profile
->swid_config
[i
]);
1200 if (mlxsw_pci
->max_cqe_ver
> MLXSW_PCI_CQE_V0
) {
1201 mlxsw_cmd_mbox_config_profile_set_cqe_version_set(mbox
, 1);
1202 mlxsw_cmd_mbox_config_profile_cqe_version_set(mbox
, 1);
1205 return mlxsw_cmd_config_profile_set(mlxsw_pci
->core
, mbox
);
1208 static int mlxsw_pci_boardinfo(struct mlxsw_pci
*mlxsw_pci
, char *mbox
)
1210 struct mlxsw_bus_info
*bus_info
= &mlxsw_pci
->bus_info
;
1213 mlxsw_cmd_mbox_zero(mbox
);
1214 err
= mlxsw_cmd_boardinfo(mlxsw_pci
->core
, mbox
);
1217 mlxsw_cmd_mbox_boardinfo_vsd_memcpy_from(mbox
, bus_info
->vsd
);
1218 mlxsw_cmd_mbox_boardinfo_psid_memcpy_from(mbox
, bus_info
->psid
);
1222 static int mlxsw_pci_fw_area_init(struct mlxsw_pci
*mlxsw_pci
, char *mbox
,
1225 struct mlxsw_pci_mem_item
*mem_item
;
1230 mlxsw_pci
->fw_area
.items
= kcalloc(num_pages
, sizeof(*mem_item
),
1232 if (!mlxsw_pci
->fw_area
.items
)
1234 mlxsw_pci
->fw_area
.count
= num_pages
;
1236 mlxsw_cmd_mbox_zero(mbox
);
1237 for (i
= 0; i
< num_pages
; i
++) {
1238 mem_item
= &mlxsw_pci
->fw_area
.items
[i
];
1240 mem_item
->size
= MLXSW_PCI_PAGE_SIZE
;
1241 mem_item
->buf
= pci_alloc_consistent(mlxsw_pci
->pdev
,
1243 &mem_item
->mapaddr
);
1244 if (!mem_item
->buf
) {
1248 mlxsw_cmd_mbox_map_fa_pa_set(mbox
, nent
, mem_item
->mapaddr
);
1249 mlxsw_cmd_mbox_map_fa_log2size_set(mbox
, nent
, 0); /* 1 page */
1250 if (++nent
== MLXSW_CMD_MAP_FA_VPM_ENTRIES_MAX
) {
1251 err
= mlxsw_cmd_map_fa(mlxsw_pci
->core
, mbox
, nent
);
1253 goto err_cmd_map_fa
;
1255 mlxsw_cmd_mbox_zero(mbox
);
1260 err
= mlxsw_cmd_map_fa(mlxsw_pci
->core
, mbox
, nent
);
1262 goto err_cmd_map_fa
;
1269 for (i
--; i
>= 0; i
--) {
1270 mem_item
= &mlxsw_pci
->fw_area
.items
[i
];
1272 pci_free_consistent(mlxsw_pci
->pdev
, mem_item
->size
,
1273 mem_item
->buf
, mem_item
->mapaddr
);
1275 kfree(mlxsw_pci
->fw_area
.items
);
1279 static void mlxsw_pci_fw_area_fini(struct mlxsw_pci
*mlxsw_pci
)
1281 struct mlxsw_pci_mem_item
*mem_item
;
1284 mlxsw_cmd_unmap_fa(mlxsw_pci
->core
);
1286 for (i
= 0; i
< mlxsw_pci
->fw_area
.count
; i
++) {
1287 mem_item
= &mlxsw_pci
->fw_area
.items
[i
];
1289 pci_free_consistent(mlxsw_pci
->pdev
, mem_item
->size
,
1290 mem_item
->buf
, mem_item
->mapaddr
);
1292 kfree(mlxsw_pci
->fw_area
.items
);
1295 static irqreturn_t
mlxsw_pci_eq_irq_handler(int irq
, void *dev_id
)
1297 struct mlxsw_pci
*mlxsw_pci
= dev_id
;
1298 struct mlxsw_pci_queue
*q
;
1301 for (i
= 0; i
< MLXSW_PCI_EQS_COUNT
; i
++) {
1302 q
= mlxsw_pci_eq_get(mlxsw_pci
, i
);
1303 mlxsw_pci_queue_tasklet_schedule(q
);
1308 static int mlxsw_pci_mbox_alloc(struct mlxsw_pci
*mlxsw_pci
,
1309 struct mlxsw_pci_mem_item
*mbox
)
1311 struct pci_dev
*pdev
= mlxsw_pci
->pdev
;
1314 mbox
->size
= MLXSW_CMD_MBOX_SIZE
;
1315 mbox
->buf
= pci_alloc_consistent(pdev
, MLXSW_CMD_MBOX_SIZE
,
1318 dev_err(&pdev
->dev
, "Failed allocating memory for mailbox\n");
1325 static void mlxsw_pci_mbox_free(struct mlxsw_pci
*mlxsw_pci
,
1326 struct mlxsw_pci_mem_item
*mbox
)
1328 struct pci_dev
*pdev
= mlxsw_pci
->pdev
;
1330 pci_free_consistent(pdev
, MLXSW_CMD_MBOX_SIZE
, mbox
->buf
,
1334 static int mlxsw_pci_sys_ready_wait(struct mlxsw_pci
*mlxsw_pci
,
1335 const struct pci_device_id
*id
,
1341 if (id
->device
== PCI_DEVICE_ID_MELLANOX_SWITCHX2
) {
1342 msleep(MLXSW_PCI_SW_RESET_TIMEOUT_MSECS
);
1346 /* We must wait for the HW to become responsive. */
1347 msleep(MLXSW_PCI_SW_RESET_WAIT_MSECS
);
1349 end
= jiffies
+ msecs_to_jiffies(MLXSW_PCI_SW_RESET_TIMEOUT_MSECS
);
1351 val
= mlxsw_pci_read32(mlxsw_pci
, FW_READY
);
1352 if ((val
& MLXSW_PCI_FW_READY_MASK
) == MLXSW_PCI_FW_READY_MAGIC
)
1355 } while (time_before(jiffies
, end
));
1357 *p_sys_status
= val
& MLXSW_PCI_FW_READY_MASK
;
1362 static int mlxsw_pci_sw_reset(struct mlxsw_pci
*mlxsw_pci
,
1363 const struct pci_device_id
*id
)
1365 struct pci_dev
*pdev
= mlxsw_pci
->pdev
;
1366 char mrsr_pl
[MLXSW_REG_MRSR_LEN
];
1370 err
= mlxsw_pci_sys_ready_wait(mlxsw_pci
, id
, &sys_status
);
1372 dev_err(&pdev
->dev
, "Failed to reach system ready status before reset. Status is 0x%x\n",
1377 mlxsw_reg_mrsr_pack(mrsr_pl
);
1378 err
= mlxsw_reg_write(mlxsw_pci
->core
, MLXSW_REG(mrsr
), mrsr_pl
);
1382 err
= mlxsw_pci_sys_ready_wait(mlxsw_pci
, id
, &sys_status
);
1384 dev_err(&pdev
->dev
, "Failed to reach system ready status after reset. Status is 0x%x\n",
1392 static int mlxsw_pci_alloc_irq_vectors(struct mlxsw_pci
*mlxsw_pci
)
1396 err
= pci_alloc_irq_vectors(mlxsw_pci
->pdev
, 1, 1, PCI_IRQ_MSIX
);
1398 dev_err(&mlxsw_pci
->pdev
->dev
, "MSI-X init failed\n");
1402 static void mlxsw_pci_free_irq_vectors(struct mlxsw_pci
*mlxsw_pci
)
1404 pci_free_irq_vectors(mlxsw_pci
->pdev
);
1407 static int mlxsw_pci_init(void *bus_priv
, struct mlxsw_core
*mlxsw_core
,
1408 const struct mlxsw_config_profile
*profile
,
1409 struct mlxsw_res
*res
)
1411 struct mlxsw_pci
*mlxsw_pci
= bus_priv
;
1412 struct pci_dev
*pdev
= mlxsw_pci
->pdev
;
1417 mutex_init(&mlxsw_pci
->cmd
.lock
);
1418 init_waitqueue_head(&mlxsw_pci
->cmd
.wait
);
1420 mlxsw_pci
->core
= mlxsw_core
;
1422 mbox
= mlxsw_cmd_mbox_alloc();
1426 err
= mlxsw_pci_mbox_alloc(mlxsw_pci
, &mlxsw_pci
->cmd
.in_mbox
);
1430 err
= mlxsw_pci_mbox_alloc(mlxsw_pci
, &mlxsw_pci
->cmd
.out_mbox
);
1432 goto err_out_mbox_alloc
;
1434 err
= mlxsw_pci_sw_reset(mlxsw_pci
, mlxsw_pci
->id
);
1438 err
= mlxsw_pci_alloc_irq_vectors(mlxsw_pci
);
1440 dev_err(&pdev
->dev
, "MSI-X init failed\n");
1444 err
= mlxsw_cmd_query_fw(mlxsw_core
, mbox
);
1448 mlxsw_pci
->bus_info
.fw_rev
.major
=
1449 mlxsw_cmd_mbox_query_fw_fw_rev_major_get(mbox
);
1450 mlxsw_pci
->bus_info
.fw_rev
.minor
=
1451 mlxsw_cmd_mbox_query_fw_fw_rev_minor_get(mbox
);
1452 mlxsw_pci
->bus_info
.fw_rev
.subminor
=
1453 mlxsw_cmd_mbox_query_fw_fw_rev_subminor_get(mbox
);
1455 if (mlxsw_cmd_mbox_query_fw_cmd_interface_rev_get(mbox
) != 1) {
1456 dev_err(&pdev
->dev
, "Unsupported cmd interface revision ID queried from hw\n");
1460 if (mlxsw_cmd_mbox_query_fw_doorbell_page_bar_get(mbox
) != 0) {
1461 dev_err(&pdev
->dev
, "Unsupported doorbell page bar queried from hw\n");
1463 goto err_doorbell_page_bar
;
1466 mlxsw_pci
->doorbell_offset
=
1467 mlxsw_cmd_mbox_query_fw_doorbell_page_offset_get(mbox
);
1469 if (mlxsw_cmd_mbox_query_fw_fr_rn_clk_bar_get(mbox
) != 0) {
1470 dev_err(&pdev
->dev
, "Unsupported free running clock BAR queried from hw\n");
1472 goto err_fr_rn_clk_bar
;
1475 mlxsw_pci
->free_running_clock_offset
=
1476 mlxsw_cmd_mbox_query_fw_free_running_clock_offset_get(mbox
);
1478 num_pages
= mlxsw_cmd_mbox_query_fw_fw_pages_get(mbox
);
1479 err
= mlxsw_pci_fw_area_init(mlxsw_pci
, mbox
, num_pages
);
1481 goto err_fw_area_init
;
1483 err
= mlxsw_pci_boardinfo(mlxsw_pci
, mbox
);
1487 err
= mlxsw_core_resources_query(mlxsw_core
, mbox
, res
);
1489 goto err_query_resources
;
1491 if (MLXSW_CORE_RES_VALID(mlxsw_core
, CQE_V2
) &&
1492 MLXSW_CORE_RES_GET(mlxsw_core
, CQE_V2
))
1493 mlxsw_pci
->max_cqe_ver
= MLXSW_PCI_CQE_V2
;
1494 else if (MLXSW_CORE_RES_VALID(mlxsw_core
, CQE_V1
) &&
1495 MLXSW_CORE_RES_GET(mlxsw_core
, CQE_V1
))
1496 mlxsw_pci
->max_cqe_ver
= MLXSW_PCI_CQE_V1
;
1497 else if ((MLXSW_CORE_RES_VALID(mlxsw_core
, CQE_V0
) &&
1498 MLXSW_CORE_RES_GET(mlxsw_core
, CQE_V0
)) ||
1499 !MLXSW_CORE_RES_VALID(mlxsw_core
, CQE_V0
)) {
1500 mlxsw_pci
->max_cqe_ver
= MLXSW_PCI_CQE_V0
;
1502 dev_err(&pdev
->dev
, "Invalid supported CQE version combination reported\n");
1503 goto err_cqe_v_check
;
1506 err
= mlxsw_pci_config_profile(mlxsw_pci
, mbox
, profile
, res
);
1508 goto err_config_profile
;
1510 err
= mlxsw_pci_aqs_init(mlxsw_pci
, mbox
);
1514 err
= request_irq(pci_irq_vector(pdev
, 0),
1515 mlxsw_pci_eq_irq_handler
, 0,
1516 mlxsw_pci
->bus_info
.device_kind
, mlxsw_pci
);
1518 dev_err(&pdev
->dev
, "IRQ request failed\n");
1519 goto err_request_eq_irq
;
1525 mlxsw_pci_aqs_fini(mlxsw_pci
);
1529 err_query_resources
:
1531 mlxsw_pci_fw_area_fini(mlxsw_pci
);
1534 err_doorbell_page_bar
:
1537 mlxsw_pci_free_irq_vectors(mlxsw_pci
);
1540 mlxsw_pci_mbox_free(mlxsw_pci
, &mlxsw_pci
->cmd
.out_mbox
);
1542 mlxsw_pci_mbox_free(mlxsw_pci
, &mlxsw_pci
->cmd
.in_mbox
);
1544 mlxsw_cmd_mbox_free(mbox
);
1548 static void mlxsw_pci_fini(void *bus_priv
)
1550 struct mlxsw_pci
*mlxsw_pci
= bus_priv
;
1552 free_irq(pci_irq_vector(mlxsw_pci
->pdev
, 0), mlxsw_pci
);
1553 mlxsw_pci_aqs_fini(mlxsw_pci
);
1554 mlxsw_pci_fw_area_fini(mlxsw_pci
);
1555 mlxsw_pci_free_irq_vectors(mlxsw_pci
);
1556 mlxsw_pci_mbox_free(mlxsw_pci
, &mlxsw_pci
->cmd
.out_mbox
);
1557 mlxsw_pci_mbox_free(mlxsw_pci
, &mlxsw_pci
->cmd
.in_mbox
);
1560 static struct mlxsw_pci_queue
*
1561 mlxsw_pci_sdq_pick(struct mlxsw_pci
*mlxsw_pci
,
1562 const struct mlxsw_tx_info
*tx_info
)
1564 u8 ctl_sdq_count
= mlxsw_pci_sdq_count(mlxsw_pci
) - 1;
1567 if (tx_info
->is_emad
) {
1568 sdqn
= MLXSW_PCI_SDQ_EMAD_INDEX
;
1570 BUILD_BUG_ON(MLXSW_PCI_SDQ_EMAD_INDEX
!= 0);
1571 sdqn
= 1 + (tx_info
->local_port
% ctl_sdq_count
);
1574 return mlxsw_pci_sdq_get(mlxsw_pci
, sdqn
);
1577 static bool mlxsw_pci_skb_transmit_busy(void *bus_priv
,
1578 const struct mlxsw_tx_info
*tx_info
)
1580 struct mlxsw_pci
*mlxsw_pci
= bus_priv
;
1581 struct mlxsw_pci_queue
*q
= mlxsw_pci_sdq_pick(mlxsw_pci
, tx_info
);
1583 return !mlxsw_pci_queue_elem_info_producer_get(q
);
1586 static int mlxsw_pci_skb_transmit(void *bus_priv
, struct sk_buff
*skb
,
1587 const struct mlxsw_tx_info
*tx_info
)
1589 struct mlxsw_pci
*mlxsw_pci
= bus_priv
;
1590 struct mlxsw_pci_queue
*q
;
1591 struct mlxsw_pci_queue_elem_info
*elem_info
;
1596 if (skb_shinfo(skb
)->nr_frags
> MLXSW_PCI_WQE_SG_ENTRIES
- 1) {
1597 err
= skb_linearize(skb
);
1602 q
= mlxsw_pci_sdq_pick(mlxsw_pci
, tx_info
);
1603 spin_lock_bh(&q
->lock
);
1604 elem_info
= mlxsw_pci_queue_elem_info_producer_get(q
);
1610 mlxsw_skb_cb(skb
)->tx_info
= *tx_info
;
1611 elem_info
->u
.sdq
.skb
= skb
;
1613 wqe
= elem_info
->elem
;
1614 mlxsw_pci_wqe_c_set(wqe
, 1); /* always report completion */
1615 mlxsw_pci_wqe_lp_set(wqe
, !!tx_info
->is_emad
);
1616 mlxsw_pci_wqe_type_set(wqe
, MLXSW_PCI_WQE_TYPE_ETHERNET
);
1618 err
= mlxsw_pci_wqe_frag_map(mlxsw_pci
, wqe
, 0, skb
->data
,
1619 skb_headlen(skb
), DMA_TO_DEVICE
);
1623 for (i
= 0; i
< skb_shinfo(skb
)->nr_frags
; i
++) {
1624 const skb_frag_t
*frag
= &skb_shinfo(skb
)->frags
[i
];
1626 err
= mlxsw_pci_wqe_frag_map(mlxsw_pci
, wqe
, i
+ 1,
1627 skb_frag_address(frag
),
1628 skb_frag_size(frag
),
1634 if (unlikely(skb_shinfo(skb
)->tx_flags
& SKBTX_HW_TSTAMP
))
1635 skb_shinfo(skb
)->tx_flags
|= SKBTX_IN_PROGRESS
;
1637 /* Set unused sq entries byte count to zero. */
1638 for (i
++; i
< MLXSW_PCI_WQE_SG_ENTRIES
; i
++)
1639 mlxsw_pci_wqe_byte_count_set(wqe
, i
, 0);
1641 /* Everything is set up, ring producer doorbell to get HW going */
1642 q
->producer_counter
++;
1643 mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci
, q
);
1649 mlxsw_pci_wqe_frag_unmap(mlxsw_pci
, wqe
, i
, DMA_TO_DEVICE
);
1651 spin_unlock_bh(&q
->lock
);
1655 static int mlxsw_pci_cmd_exec(void *bus_priv
, u16 opcode
, u8 opcode_mod
,
1656 u32 in_mod
, bool out_mbox_direct
,
1657 char *in_mbox
, size_t in_mbox_size
,
1658 char *out_mbox
, size_t out_mbox_size
,
1661 struct mlxsw_pci
*mlxsw_pci
= bus_priv
;
1662 dma_addr_t in_mapaddr
= 0, out_mapaddr
= 0;
1663 bool evreq
= mlxsw_pci
->cmd
.nopoll
;
1664 unsigned long timeout
= msecs_to_jiffies(MLXSW_PCI_CIR_TIMEOUT_MSECS
);
1665 bool *p_wait_done
= &mlxsw_pci
->cmd
.wait_done
;
1668 *p_status
= MLXSW_CMD_STATUS_OK
;
1670 err
= mutex_lock_interruptible(&mlxsw_pci
->cmd
.lock
);
1675 memcpy(mlxsw_pci
->cmd
.in_mbox
.buf
, in_mbox
, in_mbox_size
);
1676 in_mapaddr
= mlxsw_pci
->cmd
.in_mbox
.mapaddr
;
1678 mlxsw_pci_write32(mlxsw_pci
, CIR_IN_PARAM_HI
, upper_32_bits(in_mapaddr
));
1679 mlxsw_pci_write32(mlxsw_pci
, CIR_IN_PARAM_LO
, lower_32_bits(in_mapaddr
));
1682 out_mapaddr
= mlxsw_pci
->cmd
.out_mbox
.mapaddr
;
1683 mlxsw_pci_write32(mlxsw_pci
, CIR_OUT_PARAM_HI
, upper_32_bits(out_mapaddr
));
1684 mlxsw_pci_write32(mlxsw_pci
, CIR_OUT_PARAM_LO
, lower_32_bits(out_mapaddr
));
1686 mlxsw_pci_write32(mlxsw_pci
, CIR_IN_MODIFIER
, in_mod
);
1687 mlxsw_pci_write32(mlxsw_pci
, CIR_TOKEN
, 0);
1689 *p_wait_done
= false;
1691 wmb(); /* all needs to be written before we write control register */
1692 mlxsw_pci_write32(mlxsw_pci
, CIR_CTRL
,
1693 MLXSW_PCI_CIR_CTRL_GO_BIT
|
1694 (evreq
? MLXSW_PCI_CIR_CTRL_EVREQ_BIT
: 0) |
1695 (opcode_mod
<< MLXSW_PCI_CIR_CTRL_OPCODE_MOD_SHIFT
) |
1701 end
= jiffies
+ timeout
;
1703 u32 ctrl
= mlxsw_pci_read32(mlxsw_pci
, CIR_CTRL
);
1705 if (!(ctrl
& MLXSW_PCI_CIR_CTRL_GO_BIT
)) {
1706 *p_wait_done
= true;
1707 *p_status
= ctrl
>> MLXSW_PCI_CIR_CTRL_STATUS_SHIFT
;
1711 } while (time_before(jiffies
, end
));
1713 wait_event_timeout(mlxsw_pci
->cmd
.wait
, *p_wait_done
, timeout
);
1714 *p_status
= mlxsw_pci
->cmd
.comp
.status
;
1725 if (!err
&& out_mbox
&& out_mbox_direct
) {
1726 /* Some commands don't use output param as address to mailbox
1727 * but they store output directly into registers. In that case,
1728 * copy registers into mbox buffer.
1733 tmp
= cpu_to_be32(mlxsw_pci_read32(mlxsw_pci
,
1735 memcpy(out_mbox
, &tmp
, sizeof(tmp
));
1736 tmp
= cpu_to_be32(mlxsw_pci_read32(mlxsw_pci
,
1738 memcpy(out_mbox
+ sizeof(tmp
), &tmp
, sizeof(tmp
));
1740 } else if (!err
&& out_mbox
) {
1741 memcpy(out_mbox
, mlxsw_pci
->cmd
.out_mbox
.buf
, out_mbox_size
);
1744 mutex_unlock(&mlxsw_pci
->cmd
.lock
);
1749 static u32
mlxsw_pci_read_frc_h(void *bus_priv
)
1751 struct mlxsw_pci
*mlxsw_pci
= bus_priv
;
1754 frc_offset
= mlxsw_pci
->free_running_clock_offset
;
1755 return mlxsw_pci_read32(mlxsw_pci
, FREE_RUNNING_CLOCK_H(frc_offset
));
1758 static u32
mlxsw_pci_read_frc_l(void *bus_priv
)
1760 struct mlxsw_pci
*mlxsw_pci
= bus_priv
;
1763 frc_offset
= mlxsw_pci
->free_running_clock_offset
;
1764 return mlxsw_pci_read32(mlxsw_pci
, FREE_RUNNING_CLOCK_L(frc_offset
));
1767 static const struct mlxsw_bus mlxsw_pci_bus
= {
1769 .init
= mlxsw_pci_init
,
1770 .fini
= mlxsw_pci_fini
,
1771 .skb_transmit_busy
= mlxsw_pci_skb_transmit_busy
,
1772 .skb_transmit
= mlxsw_pci_skb_transmit
,
1773 .cmd_exec
= mlxsw_pci_cmd_exec
,
1774 .read_frc_h
= mlxsw_pci_read_frc_h
,
1775 .read_frc_l
= mlxsw_pci_read_frc_l
,
1776 .features
= MLXSW_BUS_F_TXRX
| MLXSW_BUS_F_RESET
,
1779 static int mlxsw_pci_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
1781 const char *driver_name
= pdev
->driver
->name
;
1782 struct mlxsw_pci
*mlxsw_pci
;
1785 mlxsw_pci
= kzalloc(sizeof(*mlxsw_pci
), GFP_KERNEL
);
1789 err
= pci_enable_device(pdev
);
1791 dev_err(&pdev
->dev
, "pci_enable_device failed\n");
1792 goto err_pci_enable_device
;
1795 err
= pci_request_regions(pdev
, driver_name
);
1797 dev_err(&pdev
->dev
, "pci_request_regions failed\n");
1798 goto err_pci_request_regions
;
1801 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(64));
1803 err
= pci_set_consistent_dma_mask(pdev
, DMA_BIT_MASK(64));
1805 dev_err(&pdev
->dev
, "pci_set_consistent_dma_mask failed\n");
1806 goto err_pci_set_dma_mask
;
1809 err
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
1811 dev_err(&pdev
->dev
, "pci_set_dma_mask failed\n");
1812 goto err_pci_set_dma_mask
;
1816 if (pci_resource_len(pdev
, 0) < MLXSW_PCI_BAR0_SIZE
) {
1817 dev_err(&pdev
->dev
, "invalid PCI region size\n");
1819 goto err_pci_resource_len_check
;
1822 mlxsw_pci
->hw_addr
= ioremap(pci_resource_start(pdev
, 0),
1823 pci_resource_len(pdev
, 0));
1824 if (!mlxsw_pci
->hw_addr
) {
1825 dev_err(&pdev
->dev
, "ioremap failed\n");
1829 pci_set_master(pdev
);
1831 mlxsw_pci
->pdev
= pdev
;
1832 pci_set_drvdata(pdev
, mlxsw_pci
);
1834 mlxsw_pci
->bus_info
.device_kind
= driver_name
;
1835 mlxsw_pci
->bus_info
.device_name
= pci_name(mlxsw_pci
->pdev
);
1836 mlxsw_pci
->bus_info
.dev
= &pdev
->dev
;
1837 mlxsw_pci
->bus_info
.read_frc_capable
= true;
1840 err
= mlxsw_core_bus_device_register(&mlxsw_pci
->bus_info
,
1841 &mlxsw_pci_bus
, mlxsw_pci
, false,
1844 dev_err(&pdev
->dev
, "cannot register bus device\n");
1845 goto err_bus_device_register
;
1850 err_bus_device_register
:
1851 iounmap(mlxsw_pci
->hw_addr
);
1853 err_pci_resource_len_check
:
1854 err_pci_set_dma_mask
:
1855 pci_release_regions(pdev
);
1856 err_pci_request_regions
:
1857 pci_disable_device(pdev
);
1858 err_pci_enable_device
:
1863 static void mlxsw_pci_remove(struct pci_dev
*pdev
)
1865 struct mlxsw_pci
*mlxsw_pci
= pci_get_drvdata(pdev
);
1867 mlxsw_core_bus_device_unregister(mlxsw_pci
->core
, false);
1868 iounmap(mlxsw_pci
->hw_addr
);
1869 pci_release_regions(mlxsw_pci
->pdev
);
1870 pci_disable_device(mlxsw_pci
->pdev
);
1874 int mlxsw_pci_driver_register(struct pci_driver
*pci_driver
)
1876 pci_driver
->probe
= mlxsw_pci_probe
;
1877 pci_driver
->remove
= mlxsw_pci_remove
;
1878 return pci_register_driver(pci_driver
);
1880 EXPORT_SYMBOL(mlxsw_pci_driver_register
);
1882 void mlxsw_pci_driver_unregister(struct pci_driver
*pci_driver
)
1884 pci_unregister_driver(pci_driver
);
1886 EXPORT_SYMBOL(mlxsw_pci_driver_unregister
);
1888 static int __init
mlxsw_pci_module_init(void)
1893 static void __exit
mlxsw_pci_module_exit(void)
1897 module_init(mlxsw_pci_module_init
);
1898 module_exit(mlxsw_pci_module_exit
);
1900 MODULE_LICENSE("Dual BSD/GPL");
1901 MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
1902 MODULE_DESCRIPTION("Mellanox switch PCI interface driver");