blob: c25efc31c3fc2567bf3c38c817bf6818c1bf9792 [file] [log] [blame]
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001/*
2 * CXL Flash Device Driver
3 *
4 * Written by: Manoj N. Kumar <manoj@linux.vnet.ibm.com>, IBM Corporation
5 * Matthew R. Ochs <mrochs@linux.vnet.ibm.com>, IBM Corporation
6 *
7 * Copyright (C) 2015 IBM Corporation
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14
15#include <linux/delay.h>
16#include <linux/list.h>
17#include <linux/module.h>
18#include <linux/pci.h>
19
20#include <asm/unaligned.h>
21
22#include <misc/cxl.h>
23
24#include <scsi/scsi_cmnd.h>
25#include <scsi/scsi_host.h>
Matthew R. Ochs65be2c72015-08-13 21:47:43 -050026#include <uapi/scsi/cxlflash_ioctl.h>
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -050027
28#include "main.h"
29#include "sislite.h"
30#include "common.h"
31
32MODULE_DESCRIPTION(CXLFLASH_ADAPTER_NAME);
33MODULE_AUTHOR("Manoj N. Kumar <manoj@linux.vnet.ibm.com>");
34MODULE_AUTHOR("Matthew R. Ochs <mrochs@linux.vnet.ibm.com>");
35MODULE_LICENSE("GPL");
36
37
38/**
Matthew R. Ochs15305512015-10-21 15:12:10 -050039 * cmd_checkout() - checks out an AFU command
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -050040 * @afu: AFU to checkout from.
41 *
42 * Commands are checked out in a round-robin fashion. Note that since
43 * the command pool is larger than the hardware queue, the majority of
44 * times we will only loop once or twice before getting a command. The
45 * buffer and CDB within the command are initialized (zeroed) prior to
46 * returning.
47 *
48 * Return: The checked out command or NULL when command pool is empty.
49 */
Matthew R. Ochs15305512015-10-21 15:12:10 -050050static struct afu_cmd *cmd_checkout(struct afu *afu)
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -050051{
52 int k, dec = CXLFLASH_NUM_CMDS;
53 struct afu_cmd *cmd;
54
55 while (dec--) {
56 k = (afu->cmd_couts++ & (CXLFLASH_NUM_CMDS - 1));
57
58 cmd = &afu->cmd[k];
59
60 if (!atomic_dec_if_positive(&cmd->free)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -050061 pr_devel("%s: returning found index=%d cmd=%p\n",
62 __func__, cmd->slot, cmd);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -050063 memset(cmd->buf, 0, CMD_BUFSIZE);
64 memset(cmd->rcb.cdb, 0, sizeof(cmd->rcb.cdb));
65 return cmd;
66 }
67 }
68
69 return NULL;
70}
71
72/**
Matthew R. Ochs15305512015-10-21 15:12:10 -050073 * cmd_checkin() - checks in an AFU command
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -050074 * @cmd: AFU command to checkin.
75 *
76 * Safe to pass commands that have already been checked in. Several
77 * internal tracking fields are reset as part of the checkin. Note
78 * that these are intentionally reset prior to toggling the free bit
79 * to avoid clobbering values in the event that the command is checked
80 * out right away.
81 */
Matthew R. Ochs15305512015-10-21 15:12:10 -050082static void cmd_checkin(struct afu_cmd *cmd)
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -050083{
84 cmd->rcb.scp = NULL;
85 cmd->rcb.timeout = 0;
86 cmd->sa.ioasc = 0;
87 cmd->cmd_tmf = false;
88 cmd->sa.host_use[0] = 0; /* clears both completion and retry bytes */
89
90 if (unlikely(atomic_inc_return(&cmd->free) != 1)) {
91 pr_err("%s: Freeing cmd (%d) that is not in use!\n",
92 __func__, cmd->slot);
93 return;
94 }
95
Matthew R. Ochs4392ba42015-10-21 15:13:11 -050096 pr_devel("%s: released cmd %p index=%d\n", __func__, cmd, cmd->slot);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -050097}
98
99/**
100 * process_cmd_err() - command error handler
101 * @cmd: AFU command that experienced the error.
102 * @scp: SCSI command associated with the AFU command in error.
103 *
104 * Translates error bits from AFU command to SCSI command results.
105 */
106static void process_cmd_err(struct afu_cmd *cmd, struct scsi_cmnd *scp)
107{
108 struct sisl_ioarcb *ioarcb;
109 struct sisl_ioasa *ioasa;
Matthew R. Ochs83960122015-10-21 15:13:29 -0500110 u32 resid;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500111
112 if (unlikely(!cmd))
113 return;
114
115 ioarcb = &(cmd->rcb);
116 ioasa = &(cmd->sa);
117
118 if (ioasa->rc.flags & SISL_RC_FLAGS_UNDERRUN) {
Matthew R. Ochs83960122015-10-21 15:13:29 -0500119 resid = ioasa->resid;
120 scsi_set_resid(scp, resid);
121 pr_debug("%s: cmd underrun cmd = %p scp = %p, resid = %d\n",
122 __func__, cmd, scp, resid);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500123 }
124
125 if (ioasa->rc.flags & SISL_RC_FLAGS_OVERRUN) {
126 pr_debug("%s: cmd underrun cmd = %p scp = %p\n",
127 __func__, cmd, scp);
128 scp->result = (DID_ERROR << 16);
129 }
130
131 pr_debug("%s: cmd failed afu_rc=%d scsi_rc=%d fc_rc=%d "
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500132 "afu_extra=0x%X, scsi_extra=0x%X, fc_extra=0x%X\n",
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500133 __func__, ioasa->rc.afu_rc, ioasa->rc.scsi_rc,
134 ioasa->rc.fc_rc, ioasa->afu_extra, ioasa->scsi_extra,
135 ioasa->fc_extra);
136
137 if (ioasa->rc.scsi_rc) {
138 /* We have a SCSI status */
139 if (ioasa->rc.flags & SISL_RC_FLAGS_SENSE_VALID) {
140 memcpy(scp->sense_buffer, ioasa->sense_data,
141 SISL_SENSE_DATA_LEN);
142 scp->result = ioasa->rc.scsi_rc;
143 } else
144 scp->result = ioasa->rc.scsi_rc | (DID_ERROR << 16);
145 }
146
147 /*
148 * We encountered an error. Set scp->result based on nature
149 * of error.
150 */
151 if (ioasa->rc.fc_rc) {
152 /* We have an FC status */
153 switch (ioasa->rc.fc_rc) {
154 case SISL_FC_RC_LINKDOWN:
155 scp->result = (DID_REQUEUE << 16);
156 break;
157 case SISL_FC_RC_RESID:
158 /* This indicates an FCP resid underrun */
159 if (!(ioasa->rc.flags & SISL_RC_FLAGS_OVERRUN)) {
160 /* If the SISL_RC_FLAGS_OVERRUN flag was set,
161 * then we will handle this error else where.
162 * If not then we must handle it here.
Matthew R. Ochs83960122015-10-21 15:13:29 -0500163 * This is probably an AFU bug.
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500164 */
165 scp->result = (DID_ERROR << 16);
166 }
167 break;
168 case SISL_FC_RC_RESIDERR:
169 /* Resid mismatch between adapter and device */
170 case SISL_FC_RC_TGTABORT:
171 case SISL_FC_RC_ABORTOK:
172 case SISL_FC_RC_ABORTFAIL:
173 case SISL_FC_RC_NOLOGI:
174 case SISL_FC_RC_ABORTPEND:
175 case SISL_FC_RC_WRABORTPEND:
176 case SISL_FC_RC_NOEXP:
177 case SISL_FC_RC_INUSE:
178 scp->result = (DID_ERROR << 16);
179 break;
180 }
181 }
182
183 if (ioasa->rc.afu_rc) {
184 /* We have an AFU error */
185 switch (ioasa->rc.afu_rc) {
186 case SISL_AFU_RC_NO_CHANNELS:
Matthew R. Ochs83960122015-10-21 15:13:29 -0500187 scp->result = (DID_NO_CONNECT << 16);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500188 break;
189 case SISL_AFU_RC_DATA_DMA_ERR:
190 switch (ioasa->afu_extra) {
191 case SISL_AFU_DMA_ERR_PAGE_IN:
192 /* Retry */
193 scp->result = (DID_IMM_RETRY << 16);
194 break;
195 case SISL_AFU_DMA_ERR_INVALID_EA:
196 default:
197 scp->result = (DID_ERROR << 16);
198 }
199 break;
200 case SISL_AFU_RC_OUT_OF_DATA_BUFS:
201 /* Retry */
202 scp->result = (DID_ALLOC_FAILURE << 16);
203 break;
204 default:
205 scp->result = (DID_ERROR << 16);
206 }
207 }
208}
209
210/**
211 * cmd_complete() - command completion handler
212 * @cmd: AFU command that has completed.
213 *
214 * Prepares and submits command that has either completed or timed out to
215 * the SCSI stack. Checks AFU command back into command pool for non-internal
216 * (rcb.scp populated) commands.
217 */
218static void cmd_complete(struct afu_cmd *cmd)
219{
220 struct scsi_cmnd *scp;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500221 ulong lock_flags;
222 struct afu *afu = cmd->parent;
223 struct cxlflash_cfg *cfg = afu->parent;
224 bool cmd_is_tmf;
225
226 spin_lock_irqsave(&cmd->slock, lock_flags);
227 cmd->sa.host_use_b[0] |= B_DONE;
228 spin_unlock_irqrestore(&cmd->slock, lock_flags);
229
230 if (cmd->rcb.scp) {
231 scp = cmd->rcb.scp;
Matthew R. Ochs83960122015-10-21 15:13:29 -0500232 if (unlikely(cmd->sa.ioasc))
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500233 process_cmd_err(cmd, scp);
234 else
235 scp->result = (DID_OK << 16);
236
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500237 cmd_is_tmf = cmd->cmd_tmf;
Matthew R. Ochs15305512015-10-21 15:12:10 -0500238 cmd_checkin(cmd); /* Don't use cmd after here */
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500239
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500240 pr_debug_ratelimited("%s: calling scsi_done scp=%p result=%X "
241 "ioasc=%d\n", __func__, scp, scp->result,
242 cmd->sa.ioasc);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500243
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500244 scsi_dma_unmap(scp);
245 scp->scsi_done(scp);
246
247 if (cmd_is_tmf) {
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500248 spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500249 cfg->tmf_active = false;
250 wake_up_all_locked(&cfg->tmf_waitq);
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500251 spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500252 }
253 } else
254 complete(&cmd->cevent);
255}
256
257/**
Matthew R. Ochs15305512015-10-21 15:12:10 -0500258 * context_reset() - timeout handler for AFU commands
259 * @cmd: AFU command that timed out.
260 *
261 * Sends a reset to the AFU.
262 */
263static void context_reset(struct afu_cmd *cmd)
264{
265 int nretry = 0;
266 u64 rrin = 0x1;
267 u64 room = 0;
268 struct afu *afu = cmd->parent;
269 ulong lock_flags;
270
271 pr_debug("%s: cmd=%p\n", __func__, cmd);
272
273 spin_lock_irqsave(&cmd->slock, lock_flags);
274
275 /* Already completed? */
276 if (cmd->sa.host_use_b[0] & B_DONE) {
277 spin_unlock_irqrestore(&cmd->slock, lock_flags);
278 return;
279 }
280
281 cmd->sa.host_use_b[0] |= (B_DONE | B_ERROR | B_TIMEOUT);
282 spin_unlock_irqrestore(&cmd->slock, lock_flags);
283
284 /*
285 * We really want to send this reset at all costs, so spread
286 * out wait time on successive retries for available room.
287 */
288 do {
289 room = readq_be(&afu->host_map->cmd_room);
290 atomic64_set(&afu->room, room);
291 if (room)
292 goto write_rrin;
293 udelay(nretry);
294 } while (nretry++ < MC_ROOM_RETRY_CNT);
295
296 pr_err("%s: no cmd_room to send reset\n", __func__);
297 return;
298
299write_rrin:
300 nretry = 0;
301 writeq_be(rrin, &afu->host_map->ioarrin);
302 do {
303 rrin = readq_be(&afu->host_map->ioarrin);
304 if (rrin != 0x1)
305 break;
306 /* Double delay each time */
307 udelay(2 ^ nretry);
308 } while (nretry++ < MC_ROOM_RETRY_CNT);
309}
310
311/**
312 * send_cmd() - sends an AFU command
313 * @afu: AFU associated with the host.
314 * @cmd: AFU command to send.
315 *
316 * Return:
317 * 0 on success or SCSI_MLQUEUE_HOST_BUSY
318 */
319static int send_cmd(struct afu *afu, struct afu_cmd *cmd)
320{
321 struct cxlflash_cfg *cfg = afu->parent;
322 struct device *dev = &cfg->dev->dev;
323 int nretry = 0;
324 int rc = 0;
325 u64 room;
326 long newval;
327
328 /*
329 * This routine is used by critical users such an AFU sync and to
330 * send a task management function (TMF). Thus we want to retry a
331 * bit before returning an error. To avoid the performance penalty
332 * of MMIO, we spread the update of 'room' over multiple commands.
333 */
334retry:
335 newval = atomic64_dec_if_positive(&afu->room);
336 if (!newval) {
337 do {
338 room = readq_be(&afu->host_map->cmd_room);
339 atomic64_set(&afu->room, room);
340 if (room)
341 goto write_ioarrin;
342 udelay(nretry);
343 } while (nretry++ < MC_ROOM_RETRY_CNT);
344
345 dev_err(dev, "%s: no cmd_room to send 0x%X\n",
346 __func__, cmd->rcb.cdb[0]);
347
348 goto no_room;
349 } else if (unlikely(newval < 0)) {
350 /* This should be rare. i.e. Only if two threads race and
351 * decrement before the MMIO read is done. In this case
352 * just benefit from the other thread having updated
353 * afu->room.
354 */
355 if (nretry++ < MC_ROOM_RETRY_CNT) {
356 udelay(nretry);
357 goto retry;
358 }
359
360 goto no_room;
361 }
362
363write_ioarrin:
364 writeq_be((u64)&cmd->rcb, &afu->host_map->ioarrin);
365out:
366 pr_devel("%s: cmd=%p len=%d ea=%p rc=%d\n", __func__, cmd,
367 cmd->rcb.data_len, (void *)cmd->rcb.data_ea, rc);
368 return rc;
369
370no_room:
371 afu->read_room = true;
372 schedule_work(&cfg->work_q);
373 rc = SCSI_MLQUEUE_HOST_BUSY;
374 goto out;
375}
376
377/**
378 * wait_resp() - polls for a response or timeout to a sent AFU command
379 * @afu: AFU associated with the host.
380 * @cmd: AFU command that was sent.
381 */
382static void wait_resp(struct afu *afu, struct afu_cmd *cmd)
383{
384 ulong timeout = msecs_to_jiffies(cmd->rcb.timeout * 2 * 1000);
385
386 timeout = wait_for_completion_timeout(&cmd->cevent, timeout);
387 if (!timeout)
388 context_reset(cmd);
389
390 if (unlikely(cmd->sa.ioasc != 0))
391 pr_err("%s: CMD 0x%X failed, IOASC: flags 0x%X, afu_rc 0x%X, "
392 "scsi_rc 0x%X, fc_rc 0x%X\n", __func__, cmd->rcb.cdb[0],
393 cmd->sa.rc.flags, cmd->sa.rc.afu_rc, cmd->sa.rc.scsi_rc,
394 cmd->sa.rc.fc_rc);
395}
396
397/**
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500398 * send_tmf() - sends a Task Management Function (TMF)
399 * @afu: AFU to checkout from.
400 * @scp: SCSI command from stack.
401 * @tmfcmd: TMF command to send.
402 *
403 * Return:
404 * 0 on success
405 * SCSI_MLQUEUE_HOST_BUSY when host is busy
406 */
407static int send_tmf(struct afu *afu, struct scsi_cmnd *scp, u64 tmfcmd)
408{
409 struct afu_cmd *cmd;
410
411 u32 port_sel = scp->device->channel + 1;
412 short lflag = 0;
413 struct Scsi_Host *host = scp->device->host;
414 struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)host->hostdata;
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500415 struct device *dev = &cfg->dev->dev;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500416 ulong lock_flags;
417 int rc = 0;
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500418 ulong to;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500419
Matthew R. Ochs15305512015-10-21 15:12:10 -0500420 cmd = cmd_checkout(afu);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500421 if (unlikely(!cmd)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500422 dev_err(dev, "%s: could not get a free command\n", __func__);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500423 rc = SCSI_MLQUEUE_HOST_BUSY;
424 goto out;
425 }
426
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500427 /* When Task Management Function is active do not send another */
428 spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500429 if (cfg->tmf_active)
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500430 wait_event_interruptible_lock_irq(cfg->tmf_waitq,
431 !cfg->tmf_active,
432 cfg->tmf_slock);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500433 cfg->tmf_active = true;
434 cmd->cmd_tmf = true;
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500435 spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500436
437 cmd->rcb.ctx_id = afu->ctx_hndl;
438 cmd->rcb.port_sel = port_sel;
439 cmd->rcb.lun_id = lun_to_lunid(scp->device->lun);
440
441 lflag = SISL_REQ_FLAGS_TMF_CMD;
442
443 cmd->rcb.req_flags = (SISL_REQ_FLAGS_PORT_LUN_ID |
444 SISL_REQ_FLAGS_SUP_UNDERRUN | lflag);
445
446 /* Stash the scp in the reserved field, for reuse during interrupt */
447 cmd->rcb.scp = scp;
448
449 /* Copy the CDB from the cmd passed in */
450 memcpy(cmd->rcb.cdb, &tmfcmd, sizeof(tmfcmd));
451
452 /* Send the command */
Matthew R. Ochs15305512015-10-21 15:12:10 -0500453 rc = send_cmd(afu, cmd);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500454 if (unlikely(rc)) {
Matthew R. Ochs15305512015-10-21 15:12:10 -0500455 cmd_checkin(cmd);
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500456 spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500457 cfg->tmf_active = false;
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500458 spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500459 goto out;
460 }
461
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500462 spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
463 to = msecs_to_jiffies(5000);
464 to = wait_event_interruptible_lock_irq_timeout(cfg->tmf_waitq,
465 !cfg->tmf_active,
466 cfg->tmf_slock,
467 to);
468 if (!to) {
469 cfg->tmf_active = false;
470 dev_err(dev, "%s: TMF timed out!\n", __func__);
471 rc = -1;
472 }
473 spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500474out:
475 return rc;
476}
477
478/**
479 * cxlflash_driver_info() - information handler for this host driver
480 * @host: SCSI host associated with device.
481 *
482 * Return: A string describing the device.
483 */
484static const char *cxlflash_driver_info(struct Scsi_Host *host)
485{
486 return CXLFLASH_ADAPTER_NAME;
487}
488
489/**
490 * cxlflash_queuecommand() - sends a mid-layer request
491 * @host: SCSI host associated with device.
492 * @scp: SCSI command to send.
493 *
494 * Return:
495 * 0 on success
496 * SCSI_MLQUEUE_HOST_BUSY when host is busy
497 */
498static int cxlflash_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scp)
499{
500 struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)host->hostdata;
501 struct afu *afu = cfg->afu;
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500502 struct device *dev = &cfg->dev->dev;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500503 struct afu_cmd *cmd;
504 u32 port_sel = scp->device->channel + 1;
505 int nseg, i, ncount;
506 struct scatterlist *sg;
507 ulong lock_flags;
508 short lflag = 0;
509 int rc = 0;
510
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500511 dev_dbg_ratelimited(dev, "%s: (scp=%p) %d/%d/%d/%llu "
512 "cdb=(%08X-%08X-%08X-%08X)\n",
513 __func__, scp, host->host_no, scp->device->channel,
514 scp->device->id, scp->device->lun,
515 get_unaligned_be32(&((u32 *)scp->cmnd)[0]),
516 get_unaligned_be32(&((u32 *)scp->cmnd)[1]),
517 get_unaligned_be32(&((u32 *)scp->cmnd)[2]),
518 get_unaligned_be32(&((u32 *)scp->cmnd)[3]));
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500519
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500520 /*
521 * If a Task Management Function is active, wait for it to complete
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500522 * before continuing with regular commands.
523 */
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500524 spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500525 if (cfg->tmf_active) {
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500526 spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500527 rc = SCSI_MLQUEUE_HOST_BUSY;
528 goto out;
529 }
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500530 spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500531
Matthew R. Ochs5cdac812015-08-13 21:47:34 -0500532 switch (cfg->state) {
Matthew R. Ochs439e85c2015-10-21 15:12:00 -0500533 case STATE_RESET:
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500534 dev_dbg_ratelimited(dev, "%s: device is in reset!\n", __func__);
Matthew R. Ochs5cdac812015-08-13 21:47:34 -0500535 rc = SCSI_MLQUEUE_HOST_BUSY;
536 goto out;
537 case STATE_FAILTERM:
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500538 dev_dbg_ratelimited(dev, "%s: device has failed!\n", __func__);
Matthew R. Ochs5cdac812015-08-13 21:47:34 -0500539 scp->result = (DID_NO_CONNECT << 16);
540 scp->scsi_done(scp);
541 rc = 0;
542 goto out;
543 default:
544 break;
545 }
546
Matthew R. Ochs15305512015-10-21 15:12:10 -0500547 cmd = cmd_checkout(afu);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500548 if (unlikely(!cmd)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500549 dev_err(dev, "%s: could not get a free command\n", __func__);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500550 rc = SCSI_MLQUEUE_HOST_BUSY;
551 goto out;
552 }
553
554 cmd->rcb.ctx_id = afu->ctx_hndl;
555 cmd->rcb.port_sel = port_sel;
556 cmd->rcb.lun_id = lun_to_lunid(scp->device->lun);
557
558 if (scp->sc_data_direction == DMA_TO_DEVICE)
559 lflag = SISL_REQ_FLAGS_HOST_WRITE;
560 else
561 lflag = SISL_REQ_FLAGS_HOST_READ;
562
563 cmd->rcb.req_flags = (SISL_REQ_FLAGS_PORT_LUN_ID |
564 SISL_REQ_FLAGS_SUP_UNDERRUN | lflag);
565
566 /* Stash the scp in the reserved field, for reuse during interrupt */
567 cmd->rcb.scp = scp;
568
569 nseg = scsi_dma_map(scp);
570 if (unlikely(nseg < 0)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500571 dev_err(dev, "%s: Fail DMA map! nseg=%d\n",
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500572 __func__, nseg);
573 rc = SCSI_MLQUEUE_HOST_BUSY;
574 goto out;
575 }
576
577 ncount = scsi_sg_count(scp);
578 scsi_for_each_sg(scp, sg, ncount, i) {
579 cmd->rcb.data_len = sg_dma_len(sg);
580 cmd->rcb.data_ea = sg_dma_address(sg);
581 }
582
583 /* Copy the CDB from the scsi_cmnd passed in */
584 memcpy(cmd->rcb.cdb, scp->cmnd, sizeof(cmd->rcb.cdb));
585
586 /* Send the command */
Matthew R. Ochs15305512015-10-21 15:12:10 -0500587 rc = send_cmd(afu, cmd);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500588 if (unlikely(rc)) {
Matthew R. Ochs15305512015-10-21 15:12:10 -0500589 cmd_checkin(cmd);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500590 scsi_dma_unmap(scp);
591 }
592
593out:
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500594 pr_devel("%s: returning rc=%d\n", __func__, rc);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500595 return rc;
596}
597
598/**
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500599 * cxlflash_wait_for_pci_err_recovery() - wait for error recovery during probe
600 * @cxlflash: Internal structure associated with the host.
601 */
602static void cxlflash_wait_for_pci_err_recovery(struct cxlflash_cfg *cfg)
603{
604 struct pci_dev *pdev = cfg->dev;
605
606 if (pci_channel_offline(pdev))
Matthew R. Ochs439e85c2015-10-21 15:12:00 -0500607 wait_event_timeout(cfg->reset_waitq,
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500608 !pci_channel_offline(pdev),
609 CXLFLASH_PCI_ERROR_RECOVERY_TIMEOUT);
610}
611
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500612/**
613 * free_mem() - free memory associated with the AFU
614 * @cxlflash: Internal structure associated with the host.
615 */
616static void free_mem(struct cxlflash_cfg *cfg)
617{
618 int i;
619 char *buf = NULL;
620 struct afu *afu = cfg->afu;
621
622 if (cfg->afu) {
623 for (i = 0; i < CXLFLASH_NUM_CMDS; i++) {
624 buf = afu->cmd[i].buf;
625 if (!((u64)buf & (PAGE_SIZE - 1)))
626 free_page((ulong)buf);
627 }
628
629 free_pages((ulong)afu, get_order(sizeof(struct afu)));
630 cfg->afu = NULL;
631 }
632}
633
634/**
635 * stop_afu() - stops the AFU command timers and unmaps the MMIO space
636 * @cxlflash: Internal structure associated with the host.
637 *
638 * Safe to call with AFU in a partially allocated/initialized state.
639 */
640static void stop_afu(struct cxlflash_cfg *cfg)
641{
642 int i;
643 struct afu *afu = cfg->afu;
644
645 if (likely(afu)) {
646 for (i = 0; i < CXLFLASH_NUM_CMDS; i++)
647 complete(&afu->cmd[i].cevent);
648
649 if (likely(afu->afu_map)) {
650 cxl_psa_unmap((void *)afu->afu_map);
651 afu->afu_map = NULL;
652 }
653 }
654}
655
656/**
657 * term_mc() - terminates the master context
658 * @cxlflash: Internal structure associated with the host.
659 * @level: Depth of allocation, where to begin waterfall tear down.
660 *
661 * Safe to call with AFU/MC in partially allocated/initialized state.
662 */
663static void term_mc(struct cxlflash_cfg *cfg, enum undo_level level)
664{
665 int rc = 0;
666 struct afu *afu = cfg->afu;
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500667 struct device *dev = &cfg->dev->dev;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500668
669 if (!afu || !cfg->mcctx) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500670 dev_err(dev, "%s: returning from term_mc with NULL afu or MC\n",
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500671 __func__);
672 return;
673 }
674
675 switch (level) {
676 case UNDO_START:
677 rc = cxl_stop_context(cfg->mcctx);
678 BUG_ON(rc);
679 case UNMAP_THREE:
680 cxl_unmap_afu_irq(cfg->mcctx, 3, afu);
681 case UNMAP_TWO:
682 cxl_unmap_afu_irq(cfg->mcctx, 2, afu);
683 case UNMAP_ONE:
684 cxl_unmap_afu_irq(cfg->mcctx, 1, afu);
685 case FREE_IRQ:
686 cxl_free_afu_irqs(cfg->mcctx);
687 case RELEASE_CONTEXT:
688 cfg->mcctx = NULL;
689 }
690}
691
692/**
693 * term_afu() - terminates the AFU
694 * @cxlflash: Internal structure associated with the host.
695 *
696 * Safe to call with AFU/MC in partially allocated/initialized state.
697 */
698static void term_afu(struct cxlflash_cfg *cfg)
699{
700 term_mc(cfg, UNDO_START);
701
702 if (cfg->afu)
703 stop_afu(cfg);
704
705 pr_debug("%s: returning\n", __func__);
706}
707
708/**
709 * cxlflash_remove() - PCI entry point to tear down host
710 * @pdev: PCI device associated with the host.
711 *
712 * Safe to use as a cleanup in partially allocated/initialized state.
713 */
714static void cxlflash_remove(struct pci_dev *pdev)
715{
716 struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
717 ulong lock_flags;
718
719 /* If a Task Management Function is active, wait for it to complete
720 * before continuing with remove.
721 */
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500722 spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500723 if (cfg->tmf_active)
Matthew R. Ochs018d1dc952015-10-21 15:13:21 -0500724 wait_event_interruptible_lock_irq(cfg->tmf_waitq,
725 !cfg->tmf_active,
726 cfg->tmf_slock);
727 spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500728
Matthew R. Ochs5cdac812015-08-13 21:47:34 -0500729 cfg->state = STATE_FAILTERM;
Matthew R. Ochs65be2c72015-08-13 21:47:43 -0500730 cxlflash_stop_term_user_contexts(cfg);
Matthew R. Ochs5cdac812015-08-13 21:47:34 -0500731
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500732 switch (cfg->init_state) {
733 case INIT_STATE_SCSI:
Matthew R. Ochs65be2c72015-08-13 21:47:43 -0500734 cxlflash_term_local_luns(cfg);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500735 scsi_remove_host(cfg->host);
736 scsi_host_put(cfg->host);
737 /* Fall through */
738 case INIT_STATE_AFU:
739 term_afu(cfg);
740 case INIT_STATE_PCI:
741 pci_release_regions(cfg->dev);
742 pci_disable_device(pdev);
743 case INIT_STATE_NONE:
744 flush_work(&cfg->work_q);
745 free_mem(cfg);
746 break;
747 }
748
749 pr_debug("%s: returning\n", __func__);
750}
751
752/**
753 * alloc_mem() - allocates the AFU and its command pool
754 * @cxlflash: Internal structure associated with the host.
755 *
756 * A partially allocated state remains on failure.
757 *
758 * Return:
759 * 0 on success
760 * -ENOMEM on failure to allocate memory
761 */
762static int alloc_mem(struct cxlflash_cfg *cfg)
763{
764 int rc = 0;
765 int i;
766 char *buf = NULL;
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500767 struct device *dev = &cfg->dev->dev;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500768
769 /* This allocation is about 12K, i.e. only 1 64k page
770 * and upto 4 4k pages
771 */
772 cfg->afu = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO,
773 get_order(sizeof(struct afu)));
774 if (unlikely(!cfg->afu)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500775 dev_err(dev, "%s: cannot get %d free pages\n",
776 __func__, get_order(sizeof(struct afu)));
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500777 rc = -ENOMEM;
778 goto out;
779 }
780 cfg->afu->parent = cfg;
781 cfg->afu->afu_map = NULL;
782
783 for (i = 0; i < CXLFLASH_NUM_CMDS; buf += CMD_BUFSIZE, i++) {
784 if (!((u64)buf & (PAGE_SIZE - 1))) {
785 buf = (void *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
786 if (unlikely(!buf)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -0500787 dev_err(dev,
788 "%s: Allocate command buffers fail!\n",
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -0500789 __func__);
790 rc = -ENOMEM;
791 free_mem(cfg);
792 goto out;
793 }
794 }
795
796 cfg->afu->cmd[i].buf = buf;
797 atomic_set(&cfg->afu->cmd[i].free, 1);
798 cfg->afu->cmd[i].slot = i;
799 }
800
801out:
802 return rc;
803}
804
805/**
806 * init_pci() - initializes the host as a PCI device
807 * @cxlflash: Internal structure associated with the host.
808 *
809 * Return:
810 * 0 on success
811 * -EIO on unable to communicate with device
812 * A return code from the PCI sub-routines
813 */
814static int init_pci(struct cxlflash_cfg *cfg)
815{
816 struct pci_dev *pdev = cfg->dev;
817 int rc = 0;
818
819 cfg->cxlflash_regs_pci = pci_resource_start(pdev, 0);
820 rc = pci_request_regions(pdev, CXLFLASH_NAME);
821 if (rc < 0) {
822 dev_err(&pdev->dev,
823 "%s: Couldn't register memory range of registers\n",
824 __func__);
825 goto out;
826 }
827
828 rc = pci_enable_device(pdev);
829 if (rc || pci_channel_offline(pdev)) {
830 if (pci_channel_offline(pdev)) {
831 cxlflash_wait_for_pci_err_recovery(cfg);
832 rc = pci_enable_device(pdev);
833 }
834
835 if (rc) {
836 dev_err(&pdev->dev, "%s: Cannot enable adapter\n",
837 __func__);
838 cxlflash_wait_for_pci_err_recovery(cfg);
839 goto out_release_regions;
840 }
841 }
842
843 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
844 if (rc < 0) {
845 dev_dbg(&pdev->dev, "%s: Failed to set 64 bit PCI DMA mask\n",
846 __func__);
847 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
848 }
849
850 if (rc < 0) {
851 dev_err(&pdev->dev, "%s: Failed to set PCI DMA mask\n",
852 __func__);
853 goto out_disable;
854 }
855
856 pci_set_master(pdev);
857
858 if (pci_channel_offline(pdev)) {
859 cxlflash_wait_for_pci_err_recovery(cfg);
860 if (pci_channel_offline(pdev)) {
861 rc = -EIO;
862 goto out_msi_disable;
863 }
864 }
865
866 rc = pci_save_state(pdev);
867
868 if (rc != PCIBIOS_SUCCESSFUL) {
869 dev_err(&pdev->dev, "%s: Failed to save PCI config space\n",
870 __func__);
871 rc = -EIO;
872 goto cleanup_nolog;
873 }
874
875out:
876 pr_debug("%s: returning rc=%d\n", __func__, rc);
877 return rc;
878
879cleanup_nolog:
880out_msi_disable:
881 cxlflash_wait_for_pci_err_recovery(cfg);
882out_disable:
883 pci_disable_device(pdev);
884out_release_regions:
885 pci_release_regions(pdev);
886 goto out;
887
888}
889
890/**
891 * init_scsi() - adds the host to the SCSI stack and kicks off host scan
892 * @cxlflash: Internal structure associated with the host.
893 *
894 * Return:
895 * 0 on success
896 * A return code from adding the host
897 */
898static int init_scsi(struct cxlflash_cfg *cfg)
899{
900 struct pci_dev *pdev = cfg->dev;
901 int rc = 0;
902
903 rc = scsi_add_host(cfg->host, &pdev->dev);
904 if (rc) {
905 dev_err(&pdev->dev, "%s: scsi_add_host failed (rc=%d)\n",
906 __func__, rc);
907 goto out;
908 }
909
910 scsi_scan_host(cfg->host);
911
912out:
913 pr_debug("%s: returning rc=%d\n", __func__, rc);
914 return rc;
915}
916
917/**
918 * set_port_online() - transitions the specified host FC port to online state
919 * @fc_regs: Top of MMIO region defined for specified port.
920 *
921 * The provided MMIO region must be mapped prior to call. Online state means
922 * that the FC link layer has synced, completed the handshaking process, and
923 * is ready for login to start.
924 */
925static void set_port_online(u64 *fc_regs)
926{
927 u64 cmdcfg;
928
929 cmdcfg = readq_be(&fc_regs[FC_MTIP_CMDCONFIG / 8]);
930 cmdcfg &= (~FC_MTIP_CMDCONFIG_OFFLINE); /* clear OFF_LINE */
931 cmdcfg |= (FC_MTIP_CMDCONFIG_ONLINE); /* set ON_LINE */
932 writeq_be(cmdcfg, &fc_regs[FC_MTIP_CMDCONFIG / 8]);
933}
934
935/**
936 * set_port_offline() - transitions the specified host FC port to offline state
937 * @fc_regs: Top of MMIO region defined for specified port.
938 *
939 * The provided MMIO region must be mapped prior to call.
940 */
941static void set_port_offline(u64 *fc_regs)
942{
943 u64 cmdcfg;
944
945 cmdcfg = readq_be(&fc_regs[FC_MTIP_CMDCONFIG / 8]);
946 cmdcfg &= (~FC_MTIP_CMDCONFIG_ONLINE); /* clear ON_LINE */
947 cmdcfg |= (FC_MTIP_CMDCONFIG_OFFLINE); /* set OFF_LINE */
948 writeq_be(cmdcfg, &fc_regs[FC_MTIP_CMDCONFIG / 8]);
949}
950
951/**
952 * wait_port_online() - waits for the specified host FC port come online
953 * @fc_regs: Top of MMIO region defined for specified port.
954 * @delay_us: Number of microseconds to delay between reading port status.
955 * @nretry: Number of cycles to retry reading port status.
956 *
957 * The provided MMIO region must be mapped prior to call. This will timeout
958 * when the cable is not plugged in.
959 *
960 * Return:
961 * TRUE (1) when the specified port is online
962 * FALSE (0) when the specified port fails to come online after timeout
963 * -EINVAL when @delay_us is less than 1000
964 */
965static int wait_port_online(u64 *fc_regs, u32 delay_us, u32 nretry)
966{
967 u64 status;
968
969 if (delay_us < 1000) {
970 pr_err("%s: invalid delay specified %d\n", __func__, delay_us);
971 return -EINVAL;
972 }
973
974 do {
975 msleep(delay_us / 1000);
976 status = readq_be(&fc_regs[FC_MTIP_STATUS / 8]);
977 } while ((status & FC_MTIP_STATUS_MASK) != FC_MTIP_STATUS_ONLINE &&
978 nretry--);
979
980 return ((status & FC_MTIP_STATUS_MASK) == FC_MTIP_STATUS_ONLINE);
981}
982
983/**
984 * wait_port_offline() - waits for the specified host FC port go offline
985 * @fc_regs: Top of MMIO region defined for specified port.
986 * @delay_us: Number of microseconds to delay between reading port status.
987 * @nretry: Number of cycles to retry reading port status.
988 *
989 * The provided MMIO region must be mapped prior to call.
990 *
991 * Return:
992 * TRUE (1) when the specified port is offline
993 * FALSE (0) when the specified port fails to go offline after timeout
994 * -EINVAL when @delay_us is less than 1000
995 */
996static int wait_port_offline(u64 *fc_regs, u32 delay_us, u32 nretry)
997{
998 u64 status;
999
1000 if (delay_us < 1000) {
1001 pr_err("%s: invalid delay specified %d\n", __func__, delay_us);
1002 return -EINVAL;
1003 }
1004
1005 do {
1006 msleep(delay_us / 1000);
1007 status = readq_be(&fc_regs[FC_MTIP_STATUS / 8]);
1008 } while ((status & FC_MTIP_STATUS_MASK) != FC_MTIP_STATUS_OFFLINE &&
1009 nretry--);
1010
1011 return ((status & FC_MTIP_STATUS_MASK) == FC_MTIP_STATUS_OFFLINE);
1012}
1013
1014/**
1015 * afu_set_wwpn() - configures the WWPN for the specified host FC port
1016 * @afu: AFU associated with the host that owns the specified FC port.
1017 * @port: Port number being configured.
1018 * @fc_regs: Top of MMIO region defined for specified port.
1019 * @wwpn: The world-wide-port-number previously discovered for port.
1020 *
1021 * The provided MMIO region must be mapped prior to call. As part of the
1022 * sequence to configure the WWPN, the port is toggled offline and then back
1023 * online. This toggling action can cause this routine to delay up to a few
1024 * seconds. When configured to use the internal LUN feature of the AFU, a
1025 * failure to come online is overridden.
1026 *
1027 * Return:
1028 * 0 when the WWPN is successfully written and the port comes back online
1029 * -1 when the port fails to go offline or come back up online
1030 */
1031static int afu_set_wwpn(struct afu *afu, int port, u64 *fc_regs, u64 wwpn)
1032{
Matthew R. Ochs964497b2015-10-21 15:13:54 -05001033 int rc = 0;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001034
1035 set_port_offline(fc_regs);
1036
1037 if (!wait_port_offline(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
1038 FC_PORT_STATUS_RETRY_CNT)) {
1039 pr_debug("%s: wait on port %d to go offline timed out\n",
1040 __func__, port);
Matthew R. Ochs964497b2015-10-21 15:13:54 -05001041 rc = -1; /* but continue on to leave the port back online */
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001042 }
1043
Matthew R. Ochs964497b2015-10-21 15:13:54 -05001044 if (rc == 0)
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001045 writeq_be(wwpn, &fc_regs[FC_PNAME / 8]);
1046
Matthew R. Ochs964497b2015-10-21 15:13:54 -05001047 /* Always return success after programming WWPN */
1048 rc = 0;
1049
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001050 set_port_online(fc_regs);
1051
1052 if (!wait_port_online(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
1053 FC_PORT_STATUS_RETRY_CNT)) {
Matthew R. Ochs964497b2015-10-21 15:13:54 -05001054 pr_err("%s: wait on port %d to go online timed out\n",
1055 __func__, port);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001056 }
1057
Matthew R. Ochs964497b2015-10-21 15:13:54 -05001058 pr_debug("%s: returning rc=%d\n", __func__, rc);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001059
Matthew R. Ochs964497b2015-10-21 15:13:54 -05001060 return rc;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001061}
1062
1063/**
1064 * afu_link_reset() - resets the specified host FC port
1065 * @afu: AFU associated with the host that owns the specified FC port.
1066 * @port: Port number being configured.
1067 * @fc_regs: Top of MMIO region defined for specified port.
1068 *
1069 * The provided MMIO region must be mapped prior to call. The sequence to
1070 * reset the port involves toggling it offline and then back online. This
1071 * action can cause this routine to delay up to a few seconds. An effort
1072 * is made to maintain link with the device by switching to host to use
1073 * the alternate port exclusively while the reset takes place.
1074 * failure to come online is overridden.
1075 */
1076static void afu_link_reset(struct afu *afu, int port, u64 *fc_regs)
1077{
1078 u64 port_sel;
1079
1080 /* first switch the AFU to the other links, if any */
1081 port_sel = readq_be(&afu->afu_map->global.regs.afu_port_sel);
Dan Carpenter4da74db2015-08-18 11:57:43 +03001082 port_sel &= ~(1ULL << port);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001083 writeq_be(port_sel, &afu->afu_map->global.regs.afu_port_sel);
1084 cxlflash_afu_sync(afu, 0, 0, AFU_GSYNC);
1085
1086 set_port_offline(fc_regs);
1087 if (!wait_port_offline(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
1088 FC_PORT_STATUS_RETRY_CNT))
1089 pr_err("%s: wait on port %d to go offline timed out\n",
1090 __func__, port);
1091
1092 set_port_online(fc_regs);
1093 if (!wait_port_online(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
1094 FC_PORT_STATUS_RETRY_CNT))
1095 pr_err("%s: wait on port %d to go online timed out\n",
1096 __func__, port);
1097
1098 /* switch back to include this port */
Dan Carpenter4da74db2015-08-18 11:57:43 +03001099 port_sel |= (1ULL << port);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001100 writeq_be(port_sel, &afu->afu_map->global.regs.afu_port_sel);
1101 cxlflash_afu_sync(afu, 0, 0, AFU_GSYNC);
1102
1103 pr_debug("%s: returning port_sel=%lld\n", __func__, port_sel);
1104}
1105
1106/*
1107 * Asynchronous interrupt information table
1108 */
1109static const struct asyc_intr_info ainfo[] = {
1110 {SISL_ASTATUS_FC0_OTHER, "other error", 0, CLR_FC_ERROR | LINK_RESET},
1111 {SISL_ASTATUS_FC0_LOGO, "target initiated LOGO", 0, 0},
1112 {SISL_ASTATUS_FC0_CRC_T, "CRC threshold exceeded", 0, LINK_RESET},
1113 {SISL_ASTATUS_FC0_LOGI_R, "login timed out, retrying", 0, 0},
1114 {SISL_ASTATUS_FC0_LOGI_F, "login failed", 0, CLR_FC_ERROR},
Matthew R. Ochsef510742015-10-21 15:13:37 -05001115 {SISL_ASTATUS_FC0_LOGI_S, "login succeeded", 0, SCAN_HOST},
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001116 {SISL_ASTATUS_FC0_LINK_DN, "link down", 0, 0},
Matthew R. Ochsef510742015-10-21 15:13:37 -05001117 {SISL_ASTATUS_FC0_LINK_UP, "link up", 0, SCAN_HOST},
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001118 {SISL_ASTATUS_FC1_OTHER, "other error", 1, CLR_FC_ERROR | LINK_RESET},
1119 {SISL_ASTATUS_FC1_LOGO, "target initiated LOGO", 1, 0},
1120 {SISL_ASTATUS_FC1_CRC_T, "CRC threshold exceeded", 1, LINK_RESET},
1121 {SISL_ASTATUS_FC1_LOGI_R, "login timed out, retrying", 1, 0},
1122 {SISL_ASTATUS_FC1_LOGI_F, "login failed", 1, CLR_FC_ERROR},
Matthew R. Ochsef510742015-10-21 15:13:37 -05001123 {SISL_ASTATUS_FC1_LOGI_S, "login succeeded", 1, SCAN_HOST},
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001124 {SISL_ASTATUS_FC1_LINK_DN, "link down", 1, 0},
Matthew R. Ochsef510742015-10-21 15:13:37 -05001125 {SISL_ASTATUS_FC1_LINK_UP, "link up", 1, SCAN_HOST},
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001126 {0x0, "", 0, 0} /* terminator */
1127};
1128
1129/**
1130 * find_ainfo() - locates and returns asynchronous interrupt information
1131 * @status: Status code set by AFU on error.
1132 *
1133 * Return: The located information or NULL when the status code is invalid.
1134 */
1135static const struct asyc_intr_info *find_ainfo(u64 status)
1136{
1137 const struct asyc_intr_info *info;
1138
1139 for (info = &ainfo[0]; info->status; info++)
1140 if (info->status == status)
1141 return info;
1142
1143 return NULL;
1144}
1145
1146/**
1147 * afu_err_intr_init() - clears and initializes the AFU for error interrupts
1148 * @afu: AFU associated with the host.
1149 */
1150static void afu_err_intr_init(struct afu *afu)
1151{
1152 int i;
1153 u64 reg;
1154
1155 /* global async interrupts: AFU clears afu_ctrl on context exit
1156 * if async interrupts were sent to that context. This prevents
1157 * the AFU form sending further async interrupts when
1158 * there is
1159 * nobody to receive them.
1160 */
1161
1162 /* mask all */
1163 writeq_be(-1ULL, &afu->afu_map->global.regs.aintr_mask);
1164 /* set LISN# to send and point to master context */
1165 reg = ((u64) (((afu->ctx_hndl << 8) | SISL_MSI_ASYNC_ERROR)) << 40);
1166
1167 if (afu->internal_lun)
1168 reg |= 1; /* Bit 63 indicates local lun */
1169 writeq_be(reg, &afu->afu_map->global.regs.afu_ctrl);
1170 /* clear all */
1171 writeq_be(-1ULL, &afu->afu_map->global.regs.aintr_clear);
1172 /* unmask bits that are of interest */
1173 /* note: afu can send an interrupt after this step */
1174 writeq_be(SISL_ASTATUS_MASK, &afu->afu_map->global.regs.aintr_mask);
1175 /* clear again in case a bit came on after previous clear but before */
1176 /* unmask */
1177 writeq_be(-1ULL, &afu->afu_map->global.regs.aintr_clear);
1178
1179 /* Clear/Set internal lun bits */
1180 reg = readq_be(&afu->afu_map->global.fc_regs[0][FC_CONFIG2 / 8]);
1181 reg &= SISL_FC_INTERNAL_MASK;
1182 if (afu->internal_lun)
1183 reg |= ((u64)(afu->internal_lun - 1) << SISL_FC_INTERNAL_SHIFT);
1184 writeq_be(reg, &afu->afu_map->global.fc_regs[0][FC_CONFIG2 / 8]);
1185
1186 /* now clear FC errors */
1187 for (i = 0; i < NUM_FC_PORTS; i++) {
1188 writeq_be(0xFFFFFFFFU,
1189 &afu->afu_map->global.fc_regs[i][FC_ERROR / 8]);
1190 writeq_be(0, &afu->afu_map->global.fc_regs[i][FC_ERRCAP / 8]);
1191 }
1192
1193 /* sync interrupts for master's IOARRIN write */
1194 /* note that unlike asyncs, there can be no pending sync interrupts */
1195 /* at this time (this is a fresh context and master has not written */
1196 /* IOARRIN yet), so there is nothing to clear. */
1197
1198 /* set LISN#, it is always sent to the context that wrote IOARRIN */
1199 writeq_be(SISL_MSI_SYNC_ERROR, &afu->host_map->ctx_ctrl);
1200 writeq_be(SISL_ISTATUS_MASK, &afu->host_map->intr_mask);
1201}
1202
1203/**
1204 * cxlflash_sync_err_irq() - interrupt handler for synchronous errors
1205 * @irq: Interrupt number.
1206 * @data: Private data provided at interrupt registration, the AFU.
1207 *
1208 * Return: Always return IRQ_HANDLED.
1209 */
1210static irqreturn_t cxlflash_sync_err_irq(int irq, void *data)
1211{
1212 struct afu *afu = (struct afu *)data;
1213 u64 reg;
1214 u64 reg_unmasked;
1215
1216 reg = readq_be(&afu->host_map->intr_status);
1217 reg_unmasked = (reg & SISL_ISTATUS_UNMASK);
1218
1219 if (reg_unmasked == 0UL) {
1220 pr_err("%s: %llX: spurious interrupt, intr_status %016llX\n",
1221 __func__, (u64)afu, reg);
1222 goto cxlflash_sync_err_irq_exit;
1223 }
1224
1225 pr_err("%s: %llX: unexpected interrupt, intr_status %016llX\n",
1226 __func__, (u64)afu, reg);
1227
1228 writeq_be(reg_unmasked, &afu->host_map->intr_clear);
1229
1230cxlflash_sync_err_irq_exit:
1231 pr_debug("%s: returning rc=%d\n", __func__, IRQ_HANDLED);
1232 return IRQ_HANDLED;
1233}
1234
1235/**
1236 * cxlflash_rrq_irq() - interrupt handler for read-response queue (normal path)
1237 * @irq: Interrupt number.
1238 * @data: Private data provided at interrupt registration, the AFU.
1239 *
1240 * Return: Always return IRQ_HANDLED.
1241 */
1242static irqreturn_t cxlflash_rrq_irq(int irq, void *data)
1243{
1244 struct afu *afu = (struct afu *)data;
1245 struct afu_cmd *cmd;
1246 bool toggle = afu->toggle;
1247 u64 entry,
1248 *hrrq_start = afu->hrrq_start,
1249 *hrrq_end = afu->hrrq_end,
1250 *hrrq_curr = afu->hrrq_curr;
1251
1252 /* Process however many RRQ entries that are ready */
1253 while (true) {
1254 entry = *hrrq_curr;
1255
1256 if ((entry & SISL_RESP_HANDLE_T_BIT) != toggle)
1257 break;
1258
1259 cmd = (struct afu_cmd *)(entry & ~SISL_RESP_HANDLE_T_BIT);
1260 cmd_complete(cmd);
1261
1262 /* Advance to next entry or wrap and flip the toggle bit */
1263 if (hrrq_curr < hrrq_end)
1264 hrrq_curr++;
1265 else {
1266 hrrq_curr = hrrq_start;
1267 toggle ^= SISL_RESP_HANDLE_T_BIT;
1268 }
1269 }
1270
1271 afu->hrrq_curr = hrrq_curr;
1272 afu->toggle = toggle;
1273
1274 return IRQ_HANDLED;
1275}
1276
1277/**
1278 * cxlflash_async_err_irq() - interrupt handler for asynchronous errors
1279 * @irq: Interrupt number.
1280 * @data: Private data provided at interrupt registration, the AFU.
1281 *
1282 * Return: Always return IRQ_HANDLED.
1283 */
1284static irqreturn_t cxlflash_async_err_irq(int irq, void *data)
1285{
1286 struct afu *afu = (struct afu *)data;
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001287 struct cxlflash_cfg *cfg = afu->parent;
1288 struct device *dev = &cfg->dev->dev;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001289 u64 reg_unmasked;
1290 const struct asyc_intr_info *info;
1291 struct sisl_global_map *global = &afu->afu_map->global;
1292 u64 reg;
1293 u8 port;
1294 int i;
1295
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001296 reg = readq_be(&global->regs.aintr_status);
1297 reg_unmasked = (reg & SISL_ASTATUS_UNMASK);
1298
1299 if (reg_unmasked == 0) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001300 dev_err(dev, "%s: spurious interrupt, aintr_status 0x%016llX\n",
1301 __func__, reg);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001302 goto out;
1303 }
1304
1305 /* it is OK to clear AFU status before FC_ERROR */
1306 writeq_be(reg_unmasked, &global->regs.aintr_clear);
1307
1308 /* check each bit that is on */
1309 for (i = 0; reg_unmasked; i++, reg_unmasked = (reg_unmasked >> 1)) {
1310 info = find_ainfo(1ULL << i);
Matthew R. Ochs16798d32015-10-21 15:13:45 -05001311 if (((reg_unmasked & 0x1) == 0) || !info)
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001312 continue;
1313
1314 port = info->port;
1315
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001316 dev_err(dev, "%s: FC Port %d -> %s, fc_status 0x%08llX\n",
1317 __func__, port, info->desc,
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001318 readq_be(&global->fc_regs[port][FC_STATUS / 8]));
1319
1320 /*
1321 * do link reset first, some OTHER errors will set FC_ERROR
1322 * again if cleared before or w/o a reset
1323 */
1324 if (info->action & LINK_RESET) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001325 dev_err(dev, "%s: FC Port %d: resetting link\n",
1326 __func__, port);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001327 cfg->lr_state = LINK_RESET_REQUIRED;
1328 cfg->lr_port = port;
1329 schedule_work(&cfg->work_q);
1330 }
1331
1332 if (info->action & CLR_FC_ERROR) {
1333 reg = readq_be(&global->fc_regs[port][FC_ERROR / 8]);
1334
1335 /*
1336 * since all errors are unmasked, FC_ERROR and FC_ERRCAP
1337 * should be the same and tracing one is sufficient.
1338 */
1339
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001340 dev_err(dev, "%s: fc %d: clearing fc_error 0x%08llX\n",
1341 __func__, port, reg);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001342
1343 writeq_be(reg, &global->fc_regs[port][FC_ERROR / 8]);
1344 writeq_be(0, &global->fc_regs[port][FC_ERRCAP / 8]);
1345 }
Matthew R. Ochsef510742015-10-21 15:13:37 -05001346
1347 if (info->action & SCAN_HOST) {
1348 atomic_inc(&cfg->scan_host_needed);
1349 schedule_work(&cfg->work_q);
1350 }
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001351 }
1352
1353out:
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001354 dev_dbg(dev, "%s: returning IRQ_HANDLED, afu=%p\n", __func__, afu);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001355 return IRQ_HANDLED;
1356}
1357
1358/**
1359 * start_context() - starts the master context
1360 * @cxlflash: Internal structure associated with the host.
1361 *
1362 * Return: A success or failure value from CXL services.
1363 */
1364static int start_context(struct cxlflash_cfg *cfg)
1365{
1366 int rc = 0;
1367
1368 rc = cxl_start_context(cfg->mcctx,
1369 cfg->afu->work.work_element_descriptor,
1370 NULL);
1371
1372 pr_debug("%s: returning rc=%d\n", __func__, rc);
1373 return rc;
1374}
1375
1376/**
1377 * read_vpd() - obtains the WWPNs from VPD
1378 * @cxlflash: Internal structure associated with the host.
1379 * @wwpn: Array of size NUM_FC_PORTS to pass back WWPNs
1380 *
1381 * Return:
1382 * 0 on success
1383 * -ENODEV when VPD or WWPN keywords not found
1384 */
1385static int read_vpd(struct cxlflash_cfg *cfg, u64 wwpn[])
1386{
1387 struct pci_dev *dev = cfg->parent_dev;
1388 int rc = 0;
1389 int ro_start, ro_size, i, j, k;
1390 ssize_t vpd_size;
1391 char vpd_data[CXLFLASH_VPD_LEN];
1392 char tmp_buf[WWPN_BUF_LEN] = { 0 };
1393 char *wwpn_vpd_tags[NUM_FC_PORTS] = { "V5", "V6" };
1394
1395 /* Get the VPD data from the device */
1396 vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
1397 if (unlikely(vpd_size <= 0)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001398 dev_err(&dev->dev, "%s: Unable to read VPD (size = %ld)\n",
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001399 __func__, vpd_size);
1400 rc = -ENODEV;
1401 goto out;
1402 }
1403
1404 /* Get the read only section offset */
1405 ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size,
1406 PCI_VPD_LRDT_RO_DATA);
1407 if (unlikely(ro_start < 0)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001408 dev_err(&dev->dev, "%s: VPD Read-only data not found\n",
1409 __func__);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001410 rc = -ENODEV;
1411 goto out;
1412 }
1413
1414 /* Get the read only section size, cap when extends beyond read VPD */
1415 ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
1416 j = ro_size;
1417 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
1418 if (unlikely((i + j) > vpd_size)) {
1419 pr_debug("%s: Might need to read more VPD (%d > %ld)\n",
1420 __func__, (i + j), vpd_size);
1421 ro_size = vpd_size - i;
1422 }
1423
1424 /*
1425 * Find the offset of the WWPN tag within the read only
1426 * VPD data and validate the found field (partials are
1427 * no good to us). Convert the ASCII data to an integer
1428 * value. Note that we must copy to a temporary buffer
1429 * because the conversion service requires that the ASCII
1430 * string be terminated.
1431 */
1432 for (k = 0; k < NUM_FC_PORTS; k++) {
1433 j = ro_size;
1434 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
1435
1436 i = pci_vpd_find_info_keyword(vpd_data, i, j, wwpn_vpd_tags[k]);
1437 if (unlikely(i < 0)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001438 dev_err(&dev->dev, "%s: Port %d WWPN not found "
1439 "in VPD\n", __func__, k);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001440 rc = -ENODEV;
1441 goto out;
1442 }
1443
1444 j = pci_vpd_info_field_size(&vpd_data[i]);
1445 i += PCI_VPD_INFO_FLD_HDR_SIZE;
1446 if (unlikely((i + j > vpd_size) || (j != WWPN_LEN))) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001447 dev_err(&dev->dev, "%s: Port %d WWPN incomplete or "
1448 "VPD corrupt\n",
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001449 __func__, k);
1450 rc = -ENODEV;
1451 goto out;
1452 }
1453
1454 memcpy(tmp_buf, &vpd_data[i], WWPN_LEN);
1455 rc = kstrtoul(tmp_buf, WWPN_LEN, (ulong *)&wwpn[k]);
1456 if (unlikely(rc)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001457 dev_err(&dev->dev, "%s: Fail to convert port %d WWPN "
1458 "to integer\n", __func__, k);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001459 rc = -ENODEV;
1460 goto out;
1461 }
1462 }
1463
1464out:
1465 pr_debug("%s: returning rc=%d\n", __func__, rc);
1466 return rc;
1467}
1468
1469/**
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001470 * init_pcr() - initialize the provisioning and control registers
1471 * @cxlflash: Internal structure associated with the host.
1472 *
1473 * Also sets up fast access to the mapped registers and initializes AFU
1474 * command fields that never change.
1475 */
Matthew R. Ochs15305512015-10-21 15:12:10 -05001476static void init_pcr(struct cxlflash_cfg *cfg)
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001477{
1478 struct afu *afu = cfg->afu;
1479 struct sisl_ctrl_map *ctrl_map;
1480 int i;
1481
1482 for (i = 0; i < MAX_CONTEXT; i++) {
1483 ctrl_map = &afu->afu_map->ctrls[i].ctrl;
1484 /* disrupt any clients that could be running */
1485 /* e. g. clients that survived a master restart */
1486 writeq_be(0, &ctrl_map->rht_start);
1487 writeq_be(0, &ctrl_map->rht_cnt_id);
1488 writeq_be(0, &ctrl_map->ctx_cap);
1489 }
1490
1491 /* copy frequently used fields into afu */
1492 afu->ctx_hndl = (u16) cxl_process_element(cfg->mcctx);
1493 /* ctx_hndl is 16 bits in CAIA */
1494 afu->host_map = &afu->afu_map->hosts[afu->ctx_hndl].host;
1495 afu->ctrl_map = &afu->afu_map->ctrls[afu->ctx_hndl].ctrl;
1496
1497 /* Program the Endian Control for the master context */
1498 writeq_be(SISL_ENDIAN_CTRL, &afu->host_map->endian_ctrl);
1499
1500 /* initialize cmd fields that never change */
1501 for (i = 0; i < CXLFLASH_NUM_CMDS; i++) {
1502 afu->cmd[i].rcb.ctx_id = afu->ctx_hndl;
1503 afu->cmd[i].rcb.msi = SISL_MSI_RRQ_UPDATED;
1504 afu->cmd[i].rcb.rrq = 0x0;
1505 }
1506}
1507
1508/**
1509 * init_global() - initialize AFU global registers
1510 * @cxlflash: Internal structure associated with the host.
1511 */
Matthew R. Ochs15305512015-10-21 15:12:10 -05001512static int init_global(struct cxlflash_cfg *cfg)
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001513{
1514 struct afu *afu = cfg->afu;
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001515 struct device *dev = &cfg->dev->dev;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001516 u64 wwpn[NUM_FC_PORTS]; /* wwpn of AFU ports */
1517 int i = 0, num_ports = 0;
1518 int rc = 0;
1519 u64 reg;
1520
1521 rc = read_vpd(cfg, &wwpn[0]);
1522 if (rc) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001523 dev_err(dev, "%s: could not read vpd rc=%d\n", __func__, rc);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001524 goto out;
1525 }
1526
1527 pr_debug("%s: wwpn0=0x%llX wwpn1=0x%llX\n", __func__, wwpn[0], wwpn[1]);
1528
1529 /* set up RRQ in AFU for master issued cmds */
1530 writeq_be((u64) afu->hrrq_start, &afu->host_map->rrq_start);
1531 writeq_be((u64) afu->hrrq_end, &afu->host_map->rrq_end);
1532
1533 /* AFU configuration */
1534 reg = readq_be(&afu->afu_map->global.regs.afu_config);
1535 reg |= SISL_AFUCONF_AR_ALL|SISL_AFUCONF_ENDIAN;
1536 /* enable all auto retry options and control endianness */
1537 /* leave others at default: */
1538 /* CTX_CAP write protected, mbox_r does not clear on read and */
1539 /* checker on if dual afu */
1540 writeq_be(reg, &afu->afu_map->global.regs.afu_config);
1541
1542 /* global port select: select either port */
1543 if (afu->internal_lun) {
1544 /* only use port 0 */
1545 writeq_be(PORT0, &afu->afu_map->global.regs.afu_port_sel);
1546 num_ports = NUM_FC_PORTS - 1;
1547 } else {
1548 writeq_be(BOTH_PORTS, &afu->afu_map->global.regs.afu_port_sel);
1549 num_ports = NUM_FC_PORTS;
1550 }
1551
1552 for (i = 0; i < num_ports; i++) {
1553 /* unmask all errors (but they are still masked at AFU) */
1554 writeq_be(0, &afu->afu_map->global.fc_regs[i][FC_ERRMSK / 8]);
1555 /* clear CRC error cnt & set a threshold */
1556 (void)readq_be(&afu->afu_map->global.
1557 fc_regs[i][FC_CNT_CRCERR / 8]);
1558 writeq_be(MC_CRC_THRESH, &afu->afu_map->global.fc_regs[i]
1559 [FC_CRC_THRESH / 8]);
1560
1561 /* set WWPNs. If already programmed, wwpn[i] is 0 */
1562 if (wwpn[i] != 0 &&
1563 afu_set_wwpn(afu, i,
1564 &afu->afu_map->global.fc_regs[i][0],
1565 wwpn[i])) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001566 dev_err(dev, "%s: failed to set WWPN on port %d\n",
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001567 __func__, i);
1568 rc = -EIO;
1569 goto out;
1570 }
1571 /* Programming WWPN back to back causes additional
1572 * offline/online transitions and a PLOGI
1573 */
1574 msleep(100);
1575
1576 }
1577
1578 /* set up master's own CTX_CAP to allow real mode, host translation */
1579 /* tbls, afu cmds and read/write GSCSI cmds. */
1580 /* First, unlock ctx_cap write by reading mbox */
1581 (void)readq_be(&afu->ctrl_map->mbox_r); /* unlock ctx_cap */
1582 writeq_be((SISL_CTX_CAP_REAL_MODE | SISL_CTX_CAP_HOST_XLATE |
1583 SISL_CTX_CAP_READ_CMD | SISL_CTX_CAP_WRITE_CMD |
1584 SISL_CTX_CAP_AFU_CMD | SISL_CTX_CAP_GSCSI_CMD),
1585 &afu->ctrl_map->ctx_cap);
1586 /* init heartbeat */
1587 afu->hb = readq_be(&afu->afu_map->global.regs.afu_hb);
1588
1589out:
1590 return rc;
1591}
1592
1593/**
1594 * start_afu() - initializes and starts the AFU
1595 * @cxlflash: Internal structure associated with the host.
1596 */
1597static int start_afu(struct cxlflash_cfg *cfg)
1598{
1599 struct afu *afu = cfg->afu;
1600 struct afu_cmd *cmd;
1601
1602 int i = 0;
1603 int rc = 0;
1604
1605 for (i = 0; i < CXLFLASH_NUM_CMDS; i++) {
1606 cmd = &afu->cmd[i];
1607
1608 init_completion(&cmd->cevent);
1609 spin_lock_init(&cmd->slock);
1610 cmd->parent = afu;
1611 }
1612
1613 init_pcr(cfg);
1614
1615 /* initialize RRQ pointers */
1616 afu->hrrq_start = &afu->rrq_entry[0];
1617 afu->hrrq_end = &afu->rrq_entry[NUM_RRQ_ENTRY - 1];
1618 afu->hrrq_curr = afu->hrrq_start;
1619 afu->toggle = 1;
1620
1621 rc = init_global(cfg);
1622
1623 pr_debug("%s: returning rc=%d\n", __func__, rc);
1624 return rc;
1625}
1626
1627/**
1628 * init_mc() - create and register as the master context
1629 * @cxlflash: Internal structure associated with the host.
1630 *
1631 * Return:
1632 * 0 on success
1633 * -ENOMEM when unable to obtain a context from CXL services
1634 * A failure value from CXL services.
1635 */
1636static int init_mc(struct cxlflash_cfg *cfg)
1637{
1638 struct cxl_context *ctx;
1639 struct device *dev = &cfg->dev->dev;
1640 struct afu *afu = cfg->afu;
1641 int rc = 0;
1642 enum undo_level level;
1643
1644 ctx = cxl_get_context(cfg->dev);
1645 if (unlikely(!ctx))
1646 return -ENOMEM;
1647 cfg->mcctx = ctx;
1648
1649 /* Set it up as a master with the CXL */
1650 cxl_set_master(ctx);
1651
1652 /* During initialization reset the AFU to start from a clean slate */
1653 rc = cxl_afu_reset(cfg->mcctx);
1654 if (unlikely(rc)) {
1655 dev_err(dev, "%s: initial AFU reset failed rc=%d\n",
1656 __func__, rc);
1657 level = RELEASE_CONTEXT;
1658 goto out;
1659 }
1660
1661 rc = cxl_allocate_afu_irqs(ctx, 3);
1662 if (unlikely(rc)) {
1663 dev_err(dev, "%s: call to allocate_afu_irqs failed rc=%d!\n",
1664 __func__, rc);
1665 level = RELEASE_CONTEXT;
1666 goto out;
1667 }
1668
1669 rc = cxl_map_afu_irq(ctx, 1, cxlflash_sync_err_irq, afu,
1670 "SISL_MSI_SYNC_ERROR");
1671 if (unlikely(rc <= 0)) {
1672 dev_err(dev, "%s: IRQ 1 (SISL_MSI_SYNC_ERROR) map failed!\n",
1673 __func__);
1674 level = FREE_IRQ;
1675 goto out;
1676 }
1677
1678 rc = cxl_map_afu_irq(ctx, 2, cxlflash_rrq_irq, afu,
1679 "SISL_MSI_RRQ_UPDATED");
1680 if (unlikely(rc <= 0)) {
1681 dev_err(dev, "%s: IRQ 2 (SISL_MSI_RRQ_UPDATED) map failed!\n",
1682 __func__);
1683 level = UNMAP_ONE;
1684 goto out;
1685 }
1686
1687 rc = cxl_map_afu_irq(ctx, 3, cxlflash_async_err_irq, afu,
1688 "SISL_MSI_ASYNC_ERROR");
1689 if (unlikely(rc <= 0)) {
1690 dev_err(dev, "%s: IRQ 3 (SISL_MSI_ASYNC_ERROR) map failed!\n",
1691 __func__);
1692 level = UNMAP_TWO;
1693 goto out;
1694 }
1695
1696 rc = 0;
1697
1698 /* This performs the equivalent of the CXL_IOCTL_START_WORK.
1699 * The CXL_IOCTL_GET_PROCESS_ELEMENT is implicit in the process
1700 * element (pe) that is embedded in the context (ctx)
1701 */
1702 rc = start_context(cfg);
1703 if (unlikely(rc)) {
1704 dev_err(dev, "%s: start context failed rc=%d\n", __func__, rc);
1705 level = UNMAP_THREE;
1706 goto out;
1707 }
1708ret:
1709 pr_debug("%s: returning rc=%d\n", __func__, rc);
1710 return rc;
1711out:
1712 term_mc(cfg, level);
1713 goto ret;
1714}
1715
1716/**
1717 * init_afu() - setup as master context and start AFU
1718 * @cxlflash: Internal structure associated with the host.
1719 *
1720 * This routine is a higher level of control for configuring the
1721 * AFU on probe and reset paths.
1722 *
1723 * Return:
1724 * 0 on success
1725 * -ENOMEM when unable to map the AFU MMIO space
1726 * A failure value from internal services.
1727 */
1728static int init_afu(struct cxlflash_cfg *cfg)
1729{
1730 u64 reg;
1731 int rc = 0;
1732 struct afu *afu = cfg->afu;
1733 struct device *dev = &cfg->dev->dev;
1734
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05001735 cxl_perst_reloads_same_image(cfg->cxl_afu, true);
1736
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001737 rc = init_mc(cfg);
1738 if (rc) {
1739 dev_err(dev, "%s: call to init_mc failed, rc=%d!\n",
1740 __func__, rc);
1741 goto err1;
1742 }
1743
1744 /* Map the entire MMIO space of the AFU.
1745 */
1746 afu->afu_map = cxl_psa_map(cfg->mcctx);
1747 if (!afu->afu_map) {
1748 rc = -ENOMEM;
1749 term_mc(cfg, UNDO_START);
1750 dev_err(dev, "%s: call to cxl_psa_map failed!\n", __func__);
1751 goto err1;
1752 }
1753
1754 /* don't byte reverse on reading afu_version, else the string form */
1755 /* will be backwards */
1756 reg = afu->afu_map->global.regs.afu_version;
1757 memcpy(afu->version, &reg, 8);
1758 afu->interface_version =
1759 readq_be(&afu->afu_map->global.regs.interface_version);
1760 pr_debug("%s: afu version %s, interface version 0x%llX\n",
1761 __func__, afu->version, afu->interface_version);
1762
1763 rc = start_afu(cfg);
1764 if (rc) {
1765 dev_err(dev, "%s: call to start_afu failed, rc=%d!\n",
1766 __func__, rc);
1767 term_mc(cfg, UNDO_START);
1768 cxl_psa_unmap((void *)afu->afu_map);
1769 afu->afu_map = NULL;
1770 goto err1;
1771 }
1772
1773 afu_err_intr_init(cfg->afu);
1774 atomic64_set(&afu->room, readq_be(&afu->host_map->cmd_room));
1775
Matthew R. Ochs2cb79262015-08-13 21:47:53 -05001776 /* Restore the LUN mappings */
1777 cxlflash_restore_luntable(cfg);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001778err1:
1779 pr_debug("%s: returning rc=%d\n", __func__, rc);
1780 return rc;
1781}
1782
1783/**
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001784 * cxlflash_afu_sync() - builds and sends an AFU sync command
1785 * @afu: AFU associated with the host.
1786 * @ctx_hndl_u: Identifies context requesting sync.
1787 * @res_hndl_u: Identifies resource requesting sync.
1788 * @mode: Type of sync to issue (lightweight, heavyweight, global).
1789 *
1790 * The AFU can only take 1 sync command at a time. This routine enforces this
1791 * limitation by using a mutex to provide exlusive access to the AFU during
1792 * the sync. This design point requires calling threads to not be on interrupt
1793 * context due to the possibility of sleeping during concurrent sync operations.
1794 *
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05001795 * AFU sync operations are only necessary and allowed when the device is
1796 * operating normally. When not operating normally, sync requests can occur as
1797 * part of cleaning up resources associated with an adapter prior to removal.
1798 * In this scenario, these requests are simply ignored (safe due to the AFU
1799 * going away).
1800 *
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001801 * Return:
1802 * 0 on success
1803 * -1 on failure
1804 */
1805int cxlflash_afu_sync(struct afu *afu, ctx_hndl_t ctx_hndl_u,
1806 res_hndl_t res_hndl_u, u8 mode)
1807{
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05001808 struct cxlflash_cfg *cfg = afu->parent;
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001809 struct device *dev = &cfg->dev->dev;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001810 struct afu_cmd *cmd = NULL;
1811 int rc = 0;
1812 int retry_cnt = 0;
1813 static DEFINE_MUTEX(sync_active);
1814
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05001815 if (cfg->state != STATE_NORMAL) {
1816 pr_debug("%s: Sync not required! (%u)\n", __func__, cfg->state);
1817 return 0;
1818 }
1819
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001820 mutex_lock(&sync_active);
1821retry:
Matthew R. Ochs15305512015-10-21 15:12:10 -05001822 cmd = cmd_checkout(afu);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001823 if (unlikely(!cmd)) {
1824 retry_cnt++;
1825 udelay(1000 * retry_cnt);
1826 if (retry_cnt < MC_RETRY_CNT)
1827 goto retry;
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05001828 dev_err(dev, "%s: could not get a free command\n", __func__);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001829 rc = -1;
1830 goto out;
1831 }
1832
1833 pr_debug("%s: afu=%p cmd=%p %d\n", __func__, afu, cmd, ctx_hndl_u);
1834
1835 memset(cmd->rcb.cdb, 0, sizeof(cmd->rcb.cdb));
1836
1837 cmd->rcb.req_flags = SISL_REQ_FLAGS_AFU_CMD;
1838 cmd->rcb.port_sel = 0x0; /* NA */
1839 cmd->rcb.lun_id = 0x0; /* NA */
1840 cmd->rcb.data_len = 0x0;
1841 cmd->rcb.data_ea = 0x0;
1842 cmd->rcb.timeout = MC_AFU_SYNC_TIMEOUT;
1843
1844 cmd->rcb.cdb[0] = 0xC0; /* AFU Sync */
1845 cmd->rcb.cdb[1] = mode;
1846
1847 /* The cdb is aligned, no unaligned accessors required */
1848 *((u16 *)&cmd->rcb.cdb[2]) = swab16(ctx_hndl_u);
1849 *((u32 *)&cmd->rcb.cdb[4]) = swab32(res_hndl_u);
1850
Matthew R. Ochs15305512015-10-21 15:12:10 -05001851 rc = send_cmd(afu, cmd);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001852 if (unlikely(rc))
1853 goto out;
1854
Matthew R. Ochs15305512015-10-21 15:12:10 -05001855 wait_resp(afu, cmd);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001856
1857 /* set on timeout */
1858 if (unlikely((cmd->sa.ioasc != 0) ||
1859 (cmd->sa.host_use_b[0] & B_ERROR)))
1860 rc = -1;
1861out:
1862 mutex_unlock(&sync_active);
1863 if (cmd)
Matthew R. Ochs15305512015-10-21 15:12:10 -05001864 cmd_checkin(cmd);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001865 pr_debug("%s: returning rc=%d\n", __func__, rc);
1866 return rc;
1867}
1868
1869/**
Matthew R. Ochs15305512015-10-21 15:12:10 -05001870 * afu_reset() - resets the AFU
1871 * @cfg: Internal structure associated with the host.
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001872 *
1873 * Return:
1874 * 0 on success
1875 * A failure value from internal services.
1876 */
Matthew R. Ochs15305512015-10-21 15:12:10 -05001877static int afu_reset(struct cxlflash_cfg *cfg)
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05001878{
1879 int rc = 0;
1880 /* Stop the context before the reset. Since the context is
1881 * no longer available restart it after the reset is complete
1882 */
1883
1884 term_afu(cfg);
1885
1886 rc = init_afu(cfg);
1887
1888 pr_debug("%s: returning rc=%d\n", __func__, rc);
1889 return rc;
1890}
1891
1892/**
Matthew R. Ochs15305512015-10-21 15:12:10 -05001893 * cxlflash_eh_device_reset_handler() - reset a single LUN
1894 * @scp: SCSI command to send.
1895 *
1896 * Return:
1897 * SUCCESS as defined in scsi/scsi.h
1898 * FAILED as defined in scsi/scsi.h
1899 */
1900static int cxlflash_eh_device_reset_handler(struct scsi_cmnd *scp)
1901{
1902 int rc = SUCCESS;
1903 struct Scsi_Host *host = scp->device->host;
1904 struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)host->hostdata;
1905 struct afu *afu = cfg->afu;
1906 int rcr = 0;
1907
1908 pr_debug("%s: (scp=%p) %d/%d/%d/%llu "
1909 "cdb=(%08X-%08X-%08X-%08X)\n", __func__, scp,
1910 host->host_no, scp->device->channel,
1911 scp->device->id, scp->device->lun,
1912 get_unaligned_be32(&((u32 *)scp->cmnd)[0]),
1913 get_unaligned_be32(&((u32 *)scp->cmnd)[1]),
1914 get_unaligned_be32(&((u32 *)scp->cmnd)[2]),
1915 get_unaligned_be32(&((u32 *)scp->cmnd)[3]));
1916
1917 switch (cfg->state) {
1918 case STATE_NORMAL:
1919 rcr = send_tmf(afu, scp, TMF_LUN_RESET);
1920 if (unlikely(rcr))
1921 rc = FAILED;
1922 break;
1923 case STATE_RESET:
1924 wait_event(cfg->reset_waitq, cfg->state != STATE_RESET);
1925 if (cfg->state == STATE_NORMAL)
1926 break;
1927 /* fall through */
1928 default:
1929 rc = FAILED;
1930 break;
1931 }
1932
1933 pr_debug("%s: returning rc=%d\n", __func__, rc);
1934 return rc;
1935}
1936
1937/**
1938 * cxlflash_eh_host_reset_handler() - reset the host adapter
1939 * @scp: SCSI command from stack identifying host.
1940 *
1941 * Return:
1942 * SUCCESS as defined in scsi/scsi.h
1943 * FAILED as defined in scsi/scsi.h
1944 */
1945static int cxlflash_eh_host_reset_handler(struct scsi_cmnd *scp)
1946{
1947 int rc = SUCCESS;
1948 int rcr = 0;
1949 struct Scsi_Host *host = scp->device->host;
1950 struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)host->hostdata;
1951
1952 pr_debug("%s: (scp=%p) %d/%d/%d/%llu "
1953 "cdb=(%08X-%08X-%08X-%08X)\n", __func__, scp,
1954 host->host_no, scp->device->channel,
1955 scp->device->id, scp->device->lun,
1956 get_unaligned_be32(&((u32 *)scp->cmnd)[0]),
1957 get_unaligned_be32(&((u32 *)scp->cmnd)[1]),
1958 get_unaligned_be32(&((u32 *)scp->cmnd)[2]),
1959 get_unaligned_be32(&((u32 *)scp->cmnd)[3]));
1960
1961 switch (cfg->state) {
1962 case STATE_NORMAL:
1963 cfg->state = STATE_RESET;
1964 scsi_block_requests(cfg->host);
1965 cxlflash_mark_contexts_error(cfg);
1966 rcr = afu_reset(cfg);
1967 if (rcr) {
1968 rc = FAILED;
1969 cfg->state = STATE_FAILTERM;
1970 } else
1971 cfg->state = STATE_NORMAL;
1972 wake_up_all(&cfg->reset_waitq);
1973 scsi_unblock_requests(cfg->host);
1974 break;
1975 case STATE_RESET:
1976 wait_event(cfg->reset_waitq, cfg->state != STATE_RESET);
1977 if (cfg->state == STATE_NORMAL)
1978 break;
1979 /* fall through */
1980 default:
1981 rc = FAILED;
1982 break;
1983 }
1984
1985 pr_debug("%s: returning rc=%d\n", __func__, rc);
1986 return rc;
1987}
1988
1989/**
1990 * cxlflash_change_queue_depth() - change the queue depth for the device
1991 * @sdev: SCSI device destined for queue depth change.
1992 * @qdepth: Requested queue depth value to set.
1993 *
1994 * The requested queue depth is capped to the maximum supported value.
1995 *
1996 * Return: The actual queue depth set.
1997 */
1998static int cxlflash_change_queue_depth(struct scsi_device *sdev, int qdepth)
1999{
2000
2001 if (qdepth > CXLFLASH_MAX_CMDS_PER_LUN)
2002 qdepth = CXLFLASH_MAX_CMDS_PER_LUN;
2003
2004 scsi_change_queue_depth(sdev, qdepth);
2005 return sdev->queue_depth;
2006}
2007
2008/**
2009 * cxlflash_show_port_status() - queries and presents the current port status
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002010 * @port: Desired port for status reporting.
2011 * @afu: AFU owning the specified port.
Matthew R. Ochs15305512015-10-21 15:12:10 -05002012 * @buf: Buffer of length PAGE_SIZE to report back port status in ASCII.
2013 *
2014 * Return: The size of the ASCII string returned in @buf.
2015 */
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002016static ssize_t cxlflash_show_port_status(u32 port, struct afu *afu, char *buf)
Matthew R. Ochs15305512015-10-21 15:12:10 -05002017{
Matthew R. Ochs15305512015-10-21 15:12:10 -05002018 char *disp_status;
Matthew R. Ochs15305512015-10-21 15:12:10 -05002019 u64 status;
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002020 __be64 __iomem *fc_regs;
Matthew R. Ochs15305512015-10-21 15:12:10 -05002021
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002022 if (port >= NUM_FC_PORTS)
Matthew R. Ochs15305512015-10-21 15:12:10 -05002023 return 0;
2024
2025 fc_regs = &afu->afu_map->global.fc_regs[port][0];
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002026 status = readq_be(&fc_regs[FC_MTIP_STATUS / 8]);
2027 status &= FC_MTIP_STATUS_MASK;
Matthew R. Ochs15305512015-10-21 15:12:10 -05002028
2029 if (status == FC_MTIP_STATUS_ONLINE)
2030 disp_status = "online";
2031 else if (status == FC_MTIP_STATUS_OFFLINE)
2032 disp_status = "offline";
2033 else
2034 disp_status = "unknown";
2035
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002036 return scnprintf(buf, PAGE_SIZE, "%s\n", disp_status);
Matthew R. Ochs15305512015-10-21 15:12:10 -05002037}
2038
2039/**
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002040 * port0_show() - queries and presents the current status of port 0
2041 * @dev: Generic device associated with the host owning the port.
2042 * @attr: Device attribute representing the port.
2043 * @buf: Buffer of length PAGE_SIZE to report back port status in ASCII.
Matthew R. Ochs15305512015-10-21 15:12:10 -05002044 *
2045 * Return: The size of the ASCII string returned in @buf.
2046 */
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002047static ssize_t port0_show(struct device *dev,
2048 struct device_attribute *attr,
2049 char *buf)
Matthew R. Ochs15305512015-10-21 15:12:10 -05002050{
2051 struct Scsi_Host *shost = class_to_shost(dev);
2052 struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2053 struct afu *afu = cfg->afu;
2054
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002055 return cxlflash_show_port_status(0, afu, buf);
Matthew R. Ochs15305512015-10-21 15:12:10 -05002056}
2057
2058/**
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002059 * port1_show() - queries and presents the current status of port 1
2060 * @dev: Generic device associated with the host owning the port.
2061 * @attr: Device attribute representing the port.
2062 * @buf: Buffer of length PAGE_SIZE to report back port status in ASCII.
2063 *
2064 * Return: The size of the ASCII string returned in @buf.
2065 */
2066static ssize_t port1_show(struct device *dev,
2067 struct device_attribute *attr,
2068 char *buf)
2069{
2070 struct Scsi_Host *shost = class_to_shost(dev);
2071 struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2072 struct afu *afu = cfg->afu;
2073
2074 return cxlflash_show_port_status(1, afu, buf);
2075}
2076
2077/**
2078 * lun_mode_show() - presents the current LUN mode of the host
Matthew R. Ochs15305512015-10-21 15:12:10 -05002079 * @dev: Generic device associated with the host.
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002080 * @attr: Device attribute representing the LUN mode.
2081 * @buf: Buffer of length PAGE_SIZE to report back the LUN mode in ASCII.
2082 *
2083 * Return: The size of the ASCII string returned in @buf.
2084 */
2085static ssize_t lun_mode_show(struct device *dev,
2086 struct device_attribute *attr, char *buf)
2087{
2088 struct Scsi_Host *shost = class_to_shost(dev);
2089 struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2090 struct afu *afu = cfg->afu;
2091
2092 return scnprintf(buf, PAGE_SIZE, "%u\n", afu->internal_lun);
2093}
2094
2095/**
2096 * lun_mode_store() - sets the LUN mode of the host
2097 * @dev: Generic device associated with the host.
2098 * @attr: Device attribute representing the LUN mode.
Matthew R. Ochs15305512015-10-21 15:12:10 -05002099 * @buf: Buffer of length PAGE_SIZE containing the LUN mode in ASCII.
2100 * @count: Length of data resizing in @buf.
2101 *
2102 * The CXL Flash AFU supports a dummy LUN mode where the external
2103 * links and storage are not required. Space on the FPGA is used
2104 * to create 1 or 2 small LUNs which are presented to the system
2105 * as if they were a normal storage device. This feature is useful
2106 * during development and also provides manufacturing with a way
2107 * to test the AFU without an actual device.
2108 *
2109 * 0 = external LUN[s] (default)
2110 * 1 = internal LUN (1 x 64K, 512B blocks, id 0)
2111 * 2 = internal LUN (1 x 64K, 4K blocks, id 0)
2112 * 3 = internal LUN (2 x 32K, 512B blocks, ids 0,1)
2113 * 4 = internal LUN (2 x 32K, 4K blocks, ids 0,1)
2114 *
2115 * Return: The size of the ASCII string returned in @buf.
2116 */
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002117static ssize_t lun_mode_store(struct device *dev,
2118 struct device_attribute *attr,
2119 const char *buf, size_t count)
Matthew R. Ochs15305512015-10-21 15:12:10 -05002120{
2121 struct Scsi_Host *shost = class_to_shost(dev);
2122 struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2123 struct afu *afu = cfg->afu;
2124 int rc;
2125 u32 lun_mode;
2126
2127 rc = kstrtouint(buf, 10, &lun_mode);
2128 if (!rc && (lun_mode < 5) && (lun_mode != afu->internal_lun)) {
2129 afu->internal_lun = lun_mode;
2130 afu_reset(cfg);
2131 scsi_scan_host(cfg->host);
2132 }
2133
2134 return count;
2135}
2136
2137/**
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002138 * ioctl_version_show() - presents the current ioctl version of the host
Matthew R. Ochs15305512015-10-21 15:12:10 -05002139 * @dev: Generic device associated with the host.
2140 * @attr: Device attribute representing the ioctl version.
2141 * @buf: Buffer of length PAGE_SIZE to report back the ioctl version.
2142 *
2143 * Return: The size of the ASCII string returned in @buf.
2144 */
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002145static ssize_t ioctl_version_show(struct device *dev,
2146 struct device_attribute *attr, char *buf)
Matthew R. Ochs15305512015-10-21 15:12:10 -05002147{
2148 return scnprintf(buf, PAGE_SIZE, "%u\n", DK_CXLFLASH_VERSION_0);
2149}
2150
2151/**
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002152 * cxlflash_show_port_lun_table() - queries and presents the port LUN table
2153 * @port: Desired port for status reporting.
2154 * @afu: AFU owning the specified port.
2155 * @buf: Buffer of length PAGE_SIZE to report back port status in ASCII.
2156 *
2157 * Return: The size of the ASCII string returned in @buf.
2158 */
2159static ssize_t cxlflash_show_port_lun_table(u32 port,
2160 struct afu *afu,
2161 char *buf)
2162{
2163 int i;
2164 ssize_t bytes = 0;
2165 __be64 __iomem *fc_port;
2166
2167 if (port >= NUM_FC_PORTS)
2168 return 0;
2169
2170 fc_port = &afu->afu_map->global.fc_port[port][0];
2171
2172 for (i = 0; i < CXLFLASH_NUM_VLUNS; i++)
2173 bytes += scnprintf(buf + bytes, PAGE_SIZE - bytes,
2174 "%03d: %016llX\n", i, readq_be(&fc_port[i]));
2175 return bytes;
2176}
2177
2178/**
2179 * port0_lun_table_show() - presents the current LUN table of port 0
2180 * @dev: Generic device associated with the host owning the port.
2181 * @attr: Device attribute representing the port.
2182 * @buf: Buffer of length PAGE_SIZE to report back port status in ASCII.
2183 *
2184 * Return: The size of the ASCII string returned in @buf.
2185 */
2186static ssize_t port0_lun_table_show(struct device *dev,
2187 struct device_attribute *attr,
2188 char *buf)
2189{
2190 struct Scsi_Host *shost = class_to_shost(dev);
2191 struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2192 struct afu *afu = cfg->afu;
2193
2194 return cxlflash_show_port_lun_table(0, afu, buf);
2195}
2196
2197/**
2198 * port1_lun_table_show() - presents the current LUN table of port 1
2199 * @dev: Generic device associated with the host owning the port.
2200 * @attr: Device attribute representing the port.
2201 * @buf: Buffer of length PAGE_SIZE to report back port status in ASCII.
2202 *
2203 * Return: The size of the ASCII string returned in @buf.
2204 */
2205static ssize_t port1_lun_table_show(struct device *dev,
2206 struct device_attribute *attr,
2207 char *buf)
2208{
2209 struct Scsi_Host *shost = class_to_shost(dev);
2210 struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2211 struct afu *afu = cfg->afu;
2212
2213 return cxlflash_show_port_lun_table(1, afu, buf);
2214}
2215
2216/**
2217 * mode_show() - presents the current mode of the device
Matthew R. Ochs15305512015-10-21 15:12:10 -05002218 * @dev: Generic device associated with the device.
2219 * @attr: Device attribute representing the device mode.
2220 * @buf: Buffer of length PAGE_SIZE to report back the dev mode in ASCII.
2221 *
2222 * Return: The size of the ASCII string returned in @buf.
2223 */
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002224static ssize_t mode_show(struct device *dev,
2225 struct device_attribute *attr, char *buf)
Matthew R. Ochs15305512015-10-21 15:12:10 -05002226{
2227 struct scsi_device *sdev = to_scsi_device(dev);
2228
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002229 return scnprintf(buf, PAGE_SIZE, "%s\n",
2230 sdev->hostdata ? "superpipe" : "legacy");
Matthew R. Ochs15305512015-10-21 15:12:10 -05002231}
2232
2233/*
2234 * Host attributes
2235 */
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002236static DEVICE_ATTR_RO(port0);
2237static DEVICE_ATTR_RO(port1);
2238static DEVICE_ATTR_RW(lun_mode);
2239static DEVICE_ATTR_RO(ioctl_version);
2240static DEVICE_ATTR_RO(port0_lun_table);
2241static DEVICE_ATTR_RO(port1_lun_table);
Matthew R. Ochs15305512015-10-21 15:12:10 -05002242
2243static struct device_attribute *cxlflash_host_attrs[] = {
2244 &dev_attr_port0,
2245 &dev_attr_port1,
2246 &dev_attr_lun_mode,
2247 &dev_attr_ioctl_version,
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002248 &dev_attr_port0_lun_table,
2249 &dev_attr_port1_lun_table,
Matthew R. Ochs15305512015-10-21 15:12:10 -05002250 NULL
2251};
2252
2253/*
2254 * Device attributes
2255 */
Matthew R. Ochse0f01a22015-10-21 15:12:39 -05002256static DEVICE_ATTR_RO(mode);
Matthew R. Ochs15305512015-10-21 15:12:10 -05002257
2258static struct device_attribute *cxlflash_dev_attrs[] = {
2259 &dev_attr_mode,
2260 NULL
2261};
2262
2263/*
2264 * Host template
2265 */
2266static struct scsi_host_template driver_template = {
2267 .module = THIS_MODULE,
2268 .name = CXLFLASH_ADAPTER_NAME,
2269 .info = cxlflash_driver_info,
2270 .ioctl = cxlflash_ioctl,
2271 .proc_name = CXLFLASH_NAME,
2272 .queuecommand = cxlflash_queuecommand,
2273 .eh_device_reset_handler = cxlflash_eh_device_reset_handler,
2274 .eh_host_reset_handler = cxlflash_eh_host_reset_handler,
2275 .change_queue_depth = cxlflash_change_queue_depth,
2276 .cmd_per_lun = 16,
2277 .can_queue = CXLFLASH_MAX_CMDS,
2278 .this_id = -1,
2279 .sg_tablesize = SG_NONE, /* No scatter gather support. */
2280 .max_sectors = CXLFLASH_MAX_SECTORS,
2281 .use_clustering = ENABLE_CLUSTERING,
2282 .shost_attrs = cxlflash_host_attrs,
2283 .sdev_attrs = cxlflash_dev_attrs,
2284};
2285
2286/*
2287 * Device dependent values
2288 */
2289static struct dev_dependent_vals dev_corsa_vals = { CXLFLASH_MAX_SECTORS };
2290
2291/*
2292 * PCI device binding table
2293 */
2294static struct pci_device_id cxlflash_pci_table[] = {
2295 {PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CORSA,
2296 PCI_ANY_ID, PCI_ANY_ID, 0, 0, (kernel_ulong_t)&dev_corsa_vals},
2297 {}
2298};
2299
2300MODULE_DEVICE_TABLE(pci, cxlflash_pci_table);
2301
2302/**
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002303 * cxlflash_worker_thread() - work thread handler for the AFU
2304 * @work: Work structure contained within cxlflash associated with host.
2305 *
2306 * Handles the following events:
2307 * - Link reset which cannot be performed on interrupt context due to
2308 * blocking up to a few seconds
2309 * - Read AFU command room
Matthew R. Ochsef510742015-10-21 15:13:37 -05002310 * - Rescan the host
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002311 */
2312static void cxlflash_worker_thread(struct work_struct *work)
2313{
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002314 struct cxlflash_cfg *cfg = container_of(work, struct cxlflash_cfg,
2315 work_q);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002316 struct afu *afu = cfg->afu;
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05002317 struct device *dev = &cfg->dev->dev;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002318 int port;
2319 ulong lock_flags;
2320
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002321 /* Avoid MMIO if the device has failed */
2322
2323 if (cfg->state != STATE_NORMAL)
2324 return;
2325
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002326 spin_lock_irqsave(cfg->host->host_lock, lock_flags);
2327
2328 if (cfg->lr_state == LINK_RESET_REQUIRED) {
2329 port = cfg->lr_port;
2330 if (port < 0)
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05002331 dev_err(dev, "%s: invalid port index %d\n",
2332 __func__, port);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002333 else {
2334 spin_unlock_irqrestore(cfg->host->host_lock,
2335 lock_flags);
2336
2337 /* The reset can block... */
2338 afu_link_reset(afu, port,
2339 &afu->afu_map->
2340 global.fc_regs[port][0]);
2341 spin_lock_irqsave(cfg->host->host_lock, lock_flags);
2342 }
2343
2344 cfg->lr_state = LINK_RESET_COMPLETE;
2345 }
2346
2347 if (afu->read_room) {
2348 atomic64_set(&afu->room, readq_be(&afu->host_map->cmd_room));
2349 afu->read_room = false;
2350 }
2351
2352 spin_unlock_irqrestore(cfg->host->host_lock, lock_flags);
Matthew R. Ochsef510742015-10-21 15:13:37 -05002353
2354 if (atomic_dec_if_positive(&cfg->scan_host_needed) >= 0)
2355 scsi_scan_host(cfg->host);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002356}
2357
2358/**
2359 * cxlflash_probe() - PCI entry point to add host
2360 * @pdev: PCI device associated with the host.
2361 * @dev_id: PCI device id associated with device.
2362 *
2363 * Return: 0 on success / non-zero on failure
2364 */
2365static int cxlflash_probe(struct pci_dev *pdev,
2366 const struct pci_device_id *dev_id)
2367{
2368 struct Scsi_Host *host;
2369 struct cxlflash_cfg *cfg = NULL;
2370 struct device *phys_dev;
2371 struct dev_dependent_vals *ddv;
2372 int rc = 0;
2373
2374 dev_dbg(&pdev->dev, "%s: Found CXLFLASH with IRQ: %d\n",
2375 __func__, pdev->irq);
2376
2377 ddv = (struct dev_dependent_vals *)dev_id->driver_data;
2378 driver_template.max_sectors = ddv->max_sectors;
2379
2380 host = scsi_host_alloc(&driver_template, sizeof(struct cxlflash_cfg));
2381 if (!host) {
2382 dev_err(&pdev->dev, "%s: call to scsi_host_alloc failed!\n",
2383 __func__);
2384 rc = -ENOMEM;
2385 goto out;
2386 }
2387
2388 host->max_id = CXLFLASH_MAX_NUM_TARGETS_PER_BUS;
2389 host->max_lun = CXLFLASH_MAX_NUM_LUNS_PER_TARGET;
2390 host->max_channel = NUM_FC_PORTS - 1;
2391 host->unique_id = host->host_no;
2392 host->max_cmd_len = CXLFLASH_MAX_CDB_LEN;
2393
2394 cfg = (struct cxlflash_cfg *)host->hostdata;
2395 cfg->host = host;
2396 rc = alloc_mem(cfg);
2397 if (rc) {
2398 dev_err(&pdev->dev, "%s: call to scsi_host_alloc failed!\n",
2399 __func__);
2400 rc = -ENOMEM;
2401 goto out;
2402 }
2403
2404 cfg->init_state = INIT_STATE_NONE;
2405 cfg->dev = pdev;
Matthew R. Ochs2cb79262015-08-13 21:47:53 -05002406
2407 /*
2408 * The promoted LUNs move to the top of the LUN table. The rest stay
2409 * on the bottom half. The bottom half grows from the end
2410 * (index = 255), whereas the top half grows from the beginning
2411 * (index = 0).
2412 */
2413 cfg->promote_lun_index = 0;
2414 cfg->last_lun_index[0] = CXLFLASH_NUM_VLUNS/2 - 1;
2415 cfg->last_lun_index[1] = CXLFLASH_NUM_VLUNS/2 - 1;
2416
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002417 cfg->dev_id = (struct pci_device_id *)dev_id;
2418 cfg->mcctx = NULL;
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002419
2420 init_waitqueue_head(&cfg->tmf_waitq);
Matthew R. Ochs439e85c2015-10-21 15:12:00 -05002421 init_waitqueue_head(&cfg->reset_waitq);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002422
2423 INIT_WORK(&cfg->work_q, cxlflash_worker_thread);
2424 cfg->lr_state = LINK_RESET_INVALID;
2425 cfg->lr_port = -1;
Matthew R. Ochs65be2c72015-08-13 21:47:43 -05002426 mutex_init(&cfg->ctx_tbl_list_mutex);
2427 mutex_init(&cfg->ctx_recovery_mutex);
Matthew R. Ochs0a27ae52015-10-21 15:11:52 -05002428 init_rwsem(&cfg->ioctl_rwsem);
Matthew R. Ochs65be2c72015-08-13 21:47:43 -05002429 INIT_LIST_HEAD(&cfg->ctx_err_recovery);
2430 INIT_LIST_HEAD(&cfg->lluns);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002431
2432 pci_set_drvdata(pdev, cfg);
2433
2434 /* Use the special service provided to look up the physical
2435 * PCI device, since we are called on the probe of the virtual
2436 * PCI host bus (vphb)
2437 */
2438 phys_dev = cxl_get_phys_dev(pdev);
2439 if (!dev_is_pci(phys_dev)) {
Matthew R. Ochs4392ba42015-10-21 15:13:11 -05002440 dev_err(&pdev->dev, "%s: not a pci dev\n", __func__);
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002441 rc = -ENODEV;
2442 goto out_remove;
2443 }
2444 cfg->parent_dev = to_pci_dev(phys_dev);
2445
2446 cfg->cxl_afu = cxl_pci_to_afu(pdev);
2447
2448 rc = init_pci(cfg);
2449 if (rc) {
2450 dev_err(&pdev->dev, "%s: call to init_pci "
2451 "failed rc=%d!\n", __func__, rc);
2452 goto out_remove;
2453 }
2454 cfg->init_state = INIT_STATE_PCI;
2455
2456 rc = init_afu(cfg);
2457 if (rc) {
2458 dev_err(&pdev->dev, "%s: call to init_afu "
2459 "failed rc=%d!\n", __func__, rc);
2460 goto out_remove;
2461 }
2462 cfg->init_state = INIT_STATE_AFU;
2463
2464
2465 rc = init_scsi(cfg);
2466 if (rc) {
2467 dev_err(&pdev->dev, "%s: call to init_scsi "
2468 "failed rc=%d!\n", __func__, rc);
2469 goto out_remove;
2470 }
2471 cfg->init_state = INIT_STATE_SCSI;
2472
2473out:
2474 pr_debug("%s: returning rc=%d\n", __func__, rc);
2475 return rc;
2476
2477out_remove:
2478 cxlflash_remove(pdev);
2479 goto out;
2480}
2481
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002482/**
Matthew R. Ochs0a27ae52015-10-21 15:11:52 -05002483 * drain_ioctls() - wait until all currently executing ioctls have completed
2484 * @cfg: Internal structure associated with the host.
2485 *
2486 * Obtain write access to read/write semaphore that wraps ioctl
2487 * handling to 'drain' ioctls currently executing.
2488 */
2489static void drain_ioctls(struct cxlflash_cfg *cfg)
2490{
2491 down_write(&cfg->ioctl_rwsem);
2492 up_write(&cfg->ioctl_rwsem);
2493}
2494
2495/**
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002496 * cxlflash_pci_error_detected() - called when a PCI error is detected
2497 * @pdev: PCI device struct.
2498 * @state: PCI channel state.
2499 *
2500 * Return: PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
2501 */
2502static pci_ers_result_t cxlflash_pci_error_detected(struct pci_dev *pdev,
2503 pci_channel_state_t state)
2504{
Matthew R. Ochs65be2c72015-08-13 21:47:43 -05002505 int rc = 0;
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002506 struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
2507 struct device *dev = &cfg->dev->dev;
2508
2509 dev_dbg(dev, "%s: pdev=%p state=%u\n", __func__, pdev, state);
2510
2511 switch (state) {
2512 case pci_channel_io_frozen:
Matthew R. Ochs439e85c2015-10-21 15:12:00 -05002513 cfg->state = STATE_RESET;
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002514 scsi_block_requests(cfg->host);
Matthew R. Ochs0a27ae52015-10-21 15:11:52 -05002515 drain_ioctls(cfg);
Matthew R. Ochs65be2c72015-08-13 21:47:43 -05002516 rc = cxlflash_mark_contexts_error(cfg);
2517 if (unlikely(rc))
2518 dev_err(dev, "%s: Failed to mark user contexts!(%d)\n",
2519 __func__, rc);
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002520 term_mc(cfg, UNDO_START);
2521 stop_afu(cfg);
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002522 return PCI_ERS_RESULT_NEED_RESET;
2523 case pci_channel_io_perm_failure:
2524 cfg->state = STATE_FAILTERM;
Matthew R. Ochs439e85c2015-10-21 15:12:00 -05002525 wake_up_all(&cfg->reset_waitq);
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002526 scsi_unblock_requests(cfg->host);
2527 return PCI_ERS_RESULT_DISCONNECT;
2528 default:
2529 break;
2530 }
2531 return PCI_ERS_RESULT_NEED_RESET;
2532}
2533
2534/**
2535 * cxlflash_pci_slot_reset() - called when PCI slot has been reset
2536 * @pdev: PCI device struct.
2537 *
2538 * This routine is called by the pci error recovery code after the PCI
2539 * slot has been reset, just before we should resume normal operations.
2540 *
2541 * Return: PCI_ERS_RESULT_RECOVERED or PCI_ERS_RESULT_DISCONNECT
2542 */
2543static pci_ers_result_t cxlflash_pci_slot_reset(struct pci_dev *pdev)
2544{
2545 int rc = 0;
2546 struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
2547 struct device *dev = &cfg->dev->dev;
2548
2549 dev_dbg(dev, "%s: pdev=%p\n", __func__, pdev);
2550
2551 rc = init_afu(cfg);
2552 if (unlikely(rc)) {
2553 dev_err(dev, "%s: EEH recovery failed! (%d)\n", __func__, rc);
2554 return PCI_ERS_RESULT_DISCONNECT;
2555 }
2556
2557 return PCI_ERS_RESULT_RECOVERED;
2558}
2559
2560/**
2561 * cxlflash_pci_resume() - called when normal operation can resume
2562 * @pdev: PCI device struct
2563 */
2564static void cxlflash_pci_resume(struct pci_dev *pdev)
2565{
2566 struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
2567 struct device *dev = &cfg->dev->dev;
2568
2569 dev_dbg(dev, "%s: pdev=%p\n", __func__, pdev);
2570
2571 cfg->state = STATE_NORMAL;
Matthew R. Ochs439e85c2015-10-21 15:12:00 -05002572 wake_up_all(&cfg->reset_waitq);
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002573 scsi_unblock_requests(cfg->host);
2574}
2575
2576static const struct pci_error_handlers cxlflash_err_handler = {
2577 .error_detected = cxlflash_pci_error_detected,
2578 .slot_reset = cxlflash_pci_slot_reset,
2579 .resume = cxlflash_pci_resume,
2580};
2581
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002582/*
2583 * PCI device structure
2584 */
2585static struct pci_driver cxlflash_driver = {
2586 .name = CXLFLASH_NAME,
2587 .id_table = cxlflash_pci_table,
2588 .probe = cxlflash_probe,
2589 .remove = cxlflash_remove,
Matthew R. Ochs5cdac812015-08-13 21:47:34 -05002590 .err_handler = &cxlflash_err_handler,
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002591};
2592
2593/**
2594 * init_cxlflash() - module entry point
2595 *
2596 * Return: 0 on success / non-zero on failure
2597 */
2598static int __init init_cxlflash(void)
2599{
2600 pr_info("%s: IBM Power CXL Flash Adapter: %s\n",
2601 __func__, CXLFLASH_DRIVER_DATE);
2602
Matthew R. Ochs65be2c72015-08-13 21:47:43 -05002603 cxlflash_list_init();
2604
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002605 return pci_register_driver(&cxlflash_driver);
2606}
2607
2608/**
2609 * exit_cxlflash() - module exit point
2610 */
2611static void __exit exit_cxlflash(void)
2612{
Matthew R. Ochs65be2c72015-08-13 21:47:43 -05002613 cxlflash_term_global_luns();
2614 cxlflash_free_errpage();
2615
Matthew R. Ochsc21e0bb2015-06-09 17:15:52 -05002616 pci_unregister_driver(&cxlflash_driver);
2617}
2618
2619module_init(init_cxlflash);
2620module_exit(exit_cxlflash);