1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Huawei HiNIC PCI Express Linux driver
4 * Copyright(c) 2017 Huawei Technologies Co., Ltd
5 */
6
7 #include <linux/kernel.h>
8 #include <linux/types.h>
9 #include <linux/pci.h>
10 #include <linux/device.h>
11 #include <linux/errno.h>
12 #include <linux/slab.h>
13 #include <linux/bitops.h>
14 #include <linux/delay.h>
15 #include <linux/jiffies.h>
16 #include <linux/log2.h>
17 #include <linux/err.h>
18 #include <linux/netdevice.h>
19 #include <net/devlink.h>
20
21 #include "hinic_devlink.h"
22 #include "hinic_sriov.h"
23 #include "hinic_dev.h"
24 #include "hinic_hw_if.h"
25 #include "hinic_hw_eqs.h"
26 #include "hinic_hw_mgmt.h"
27 #include "hinic_hw_qp_ctxt.h"
28 #include "hinic_hw_qp.h"
29 #include "hinic_hw_io.h"
30 #include "hinic_hw_dev.h"
31
32 #define IO_STATUS_TIMEOUT 100
33 #define OUTBOUND_STATE_TIMEOUT 100
34 #define DB_STATE_TIMEOUT 100
35
36 #define MAX_IRQS(max_qps, num_aeqs, num_ceqs) \
37 (2 * (max_qps) + (num_aeqs) + (num_ceqs))
38
39 #define ADDR_IN_4BYTES(addr) ((addr) >> 2)
40
41 enum intr_type {
42 INTR_MSIX_TYPE,
43 };
44
45 enum io_status {
46 IO_STOPPED = 0,
47 IO_RUNNING = 1,
48 };
49
50 /**
51 * parse_capability - convert device capabilities to NIC capabilities
52 * @hwdev: the HW device to set and convert device capabilities for
53 * @dev_cap: device capabilities from FW
54 *
55 * Return 0 - Success, negative - Failure
56 **/
parse_capability(struct hinic_hwdev * hwdev,struct hinic_dev_cap * dev_cap)57 static int parse_capability(struct hinic_hwdev *hwdev,
58 struct hinic_dev_cap *dev_cap)
59 {
60 struct hinic_cap *nic_cap = &hwdev->nic_cap;
61 int num_aeqs, num_ceqs, num_irqs;
62
63 if (!HINIC_IS_VF(hwdev->hwif) && dev_cap->intr_type != INTR_MSIX_TYPE)
64 return -EFAULT;
65
66 num_aeqs = HINIC_HWIF_NUM_AEQS(hwdev->hwif);
67 num_ceqs = HINIC_HWIF_NUM_CEQS(hwdev->hwif);
68 num_irqs = HINIC_HWIF_NUM_IRQS(hwdev->hwif);
69
70 /* Each QP has its own (SQ + RQ) interrupts */
71 nic_cap->num_qps = (num_irqs - (num_aeqs + num_ceqs)) / 2;
72
73 if (nic_cap->num_qps > HINIC_Q_CTXT_MAX)
74 nic_cap->num_qps = HINIC_Q_CTXT_MAX;
75
76 if (!HINIC_IS_VF(hwdev->hwif))
77 nic_cap->max_qps = dev_cap->max_sqs + 1;
78 else
79 nic_cap->max_qps = dev_cap->max_sqs;
80
81 if (nic_cap->num_qps > nic_cap->max_qps)
82 nic_cap->num_qps = nic_cap->max_qps;
83
84 if (!HINIC_IS_VF(hwdev->hwif)) {
85 nic_cap->max_vf = dev_cap->max_vf;
86 nic_cap->max_vf_qps = dev_cap->max_vf_sqs + 1;
87 }
88
89 hwdev->port_id = dev_cap->port_id;
90
91 return 0;
92 }
93
94 /**
95 * get_capability - get device capabilities from FW
96 * @pfhwdev: the PF HW device to get capabilities for
97 *
98 * Return 0 - Success, negative - Failure
99 **/
get_capability(struct hinic_pfhwdev * pfhwdev)100 static int get_capability(struct hinic_pfhwdev *pfhwdev)
101 {
102 struct hinic_hwdev *hwdev = &pfhwdev->hwdev;
103 struct hinic_hwif *hwif = hwdev->hwif;
104 struct pci_dev *pdev = hwif->pdev;
105 struct hinic_dev_cap dev_cap;
106 u16 out_len;
107 int err;
108
109 out_len = sizeof(dev_cap);
110
111 err = hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt, HINIC_MOD_CFGM,
112 HINIC_CFG_NIC_CAP, &dev_cap, sizeof(dev_cap),
113 &dev_cap, &out_len, HINIC_MGMT_MSG_SYNC);
114 if (err) {
115 dev_err(&pdev->dev, "Failed to get capability from FW\n");
116 return err;
117 }
118
119 return parse_capability(hwdev, &dev_cap);
120 }
121
122 /**
123 * get_dev_cap - get device capabilities
124 * @hwdev: the NIC HW device to get capabilities for
125 *
126 * Return 0 - Success, negative - Failure
127 **/
get_dev_cap(struct hinic_hwdev * hwdev)128 static int get_dev_cap(struct hinic_hwdev *hwdev)
129 {
130 struct hinic_hwif *hwif = hwdev->hwif;
131 struct pci_dev *pdev = hwif->pdev;
132 struct hinic_pfhwdev *pfhwdev;
133 int err;
134
135 switch (HINIC_FUNC_TYPE(hwif)) {
136 case HINIC_PPF:
137 case HINIC_PF:
138 case HINIC_VF:
139 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
140 err = get_capability(pfhwdev);
141 if (err) {
142 dev_err(&pdev->dev, "Failed to get capability\n");
143 return err;
144 }
145 break;
146 default:
147 dev_err(&pdev->dev, "Unsupported PCI Function type\n");
148 return -EINVAL;
149 }
150
151 return 0;
152 }
153
154 /**
155 * init_msix - enable the msix and save the entries
156 * @hwdev: the NIC HW device
157 *
158 * Return 0 - Success, negative - Failure
159 **/
init_msix(struct hinic_hwdev * hwdev)160 static int init_msix(struct hinic_hwdev *hwdev)
161 {
162 struct hinic_hwif *hwif = hwdev->hwif;
163 struct pci_dev *pdev = hwif->pdev;
164 int nr_irqs, num_aeqs, num_ceqs;
165 size_t msix_entries_size;
166 int i, err;
167
168 num_aeqs = HINIC_HWIF_NUM_AEQS(hwif);
169 num_ceqs = HINIC_HWIF_NUM_CEQS(hwif);
170 nr_irqs = MAX_IRQS(HINIC_MAX_QPS, num_aeqs, num_ceqs);
171 if (nr_irqs > HINIC_HWIF_NUM_IRQS(hwif))
172 nr_irqs = HINIC_HWIF_NUM_IRQS(hwif);
173
174 msix_entries_size = nr_irqs * sizeof(*hwdev->msix_entries);
175 hwdev->msix_entries = devm_kzalloc(&pdev->dev, msix_entries_size,
176 GFP_KERNEL);
177 if (!hwdev->msix_entries)
178 return -ENOMEM;
179
180 for (i = 0; i < nr_irqs; i++)
181 hwdev->msix_entries[i].entry = i;
182
183 err = pci_enable_msix_exact(pdev, hwdev->msix_entries, nr_irqs);
184 if (err) {
185 dev_err(&pdev->dev, "Failed to enable pci msix\n");
186 return err;
187 }
188
189 return 0;
190 }
191
192 /**
193 * disable_msix - disable the msix
194 * @hwdev: the NIC HW device
195 **/
disable_msix(struct hinic_hwdev * hwdev)196 static void disable_msix(struct hinic_hwdev *hwdev)
197 {
198 struct hinic_hwif *hwif = hwdev->hwif;
199 struct pci_dev *pdev = hwif->pdev;
200
201 pci_disable_msix(pdev);
202 }
203
204 /**
205 * hinic_port_msg_cmd - send port msg to mgmt
206 * @hwdev: the NIC HW device
207 * @cmd: the port command
208 * @buf_in: input buffer
209 * @in_size: input size
210 * @buf_out: output buffer
211 * @out_size: returned output size
212 *
213 * Return 0 - Success, negative - Failure
214 **/
hinic_port_msg_cmd(struct hinic_hwdev * hwdev,enum hinic_port_cmd cmd,void * buf_in,u16 in_size,void * buf_out,u16 * out_size)215 int hinic_port_msg_cmd(struct hinic_hwdev *hwdev, enum hinic_port_cmd cmd,
216 void *buf_in, u16 in_size, void *buf_out, u16 *out_size)
217 {
218 struct hinic_pfhwdev *pfhwdev;
219
220 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
221
222 return hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt, HINIC_MOD_L2NIC, cmd,
223 buf_in, in_size, buf_out, out_size,
224 HINIC_MGMT_MSG_SYNC);
225 }
226
hinic_hilink_msg_cmd(struct hinic_hwdev * hwdev,enum hinic_hilink_cmd cmd,void * buf_in,u16 in_size,void * buf_out,u16 * out_size)227 int hinic_hilink_msg_cmd(struct hinic_hwdev *hwdev, enum hinic_hilink_cmd cmd,
228 void *buf_in, u16 in_size, void *buf_out,
229 u16 *out_size)
230 {
231 struct hinic_pfhwdev *pfhwdev;
232
233 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
234
235 return hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt, HINIC_MOD_HILINK, cmd,
236 buf_in, in_size, buf_out, out_size,
237 HINIC_MGMT_MSG_SYNC);
238 }
239
240 /**
241 * init_fw_ctxt- Init Firmware tables before network mgmt and io operations
242 * @hwdev: the NIC HW device
243 *
244 * Return 0 - Success, negative - Failure
245 **/
init_fw_ctxt(struct hinic_hwdev * hwdev)246 static int init_fw_ctxt(struct hinic_hwdev *hwdev)
247 {
248 struct hinic_hwif *hwif = hwdev->hwif;
249 struct pci_dev *pdev = hwif->pdev;
250 struct hinic_cmd_fw_ctxt fw_ctxt;
251 u16 out_size = sizeof(fw_ctxt);
252 int err;
253
254 fw_ctxt.func_idx = HINIC_HWIF_FUNC_IDX(hwif);
255 fw_ctxt.rx_buf_sz = HINIC_RX_BUF_SZ;
256
257 err = hinic_port_msg_cmd(hwdev, HINIC_PORT_CMD_FWCTXT_INIT,
258 &fw_ctxt, sizeof(fw_ctxt),
259 &fw_ctxt, &out_size);
260 if (err || out_size != sizeof(fw_ctxt) || fw_ctxt.status) {
261 dev_err(&pdev->dev, "Failed to init FW ctxt, err: %d, status: 0x%x, out size: 0x%x\n",
262 err, fw_ctxt.status, out_size);
263 return -EIO;
264 }
265
266 return 0;
267 }
268
269 /**
270 * set_hw_ioctxt - set the shape of the IO queues in FW
271 * @hwdev: the NIC HW device
272 * @rq_depth: rq depth
273 * @sq_depth: sq depth
274 *
275 * Return 0 - Success, negative - Failure
276 **/
set_hw_ioctxt(struct hinic_hwdev * hwdev,unsigned int sq_depth,unsigned int rq_depth)277 static int set_hw_ioctxt(struct hinic_hwdev *hwdev, unsigned int sq_depth,
278 unsigned int rq_depth)
279 {
280 struct hinic_hwif *hwif = hwdev->hwif;
281 struct hinic_cmd_hw_ioctxt hw_ioctxt;
282 struct hinic_pfhwdev *pfhwdev;
283
284 hw_ioctxt.func_idx = HINIC_HWIF_FUNC_IDX(hwif);
285 hw_ioctxt.ppf_idx = HINIC_HWIF_PPF_IDX(hwif);
286
287 hw_ioctxt.set_cmdq_depth = HW_IOCTXT_SET_CMDQ_DEPTH_DEFAULT;
288 hw_ioctxt.cmdq_depth = 0;
289
290 hw_ioctxt.lro_en = 1;
291
292 hw_ioctxt.rq_depth = ilog2(rq_depth);
293
294 hw_ioctxt.rx_buf_sz_idx = HINIC_RX_BUF_SZ_IDX;
295
296 hw_ioctxt.sq_depth = ilog2(sq_depth);
297
298 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
299
300 return hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt, HINIC_MOD_COMM,
301 HINIC_COMM_CMD_HWCTXT_SET,
302 &hw_ioctxt, sizeof(hw_ioctxt), NULL,
303 NULL, HINIC_MGMT_MSG_SYNC);
304 }
305
wait_for_outbound_state(struct hinic_hwdev * hwdev)306 static int wait_for_outbound_state(struct hinic_hwdev *hwdev)
307 {
308 enum hinic_outbound_state outbound_state;
309 struct hinic_hwif *hwif = hwdev->hwif;
310 struct pci_dev *pdev = hwif->pdev;
311 unsigned long end;
312
313 end = jiffies + msecs_to_jiffies(OUTBOUND_STATE_TIMEOUT);
314 do {
315 outbound_state = hinic_outbound_state_get(hwif);
316
317 if (outbound_state == HINIC_OUTBOUND_ENABLE)
318 return 0;
319
320 msleep(20);
321 } while (time_before(jiffies, end));
322
323 dev_err(&pdev->dev, "Wait for OUTBOUND - Timeout\n");
324 return -EFAULT;
325 }
326
wait_for_db_state(struct hinic_hwdev * hwdev)327 static int wait_for_db_state(struct hinic_hwdev *hwdev)
328 {
329 struct hinic_hwif *hwif = hwdev->hwif;
330 struct pci_dev *pdev = hwif->pdev;
331 enum hinic_db_state db_state;
332 unsigned long end;
333
334 end = jiffies + msecs_to_jiffies(DB_STATE_TIMEOUT);
335 do {
336 db_state = hinic_db_state_get(hwif);
337
338 if (db_state == HINIC_DB_ENABLE)
339 return 0;
340
341 msleep(20);
342 } while (time_before(jiffies, end));
343
344 dev_err(&pdev->dev, "Wait for DB - Timeout\n");
345 return -EFAULT;
346 }
347
348 /**
349 * clear_io_resources - set the IO resources as not active in the NIC
350 * @hwdev: the NIC HW device
351 *
352 * Return 0 - Success, negative - Failure
353 **/
clear_io_resources(struct hinic_hwdev * hwdev)354 static int clear_io_resources(struct hinic_hwdev *hwdev)
355 {
356 struct hinic_cmd_clear_io_res cmd_clear_io_res;
357 struct hinic_hwif *hwif = hwdev->hwif;
358 struct pci_dev *pdev = hwif->pdev;
359 struct hinic_pfhwdev *pfhwdev;
360 int err;
361
362 /* sleep 100ms to wait for firmware stopping I/O */
363 msleep(100);
364
365 cmd_clear_io_res.func_idx = HINIC_HWIF_FUNC_IDX(hwif);
366
367 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
368
369 err = hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt, HINIC_MOD_COMM,
370 HINIC_COMM_CMD_IO_RES_CLEAR, &cmd_clear_io_res,
371 sizeof(cmd_clear_io_res), NULL, NULL,
372 HINIC_MGMT_MSG_SYNC);
373 if (err) {
374 dev_err(&pdev->dev, "Failed to clear IO resources\n");
375 return err;
376 }
377
378 return 0;
379 }
380
381 /**
382 * set_resources_state - set the state of the resources in the NIC
383 * @hwdev: the NIC HW device
384 * @state: the state to set
385 *
386 * Return 0 - Success, negative - Failure
387 **/
set_resources_state(struct hinic_hwdev * hwdev,enum hinic_res_state state)388 static int set_resources_state(struct hinic_hwdev *hwdev,
389 enum hinic_res_state state)
390 {
391 struct hinic_cmd_set_res_state res_state;
392 struct hinic_hwif *hwif = hwdev->hwif;
393 struct hinic_pfhwdev *pfhwdev;
394
395 res_state.func_idx = HINIC_HWIF_FUNC_IDX(hwif);
396 res_state.state = state;
397
398 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
399
400 return hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt,
401 HINIC_MOD_COMM,
402 HINIC_COMM_CMD_RES_STATE_SET,
403 &res_state, sizeof(res_state), NULL,
404 NULL, HINIC_MGMT_MSG_SYNC);
405 }
406
407 /**
408 * get_base_qpn - get the first qp number
409 * @hwdev: the NIC HW device
410 * @base_qpn: returned qp number
411 *
412 * Return 0 - Success, negative - Failure
413 **/
get_base_qpn(struct hinic_hwdev * hwdev,u16 * base_qpn)414 static int get_base_qpn(struct hinic_hwdev *hwdev, u16 *base_qpn)
415 {
416 struct hinic_cmd_base_qpn cmd_base_qpn;
417 struct hinic_hwif *hwif = hwdev->hwif;
418 u16 out_size = sizeof(cmd_base_qpn);
419 struct pci_dev *pdev = hwif->pdev;
420 int err;
421
422 cmd_base_qpn.func_idx = HINIC_HWIF_FUNC_IDX(hwif);
423
424 err = hinic_port_msg_cmd(hwdev, HINIC_PORT_CMD_GET_GLOBAL_QPN,
425 &cmd_base_qpn, sizeof(cmd_base_qpn),
426 &cmd_base_qpn, &out_size);
427 if (err || out_size != sizeof(cmd_base_qpn) || cmd_base_qpn.status) {
428 dev_err(&pdev->dev, "Failed to get base qpn, err: %d, status: 0x%x, out size: 0x%x\n",
429 err, cmd_base_qpn.status, out_size);
430 return -EIO;
431 }
432
433 *base_qpn = cmd_base_qpn.qpn;
434 return 0;
435 }
436
437 /**
438 * hinic_hwdev_ifup - Preparing the HW for passing IO
439 * @hwdev: the NIC HW device
440 * @sq_depth: the send queue depth
441 * @rq_depth: the receive queue depth
442 *
443 * Return 0 - Success, negative - Failure
444 **/
hinic_hwdev_ifup(struct hinic_hwdev * hwdev,u16 sq_depth,u16 rq_depth)445 int hinic_hwdev_ifup(struct hinic_hwdev *hwdev, u16 sq_depth, u16 rq_depth)
446 {
447 struct hinic_func_to_io *func_to_io = &hwdev->func_to_io;
448 struct hinic_cap *nic_cap = &hwdev->nic_cap;
449 struct hinic_hwif *hwif = hwdev->hwif;
450 int err, num_aeqs, num_ceqs, num_qps;
451 struct msix_entry *ceq_msix_entries;
452 struct msix_entry *sq_msix_entries;
453 struct msix_entry *rq_msix_entries;
454 struct pci_dev *pdev = hwif->pdev;
455 u16 base_qpn;
456
457 err = get_base_qpn(hwdev, &base_qpn);
458 if (err) {
459 dev_err(&pdev->dev, "Failed to get global base qp number\n");
460 return err;
461 }
462
463 num_aeqs = HINIC_HWIF_NUM_AEQS(hwif);
464 num_ceqs = HINIC_HWIF_NUM_CEQS(hwif);
465
466 ceq_msix_entries = &hwdev->msix_entries[num_aeqs];
467 func_to_io->hwdev = hwdev;
468 func_to_io->sq_depth = sq_depth;
469 func_to_io->rq_depth = rq_depth;
470 func_to_io->global_qpn = base_qpn;
471
472 err = hinic_io_init(func_to_io, hwif, nic_cap->max_qps, num_ceqs,
473 ceq_msix_entries);
474 if (err) {
475 dev_err(&pdev->dev, "Failed to init IO channel\n");
476 return err;
477 }
478
479 num_qps = nic_cap->num_qps;
480 sq_msix_entries = &hwdev->msix_entries[num_aeqs + num_ceqs];
481 rq_msix_entries = &hwdev->msix_entries[num_aeqs + num_ceqs + num_qps];
482
483 err = hinic_io_create_qps(func_to_io, base_qpn, num_qps,
484 sq_msix_entries, rq_msix_entries);
485 if (err) {
486 dev_err(&pdev->dev, "Failed to create QPs\n");
487 goto err_create_qps;
488 }
489
490 err = wait_for_db_state(hwdev);
491 if (err) {
492 dev_warn(&pdev->dev, "db - disabled, try again\n");
493 hinic_db_state_set(hwif, HINIC_DB_ENABLE);
494 }
495
496 err = set_hw_ioctxt(hwdev, sq_depth, rq_depth);
497 if (err) {
498 dev_err(&pdev->dev, "Failed to set HW IO ctxt\n");
499 goto err_hw_ioctxt;
500 }
501
502 return 0;
503
504 err_hw_ioctxt:
505 hinic_io_destroy_qps(func_to_io, num_qps);
506
507 err_create_qps:
508 hinic_io_free(func_to_io);
509 return err;
510 }
511
512 /**
513 * hinic_hwdev_ifdown - Closing the HW for passing IO
514 * @hwdev: the NIC HW device
515 *
516 **/
hinic_hwdev_ifdown(struct hinic_hwdev * hwdev)517 void hinic_hwdev_ifdown(struct hinic_hwdev *hwdev)
518 {
519 struct hinic_func_to_io *func_to_io = &hwdev->func_to_io;
520 struct hinic_cap *nic_cap = &hwdev->nic_cap;
521
522 clear_io_resources(hwdev);
523
524 hinic_io_destroy_qps(func_to_io, nic_cap->num_qps);
525 hinic_io_free(func_to_io);
526 }
527
528 /**
529 * hinic_hwdev_cb_register - register callback handler for MGMT events
530 * @hwdev: the NIC HW device
531 * @cmd: the mgmt event
532 * @handle: private data for the handler
533 * @handler: event handler
534 **/
hinic_hwdev_cb_register(struct hinic_hwdev * hwdev,enum hinic_mgmt_msg_cmd cmd,void * handle,void (* handler)(void * handle,void * buf_in,u16 in_size,void * buf_out,u16 * out_size))535 void hinic_hwdev_cb_register(struct hinic_hwdev *hwdev,
536 enum hinic_mgmt_msg_cmd cmd, void *handle,
537 void (*handler)(void *handle, void *buf_in,
538 u16 in_size, void *buf_out,
539 u16 *out_size))
540 {
541 struct hinic_pfhwdev *pfhwdev;
542 struct hinic_nic_cb *nic_cb;
543 u8 cmd_cb;
544
545 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
546
547 cmd_cb = cmd - HINIC_MGMT_MSG_CMD_BASE;
548 nic_cb = &pfhwdev->nic_cb[cmd_cb];
549
550 nic_cb->handler = handler;
551 nic_cb->handle = handle;
552 nic_cb->cb_state = HINIC_CB_ENABLED;
553 }
554
555 /**
556 * hinic_hwdev_cb_unregister - unregister callback handler for MGMT events
557 * @hwdev: the NIC HW device
558 * @cmd: the mgmt event
559 **/
hinic_hwdev_cb_unregister(struct hinic_hwdev * hwdev,enum hinic_mgmt_msg_cmd cmd)560 void hinic_hwdev_cb_unregister(struct hinic_hwdev *hwdev,
561 enum hinic_mgmt_msg_cmd cmd)
562 {
563 struct hinic_hwif *hwif = hwdev->hwif;
564 struct hinic_pfhwdev *pfhwdev;
565 struct hinic_nic_cb *nic_cb;
566 u8 cmd_cb;
567
568 if (!HINIC_IS_PF(hwif) && !HINIC_IS_PPF(hwif))
569 return;
570
571 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
572
573 cmd_cb = cmd - HINIC_MGMT_MSG_CMD_BASE;
574 nic_cb = &pfhwdev->nic_cb[cmd_cb];
575
576 nic_cb->cb_state &= ~HINIC_CB_ENABLED;
577
578 while (nic_cb->cb_state & HINIC_CB_RUNNING)
579 schedule();
580
581 nic_cb->handler = NULL;
582 }
583
584 /**
585 * nic_mgmt_msg_handler - nic mgmt event handler
586 * @handle: private data for the handler
587 * @cmd: message command
588 * @buf_in: input buffer
589 * @in_size: input size
590 * @buf_out: output buffer
591 * @out_size: returned output size
592 **/
nic_mgmt_msg_handler(void * handle,u8 cmd,void * buf_in,u16 in_size,void * buf_out,u16 * out_size)593 static void nic_mgmt_msg_handler(void *handle, u8 cmd, void *buf_in,
594 u16 in_size, void *buf_out, u16 *out_size)
595 {
596 struct hinic_pfhwdev *pfhwdev = handle;
597 enum hinic_cb_state cb_state;
598 struct hinic_nic_cb *nic_cb;
599 struct hinic_hwdev *hwdev;
600 struct hinic_hwif *hwif;
601 struct pci_dev *pdev;
602 u8 cmd_cb;
603
604 hwdev = &pfhwdev->hwdev;
605 hwif = hwdev->hwif;
606 pdev = hwif->pdev;
607
608 if (cmd < HINIC_MGMT_MSG_CMD_BASE ||
609 cmd >= HINIC_MGMT_MSG_CMD_MAX) {
610 dev_err(&pdev->dev, "unknown L2NIC event, cmd = %d\n", cmd);
611 return;
612 }
613
614 cmd_cb = cmd - HINIC_MGMT_MSG_CMD_BASE;
615
616 nic_cb = &pfhwdev->nic_cb[cmd_cb];
617
618 cb_state = cmpxchg(&nic_cb->cb_state,
619 HINIC_CB_ENABLED,
620 HINIC_CB_ENABLED | HINIC_CB_RUNNING);
621
622 if (cb_state == HINIC_CB_ENABLED && nic_cb->handler)
623 nic_cb->handler(nic_cb->handle, buf_in,
624 in_size, buf_out, out_size);
625 else
626 dev_err(&pdev->dev, "Unhandled NIC Event %d\n", cmd);
627
628 nic_cb->cb_state &= ~HINIC_CB_RUNNING;
629 }
630
hinic_comm_recv_mgmt_self_cmd_reg(struct hinic_pfhwdev * pfhwdev,u8 cmd,comm_mgmt_self_msg_proc proc)631 static void hinic_comm_recv_mgmt_self_cmd_reg(struct hinic_pfhwdev *pfhwdev,
632 u8 cmd,
633 comm_mgmt_self_msg_proc proc)
634 {
635 u8 cmd_idx;
636
637 cmd_idx = pfhwdev->proc.cmd_num;
638 if (cmd_idx >= HINIC_COMM_SELF_CMD_MAX) {
639 dev_err(&pfhwdev->hwdev.hwif->pdev->dev,
640 "Register recv mgmt process failed, cmd: 0x%x\n", cmd);
641 return;
642 }
643
644 pfhwdev->proc.info[cmd_idx].cmd = cmd;
645 pfhwdev->proc.info[cmd_idx].proc = proc;
646 pfhwdev->proc.cmd_num++;
647 }
648
hinic_comm_recv_mgmt_self_cmd_unreg(struct hinic_pfhwdev * pfhwdev,u8 cmd)649 static void hinic_comm_recv_mgmt_self_cmd_unreg(struct hinic_pfhwdev *pfhwdev,
650 u8 cmd)
651 {
652 u8 cmd_idx;
653
654 cmd_idx = pfhwdev->proc.cmd_num;
655 if (cmd_idx >= HINIC_COMM_SELF_CMD_MAX) {
656 dev_err(&pfhwdev->hwdev.hwif->pdev->dev, "Unregister recv mgmt process failed, cmd: 0x%x\n",
657 cmd);
658 return;
659 }
660
661 for (cmd_idx = 0; cmd_idx < HINIC_COMM_SELF_CMD_MAX; cmd_idx++) {
662 if (cmd == pfhwdev->proc.info[cmd_idx].cmd) {
663 pfhwdev->proc.info[cmd_idx].cmd = 0;
664 pfhwdev->proc.info[cmd_idx].proc = NULL;
665 pfhwdev->proc.cmd_num--;
666 }
667 }
668 }
669
comm_mgmt_msg_handler(void * handle,u8 cmd,void * buf_in,u16 in_size,void * buf_out,u16 * out_size)670 static void comm_mgmt_msg_handler(void *handle, u8 cmd, void *buf_in,
671 u16 in_size, void *buf_out, u16 *out_size)
672 {
673 struct hinic_pfhwdev *pfhwdev = handle;
674 u8 cmd_idx;
675
676 for (cmd_idx = 0; cmd_idx < pfhwdev->proc.cmd_num; cmd_idx++) {
677 if (cmd == pfhwdev->proc.info[cmd_idx].cmd) {
678 if (!pfhwdev->proc.info[cmd_idx].proc) {
679 dev_warn(&pfhwdev->hwdev.hwif->pdev->dev,
680 "PF recv mgmt comm msg handle null, cmd: 0x%x\n",
681 cmd);
682 } else {
683 pfhwdev->proc.info[cmd_idx].proc
684 (&pfhwdev->hwdev, buf_in, in_size,
685 buf_out, out_size);
686 }
687
688 return;
689 }
690 }
691
692 dev_warn(&pfhwdev->hwdev.hwif->pdev->dev, "Received unknown mgmt cpu event: 0x%x\n",
693 cmd);
694
695 *out_size = 0;
696 }
697
698 /* pf fault report event */
pf_fault_event_handler(void * dev,void * buf_in,u16 in_size,void * buf_out,u16 * out_size)699 static void pf_fault_event_handler(void *dev, void *buf_in, u16 in_size,
700 void *buf_out, u16 *out_size)
701 {
702 struct hinic_cmd_fault_event *fault_event = buf_in;
703 struct hinic_hwdev *hwdev = dev;
704
705 if (in_size != sizeof(*fault_event)) {
706 dev_err(&hwdev->hwif->pdev->dev, "Invalid fault event report, length: %d, should be %zu\n",
707 in_size, sizeof(*fault_event));
708 return;
709 }
710
711 if (!hwdev->devlink_dev || IS_ERR_OR_NULL(hwdev->devlink_dev->hw_fault_reporter))
712 return;
713
714 devlink_health_report(hwdev->devlink_dev->hw_fault_reporter,
715 "HW fatal error reported", &fault_event->event);
716 }
717
mgmt_watchdog_timeout_event_handler(void * dev,void * buf_in,u16 in_size,void * buf_out,u16 * out_size)718 static void mgmt_watchdog_timeout_event_handler(void *dev,
719 void *buf_in, u16 in_size,
720 void *buf_out, u16 *out_size)
721 {
722 struct hinic_mgmt_watchdog_info *watchdog_info = buf_in;
723 struct hinic_hwdev *hwdev = dev;
724
725 if (in_size != sizeof(*watchdog_info)) {
726 dev_err(&hwdev->hwif->pdev->dev, "Invalid mgmt watchdog report, length: %d, should be %zu\n",
727 in_size, sizeof(*watchdog_info));
728 return;
729 }
730
731 if (!hwdev->devlink_dev || IS_ERR_OR_NULL(hwdev->devlink_dev->fw_fault_reporter))
732 return;
733
734 devlink_health_report(hwdev->devlink_dev->fw_fault_reporter,
735 "FW fatal error reported", watchdog_info);
736 }
737
738 /**
739 * init_pfhwdev - Initialize the extended components of PF
740 * @pfhwdev: the HW device for PF
741 *
742 * Return 0 - success, negative - failure
743 **/
init_pfhwdev(struct hinic_pfhwdev * pfhwdev)744 static int init_pfhwdev(struct hinic_pfhwdev *pfhwdev)
745 {
746 struct hinic_hwdev *hwdev = &pfhwdev->hwdev;
747 struct hinic_hwif *hwif = hwdev->hwif;
748 struct pci_dev *pdev = hwif->pdev;
749 int err;
750
751 err = hinic_pf_to_mgmt_init(&pfhwdev->pf_to_mgmt, hwif);
752 if (err) {
753 dev_err(&pdev->dev, "Failed to initialize PF to MGMT channel\n");
754 return err;
755 }
756
757 err = hinic_func_to_func_init(hwdev);
758 if (err) {
759 dev_err(&hwif->pdev->dev, "Failed to init mailbox\n");
760 hinic_pf_to_mgmt_free(&pfhwdev->pf_to_mgmt);
761 return err;
762 }
763
764 if (!HINIC_IS_VF(hwif)) {
765 hinic_register_mgmt_msg_cb(&pfhwdev->pf_to_mgmt,
766 HINIC_MOD_L2NIC, pfhwdev,
767 nic_mgmt_msg_handler);
768 hinic_register_mgmt_msg_cb(&pfhwdev->pf_to_mgmt, HINIC_MOD_COMM,
769 pfhwdev, comm_mgmt_msg_handler);
770 hinic_comm_recv_mgmt_self_cmd_reg(pfhwdev,
771 HINIC_COMM_CMD_FAULT_REPORT,
772 pf_fault_event_handler);
773 hinic_comm_recv_mgmt_self_cmd_reg
774 (pfhwdev, HINIC_COMM_CMD_WATCHDOG_INFO,
775 mgmt_watchdog_timeout_event_handler);
776 } else {
777 hinic_register_vf_mbox_cb(hwdev, HINIC_MOD_L2NIC,
778 nic_mgmt_msg_handler);
779 }
780
781 hinic_set_pf_action(hwif, HINIC_PF_MGMT_ACTIVE);
782 hinic_devlink_register(hwdev->devlink_dev);
783 return 0;
784 }
785
786 /**
787 * free_pfhwdev - Free the extended components of PF
788 * @pfhwdev: the HW device for PF
789 **/
free_pfhwdev(struct hinic_pfhwdev * pfhwdev)790 static void free_pfhwdev(struct hinic_pfhwdev *pfhwdev)
791 {
792 struct hinic_hwdev *hwdev = &pfhwdev->hwdev;
793
794 hinic_devlink_unregister(hwdev->devlink_dev);
795 hinic_set_pf_action(hwdev->hwif, HINIC_PF_MGMT_INIT);
796
797 if (!HINIC_IS_VF(hwdev->hwif)) {
798 hinic_comm_recv_mgmt_self_cmd_unreg(pfhwdev,
799 HINIC_COMM_CMD_WATCHDOG_INFO);
800 hinic_comm_recv_mgmt_self_cmd_unreg(pfhwdev,
801 HINIC_COMM_CMD_FAULT_REPORT);
802 hinic_unregister_mgmt_msg_cb(&pfhwdev->pf_to_mgmt,
803 HINIC_MOD_COMM);
804 hinic_unregister_mgmt_msg_cb(&pfhwdev->pf_to_mgmt,
805 HINIC_MOD_L2NIC);
806 } else {
807 hinic_unregister_vf_mbox_cb(hwdev, HINIC_MOD_L2NIC);
808 }
809
810 hinic_func_to_func_free(hwdev);
811
812 hinic_pf_to_mgmt_free(&pfhwdev->pf_to_mgmt);
813 }
814
hinic_l2nic_reset(struct hinic_hwdev * hwdev)815 static int hinic_l2nic_reset(struct hinic_hwdev *hwdev)
816 {
817 struct hinic_cmd_l2nic_reset l2nic_reset = {0};
818 u16 out_size = sizeof(l2nic_reset);
819 struct hinic_pfhwdev *pfhwdev;
820 int err;
821
822 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
823
824 l2nic_reset.func_id = HINIC_HWIF_FUNC_IDX(hwdev->hwif);
825 /* 0 represents standard l2nic reset flow */
826 l2nic_reset.reset_flag = 0;
827
828 err = hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt, HINIC_MOD_COMM,
829 HINIC_COMM_CMD_L2NIC_RESET, &l2nic_reset,
830 sizeof(l2nic_reset), &l2nic_reset,
831 &out_size, HINIC_MGMT_MSG_SYNC);
832 if (err || !out_size || l2nic_reset.status) {
833 dev_err(&hwdev->hwif->pdev->dev, "Failed to reset L2NIC resources, err: %d, status: 0x%x, out_size: 0x%x\n",
834 err, l2nic_reset.status, out_size);
835 return -EIO;
836 }
837
838 return 0;
839 }
840
hinic_get_interrupt_cfg(struct hinic_hwdev * hwdev,struct hinic_msix_config * interrupt_info)841 int hinic_get_interrupt_cfg(struct hinic_hwdev *hwdev,
842 struct hinic_msix_config *interrupt_info)
843 {
844 u16 out_size = sizeof(*interrupt_info);
845 struct hinic_pfhwdev *pfhwdev;
846 int err;
847
848 if (!hwdev || !interrupt_info)
849 return -EINVAL;
850
851 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
852
853 interrupt_info->func_id = HINIC_HWIF_FUNC_IDX(hwdev->hwif);
854
855 err = hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt, HINIC_MOD_COMM,
856 HINIC_COMM_CMD_MSI_CTRL_REG_RD_BY_UP,
857 interrupt_info, sizeof(*interrupt_info),
858 interrupt_info, &out_size, HINIC_MGMT_MSG_SYNC);
859 if (err || !out_size || interrupt_info->status) {
860 dev_err(&hwdev->hwif->pdev->dev, "Failed to get interrupt config, err: %d, status: 0x%x, out size: 0x%x\n",
861 err, interrupt_info->status, out_size);
862 return -EIO;
863 }
864
865 return 0;
866 }
867
hinic_set_interrupt_cfg(struct hinic_hwdev * hwdev,struct hinic_msix_config * interrupt_info)868 int hinic_set_interrupt_cfg(struct hinic_hwdev *hwdev,
869 struct hinic_msix_config *interrupt_info)
870 {
871 u16 out_size = sizeof(*interrupt_info);
872 struct hinic_msix_config temp_info;
873 struct hinic_pfhwdev *pfhwdev;
874 int err;
875
876 if (!hwdev)
877 return -EINVAL;
878
879 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
880
881 interrupt_info->func_id = HINIC_HWIF_FUNC_IDX(hwdev->hwif);
882
883 err = hinic_get_interrupt_cfg(hwdev, &temp_info);
884 if (err)
885 return -EINVAL;
886
887 interrupt_info->lli_credit_cnt = temp_info.lli_timer_cnt;
888 interrupt_info->lli_timer_cnt = temp_info.lli_timer_cnt;
889
890 err = hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt, HINIC_MOD_COMM,
891 HINIC_COMM_CMD_MSI_CTRL_REG_WR_BY_UP,
892 interrupt_info, sizeof(*interrupt_info),
893 interrupt_info, &out_size, HINIC_MGMT_MSG_SYNC);
894 if (err || !out_size || interrupt_info->status) {
895 dev_err(&hwdev->hwif->pdev->dev, "Failed to get interrupt config, err: %d, status: 0x%x, out size: 0x%x\n",
896 err, interrupt_info->status, out_size);
897 return -EIO;
898 }
899
900 return 0;
901 }
902
903 /**
904 * hinic_init_hwdev - Initialize the NIC HW
905 * @pdev: the NIC pci device
906 * @devlink: the poniter of hinic devlink
907 *
908 * Return initialized NIC HW device
909 *
910 * Initialize the NIC HW device and return a pointer to it
911 **/
hinic_init_hwdev(struct pci_dev * pdev,struct devlink * devlink)912 struct hinic_hwdev *hinic_init_hwdev(struct pci_dev *pdev, struct devlink *devlink)
913 {
914 struct hinic_pfhwdev *pfhwdev;
915 struct hinic_hwdev *hwdev;
916 struct hinic_hwif *hwif;
917 int err, num_aeqs;
918
919 hwif = devm_kzalloc(&pdev->dev, sizeof(*hwif), GFP_KERNEL);
920 if (!hwif)
921 return ERR_PTR(-ENOMEM);
922
923 err = hinic_init_hwif(hwif, pdev);
924 if (err) {
925 dev_err(&pdev->dev, "Failed to init HW interface\n");
926 return ERR_PTR(err);
927 }
928
929 pfhwdev = devm_kzalloc(&pdev->dev, sizeof(*pfhwdev), GFP_KERNEL);
930 if (!pfhwdev) {
931 err = -ENOMEM;
932 goto err_pfhwdev_alloc;
933 }
934
935 hwdev = &pfhwdev->hwdev;
936 hwdev->hwif = hwif;
937 hwdev->devlink_dev = devlink_priv(devlink);
938 hwdev->devlink_dev->hwdev = hwdev;
939
940 err = init_msix(hwdev);
941 if (err) {
942 dev_err(&pdev->dev, "Failed to init msix\n");
943 goto err_init_msix;
944 }
945
946 err = wait_for_outbound_state(hwdev);
947 if (err) {
948 dev_warn(&pdev->dev, "outbound - disabled, try again\n");
949 hinic_outbound_state_set(hwif, HINIC_OUTBOUND_ENABLE);
950 }
951
952 num_aeqs = HINIC_HWIF_NUM_AEQS(hwif);
953
954 err = hinic_aeqs_init(&hwdev->aeqs, hwif, num_aeqs,
955 HINIC_DEFAULT_AEQ_LEN, HINIC_EQ_PAGE_SIZE,
956 hwdev->msix_entries);
957 if (err) {
958 dev_err(&pdev->dev, "Failed to init async event queues\n");
959 goto err_aeqs_init;
960 }
961
962 err = init_pfhwdev(pfhwdev);
963 if (err) {
964 dev_err(&pdev->dev, "Failed to init PF HW device\n");
965 goto err_init_pfhwdev;
966 }
967
968 err = hinic_l2nic_reset(hwdev);
969 if (err)
970 goto err_l2nic_reset;
971
972 err = get_dev_cap(hwdev);
973 if (err) {
974 dev_err(&pdev->dev, "Failed to get device capabilities\n");
975 goto err_dev_cap;
976 }
977
978 mutex_init(&hwdev->func_to_io.nic_cfg.cfg_mutex);
979
980 err = hinic_vf_func_init(hwdev);
981 if (err) {
982 dev_err(&pdev->dev, "Failed to init nic mbox\n");
983 goto err_vf_func_init;
984 }
985
986 err = init_fw_ctxt(hwdev);
987 if (err) {
988 dev_err(&pdev->dev, "Failed to init function table\n");
989 goto err_init_fw_ctxt;
990 }
991
992 err = set_resources_state(hwdev, HINIC_RES_ACTIVE);
993 if (err) {
994 dev_err(&pdev->dev, "Failed to set resources state\n");
995 goto err_resources_state;
996 }
997
998 return hwdev;
999
1000 err_resources_state:
1001 err_init_fw_ctxt:
1002 hinic_vf_func_free(hwdev);
1003 err_vf_func_init:
1004 err_l2nic_reset:
1005 err_dev_cap:
1006 free_pfhwdev(pfhwdev);
1007
1008 err_init_pfhwdev:
1009 hinic_aeqs_free(&hwdev->aeqs);
1010
1011 err_aeqs_init:
1012 disable_msix(hwdev);
1013
1014 err_init_msix:
1015 err_pfhwdev_alloc:
1016 hinic_free_hwif(hwif);
1017 if (err > 0)
1018 err = -EIO;
1019 return ERR_PTR(err);
1020 }
1021
1022 /**
1023 * hinic_free_hwdev - Free the NIC HW device
1024 * @hwdev: the NIC HW device
1025 **/
hinic_free_hwdev(struct hinic_hwdev * hwdev)1026 void hinic_free_hwdev(struct hinic_hwdev *hwdev)
1027 {
1028 struct hinic_pfhwdev *pfhwdev = container_of(hwdev,
1029 struct hinic_pfhwdev,
1030 hwdev);
1031
1032 set_resources_state(hwdev, HINIC_RES_CLEAN);
1033
1034 hinic_vf_func_free(hwdev);
1035
1036 free_pfhwdev(pfhwdev);
1037
1038 hinic_aeqs_free(&hwdev->aeqs);
1039
1040 disable_msix(hwdev);
1041
1042 hinic_free_hwif(hwdev->hwif);
1043 }
1044
hinic_hwdev_max_num_qps(struct hinic_hwdev * hwdev)1045 int hinic_hwdev_max_num_qps(struct hinic_hwdev *hwdev)
1046 {
1047 struct hinic_cap *nic_cap = &hwdev->nic_cap;
1048
1049 return nic_cap->max_qps;
1050 }
1051
1052 /**
1053 * hinic_hwdev_num_qps - return the number QPs available for use
1054 * @hwdev: the NIC HW device
1055 *
1056 * Return number QPs available for use
1057 **/
hinic_hwdev_num_qps(struct hinic_hwdev * hwdev)1058 int hinic_hwdev_num_qps(struct hinic_hwdev *hwdev)
1059 {
1060 struct hinic_cap *nic_cap = &hwdev->nic_cap;
1061
1062 return nic_cap->num_qps;
1063 }
1064
1065 /**
1066 * hinic_hwdev_get_sq - get SQ
1067 * @hwdev: the NIC HW device
1068 * @i: the position of the SQ
1069 *
1070 * Return: the SQ in the i position
1071 **/
hinic_hwdev_get_sq(struct hinic_hwdev * hwdev,int i)1072 struct hinic_sq *hinic_hwdev_get_sq(struct hinic_hwdev *hwdev, int i)
1073 {
1074 struct hinic_func_to_io *func_to_io = &hwdev->func_to_io;
1075 struct hinic_qp *qp = &func_to_io->qps[i];
1076
1077 if (i >= hinic_hwdev_num_qps(hwdev))
1078 return NULL;
1079
1080 return &qp->sq;
1081 }
1082
1083 /**
1084 * hinic_hwdev_get_rq - get RQ
1085 * @hwdev: the NIC HW device
1086 * @i: the position of the RQ
1087 *
1088 * Return: the RQ in the i position
1089 **/
hinic_hwdev_get_rq(struct hinic_hwdev * hwdev,int i)1090 struct hinic_rq *hinic_hwdev_get_rq(struct hinic_hwdev *hwdev, int i)
1091 {
1092 struct hinic_func_to_io *func_to_io = &hwdev->func_to_io;
1093 struct hinic_qp *qp = &func_to_io->qps[i];
1094
1095 if (i >= hinic_hwdev_num_qps(hwdev))
1096 return NULL;
1097
1098 return &qp->rq;
1099 }
1100
1101 /**
1102 * hinic_hwdev_msix_cnt_set - clear message attribute counters for msix entry
1103 * @hwdev: the NIC HW device
1104 * @msix_index: msix_index
1105 *
1106 * Return 0 - Success, negative - Failure
1107 **/
hinic_hwdev_msix_cnt_set(struct hinic_hwdev * hwdev,u16 msix_index)1108 int hinic_hwdev_msix_cnt_set(struct hinic_hwdev *hwdev, u16 msix_index)
1109 {
1110 return hinic_msix_attr_cnt_clear(hwdev->hwif, msix_index);
1111 }
1112
1113 /**
1114 * hinic_hwdev_msix_set - set message attribute for msix entry
1115 * @hwdev: the NIC HW device
1116 * @msix_index: msix_index
1117 * @pending_limit: the maximum pending interrupt events (unit 8)
1118 * @coalesc_timer: coalesc period for interrupt (unit 8 us)
1119 * @lli_timer_cfg: replenishing period for low latency credit (unit 8 us)
1120 * @lli_credit_limit: maximum credits for low latency msix messages (unit 8)
1121 * @resend_timer: maximum wait for resending msix (unit coalesc period)
1122 *
1123 * Return 0 - Success, negative - Failure
1124 **/
hinic_hwdev_msix_set(struct hinic_hwdev * hwdev,u16 msix_index,u8 pending_limit,u8 coalesc_timer,u8 lli_timer_cfg,u8 lli_credit_limit,u8 resend_timer)1125 int hinic_hwdev_msix_set(struct hinic_hwdev *hwdev, u16 msix_index,
1126 u8 pending_limit, u8 coalesc_timer,
1127 u8 lli_timer_cfg, u8 lli_credit_limit,
1128 u8 resend_timer)
1129 {
1130 return hinic_msix_attr_set(hwdev->hwif, msix_index,
1131 pending_limit, coalesc_timer,
1132 lli_timer_cfg, lli_credit_limit,
1133 resend_timer);
1134 }
1135
1136 /**
1137 * hinic_hwdev_hw_ci_addr_set - set cons idx addr and attributes in HW for sq
1138 * @hwdev: the NIC HW device
1139 * @sq: send queue
1140 * @pending_limit: the maximum pending update ci events (unit 8)
1141 * @coalesc_timer: coalesc period for update ci (unit 8 us)
1142 *
1143 * Return 0 - Success, negative - Failure
1144 **/
hinic_hwdev_hw_ci_addr_set(struct hinic_hwdev * hwdev,struct hinic_sq * sq,u8 pending_limit,u8 coalesc_timer)1145 int hinic_hwdev_hw_ci_addr_set(struct hinic_hwdev *hwdev, struct hinic_sq *sq,
1146 u8 pending_limit, u8 coalesc_timer)
1147 {
1148 struct hinic_qp *qp = container_of(sq, struct hinic_qp, sq);
1149 struct hinic_hwif *hwif = hwdev->hwif;
1150 struct hinic_pfhwdev *pfhwdev;
1151 struct hinic_cmd_hw_ci hw_ci;
1152
1153 hw_ci.dma_attr_off = 0;
1154 hw_ci.pending_limit = pending_limit;
1155 hw_ci.coalesc_timer = coalesc_timer;
1156
1157 hw_ci.msix_en = 1;
1158 hw_ci.msix_entry_idx = sq->msix_entry;
1159
1160 hw_ci.func_idx = HINIC_HWIF_FUNC_IDX(hwif);
1161
1162 hw_ci.sq_id = qp->q_id;
1163
1164 hw_ci.ci_addr = ADDR_IN_4BYTES(sq->hw_ci_dma_addr);
1165
1166 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
1167 return hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt,
1168 HINIC_MOD_COMM,
1169 HINIC_COMM_CMD_SQ_HI_CI_SET,
1170 &hw_ci, sizeof(hw_ci), NULL,
1171 NULL, HINIC_MGMT_MSG_SYNC);
1172 }
1173
1174 /**
1175 * hinic_hwdev_set_msix_state- set msix state
1176 * @hwdev: the NIC HW device
1177 * @msix_index: IRQ corresponding index number
1178 * @flag: msix state
1179 *
1180 **/
hinic_hwdev_set_msix_state(struct hinic_hwdev * hwdev,u16 msix_index,enum hinic_msix_state flag)1181 void hinic_hwdev_set_msix_state(struct hinic_hwdev *hwdev, u16 msix_index,
1182 enum hinic_msix_state flag)
1183 {
1184 hinic_set_msix_state(hwdev->hwif, msix_index, flag);
1185 }
1186
hinic_get_board_info(struct hinic_hwdev * hwdev,struct hinic_comm_board_info * board_info)1187 int hinic_get_board_info(struct hinic_hwdev *hwdev,
1188 struct hinic_comm_board_info *board_info)
1189 {
1190 u16 out_size = sizeof(*board_info);
1191 struct hinic_pfhwdev *pfhwdev;
1192 int err;
1193
1194 if (!hwdev || !board_info)
1195 return -EINVAL;
1196
1197 pfhwdev = container_of(hwdev, struct hinic_pfhwdev, hwdev);
1198
1199 err = hinic_msg_to_mgmt(&pfhwdev->pf_to_mgmt, HINIC_MOD_COMM,
1200 HINIC_COMM_CMD_GET_BOARD_INFO,
1201 board_info, sizeof(*board_info),
1202 board_info, &out_size, HINIC_MGMT_MSG_SYNC);
1203 if (err || board_info->status || !out_size) {
1204 dev_err(&hwdev->hwif->pdev->dev,
1205 "Failed to get board info, err: %d, status: 0x%x, out size: 0x%x\n",
1206 err, board_info->status, out_size);
1207 return -EIO;
1208 }
1209
1210 return 0;
1211 }
1212