• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright(c) 2017 - 2019 Pensando Systems, Inc */
3 
4 #include <linux/printk.h>
5 #include <linux/dynamic_debug.h>
6 #include <linux/module.h>
7 #include <linux/netdevice.h>
8 #include <linux/utsname.h>
9 #include <generated/utsrelease.h>
10 
11 #include "ionic.h"
12 #include "ionic_bus.h"
13 #include "ionic_lif.h"
14 #include "ionic_debugfs.h"
15 
16 MODULE_DESCRIPTION(IONIC_DRV_DESCRIPTION);
17 MODULE_AUTHOR("Pensando Systems, Inc");
18 MODULE_LICENSE("GPL");
19 
ionic_error_to_str(enum ionic_status_code code)20 static const char *ionic_error_to_str(enum ionic_status_code code)
21 {
22 	switch (code) {
23 	case IONIC_RC_SUCCESS:
24 		return "IONIC_RC_SUCCESS";
25 	case IONIC_RC_EVERSION:
26 		return "IONIC_RC_EVERSION";
27 	case IONIC_RC_EOPCODE:
28 		return "IONIC_RC_EOPCODE";
29 	case IONIC_RC_EIO:
30 		return "IONIC_RC_EIO";
31 	case IONIC_RC_EPERM:
32 		return "IONIC_RC_EPERM";
33 	case IONIC_RC_EQID:
34 		return "IONIC_RC_EQID";
35 	case IONIC_RC_EQTYPE:
36 		return "IONIC_RC_EQTYPE";
37 	case IONIC_RC_ENOENT:
38 		return "IONIC_RC_ENOENT";
39 	case IONIC_RC_EINTR:
40 		return "IONIC_RC_EINTR";
41 	case IONIC_RC_EAGAIN:
42 		return "IONIC_RC_EAGAIN";
43 	case IONIC_RC_ENOMEM:
44 		return "IONIC_RC_ENOMEM";
45 	case IONIC_RC_EFAULT:
46 		return "IONIC_RC_EFAULT";
47 	case IONIC_RC_EBUSY:
48 		return "IONIC_RC_EBUSY";
49 	case IONIC_RC_EEXIST:
50 		return "IONIC_RC_EEXIST";
51 	case IONIC_RC_EINVAL:
52 		return "IONIC_RC_EINVAL";
53 	case IONIC_RC_ENOSPC:
54 		return "IONIC_RC_ENOSPC";
55 	case IONIC_RC_ERANGE:
56 		return "IONIC_RC_ERANGE";
57 	case IONIC_RC_BAD_ADDR:
58 		return "IONIC_RC_BAD_ADDR";
59 	case IONIC_RC_DEV_CMD:
60 		return "IONIC_RC_DEV_CMD";
61 	case IONIC_RC_ENOSUPP:
62 		return "IONIC_RC_ENOSUPP";
63 	case IONIC_RC_ERROR:
64 		return "IONIC_RC_ERROR";
65 	case IONIC_RC_ERDMA:
66 		return "IONIC_RC_ERDMA";
67 	case IONIC_RC_EBAD_FW:
68 		return "IONIC_RC_EBAD_FW";
69 	default:
70 		return "IONIC_RC_UNKNOWN";
71 	}
72 }
73 
ionic_error_to_errno(enum ionic_status_code code)74 static int ionic_error_to_errno(enum ionic_status_code code)
75 {
76 	switch (code) {
77 	case IONIC_RC_SUCCESS:
78 		return 0;
79 	case IONIC_RC_EVERSION:
80 	case IONIC_RC_EQTYPE:
81 	case IONIC_RC_EQID:
82 	case IONIC_RC_EINVAL:
83 	case IONIC_RC_ENOSUPP:
84 		return -EINVAL;
85 	case IONIC_RC_EPERM:
86 		return -EPERM;
87 	case IONIC_RC_ENOENT:
88 		return -ENOENT;
89 	case IONIC_RC_EAGAIN:
90 		return -EAGAIN;
91 	case IONIC_RC_ENOMEM:
92 		return -ENOMEM;
93 	case IONIC_RC_EFAULT:
94 		return -EFAULT;
95 	case IONIC_RC_EBUSY:
96 		return -EBUSY;
97 	case IONIC_RC_EEXIST:
98 		return -EEXIST;
99 	case IONIC_RC_ENOSPC:
100 		return -ENOSPC;
101 	case IONIC_RC_ERANGE:
102 		return -ERANGE;
103 	case IONIC_RC_BAD_ADDR:
104 		return -EFAULT;
105 	case IONIC_RC_EOPCODE:
106 	case IONIC_RC_EINTR:
107 	case IONIC_RC_DEV_CMD:
108 	case IONIC_RC_ERROR:
109 	case IONIC_RC_ERDMA:
110 	case IONIC_RC_EIO:
111 	default:
112 		return -EIO;
113 	}
114 }
115 
ionic_opcode_to_str(enum ionic_cmd_opcode opcode)116 static const char *ionic_opcode_to_str(enum ionic_cmd_opcode opcode)
117 {
118 	switch (opcode) {
119 	case IONIC_CMD_NOP:
120 		return "IONIC_CMD_NOP";
121 	case IONIC_CMD_INIT:
122 		return "IONIC_CMD_INIT";
123 	case IONIC_CMD_RESET:
124 		return "IONIC_CMD_RESET";
125 	case IONIC_CMD_IDENTIFY:
126 		return "IONIC_CMD_IDENTIFY";
127 	case IONIC_CMD_GETATTR:
128 		return "IONIC_CMD_GETATTR";
129 	case IONIC_CMD_SETATTR:
130 		return "IONIC_CMD_SETATTR";
131 	case IONIC_CMD_PORT_IDENTIFY:
132 		return "IONIC_CMD_PORT_IDENTIFY";
133 	case IONIC_CMD_PORT_INIT:
134 		return "IONIC_CMD_PORT_INIT";
135 	case IONIC_CMD_PORT_RESET:
136 		return "IONIC_CMD_PORT_RESET";
137 	case IONIC_CMD_PORT_GETATTR:
138 		return "IONIC_CMD_PORT_GETATTR";
139 	case IONIC_CMD_PORT_SETATTR:
140 		return "IONIC_CMD_PORT_SETATTR";
141 	case IONIC_CMD_LIF_INIT:
142 		return "IONIC_CMD_LIF_INIT";
143 	case IONIC_CMD_LIF_RESET:
144 		return "IONIC_CMD_LIF_RESET";
145 	case IONIC_CMD_LIF_IDENTIFY:
146 		return "IONIC_CMD_LIF_IDENTIFY";
147 	case IONIC_CMD_LIF_SETATTR:
148 		return "IONIC_CMD_LIF_SETATTR";
149 	case IONIC_CMD_LIF_GETATTR:
150 		return "IONIC_CMD_LIF_GETATTR";
151 	case IONIC_CMD_LIF_SETPHC:
152 		return "IONIC_CMD_LIF_SETPHC";
153 	case IONIC_CMD_RX_MODE_SET:
154 		return "IONIC_CMD_RX_MODE_SET";
155 	case IONIC_CMD_RX_FILTER_ADD:
156 		return "IONIC_CMD_RX_FILTER_ADD";
157 	case IONIC_CMD_RX_FILTER_DEL:
158 		return "IONIC_CMD_RX_FILTER_DEL";
159 	case IONIC_CMD_Q_IDENTIFY:
160 		return "IONIC_CMD_Q_IDENTIFY";
161 	case IONIC_CMD_Q_INIT:
162 		return "IONIC_CMD_Q_INIT";
163 	case IONIC_CMD_Q_CONTROL:
164 		return "IONIC_CMD_Q_CONTROL";
165 	case IONIC_CMD_RDMA_RESET_LIF:
166 		return "IONIC_CMD_RDMA_RESET_LIF";
167 	case IONIC_CMD_RDMA_CREATE_EQ:
168 		return "IONIC_CMD_RDMA_CREATE_EQ";
169 	case IONIC_CMD_RDMA_CREATE_CQ:
170 		return "IONIC_CMD_RDMA_CREATE_CQ";
171 	case IONIC_CMD_RDMA_CREATE_ADMINQ:
172 		return "IONIC_CMD_RDMA_CREATE_ADMINQ";
173 	case IONIC_CMD_FW_DOWNLOAD:
174 		return "IONIC_CMD_FW_DOWNLOAD";
175 	case IONIC_CMD_FW_CONTROL:
176 		return "IONIC_CMD_FW_CONTROL";
177 	case IONIC_CMD_FW_DOWNLOAD_V1:
178 		return "IONIC_CMD_FW_DOWNLOAD_V1";
179 	case IONIC_CMD_FW_CONTROL_V1:
180 		return "IONIC_CMD_FW_CONTROL_V1";
181 	case IONIC_CMD_VF_GETATTR:
182 		return "IONIC_CMD_VF_GETATTR";
183 	case IONIC_CMD_VF_SETATTR:
184 		return "IONIC_CMD_VF_SETATTR";
185 	default:
186 		return "DEVCMD_UNKNOWN";
187 	}
188 }
189 
ionic_adminq_flush(struct ionic_lif * lif)190 static void ionic_adminq_flush(struct ionic_lif *lif)
191 {
192 	struct ionic_desc_info *desc_info;
193 	unsigned long irqflags;
194 	struct ionic_queue *q;
195 
196 	spin_lock_irqsave(&lif->adminq_lock, irqflags);
197 	if (!lif->adminqcq) {
198 		spin_unlock_irqrestore(&lif->adminq_lock, irqflags);
199 		return;
200 	}
201 
202 	q = &lif->adminqcq->q;
203 
204 	while (q->tail_idx != q->head_idx) {
205 		desc_info = &q->info[q->tail_idx];
206 		memset(desc_info->desc, 0, sizeof(union ionic_adminq_cmd));
207 		desc_info->cb = NULL;
208 		desc_info->cb_arg = NULL;
209 		q->tail_idx = (q->tail_idx + 1) & (q->num_descs - 1);
210 	}
211 	spin_unlock_irqrestore(&lif->adminq_lock, irqflags);
212 }
213 
ionic_adminq_check_err(struct ionic_lif * lif,struct ionic_admin_ctx * ctx,bool timeout)214 static int ionic_adminq_check_err(struct ionic_lif *lif,
215 				  struct ionic_admin_ctx *ctx,
216 				  bool timeout)
217 {
218 	struct net_device *netdev = lif->netdev;
219 	const char *opcode_str;
220 	const char *status_str;
221 	int err = 0;
222 
223 	if (ctx->comp.comp.status || timeout) {
224 		opcode_str = ionic_opcode_to_str(ctx->cmd.cmd.opcode);
225 		status_str = ionic_error_to_str(ctx->comp.comp.status);
226 		err = timeout ? -ETIMEDOUT :
227 				ionic_error_to_errno(ctx->comp.comp.status);
228 
229 		netdev_err(netdev, "%s (%d) failed: %s (%d)\n",
230 			   opcode_str, ctx->cmd.cmd.opcode,
231 			   timeout ? "TIMEOUT" : status_str, err);
232 
233 		if (timeout)
234 			ionic_adminq_flush(lif);
235 	}
236 
237 	return err;
238 }
239 
ionic_adminq_cb(struct ionic_queue * q,struct ionic_desc_info * desc_info,struct ionic_cq_info * cq_info,void * cb_arg)240 static void ionic_adminq_cb(struct ionic_queue *q,
241 			    struct ionic_desc_info *desc_info,
242 			    struct ionic_cq_info *cq_info, void *cb_arg)
243 {
244 	struct ionic_admin_ctx *ctx = cb_arg;
245 	struct ionic_admin_comp *comp;
246 
247 	if (!ctx)
248 		return;
249 
250 	comp = cq_info->cq_desc;
251 
252 	memcpy(&ctx->comp, comp, sizeof(*comp));
253 
254 	dev_dbg(q->dev, "comp admin queue command:\n");
255 	dynamic_hex_dump("comp ", DUMP_PREFIX_OFFSET, 16, 1,
256 			 &ctx->comp, sizeof(ctx->comp), true);
257 
258 	complete_all(&ctx->work);
259 }
260 
ionic_adminq_post(struct ionic_lif * lif,struct ionic_admin_ctx * ctx)261 int ionic_adminq_post(struct ionic_lif *lif, struct ionic_admin_ctx *ctx)
262 {
263 	struct ionic_desc_info *desc_info;
264 	unsigned long irqflags;
265 	struct ionic_queue *q;
266 	int err = 0;
267 
268 	spin_lock_irqsave(&lif->adminq_lock, irqflags);
269 	if (!lif->adminqcq) {
270 		spin_unlock_irqrestore(&lif->adminq_lock, irqflags);
271 		return -EIO;
272 	}
273 
274 	q = &lif->adminqcq->q;
275 
276 	if (!ionic_q_has_space(q, 1)) {
277 		err = -ENOSPC;
278 		goto err_out;
279 	}
280 
281 	err = ionic_heartbeat_check(lif->ionic);
282 	if (err)
283 		goto err_out;
284 
285 	desc_info = &q->info[q->head_idx];
286 	memcpy(desc_info->desc, &ctx->cmd, sizeof(ctx->cmd));
287 
288 	dev_dbg(&lif->netdev->dev, "post admin queue command:\n");
289 	dynamic_hex_dump("cmd ", DUMP_PREFIX_OFFSET, 16, 1,
290 			 &ctx->cmd, sizeof(ctx->cmd), true);
291 
292 	ionic_q_post(q, true, ionic_adminq_cb, ctx);
293 
294 err_out:
295 	spin_unlock_irqrestore(&lif->adminq_lock, irqflags);
296 
297 	return err;
298 }
299 
ionic_adminq_wait(struct ionic_lif * lif,struct ionic_admin_ctx * ctx,int err)300 int ionic_adminq_wait(struct ionic_lif *lif, struct ionic_admin_ctx *ctx, int err)
301 {
302 	struct net_device *netdev = lif->netdev;
303 	unsigned long remaining;
304 	const char *name;
305 
306 	if (err) {
307 		if (!test_bit(IONIC_LIF_F_FW_RESET, lif->state)) {
308 			name = ionic_opcode_to_str(ctx->cmd.cmd.opcode);
309 			netdev_err(netdev, "Posting of %s (%d) failed: %d\n",
310 				   name, ctx->cmd.cmd.opcode, err);
311 		}
312 		return err;
313 	}
314 
315 	remaining = wait_for_completion_timeout(&ctx->work,
316 						HZ * (ulong)DEVCMD_TIMEOUT);
317 	return ionic_adminq_check_err(lif, ctx, (remaining == 0));
318 }
319 
ionic_adminq_post_wait(struct ionic_lif * lif,struct ionic_admin_ctx * ctx)320 int ionic_adminq_post_wait(struct ionic_lif *lif, struct ionic_admin_ctx *ctx)
321 {
322 	int err;
323 
324 	err = ionic_adminq_post(lif, ctx);
325 
326 	return ionic_adminq_wait(lif, ctx, err);
327 }
328 
ionic_dev_cmd_clean(struct ionic * ionic)329 static void ionic_dev_cmd_clean(struct ionic *ionic)
330 {
331 	struct ionic_dev *idev = &ionic->idev;
332 
333 	iowrite32(0, &idev->dev_cmd_regs->doorbell);
334 	memset_io(&idev->dev_cmd_regs->cmd, 0, sizeof(idev->dev_cmd_regs->cmd));
335 }
336 
ionic_dev_cmd_wait(struct ionic * ionic,unsigned long max_seconds)337 int ionic_dev_cmd_wait(struct ionic *ionic, unsigned long max_seconds)
338 {
339 	struct ionic_dev *idev = &ionic->idev;
340 	unsigned long start_time;
341 	unsigned long max_wait;
342 	unsigned long duration;
343 	int opcode;
344 	int hb = 0;
345 	int done;
346 	int err;
347 
348 	/* Wait for dev cmd to complete, retrying if we get EAGAIN,
349 	 * but don't wait any longer than max_seconds.
350 	 */
351 	max_wait = jiffies + (max_seconds * HZ);
352 try_again:
353 	opcode = idev->opcode;
354 	start_time = jiffies;
355 	do {
356 		done = ionic_dev_cmd_done(idev);
357 		if (done)
358 			break;
359 		usleep_range(100, 200);
360 
361 		/* Don't check the heartbeat on FW_CONTROL commands as they are
362 		 * notorious for interrupting the firmware's heartbeat update.
363 		 */
364 		if (opcode != IONIC_CMD_FW_CONTROL)
365 			hb = ionic_heartbeat_check(ionic);
366 	} while (!done && !hb && time_before(jiffies, max_wait));
367 	duration = jiffies - start_time;
368 
369 	dev_dbg(ionic->dev, "DEVCMD %s (%d) done=%d took %ld secs (%ld jiffies)\n",
370 		ionic_opcode_to_str(opcode), opcode,
371 		done, duration / HZ, duration);
372 
373 	if (!done && hb) {
374 		/* It is possible (but unlikely) that FW was busy and missed a
375 		 * heartbeat check but is still alive and will process this
376 		 * request, so don't clean the dev_cmd in this case.
377 		 */
378 		dev_dbg(ionic->dev, "DEVCMD %s (%d) failed - FW halted\n",
379 			ionic_opcode_to_str(opcode), opcode);
380 		return -ENXIO;
381 	}
382 
383 	if (!done && !time_before(jiffies, max_wait)) {
384 		ionic_dev_cmd_clean(ionic);
385 		dev_warn(ionic->dev, "DEVCMD %s (%d) timeout after %ld secs\n",
386 			 ionic_opcode_to_str(opcode), opcode, max_seconds);
387 		return -ETIMEDOUT;
388 	}
389 
390 	err = ionic_dev_cmd_status(&ionic->idev);
391 	if (err) {
392 		if (err == IONIC_RC_EAGAIN &&
393 		    time_before(jiffies, (max_wait - HZ))) {
394 			dev_dbg(ionic->dev, "DEV_CMD %s (%d), %s (%d) retrying...\n",
395 				ionic_opcode_to_str(opcode), opcode,
396 				ionic_error_to_str(err), err);
397 
398 			iowrite32(0, &idev->dev_cmd_regs->done);
399 			msleep(1000);
400 			iowrite32(1, &idev->dev_cmd_regs->doorbell);
401 			goto try_again;
402 		}
403 
404 		if (!(opcode == IONIC_CMD_FW_CONTROL && err == IONIC_RC_EAGAIN))
405 			dev_err(ionic->dev, "DEV_CMD %s (%d) error, %s (%d) failed\n",
406 				ionic_opcode_to_str(opcode), opcode,
407 				ionic_error_to_str(err), err);
408 
409 		return ionic_error_to_errno(err);
410 	}
411 
412 	ionic_dev_cmd_clean(ionic);
413 
414 	return 0;
415 }
416 
ionic_setup(struct ionic * ionic)417 int ionic_setup(struct ionic *ionic)
418 {
419 	int err;
420 
421 	err = ionic_dev_setup(ionic);
422 	if (err)
423 		return err;
424 	ionic_reset(ionic);
425 
426 	return 0;
427 }
428 
ionic_identify(struct ionic * ionic)429 int ionic_identify(struct ionic *ionic)
430 {
431 	struct ionic_identity *ident = &ionic->ident;
432 	struct ionic_dev *idev = &ionic->idev;
433 	size_t sz;
434 	int err;
435 
436 	memset(ident, 0, sizeof(*ident));
437 
438 	ident->drv.os_type = cpu_to_le32(IONIC_OS_TYPE_LINUX);
439 	strncpy(ident->drv.driver_ver_str, UTS_RELEASE,
440 		sizeof(ident->drv.driver_ver_str) - 1);
441 
442 	mutex_lock(&ionic->dev_cmd_lock);
443 
444 	sz = min(sizeof(ident->drv), sizeof(idev->dev_cmd_regs->data));
445 	memcpy_toio(&idev->dev_cmd_regs->data, &ident->drv, sz);
446 
447 	ionic_dev_cmd_identify(idev, IONIC_IDENTITY_VERSION_1);
448 	err = ionic_dev_cmd_wait(ionic, DEVCMD_TIMEOUT);
449 	if (!err) {
450 		sz = min(sizeof(ident->dev), sizeof(idev->dev_cmd_regs->data));
451 		memcpy_fromio(&ident->dev, &idev->dev_cmd_regs->data, sz);
452 	}
453 	mutex_unlock(&ionic->dev_cmd_lock);
454 
455 	dev_info(ionic->dev, "FW: %s\n", idev->dev_info.fw_version);
456 
457 	if (err) {
458 		dev_err(ionic->dev, "Cannot identify ionic: %dn", err);
459 		goto err_out;
460 	}
461 
462 	err = ionic_lif_identify(ionic, IONIC_LIF_TYPE_CLASSIC,
463 				 &ionic->ident.lif);
464 	if (err) {
465 		dev_err(ionic->dev, "Cannot identify LIFs: %d\n", err);
466 		goto err_out;
467 	}
468 
469 	return 0;
470 
471 err_out:
472 	return err;
473 }
474 
ionic_init(struct ionic * ionic)475 int ionic_init(struct ionic *ionic)
476 {
477 	struct ionic_dev *idev = &ionic->idev;
478 	int err;
479 
480 	mutex_lock(&ionic->dev_cmd_lock);
481 	ionic_dev_cmd_init(idev);
482 	err = ionic_dev_cmd_wait(ionic, DEVCMD_TIMEOUT);
483 	mutex_unlock(&ionic->dev_cmd_lock);
484 
485 	return err;
486 }
487 
ionic_reset(struct ionic * ionic)488 int ionic_reset(struct ionic *ionic)
489 {
490 	struct ionic_dev *idev = &ionic->idev;
491 	int err;
492 
493 	if (!ionic_is_fw_running(idev))
494 		return 0;
495 
496 	mutex_lock(&ionic->dev_cmd_lock);
497 	ionic_dev_cmd_reset(idev);
498 	err = ionic_dev_cmd_wait(ionic, DEVCMD_TIMEOUT);
499 	mutex_unlock(&ionic->dev_cmd_lock);
500 
501 	return err;
502 }
503 
ionic_port_identify(struct ionic * ionic)504 int ionic_port_identify(struct ionic *ionic)
505 {
506 	struct ionic_identity *ident = &ionic->ident;
507 	struct ionic_dev *idev = &ionic->idev;
508 	size_t sz;
509 	int err;
510 
511 	mutex_lock(&ionic->dev_cmd_lock);
512 
513 	ionic_dev_cmd_port_identify(idev);
514 	err = ionic_dev_cmd_wait(ionic, DEVCMD_TIMEOUT);
515 	if (!err) {
516 		sz = min(sizeof(ident->port), sizeof(idev->dev_cmd_regs->data));
517 		memcpy_fromio(&ident->port, &idev->dev_cmd_regs->data, sz);
518 	}
519 
520 	mutex_unlock(&ionic->dev_cmd_lock);
521 
522 	return err;
523 }
524 
ionic_port_init(struct ionic * ionic)525 int ionic_port_init(struct ionic *ionic)
526 {
527 	struct ionic_identity *ident = &ionic->ident;
528 	struct ionic_dev *idev = &ionic->idev;
529 	size_t sz;
530 	int err;
531 
532 	if (!idev->port_info) {
533 		idev->port_info_sz = ALIGN(sizeof(*idev->port_info), PAGE_SIZE);
534 		idev->port_info = dma_alloc_coherent(ionic->dev,
535 						     idev->port_info_sz,
536 						     &idev->port_info_pa,
537 						     GFP_KERNEL);
538 		if (!idev->port_info)
539 			return -ENOMEM;
540 	}
541 
542 	sz = min(sizeof(ident->port.config), sizeof(idev->dev_cmd_regs->data));
543 
544 	mutex_lock(&ionic->dev_cmd_lock);
545 
546 	memcpy_toio(&idev->dev_cmd_regs->data, &ident->port.config, sz);
547 	ionic_dev_cmd_port_init(idev);
548 	err = ionic_dev_cmd_wait(ionic, DEVCMD_TIMEOUT);
549 
550 	ionic_dev_cmd_port_state(&ionic->idev, IONIC_PORT_ADMIN_STATE_UP);
551 	(void)ionic_dev_cmd_wait(ionic, DEVCMD_TIMEOUT);
552 
553 	mutex_unlock(&ionic->dev_cmd_lock);
554 	if (err) {
555 		dev_err(ionic->dev, "Failed to init port\n");
556 		dma_free_coherent(ionic->dev, idev->port_info_sz,
557 				  idev->port_info, idev->port_info_pa);
558 		idev->port_info = NULL;
559 		idev->port_info_pa = 0;
560 	}
561 
562 	return err;
563 }
564 
ionic_port_reset(struct ionic * ionic)565 int ionic_port_reset(struct ionic *ionic)
566 {
567 	struct ionic_dev *idev = &ionic->idev;
568 	int err = 0;
569 
570 	if (!idev->port_info)
571 		return 0;
572 
573 	if (ionic_is_fw_running(idev)) {
574 		mutex_lock(&ionic->dev_cmd_lock);
575 		ionic_dev_cmd_port_reset(idev);
576 		err = ionic_dev_cmd_wait(ionic, DEVCMD_TIMEOUT);
577 		mutex_unlock(&ionic->dev_cmd_lock);
578 	}
579 
580 	dma_free_coherent(ionic->dev, idev->port_info_sz,
581 			  idev->port_info, idev->port_info_pa);
582 
583 	idev->port_info = NULL;
584 	idev->port_info_pa = 0;
585 
586 	return err;
587 }
588 
ionic_init_module(void)589 static int __init ionic_init_module(void)
590 {
591 	int ret;
592 
593 	ionic_debugfs_create();
594 	ret = ionic_bus_register_driver();
595 	if (ret)
596 		ionic_debugfs_destroy();
597 
598 	return ret;
599 }
600 
ionic_cleanup_module(void)601 static void __exit ionic_cleanup_module(void)
602 {
603 	ionic_bus_unregister_driver();
604 	ionic_debugfs_destroy();
605 
606 	pr_info("%s removed\n", IONIC_DRV_NAME);
607 }
608 
609 module_init(ionic_init_module);
610 module_exit(ionic_cleanup_module);
611