main.c 105.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * CXL Flash Device Driver
 *
 * Written by: Manoj N. Kumar <manoj@linux.vnet.ibm.com>, IBM Corporation
 *             Matthew R. Ochs <mrochs@linux.vnet.ibm.com>, IBM Corporation
 *
 * Copyright (C) 2015 IBM Corporation
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#include <linux/delay.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/pci.h>

#include <asm/unaligned.h>

#include <misc/cxl.h>

#include <scsi/scsi_cmnd.h>
#include <scsi/scsi_host.h>
M
Matthew R. Ochs 已提交
26
#include <uapi/scsi/cxlflash_ioctl.h>
27 28 29 30 31 32 33 34 35 36

#include "main.h"
#include "sislite.h"
#include "common.h"

MODULE_DESCRIPTION(CXLFLASH_ADAPTER_NAME);
MODULE_AUTHOR("Manoj N. Kumar <manoj@linux.vnet.ibm.com>");
MODULE_AUTHOR("Matthew R. Ochs <mrochs@linux.vnet.ibm.com>");
MODULE_LICENSE("GPL");

37 38 39 40
static struct class *cxlflash_class;
static u32 cxlflash_major;
static DECLARE_BITMAP(cxlflash_minor, CXLFLASH_MAX_ADAPTERS);

41 42 43 44 45 46 47 48 49
/**
 * process_cmd_err() - command error handler
 * @cmd:	AFU command that experienced the error.
 * @scp:	SCSI command associated with the AFU command in error.
 *
 * Translates error bits from AFU command to SCSI command results.
 */
static void process_cmd_err(struct afu_cmd *cmd, struct scsi_cmnd *scp)
{
M
Matthew R. Ochs 已提交
50 51 52
	struct afu *afu = cmd->parent;
	struct cxlflash_cfg *cfg = afu->parent;
	struct device *dev = &cfg->dev->dev;
53 54
	struct sisl_ioarcb *ioarcb;
	struct sisl_ioasa *ioasa;
55
	u32 resid;
56 57 58 59 60 61 62 63

	if (unlikely(!cmd))
		return;

	ioarcb = &(cmd->rcb);
	ioasa = &(cmd->sa);

	if (ioasa->rc.flags & SISL_RC_FLAGS_UNDERRUN) {
64 65
		resid = ioasa->resid;
		scsi_set_resid(scp, resid);
M
Matthew R. Ochs 已提交
66 67
		dev_dbg(dev, "%s: cmd underrun cmd = %p scp = %p, resid = %d\n",
			__func__, cmd, scp, resid);
68 69 70
	}

	if (ioasa->rc.flags & SISL_RC_FLAGS_OVERRUN) {
M
Matthew R. Ochs 已提交
71 72
		dev_dbg(dev, "%s: cmd underrun cmd = %p scp = %p\n",
			__func__, cmd, scp);
73 74 75
		scp->result = (DID_ERROR << 16);
	}

M
Matthew R. Ochs 已提交
76 77 78 79
	dev_dbg(dev, "%s: cmd failed afu_rc=%02x scsi_rc=%02x fc_rc=%02x "
		"afu_extra=%02x scsi_extra=%02x fc_extra=%02x\n", __func__,
		ioasa->rc.afu_rc, ioasa->rc.scsi_rc, ioasa->rc.fc_rc,
		ioasa->afu_extra, ioasa->scsi_extra, ioasa->fc_extra);
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106

	if (ioasa->rc.scsi_rc) {
		/* We have a SCSI status */
		if (ioasa->rc.flags & SISL_RC_FLAGS_SENSE_VALID) {
			memcpy(scp->sense_buffer, ioasa->sense_data,
			       SISL_SENSE_DATA_LEN);
			scp->result = ioasa->rc.scsi_rc;
		} else
			scp->result = ioasa->rc.scsi_rc | (DID_ERROR << 16);
	}

	/*
	 * We encountered an error. Set scp->result based on nature
	 * of error.
	 */
	if (ioasa->rc.fc_rc) {
		/* We have an FC status */
		switch (ioasa->rc.fc_rc) {
		case SISL_FC_RC_LINKDOWN:
			scp->result = (DID_REQUEUE << 16);
			break;
		case SISL_FC_RC_RESID:
			/* This indicates an FCP resid underrun */
			if (!(ioasa->rc.flags & SISL_RC_FLAGS_OVERRUN)) {
				/* If the SISL_RC_FLAGS_OVERRUN flag was set,
				 * then we will handle this error else where.
				 * If not then we must handle it here.
107
				 * This is probably an AFU bug.
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
				 */
				scp->result = (DID_ERROR << 16);
			}
			break;
		case SISL_FC_RC_RESIDERR:
			/* Resid mismatch between adapter and device */
		case SISL_FC_RC_TGTABORT:
		case SISL_FC_RC_ABORTOK:
		case SISL_FC_RC_ABORTFAIL:
		case SISL_FC_RC_NOLOGI:
		case SISL_FC_RC_ABORTPEND:
		case SISL_FC_RC_WRABORTPEND:
		case SISL_FC_RC_NOEXP:
		case SISL_FC_RC_INUSE:
			scp->result = (DID_ERROR << 16);
			break;
		}
	}

	if (ioasa->rc.afu_rc) {
		/* We have an AFU error */
		switch (ioasa->rc.afu_rc) {
		case SISL_AFU_RC_NO_CHANNELS:
131
			scp->result = (DID_NO_CONNECT << 16);
132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
			break;
		case SISL_AFU_RC_DATA_DMA_ERR:
			switch (ioasa->afu_extra) {
			case SISL_AFU_DMA_ERR_PAGE_IN:
				/* Retry */
				scp->result = (DID_IMM_RETRY << 16);
				break;
			case SISL_AFU_DMA_ERR_INVALID_EA:
			default:
				scp->result = (DID_ERROR << 16);
			}
			break;
		case SISL_AFU_RC_OUT_OF_DATA_BUFS:
			/* Retry */
			scp->result = (DID_ALLOC_FAILURE << 16);
			break;
		default:
			scp->result = (DID_ERROR << 16);
		}
	}
}

/**
 * cmd_complete() - command completion handler
 * @cmd:	AFU command that has completed.
 *
158 159 160 161
 * For SCSI commands this routine prepares and submits commands that have
 * either completed or timed out to the SCSI stack. For internal commands
 * (TMF or AFU), this routine simply notifies the originator that the
 * command has completed.
162 163 164 165 166 167 168
 */
static void cmd_complete(struct afu_cmd *cmd)
{
	struct scsi_cmnd *scp;
	ulong lock_flags;
	struct afu *afu = cmd->parent;
	struct cxlflash_cfg *cfg = afu->parent;
M
Matthew R. Ochs 已提交
169
	struct device *dev = &cfg->dev->dev;
170
	struct hwq *hwq = get_hwq(afu, cmd->hwq_index);
171

172 173 174 175
	spin_lock_irqsave(&hwq->hsq_slock, lock_flags);
	list_del(&cmd->list);
	spin_unlock_irqrestore(&hwq->hsq_slock, lock_flags);

176 177
	if (cmd->scp) {
		scp = cmd->scp;
178
		if (unlikely(cmd->sa.ioasc))
179 180 181 182
			process_cmd_err(cmd, scp);
		else
			scp->result = (DID_OK << 16);

M
Matthew R. Ochs 已提交
183 184
		dev_dbg_ratelimited(dev, "%s:scp=%p result=%08x ioasc=%08x\n",
				    __func__, scp, scp->result, cmd->sa.ioasc);
185
		scp->scsi_done(scp);
186 187 188 189 190
	} else if (cmd->cmd_tmf) {
		spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
		cfg->tmf_active = false;
		wake_up_all_locked(&cfg->tmf_waitq);
		spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
191 192 193 194
	} else
		complete(&cmd->cevent);
}

195 196 197 198 199 200 201 202 203
/**
 * flush_pending_cmds() - flush all pending commands on this hardware queue
 * @hwq:	Hardware queue to flush.
 *
 * The hardware send queue lock associated with this hardware queue must be
 * held when calling this routine.
 */
static void flush_pending_cmds(struct hwq *hwq)
{
204
	struct cxlflash_cfg *cfg = hwq->afu->parent;
205 206
	struct afu_cmd *cmd, *tmp;
	struct scsi_cmnd *scp;
207
	ulong lock_flags;
208 209 210 211 212 213 214 215 216 217 218 219 220 221

	list_for_each_entry_safe(cmd, tmp, &hwq->pending_cmds, list) {
		/* Bypass command when on a doneq, cmd_complete() will handle */
		if (!list_empty(&cmd->queue))
			continue;

		list_del(&cmd->list);

		if (cmd->scp) {
			scp = cmd->scp;
			scp->result = (DID_IMM_RETRY << 16);
			scp->scsi_done(scp);
		} else {
			cmd->cmd_aborted = true;
222 223 224 225 226 227 228 229 230

			if (cmd->cmd_tmf) {
				spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
				cfg->tmf_active = false;
				wake_up_all_locked(&cfg->tmf_waitq);
				spin_unlock_irqrestore(&cfg->tmf_slock,
						       lock_flags);
			} else
				complete(&cmd->cevent);
231 232 233 234
		}
	}
}

M
Matthew R. Ochs 已提交
235
/**
236 237
 * context_reset() - reset context via specified register
 * @hwq:	Hardware queue owning the context to be reset.
238
 * @reset_reg:	MMIO register to perform reset.
239
 *
240 241 242 243
 * When the reset is successful, the SISLite specification guarantees that
 * the AFU has aborted all currently pending I/O. Accordingly, these commands
 * must be flushed.
 *
244
 * Return: 0 on success, -errno on failure
M
Matthew R. Ochs 已提交
245
 */
246
static int context_reset(struct hwq *hwq, __be64 __iomem *reset_reg)
M
Matthew R. Ochs 已提交
247
{
248
	struct cxlflash_cfg *cfg = hwq->afu->parent;
249
	struct device *dev = &cfg->dev->dev;
250 251 252
	int rc = -ETIMEDOUT;
	int nretry = 0;
	u64 val = 0x1;
253
	ulong lock_flags;
M
Matthew R. Ochs 已提交
254

255
	dev_dbg(dev, "%s: hwq=%p\n", __func__, hwq);
M
Matthew R. Ochs 已提交
256

257 258
	spin_lock_irqsave(&hwq->hsq_slock, lock_flags);

259
	writeq_be(val, reset_reg);
M
Matthew R. Ochs 已提交
260
	do {
261 262 263
		val = readq_be(reset_reg);
		if ((val & 0x1) == 0x0) {
			rc = 0;
M
Matthew R. Ochs 已提交
264
			break;
265 266
		}

M
Matthew R. Ochs 已提交
267
		/* Double delay each time */
268
		udelay(1 << nretry);
M
Matthew R. Ochs 已提交
269
	} while (nretry++ < MC_ROOM_RETRY_CNT);
270

271 272 273 274 275
	if (!rc)
		flush_pending_cmds(hwq);

	spin_unlock_irqrestore(&hwq->hsq_slock, lock_flags);

276 277 278
	dev_dbg(dev, "%s: returning rc=%d, val=%016llx nretry=%d\n",
		__func__, rc, val, nretry);
	return rc;
M
Matthew R. Ochs 已提交
279 280
}

281
/**
282 283 284 285
 * context_reset_ioarrin() - reset context via IOARRIN register
 * @hwq:	Hardware queue owning the context to be reset.
 *
 * Return: 0 on success, -errno on failure
286
 */
287
static int context_reset_ioarrin(struct hwq *hwq)
288
{
289
	return context_reset(hwq, &hwq->host_map->ioarrin);
290 291
}

292
/**
293 294 295 296
 * context_reset_sq() - reset context via SQ_CONTEXT_RESET register
 * @hwq:	Hardware queue owning the context to be reset.
 *
 * Return: 0 on success, -errno on failure
297
 */
298
static int context_reset_sq(struct hwq *hwq)
299
{
300
	return context_reset(hwq, &hwq->host_map->sq_ctx_reset);
301 302
}

M
Matthew R. Ochs 已提交
303
/**
304
 * send_cmd_ioarrin() - sends an AFU command via IOARRIN register
M
Matthew R. Ochs 已提交
305 306 307 308
 * @afu:	AFU associated with the host.
 * @cmd:	AFU command to send.
 *
 * Return:
309
 *	0 on success, SCSI_MLQUEUE_HOST_BUSY on failure
M
Matthew R. Ochs 已提交
310
 */
311
static int send_cmd_ioarrin(struct afu *afu, struct afu_cmd *cmd)
M
Matthew R. Ochs 已提交
312 313 314
{
	struct cxlflash_cfg *cfg = afu->parent;
	struct device *dev = &cfg->dev->dev;
315
	struct hwq *hwq = get_hwq(afu, cmd->hwq_index);
M
Matthew R. Ochs 已提交
316
	int rc = 0;
317 318
	s64 room;
	ulong lock_flags;
M
Matthew R. Ochs 已提交
319 320

	/*
321 322
	 * To avoid the performance penalty of MMIO, spread the update of
	 * 'room' over multiple commands.
M
Matthew R. Ochs 已提交
323
	 */
324
	spin_lock_irqsave(&hwq->hsq_slock, lock_flags);
325 326
	if (--hwq->room < 0) {
		room = readq_be(&hwq->host_map->cmd_room);
327 328 329 330
		if (room <= 0) {
			dev_dbg_ratelimited(dev, "%s: no cmd_room to send "
					    "0x%02X, room=0x%016llX\n",
					    __func__, cmd->rcb.cdb[0], room);
331
			hwq->room = 0;
332 333
			rc = SCSI_MLQUEUE_HOST_BUSY;
			goto out;
M
Matthew R. Ochs 已提交
334
		}
335
		hwq->room = room - 1;
M
Matthew R. Ochs 已提交
336 337
	}

338
	list_add(&cmd->list, &hwq->pending_cmds);
339
	writeq_be((u64)&cmd->rcb, &hwq->host_map->ioarrin);
M
Matthew R. Ochs 已提交
340
out:
341
	spin_unlock_irqrestore(&hwq->hsq_slock, lock_flags);
M
Matthew R. Ochs 已提交
342 343
	dev_dbg(dev, "%s: cmd=%p len=%u ea=%016llx rc=%d\n", __func__,
		cmd, cmd->rcb.data_len, cmd->rcb.data_ea, rc);
M
Matthew R. Ochs 已提交
344 345 346
	return rc;
}

347 348 349 350 351 352 353 354 355 356 357 358
/**
 * send_cmd_sq() - sends an AFU command via SQ ring
 * @afu:	AFU associated with the host.
 * @cmd:	AFU command to send.
 *
 * Return:
 *	0 on success, SCSI_MLQUEUE_HOST_BUSY on failure
 */
static int send_cmd_sq(struct afu *afu, struct afu_cmd *cmd)
{
	struct cxlflash_cfg *cfg = afu->parent;
	struct device *dev = &cfg->dev->dev;
359
	struct hwq *hwq = get_hwq(afu, cmd->hwq_index);
360 361 362 363
	int rc = 0;
	int newval;
	ulong lock_flags;

364
	newval = atomic_dec_if_positive(&hwq->hsq_credits);
365 366 367 368 369 370 371
	if (newval <= 0) {
		rc = SCSI_MLQUEUE_HOST_BUSY;
		goto out;
	}

	cmd->rcb.ioasa = &cmd->sa;

372
	spin_lock_irqsave(&hwq->hsq_slock, lock_flags);
373

374 375 376
	*hwq->hsq_curr = cmd->rcb;
	if (hwq->hsq_curr < hwq->hsq_end)
		hwq->hsq_curr++;
377
	else
378
		hwq->hsq_curr = hwq->hsq_start;
379 380

	list_add(&cmd->list, &hwq->pending_cmds);
381
	writeq_be((u64)hwq->hsq_curr, &hwq->host_map->sq_tail);
382

383
	spin_unlock_irqrestore(&hwq->hsq_slock, lock_flags);
384
out:
M
Matthew R. Ochs 已提交
385 386
	dev_dbg(dev, "%s: cmd=%p len=%u ea=%016llx ioasa=%p rc=%d curr=%p "
	       "head=%016llx tail=%016llx\n", __func__, cmd, cmd->rcb.data_len,
387 388 389
	       cmd->rcb.data_ea, cmd->rcb.ioasa, rc, hwq->hsq_curr,
	       readq_be(&hwq->host_map->sq_head),
	       readq_be(&hwq->host_map->sq_tail));
390 391 392
	return rc;
}

M
Matthew R. Ochs 已提交
393 394 395 396
/**
 * wait_resp() - polls for a response or timeout to a sent AFU command
 * @afu:	AFU associated with the host.
 * @cmd:	AFU command that was sent.
397
 *
398
 * Return: 0 on success, -errno on failure
M
Matthew R. Ochs 已提交
399
 */
400
static int wait_resp(struct afu *afu, struct afu_cmd *cmd)
M
Matthew R. Ochs 已提交
401
{
M
Matthew R. Ochs 已提交
402 403
	struct cxlflash_cfg *cfg = afu->parent;
	struct device *dev = &cfg->dev->dev;
404
	int rc = 0;
M
Matthew R. Ochs 已提交
405 406 407
	ulong timeout = msecs_to_jiffies(cmd->rcb.timeout * 2 * 1000);

	timeout = wait_for_completion_timeout(&cmd->cevent, timeout);
408 409
	if (!timeout)
		rc = -ETIMEDOUT;
M
Matthew R. Ochs 已提交
410

411 412 413
	if (cmd->cmd_aborted)
		rc = -EAGAIN;

414
	if (unlikely(cmd->sa.ioasc != 0)) {
M
Matthew R. Ochs 已提交
415 416
		dev_err(dev, "%s: cmd %02x failed, ioasc=%08x\n",
			__func__, cmd->rcb.cdb[0], cmd->sa.ioasc);
417
		rc = -EIO;
418 419 420
	}

	return rc;
M
Matthew R. Ochs 已提交
421 422
}

423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
/**
 * cmd_to_target_hwq() - selects a target hardware queue for a SCSI command
 * @host:	SCSI host associated with device.
 * @scp:	SCSI command to send.
 * @afu:	SCSI command to send.
 *
 * Hashes a command based upon the hardware queue mode.
 *
 * Return: Trusted index of target hardware queue
 */
static u32 cmd_to_target_hwq(struct Scsi_Host *host, struct scsi_cmnd *scp,
			     struct afu *afu)
{
	u32 tag;
	u32 hwq = 0;

	if (afu->num_hwqs == 1)
		return 0;

	switch (afu->hwq_mode) {
	case HWQ_MODE_RR:
		hwq = afu->hwq_rr_count++ % afu->num_hwqs;
		break;
	case HWQ_MODE_TAG:
		tag = blk_mq_unique_tag(scp->request);
		hwq = blk_mq_unique_tag_to_hwq(tag);
		break;
	case HWQ_MODE_CPU:
		hwq = smp_processor_id() % afu->num_hwqs;
		break;
	default:
		WARN_ON_ONCE(1);
	}

	return hwq;
}

460 461
/**
 * send_tmf() - sends a Task Management Function (TMF)
462 463
 * @cfg:	Internal structure associated with the host.
 * @sdev:	SCSI device destined for TMF.
464 465 466
 * @tmfcmd:	TMF command to send.
 *
 * Return:
467
 *	0 on success, SCSI_MLQUEUE_HOST_BUSY or -errno on failure
468
 */
469 470
static int send_tmf(struct cxlflash_cfg *cfg, struct scsi_device *sdev,
		    u64 tmfcmd)
471
{
472
	struct afu *afu = cfg->afu;
473
	struct afu_cmd *cmd = NULL;
474
	struct device *dev = &cfg->dev->dev;
475
	struct hwq *hwq = get_hwq(afu, PRIMARY_HWQ);
476
	char *buf = NULL;
477 478
	ulong lock_flags;
	int rc = 0;
479
	ulong to;
480

481 482 483 484 485 486 487 488 489 490
	buf = kzalloc(sizeof(*cmd) + __alignof__(*cmd) - 1, GFP_KERNEL);
	if (unlikely(!buf)) {
		dev_err(dev, "%s: no memory for command\n", __func__);
		rc = -ENOMEM;
		goto out;
	}

	cmd = (struct afu_cmd *)PTR_ALIGN(buf, __alignof__(*cmd));
	INIT_LIST_HEAD(&cmd->queue);

491 492
	/* When Task Management Function is active do not send another */
	spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
493
	if (cfg->tmf_active)
494 495 496
		wait_event_interruptible_lock_irq(cfg->tmf_waitq,
						  !cfg->tmf_active,
						  cfg->tmf_slock);
497
	cfg->tmf_active = true;
498
	spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
499

500 501
	cmd->parent = afu;
	cmd->cmd_tmf = true;
502
	cmd->hwq_index = hwq->index;
503

504
	cmd->rcb.ctx_id = hwq->ctx_hndl;
505
	cmd->rcb.msi = SISL_MSI_RRQ_UPDATED;
506 507
	cmd->rcb.port_sel = CHAN2PORTMASK(sdev->channel);
	cmd->rcb.lun_id = lun_to_lunid(sdev->lun);
508
	cmd->rcb.req_flags = (SISL_REQ_FLAGS_PORT_LUN_ID |
509 510
			      SISL_REQ_FLAGS_SUP_UNDERRUN |
			      SISL_REQ_FLAGS_TMF_CMD);
511 512
	memcpy(cmd->rcb.cdb, &tmfcmd, sizeof(tmfcmd));

513
	rc = afu->send_cmd(afu, cmd);
514
	if (unlikely(rc)) {
515
		spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
516
		cfg->tmf_active = false;
517
		spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
518 519 520
		goto out;
	}

521 522 523 524 525 526 527
	spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
	to = msecs_to_jiffies(5000);
	to = wait_event_interruptible_lock_irq_timeout(cfg->tmf_waitq,
						       !cfg->tmf_active,
						       cfg->tmf_slock,
						       to);
	if (!to) {
M
Matthew R. Ochs 已提交
528
		dev_err(dev, "%s: TMF timed out\n", __func__);
529 530 531 532 533 534 535 536
		rc = -ETIMEDOUT;
	} else if (cmd->cmd_aborted) {
		dev_err(dev, "%s: TMF aborted\n", __func__);
		rc = -EAGAIN;
	} else if (cmd->sa.ioasc) {
		dev_err(dev, "%s: TMF failed ioasc=%08x\n",
			__func__, cmd->sa.ioasc);
		rc = -EIO;
537
	}
538
	cfg->tmf_active = false;
539
	spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
540
out:
541
	kfree(buf);
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
	return rc;
}

/**
 * cxlflash_driver_info() - information handler for this host driver
 * @host:	SCSI host associated with device.
 *
 * Return: A string describing the device.
 */
static const char *cxlflash_driver_info(struct Scsi_Host *host)
{
	return CXLFLASH_ADAPTER_NAME;
}

/**
 * cxlflash_queuecommand() - sends a mid-layer request
 * @host:	SCSI host associated with device.
 * @scp:	SCSI command to send.
 *
561
 * Return: 0 on success, SCSI_MLQUEUE_HOST_BUSY on failure
562 563 564
 */
static int cxlflash_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scp)
{
M
Matthew R. Ochs 已提交
565
	struct cxlflash_cfg *cfg = shost_priv(host);
566
	struct afu *afu = cfg->afu;
567
	struct device *dev = &cfg->dev->dev;
568
	struct afu_cmd *cmd = sc_to_afuci(scp);
569
	struct scatterlist *sg = scsi_sglist(scp);
570 571
	int hwq_index = cmd_to_target_hwq(host, scp, afu);
	struct hwq *hwq = get_hwq(afu, hwq_index);
572
	u16 req_flags = SISL_REQ_FLAGS_SUP_UNDERRUN;
573 574 575
	ulong lock_flags;
	int rc = 0;

576
	dev_dbg_ratelimited(dev, "%s: (scp=%p) %d/%d/%d/%llu "
M
Matthew R. Ochs 已提交
577
			    "cdb=(%08x-%08x-%08x-%08x)\n",
578 579 580 581 582 583
			    __func__, scp, host->host_no, scp->device->channel,
			    scp->device->id, scp->device->lun,
			    get_unaligned_be32(&((u32 *)scp->cmnd)[0]),
			    get_unaligned_be32(&((u32 *)scp->cmnd)[1]),
			    get_unaligned_be32(&((u32 *)scp->cmnd)[2]),
			    get_unaligned_be32(&((u32 *)scp->cmnd)[3]));
584

585 586
	/*
	 * If a Task Management Function is active, wait for it to complete
587 588
	 * before continuing with regular commands.
	 */
589
	spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
590
	if (cfg->tmf_active) {
591
		spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
592 593 594
		rc = SCSI_MLQUEUE_HOST_BUSY;
		goto out;
	}
595
	spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
596

597
	switch (cfg->state) {
598 599
	case STATE_PROBING:
	case STATE_PROBED:
600
	case STATE_RESET:
M
Matthew R. Ochs 已提交
601
		dev_dbg_ratelimited(dev, "%s: device is in reset\n", __func__);
602 603 604
		rc = SCSI_MLQUEUE_HOST_BUSY;
		goto out;
	case STATE_FAILTERM:
M
Matthew R. Ochs 已提交
605
		dev_dbg_ratelimited(dev, "%s: device has failed\n", __func__);
606 607 608 609 610 611 612 613
		scp->result = (DID_NO_CONNECT << 16);
		scp->scsi_done(scp);
		rc = 0;
		goto out;
	default:
		break;
	}

614
	if (likely(sg)) {
615 616
		cmd->rcb.data_len = sg->length;
		cmd->rcb.data_ea = (uintptr_t)sg_virt(sg);
617
	}
618

619
	cmd->scp = scp;
620
	cmd->parent = afu;
621
	cmd->hwq_index = hwq_index;
622

623
	cmd->sa.ioasc = 0;
624
	cmd->rcb.ctx_id = hwq->ctx_hndl;
625
	cmd->rcb.msi = SISL_MSI_RRQ_UPDATED;
626
	cmd->rcb.port_sel = CHAN2PORTMASK(scp->device->channel);
627
	cmd->rcb.lun_id = lun_to_lunid(scp->device->lun);
628

629 630
	if (scp->sc_data_direction == DMA_TO_DEVICE)
		req_flags |= SISL_REQ_FLAGS_HOST_WRITE;
631

632
	cmd->rcb.req_flags = req_flags;
633 634
	memcpy(cmd->rcb.cdb, scp->cmnd, sizeof(cmd->rcb.cdb));

635
	rc = afu->send_cmd(afu, cmd);
636 637 638 639 640
out:
	return rc;
}

/**
M
Matthew R. Ochs 已提交
641
 * cxlflash_wait_for_pci_err_recovery() - wait for error recovery during probe
642
 * @cfg:	Internal structure associated with the host.
643
 */
M
Matthew R. Ochs 已提交
644
static void cxlflash_wait_for_pci_err_recovery(struct cxlflash_cfg *cfg)
645
{
M
Matthew R. Ochs 已提交
646
	struct pci_dev *pdev = cfg->dev;
647

M
Matthew R. Ochs 已提交
648 649 650 651
	if (pci_channel_offline(pdev))
		wait_event_timeout(cfg->reset_waitq,
				   !pci_channel_offline(pdev),
				   CXLFLASH_PCI_ERROR_RECOVERY_TIMEOUT);
652 653 654
}

/**
M
Matthew R. Ochs 已提交
655
 * free_mem() - free memory associated with the AFU
656
 * @cfg:	Internal structure associated with the host.
657
 */
M
Matthew R. Ochs 已提交
658
static void free_mem(struct cxlflash_cfg *cfg)
659
{
M
Matthew R. Ochs 已提交
660
	struct afu *afu = cfg->afu;
661

M
Matthew R. Ochs 已提交
662 663 664
	if (cfg->afu) {
		free_pages((ulong)afu, get_order(sizeof(struct afu)));
		cfg->afu = NULL;
665
	}
666 667
}

668 669 670 671 672 673 674 675 676 677 678 679 680 681
/**
 * cxlflash_reset_sync() - synchronizing point for asynchronous resets
 * @cfg:	Internal structure associated with the host.
 */
static void cxlflash_reset_sync(struct cxlflash_cfg *cfg)
{
	if (cfg->async_reset_cookie == 0)
		return;

	/* Wait until all async calls prior to this cookie have completed */
	async_synchronize_cookie(cfg->async_reset_cookie + 1);
	cfg->async_reset_cookie = 0;
}

682
/**
M
Matthew R. Ochs 已提交
683
 * stop_afu() - stops the AFU command timers and unmaps the MMIO space
684
 * @cfg:	Internal structure associated with the host.
685
 *
M
Matthew R. Ochs 已提交
686
 * Safe to call with AFU in a partially allocated/initialized state.
687
 *
688
 * Cancels scheduled worker threads, waits for any active internal AFU
689
 * commands to timeout, disables IRQ polling and then unmaps the MMIO space.
690
 */
M
Matthew R. Ochs 已提交
691
static void stop_afu(struct cxlflash_cfg *cfg)
692
{
M
Matthew R. Ochs 已提交
693
	struct afu *afu = cfg->afu;
694 695
	struct hwq *hwq;
	int i;
696

697
	cancel_work_sync(&cfg->work_q);
698 699
	if (!current_is_async())
		cxlflash_reset_sync(cfg);
700

M
Matthew R. Ochs 已提交
701
	if (likely(afu)) {
702 703
		while (atomic_read(&afu->cmds_active))
			ssleep(1);
704 705

		if (afu_is_irqpoll_enabled(afu)) {
706
			for (i = 0; i < afu->num_hwqs; i++) {
707 708 709 710 711 712
				hwq = get_hwq(afu, i);

				irq_poll_disable(&hwq->irqpoll);
			}
		}

713
		if (likely(afu->afu_map)) {
714
			cxl_psa_unmap((void __iomem *)afu->afu_map);
715 716 717 718 719 720
			afu->afu_map = NULL;
		}
	}
}

/**
721
 * term_intr() - disables all AFU interrupts
722
 * @cfg:	Internal structure associated with the host.
723
 * @level:	Depth of allocation, where to begin waterfall tear down.
724
 * @index:	Index of the hardware queue.
725 726 727
 *
 * Safe to call with AFU/MC in partially allocated/initialized state.
 */
728 729
static void term_intr(struct cxlflash_cfg *cfg, enum undo_level level,
		      u32 index)
730 731
{
	struct afu *afu = cfg->afu;
732
	struct device *dev = &cfg->dev->dev;
733
	struct hwq *hwq;
734

735 736 737 738 739 740 741
	if (!afu) {
		dev_err(dev, "%s: returning with NULL afu\n", __func__);
		return;
	}

	hwq = get_hwq(afu, index);

742
	if (!hwq->ctx_cookie) {
743
		dev_err(dev, "%s: returning with NULL MC\n", __func__);
744 745 746 747 748
		return;
	}

	switch (level) {
	case UNMAP_THREE:
749 750
		/* SISL_MSI_ASYNC_ERROR is setup only for the primary HWQ */
		if (index == PRIMARY_HWQ)
751
			cxl_unmap_afu_irq(hwq->ctx_cookie, 3, hwq);
752
	case UNMAP_TWO:
753
		cxl_unmap_afu_irq(hwq->ctx_cookie, 2, hwq);
754
	case UNMAP_ONE:
755
		cxl_unmap_afu_irq(hwq->ctx_cookie, 1, hwq);
756
	case FREE_IRQ:
757
		cxl_free_afu_irqs(hwq->ctx_cookie);
758 759 760 761 762 763 764 765 766 767
		/* fall through */
	case UNDO_NOOP:
		/* No action required */
		break;
	}
}

/**
 * term_mc() - terminates the master context
 * @cfg:	Internal structure associated with the host.
768
 * @index:	Index of the hardware queue.
769 770 771
 *
 * Safe to call with AFU/MC in partially allocated/initialized state.
 */
772
static void term_mc(struct cxlflash_cfg *cfg, u32 index)
773 774 775
{
	struct afu *afu = cfg->afu;
	struct device *dev = &cfg->dev->dev;
776
	struct hwq *hwq;
777
	ulong lock_flags;
778

779 780
	if (!afu) {
		dev_err(dev, "%s: returning with NULL afu\n", __func__);
781
		return;
782
	}
783

784 785
	hwq = get_hwq(afu, index);

786
	if (!hwq->ctx_cookie) {
787 788 789 790
		dev_err(dev, "%s: returning with NULL MC\n", __func__);
		return;
	}

791
	WARN_ON(cxl_stop_context(hwq->ctx_cookie));
792
	if (index != PRIMARY_HWQ)
793 794
		WARN_ON(cxl_release_context(hwq->ctx_cookie));
	hwq->ctx_cookie = NULL;
795 796 797 798

	spin_lock_irqsave(&hwq->hsq_slock, lock_flags);
	flush_pending_cmds(hwq);
	spin_unlock_irqrestore(&hwq->hsq_slock, lock_flags);
799 800 801 802
}

/**
 * term_afu() - terminates the AFU
803
 * @cfg:	Internal structure associated with the host.
804 805 806 807 808
 *
 * Safe to call with AFU/MC in partially allocated/initialized state.
 */
static void term_afu(struct cxlflash_cfg *cfg)
{
M
Matthew R. Ochs 已提交
809
	struct device *dev = &cfg->dev->dev;
810
	int k;
M
Matthew R. Ochs 已提交
811

812 813 814 815 816
	/*
	 * Tear down is carefully orchestrated to ensure
	 * no interrupts can come in when the problem state
	 * area is unmapped.
	 *
817
	 * 1) Disable all AFU interrupts for each master
818
	 * 2) Unmap the problem state area
819
	 * 3) Stop each master context
820
	 */
821
	for (k = cfg->afu->num_hwqs - 1; k >= 0; k--)
822 823
		term_intr(cfg, UNMAP_THREE, k);

824
	stop_afu(cfg);
825

826
	for (k = cfg->afu->num_hwqs - 1; k >= 0; k--)
827
		term_mc(cfg, k);
828

M
Matthew R. Ochs 已提交
829
	dev_dbg(dev, "%s: returning\n", __func__);
830 831
}

832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
/**
 * notify_shutdown() - notifies device of pending shutdown
 * @cfg:	Internal structure associated with the host.
 * @wait:	Whether to wait for shutdown processing to complete.
 *
 * This function will notify the AFU that the adapter is being shutdown
 * and will wait for shutdown processing to complete if wait is true.
 * This notification should flush pending I/Os to the device and halt
 * further I/Os until the next AFU reset is issued and device restarted.
 */
static void notify_shutdown(struct cxlflash_cfg *cfg, bool wait)
{
	struct afu *afu = cfg->afu;
	struct device *dev = &cfg->dev->dev;
	struct dev_dependent_vals *ddv;
847
	__be64 __iomem *fc_port_regs;
848 849 850 851 852 853 854
	u64 reg, status;
	int i, retry_cnt = 0;

	ddv = (struct dev_dependent_vals *)cfg->dev_id->driver_data;
	if (!(ddv->flags & CXLFLASH_NOTIFY_SHUTDOWN))
		return;

855
	if (!afu || !afu->afu_map) {
M
Matthew R. Ochs 已提交
856
		dev_dbg(dev, "%s: Problem state area not mapped\n", __func__);
857 858 859
		return;
	}

860
	/* Notify AFU */
861
	for (i = 0; i < cfg->num_fc_ports; i++) {
862 863 864
		fc_port_regs = get_fc_port_regs(cfg, i);

		reg = readq_be(&fc_port_regs[FC_CONFIG2 / 8]);
865
		reg |= SISL_FC_SHUTDOWN_NORMAL;
866
		writeq_be(reg, &fc_port_regs[FC_CONFIG2 / 8]);
867 868 869 870 871 872
	}

	if (!wait)
		return;

	/* Wait up to 1.5 seconds for shutdown processing to complete */
873
	for (i = 0; i < cfg->num_fc_ports; i++) {
874
		fc_port_regs = get_fc_port_regs(cfg, i);
875
		retry_cnt = 0;
876

877
		while (true) {
878
			status = readq_be(&fc_port_regs[FC_STATUS / 8]);
879 880 881 882 883 884 885 886 887 888 889 890
			if (status & SISL_STATUS_SHUTDOWN_COMPLETE)
				break;
			if (++retry_cnt >= MC_RETRY_CNT) {
				dev_dbg(dev, "%s: port %d shutdown processing "
					"not yet completed\n", __func__, i);
				break;
			}
			msleep(100 * retry_cnt);
		}
	}
}

891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
/**
 * cxlflash_get_minor() - gets the first available minor number
 *
 * Return: Unique minor number that can be used to create the character device.
 */
static int cxlflash_get_minor(void)
{
	int minor;
	long bit;

	bit = find_first_zero_bit(cxlflash_minor, CXLFLASH_MAX_ADAPTERS);
	if (bit >= CXLFLASH_MAX_ADAPTERS)
		return -1;

	minor = bit & MINORMASK;
	set_bit(minor, cxlflash_minor);
	return minor;
}

/**
 * cxlflash_put_minor() - releases the minor number
 * @minor:	Minor number that is no longer needed.
 */
static void cxlflash_put_minor(int minor)
{
	clear_bit(minor, cxlflash_minor);
}

/**
 * cxlflash_release_chrdev() - release the character device for the host
 * @cfg:	Internal structure associated with the host.
 */
static void cxlflash_release_chrdev(struct cxlflash_cfg *cfg)
{
	device_unregister(cfg->chardev);
	cfg->chardev = NULL;
	cdev_del(&cfg->cdev);
	cxlflash_put_minor(MINOR(cfg->cdev.dev));
}

931 932 933 934
/**
 * cxlflash_remove() - PCI entry point to tear down host
 * @pdev:	PCI device associated with the host.
 *
935 936
 * Safe to use as a cleanup in partially allocated/initialized state. Note that
 * the reset_waitq is flushed as part of the stop/termination of user contexts.
937 938 939 940
 */
static void cxlflash_remove(struct pci_dev *pdev)
{
	struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
M
Matthew R. Ochs 已提交
941
	struct device *dev = &pdev->dev;
942 943
	ulong lock_flags;

944
	if (!pci_is_enabled(pdev)) {
M
Matthew R. Ochs 已提交
945
		dev_dbg(dev, "%s: Device is disabled\n", __func__);
946 947 948
		return;
	}

949 950 951
	/* If a Task Management Function is active, wait for it to complete
	 * before continuing with remove.
	 */
952
	spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
953
	if (cfg->tmf_active)
954 955 956 957
		wait_event_interruptible_lock_irq(cfg->tmf_waitq,
						  !cfg->tmf_active,
						  cfg->tmf_slock);
	spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
958

959 960 961
	/* Notify AFU and wait for shutdown processing to complete */
	notify_shutdown(cfg, true);

962
	cfg->state = STATE_FAILTERM;
M
Matthew R. Ochs 已提交
963
	cxlflash_stop_term_user_contexts(cfg);
964

965
	switch (cfg->init_state) {
966 967
	case INIT_STATE_CDEV:
		cxlflash_release_chrdev(cfg);
968
	case INIT_STATE_SCSI:
M
Matthew R. Ochs 已提交
969
		cxlflash_term_local_luns(cfg);
970 971
		scsi_remove_host(cfg->host);
	case INIT_STATE_AFU:
972
		term_afu(cfg);
973 974 975 976
	case INIT_STATE_PCI:
		pci_disable_device(pdev);
	case INIT_STATE_NONE:
		free_mem(cfg);
977
		scsi_host_put(cfg->host);
978 979 980
		break;
	}

M
Matthew R. Ochs 已提交
981
	dev_dbg(dev, "%s: returning\n", __func__);
982 983 984 985
}

/**
 * alloc_mem() - allocates the AFU and its command pool
986
 * @cfg:	Internal structure associated with the host.
987 988 989 990 991 992 993 994 995 996
 *
 * A partially allocated state remains on failure.
 *
 * Return:
 *	0 on success
 *	-ENOMEM on failure to allocate memory
 */
static int alloc_mem(struct cxlflash_cfg *cfg)
{
	int rc = 0;
997
	struct device *dev = &cfg->dev->dev;
998

999
	/* AFU is ~28k, i.e. only one 64k page or up to seven 4k pages */
1000 1001 1002
	cfg->afu = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
					    get_order(sizeof(struct afu)));
	if (unlikely(!cfg->afu)) {
1003 1004
		dev_err(dev, "%s: cannot get %d free pages\n",
			__func__, get_order(sizeof(struct afu)));
1005 1006 1007 1008
		rc = -ENOMEM;
		goto out;
	}
	cfg->afu->parent = cfg;
1009
	cfg->afu->desired_hwqs = CXLFLASH_DEF_HWQS;
1010 1011 1012 1013 1014 1015 1016
	cfg->afu->afu_map = NULL;
out:
	return rc;
}

/**
 * init_pci() - initializes the host as a PCI device
1017
 * @cfg:	Internal structure associated with the host.
1018
 *
1019
 * Return: 0 on success, -errno on failure
1020 1021 1022 1023
 */
static int init_pci(struct cxlflash_cfg *cfg)
{
	struct pci_dev *pdev = cfg->dev;
M
Matthew R. Ochs 已提交
1024
	struct device *dev = &cfg->dev->dev;
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
	int rc = 0;

	rc = pci_enable_device(pdev);
	if (rc || pci_channel_offline(pdev)) {
		if (pci_channel_offline(pdev)) {
			cxlflash_wait_for_pci_err_recovery(cfg);
			rc = pci_enable_device(pdev);
		}

		if (rc) {
M
Matthew R. Ochs 已提交
1035
			dev_err(dev, "%s: Cannot enable adapter\n", __func__);
1036
			cxlflash_wait_for_pci_err_recovery(cfg);
1037
			goto out;
1038 1039 1040 1041
		}
	}

out:
M
Matthew R. Ochs 已提交
1042
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
1043 1044 1045 1046 1047
	return rc;
}

/**
 * init_scsi() - adds the host to the SCSI stack and kicks off host scan
1048
 * @cfg:	Internal structure associated with the host.
1049
 *
1050
 * Return: 0 on success, -errno on failure
1051 1052 1053 1054
 */
static int init_scsi(struct cxlflash_cfg *cfg)
{
	struct pci_dev *pdev = cfg->dev;
M
Matthew R. Ochs 已提交
1055
	struct device *dev = &cfg->dev->dev;
1056 1057 1058 1059
	int rc = 0;

	rc = scsi_add_host(cfg->host, &pdev->dev);
	if (rc) {
M
Matthew R. Ochs 已提交
1060
		dev_err(dev, "%s: scsi_add_host failed rc=%d\n", __func__, rc);
1061 1062 1063 1064 1065 1066
		goto out;
	}

	scsi_scan_host(cfg->host);

out:
M
Matthew R. Ochs 已提交
1067
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078
	return rc;
}

/**
 * set_port_online() - transitions the specified host FC port to online state
 * @fc_regs:	Top of MMIO region defined for specified port.
 *
 * The provided MMIO region must be mapped prior to call. Online state means
 * that the FC link layer has synced, completed the handshaking process, and
 * is ready for login to start.
 */
1079
static void set_port_online(__be64 __iomem *fc_regs)
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
{
	u64 cmdcfg;

	cmdcfg = readq_be(&fc_regs[FC_MTIP_CMDCONFIG / 8]);
	cmdcfg &= (~FC_MTIP_CMDCONFIG_OFFLINE);	/* clear OFF_LINE */
	cmdcfg |= (FC_MTIP_CMDCONFIG_ONLINE);	/* set ON_LINE */
	writeq_be(cmdcfg, &fc_regs[FC_MTIP_CMDCONFIG / 8]);
}

/**
 * set_port_offline() - transitions the specified host FC port to offline state
 * @fc_regs:	Top of MMIO region defined for specified port.
 *
 * The provided MMIO region must be mapped prior to call.
 */
1095
static void set_port_offline(__be64 __iomem *fc_regs)
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117
{
	u64 cmdcfg;

	cmdcfg = readq_be(&fc_regs[FC_MTIP_CMDCONFIG / 8]);
	cmdcfg &= (~FC_MTIP_CMDCONFIG_ONLINE);	/* clear ON_LINE */
	cmdcfg |= (FC_MTIP_CMDCONFIG_OFFLINE);	/* set OFF_LINE */
	writeq_be(cmdcfg, &fc_regs[FC_MTIP_CMDCONFIG / 8]);
}

/**
 * wait_port_online() - waits for the specified host FC port come online
 * @fc_regs:	Top of MMIO region defined for specified port.
 * @delay_us:	Number of microseconds to delay between reading port status.
 * @nretry:	Number of cycles to retry reading port status.
 *
 * The provided MMIO region must be mapped prior to call. This will timeout
 * when the cable is not plugged in.
 *
 * Return:
 *	TRUE (1) when the specified port is online
 *	FALSE (0) when the specified port fails to come online after timeout
 */
M
Matthew R. Ochs 已提交
1118
static bool wait_port_online(__be64 __iomem *fc_regs, u32 delay_us, u32 nretry)
1119 1120 1121
{
	u64 status;

M
Matthew R. Ochs 已提交
1122
	WARN_ON(delay_us < 1000);
1123 1124 1125 1126

	do {
		msleep(delay_us / 1000);
		status = readq_be(&fc_regs[FC_MTIP_STATUS / 8]);
1127 1128
		if (status == U64_MAX)
			nretry /= 2;
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
	} while ((status & FC_MTIP_STATUS_MASK) != FC_MTIP_STATUS_ONLINE &&
		 nretry--);

	return ((status & FC_MTIP_STATUS_MASK) == FC_MTIP_STATUS_ONLINE);
}

/**
 * wait_port_offline() - waits for the specified host FC port go offline
 * @fc_regs:	Top of MMIO region defined for specified port.
 * @delay_us:	Number of microseconds to delay between reading port status.
 * @nretry:	Number of cycles to retry reading port status.
 *
 * The provided MMIO region must be mapped prior to call.
 *
 * Return:
 *	TRUE (1) when the specified port is offline
 *	FALSE (0) when the specified port fails to go offline after timeout
 */
M
Matthew R. Ochs 已提交
1147
static bool wait_port_offline(__be64 __iomem *fc_regs, u32 delay_us, u32 nretry)
1148 1149 1150
{
	u64 status;

M
Matthew R. Ochs 已提交
1151
	WARN_ON(delay_us < 1000);
1152 1153 1154 1155

	do {
		msleep(delay_us / 1000);
		status = readq_be(&fc_regs[FC_MTIP_STATUS / 8]);
1156 1157
		if (status == U64_MAX)
			nretry /= 2;
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
	} while ((status & FC_MTIP_STATUS_MASK) != FC_MTIP_STATUS_OFFLINE &&
		 nretry--);

	return ((status & FC_MTIP_STATUS_MASK) == FC_MTIP_STATUS_OFFLINE);
}

/**
 * afu_set_wwpn() - configures the WWPN for the specified host FC port
 * @afu:	AFU associated with the host that owns the specified FC port.
 * @port:	Port number being configured.
 * @fc_regs:	Top of MMIO region defined for specified port.
 * @wwpn:	The world-wide-port-number previously discovered for port.
 *
 * The provided MMIO region must be mapped prior to call. As part of the
 * sequence to configure the WWPN, the port is toggled offline and then back
 * online. This toggling action can cause this routine to delay up to a few
 * seconds. When configured to use the internal LUN feature of the AFU, a
 * failure to come online is overridden.
 */
1177 1178
static void afu_set_wwpn(struct afu *afu, int port, __be64 __iomem *fc_regs,
			 u64 wwpn)
1179
{
M
Matthew R. Ochs 已提交
1180 1181 1182
	struct cxlflash_cfg *cfg = afu->parent;
	struct device *dev = &cfg->dev->dev;

1183 1184 1185
	set_port_offline(fc_regs);
	if (!wait_port_offline(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
			       FC_PORT_STATUS_RETRY_CNT)) {
M
Matthew R. Ochs 已提交
1186 1187
		dev_dbg(dev, "%s: wait on port %d to go offline timed out\n",
			__func__, port);
1188 1189
	}

1190
	writeq_be(wwpn, &fc_regs[FC_PNAME / 8]);
1191

1192 1193 1194
	set_port_online(fc_regs);
	if (!wait_port_online(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
			      FC_PORT_STATUS_RETRY_CNT)) {
M
Matthew R. Ochs 已提交
1195 1196
		dev_dbg(dev, "%s: wait on port %d to go online timed out\n",
			__func__, port);
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
	}
}

/**
 * afu_link_reset() - resets the specified host FC port
 * @afu:	AFU associated with the host that owns the specified FC port.
 * @port:	Port number being configured.
 * @fc_regs:	Top of MMIO region defined for specified port.
 *
 * The provided MMIO region must be mapped prior to call. The sequence to
 * reset the port involves toggling it offline and then back online. This
 * action can cause this routine to delay up to a few seconds. An effort
 * is made to maintain link with the device by switching to host to use
 * the alternate port exclusively while the reset takes place.
 * failure to come online is overridden.
 */
1213
static void afu_link_reset(struct afu *afu, int port, __be64 __iomem *fc_regs)
1214
{
M
Matthew R. Ochs 已提交
1215 1216
	struct cxlflash_cfg *cfg = afu->parent;
	struct device *dev = &cfg->dev->dev;
1217 1218 1219 1220
	u64 port_sel;

	/* first switch the AFU to the other links, if any */
	port_sel = readq_be(&afu->afu_map->global.regs.afu_port_sel);
1221
	port_sel &= ~(1ULL << port);
1222 1223 1224 1225 1226 1227
	writeq_be(port_sel, &afu->afu_map->global.regs.afu_port_sel);
	cxlflash_afu_sync(afu, 0, 0, AFU_GSYNC);

	set_port_offline(fc_regs);
	if (!wait_port_offline(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
			       FC_PORT_STATUS_RETRY_CNT))
M
Matthew R. Ochs 已提交
1228 1229
		dev_err(dev, "%s: wait on port %d to go offline timed out\n",
			__func__, port);
1230 1231 1232 1233

	set_port_online(fc_regs);
	if (!wait_port_online(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
			      FC_PORT_STATUS_RETRY_CNT))
M
Matthew R. Ochs 已提交
1234 1235
		dev_err(dev, "%s: wait on port %d to go online timed out\n",
			__func__, port);
1236 1237

	/* switch back to include this port */
1238
	port_sel |= (1ULL << port);
1239 1240 1241
	writeq_be(port_sel, &afu->afu_map->global.regs.afu_port_sel);
	cxlflash_afu_sync(afu, 0, 0, AFU_GSYNC);

M
Matthew R. Ochs 已提交
1242
	dev_dbg(dev, "%s: returning port_sel=%016llx\n", __func__, port_sel);
1243 1244 1245 1246 1247 1248 1249 1250
}

/**
 * afu_err_intr_init() - clears and initializes the AFU for error interrupts
 * @afu:	AFU associated with the host.
 */
static void afu_err_intr_init(struct afu *afu)
{
1251
	struct cxlflash_cfg *cfg = afu->parent;
1252
	__be64 __iomem *fc_port_regs;
1253
	int i;
1254
	struct hwq *hwq = get_hwq(afu, PRIMARY_HWQ);
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
	u64 reg;

	/* global async interrupts: AFU clears afu_ctrl on context exit
	 * if async interrupts were sent to that context. This prevents
	 * the AFU form sending further async interrupts when
	 * there is
	 * nobody to receive them.
	 */

	/* mask all */
	writeq_be(-1ULL, &afu->afu_map->global.regs.aintr_mask);
1266 1267
	/* set LISN# to send and point to primary master context */
	reg = ((u64) (((hwq->ctx_hndl << 8) | SISL_MSI_ASYNC_ERROR)) << 40);
1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281

	if (afu->internal_lun)
		reg |= 1;	/* Bit 63 indicates local lun */
	writeq_be(reg, &afu->afu_map->global.regs.afu_ctrl);
	/* clear all */
	writeq_be(-1ULL, &afu->afu_map->global.regs.aintr_clear);
	/* unmask bits that are of interest */
	/* note: afu can send an interrupt after this step */
	writeq_be(SISL_ASTATUS_MASK, &afu->afu_map->global.regs.aintr_mask);
	/* clear again in case a bit came on after previous clear but before */
	/* unmask */
	writeq_be(-1ULL, &afu->afu_map->global.regs.aintr_clear);

	/* Clear/Set internal lun bits */
1282 1283
	fc_port_regs = get_fc_port_regs(cfg, 0);
	reg = readq_be(&fc_port_regs[FC_CONFIG2 / 8]);
1284 1285 1286
	reg &= SISL_FC_INTERNAL_MASK;
	if (afu->internal_lun)
		reg |= ((u64)(afu->internal_lun - 1) << SISL_FC_INTERNAL_SHIFT);
1287
	writeq_be(reg, &fc_port_regs[FC_CONFIG2 / 8]);
1288 1289

	/* now clear FC errors */
1290
	for (i = 0; i < cfg->num_fc_ports; i++) {
1291 1292 1293 1294
		fc_port_regs = get_fc_port_regs(cfg, i);

		writeq_be(0xFFFFFFFFU, &fc_port_regs[FC_ERROR / 8]);
		writeq_be(0, &fc_port_regs[FC_ERRCAP / 8]);
1295 1296 1297 1298 1299 1300 1301 1302
	}

	/* sync interrupts for master's IOARRIN write */
	/* note that unlike asyncs, there can be no pending sync interrupts */
	/* at this time (this is a fresh context and master has not written */
	/* IOARRIN yet), so there is nothing to clear. */

	/* set LISN#, it is always sent to the context that wrote IOARRIN */
1303
	for (i = 0; i < afu->num_hwqs; i++) {
1304 1305 1306 1307 1308
		hwq = get_hwq(afu, i);

		writeq_be(SISL_MSI_SYNC_ERROR, &hwq->host_map->ctx_ctrl);
		writeq_be(SISL_ISTATUS_MASK, &hwq->host_map->intr_mask);
	}
1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
}

/**
 * cxlflash_sync_err_irq() - interrupt handler for synchronous errors
 * @irq:	Interrupt number.
 * @data:	Private data provided at interrupt registration, the AFU.
 *
 * Return: Always return IRQ_HANDLED.
 */
static irqreturn_t cxlflash_sync_err_irq(int irq, void *data)
{
1320 1321
	struct hwq *hwq = (struct hwq *)data;
	struct cxlflash_cfg *cfg = hwq->afu->parent;
M
Matthew R. Ochs 已提交
1322
	struct device *dev = &cfg->dev->dev;
1323 1324 1325
	u64 reg;
	u64 reg_unmasked;

1326
	reg = readq_be(&hwq->host_map->intr_status);
1327 1328 1329
	reg_unmasked = (reg & SISL_ISTATUS_UNMASK);

	if (reg_unmasked == 0UL) {
M
Matthew R. Ochs 已提交
1330 1331
		dev_err(dev, "%s: spurious interrupt, intr_status=%016llx\n",
			__func__, reg);
1332 1333 1334
		goto cxlflash_sync_err_irq_exit;
	}

M
Matthew R. Ochs 已提交
1335 1336
	dev_err(dev, "%s: unexpected interrupt, intr_status=%016llx\n",
		__func__, reg);
1337

1338
	writeq_be(reg_unmasked, &hwq->host_map->intr_clear);
1339 1340 1341 1342 1343 1344

cxlflash_sync_err_irq_exit:
	return IRQ_HANDLED;
}

/**
1345 1346
 * process_hrrq() - process the read-response queue
 * @afu:	AFU associated with the host.
1347
 * @doneq:	Queue of commands harvested from the RRQ.
1348
 * @budget:	Threshold of RRQ entries to process.
1349 1350
 *
 * This routine must be called holding the disabled RRQ spin lock.
1351
 *
1352
 * Return: The number of entries processed.
1353
 */
1354
static int process_hrrq(struct hwq *hwq, struct list_head *doneq, int budget)
1355
{
1356
	struct afu *afu = hwq->afu;
1357
	struct afu_cmd *cmd;
1358 1359
	struct sisl_ioasa *ioasa;
	struct sisl_ioarcb *ioarcb;
1360
	bool toggle = hwq->toggle;
1361
	int num_hrrq = 0;
1362
	u64 entry,
1363 1364 1365
	    *hrrq_start = hwq->hrrq_start,
	    *hrrq_end = hwq->hrrq_end,
	    *hrrq_curr = hwq->hrrq_curr;
1366

1367
	/* Process ready RRQ entries up to the specified budget (if any) */
1368 1369 1370 1371 1372 1373
	while (true) {
		entry = *hrrq_curr;

		if ((entry & SISL_RESP_HANDLE_T_BIT) != toggle)
			break;

1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
		entry &= ~SISL_RESP_HANDLE_T_BIT;

		if (afu_is_sq_cmd_mode(afu)) {
			ioasa = (struct sisl_ioasa *)entry;
			cmd = container_of(ioasa, struct afu_cmd, sa);
		} else {
			ioarcb = (struct sisl_ioarcb *)entry;
			cmd = container_of(ioarcb, struct afu_cmd, rcb);
		}

1384
		list_add_tail(&cmd->queue, doneq);
1385 1386 1387 1388 1389 1390 1391 1392

		/* Advance to next entry or wrap and flip the toggle bit */
		if (hrrq_curr < hrrq_end)
			hrrq_curr++;
		else {
			hrrq_curr = hrrq_start;
			toggle ^= SISL_RESP_HANDLE_T_BIT;
		}
1393

1394
		atomic_inc(&hwq->hsq_credits);
1395
		num_hrrq++;
1396 1397 1398

		if (budget > 0 && num_hrrq >= budget)
			break;
1399 1400
	}

1401 1402
	hwq->hrrq_curr = hrrq_curr;
	hwq->toggle = toggle;
1403

1404 1405 1406
	return num_hrrq;
}

1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422
/**
 * process_cmd_doneq() - process a queue of harvested RRQ commands
 * @doneq:	Queue of completed commands.
 *
 * Note that upon return the queue can no longer be trusted.
 */
static void process_cmd_doneq(struct list_head *doneq)
{
	struct afu_cmd *cmd, *tmp;

	WARN_ON(list_empty(doneq));

	list_for_each_entry_safe(cmd, tmp, doneq, queue)
		cmd_complete(cmd);
}

1423 1424 1425 1426 1427 1428 1429 1430 1431
/**
 * cxlflash_irqpoll() - process a queue of harvested RRQ commands
 * @irqpoll:	IRQ poll structure associated with queue to poll.
 * @budget:	Threshold of RRQ entries to process per poll.
 *
 * Return: The number of entries processed.
 */
static int cxlflash_irqpoll(struct irq_poll *irqpoll, int budget)
{
1432
	struct hwq *hwq = container_of(irqpoll, struct hwq, irqpoll);
1433 1434 1435 1436
	unsigned long hrrq_flags;
	LIST_HEAD(doneq);
	int num_entries = 0;

1437
	spin_lock_irqsave(&hwq->hrrq_slock, hrrq_flags);
1438

1439
	num_entries = process_hrrq(hwq, &doneq, budget);
1440 1441 1442
	if (num_entries < budget)
		irq_poll_complete(irqpoll);

1443
	spin_unlock_irqrestore(&hwq->hrrq_slock, hrrq_flags);
1444 1445 1446 1447 1448

	process_cmd_doneq(&doneq);
	return num_entries;
}

1449 1450 1451 1452 1453
/**
 * cxlflash_rrq_irq() - interrupt handler for read-response queue (normal path)
 * @irq:	Interrupt number.
 * @data:	Private data provided at interrupt registration, the AFU.
 *
1454
 * Return: IRQ_HANDLED or IRQ_NONE when no ready entries found.
1455 1456 1457
 */
static irqreturn_t cxlflash_rrq_irq(int irq, void *data)
{
1458 1459
	struct hwq *hwq = (struct hwq *)data;
	struct afu *afu = hwq->afu;
1460 1461 1462
	unsigned long hrrq_flags;
	LIST_HEAD(doneq);
	int num_entries = 0;
1463

1464
	spin_lock_irqsave(&hwq->hrrq_slock, hrrq_flags);
1465 1466

	if (afu_is_irqpoll_enabled(afu)) {
1467 1468
		irq_poll_sched(&hwq->irqpoll);
		spin_unlock_irqrestore(&hwq->hrrq_slock, hrrq_flags);
1469 1470 1471
		return IRQ_HANDLED;
	}

1472 1473
	num_entries = process_hrrq(hwq, &doneq, -1);
	spin_unlock_irqrestore(&hwq->hrrq_slock, hrrq_flags);
1474 1475 1476 1477 1478

	if (num_entries == 0)
		return IRQ_NONE;

	process_cmd_doneq(&doneq);
1479 1480 1481
	return IRQ_HANDLED;
}

1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510
/*
 * Asynchronous interrupt information table
 *
 * NOTE:
 *	- Order matters here as this array is indexed by bit position.
 *
 *	- The checkpatch script considers the BUILD_SISL_ASTATUS_FC_PORT macro
 *	  as complex and complains due to a lack of parentheses/braces.
 */
#define ASTATUS_FC(_a, _b, _c, _d)					 \
	{ SISL_ASTATUS_FC##_a##_##_b, _c, _a, (_d) }

#define BUILD_SISL_ASTATUS_FC_PORT(_a)					 \
	ASTATUS_FC(_a, LINK_UP, "link up", 0),				 \
	ASTATUS_FC(_a, LINK_DN, "link down", 0),			 \
	ASTATUS_FC(_a, LOGI_S, "login succeeded", SCAN_HOST),		 \
	ASTATUS_FC(_a, LOGI_F, "login failed", CLR_FC_ERROR),		 \
	ASTATUS_FC(_a, LOGI_R, "login timed out, retrying", LINK_RESET), \
	ASTATUS_FC(_a, CRC_T, "CRC threshold exceeded", LINK_RESET),	 \
	ASTATUS_FC(_a, LOGO, "target initiated LOGO", 0),		 \
	ASTATUS_FC(_a, OTHER, "other error", CLR_FC_ERROR | LINK_RESET)

static const struct asyc_intr_info ainfo[] = {
	BUILD_SISL_ASTATUS_FC_PORT(1),
	BUILD_SISL_ASTATUS_FC_PORT(0),
	BUILD_SISL_ASTATUS_FC_PORT(3),
	BUILD_SISL_ASTATUS_FC_PORT(2)
};

1511 1512 1513 1514 1515 1516 1517 1518 1519
/**
 * cxlflash_async_err_irq() - interrupt handler for asynchronous errors
 * @irq:	Interrupt number.
 * @data:	Private data provided at interrupt registration, the AFU.
 *
 * Return: Always return IRQ_HANDLED.
 */
static irqreturn_t cxlflash_async_err_irq(int irq, void *data)
{
1520 1521
	struct hwq *hwq = (struct hwq *)data;
	struct afu *afu = hwq->afu;
1522 1523
	struct cxlflash_cfg *cfg = afu->parent;
	struct device *dev = &cfg->dev->dev;
1524
	const struct asyc_intr_info *info;
1525
	struct sisl_global_map __iomem *global = &afu->afu_map->global;
1526
	__be64 __iomem *fc_port_regs;
1527
	u64 reg_unmasked;
1528
	u64 reg;
1529
	u64 bit;
1530 1531 1532 1533 1534
	u8 port;

	reg = readq_be(&global->regs.aintr_status);
	reg_unmasked = (reg & SISL_ASTATUS_UNMASK);

1535
	if (unlikely(reg_unmasked == 0)) {
M
Matthew R. Ochs 已提交
1536
		dev_err(dev, "%s: spurious interrupt, aintr_status=%016llx\n",
1537
			__func__, reg);
1538 1539 1540
		goto out;
	}

1541
	/* FYI, it is 'okay' to clear AFU status before FC_ERROR */
1542 1543
	writeq_be(reg_unmasked, &global->regs.aintr_clear);

1544
	/* Check each bit that is on */
1545 1546 1547
	for_each_set_bit(bit, (ulong *)&reg_unmasked, BITS_PER_LONG) {
		if (unlikely(bit >= ARRAY_SIZE(ainfo))) {
			WARN_ON_ONCE(1);
1548
			continue;
1549 1550 1551 1552 1553 1554 1555
		}

		info = &ainfo[bit];
		if (unlikely(info->status != 1ULL << bit)) {
			WARN_ON_ONCE(1);
			continue;
		}
1556 1557

		port = info->port;
1558
		fc_port_regs = get_fc_port_regs(cfg, port);
1559

M
Matthew R. Ochs 已提交
1560
		dev_err(dev, "%s: FC Port %d -> %s, fc_status=%016llx\n",
1561
			__func__, port, info->desc,
1562
		       readq_be(&fc_port_regs[FC_STATUS / 8]));
1563 1564

		/*
1565
		 * Do link reset first, some OTHER errors will set FC_ERROR
1566 1567 1568
		 * again if cleared before or w/o a reset
		 */
		if (info->action & LINK_RESET) {
1569 1570
			dev_err(dev, "%s: FC Port %d: resetting link\n",
				__func__, port);
1571 1572 1573 1574 1575 1576
			cfg->lr_state = LINK_RESET_REQUIRED;
			cfg->lr_port = port;
			schedule_work(&cfg->work_q);
		}

		if (info->action & CLR_FC_ERROR) {
1577
			reg = readq_be(&fc_port_regs[FC_ERROR / 8]);
1578 1579

			/*
1580
			 * Since all errors are unmasked, FC_ERROR and FC_ERRCAP
1581 1582 1583
			 * should be the same and tracing one is sufficient.
			 */

M
Matthew R. Ochs 已提交
1584
			dev_err(dev, "%s: fc %d: clearing fc_error=%016llx\n",
1585
				__func__, port, reg);
1586

1587 1588
			writeq_be(reg, &fc_port_regs[FC_ERROR / 8]);
			writeq_be(0, &fc_port_regs[FC_ERRCAP / 8]);
1589
		}
1590 1591 1592 1593 1594

		if (info->action & SCAN_HOST) {
			atomic_inc(&cfg->scan_host_needed);
			schedule_work(&cfg->work_q);
		}
1595 1596 1597 1598 1599 1600 1601 1602
	}

out:
	return IRQ_HANDLED;
}

/**
 * start_context() - starts the master context
1603
 * @cfg:	Internal structure associated with the host.
1604
 * @index:	Index of the hardware queue.
1605 1606 1607
 *
 * Return: A success or failure value from CXL services.
 */
1608
static int start_context(struct cxlflash_cfg *cfg, u32 index)
1609
{
M
Matthew R. Ochs 已提交
1610
	struct device *dev = &cfg->dev->dev;
1611
	struct hwq *hwq = get_hwq(cfg->afu, index);
1612 1613
	int rc = 0;

1614
	rc = cxl_start_context(hwq->ctx_cookie, 0, NULL);
1615

M
Matthew R. Ochs 已提交
1616
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
1617 1618 1619 1620 1621
	return rc;
}

/**
 * read_vpd() - obtains the WWPNs from VPD
1622
 * @cfg:	Internal structure associated with the host.
1623
 * @wwpn:	Array of size MAX_FC_PORTS to pass back WWPNs
1624
 *
1625
 * Return: 0 on success, -errno on failure
1626 1627 1628
 */
static int read_vpd(struct cxlflash_cfg *cfg, u64 wwpn[])
{
M
Matthew R. Ochs 已提交
1629 1630
	struct device *dev = &cfg->dev->dev;
	struct pci_dev *pdev = cfg->dev;
1631 1632 1633 1634 1635
	int rc = 0;
	int ro_start, ro_size, i, j, k;
	ssize_t vpd_size;
	char vpd_data[CXLFLASH_VPD_LEN];
	char tmp_buf[WWPN_BUF_LEN] = { 0 };
1636 1637 1638 1639
	const struct dev_dependent_vals *ddv = (struct dev_dependent_vals *)
						cfg->dev_id->driver_data;
	const bool wwpn_vpd_required = ddv->flags & CXLFLASH_WWPN_VPD_REQUIRED;
	const char *wwpn_vpd_tags[MAX_FC_PORTS] = { "V5", "V6", "V7", "V8" };
1640 1641

	/* Get the VPD data from the device */
M
Matthew R. Ochs 已提交
1642
	vpd_size = cxl_read_adapter_vpd(pdev, vpd_data, sizeof(vpd_data));
1643
	if (unlikely(vpd_size <= 0)) {
M
Matthew R. Ochs 已提交
1644 1645
		dev_err(dev, "%s: Unable to read VPD (size = %ld)\n",
			__func__, vpd_size);
1646 1647 1648 1649 1650 1651 1652 1653
		rc = -ENODEV;
		goto out;
	}

	/* Get the read only section offset */
	ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size,
				    PCI_VPD_LRDT_RO_DATA);
	if (unlikely(ro_start < 0)) {
M
Matthew R. Ochs 已提交
1654
		dev_err(dev, "%s: VPD Read-only data not found\n", __func__);
1655 1656 1657 1658 1659 1660 1661 1662 1663
		rc = -ENODEV;
		goto out;
	}

	/* Get the read only section size, cap when extends beyond read VPD */
	ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
	j = ro_size;
	i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
	if (unlikely((i + j) > vpd_size)) {
M
Matthew R. Ochs 已提交
1664 1665
		dev_dbg(dev, "%s: Might need to read more VPD (%d > %ld)\n",
			__func__, (i + j), vpd_size);
1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
		ro_size = vpd_size - i;
	}

	/*
	 * Find the offset of the WWPN tag within the read only
	 * VPD data and validate the found field (partials are
	 * no good to us). Convert the ASCII data to an integer
	 * value. Note that we must copy to a temporary buffer
	 * because the conversion service requires that the ASCII
	 * string be terminated.
1676 1677 1678 1679 1680 1681
	 *
	 * Allow for WWPN not being found for all devices, setting
	 * the returned WWPN to zero when not found. Notify with a
	 * log error for cards that should have had WWPN keywords
	 * in the VPD - cards requiring WWPN will not have their
	 * ports programmed and operate in an undefined state.
1682
	 */
1683
	for (k = 0; k < cfg->num_fc_ports; k++) {
1684 1685 1686 1687
		j = ro_size;
		i = ro_start + PCI_VPD_LRDT_TAG_SIZE;

		i = pci_vpd_find_info_keyword(vpd_data, i, j, wwpn_vpd_tags[k]);
1688 1689 1690 1691 1692 1693
		if (i < 0) {
			if (wwpn_vpd_required)
				dev_err(dev, "%s: Port %d WWPN not found\n",
					__func__, k);
			wwpn[k] = 0ULL;
			continue;
1694 1695 1696 1697 1698
		}

		j = pci_vpd_info_field_size(&vpd_data[i]);
		i += PCI_VPD_INFO_FLD_HDR_SIZE;
		if (unlikely((i + j > vpd_size) || (j != WWPN_LEN))) {
M
Matthew R. Ochs 已提交
1699 1700
			dev_err(dev, "%s: Port %d WWPN incomplete or bad VPD\n",
				__func__, k);
1701 1702 1703 1704 1705 1706 1707
			rc = -ENODEV;
			goto out;
		}

		memcpy(tmp_buf, &vpd_data[i], WWPN_LEN);
		rc = kstrtoul(tmp_buf, WWPN_LEN, (ulong *)&wwpn[k]);
		if (unlikely(rc)) {
M
Matthew R. Ochs 已提交
1708 1709
			dev_err(dev, "%s: WWPN conversion failed for port %d\n",
				__func__, k);
1710 1711 1712
			rc = -ENODEV;
			goto out;
		}
1713 1714

		dev_dbg(dev, "%s: wwpn%d=%016llx\n", __func__, k, wwpn[k]);
1715 1716 1717
	}

out:
M
Matthew R. Ochs 已提交
1718
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
1719 1720 1721 1722
	return rc;
}

/**
M
Matthew R. Ochs 已提交
1723
 * init_pcr() - initialize the provisioning and control registers
1724
 * @cfg:	Internal structure associated with the host.
1725
 *
M
Matthew R. Ochs 已提交
1726 1727
 * Also sets up fast access to the mapped registers and initializes AFU
 * command fields that never change.
1728
 */
M
Matthew R. Ochs 已提交
1729
static void init_pcr(struct cxlflash_cfg *cfg)
1730 1731
{
	struct afu *afu = cfg->afu;
1732
	struct sisl_ctrl_map __iomem *ctrl_map;
1733
	struct hwq *hwq;
1734 1735 1736 1737
	int i;

	for (i = 0; i < MAX_CONTEXT; i++) {
		ctrl_map = &afu->afu_map->ctrls[i].ctrl;
1738 1739
		/* Disrupt any clients that could be running */
		/* e.g. clients that survived a master restart */
1740 1741 1742 1743 1744
		writeq_be(0, &ctrl_map->rht_start);
		writeq_be(0, &ctrl_map->rht_cnt_id);
		writeq_be(0, &ctrl_map->ctx_cap);
	}

1745
	/* Copy frequently used fields into hwq */
1746
	for (i = 0; i < afu->num_hwqs; i++) {
1747 1748
		hwq = get_hwq(afu, i);

1749
		hwq->ctx_hndl = (u16) cxl_process_element(hwq->ctx_cookie);
1750 1751
		hwq->host_map = &afu->afu_map->hosts[hwq->ctx_hndl].host;
		hwq->ctrl_map = &afu->afu_map->ctrls[hwq->ctx_hndl].ctrl;
1752

1753 1754 1755
		/* Program the Endian Control for the master context */
		writeq_be(SISL_ENDIAN_CTRL, &hwq->host_map->endian_ctrl);
	}
1756 1757 1758 1759
}

/**
 * init_global() - initialize AFU global registers
1760
 * @cfg:	Internal structure associated with the host.
1761
 */
M
Matthew R. Ochs 已提交
1762
static int init_global(struct cxlflash_cfg *cfg)
1763 1764
{
	struct afu *afu = cfg->afu;
1765
	struct device *dev = &cfg->dev->dev;
1766 1767
	struct hwq *hwq;
	struct sisl_host_map __iomem *hmap;
1768
	__be64 __iomem *fc_port_regs;
1769
	u64 wwpn[MAX_FC_PORTS];	/* wwpn of AFU ports */
1770 1771 1772 1773 1774 1775
	int i = 0, num_ports = 0;
	int rc = 0;
	u64 reg;

	rc = read_vpd(cfg, &wwpn[0]);
	if (rc) {
1776
		dev_err(dev, "%s: could not read vpd rc=%d\n", __func__, rc);
1777 1778 1779
		goto out;
	}

1780
	/* Set up RRQ and SQ in HWQ for master issued cmds */
1781
	for (i = 0; i < afu->num_hwqs; i++) {
1782 1783
		hwq = get_hwq(afu, i);
		hmap = hwq->host_map;
1784

1785 1786 1787 1788 1789 1790 1791
		writeq_be((u64) hwq->hrrq_start, &hmap->rrq_start);
		writeq_be((u64) hwq->hrrq_end, &hmap->rrq_end);

		if (afu_is_sq_cmd_mode(afu)) {
			writeq_be((u64)hwq->hsq_start, &hmap->sq_start);
			writeq_be((u64)hwq->hsq_end, &hmap->sq_end);
		}
1792 1793
	}

1794 1795 1796 1797 1798 1799 1800 1801 1802
	/* AFU configuration */
	reg = readq_be(&afu->afu_map->global.regs.afu_config);
	reg |= SISL_AFUCONF_AR_ALL|SISL_AFUCONF_ENDIAN;
	/* enable all auto retry options and control endianness */
	/* leave others at default: */
	/* CTX_CAP write protected, mbox_r does not clear on read and */
	/* checker on if dual afu */
	writeq_be(reg, &afu->afu_map->global.regs.afu_config);

1803
	/* Global port select: select either port */
1804
	if (afu->internal_lun) {
1805
		/* Only use port 0 */
1806
		writeq_be(PORT0, &afu->afu_map->global.regs.afu_port_sel);
1807
		num_ports = 0;
1808
	} else {
1809 1810
		writeq_be(PORT_MASK(cfg->num_fc_ports),
			  &afu->afu_map->global.regs.afu_port_sel);
1811
		num_ports = cfg->num_fc_ports;
1812 1813 1814
	}

	for (i = 0; i < num_ports; i++) {
1815 1816
		fc_port_regs = get_fc_port_regs(cfg, i);

1817
		/* Unmask all errors (but they are still masked at AFU) */
1818
		writeq_be(0, &fc_port_regs[FC_ERRMSK / 8]);
1819
		/* Clear CRC error cnt & set a threshold */
1820 1821
		(void)readq_be(&fc_port_regs[FC_CNT_CRCERR / 8]);
		writeq_be(MC_CRC_THRESH, &fc_port_regs[FC_CRC_THRESH / 8]);
1822

1823
		/* Set WWPNs. If already programmed, wwpn[i] is 0 */
1824
		if (wwpn[i] != 0)
1825
			afu_set_wwpn(afu, i, &fc_port_regs[0], wwpn[i]);
1826 1827 1828 1829 1830 1831
		/* Programming WWPN back to back causes additional
		 * offline/online transitions and a PLOGI
		 */
		msleep(100);
	}

1832 1833
	/* Set up master's own CTX_CAP to allow real mode, host translation */
	/* tables, afu cmds and read/write GSCSI cmds. */
1834
	/* First, unlock ctx_cap write by reading mbox */
1835
	for (i = 0; i < afu->num_hwqs; i++) {
1836 1837 1838 1839 1840 1841 1842 1843
		hwq = get_hwq(afu, i);

		(void)readq_be(&hwq->ctrl_map->mbox_r);	/* unlock ctx_cap */
		writeq_be((SISL_CTX_CAP_REAL_MODE | SISL_CTX_CAP_HOST_XLATE |
			SISL_CTX_CAP_READ_CMD | SISL_CTX_CAP_WRITE_CMD |
			SISL_CTX_CAP_AFU_CMD | SISL_CTX_CAP_GSCSI_CMD),
			&hwq->ctrl_map->ctx_cap);
	}
1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855

	/*
	 * Determine write-same unmap support for host by evaluating the unmap
	 * sector support bit of the context control register associated with
	 * the primary hardware queue. Note that while this status is reflected
	 * in a context register, the outcome can be assumed to be host-wide.
	 */
	hwq = get_hwq(afu, PRIMARY_HWQ);
	reg = readq_be(&hwq->host_map->ctx_ctrl);
	if (reg & SISL_CTX_CTRL_UNMAP_SECTOR)
		cfg->ws_unmap = true;

1856
	/* Initialize heartbeat */
1857 1858 1859 1860 1861 1862 1863
	afu->hb = readq_be(&afu->afu_map->global.regs.afu_hb);
out:
	return rc;
}

/**
 * start_afu() - initializes and starts the AFU
1864
 * @cfg:	Internal structure associated with the host.
1865 1866 1867 1868
 */
static int start_afu(struct cxlflash_cfg *cfg)
{
	struct afu *afu = cfg->afu;
M
Matthew R. Ochs 已提交
1869
	struct device *dev = &cfg->dev->dev;
1870
	struct hwq *hwq;
1871
	int rc = 0;
1872
	int i;
1873 1874 1875

	init_pcr(cfg);

1876
	/* Initialize each HWQ */
1877
	for (i = 0; i < afu->num_hwqs; i++) {
1878
		hwq = get_hwq(afu, i);
1879

1880 1881
		/* After an AFU reset, RRQ entries are stale, clear them */
		memset(&hwq->rrq_entry, 0, sizeof(hwq->rrq_entry));
1882

1883 1884 1885 1886 1887
		/* Initialize RRQ pointers */
		hwq->hrrq_start = &hwq->rrq_entry[0];
		hwq->hrrq_end = &hwq->rrq_entry[NUM_RRQ_ENTRY - 1];
		hwq->hrrq_curr = hwq->hrrq_start;
		hwq->toggle = 1;
1888 1889

		/* Initialize spin locks */
1890
		spin_lock_init(&hwq->hrrq_slock);
1891
		spin_lock_init(&hwq->hsq_slock);
1892

1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908
		/* Initialize SQ */
		if (afu_is_sq_cmd_mode(afu)) {
			memset(&hwq->sq, 0, sizeof(hwq->sq));
			hwq->hsq_start = &hwq->sq[0];
			hwq->hsq_end = &hwq->sq[NUM_SQ_ENTRY - 1];
			hwq->hsq_curr = hwq->hsq_start;

			atomic_set(&hwq->hsq_credits, NUM_SQ_ENTRY - 1);
		}

		/* Initialize IRQ poll */
		if (afu_is_irqpoll_enabled(afu))
			irq_poll_init(&hwq->irqpoll, afu->irqpoll_weight,
				      cxlflash_irqpoll);

	}
1909

1910 1911
	rc = init_global(cfg);

M
Matthew R. Ochs 已提交
1912
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
1913 1914 1915 1916
	return rc;
}

/**
1917
 * init_intr() - setup interrupt handlers for the master context
1918
 * @cfg:	Internal structure associated with the host.
1919
 * @hwq:	Hardware queue to initialize.
1920
 *
1921
 * Return: 0 on success, -errno on failure
1922
 */
1923
static enum undo_level init_intr(struct cxlflash_cfg *cfg,
1924
				 struct hwq *hwq)
1925
{
1926
	struct device *dev = &cfg->dev->dev;
1927
	void *ctx = hwq->ctx_cookie;
1928
	int rc = 0;
1929
	enum undo_level level = UNDO_NOOP;
1930 1931
	bool is_primary_hwq = (hwq->index == PRIMARY_HWQ);
	int num_irqs = is_primary_hwq ? 3 : 2;
1932

1933
	rc = cxl_allocate_afu_irqs(ctx, num_irqs);
1934
	if (unlikely(rc)) {
M
Matthew R. Ochs 已提交
1935
		dev_err(dev, "%s: allocate_afu_irqs failed rc=%d\n",
1936
			__func__, rc);
1937
		level = UNDO_NOOP;
1938 1939 1940
		goto out;
	}

1941
	rc = cxl_map_afu_irq(ctx, 1, cxlflash_sync_err_irq, hwq,
1942 1943
			     "SISL_MSI_SYNC_ERROR");
	if (unlikely(rc <= 0)) {
M
Matthew R. Ochs 已提交
1944
		dev_err(dev, "%s: SISL_MSI_SYNC_ERROR map failed\n", __func__);
1945 1946 1947 1948
		level = FREE_IRQ;
		goto out;
	}

1949
	rc = cxl_map_afu_irq(ctx, 2, cxlflash_rrq_irq, hwq,
1950 1951
			     "SISL_MSI_RRQ_UPDATED");
	if (unlikely(rc <= 0)) {
M
Matthew R. Ochs 已提交
1952
		dev_err(dev, "%s: SISL_MSI_RRQ_UPDATED map failed\n", __func__);
1953 1954 1955 1956
		level = UNMAP_ONE;
		goto out;
	}

1957 1958 1959 1960 1961
	/* SISL_MSI_ASYNC_ERROR is setup only for the primary HWQ */
	if (!is_primary_hwq)
		goto out;

	rc = cxl_map_afu_irq(ctx, 3, cxlflash_async_err_irq, hwq,
1962 1963
			     "SISL_MSI_ASYNC_ERROR");
	if (unlikely(rc <= 0)) {
M
Matthew R. Ochs 已提交
1964
		dev_err(dev, "%s: SISL_MSI_ASYNC_ERROR map failed\n", __func__);
1965 1966 1967
		level = UNMAP_TWO;
		goto out;
	}
1968 1969 1970
out:
	return level;
}
1971

1972 1973 1974
/**
 * init_mc() - create and register as the master context
 * @cfg:	Internal structure associated with the host.
1975
 * index:	HWQ Index of the master context.
1976 1977 1978
 *
 * Return: 0 on success, -errno on failure
 */
1979
static int init_mc(struct cxlflash_cfg *cfg, u32 index)
1980
{
1981
	void *ctx;
1982
	struct device *dev = &cfg->dev->dev;
1983
	struct hwq *hwq = get_hwq(cfg->afu, index);
1984 1985 1986
	int rc = 0;
	enum undo_level level;

1987 1988
	hwq->afu = cfg->afu;
	hwq->index = index;
1989
	INIT_LIST_HEAD(&hwq->pending_cmds);
1990 1991 1992 1993 1994

	if (index == PRIMARY_HWQ)
		ctx = cxl_get_context(cfg->dev);
	else
		ctx = cxl_dev_context_init(cfg->dev);
1995 1996
	if (unlikely(!ctx)) {
		rc = -ENOMEM;
1997
		goto err1;
1998
	}
1999

2000 2001
	WARN_ON(hwq->ctx_cookie);
	hwq->ctx_cookie = ctx;
2002 2003 2004 2005

	/* Set it up as a master with the CXL */
	cxl_set_master(ctx);

2006 2007 2008 2009 2010 2011 2012 2013
	/* Reset AFU when initializing primary context */
	if (index == PRIMARY_HWQ) {
		rc = cxl_afu_reset(ctx);
		if (unlikely(rc)) {
			dev_err(dev, "%s: AFU reset failed rc=%d\n",
				      __func__, rc);
			goto err1;
		}
2014 2015
	}

2016
	level = init_intr(cfg, hwq);
2017
	if (unlikely(level)) {
M
Matthew R. Ochs 已提交
2018
		dev_err(dev, "%s: interrupt init failed rc=%d\n", __func__, rc);
2019
		goto err2;
2020
	}
2021 2022 2023 2024 2025

	/* This performs the equivalent of the CXL_IOCTL_START_WORK.
	 * The CXL_IOCTL_GET_PROCESS_ELEMENT is implicit in the process
	 * element (pe) that is embedded in the context (ctx)
	 */
2026
	rc = start_context(cfg, index);
2027 2028 2029
	if (unlikely(rc)) {
		dev_err(dev, "%s: start context failed rc=%d\n", __func__, rc);
		level = UNMAP_THREE;
2030
		goto err2;
2031
	}
2032 2033

out:
M
Matthew R. Ochs 已提交
2034
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
2035
	return rc;
2036 2037 2038 2039 2040
err2:
	term_intr(cfg, level, index);
	if (index != PRIMARY_HWQ)
		cxl_release_context(ctx);
err1:
2041
	hwq->ctx_cookie = NULL;
2042
	goto out;
2043 2044
}

2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077
/**
 * get_num_afu_ports() - determines and configures the number of AFU ports
 * @cfg:	Internal structure associated with the host.
 *
 * This routine determines the number of AFU ports by converting the global
 * port selection mask. The converted value is only valid following an AFU
 * reset (explicit or power-on). This routine must be invoked shortly after
 * mapping as other routines are dependent on the number of ports during the
 * initialization sequence.
 *
 * To support legacy AFUs that might not have reflected an initial global
 * port mask (value read is 0), default to the number of ports originally
 * supported by the cxlflash driver (2) before hardware with other port
 * offerings was introduced.
 */
static void get_num_afu_ports(struct cxlflash_cfg *cfg)
{
	struct afu *afu = cfg->afu;
	struct device *dev = &cfg->dev->dev;
	u64 port_mask;
	int num_fc_ports = LEGACY_FC_PORTS;

	port_mask = readq_be(&afu->afu_map->global.regs.afu_port_sel);
	if (port_mask != 0ULL)
		num_fc_ports = min(ilog2(port_mask) + 1, MAX_FC_PORTS);

	dev_dbg(dev, "%s: port_mask=%016llx num_fc_ports=%d\n",
		__func__, port_mask, num_fc_ports);

	cfg->num_fc_ports = num_fc_ports;
	cfg->host->max_channel = PORTNUM2CHAN(num_fc_ports);
}

2078 2079
/**
 * init_afu() - setup as master context and start AFU
2080
 * @cfg:	Internal structure associated with the host.
2081 2082 2083 2084
 *
 * This routine is a higher level of control for configuring the
 * AFU on probe and reset paths.
 *
2085
 * Return: 0 on success, -errno on failure
2086 2087 2088 2089 2090 2091 2092
 */
static int init_afu(struct cxlflash_cfg *cfg)
{
	u64 reg;
	int rc = 0;
	struct afu *afu = cfg->afu;
	struct device *dev = &cfg->dev->dev;
2093 2094
	struct hwq *hwq;
	int i;
2095

2096
	cxl_perst_reloads_same_image(cfg->afu_cookie, true);
2097

2098 2099
	afu->num_hwqs = afu->desired_hwqs;
	for (i = 0; i < afu->num_hwqs; i++) {
2100 2101 2102 2103 2104 2105
		rc = init_mc(cfg, i);
		if (rc) {
			dev_err(dev, "%s: init_mc failed rc=%d index=%d\n",
				__func__, rc, i);
			goto err1;
		}
2106 2107
	}

2108 2109
	/* Map the entire MMIO space of the AFU using the first context */
	hwq = get_hwq(afu, PRIMARY_HWQ);
2110
	afu->afu_map = cxl_psa_map(hwq->ctx_cookie);
2111
	if (!afu->afu_map) {
M
Matthew R. Ochs 已提交
2112
		dev_err(dev, "%s: cxl_psa_map failed\n", __func__);
2113
		rc = -ENOMEM;
2114 2115 2116
		goto err1;
	}

2117 2118 2119
	/* No byte reverse on reading afu_version or string will be backwards */
	reg = readq(&afu->afu_map->global.regs.afu_version);
	memcpy(afu->version, &reg, sizeof(reg));
2120 2121
	afu->interface_version =
	    readq_be(&afu->afu_map->global.regs.interface_version);
2122
	if ((afu->interface_version + 1) == 0) {
M
Matthew R. Ochs 已提交
2123 2124
		dev_err(dev, "Back level AFU, please upgrade. AFU version %s "
			"interface version %016llx\n", afu->version,
2125 2126
		       afu->interface_version);
		rc = -EINVAL;
2127
		goto err1;
2128 2129
	}

2130 2131 2132 2133 2134 2135 2136
	if (afu_is_sq_cmd_mode(afu)) {
		afu->send_cmd = send_cmd_sq;
		afu->context_reset = context_reset_sq;
	} else {
		afu->send_cmd = send_cmd_ioarrin;
		afu->context_reset = context_reset_ioarrin;
	}
2137

M
Matthew R. Ochs 已提交
2138 2139
	dev_dbg(dev, "%s: afu_ver=%s interface_ver=%016llx\n", __func__,
		afu->version, afu->interface_version);
2140

2141 2142
	get_num_afu_ports(cfg);

2143 2144
	rc = start_afu(cfg);
	if (rc) {
M
Matthew R. Ochs 已提交
2145
		dev_err(dev, "%s: start_afu failed, rc=%d\n", __func__, rc);
2146
		goto err1;
2147 2148 2149
	}

	afu_err_intr_init(cfg->afu);
2150
	for (i = 0; i < afu->num_hwqs; i++) {
2151 2152 2153 2154
		hwq = get_hwq(afu, i);

		hwq->room = readq_be(&hwq->host_map->cmd_room);
	}
2155

M
Matthew R. Ochs 已提交
2156 2157
	/* Restore the LUN mappings */
	cxlflash_restore_luntable(cfg);
2158
out:
M
Matthew R. Ochs 已提交
2159
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
2160
	return rc;
2161 2162

err1:
2163
	for (i = afu->num_hwqs - 1; i >= 0; i--) {
2164 2165 2166
		term_intr(cfg, UNMAP_THREE, i);
		term_mc(cfg, i);
	}
2167
	goto out;
2168 2169
}

2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254
/**
 * afu_reset() - resets the AFU
 * @cfg:	Internal structure associated with the host.
 *
 * Return: 0 on success, -errno on failure
 */
static int afu_reset(struct cxlflash_cfg *cfg)
{
	struct device *dev = &cfg->dev->dev;
	int rc = 0;

	/* Stop the context before the reset. Since the context is
	 * no longer available restart it after the reset is complete
	 */
	term_afu(cfg);

	rc = init_afu(cfg);

	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
	return rc;
}

/**
 * drain_ioctls() - wait until all currently executing ioctls have completed
 * @cfg:	Internal structure associated with the host.
 *
 * Obtain write access to read/write semaphore that wraps ioctl
 * handling to 'drain' ioctls currently executing.
 */
static void drain_ioctls(struct cxlflash_cfg *cfg)
{
	down_write(&cfg->ioctl_rwsem);
	up_write(&cfg->ioctl_rwsem);
}

/**
 * cxlflash_async_reset_host() - asynchronous host reset handler
 * @data:	Private data provided while scheduling reset.
 * @cookie:	Cookie that can be used for checkpointing.
 */
static void cxlflash_async_reset_host(void *data, async_cookie_t cookie)
{
	struct cxlflash_cfg *cfg = data;
	struct device *dev = &cfg->dev->dev;
	int rc = 0;

	if (cfg->state != STATE_RESET) {
		dev_dbg(dev, "%s: Not performing a reset, state=%d\n",
			__func__, cfg->state);
		goto out;
	}

	drain_ioctls(cfg);
	cxlflash_mark_contexts_error(cfg);
	rc = afu_reset(cfg);
	if (rc)
		cfg->state = STATE_FAILTERM;
	else
		cfg->state = STATE_NORMAL;
	wake_up_all(&cfg->reset_waitq);

out:
	scsi_unblock_requests(cfg->host);
}

/**
 * cxlflash_schedule_async_reset() - schedule an asynchronous host reset
 * @cfg:	Internal structure associated with the host.
 */
static void cxlflash_schedule_async_reset(struct cxlflash_cfg *cfg)
{
	struct device *dev = &cfg->dev->dev;

	if (cfg->state != STATE_NORMAL) {
		dev_dbg(dev, "%s: Not performing reset state=%d\n",
			__func__, cfg->state);
		return;
	}

	cfg->state = STATE_RESET;
	scsi_block_requests(cfg->host);
	cfg->async_reset_cookie = async_schedule(cxlflash_async_reset_host,
						 cfg);
}

2255
/**
2256
 * send_afu_cmd() - builds and sends an internal AFU command
2257
 * @afu:	AFU associated with the host.
2258
 * @rcb:	Pre-populated IOARCB describing command to send.
2259
 *
2260 2261 2262 2263
 * The AFU can only take one internal AFU command at a time. This limitation is
 * enforced by using a mutex to provide exclusive access to the AFU during the
 * operation. This design point requires calling threads to not be on interrupt
 * context due to the possibility of sleeping during concurrent AFU operations.
2264
 *
2265 2266
 * The command status is optionally passed back to the caller when the caller
 * populates the IOASA field of the IOARCB with a pointer to an IOASA structure.
2267
 *
2268
 * Return:
2269
 *	0 on success, -errno on failure
2270
 */
2271
static int send_afu_cmd(struct afu *afu, struct sisl_ioarcb *rcb)
2272
{
2273
	struct cxlflash_cfg *cfg = afu->parent;
2274
	struct device *dev = &cfg->dev->dev;
2275
	struct afu_cmd *cmd = NULL;
2276
	struct hwq *hwq = get_hwq(afu, PRIMARY_HWQ);
2277
	char *buf = NULL;
2278
	int rc = 0;
2279
	int nretry = 0;
2280 2281
	static DEFINE_MUTEX(sync_active);

2282
	if (cfg->state != STATE_NORMAL) {
M
Matthew R. Ochs 已提交
2283 2284
		dev_dbg(dev, "%s: Sync not required state=%u\n",
			__func__, cfg->state);
2285 2286 2287
		return 0;
	}

2288
	mutex_lock(&sync_active);
2289
	atomic_inc(&afu->cmds_active);
2290
	buf = kmalloc(sizeof(*cmd) + __alignof__(*cmd) - 1, GFP_KERNEL);
2291 2292
	if (unlikely(!buf)) {
		dev_err(dev, "%s: no memory for command\n", __func__);
2293
		rc = -ENOMEM;
2294 2295 2296
		goto out;
	}

2297
	cmd = (struct afu_cmd *)PTR_ALIGN(buf, __alignof__(*cmd));
2298 2299

retry:
2300
	memset(cmd, 0, sizeof(*cmd));
2301
	memcpy(&cmd->rcb, rcb, sizeof(*rcb));
2302
	INIT_LIST_HEAD(&cmd->queue);
2303 2304
	init_completion(&cmd->cevent);
	cmd->parent = afu;
2305 2306
	cmd->hwq_index = hwq->index;
	cmd->rcb.ctx_id = hwq->ctx_hndl;
2307

2308 2309
	dev_dbg(dev, "%s: afu=%p cmd=%p type=%02x nretry=%d\n",
		__func__, afu, cmd, cmd->rcb.cdb[0], nretry);
2310

2311
	rc = afu->send_cmd(afu, cmd);
2312 2313
	if (unlikely(rc)) {
		rc = -ENOBUFS;
2314
		goto out;
2315
	}
2316

2317
	rc = wait_resp(afu, cmd);
2318 2319
	switch (rc) {
	case -ETIMEDOUT:
2320
		rc = afu->context_reset(hwq);
2321 2322 2323 2324 2325 2326 2327
		if (rc) {
			cxlflash_schedule_async_reset(cfg);
			break;
		}
		/* fall through to retry */
	case -EAGAIN:
		if (++nretry < 2)
2328
			goto retry;
2329 2330 2331
		/* fall through to exit */
	default:
		break;
2332 2333
	}

2334 2335
	if (rcb->ioasa)
		*rcb->ioasa = cmd->sa;
2336
out:
2337
	atomic_dec(&afu->cmds_active);
2338
	mutex_unlock(&sync_active);
2339
	kfree(buf);
M
Matthew R. Ochs 已提交
2340
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
2341 2342 2343
	return rc;
}

2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380
/**
 * cxlflash_afu_sync() - builds and sends an AFU sync command
 * @afu:	AFU associated with the host.
 * @ctx:	Identifies context requesting sync.
 * @res:	Identifies resource requesting sync.
 * @mode:	Type of sync to issue (lightweight, heavyweight, global).
 *
 * AFU sync operations are only necessary and allowed when the device is
 * operating normally. When not operating normally, sync requests can occur as
 * part of cleaning up resources associated with an adapter prior to removal.
 * In this scenario, these requests are simply ignored (safe due to the AFU
 * going away).
 *
 * Return:
 *	0 on success, -errno on failure
 */
int cxlflash_afu_sync(struct afu *afu, ctx_hndl_t ctx, res_hndl_t res, u8 mode)
{
	struct cxlflash_cfg *cfg = afu->parent;
	struct device *dev = &cfg->dev->dev;
	struct sisl_ioarcb rcb = { 0 };

	dev_dbg(dev, "%s: afu=%p ctx=%u res=%u mode=%u\n",
		__func__, afu, ctx, res, mode);

	rcb.req_flags = SISL_REQ_FLAGS_AFU_CMD;
	rcb.msi = SISL_MSI_RRQ_UPDATED;
	rcb.timeout = MC_AFU_SYNC_TIMEOUT;

	rcb.cdb[0] = SISL_AFU_CMD_SYNC;
	rcb.cdb[1] = mode;
	put_unaligned_be16(ctx, &rcb.cdb[2]);
	put_unaligned_be32(res, &rcb.cdb[4]);

	return send_afu_cmd(afu, &rcb);
}

2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428
/**
 * cxlflash_eh_abort_handler() - abort a SCSI command
 * @scp:	SCSI command to abort.
 *
 * CXL Flash devices do not support a single command abort. Reset the context
 * as per SISLite specification. Flush any pending commands in the hardware
 * queue before the reset.
 *
 * Return: SUCCESS/FAILED as defined in scsi/scsi.h
 */
static int cxlflash_eh_abort_handler(struct scsi_cmnd *scp)
{
	int rc = FAILED;
	struct Scsi_Host *host = scp->device->host;
	struct cxlflash_cfg *cfg = shost_priv(host);
	struct afu_cmd *cmd = sc_to_afuc(scp);
	struct device *dev = &cfg->dev->dev;
	struct afu *afu = cfg->afu;
	struct hwq *hwq = get_hwq(afu, cmd->hwq_index);

	dev_dbg(dev, "%s: (scp=%p) %d/%d/%d/%llu "
		"cdb=(%08x-%08x-%08x-%08x)\n", __func__, scp, host->host_no,
		scp->device->channel, scp->device->id, scp->device->lun,
		get_unaligned_be32(&((u32 *)scp->cmnd)[0]),
		get_unaligned_be32(&((u32 *)scp->cmnd)[1]),
		get_unaligned_be32(&((u32 *)scp->cmnd)[2]),
		get_unaligned_be32(&((u32 *)scp->cmnd)[3]));

	/* When the state is not normal, another reset/reload is in progress.
	 * Return failed and the mid-layer will invoke host reset handler.
	 */
	if (cfg->state != STATE_NORMAL) {
		dev_dbg(dev, "%s: Invalid state for abort, state=%d\n",
			__func__, cfg->state);
		goto out;
	}

	rc = afu->context_reset(hwq);
	if (unlikely(rc))
		goto out;

	rc = SUCCESS;

out:
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
	return rc;
}

M
Matthew R. Ochs 已提交
2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439
/**
 * cxlflash_eh_device_reset_handler() - reset a single LUN
 * @scp:	SCSI command to send.
 *
 * Return:
 *	SUCCESS as defined in scsi/scsi.h
 *	FAILED as defined in scsi/scsi.h
 */
static int cxlflash_eh_device_reset_handler(struct scsi_cmnd *scp)
{
	int rc = SUCCESS;
2440 2441
	struct scsi_device *sdev = scp->device;
	struct Scsi_Host *host = sdev->host;
M
Matthew R. Ochs 已提交
2442 2443
	struct cxlflash_cfg *cfg = shost_priv(host);
	struct device *dev = &cfg->dev->dev;
M
Matthew R. Ochs 已提交
2444 2445
	int rcr = 0;

2446 2447
	dev_dbg(dev, "%s: %d/%d/%d/%llu\n", __func__,
		host->host_no, sdev->channel, sdev->id, sdev->lun);
2448
retry:
M
Matthew R. Ochs 已提交
2449 2450
	switch (cfg->state) {
	case STATE_NORMAL:
2451
		rcr = send_tmf(cfg, sdev, TMF_LUN_RESET);
M
Matthew R. Ochs 已提交
2452 2453 2454 2455 2456
		if (unlikely(rcr))
			rc = FAILED;
		break;
	case STATE_RESET:
		wait_event(cfg->reset_waitq, cfg->state != STATE_RESET);
2457
		goto retry;
M
Matthew R. Ochs 已提交
2458 2459 2460 2461 2462
	default:
		rc = FAILED;
		break;
	}

M
Matthew R. Ochs 已提交
2463
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
M
Matthew R. Ochs 已提交
2464 2465 2466 2467 2468 2469 2470
	return rc;
}

/**
 * cxlflash_eh_host_reset_handler() - reset the host adapter
 * @scp:	SCSI command from stack identifying host.
 *
2471 2472 2473 2474 2475
 * Following a reset, the state is evaluated again in case an EEH occurred
 * during the reset. In such a scenario, the host reset will either yield
 * until the EEH recovery is complete or return success or failure based
 * upon the current device state.
 *
M
Matthew R. Ochs 已提交
2476 2477 2478 2479 2480 2481 2482 2483 2484
 * Return:
 *	SUCCESS as defined in scsi/scsi.h
 *	FAILED as defined in scsi/scsi.h
 */
static int cxlflash_eh_host_reset_handler(struct scsi_cmnd *scp)
{
	int rc = SUCCESS;
	int rcr = 0;
	struct Scsi_Host *host = scp->device->host;
M
Matthew R. Ochs 已提交
2485 2486
	struct cxlflash_cfg *cfg = shost_priv(host);
	struct device *dev = &cfg->dev->dev;
M
Matthew R. Ochs 已提交
2487

2488
	dev_dbg(dev, "%s: %d\n", __func__, host->host_no);
M
Matthew R. Ochs 已提交
2489 2490 2491 2492

	switch (cfg->state) {
	case STATE_NORMAL:
		cfg->state = STATE_RESET;
2493
		drain_ioctls(cfg);
M
Matthew R. Ochs 已提交
2494 2495 2496 2497 2498 2499 2500 2501
		cxlflash_mark_contexts_error(cfg);
		rcr = afu_reset(cfg);
		if (rcr) {
			rc = FAILED;
			cfg->state = STATE_FAILTERM;
		} else
			cfg->state = STATE_NORMAL;
		wake_up_all(&cfg->reset_waitq);
2502 2503
		ssleep(1);
		/* fall through */
M
Matthew R. Ochs 已提交
2504 2505 2506 2507 2508 2509 2510 2511 2512 2513
	case STATE_RESET:
		wait_event(cfg->reset_waitq, cfg->state != STATE_RESET);
		if (cfg->state == STATE_NORMAL)
			break;
		/* fall through */
	default:
		rc = FAILED;
		break;
	}

M
Matthew R. Ochs 已提交
2514
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
M
Matthew R. Ochs 已提交
2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538
	return rc;
}

/**
 * cxlflash_change_queue_depth() - change the queue depth for the device
 * @sdev:	SCSI device destined for queue depth change.
 * @qdepth:	Requested queue depth value to set.
 *
 * The requested queue depth is capped to the maximum supported value.
 *
 * Return: The actual queue depth set.
 */
static int cxlflash_change_queue_depth(struct scsi_device *sdev, int qdepth)
{

	if (qdepth > CXLFLASH_MAX_CMDS_PER_LUN)
		qdepth = CXLFLASH_MAX_CMDS_PER_LUN;

	scsi_change_queue_depth(sdev, qdepth);
	return sdev->queue_depth;
}

/**
 * cxlflash_show_port_status() - queries and presents the current port status
2539
 * @port:	Desired port for status reporting.
2540
 * @cfg:	Internal structure associated with the host.
M
Matthew R. Ochs 已提交
2541 2542
 * @buf:	Buffer of length PAGE_SIZE to report back port status in ASCII.
 *
2543
 * Return: The size of the ASCII string returned in @buf or -EINVAL.
M
Matthew R. Ochs 已提交
2544
 */
2545 2546 2547
static ssize_t cxlflash_show_port_status(u32 port,
					 struct cxlflash_cfg *cfg,
					 char *buf)
M
Matthew R. Ochs 已提交
2548
{
2549
	struct device *dev = &cfg->dev->dev;
M
Matthew R. Ochs 已提交
2550 2551
	char *disp_status;
	u64 status;
2552
	__be64 __iomem *fc_port_regs;
M
Matthew R. Ochs 已提交
2553

2554 2555 2556 2557 2558 2559 2560
	WARN_ON(port >= MAX_FC_PORTS);

	if (port >= cfg->num_fc_ports) {
		dev_info(dev, "%s: Port %d not supported on this card.\n",
			__func__, port);
		return -EINVAL;
	}
M
Matthew R. Ochs 已提交
2561

2562 2563
	fc_port_regs = get_fc_port_regs(cfg, port);
	status = readq_be(&fc_port_regs[FC_MTIP_STATUS / 8]);
2564
	status &= FC_MTIP_STATUS_MASK;
M
Matthew R. Ochs 已提交
2565 2566 2567 2568 2569 2570 2571 2572

	if (status == FC_MTIP_STATUS_ONLINE)
		disp_status = "online";
	else if (status == FC_MTIP_STATUS_OFFLINE)
		disp_status = "offline";
	else
		disp_status = "unknown";

2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587
	return scnprintf(buf, PAGE_SIZE, "%s\n", disp_status);
}

/**
 * port0_show() - queries and presents the current status of port 0
 * @dev:	Generic device associated with the host owning the port.
 * @attr:	Device attribute representing the port.
 * @buf:	Buffer of length PAGE_SIZE to report back port status in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t port0_show(struct device *dev,
			  struct device_attribute *attr,
			  char *buf)
{
M
Matthew R. Ochs 已提交
2588
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));
2589

2590
	return cxlflash_show_port_status(0, cfg, buf);
M
Matthew R. Ochs 已提交
2591 2592 2593
}

/**
2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604
 * port1_show() - queries and presents the current status of port 1
 * @dev:	Generic device associated with the host owning the port.
 * @attr:	Device attribute representing the port.
 * @buf:	Buffer of length PAGE_SIZE to report back port status in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t port1_show(struct device *dev,
			  struct device_attribute *attr,
			  char *buf)
{
M
Matthew R. Ochs 已提交
2605
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));
2606

2607
	return cxlflash_show_port_status(1, cfg, buf);
2608 2609
}

2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643
/**
 * port2_show() - queries and presents the current status of port 2
 * @dev:	Generic device associated with the host owning the port.
 * @attr:	Device attribute representing the port.
 * @buf:	Buffer of length PAGE_SIZE to report back port status in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t port2_show(struct device *dev,
			  struct device_attribute *attr,
			  char *buf)
{
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));

	return cxlflash_show_port_status(2, cfg, buf);
}

/**
 * port3_show() - queries and presents the current status of port 3
 * @dev:	Generic device associated with the host owning the port.
 * @attr:	Device attribute representing the port.
 * @buf:	Buffer of length PAGE_SIZE to report back port status in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t port3_show(struct device *dev,
			  struct device_attribute *attr,
			  char *buf)
{
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));

	return cxlflash_show_port_status(3, cfg, buf);
}

2644 2645
/**
 * lun_mode_show() - presents the current LUN mode of the host
M
Matthew R. Ochs 已提交
2646
 * @dev:	Generic device associated with the host.
2647
 * @attr:	Device attribute representing the LUN mode.
M
Matthew R. Ochs 已提交
2648 2649 2650 2651
 * @buf:	Buffer of length PAGE_SIZE to report back the LUN mode in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
2652 2653
static ssize_t lun_mode_show(struct device *dev,
			     struct device_attribute *attr, char *buf)
M
Matthew R. Ochs 已提交
2654
{
M
Matthew R. Ochs 已提交
2655
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));
M
Matthew R. Ochs 已提交
2656 2657
	struct afu *afu = cfg->afu;

2658
	return scnprintf(buf, PAGE_SIZE, "%u\n", afu->internal_lun);
M
Matthew R. Ochs 已提交
2659 2660 2661
}

/**
2662
 * lun_mode_store() - sets the LUN mode of the host
M
Matthew R. Ochs 已提交
2663
 * @dev:	Generic device associated with the host.
2664
 * @attr:	Device attribute representing the LUN mode.
M
Matthew R. Ochs 已提交
2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682
 * @buf:	Buffer of length PAGE_SIZE containing the LUN mode in ASCII.
 * @count:	Length of data resizing in @buf.
 *
 * The CXL Flash AFU supports a dummy LUN mode where the external
 * links and storage are not required. Space on the FPGA is used
 * to create 1 or 2 small LUNs which are presented to the system
 * as if they were a normal storage device. This feature is useful
 * during development and also provides manufacturing with a way
 * to test the AFU without an actual device.
 *
 * 0 = external LUN[s] (default)
 * 1 = internal LUN (1 x 64K, 512B blocks, id 0)
 * 2 = internal LUN (1 x 64K, 4K blocks, id 0)
 * 3 = internal LUN (2 x 32K, 512B blocks, ids 0,1)
 * 4 = internal LUN (2 x 32K, 4K blocks, ids 0,1)
 *
 * Return: The size of the ASCII string returned in @buf.
 */
2683 2684 2685
static ssize_t lun_mode_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t count)
M
Matthew R. Ochs 已提交
2686 2687
{
	struct Scsi_Host *shost = class_to_shost(dev);
M
Matthew R. Ochs 已提交
2688
	struct cxlflash_cfg *cfg = shost_priv(shost);
M
Matthew R. Ochs 已提交
2689 2690 2691 2692 2693 2694 2695
	struct afu *afu = cfg->afu;
	int rc;
	u32 lun_mode;

	rc = kstrtouint(buf, 10, &lun_mode);
	if (!rc && (lun_mode < 5) && (lun_mode != afu->internal_lun)) {
		afu->internal_lun = lun_mode;
2696 2697 2698

		/*
		 * When configured for internal LUN, there is only one channel,
2699 2700
		 * channel number 0, else there will be one less than the number
		 * of fc ports for this card.
2701 2702 2703 2704
		 */
		if (afu->internal_lun)
			shost->max_channel = 0;
		else
2705
			shost->max_channel = PORTNUM2CHAN(cfg->num_fc_ports);
2706

M
Matthew R. Ochs 已提交
2707 2708 2709 2710 2711 2712 2713 2714
		afu_reset(cfg);
		scsi_scan_host(cfg->host);
	}

	return count;
}

/**
2715
 * ioctl_version_show() - presents the current ioctl version of the host
M
Matthew R. Ochs 已提交
2716 2717 2718 2719 2720 2721
 * @dev:	Generic device associated with the host.
 * @attr:	Device attribute representing the ioctl version.
 * @buf:	Buffer of length PAGE_SIZE to report back the ioctl version.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
2722 2723
static ssize_t ioctl_version_show(struct device *dev,
				  struct device_attribute *attr, char *buf)
M
Matthew R. Ochs 已提交
2724
{
2725 2726 2727 2728 2729 2730 2731 2732
	ssize_t bytes = 0;

	bytes = scnprintf(buf, PAGE_SIZE,
			  "disk: %u\n", DK_CXLFLASH_VERSION_0);
	bytes += scnprintf(buf + bytes, PAGE_SIZE - bytes,
			   "host: %u\n", HT_CXLFLASH_VERSION_0);

	return bytes;
M
Matthew R. Ochs 已提交
2733 2734 2735
}

/**
2736 2737
 * cxlflash_show_port_lun_table() - queries and presents the port LUN table
 * @port:	Desired port for status reporting.
2738
 * @cfg:	Internal structure associated with the host.
2739 2740
 * @buf:	Buffer of length PAGE_SIZE to report back port status in ASCII.
 *
2741
 * Return: The size of the ASCII string returned in @buf or -EINVAL.
2742 2743
 */
static ssize_t cxlflash_show_port_lun_table(u32 port,
2744
					    struct cxlflash_cfg *cfg,
2745 2746
					    char *buf)
{
2747
	struct device *dev = &cfg->dev->dev;
2748
	__be64 __iomem *fc_port_luns;
2749 2750 2751
	int i;
	ssize_t bytes = 0;

2752 2753 2754 2755 2756 2757 2758
	WARN_ON(port >= MAX_FC_PORTS);

	if (port >= cfg->num_fc_ports) {
		dev_info(dev, "%s: Port %d not supported on this card.\n",
			__func__, port);
		return -EINVAL;
	}
2759

2760
	fc_port_luns = get_fc_port_luns(cfg, port);
2761 2762 2763

	for (i = 0; i < CXLFLASH_NUM_VLUNS; i++)
		bytes += scnprintf(buf + bytes, PAGE_SIZE - bytes,
2764 2765
				   "%03d: %016llx\n",
				   i, readq_be(&fc_port_luns[i]));
2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780
	return bytes;
}

/**
 * port0_lun_table_show() - presents the current LUN table of port 0
 * @dev:	Generic device associated with the host owning the port.
 * @attr:	Device attribute representing the port.
 * @buf:	Buffer of length PAGE_SIZE to report back port status in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t port0_lun_table_show(struct device *dev,
				    struct device_attribute *attr,
				    char *buf)
{
M
Matthew R. Ochs 已提交
2781
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));
2782

2783
	return cxlflash_show_port_lun_table(0, cfg, buf);
2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797
}

/**
 * port1_lun_table_show() - presents the current LUN table of port 1
 * @dev:	Generic device associated with the host owning the port.
 * @attr:	Device attribute representing the port.
 * @buf:	Buffer of length PAGE_SIZE to report back port status in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t port1_lun_table_show(struct device *dev,
				    struct device_attribute *attr,
				    char *buf)
{
M
Matthew R. Ochs 已提交
2798
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));
2799

2800
	return cxlflash_show_port_lun_table(1, cfg, buf);
2801 2802
}

2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836
/**
 * port2_lun_table_show() - presents the current LUN table of port 2
 * @dev:	Generic device associated with the host owning the port.
 * @attr:	Device attribute representing the port.
 * @buf:	Buffer of length PAGE_SIZE to report back port status in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t port2_lun_table_show(struct device *dev,
				    struct device_attribute *attr,
				    char *buf)
{
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));

	return cxlflash_show_port_lun_table(2, cfg, buf);
}

/**
 * port3_lun_table_show() - presents the current LUN table of port 3
 * @dev:	Generic device associated with the host owning the port.
 * @attr:	Device attribute representing the port.
 * @buf:	Buffer of length PAGE_SIZE to report back port status in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t port3_lun_table_show(struct device *dev,
				    struct device_attribute *attr,
				    char *buf)
{
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));

	return cxlflash_show_port_lun_table(3, cfg, buf);
}

2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875
/**
 * irqpoll_weight_show() - presents the current IRQ poll weight for the host
 * @dev:	Generic device associated with the host.
 * @attr:	Device attribute representing the IRQ poll weight.
 * @buf:	Buffer of length PAGE_SIZE to report back the current IRQ poll
 *		weight in ASCII.
 *
 * An IRQ poll weight of 0 indicates polling is disabled.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t irqpoll_weight_show(struct device *dev,
				   struct device_attribute *attr, char *buf)
{
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));
	struct afu *afu = cfg->afu;

	return scnprintf(buf, PAGE_SIZE, "%u\n", afu->irqpoll_weight);
}

/**
 * irqpoll_weight_store() - sets the current IRQ poll weight for the host
 * @dev:	Generic device associated with the host.
 * @attr:	Device attribute representing the IRQ poll weight.
 * @buf:	Buffer of length PAGE_SIZE containing the desired IRQ poll
 *		weight in ASCII.
 * @count:	Length of data resizing in @buf.
 *
 * An IRQ poll weight of 0 indicates polling is disabled.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t irqpoll_weight_store(struct device *dev,
				    struct device_attribute *attr,
				    const char *buf, size_t count)
{
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));
	struct device *cfgdev = &cfg->dev->dev;
	struct afu *afu = cfg->afu;
2876
	struct hwq *hwq;
2877
	u32 weight;
2878
	int rc, i;
2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895

	rc = kstrtouint(buf, 10, &weight);
	if (rc)
		return -EINVAL;

	if (weight > 256) {
		dev_info(cfgdev,
			 "Invalid IRQ poll weight. It must be 256 or less.\n");
		return -EINVAL;
	}

	if (weight == afu->irqpoll_weight) {
		dev_info(cfgdev,
			 "Current IRQ poll weight has the same weight.\n");
		return -EINVAL;
	}

2896
	if (afu_is_irqpoll_enabled(afu)) {
2897
		for (i = 0; i < afu->num_hwqs; i++) {
2898 2899 2900 2901 2902
			hwq = get_hwq(afu, i);

			irq_poll_disable(&hwq->irqpoll);
		}
	}
2903 2904 2905

	afu->irqpoll_weight = weight;

2906
	if (weight > 0) {
2907
		for (i = 0; i < afu->num_hwqs; i++) {
2908 2909 2910 2911 2912
			hwq = get_hwq(afu, i);

			irq_poll_init(&hwq->irqpoll, weight, cxlflash_irqpoll);
		}
	}
2913 2914 2915 2916

	return count;
}

2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998
/**
 * num_hwqs_show() - presents the number of hardware queues for the host
 * @dev:	Generic device associated with the host.
 * @attr:	Device attribute representing the number of hardware queues.
 * @buf:	Buffer of length PAGE_SIZE to report back the number of hardware
 *		queues in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t num_hwqs_show(struct device *dev,
			     struct device_attribute *attr, char *buf)
{
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));
	struct afu *afu = cfg->afu;

	return scnprintf(buf, PAGE_SIZE, "%u\n", afu->num_hwqs);
}

/**
 * num_hwqs_store() - sets the number of hardware queues for the host
 * @dev:	Generic device associated with the host.
 * @attr:	Device attribute representing the number of hardware queues.
 * @buf:	Buffer of length PAGE_SIZE containing the number of hardware
 *		queues in ASCII.
 * @count:	Length of data resizing in @buf.
 *
 * n > 0: num_hwqs = n
 * n = 0: num_hwqs = num_online_cpus()
 * n < 0: num_online_cpus() / abs(n)
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t num_hwqs_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t count)
{
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));
	struct afu *afu = cfg->afu;
	int rc;
	int nhwqs, num_hwqs;

	rc = kstrtoint(buf, 10, &nhwqs);
	if (rc)
		return -EINVAL;

	if (nhwqs >= 1)
		num_hwqs = nhwqs;
	else if (nhwqs == 0)
		num_hwqs = num_online_cpus();
	else
		num_hwqs = num_online_cpus() / abs(nhwqs);

	afu->desired_hwqs = min(num_hwqs, CXLFLASH_MAX_HWQS);
	WARN_ON_ONCE(afu->desired_hwqs == 0);

retry:
	switch (cfg->state) {
	case STATE_NORMAL:
		cfg->state = STATE_RESET;
		drain_ioctls(cfg);
		cxlflash_mark_contexts_error(cfg);
		rc = afu_reset(cfg);
		if (rc)
			cfg->state = STATE_FAILTERM;
		else
			cfg->state = STATE_NORMAL;
		wake_up_all(&cfg->reset_waitq);
		break;
	case STATE_RESET:
		wait_event(cfg->reset_waitq, cfg->state != STATE_RESET);
		if (cfg->state == STATE_NORMAL)
			goto retry;
	default:
		/* Ideally should not happen */
		dev_err(dev, "%s: Device is not ready, state=%d\n",
			__func__, cfg->state);
		break;
	}

	return count;
}

2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066
static const char *hwq_mode_name[MAX_HWQ_MODE] = { "rr", "tag", "cpu" };

/**
 * hwq_mode_show() - presents the HWQ steering mode for the host
 * @dev:	Generic device associated with the host.
 * @attr:	Device attribute representing the HWQ steering mode.
 * @buf:	Buffer of length PAGE_SIZE to report back the HWQ steering mode
 *		as a character string.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t hwq_mode_show(struct device *dev,
			     struct device_attribute *attr, char *buf)
{
	struct cxlflash_cfg *cfg = shost_priv(class_to_shost(dev));
	struct afu *afu = cfg->afu;

	return scnprintf(buf, PAGE_SIZE, "%s\n", hwq_mode_name[afu->hwq_mode]);
}

/**
 * hwq_mode_store() - sets the HWQ steering mode for the host
 * @dev:	Generic device associated with the host.
 * @attr:	Device attribute representing the HWQ steering mode.
 * @buf:	Buffer of length PAGE_SIZE containing the HWQ steering mode
 *		as a character string.
 * @count:	Length of data resizing in @buf.
 *
 * rr = Round-Robin
 * tag = Block MQ Tagging
 * cpu = CPU Affinity
 *
 * Return: The size of the ASCII string returned in @buf.
 */
static ssize_t hwq_mode_store(struct device *dev,
			      struct device_attribute *attr,
			      const char *buf, size_t count)
{
	struct Scsi_Host *shost = class_to_shost(dev);
	struct cxlflash_cfg *cfg = shost_priv(shost);
	struct device *cfgdev = &cfg->dev->dev;
	struct afu *afu = cfg->afu;
	int i;
	u32 mode = MAX_HWQ_MODE;

	for (i = 0; i < MAX_HWQ_MODE; i++) {
		if (!strncmp(hwq_mode_name[i], buf, strlen(hwq_mode_name[i]))) {
			mode = i;
			break;
		}
	}

	if (mode >= MAX_HWQ_MODE) {
		dev_info(cfgdev, "Invalid HWQ steering mode.\n");
		return -EINVAL;
	}

	if ((mode == HWQ_MODE_TAG) && !shost_use_blk_mq(shost)) {
		dev_info(cfgdev, "SCSI-MQ is not enabled, use a different "
			 "HWQ steering mode.\n");
		return -EINVAL;
	}

	afu->hwq_mode = mode;

	return count;
}

3067 3068
/**
 * mode_show() - presents the current mode of the device
M
Matthew R. Ochs 已提交
3069 3070 3071 3072 3073 3074
 * @dev:	Generic device associated with the device.
 * @attr:	Device attribute representing the device mode.
 * @buf:	Buffer of length PAGE_SIZE to report back the dev mode in ASCII.
 *
 * Return: The size of the ASCII string returned in @buf.
 */
3075 3076
static ssize_t mode_show(struct device *dev,
			 struct device_attribute *attr, char *buf)
M
Matthew R. Ochs 已提交
3077 3078 3079
{
	struct scsi_device *sdev = to_scsi_device(dev);

3080 3081
	return scnprintf(buf, PAGE_SIZE, "%s\n",
			 sdev->hostdata ? "superpipe" : "legacy");
M
Matthew R. Ochs 已提交
3082 3083 3084 3085 3086
}

/*
 * Host attributes
 */
3087 3088
static DEVICE_ATTR_RO(port0);
static DEVICE_ATTR_RO(port1);
3089 3090
static DEVICE_ATTR_RO(port2);
static DEVICE_ATTR_RO(port3);
3091 3092 3093 3094
static DEVICE_ATTR_RW(lun_mode);
static DEVICE_ATTR_RO(ioctl_version);
static DEVICE_ATTR_RO(port0_lun_table);
static DEVICE_ATTR_RO(port1_lun_table);
3095 3096
static DEVICE_ATTR_RO(port2_lun_table);
static DEVICE_ATTR_RO(port3_lun_table);
3097
static DEVICE_ATTR_RW(irqpoll_weight);
3098
static DEVICE_ATTR_RW(num_hwqs);
3099
static DEVICE_ATTR_RW(hwq_mode);
M
Matthew R. Ochs 已提交
3100 3101 3102 3103

static struct device_attribute *cxlflash_host_attrs[] = {
	&dev_attr_port0,
	&dev_attr_port1,
3104 3105
	&dev_attr_port2,
	&dev_attr_port3,
M
Matthew R. Ochs 已提交
3106 3107
	&dev_attr_lun_mode,
	&dev_attr_ioctl_version,
3108 3109
	&dev_attr_port0_lun_table,
	&dev_attr_port1_lun_table,
3110 3111
	&dev_attr_port2_lun_table,
	&dev_attr_port3_lun_table,
3112
	&dev_attr_irqpoll_weight,
3113
	&dev_attr_num_hwqs,
3114
	&dev_attr_hwq_mode,
M
Matthew R. Ochs 已提交
3115 3116 3117 3118 3119 3120
	NULL
};

/*
 * Device attributes
 */
3121
static DEVICE_ATTR_RO(mode);
M
Matthew R. Ochs 已提交
3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137

static struct device_attribute *cxlflash_dev_attrs[] = {
	&dev_attr_mode,
	NULL
};

/*
 * Host template
 */
static struct scsi_host_template driver_template = {
	.module = THIS_MODULE,
	.name = CXLFLASH_ADAPTER_NAME,
	.info = cxlflash_driver_info,
	.ioctl = cxlflash_ioctl,
	.proc_name = CXLFLASH_NAME,
	.queuecommand = cxlflash_queuecommand,
3138
	.eh_abort_handler = cxlflash_eh_abort_handler,
M
Matthew R. Ochs 已提交
3139 3140 3141
	.eh_device_reset_handler = cxlflash_eh_device_reset_handler,
	.eh_host_reset_handler = cxlflash_eh_host_reset_handler,
	.change_queue_depth = cxlflash_change_queue_depth,
3142
	.cmd_per_lun = CXLFLASH_MAX_CMDS_PER_LUN,
M
Matthew R. Ochs 已提交
3143
	.can_queue = CXLFLASH_MAX_CMDS,
3144
	.cmd_size = sizeof(struct afu_cmd) + __alignof__(struct afu_cmd) - 1,
M
Matthew R. Ochs 已提交
3145
	.this_id = -1,
3146
	.sg_tablesize = 1,	/* No scatter gather support */
M
Matthew R. Ochs 已提交
3147 3148 3149 3150 3151 3152 3153 3154 3155
	.max_sectors = CXLFLASH_MAX_SECTORS,
	.use_clustering = ENABLE_CLUSTERING,
	.shost_attrs = cxlflash_host_attrs,
	.sdev_attrs = cxlflash_dev_attrs,
};

/*
 * Device dependent values
 */
3156
static struct dev_dependent_vals dev_corsa_vals = { CXLFLASH_MAX_SECTORS,
3157
					CXLFLASH_WWPN_VPD_REQUIRED };
3158
static struct dev_dependent_vals dev_flash_gt_vals = { CXLFLASH_MAX_SECTORS,
3159
					CXLFLASH_NOTIFY_SHUTDOWN };
3160 3161
static struct dev_dependent_vals dev_briard_vals = { CXLFLASH_MAX_SECTORS,
					CXLFLASH_NOTIFY_SHUTDOWN };
M
Matthew R. Ochs 已提交
3162 3163 3164 3165 3166 3167 3168

/*
 * PCI device binding table
 */
static struct pci_device_id cxlflash_pci_table[] = {
	{PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CORSA,
	 PCI_ANY_ID, PCI_ANY_ID, 0, 0, (kernel_ulong_t)&dev_corsa_vals},
3169 3170
	{PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_FLASH_GT,
	 PCI_ANY_ID, PCI_ANY_ID, 0, 0, (kernel_ulong_t)&dev_flash_gt_vals},
3171 3172
	{PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_BRIARD,
	 PCI_ANY_ID, PCI_ANY_ID, 0, 0, (kernel_ulong_t)&dev_briard_vals},
M
Matthew R. Ochs 已提交
3173 3174 3175 3176 3177
	{}
};

MODULE_DEVICE_TABLE(pci, cxlflash_pci_table);

3178 3179 3180 3181 3182 3183 3184
/**
 * cxlflash_worker_thread() - work thread handler for the AFU
 * @work:	Work structure contained within cxlflash associated with host.
 *
 * Handles the following events:
 * - Link reset which cannot be performed on interrupt context due to
 * blocking up to a few seconds
3185
 * - Rescan the host
3186 3187 3188
 */
static void cxlflash_worker_thread(struct work_struct *work)
{
3189 3190
	struct cxlflash_cfg *cfg = container_of(work, struct cxlflash_cfg,
						work_q);
3191
	struct afu *afu = cfg->afu;
3192
	struct device *dev = &cfg->dev->dev;
3193
	__be64 __iomem *fc_port_regs;
3194 3195 3196
	int port;
	ulong lock_flags;

3197 3198 3199 3200 3201
	/* Avoid MMIO if the device has failed */

	if (cfg->state != STATE_NORMAL)
		return;

3202 3203 3204 3205 3206
	spin_lock_irqsave(cfg->host->host_lock, lock_flags);

	if (cfg->lr_state == LINK_RESET_REQUIRED) {
		port = cfg->lr_port;
		if (port < 0)
3207 3208
			dev_err(dev, "%s: invalid port index %d\n",
				__func__, port);
3209 3210 3211 3212 3213
		else {
			spin_unlock_irqrestore(cfg->host->host_lock,
					       lock_flags);

			/* The reset can block... */
3214 3215
			fc_port_regs = get_fc_port_regs(cfg, port);
			afu_link_reset(afu, port, fc_port_regs);
3216 3217 3218 3219 3220 3221 3222
			spin_lock_irqsave(cfg->host->host_lock, lock_flags);
		}

		cfg->lr_state = LINK_RESET_COMPLETE;
	}

	spin_unlock_irqrestore(cfg->host->host_lock, lock_flags);
3223 3224 3225

	if (atomic_dec_if_positive(&cfg->scan_host_needed) >= 0)
		scsi_scan_host(cfg->host);
3226 3227
}

3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249
/**
 * cxlflash_chr_open() - character device open handler
 * @inode:	Device inode associated with this character device.
 * @file:	File pointer for this device.
 *
 * Only users with admin privileges are allowed to open the character device.
 *
 * Return: 0 on success, -errno on failure
 */
static int cxlflash_chr_open(struct inode *inode, struct file *file)
{
	struct cxlflash_cfg *cfg;

	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;

	cfg = container_of(inode->i_cdev, struct cxlflash_cfg, cdev);
	file->private_data = cfg;

	return 0;
}

3250 3251 3252 3253 3254 3255 3256 3257 3258
/**
 * decode_hioctl() - translates encoded host ioctl to easily identifiable string
 * @cmd:        The host ioctl command to decode.
 *
 * Return: A string identifying the decoded host ioctl.
 */
static char *decode_hioctl(int cmd)
{
	switch (cmd) {
3259 3260
	case HT_CXLFLASH_LUN_PROVISION:
		return __stringify_1(HT_CXLFLASH_LUN_PROVISION);
3261 3262 3263 3264 3265
	}

	return "UNKNOWN";
}

3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356
/**
 * cxlflash_lun_provision() - host LUN provisioning handler
 * @cfg:	Internal structure associated with the host.
 * @arg:	Kernel copy of userspace ioctl data structure.
 *
 * Return: 0 on success, -errno on failure
 */
static int cxlflash_lun_provision(struct cxlflash_cfg *cfg,
				  struct ht_cxlflash_lun_provision *lunprov)
{
	struct afu *afu = cfg->afu;
	struct device *dev = &cfg->dev->dev;
	struct sisl_ioarcb rcb;
	struct sisl_ioasa asa;
	__be64 __iomem *fc_port_regs;
	u16 port = lunprov->port;
	u16 scmd = lunprov->hdr.subcmd;
	u16 type;
	u64 reg;
	u64 size;
	u64 lun_id;
	int rc = 0;

	if (!afu_is_lun_provision(afu)) {
		rc = -ENOTSUPP;
		goto out;
	}

	if (port >= cfg->num_fc_ports) {
		rc = -EINVAL;
		goto out;
	}

	switch (scmd) {
	case HT_CXLFLASH_LUN_PROVISION_SUBCMD_CREATE_LUN:
		type = SISL_AFU_LUN_PROVISION_CREATE;
		size = lunprov->size;
		lun_id = 0;
		break;
	case HT_CXLFLASH_LUN_PROVISION_SUBCMD_DELETE_LUN:
		type = SISL_AFU_LUN_PROVISION_DELETE;
		size = 0;
		lun_id = lunprov->lun_id;
		break;
	case HT_CXLFLASH_LUN_PROVISION_SUBCMD_QUERY_PORT:
		fc_port_regs = get_fc_port_regs(cfg, port);

		reg = readq_be(&fc_port_regs[FC_MAX_NUM_LUNS / 8]);
		lunprov->max_num_luns = reg;
		reg = readq_be(&fc_port_regs[FC_CUR_NUM_LUNS / 8]);
		lunprov->cur_num_luns = reg;
		reg = readq_be(&fc_port_regs[FC_MAX_CAP_PORT / 8]);
		lunprov->max_cap_port = reg;
		reg = readq_be(&fc_port_regs[FC_CUR_CAP_PORT / 8]);
		lunprov->cur_cap_port = reg;

		goto out;
	default:
		rc = -EINVAL;
		goto out;
	}

	memset(&rcb, 0, sizeof(rcb));
	memset(&asa, 0, sizeof(asa));
	rcb.req_flags = SISL_REQ_FLAGS_AFU_CMD;
	rcb.lun_id = lun_id;
	rcb.msi = SISL_MSI_RRQ_UPDATED;
	rcb.timeout = MC_LUN_PROV_TIMEOUT;
	rcb.ioasa = &asa;

	rcb.cdb[0] = SISL_AFU_CMD_LUN_PROVISION;
	rcb.cdb[1] = type;
	rcb.cdb[2] = port;
	put_unaligned_be64(size, &rcb.cdb[8]);

	rc = send_afu_cmd(afu, &rcb);
	if (rc) {
		dev_err(dev, "%s: send_afu_cmd failed rc=%d asc=%08x afux=%x\n",
			__func__, rc, asa.ioasc, asa.afu_extra);
		goto out;
	}

	if (scmd == HT_CXLFLASH_LUN_PROVISION_SUBCMD_CREATE_LUN) {
		lunprov->lun_id = (u64)asa.lunid_hi << 32 | asa.lunid_lo;
		memcpy(lunprov->wwid, asa.wwid, sizeof(lunprov->wwid));
	}
out:
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
	return rc;
}

3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405
/**
 * cxlflash_afu_debug() - host AFU debug handler
 * @cfg:	Internal structure associated with the host.
 * @arg:	Kernel copy of userspace ioctl data structure.
 *
 * For debug requests requiring a data buffer, always provide an aligned
 * (cache line) buffer to the AFU to appease any alignment requirements.
 *
 * Return: 0 on success, -errno on failure
 */
static int cxlflash_afu_debug(struct cxlflash_cfg *cfg,
			      struct ht_cxlflash_afu_debug *afu_dbg)
{
	struct afu *afu = cfg->afu;
	struct device *dev = &cfg->dev->dev;
	struct sisl_ioarcb rcb;
	struct sisl_ioasa asa;
	char *buf = NULL;
	char *kbuf = NULL;
	void __user *ubuf = (__force void __user *)afu_dbg->data_ea;
	u16 req_flags = SISL_REQ_FLAGS_AFU_CMD;
	u32 ulen = afu_dbg->data_len;
	bool is_write = afu_dbg->hdr.flags & HT_CXLFLASH_HOST_WRITE;
	int rc = 0;

	if (!afu_is_afu_debug(afu)) {
		rc = -ENOTSUPP;
		goto out;
	}

	if (ulen) {
		req_flags |= SISL_REQ_FLAGS_SUP_UNDERRUN;

		if (ulen > HT_CXLFLASH_AFU_DEBUG_MAX_DATA_LEN) {
			rc = -EINVAL;
			goto out;
		}

		buf = kmalloc(ulen + cache_line_size() - 1, GFP_KERNEL);
		if (unlikely(!buf)) {
			rc = -ENOMEM;
			goto out;
		}

		kbuf = PTR_ALIGN(buf, cache_line_size());

		if (is_write) {
			req_flags |= SISL_REQ_FLAGS_HOST_WRITE;

3406 3407
			if (copy_from_user(kbuf, ubuf, ulen)) {
				rc = -EFAULT;
3408
				goto out;
3409
			}
3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436
		}
	}

	memset(&rcb, 0, sizeof(rcb));
	memset(&asa, 0, sizeof(asa));

	rcb.req_flags = req_flags;
	rcb.msi = SISL_MSI_RRQ_UPDATED;
	rcb.timeout = MC_AFU_DEBUG_TIMEOUT;
	rcb.ioasa = &asa;

	if (ulen) {
		rcb.data_len = ulen;
		rcb.data_ea = (uintptr_t)kbuf;
	}

	rcb.cdb[0] = SISL_AFU_CMD_DEBUG;
	memcpy(&rcb.cdb[4], afu_dbg->afu_subcmd,
	       HT_CXLFLASH_AFU_DEBUG_SUBCMD_LEN);

	rc = send_afu_cmd(afu, &rcb);
	if (rc) {
		dev_err(dev, "%s: send_afu_cmd failed rc=%d asc=%08x afux=%x\n",
			__func__, rc, asa.ioasc, asa.afu_extra);
		goto out;
	}

3437 3438 3439 3440
	if (ulen && !is_write) {
		if (copy_to_user(ubuf, kbuf, ulen))
			rc = -EFAULT;
	}
3441 3442 3443 3444 3445 3446
out:
	kfree(buf);
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
	return rc;
}

3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482
/**
 * cxlflash_chr_ioctl() - character device IOCTL handler
 * @file:	File pointer for this device.
 * @cmd:	IOCTL command.
 * @arg:	Userspace ioctl data structure.
 *
 * A read/write semaphore is used to implement a 'drain' of currently
 * running ioctls. The read semaphore is taken at the beginning of each
 * ioctl thread and released upon concluding execution. Additionally the
 * semaphore should be released and then reacquired in any ioctl execution
 * path which will wait for an event to occur that is outside the scope of
 * the ioctl (i.e. an adapter reset). To drain the ioctls currently running,
 * a thread simply needs to acquire the write semaphore.
 *
 * Return: 0 on success, -errno on failure
 */
static long cxlflash_chr_ioctl(struct file *file, unsigned int cmd,
			       unsigned long arg)
{
	typedef int (*hioctl) (struct cxlflash_cfg *, void *);

	struct cxlflash_cfg *cfg = file->private_data;
	struct device *dev = &cfg->dev->dev;
	char buf[sizeof(union cxlflash_ht_ioctls)];
	void __user *uarg = (void __user *)arg;
	struct ht_cxlflash_hdr *hdr;
	size_t size = 0;
	bool known_ioctl = false;
	int idx = 0;
	int rc = 0;
	hioctl do_ioctl = NULL;

	static const struct {
		size_t size;
		hioctl ioctl;
	} ioctl_tbl[] = {	/* NOTE: order matters here */
3483 3484
	{ sizeof(struct ht_cxlflash_lun_provision),
		(hioctl)cxlflash_lun_provision },
3485 3486
	{ sizeof(struct ht_cxlflash_afu_debug),
		(hioctl)cxlflash_afu_debug },
3487 3488 3489 3490 3491 3492 3493 3494 3495
	};

	/* Hold read semaphore so we can drain if needed */
	down_read(&cfg->ioctl_rwsem);

	dev_dbg(dev, "%s: cmd=%u idx=%d tbl_size=%lu\n",
		__func__, cmd, idx, sizeof(ioctl_tbl));

	switch (cmd) {
3496
	case HT_CXLFLASH_LUN_PROVISION:
3497
	case HT_CXLFLASH_AFU_DEBUG:
3498 3499 3500 3501 3502 3503 3504 3505 3506
		known_ioctl = true;
		idx = _IOC_NR(HT_CXLFLASH_LUN_PROVISION) - _IOC_NR(cmd);
		size = ioctl_tbl[idx].size;
		do_ioctl = ioctl_tbl[idx].ioctl;

		if (likely(do_ioctl))
			break;

		/* fall through */
3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555
	default:
		rc = -EINVAL;
		goto out;
	}

	if (unlikely(copy_from_user(&buf, uarg, size))) {
		dev_err(dev, "%s: copy_from_user() fail "
			"size=%lu cmd=%d (%s) uarg=%p\n",
			__func__, size, cmd, decode_hioctl(cmd), uarg);
		rc = -EFAULT;
		goto out;
	}

	hdr = (struct ht_cxlflash_hdr *)&buf;
	if (hdr->version != HT_CXLFLASH_VERSION_0) {
		dev_dbg(dev, "%s: Version %u not supported for %s\n",
			__func__, hdr->version, decode_hioctl(cmd));
		rc = -EINVAL;
		goto out;
	}

	if (hdr->rsvd[0] || hdr->rsvd[1] || hdr->return_flags) {
		dev_dbg(dev, "%s: Reserved/rflags populated\n", __func__);
		rc = -EINVAL;
		goto out;
	}

	rc = do_ioctl(cfg, (void *)&buf);
	if (likely(!rc))
		if (unlikely(copy_to_user(uarg, &buf, size))) {
			dev_err(dev, "%s: copy_to_user() fail "
				"size=%lu cmd=%d (%s) uarg=%p\n",
				__func__, size, cmd, decode_hioctl(cmd), uarg);
			rc = -EFAULT;
		}

	/* fall through to exit */

out:
	up_read(&cfg->ioctl_rwsem);
	if (unlikely(rc && known_ioctl))
		dev_err(dev, "%s: ioctl %s (%08X) returned rc=%d\n",
			__func__, decode_hioctl(cmd), cmd, rc);
	else
		dev_dbg(dev, "%s: ioctl %s (%08X) returned rc=%d\n",
			__func__, decode_hioctl(cmd), cmd, rc);
	return rc;
}

3556 3557 3558 3559 3560 3561
/*
 * Character device file operations
 */
static const struct file_operations cxlflash_chr_fops = {
	.owner          = THIS_MODULE,
	.open           = cxlflash_chr_open,
3562 3563
	.unlocked_ioctl	= cxlflash_chr_ioctl,
	.compat_ioctl	= cxlflash_chr_ioctl,
3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615
};

/**
 * init_chrdev() - initialize the character device for the host
 * @cfg:	Internal structure associated with the host.
 *
 * Return: 0 on success, -errno on failure
 */
static int init_chrdev(struct cxlflash_cfg *cfg)
{
	struct device *dev = &cfg->dev->dev;
	struct device *char_dev;
	dev_t devno;
	int minor;
	int rc = 0;

	minor = cxlflash_get_minor();
	if (unlikely(minor < 0)) {
		dev_err(dev, "%s: Exhausted allowed adapters\n", __func__);
		rc = -ENOSPC;
		goto out;
	}

	devno = MKDEV(cxlflash_major, minor);
	cdev_init(&cfg->cdev, &cxlflash_chr_fops);

	rc = cdev_add(&cfg->cdev, devno, 1);
	if (rc) {
		dev_err(dev, "%s: cdev_add failed rc=%d\n", __func__, rc);
		goto err1;
	}

	char_dev = device_create(cxlflash_class, NULL, devno,
				 NULL, "cxlflash%d", minor);
	if (IS_ERR(char_dev)) {
		rc = PTR_ERR(char_dev);
		dev_err(dev, "%s: device_create failed rc=%d\n",
			__func__, rc);
		goto err2;
	}

	cfg->chardev = char_dev;
out:
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
	return rc;
err2:
	cdev_del(&cfg->cdev);
err1:
	cxlflash_put_minor(minor);
	goto out;
}

3616 3617 3618 3619 3620
/**
 * cxlflash_probe() - PCI entry point to add host
 * @pdev:	PCI device associated with the host.
 * @dev_id:	PCI device id associated with device.
 *
3621 3622 3623 3624 3625 3626 3627 3628 3629
 * The device will initially start out in a 'probing' state and
 * transition to the 'normal' state at the end of a successful
 * probe. Should an EEH event occur during probe, the notification
 * thread (error_detected()) will wait until the probe handler
 * is nearly complete. At that time, the device will be moved to
 * a 'probed' state and the EEH thread woken up to drive the slot
 * reset and recovery (device moves to 'normal' state). Meanwhile,
 * the probe will be allowed to exit successfully.
 *
3630
 * Return: 0 on success, -errno on failure
3631 3632 3633 3634 3635 3636
 */
static int cxlflash_probe(struct pci_dev *pdev,
			  const struct pci_device_id *dev_id)
{
	struct Scsi_Host *host;
	struct cxlflash_cfg *cfg = NULL;
M
Matthew R. Ochs 已提交
3637
	struct device *dev = &pdev->dev;
3638 3639
	struct dev_dependent_vals *ddv;
	int rc = 0;
3640
	int k;
3641 3642 3643 3644 3645 3646 3647 3648 3649

	dev_dbg(&pdev->dev, "%s: Found CXLFLASH with IRQ: %d\n",
		__func__, pdev->irq);

	ddv = (struct dev_dependent_vals *)dev_id->driver_data;
	driver_template.max_sectors = ddv->max_sectors;

	host = scsi_host_alloc(&driver_template, sizeof(struct cxlflash_cfg));
	if (!host) {
M
Matthew R. Ochs 已提交
3650
		dev_err(dev, "%s: scsi_host_alloc failed\n", __func__);
3651 3652 3653 3654 3655 3656 3657 3658 3659
		rc = -ENOMEM;
		goto out;
	}

	host->max_id = CXLFLASH_MAX_NUM_TARGETS_PER_BUS;
	host->max_lun = CXLFLASH_MAX_NUM_LUNS_PER_TARGET;
	host->unique_id = host->host_no;
	host->max_cmd_len = CXLFLASH_MAX_CDB_LEN;

M
Matthew R. Ochs 已提交
3660
	cfg = shost_priv(host);
3661 3662 3663
	cfg->host = host;
	rc = alloc_mem(cfg);
	if (rc) {
M
Matthew R. Ochs 已提交
3664
		dev_err(dev, "%s: alloc_mem failed\n", __func__);
3665
		rc = -ENOMEM;
3666
		scsi_host_put(cfg->host);
3667 3668 3669 3670 3671
		goto out;
	}

	cfg->init_state = INIT_STATE_NONE;
	cfg->dev = pdev;
3672
	cfg->cxl_fops = cxlflash_cxl_fops;
M
Matthew R. Ochs 已提交
3673 3674

	/*
3675 3676 3677 3678 3679
	 * Promoted LUNs move to the top of the LUN table. The rest stay on
	 * the bottom half. The bottom half grows from the end (index = 255),
	 * whereas the top half grows from the beginning (index = 0).
	 *
	 * Initialize the last LUN index for all possible ports.
M
Matthew R. Ochs 已提交
3680
	 */
3681 3682 3683 3684
	cfg->promote_lun_index = 0;

	for (k = 0; k < MAX_FC_PORTS; k++)
		cfg->last_lun_index[k] = CXLFLASH_NUM_VLUNS/2 - 1;
M
Matthew R. Ochs 已提交
3685

3686 3687 3688
	cfg->dev_id = (struct pci_device_id *)dev_id;

	init_waitqueue_head(&cfg->tmf_waitq);
3689
	init_waitqueue_head(&cfg->reset_waitq);
3690 3691 3692 3693

	INIT_WORK(&cfg->work_q, cxlflash_worker_thread);
	cfg->lr_state = LINK_RESET_INVALID;
	cfg->lr_port = -1;
3694
	spin_lock_init(&cfg->tmf_slock);
M
Matthew R. Ochs 已提交
3695 3696
	mutex_init(&cfg->ctx_tbl_list_mutex);
	mutex_init(&cfg->ctx_recovery_mutex);
3697
	init_rwsem(&cfg->ioctl_rwsem);
M
Matthew R. Ochs 已提交
3698 3699
	INIT_LIST_HEAD(&cfg->ctx_err_recovery);
	INIT_LIST_HEAD(&cfg->lluns);
3700 3701 3702

	pci_set_drvdata(pdev, cfg);

3703
	cfg->afu_cookie = cxl_pci_to_afu(pdev);
3704 3705 3706

	rc = init_pci(cfg);
	if (rc) {
M
Matthew R. Ochs 已提交
3707
		dev_err(dev, "%s: init_pci failed rc=%d\n", __func__, rc);
3708 3709 3710 3711 3712
		goto out_remove;
	}
	cfg->init_state = INIT_STATE_PCI;

	rc = init_afu(cfg);
3713
	if (rc && !wq_has_sleeper(&cfg->reset_waitq)) {
M
Matthew R. Ochs 已提交
3714
		dev_err(dev, "%s: init_afu failed rc=%d\n", __func__, rc);
3715 3716 3717 3718 3719 3720
		goto out_remove;
	}
	cfg->init_state = INIT_STATE_AFU;

	rc = init_scsi(cfg);
	if (rc) {
M
Matthew R. Ochs 已提交
3721
		dev_err(dev, "%s: init_scsi failed rc=%d\n", __func__, rc);
3722 3723 3724 3725
		goto out_remove;
	}
	cfg->init_state = INIT_STATE_SCSI;

3726 3727 3728 3729 3730 3731 3732
	rc = init_chrdev(cfg);
	if (rc) {
		dev_err(dev, "%s: init_chrdev failed rc=%d\n", __func__, rc);
		goto out_remove;
	}
	cfg->init_state = INIT_STATE_CDEV;

3733 3734 3735 3736 3737
	if (wq_has_sleeper(&cfg->reset_waitq)) {
		cfg->state = STATE_PROBED;
		wake_up_all(&cfg->reset_waitq);
	} else
		cfg->state = STATE_NORMAL;
3738
out:
M
Matthew R. Ochs 已提交
3739
	dev_dbg(dev, "%s: returning rc=%d\n", __func__, rc);
3740 3741 3742 3743 3744 3745 3746
	return rc;

out_remove:
	cxlflash_remove(pdev);
	goto out;
}

3747 3748 3749 3750 3751
/**
 * cxlflash_pci_error_detected() - called when a PCI error is detected
 * @pdev:	PCI device struct.
 * @state:	PCI channel state.
 *
3752 3753 3754
 * When an EEH occurs during an active reset, wait until the reset is
 * complete and then take action based upon the device state.
 *
3755 3756 3757 3758 3759
 * Return: PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
 */
static pci_ers_result_t cxlflash_pci_error_detected(struct pci_dev *pdev,
						    pci_channel_state_t state)
{
M
Matthew R. Ochs 已提交
3760
	int rc = 0;
3761 3762 3763 3764 3765 3766 3767
	struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
	struct device *dev = &cfg->dev->dev;

	dev_dbg(dev, "%s: pdev=%p state=%u\n", __func__, pdev, state);

	switch (state) {
	case pci_channel_io_frozen:
3768 3769
		wait_event(cfg->reset_waitq, cfg->state != STATE_RESET &&
					     cfg->state != STATE_PROBING);
3770 3771 3772
		if (cfg->state == STATE_FAILTERM)
			return PCI_ERS_RESULT_DISCONNECT;

3773
		cfg->state = STATE_RESET;
3774
		scsi_block_requests(cfg->host);
3775
		drain_ioctls(cfg);
M
Matthew R. Ochs 已提交
3776 3777
		rc = cxlflash_mark_contexts_error(cfg);
		if (unlikely(rc))
M
Matthew R. Ochs 已提交
3778
			dev_err(dev, "%s: Failed to mark user contexts rc=%d\n",
M
Matthew R. Ochs 已提交
3779
				__func__, rc);
3780
		term_afu(cfg);
3781 3782 3783
		return PCI_ERS_RESULT_NEED_RESET;
	case pci_channel_io_perm_failure:
		cfg->state = STATE_FAILTERM;
3784
		wake_up_all(&cfg->reset_waitq);
3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811
		scsi_unblock_requests(cfg->host);
		return PCI_ERS_RESULT_DISCONNECT;
	default:
		break;
	}
	return PCI_ERS_RESULT_NEED_RESET;
}

/**
 * cxlflash_pci_slot_reset() - called when PCI slot has been reset
 * @pdev:	PCI device struct.
 *
 * This routine is called by the pci error recovery code after the PCI
 * slot has been reset, just before we should resume normal operations.
 *
 * Return: PCI_ERS_RESULT_RECOVERED or PCI_ERS_RESULT_DISCONNECT
 */
static pci_ers_result_t cxlflash_pci_slot_reset(struct pci_dev *pdev)
{
	int rc = 0;
	struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
	struct device *dev = &cfg->dev->dev;

	dev_dbg(dev, "%s: pdev=%p\n", __func__, pdev);

	rc = init_afu(cfg);
	if (unlikely(rc)) {
M
Matthew R. Ochs 已提交
3812
		dev_err(dev, "%s: EEH recovery failed rc=%d\n", __func__, rc);
3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830
		return PCI_ERS_RESULT_DISCONNECT;
	}

	return PCI_ERS_RESULT_RECOVERED;
}

/**
 * cxlflash_pci_resume() - called when normal operation can resume
 * @pdev:	PCI device struct
 */
static void cxlflash_pci_resume(struct pci_dev *pdev)
{
	struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
	struct device *dev = &cfg->dev->dev;

	dev_dbg(dev, "%s: pdev=%p\n", __func__, pdev);

	cfg->state = STATE_NORMAL;
3831
	wake_up_all(&cfg->reset_waitq);
3832 3833 3834
	scsi_unblock_requests(cfg->host);
}

3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891
/**
 * cxlflash_devnode() - provides devtmpfs for devices in the cxlflash class
 * @dev:	Character device.
 * @mode:	Mode that can be used to verify access.
 *
 * Return: Allocated string describing the devtmpfs structure.
 */
static char *cxlflash_devnode(struct device *dev, umode_t *mode)
{
	return kasprintf(GFP_KERNEL, "cxlflash/%s", dev_name(dev));
}

/**
 * cxlflash_class_init() - create character device class
 *
 * Return: 0 on success, -errno on failure
 */
static int cxlflash_class_init(void)
{
	dev_t devno;
	int rc = 0;

	rc = alloc_chrdev_region(&devno, 0, CXLFLASH_MAX_ADAPTERS, "cxlflash");
	if (unlikely(rc)) {
		pr_err("%s: alloc_chrdev_region failed rc=%d\n", __func__, rc);
		goto out;
	}

	cxlflash_major = MAJOR(devno);

	cxlflash_class = class_create(THIS_MODULE, "cxlflash");
	if (IS_ERR(cxlflash_class)) {
		rc = PTR_ERR(cxlflash_class);
		pr_err("%s: class_create failed rc=%d\n", __func__, rc);
		goto err;
	}

	cxlflash_class->devnode = cxlflash_devnode;
out:
	pr_debug("%s: returning rc=%d\n", __func__, rc);
	return rc;
err:
	unregister_chrdev_region(devno, CXLFLASH_MAX_ADAPTERS);
	goto out;
}

/**
 * cxlflash_class_exit() - destroy character device class
 */
static void cxlflash_class_exit(void)
{
	dev_t devno = MKDEV(cxlflash_major, 0);

	class_destroy(cxlflash_class);
	unregister_chrdev_region(devno, CXLFLASH_MAX_ADAPTERS);
}

3892 3893 3894 3895 3896 3897
static const struct pci_error_handlers cxlflash_err_handler = {
	.error_detected = cxlflash_pci_error_detected,
	.slot_reset = cxlflash_pci_slot_reset,
	.resume = cxlflash_pci_resume,
};

3898 3899 3900 3901 3902 3903 3904 3905
/*
 * PCI device structure
 */
static struct pci_driver cxlflash_driver = {
	.name = CXLFLASH_NAME,
	.id_table = cxlflash_pci_table,
	.probe = cxlflash_probe,
	.remove = cxlflash_remove,
3906
	.shutdown = cxlflash_remove,
3907
	.err_handler = &cxlflash_err_handler,
3908 3909 3910 3911 3912
};

/**
 * init_cxlflash() - module entry point
 *
3913
 * Return: 0 on success, -errno on failure
3914 3915 3916
 */
static int __init init_cxlflash(void)
{
3917 3918
	int rc;

3919
	check_sizes();
M
Matthew R. Ochs 已提交
3920
	cxlflash_list_init();
3921 3922 3923
	rc = cxlflash_class_init();
	if (unlikely(rc))
		goto out;
M
Matthew R. Ochs 已提交
3924

3925 3926 3927 3928 3929 3930 3931 3932 3933
	rc = pci_register_driver(&cxlflash_driver);
	if (unlikely(rc))
		goto err;
out:
	pr_debug("%s: returning rc=%d\n", __func__, rc);
	return rc;
err:
	cxlflash_class_exit();
	goto out;
3934 3935 3936 3937 3938 3939 3940
}

/**
 * exit_cxlflash() - module exit point
 */
static void __exit exit_cxlflash(void)
{
M
Matthew R. Ochs 已提交
3941 3942 3943
	cxlflash_term_global_luns();
	cxlflash_free_errpage();

3944
	pci_unregister_driver(&cxlflash_driver);
3945
	cxlflash_class_exit();
3946 3947 3948 3949
}

module_init(init_cxlflash);
module_exit(exit_cxlflash);