ed9fd8c2d7db29ed2f3f0ab6c55b42932857a55e
[linux-2.6-microblaze.git] / drivers / scsi / cxlflash / main.c
1 /*
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>
26 #include <uapi/scsi/cxlflash_ioctl.h>
27
28 #include "main.h"
29 #include "sislite.h"
30 #include "common.h"
31
32 MODULE_DESCRIPTION(CXLFLASH_ADAPTER_NAME);
33 MODULE_AUTHOR("Manoj N. Kumar <manoj@linux.vnet.ibm.com>");
34 MODULE_AUTHOR("Matthew R. Ochs <mrochs@linux.vnet.ibm.com>");
35 MODULE_LICENSE("GPL");
36
37
38 /**
39  * cmd_checkout() - checks out an AFU command
40  * @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  */
50 static struct afu_cmd *cmd_checkout(struct afu *afu)
51 {
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)) {
61                         pr_devel("%s: returning found index=%d cmd=%p\n",
62                                  __func__, cmd->slot, cmd);
63                         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 /**
73  * cmd_checkin() - checks in an AFU command
74  * @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  */
82 static void cmd_checkin(struct afu_cmd *cmd)
83 {
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
96         pr_devel("%s: released cmd %p index=%d\n", __func__, cmd, cmd->slot);
97 }
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  */
106 static void process_cmd_err(struct afu_cmd *cmd, struct scsi_cmnd *scp)
107 {
108         struct sisl_ioarcb *ioarcb;
109         struct sisl_ioasa *ioasa;
110         u32 resid;
111
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) {
119                 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);
123         }
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 "
132                  "afu_extra=0x%X, scsi_extra=0x%X, fc_extra=0x%X\n",
133                  __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.
163                                  * This is probably an AFU bug.
164                                  */
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:
187                         scp->result = (DID_NO_CONNECT << 16);
188                         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  */
218 static void cmd_complete(struct afu_cmd *cmd)
219 {
220         struct scsi_cmnd *scp;
221         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;
232                 if (unlikely(cmd->sa.ioasc))
233                         process_cmd_err(cmd, scp);
234                 else
235                         scp->result = (DID_OK << 16);
236
237                 cmd_is_tmf = cmd->cmd_tmf;
238                 cmd_checkin(cmd); /* Don't use cmd after here */
239
240                 pr_debug_ratelimited("%s: calling scsi_done scp=%p result=%X "
241                                      "ioasc=%d\n", __func__, scp, scp->result,
242                                      cmd->sa.ioasc);
243
244                 scsi_dma_unmap(scp);
245                 scp->scsi_done(scp);
246
247                 if (cmd_is_tmf) {
248                         spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
249                         cfg->tmf_active = false;
250                         wake_up_all_locked(&cfg->tmf_waitq);
251                         spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
252                 }
253         } else
254                 complete(&cmd->cevent);
255 }
256
257 /**
258  * context_reset() - timeout handler for AFU commands
259  * @cmd:        AFU command that timed out.
260  *
261  * Sends a reset to the AFU.
262  */
263 static 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
299 write_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  */
319 static 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          */
334 retry:
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
363 write_ioarrin:
364         writeq_be((u64)&cmd->rcb, &afu->host_map->ioarrin);
365 out:
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
370 no_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  */
382 static 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 /**
398  * 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  */
407 static 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;
415         struct device *dev = &cfg->dev->dev;
416         ulong lock_flags;
417         int rc = 0;
418         ulong to;
419
420         cmd = cmd_checkout(afu);
421         if (unlikely(!cmd)) {
422                 dev_err(dev, "%s: could not get a free command\n", __func__);
423                 rc = SCSI_MLQUEUE_HOST_BUSY;
424                 goto out;
425         }
426
427         /* When Task Management Function is active do not send another */
428         spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
429         if (cfg->tmf_active)
430                 wait_event_interruptible_lock_irq(cfg->tmf_waitq,
431                                                   !cfg->tmf_active,
432                                                   cfg->tmf_slock);
433         cfg->tmf_active = true;
434         cmd->cmd_tmf = true;
435         spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
436
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 */
453         rc = send_cmd(afu, cmd);
454         if (unlikely(rc)) {
455                 cmd_checkin(cmd);
456                 spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
457                 cfg->tmf_active = false;
458                 spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
459                 goto out;
460         }
461
462         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);
474 out:
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  */
484 static 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  */
498 static 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;
502         struct device *dev = &cfg->dev->dev;
503         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
511         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]));
519
520         /*
521          * If a Task Management Function is active, wait for it to complete
522          * before continuing with regular commands.
523          */
524         spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
525         if (cfg->tmf_active) {
526                 spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
527                 rc = SCSI_MLQUEUE_HOST_BUSY;
528                 goto out;
529         }
530         spin_unlock_irqrestore(&cfg->tmf_slock, lock_flags);
531
532         switch (cfg->state) {
533         case STATE_RESET:
534                 dev_dbg_ratelimited(dev, "%s: device is in reset!\n", __func__);
535                 rc = SCSI_MLQUEUE_HOST_BUSY;
536                 goto out;
537         case STATE_FAILTERM:
538                 dev_dbg_ratelimited(dev, "%s: device has failed!\n", __func__);
539                 scp->result = (DID_NO_CONNECT << 16);
540                 scp->scsi_done(scp);
541                 rc = 0;
542                 goto out;
543         default:
544                 break;
545         }
546
547         cmd = cmd_checkout(afu);
548         if (unlikely(!cmd)) {
549                 dev_err(dev, "%s: could not get a free command\n", __func__);
550                 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)) {
571                 dev_err(dev, "%s: Fail DMA map! nseg=%d\n",
572                         __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 */
587         rc = send_cmd(afu, cmd);
588         if (unlikely(rc)) {
589                 cmd_checkin(cmd);
590                 scsi_dma_unmap(scp);
591         }
592
593 out:
594         pr_devel("%s: returning rc=%d\n", __func__, rc);
595         return rc;
596 }
597
598 /**
599  * cxlflash_wait_for_pci_err_recovery() - wait for error recovery during probe
600  * @cxlflash:   Internal structure associated with the host.
601  */
602 static 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))
607                 wait_event_timeout(cfg->reset_waitq,
608                                    !pci_channel_offline(pdev),
609                                    CXLFLASH_PCI_ERROR_RECOVERY_TIMEOUT);
610 }
611
612 /**
613  * free_mem() - free memory associated with the AFU
614  * @cxlflash:   Internal structure associated with the host.
615  */
616 static 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  */
640 static 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  */
663 static void term_mc(struct cxlflash_cfg *cfg, enum undo_level level)
664 {
665         int rc = 0;
666         struct afu *afu = cfg->afu;
667         struct device *dev = &cfg->dev->dev;
668
669         if (!afu || !cfg->mcctx) {
670                 dev_err(dev, "%s: returning from term_mc with NULL afu or MC\n",
671                        __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  */
698 static 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  */
714 static 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          */
722         spin_lock_irqsave(&cfg->tmf_slock, lock_flags);
723         if (cfg->tmf_active)
724                 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);
728
729         cfg->state = STATE_FAILTERM;
730         cxlflash_stop_term_user_contexts(cfg);
731
732         switch (cfg->init_state) {
733         case INIT_STATE_SCSI:
734                 cxlflash_term_local_luns(cfg);
735                 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  */
762 static int alloc_mem(struct cxlflash_cfg *cfg)
763 {
764         int rc = 0;
765         int i;
766         char *buf = NULL;
767         struct device *dev = &cfg->dev->dev;
768
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)) {
775                 dev_err(dev, "%s: cannot get %d free pages\n",
776                         __func__, get_order(sizeof(struct afu)));
777                 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)) {
787                                 dev_err(dev,
788                                         "%s: Allocate command buffers fail!\n",
789                                        __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
801 out:
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  */
814 static 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
875 out:
876         pr_debug("%s: returning rc=%d\n", __func__, rc);
877         return rc;
878
879 cleanup_nolog:
880 out_msi_disable:
881         cxlflash_wait_for_pci_err_recovery(cfg);
882 out_disable:
883         pci_disable_device(pdev);
884 out_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  */
898 static 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
912 out:
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  */
925 static 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  */
941 static 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  */
965 static 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  */
996 static 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  */
1031 static int afu_set_wwpn(struct afu *afu, int port, u64 *fc_regs, u64 wwpn)
1032 {
1033         int ret = 0;
1034
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);
1041                 ret = -1; /* but continue on to leave the port back online */
1042         }
1043
1044         if (ret == 0)
1045                 writeq_be(wwpn, &fc_regs[FC_PNAME / 8]);
1046
1047         set_port_online(fc_regs);
1048
1049         if (!wait_port_online(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
1050                               FC_PORT_STATUS_RETRY_CNT)) {
1051                 pr_debug("%s: wait on port %d to go online timed out\n",
1052                          __func__, port);
1053                 ret = -1;
1054
1055                 /*
1056                  * Override for internal lun!!!
1057                  */
1058                 if (afu->internal_lun) {
1059                         pr_debug("%s: Overriding port %d online timeout!!!\n",
1060                                  __func__, port);
1061                         ret = 0;
1062                 }
1063         }
1064
1065         pr_debug("%s: returning rc=%d\n", __func__, ret);
1066
1067         return ret;
1068 }
1069
1070 /**
1071  * afu_link_reset() - resets the specified host FC port
1072  * @afu:        AFU associated with the host that owns the specified FC port.
1073  * @port:       Port number being configured.
1074  * @fc_regs:    Top of MMIO region defined for specified port.
1075  *
1076  * The provided MMIO region must be mapped prior to call. The sequence to
1077  * reset the port involves toggling it offline and then back online. This
1078  * action can cause this routine to delay up to a few seconds. An effort
1079  * is made to maintain link with the device by switching to host to use
1080  * the alternate port exclusively while the reset takes place.
1081  * failure to come online is overridden.
1082  */
1083 static void afu_link_reset(struct afu *afu, int port, u64 *fc_regs)
1084 {
1085         u64 port_sel;
1086
1087         /* first switch the AFU to the other links, if any */
1088         port_sel = readq_be(&afu->afu_map->global.regs.afu_port_sel);
1089         port_sel &= ~(1ULL << port);
1090         writeq_be(port_sel, &afu->afu_map->global.regs.afu_port_sel);
1091         cxlflash_afu_sync(afu, 0, 0, AFU_GSYNC);
1092
1093         set_port_offline(fc_regs);
1094         if (!wait_port_offline(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
1095                                FC_PORT_STATUS_RETRY_CNT))
1096                 pr_err("%s: wait on port %d to go offline timed out\n",
1097                        __func__, port);
1098
1099         set_port_online(fc_regs);
1100         if (!wait_port_online(fc_regs, FC_PORT_STATUS_RETRY_INTERVAL_US,
1101                               FC_PORT_STATUS_RETRY_CNT))
1102                 pr_err("%s: wait on port %d to go online timed out\n",
1103                        __func__, port);
1104
1105         /* switch back to include this port */
1106         port_sel |= (1ULL << port);
1107         writeq_be(port_sel, &afu->afu_map->global.regs.afu_port_sel);
1108         cxlflash_afu_sync(afu, 0, 0, AFU_GSYNC);
1109
1110         pr_debug("%s: returning port_sel=%lld\n", __func__, port_sel);
1111 }
1112
1113 /*
1114  * Asynchronous interrupt information table
1115  */
1116 static const struct asyc_intr_info ainfo[] = {
1117         {SISL_ASTATUS_FC0_OTHER, "other error", 0, CLR_FC_ERROR | LINK_RESET},
1118         {SISL_ASTATUS_FC0_LOGO, "target initiated LOGO", 0, 0},
1119         {SISL_ASTATUS_FC0_CRC_T, "CRC threshold exceeded", 0, LINK_RESET},
1120         {SISL_ASTATUS_FC0_LOGI_R, "login timed out, retrying", 0, 0},
1121         {SISL_ASTATUS_FC0_LOGI_F, "login failed", 0, CLR_FC_ERROR},
1122         {SISL_ASTATUS_FC0_LOGI_S, "login succeeded", 0, SCAN_HOST},
1123         {SISL_ASTATUS_FC0_LINK_DN, "link down", 0, 0},
1124         {SISL_ASTATUS_FC0_LINK_UP, "link up", 0, SCAN_HOST},
1125         {SISL_ASTATUS_FC1_OTHER, "other error", 1, CLR_FC_ERROR | LINK_RESET},
1126         {SISL_ASTATUS_FC1_LOGO, "target initiated LOGO", 1, 0},
1127         {SISL_ASTATUS_FC1_CRC_T, "CRC threshold exceeded", 1, LINK_RESET},
1128         {SISL_ASTATUS_FC1_LOGI_R, "login timed out, retrying", 1, 0},
1129         {SISL_ASTATUS_FC1_LOGI_F, "login failed", 1, CLR_FC_ERROR},
1130         {SISL_ASTATUS_FC1_LOGI_S, "login succeeded", 1, SCAN_HOST},
1131         {SISL_ASTATUS_FC1_LINK_DN, "link down", 1, 0},
1132         {SISL_ASTATUS_FC1_LINK_UP, "link up", 1, SCAN_HOST},
1133         {0x0, "", 0, 0}         /* terminator */
1134 };
1135
1136 /**
1137  * find_ainfo() - locates and returns asynchronous interrupt information
1138  * @status:     Status code set by AFU on error.
1139  *
1140  * Return: The located information or NULL when the status code is invalid.
1141  */
1142 static const struct asyc_intr_info *find_ainfo(u64 status)
1143 {
1144         const struct asyc_intr_info *info;
1145
1146         for (info = &ainfo[0]; info->status; info++)
1147                 if (info->status == status)
1148                         return info;
1149
1150         return NULL;
1151 }
1152
1153 /**
1154  * afu_err_intr_init() - clears and initializes the AFU for error interrupts
1155  * @afu:        AFU associated with the host.
1156  */
1157 static void afu_err_intr_init(struct afu *afu)
1158 {
1159         int i;
1160         u64 reg;
1161
1162         /* global async interrupts: AFU clears afu_ctrl on context exit
1163          * if async interrupts were sent to that context. This prevents
1164          * the AFU form sending further async interrupts when
1165          * there is
1166          * nobody to receive them.
1167          */
1168
1169         /* mask all */
1170         writeq_be(-1ULL, &afu->afu_map->global.regs.aintr_mask);
1171         /* set LISN# to send and point to master context */
1172         reg = ((u64) (((afu->ctx_hndl << 8) | SISL_MSI_ASYNC_ERROR)) << 40);
1173
1174         if (afu->internal_lun)
1175                 reg |= 1;       /* Bit 63 indicates local lun */
1176         writeq_be(reg, &afu->afu_map->global.regs.afu_ctrl);
1177         /* clear all */
1178         writeq_be(-1ULL, &afu->afu_map->global.regs.aintr_clear);
1179         /* unmask bits that are of interest */
1180         /* note: afu can send an interrupt after this step */
1181         writeq_be(SISL_ASTATUS_MASK, &afu->afu_map->global.regs.aintr_mask);
1182         /* clear again in case a bit came on after previous clear but before */
1183         /* unmask */
1184         writeq_be(-1ULL, &afu->afu_map->global.regs.aintr_clear);
1185
1186         /* Clear/Set internal lun bits */
1187         reg = readq_be(&afu->afu_map->global.fc_regs[0][FC_CONFIG2 / 8]);
1188         reg &= SISL_FC_INTERNAL_MASK;
1189         if (afu->internal_lun)
1190                 reg |= ((u64)(afu->internal_lun - 1) << SISL_FC_INTERNAL_SHIFT);
1191         writeq_be(reg, &afu->afu_map->global.fc_regs[0][FC_CONFIG2 / 8]);
1192
1193         /* now clear FC errors */
1194         for (i = 0; i < NUM_FC_PORTS; i++) {
1195                 writeq_be(0xFFFFFFFFU,
1196                           &afu->afu_map->global.fc_regs[i][FC_ERROR / 8]);
1197                 writeq_be(0, &afu->afu_map->global.fc_regs[i][FC_ERRCAP / 8]);
1198         }
1199
1200         /* sync interrupts for master's IOARRIN write */
1201         /* note that unlike asyncs, there can be no pending sync interrupts */
1202         /* at this time (this is a fresh context and master has not written */
1203         /* IOARRIN yet), so there is nothing to clear. */
1204
1205         /* set LISN#, it is always sent to the context that wrote IOARRIN */
1206         writeq_be(SISL_MSI_SYNC_ERROR, &afu->host_map->ctx_ctrl);
1207         writeq_be(SISL_ISTATUS_MASK, &afu->host_map->intr_mask);
1208 }
1209
1210 /**
1211  * cxlflash_sync_err_irq() - interrupt handler for synchronous errors
1212  * @irq:        Interrupt number.
1213  * @data:       Private data provided at interrupt registration, the AFU.
1214  *
1215  * Return: Always return IRQ_HANDLED.
1216  */
1217 static irqreturn_t cxlflash_sync_err_irq(int irq, void *data)
1218 {
1219         struct afu *afu = (struct afu *)data;
1220         u64 reg;
1221         u64 reg_unmasked;
1222
1223         reg = readq_be(&afu->host_map->intr_status);
1224         reg_unmasked = (reg & SISL_ISTATUS_UNMASK);
1225
1226         if (reg_unmasked == 0UL) {
1227                 pr_err("%s: %llX: spurious interrupt, intr_status %016llX\n",
1228                        __func__, (u64)afu, reg);
1229                 goto cxlflash_sync_err_irq_exit;
1230         }
1231
1232         pr_err("%s: %llX: unexpected interrupt, intr_status %016llX\n",
1233                __func__, (u64)afu, reg);
1234
1235         writeq_be(reg_unmasked, &afu->host_map->intr_clear);
1236
1237 cxlflash_sync_err_irq_exit:
1238         pr_debug("%s: returning rc=%d\n", __func__, IRQ_HANDLED);
1239         return IRQ_HANDLED;
1240 }
1241
1242 /**
1243  * cxlflash_rrq_irq() - interrupt handler for read-response queue (normal path)
1244  * @irq:        Interrupt number.
1245  * @data:       Private data provided at interrupt registration, the AFU.
1246  *
1247  * Return: Always return IRQ_HANDLED.
1248  */
1249 static irqreturn_t cxlflash_rrq_irq(int irq, void *data)
1250 {
1251         struct afu *afu = (struct afu *)data;
1252         struct afu_cmd *cmd;
1253         bool toggle = afu->toggle;
1254         u64 entry,
1255             *hrrq_start = afu->hrrq_start,
1256             *hrrq_end = afu->hrrq_end,
1257             *hrrq_curr = afu->hrrq_curr;
1258
1259         /* Process however many RRQ entries that are ready */
1260         while (true) {
1261                 entry = *hrrq_curr;
1262
1263                 if ((entry & SISL_RESP_HANDLE_T_BIT) != toggle)
1264                         break;
1265
1266                 cmd = (struct afu_cmd *)(entry & ~SISL_RESP_HANDLE_T_BIT);
1267                 cmd_complete(cmd);
1268
1269                 /* Advance to next entry or wrap and flip the toggle bit */
1270                 if (hrrq_curr < hrrq_end)
1271                         hrrq_curr++;
1272                 else {
1273                         hrrq_curr = hrrq_start;
1274                         toggle ^= SISL_RESP_HANDLE_T_BIT;
1275                 }
1276         }
1277
1278         afu->hrrq_curr = hrrq_curr;
1279         afu->toggle = toggle;
1280
1281         return IRQ_HANDLED;
1282 }
1283
1284 /**
1285  * cxlflash_async_err_irq() - interrupt handler for asynchronous errors
1286  * @irq:        Interrupt number.
1287  * @data:       Private data provided at interrupt registration, the AFU.
1288  *
1289  * Return: Always return IRQ_HANDLED.
1290  */
1291 static irqreturn_t cxlflash_async_err_irq(int irq, void *data)
1292 {
1293         struct afu *afu = (struct afu *)data;
1294         struct cxlflash_cfg *cfg = afu->parent;
1295         struct device *dev = &cfg->dev->dev;
1296         u64 reg_unmasked;
1297         const struct asyc_intr_info *info;
1298         struct sisl_global_map *global = &afu->afu_map->global;
1299         u64 reg;
1300         u8 port;
1301         int i;
1302
1303         reg = readq_be(&global->regs.aintr_status);
1304         reg_unmasked = (reg & SISL_ASTATUS_UNMASK);
1305
1306         if (reg_unmasked == 0) {
1307                 dev_err(dev, "%s: spurious interrupt, aintr_status 0x%016llX\n",
1308                         __func__, reg);
1309                 goto out;
1310         }
1311
1312         /* it is OK to clear AFU status before FC_ERROR */
1313         writeq_be(reg_unmasked, &global->regs.aintr_clear);
1314
1315         /* check each bit that is on */
1316         for (i = 0; reg_unmasked; i++, reg_unmasked = (reg_unmasked >> 1)) {
1317                 info = find_ainfo(1ULL << i);
1318                 if (((reg_unmasked & 0x1) == 0) || !info)
1319                         continue;
1320
1321                 port = info->port;
1322
1323                 dev_err(dev, "%s: FC Port %d -> %s, fc_status 0x%08llX\n",
1324                         __func__, port, info->desc,
1325                        readq_be(&global->fc_regs[port][FC_STATUS / 8]));
1326
1327                 /*
1328                  * do link reset first, some OTHER errors will set FC_ERROR
1329                  * again if cleared before or w/o a reset
1330                  */
1331                 if (info->action & LINK_RESET) {
1332                         dev_err(dev, "%s: FC Port %d: resetting link\n",
1333                                 __func__, port);
1334                         cfg->lr_state = LINK_RESET_REQUIRED;
1335                         cfg->lr_port = port;
1336                         schedule_work(&cfg->work_q);
1337                 }
1338
1339                 if (info->action & CLR_FC_ERROR) {
1340                         reg = readq_be(&global->fc_regs[port][FC_ERROR / 8]);
1341
1342                         /*
1343                          * since all errors are unmasked, FC_ERROR and FC_ERRCAP
1344                          * should be the same and tracing one is sufficient.
1345                          */
1346
1347                         dev_err(dev, "%s: fc %d: clearing fc_error 0x%08llX\n",
1348                                 __func__, port, reg);
1349
1350                         writeq_be(reg, &global->fc_regs[port][FC_ERROR / 8]);
1351                         writeq_be(0, &global->fc_regs[port][FC_ERRCAP / 8]);
1352                 }
1353
1354                 if (info->action & SCAN_HOST) {
1355                         atomic_inc(&cfg->scan_host_needed);
1356                         schedule_work(&cfg->work_q);
1357                 }
1358         }
1359
1360 out:
1361         dev_dbg(dev, "%s: returning IRQ_HANDLED, afu=%p\n", __func__, afu);
1362         return IRQ_HANDLED;
1363 }
1364
1365 /**
1366  * start_context() - starts the master context
1367  * @cxlflash:   Internal structure associated with the host.
1368  *
1369  * Return: A success or failure value from CXL services.
1370  */
1371 static int start_context(struct cxlflash_cfg *cfg)
1372 {
1373         int rc = 0;
1374
1375         rc = cxl_start_context(cfg->mcctx,
1376                                cfg->afu->work.work_element_descriptor,
1377                                NULL);
1378
1379         pr_debug("%s: returning rc=%d\n", __func__, rc);
1380         return rc;
1381 }
1382
1383 /**
1384  * read_vpd() - obtains the WWPNs from VPD
1385  * @cxlflash:   Internal structure associated with the host.
1386  * @wwpn:       Array of size NUM_FC_PORTS to pass back WWPNs
1387  *
1388  * Return:
1389  *      0 on success
1390  *      -ENODEV when VPD or WWPN keywords not found
1391  */
1392 static int read_vpd(struct cxlflash_cfg *cfg, u64 wwpn[])
1393 {
1394         struct pci_dev *dev = cfg->parent_dev;
1395         int rc = 0;
1396         int ro_start, ro_size, i, j, k;
1397         ssize_t vpd_size;
1398         char vpd_data[CXLFLASH_VPD_LEN];
1399         char tmp_buf[WWPN_BUF_LEN] = { 0 };
1400         char *wwpn_vpd_tags[NUM_FC_PORTS] = { "V5", "V6" };
1401
1402         /* Get the VPD data from the device */
1403         vpd_size = pci_read_vpd(dev, 0, sizeof(vpd_data), vpd_data);
1404         if (unlikely(vpd_size <= 0)) {
1405                 dev_err(&dev->dev, "%s: Unable to read VPD (size = %ld)\n",
1406                        __func__, vpd_size);
1407                 rc = -ENODEV;
1408                 goto out;
1409         }
1410
1411         /* Get the read only section offset */
1412         ro_start = pci_vpd_find_tag(vpd_data, 0, vpd_size,
1413                                     PCI_VPD_LRDT_RO_DATA);
1414         if (unlikely(ro_start < 0)) {
1415                 dev_err(&dev->dev, "%s: VPD Read-only data not found\n",
1416                         __func__);
1417                 rc = -ENODEV;
1418                 goto out;
1419         }
1420
1421         /* Get the read only section size, cap when extends beyond read VPD */
1422         ro_size = pci_vpd_lrdt_size(&vpd_data[ro_start]);
1423         j = ro_size;
1424         i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
1425         if (unlikely((i + j) > vpd_size)) {
1426                 pr_debug("%s: Might need to read more VPD (%d > %ld)\n",
1427                          __func__, (i + j), vpd_size);
1428                 ro_size = vpd_size - i;
1429         }
1430
1431         /*
1432          * Find the offset of the WWPN tag within the read only
1433          * VPD data and validate the found field (partials are
1434          * no good to us). Convert the ASCII data to an integer
1435          * value. Note that we must copy to a temporary buffer
1436          * because the conversion service requires that the ASCII
1437          * string be terminated.
1438          */
1439         for (k = 0; k < NUM_FC_PORTS; k++) {
1440                 j = ro_size;
1441                 i = ro_start + PCI_VPD_LRDT_TAG_SIZE;
1442
1443                 i = pci_vpd_find_info_keyword(vpd_data, i, j, wwpn_vpd_tags[k]);
1444                 if (unlikely(i < 0)) {
1445                         dev_err(&dev->dev, "%s: Port %d WWPN not found "
1446                                 "in VPD\n", __func__, k);
1447                         rc = -ENODEV;
1448                         goto out;
1449                 }
1450
1451                 j = pci_vpd_info_field_size(&vpd_data[i]);
1452                 i += PCI_VPD_INFO_FLD_HDR_SIZE;
1453                 if (unlikely((i + j > vpd_size) || (j != WWPN_LEN))) {
1454                         dev_err(&dev->dev, "%s: Port %d WWPN incomplete or "
1455                                 "VPD corrupt\n",
1456                                __func__, k);
1457                         rc = -ENODEV;
1458                         goto out;
1459                 }
1460
1461                 memcpy(tmp_buf, &vpd_data[i], WWPN_LEN);
1462                 rc = kstrtoul(tmp_buf, WWPN_LEN, (ulong *)&wwpn[k]);
1463                 if (unlikely(rc)) {
1464                         dev_err(&dev->dev, "%s: Fail to convert port %d WWPN "
1465                                 "to integer\n", __func__, k);
1466                         rc = -ENODEV;
1467                         goto out;
1468                 }
1469         }
1470
1471 out:
1472         pr_debug("%s: returning rc=%d\n", __func__, rc);
1473         return rc;
1474 }
1475
1476 /**
1477  * init_pcr() - initialize the provisioning and control registers
1478  * @cxlflash:   Internal structure associated with the host.
1479  *
1480  * Also sets up fast access to the mapped registers and initializes AFU
1481  * command fields that never change.
1482  */
1483 static void init_pcr(struct cxlflash_cfg *cfg)
1484 {
1485         struct afu *afu = cfg->afu;
1486         struct sisl_ctrl_map *ctrl_map;
1487         int i;
1488
1489         for (i = 0; i < MAX_CONTEXT; i++) {
1490                 ctrl_map = &afu->afu_map->ctrls[i].ctrl;
1491                 /* disrupt any clients that could be running */
1492                 /* e. g. clients that survived a master restart */
1493                 writeq_be(0, &ctrl_map->rht_start);
1494                 writeq_be(0, &ctrl_map->rht_cnt_id);
1495                 writeq_be(0, &ctrl_map->ctx_cap);
1496         }
1497
1498         /* copy frequently used fields into afu */
1499         afu->ctx_hndl = (u16) cxl_process_element(cfg->mcctx);
1500         /* ctx_hndl is 16 bits in CAIA */
1501         afu->host_map = &afu->afu_map->hosts[afu->ctx_hndl].host;
1502         afu->ctrl_map = &afu->afu_map->ctrls[afu->ctx_hndl].ctrl;
1503
1504         /* Program the Endian Control for the master context */
1505         writeq_be(SISL_ENDIAN_CTRL, &afu->host_map->endian_ctrl);
1506
1507         /* initialize cmd fields that never change */
1508         for (i = 0; i < CXLFLASH_NUM_CMDS; i++) {
1509                 afu->cmd[i].rcb.ctx_id = afu->ctx_hndl;
1510                 afu->cmd[i].rcb.msi = SISL_MSI_RRQ_UPDATED;
1511                 afu->cmd[i].rcb.rrq = 0x0;
1512         }
1513 }
1514
1515 /**
1516  * init_global() - initialize AFU global registers
1517  * @cxlflash:   Internal structure associated with the host.
1518  */
1519 static int init_global(struct cxlflash_cfg *cfg)
1520 {
1521         struct afu *afu = cfg->afu;
1522         struct device *dev = &cfg->dev->dev;
1523         u64 wwpn[NUM_FC_PORTS]; /* wwpn of AFU ports */
1524         int i = 0, num_ports = 0;
1525         int rc = 0;
1526         u64 reg;
1527
1528         rc = read_vpd(cfg, &wwpn[0]);
1529         if (rc) {
1530                 dev_err(dev, "%s: could not read vpd rc=%d\n", __func__, rc);
1531                 goto out;
1532         }
1533
1534         pr_debug("%s: wwpn0=0x%llX wwpn1=0x%llX\n", __func__, wwpn[0], wwpn[1]);
1535
1536         /* set up RRQ in AFU for master issued cmds */
1537         writeq_be((u64) afu->hrrq_start, &afu->host_map->rrq_start);
1538         writeq_be((u64) afu->hrrq_end, &afu->host_map->rrq_end);
1539
1540         /* AFU configuration */
1541         reg = readq_be(&afu->afu_map->global.regs.afu_config);
1542         reg |= SISL_AFUCONF_AR_ALL|SISL_AFUCONF_ENDIAN;
1543         /* enable all auto retry options and control endianness */
1544         /* leave others at default: */
1545         /* CTX_CAP write protected, mbox_r does not clear on read and */
1546         /* checker on if dual afu */
1547         writeq_be(reg, &afu->afu_map->global.regs.afu_config);
1548
1549         /* global port select: select either port */
1550         if (afu->internal_lun) {
1551                 /* only use port 0 */
1552                 writeq_be(PORT0, &afu->afu_map->global.regs.afu_port_sel);
1553                 num_ports = NUM_FC_PORTS - 1;
1554         } else {
1555                 writeq_be(BOTH_PORTS, &afu->afu_map->global.regs.afu_port_sel);
1556                 num_ports = NUM_FC_PORTS;
1557         }
1558
1559         for (i = 0; i < num_ports; i++) {
1560                 /* unmask all errors (but they are still masked at AFU) */
1561                 writeq_be(0, &afu->afu_map->global.fc_regs[i][FC_ERRMSK / 8]);
1562                 /* clear CRC error cnt & set a threshold */
1563                 (void)readq_be(&afu->afu_map->global.
1564                                fc_regs[i][FC_CNT_CRCERR / 8]);
1565                 writeq_be(MC_CRC_THRESH, &afu->afu_map->global.fc_regs[i]
1566                           [FC_CRC_THRESH / 8]);
1567
1568                 /* set WWPNs. If already programmed, wwpn[i] is 0 */
1569                 if (wwpn[i] != 0 &&
1570                     afu_set_wwpn(afu, i,
1571                                  &afu->afu_map->global.fc_regs[i][0],
1572                                  wwpn[i])) {
1573                         dev_err(dev, "%s: failed to set WWPN on port %d\n",
1574                                __func__, i);
1575                         rc = -EIO;
1576                         goto out;
1577                 }
1578                 /* Programming WWPN back to back causes additional
1579                  * offline/online transitions and a PLOGI
1580                  */
1581                 msleep(100);
1582
1583         }
1584
1585         /* set up master's own CTX_CAP to allow real mode, host translation */
1586         /* tbls, afu cmds and read/write GSCSI cmds. */
1587         /* First, unlock ctx_cap write by reading mbox */
1588         (void)readq_be(&afu->ctrl_map->mbox_r); /* unlock ctx_cap */
1589         writeq_be((SISL_CTX_CAP_REAL_MODE | SISL_CTX_CAP_HOST_XLATE |
1590                    SISL_CTX_CAP_READ_CMD | SISL_CTX_CAP_WRITE_CMD |
1591                    SISL_CTX_CAP_AFU_CMD | SISL_CTX_CAP_GSCSI_CMD),
1592                   &afu->ctrl_map->ctx_cap);
1593         /* init heartbeat */
1594         afu->hb = readq_be(&afu->afu_map->global.regs.afu_hb);
1595
1596 out:
1597         return rc;
1598 }
1599
1600 /**
1601  * start_afu() - initializes and starts the AFU
1602  * @cxlflash:   Internal structure associated with the host.
1603  */
1604 static int start_afu(struct cxlflash_cfg *cfg)
1605 {
1606         struct afu *afu = cfg->afu;
1607         struct afu_cmd *cmd;
1608
1609         int i = 0;
1610         int rc = 0;
1611
1612         for (i = 0; i < CXLFLASH_NUM_CMDS; i++) {
1613                 cmd = &afu->cmd[i];
1614
1615                 init_completion(&cmd->cevent);
1616                 spin_lock_init(&cmd->slock);
1617                 cmd->parent = afu;
1618         }
1619
1620         init_pcr(cfg);
1621
1622         /* initialize RRQ pointers */
1623         afu->hrrq_start = &afu->rrq_entry[0];
1624         afu->hrrq_end = &afu->rrq_entry[NUM_RRQ_ENTRY - 1];
1625         afu->hrrq_curr = afu->hrrq_start;
1626         afu->toggle = 1;
1627
1628         rc = init_global(cfg);
1629
1630         pr_debug("%s: returning rc=%d\n", __func__, rc);
1631         return rc;
1632 }
1633
1634 /**
1635  * init_mc() - create and register as the master context
1636  * @cxlflash:   Internal structure associated with the host.
1637  *
1638  * Return:
1639  *      0 on success
1640  *      -ENOMEM when unable to obtain a context from CXL services
1641  *      A failure value from CXL services.
1642  */
1643 static int init_mc(struct cxlflash_cfg *cfg)
1644 {
1645         struct cxl_context *ctx;
1646         struct device *dev = &cfg->dev->dev;
1647         struct afu *afu = cfg->afu;
1648         int rc = 0;
1649         enum undo_level level;
1650
1651         ctx = cxl_get_context(cfg->dev);
1652         if (unlikely(!ctx))
1653                 return -ENOMEM;
1654         cfg->mcctx = ctx;
1655
1656         /* Set it up as a master with the CXL */
1657         cxl_set_master(ctx);
1658
1659         /* During initialization reset the AFU to start from a clean slate */
1660         rc = cxl_afu_reset(cfg->mcctx);
1661         if (unlikely(rc)) {
1662                 dev_err(dev, "%s: initial AFU reset failed rc=%d\n",
1663                         __func__, rc);
1664                 level = RELEASE_CONTEXT;
1665                 goto out;
1666         }
1667
1668         rc = cxl_allocate_afu_irqs(ctx, 3);
1669         if (unlikely(rc)) {
1670                 dev_err(dev, "%s: call to allocate_afu_irqs failed rc=%d!\n",
1671                         __func__, rc);
1672                 level = RELEASE_CONTEXT;
1673                 goto out;
1674         }
1675
1676         rc = cxl_map_afu_irq(ctx, 1, cxlflash_sync_err_irq, afu,
1677                              "SISL_MSI_SYNC_ERROR");
1678         if (unlikely(rc <= 0)) {
1679                 dev_err(dev, "%s: IRQ 1 (SISL_MSI_SYNC_ERROR) map failed!\n",
1680                         __func__);
1681                 level = FREE_IRQ;
1682                 goto out;
1683         }
1684
1685         rc = cxl_map_afu_irq(ctx, 2, cxlflash_rrq_irq, afu,
1686                              "SISL_MSI_RRQ_UPDATED");
1687         if (unlikely(rc <= 0)) {
1688                 dev_err(dev, "%s: IRQ 2 (SISL_MSI_RRQ_UPDATED) map failed!\n",
1689                         __func__);
1690                 level = UNMAP_ONE;
1691                 goto out;
1692         }
1693
1694         rc = cxl_map_afu_irq(ctx, 3, cxlflash_async_err_irq, afu,
1695                              "SISL_MSI_ASYNC_ERROR");
1696         if (unlikely(rc <= 0)) {
1697                 dev_err(dev, "%s: IRQ 3 (SISL_MSI_ASYNC_ERROR) map failed!\n",
1698                         __func__);
1699                 level = UNMAP_TWO;
1700                 goto out;
1701         }
1702
1703         rc = 0;
1704
1705         /* This performs the equivalent of the CXL_IOCTL_START_WORK.
1706          * The CXL_IOCTL_GET_PROCESS_ELEMENT is implicit in the process
1707          * element (pe) that is embedded in the context (ctx)
1708          */
1709         rc = start_context(cfg);
1710         if (unlikely(rc)) {
1711                 dev_err(dev, "%s: start context failed rc=%d\n", __func__, rc);
1712                 level = UNMAP_THREE;
1713                 goto out;
1714         }
1715 ret:
1716         pr_debug("%s: returning rc=%d\n", __func__, rc);
1717         return rc;
1718 out:
1719         term_mc(cfg, level);
1720         goto ret;
1721 }
1722
1723 /**
1724  * init_afu() - setup as master context and start AFU
1725  * @cxlflash:   Internal structure associated with the host.
1726  *
1727  * This routine is a higher level of control for configuring the
1728  * AFU on probe and reset paths.
1729  *
1730  * Return:
1731  *      0 on success
1732  *      -ENOMEM when unable to map the AFU MMIO space
1733  *      A failure value from internal services.
1734  */
1735 static int init_afu(struct cxlflash_cfg *cfg)
1736 {
1737         u64 reg;
1738         int rc = 0;
1739         struct afu *afu = cfg->afu;
1740         struct device *dev = &cfg->dev->dev;
1741
1742         cxl_perst_reloads_same_image(cfg->cxl_afu, true);
1743
1744         rc = init_mc(cfg);
1745         if (rc) {
1746                 dev_err(dev, "%s: call to init_mc failed, rc=%d!\n",
1747                         __func__, rc);
1748                 goto err1;
1749         }
1750
1751         /* Map the entire MMIO space of the AFU.
1752          */
1753         afu->afu_map = cxl_psa_map(cfg->mcctx);
1754         if (!afu->afu_map) {
1755                 rc = -ENOMEM;
1756                 term_mc(cfg, UNDO_START);
1757                 dev_err(dev, "%s: call to cxl_psa_map failed!\n", __func__);
1758                 goto err1;
1759         }
1760
1761         /* don't byte reverse on reading afu_version, else the string form */
1762         /*     will be backwards */
1763         reg = afu->afu_map->global.regs.afu_version;
1764         memcpy(afu->version, &reg, 8);
1765         afu->interface_version =
1766             readq_be(&afu->afu_map->global.regs.interface_version);
1767         pr_debug("%s: afu version %s, interface version 0x%llX\n",
1768                  __func__, afu->version, afu->interface_version);
1769
1770         rc = start_afu(cfg);
1771         if (rc) {
1772                 dev_err(dev, "%s: call to start_afu failed, rc=%d!\n",
1773                         __func__, rc);
1774                 term_mc(cfg, UNDO_START);
1775                 cxl_psa_unmap((void *)afu->afu_map);
1776                 afu->afu_map = NULL;
1777                 goto err1;
1778         }
1779
1780         afu_err_intr_init(cfg->afu);
1781         atomic64_set(&afu->room, readq_be(&afu->host_map->cmd_room));
1782
1783         /* Restore the LUN mappings */
1784         cxlflash_restore_luntable(cfg);
1785 err1:
1786         pr_debug("%s: returning rc=%d\n", __func__, rc);
1787         return rc;
1788 }
1789
1790 /**
1791  * cxlflash_afu_sync() - builds and sends an AFU sync command
1792  * @afu:        AFU associated with the host.
1793  * @ctx_hndl_u: Identifies context requesting sync.
1794  * @res_hndl_u: Identifies resource requesting sync.
1795  * @mode:       Type of sync to issue (lightweight, heavyweight, global).
1796  *
1797  * The AFU can only take 1 sync command at a time. This routine enforces this
1798  * limitation by using a mutex to provide exlusive access to the AFU during
1799  * the sync. This design point requires calling threads to not be on interrupt
1800  * context due to the possibility of sleeping during concurrent sync operations.
1801  *
1802  * AFU sync operations are only necessary and allowed when the device is
1803  * operating normally. When not operating normally, sync requests can occur as
1804  * part of cleaning up resources associated with an adapter prior to removal.
1805  * In this scenario, these requests are simply ignored (safe due to the AFU
1806  * going away).
1807  *
1808  * Return:
1809  *      0 on success
1810  *      -1 on failure
1811  */
1812 int cxlflash_afu_sync(struct afu *afu, ctx_hndl_t ctx_hndl_u,
1813                       res_hndl_t res_hndl_u, u8 mode)
1814 {
1815         struct cxlflash_cfg *cfg = afu->parent;
1816         struct device *dev = &cfg->dev->dev;
1817         struct afu_cmd *cmd = NULL;
1818         int rc = 0;
1819         int retry_cnt = 0;
1820         static DEFINE_MUTEX(sync_active);
1821
1822         if (cfg->state != STATE_NORMAL) {
1823                 pr_debug("%s: Sync not required! (%u)\n", __func__, cfg->state);
1824                 return 0;
1825         }
1826
1827         mutex_lock(&sync_active);
1828 retry:
1829         cmd = cmd_checkout(afu);
1830         if (unlikely(!cmd)) {
1831                 retry_cnt++;
1832                 udelay(1000 * retry_cnt);
1833                 if (retry_cnt < MC_RETRY_CNT)
1834                         goto retry;
1835                 dev_err(dev, "%s: could not get a free command\n", __func__);
1836                 rc = -1;
1837                 goto out;
1838         }
1839
1840         pr_debug("%s: afu=%p cmd=%p %d\n", __func__, afu, cmd, ctx_hndl_u);
1841
1842         memset(cmd->rcb.cdb, 0, sizeof(cmd->rcb.cdb));
1843
1844         cmd->rcb.req_flags = SISL_REQ_FLAGS_AFU_CMD;
1845         cmd->rcb.port_sel = 0x0;        /* NA */
1846         cmd->rcb.lun_id = 0x0;  /* NA */
1847         cmd->rcb.data_len = 0x0;
1848         cmd->rcb.data_ea = 0x0;
1849         cmd->rcb.timeout = MC_AFU_SYNC_TIMEOUT;
1850
1851         cmd->rcb.cdb[0] = 0xC0; /* AFU Sync */
1852         cmd->rcb.cdb[1] = mode;
1853
1854         /* The cdb is aligned, no unaligned accessors required */
1855         *((u16 *)&cmd->rcb.cdb[2]) = swab16(ctx_hndl_u);
1856         *((u32 *)&cmd->rcb.cdb[4]) = swab32(res_hndl_u);
1857
1858         rc = send_cmd(afu, cmd);
1859         if (unlikely(rc))
1860                 goto out;
1861
1862         wait_resp(afu, cmd);
1863
1864         /* set on timeout */
1865         if (unlikely((cmd->sa.ioasc != 0) ||
1866                      (cmd->sa.host_use_b[0] & B_ERROR)))
1867                 rc = -1;
1868 out:
1869         mutex_unlock(&sync_active);
1870         if (cmd)
1871                 cmd_checkin(cmd);
1872         pr_debug("%s: returning rc=%d\n", __func__, rc);
1873         return rc;
1874 }
1875
1876 /**
1877  * afu_reset() - resets the AFU
1878  * @cfg:        Internal structure associated with the host.
1879  *
1880  * Return:
1881  *      0 on success
1882  *      A failure value from internal services.
1883  */
1884 static int afu_reset(struct cxlflash_cfg *cfg)
1885 {
1886         int rc = 0;
1887         /* Stop the context before the reset. Since the context is
1888          * no longer available restart it after the reset is complete
1889          */
1890
1891         term_afu(cfg);
1892
1893         rc = init_afu(cfg);
1894
1895         pr_debug("%s: returning rc=%d\n", __func__, rc);
1896         return rc;
1897 }
1898
1899 /**
1900  * cxlflash_eh_device_reset_handler() - reset a single LUN
1901  * @scp:        SCSI command to send.
1902  *
1903  * Return:
1904  *      SUCCESS as defined in scsi/scsi.h
1905  *      FAILED as defined in scsi/scsi.h
1906  */
1907 static int cxlflash_eh_device_reset_handler(struct scsi_cmnd *scp)
1908 {
1909         int rc = SUCCESS;
1910         struct Scsi_Host *host = scp->device->host;
1911         struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)host->hostdata;
1912         struct afu *afu = cfg->afu;
1913         int rcr = 0;
1914
1915         pr_debug("%s: (scp=%p) %d/%d/%d/%llu "
1916                  "cdb=(%08X-%08X-%08X-%08X)\n", __func__, scp,
1917                  host->host_no, scp->device->channel,
1918                  scp->device->id, scp->device->lun,
1919                  get_unaligned_be32(&((u32 *)scp->cmnd)[0]),
1920                  get_unaligned_be32(&((u32 *)scp->cmnd)[1]),
1921                  get_unaligned_be32(&((u32 *)scp->cmnd)[2]),
1922                  get_unaligned_be32(&((u32 *)scp->cmnd)[3]));
1923
1924         switch (cfg->state) {
1925         case STATE_NORMAL:
1926                 rcr = send_tmf(afu, scp, TMF_LUN_RESET);
1927                 if (unlikely(rcr))
1928                         rc = FAILED;
1929                 break;
1930         case STATE_RESET:
1931                 wait_event(cfg->reset_waitq, cfg->state != STATE_RESET);
1932                 if (cfg->state == STATE_NORMAL)
1933                         break;
1934                 /* fall through */
1935         default:
1936                 rc = FAILED;
1937                 break;
1938         }
1939
1940         pr_debug("%s: returning rc=%d\n", __func__, rc);
1941         return rc;
1942 }
1943
1944 /**
1945  * cxlflash_eh_host_reset_handler() - reset the host adapter
1946  * @scp:        SCSI command from stack identifying host.
1947  *
1948  * Return:
1949  *      SUCCESS as defined in scsi/scsi.h
1950  *      FAILED as defined in scsi/scsi.h
1951  */
1952 static int cxlflash_eh_host_reset_handler(struct scsi_cmnd *scp)
1953 {
1954         int rc = SUCCESS;
1955         int rcr = 0;
1956         struct Scsi_Host *host = scp->device->host;
1957         struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)host->hostdata;
1958
1959         pr_debug("%s: (scp=%p) %d/%d/%d/%llu "
1960                  "cdb=(%08X-%08X-%08X-%08X)\n", __func__, scp,
1961                  host->host_no, scp->device->channel,
1962                  scp->device->id, scp->device->lun,
1963                  get_unaligned_be32(&((u32 *)scp->cmnd)[0]),
1964                  get_unaligned_be32(&((u32 *)scp->cmnd)[1]),
1965                  get_unaligned_be32(&((u32 *)scp->cmnd)[2]),
1966                  get_unaligned_be32(&((u32 *)scp->cmnd)[3]));
1967
1968         switch (cfg->state) {
1969         case STATE_NORMAL:
1970                 cfg->state = STATE_RESET;
1971                 scsi_block_requests(cfg->host);
1972                 cxlflash_mark_contexts_error(cfg);
1973                 rcr = afu_reset(cfg);
1974                 if (rcr) {
1975                         rc = FAILED;
1976                         cfg->state = STATE_FAILTERM;
1977                 } else
1978                         cfg->state = STATE_NORMAL;
1979                 wake_up_all(&cfg->reset_waitq);
1980                 scsi_unblock_requests(cfg->host);
1981                 break;
1982         case STATE_RESET:
1983                 wait_event(cfg->reset_waitq, cfg->state != STATE_RESET);
1984                 if (cfg->state == STATE_NORMAL)
1985                         break;
1986                 /* fall through */
1987         default:
1988                 rc = FAILED;
1989                 break;
1990         }
1991
1992         pr_debug("%s: returning rc=%d\n", __func__, rc);
1993         return rc;
1994 }
1995
1996 /**
1997  * cxlflash_change_queue_depth() - change the queue depth for the device
1998  * @sdev:       SCSI device destined for queue depth change.
1999  * @qdepth:     Requested queue depth value to set.
2000  *
2001  * The requested queue depth is capped to the maximum supported value.
2002  *
2003  * Return: The actual queue depth set.
2004  */
2005 static int cxlflash_change_queue_depth(struct scsi_device *sdev, int qdepth)
2006 {
2007
2008         if (qdepth > CXLFLASH_MAX_CMDS_PER_LUN)
2009                 qdepth = CXLFLASH_MAX_CMDS_PER_LUN;
2010
2011         scsi_change_queue_depth(sdev, qdepth);
2012         return sdev->queue_depth;
2013 }
2014
2015 /**
2016  * cxlflash_show_port_status() - queries and presents the current port status
2017  * @port:       Desired port for status reporting.
2018  * @afu:        AFU owning the specified port.
2019  * @buf:        Buffer of length PAGE_SIZE to report back port status in ASCII.
2020  *
2021  * Return: The size of the ASCII string returned in @buf.
2022  */
2023 static ssize_t cxlflash_show_port_status(u32 port, struct afu *afu, char *buf)
2024 {
2025         char *disp_status;
2026         u64 status;
2027         __be64 __iomem *fc_regs;
2028
2029         if (port >= NUM_FC_PORTS)
2030                 return 0;
2031
2032         fc_regs = &afu->afu_map->global.fc_regs[port][0];
2033         status = readq_be(&fc_regs[FC_MTIP_STATUS / 8]);
2034         status &= FC_MTIP_STATUS_MASK;
2035
2036         if (status == FC_MTIP_STATUS_ONLINE)
2037                 disp_status = "online";
2038         else if (status == FC_MTIP_STATUS_OFFLINE)
2039                 disp_status = "offline";
2040         else
2041                 disp_status = "unknown";
2042
2043         return scnprintf(buf, PAGE_SIZE, "%s\n", disp_status);
2044 }
2045
2046 /**
2047  * port0_show() - queries and presents the current status of port 0
2048  * @dev:        Generic device associated with the host owning the port.
2049  * @attr:       Device attribute representing the port.
2050  * @buf:        Buffer of length PAGE_SIZE to report back port status in ASCII.
2051  *
2052  * Return: The size of the ASCII string returned in @buf.
2053  */
2054 static ssize_t port0_show(struct device *dev,
2055                           struct device_attribute *attr,
2056                           char *buf)
2057 {
2058         struct Scsi_Host *shost = class_to_shost(dev);
2059         struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2060         struct afu *afu = cfg->afu;
2061
2062         return cxlflash_show_port_status(0, afu, buf);
2063 }
2064
2065 /**
2066  * port1_show() - queries and presents the current status of port 1
2067  * @dev:        Generic device associated with the host owning the port.
2068  * @attr:       Device attribute representing the port.
2069  * @buf:        Buffer of length PAGE_SIZE to report back port status in ASCII.
2070  *
2071  * Return: The size of the ASCII string returned in @buf.
2072  */
2073 static ssize_t port1_show(struct device *dev,
2074                           struct device_attribute *attr,
2075                           char *buf)
2076 {
2077         struct Scsi_Host *shost = class_to_shost(dev);
2078         struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2079         struct afu *afu = cfg->afu;
2080
2081         return cxlflash_show_port_status(1, afu, buf);
2082 }
2083
2084 /**
2085  * lun_mode_show() - presents the current LUN mode of the host
2086  * @dev:        Generic device associated with the host.
2087  * @attr:       Device attribute representing the LUN mode.
2088  * @buf:        Buffer of length PAGE_SIZE to report back the LUN mode in ASCII.
2089  *
2090  * Return: The size of the ASCII string returned in @buf.
2091  */
2092 static ssize_t lun_mode_show(struct device *dev,
2093                              struct device_attribute *attr, char *buf)
2094 {
2095         struct Scsi_Host *shost = class_to_shost(dev);
2096         struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2097         struct afu *afu = cfg->afu;
2098
2099         return scnprintf(buf, PAGE_SIZE, "%u\n", afu->internal_lun);
2100 }
2101
2102 /**
2103  * lun_mode_store() - sets the LUN mode of the host
2104  * @dev:        Generic device associated with the host.
2105  * @attr:       Device attribute representing the LUN mode.
2106  * @buf:        Buffer of length PAGE_SIZE containing the LUN mode in ASCII.
2107  * @count:      Length of data resizing in @buf.
2108  *
2109  * The CXL Flash AFU supports a dummy LUN mode where the external
2110  * links and storage are not required. Space on the FPGA is used
2111  * to create 1 or 2 small LUNs which are presented to the system
2112  * as if they were a normal storage device. This feature is useful
2113  * during development and also provides manufacturing with a way
2114  * to test the AFU without an actual device.
2115  *
2116  * 0 = external LUN[s] (default)
2117  * 1 = internal LUN (1 x 64K, 512B blocks, id 0)
2118  * 2 = internal LUN (1 x 64K, 4K blocks, id 0)
2119  * 3 = internal LUN (2 x 32K, 512B blocks, ids 0,1)
2120  * 4 = internal LUN (2 x 32K, 4K blocks, ids 0,1)
2121  *
2122  * Return: The size of the ASCII string returned in @buf.
2123  */
2124 static ssize_t lun_mode_store(struct device *dev,
2125                               struct device_attribute *attr,
2126                               const char *buf, size_t count)
2127 {
2128         struct Scsi_Host *shost = class_to_shost(dev);
2129         struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2130         struct afu *afu = cfg->afu;
2131         int rc;
2132         u32 lun_mode;
2133
2134         rc = kstrtouint(buf, 10, &lun_mode);
2135         if (!rc && (lun_mode < 5) && (lun_mode != afu->internal_lun)) {
2136                 afu->internal_lun = lun_mode;
2137                 afu_reset(cfg);
2138                 scsi_scan_host(cfg->host);
2139         }
2140
2141         return count;
2142 }
2143
2144 /**
2145  * ioctl_version_show() - presents the current ioctl version of the host
2146  * @dev:        Generic device associated with the host.
2147  * @attr:       Device attribute representing the ioctl version.
2148  * @buf:        Buffer of length PAGE_SIZE to report back the ioctl version.
2149  *
2150  * Return: The size of the ASCII string returned in @buf.
2151  */
2152 static ssize_t ioctl_version_show(struct device *dev,
2153                                   struct device_attribute *attr, char *buf)
2154 {
2155         return scnprintf(buf, PAGE_SIZE, "%u\n", DK_CXLFLASH_VERSION_0);
2156 }
2157
2158 /**
2159  * cxlflash_show_port_lun_table() - queries and presents the port LUN table
2160  * @port:       Desired port for status reporting.
2161  * @afu:        AFU owning the specified port.
2162  * @buf:        Buffer of length PAGE_SIZE to report back port status in ASCII.
2163  *
2164  * Return: The size of the ASCII string returned in @buf.
2165  */
2166 static ssize_t cxlflash_show_port_lun_table(u32 port,
2167                                             struct afu *afu,
2168                                             char *buf)
2169 {
2170         int i;
2171         ssize_t bytes = 0;
2172         __be64 __iomem *fc_port;
2173
2174         if (port >= NUM_FC_PORTS)
2175                 return 0;
2176
2177         fc_port = &afu->afu_map->global.fc_port[port][0];
2178
2179         for (i = 0; i < CXLFLASH_NUM_VLUNS; i++)
2180                 bytes += scnprintf(buf + bytes, PAGE_SIZE - bytes,
2181                                    "%03d: %016llX\n", i, readq_be(&fc_port[i]));
2182         return bytes;
2183 }
2184
2185 /**
2186  * port0_lun_table_show() - presents the current LUN table of port 0
2187  * @dev:        Generic device associated with the host owning the port.
2188  * @attr:       Device attribute representing the port.
2189  * @buf:        Buffer of length PAGE_SIZE to report back port status in ASCII.
2190  *
2191  * Return: The size of the ASCII string returned in @buf.
2192  */
2193 static ssize_t port0_lun_table_show(struct device *dev,
2194                                     struct device_attribute *attr,
2195                                     char *buf)
2196 {
2197         struct Scsi_Host *shost = class_to_shost(dev);
2198         struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2199         struct afu *afu = cfg->afu;
2200
2201         return cxlflash_show_port_lun_table(0, afu, buf);
2202 }
2203
2204 /**
2205  * port1_lun_table_show() - presents the current LUN table of port 1
2206  * @dev:        Generic device associated with the host owning the port.
2207  * @attr:       Device attribute representing the port.
2208  * @buf:        Buffer of length PAGE_SIZE to report back port status in ASCII.
2209  *
2210  * Return: The size of the ASCII string returned in @buf.
2211  */
2212 static ssize_t port1_lun_table_show(struct device *dev,
2213                                     struct device_attribute *attr,
2214                                     char *buf)
2215 {
2216         struct Scsi_Host *shost = class_to_shost(dev);
2217         struct cxlflash_cfg *cfg = (struct cxlflash_cfg *)shost->hostdata;
2218         struct afu *afu = cfg->afu;
2219
2220         return cxlflash_show_port_lun_table(1, afu, buf);
2221 }
2222
2223 /**
2224  * mode_show() - presents the current mode of the device
2225  * @dev:        Generic device associated with the device.
2226  * @attr:       Device attribute representing the device mode.
2227  * @buf:        Buffer of length PAGE_SIZE to report back the dev mode in ASCII.
2228  *
2229  * Return: The size of the ASCII string returned in @buf.
2230  */
2231 static ssize_t mode_show(struct device *dev,
2232                          struct device_attribute *attr, char *buf)
2233 {
2234         struct scsi_device *sdev = to_scsi_device(dev);
2235
2236         return scnprintf(buf, PAGE_SIZE, "%s\n",
2237                          sdev->hostdata ? "superpipe" : "legacy");
2238 }
2239
2240 /*
2241  * Host attributes
2242  */
2243 static DEVICE_ATTR_RO(port0);
2244 static DEVICE_ATTR_RO(port1);
2245 static DEVICE_ATTR_RW(lun_mode);
2246 static DEVICE_ATTR_RO(ioctl_version);
2247 static DEVICE_ATTR_RO(port0_lun_table);
2248 static DEVICE_ATTR_RO(port1_lun_table);
2249
2250 static struct device_attribute *cxlflash_host_attrs[] = {
2251         &dev_attr_port0,
2252         &dev_attr_port1,
2253         &dev_attr_lun_mode,
2254         &dev_attr_ioctl_version,
2255         &dev_attr_port0_lun_table,
2256         &dev_attr_port1_lun_table,
2257         NULL
2258 };
2259
2260 /*
2261  * Device attributes
2262  */
2263 static DEVICE_ATTR_RO(mode);
2264
2265 static struct device_attribute *cxlflash_dev_attrs[] = {
2266         &dev_attr_mode,
2267         NULL
2268 };
2269
2270 /*
2271  * Host template
2272  */
2273 static struct scsi_host_template driver_template = {
2274         .module = THIS_MODULE,
2275         .name = CXLFLASH_ADAPTER_NAME,
2276         .info = cxlflash_driver_info,
2277         .ioctl = cxlflash_ioctl,
2278         .proc_name = CXLFLASH_NAME,
2279         .queuecommand = cxlflash_queuecommand,
2280         .eh_device_reset_handler = cxlflash_eh_device_reset_handler,
2281         .eh_host_reset_handler = cxlflash_eh_host_reset_handler,
2282         .change_queue_depth = cxlflash_change_queue_depth,
2283         .cmd_per_lun = 16,
2284         .can_queue = CXLFLASH_MAX_CMDS,
2285         .this_id = -1,
2286         .sg_tablesize = SG_NONE,        /* No scatter gather support. */
2287         .max_sectors = CXLFLASH_MAX_SECTORS,
2288         .use_clustering = ENABLE_CLUSTERING,
2289         .shost_attrs = cxlflash_host_attrs,
2290         .sdev_attrs = cxlflash_dev_attrs,
2291 };
2292
2293 /*
2294  * Device dependent values
2295  */
2296 static struct dev_dependent_vals dev_corsa_vals = { CXLFLASH_MAX_SECTORS };
2297
2298 /*
2299  * PCI device binding table
2300  */
2301 static struct pci_device_id cxlflash_pci_table[] = {
2302         {PCI_VENDOR_ID_IBM, PCI_DEVICE_ID_IBM_CORSA,
2303          PCI_ANY_ID, PCI_ANY_ID, 0, 0, (kernel_ulong_t)&dev_corsa_vals},
2304         {}
2305 };
2306
2307 MODULE_DEVICE_TABLE(pci, cxlflash_pci_table);
2308
2309 /**
2310  * cxlflash_worker_thread() - work thread handler for the AFU
2311  * @work:       Work structure contained within cxlflash associated with host.
2312  *
2313  * Handles the following events:
2314  * - Link reset which cannot be performed on interrupt context due to
2315  * blocking up to a few seconds
2316  * - Read AFU command room
2317  * - Rescan the host
2318  */
2319 static void cxlflash_worker_thread(struct work_struct *work)
2320 {
2321         struct cxlflash_cfg *cfg = container_of(work, struct cxlflash_cfg,
2322                                                 work_q);
2323         struct afu *afu = cfg->afu;
2324         struct device *dev = &cfg->dev->dev;
2325         int port;
2326         ulong lock_flags;
2327
2328         /* Avoid MMIO if the device has failed */
2329
2330         if (cfg->state != STATE_NORMAL)
2331                 return;
2332
2333         spin_lock_irqsave(cfg->host->host_lock, lock_flags);
2334
2335         if (cfg->lr_state == LINK_RESET_REQUIRED) {
2336                 port = cfg->lr_port;
2337                 if (port < 0)
2338                         dev_err(dev, "%s: invalid port index %d\n",
2339                                 __func__, port);
2340                 else {
2341                         spin_unlock_irqrestore(cfg->host->host_lock,
2342                                                lock_flags);
2343
2344                         /* The reset can block... */
2345                         afu_link_reset(afu, port,
2346                                        &afu->afu_map->
2347                                        global.fc_regs[port][0]);
2348                         spin_lock_irqsave(cfg->host->host_lock, lock_flags);
2349                 }
2350
2351                 cfg->lr_state = LINK_RESET_COMPLETE;
2352         }
2353
2354         if (afu->read_room) {
2355                 atomic64_set(&afu->room, readq_be(&afu->host_map->cmd_room));
2356                 afu->read_room = false;
2357         }
2358
2359         spin_unlock_irqrestore(cfg->host->host_lock, lock_flags);
2360
2361         if (atomic_dec_if_positive(&cfg->scan_host_needed) >= 0)
2362                 scsi_scan_host(cfg->host);
2363 }
2364
2365 /**
2366  * cxlflash_probe() - PCI entry point to add host
2367  * @pdev:       PCI device associated with the host.
2368  * @dev_id:     PCI device id associated with device.
2369  *
2370  * Return: 0 on success / non-zero on failure
2371  */
2372 static int cxlflash_probe(struct pci_dev *pdev,
2373                           const struct pci_device_id *dev_id)
2374 {
2375         struct Scsi_Host *host;
2376         struct cxlflash_cfg *cfg = NULL;
2377         struct device *phys_dev;
2378         struct dev_dependent_vals *ddv;
2379         int rc = 0;
2380
2381         dev_dbg(&pdev->dev, "%s: Found CXLFLASH with IRQ: %d\n",
2382                 __func__, pdev->irq);
2383
2384         ddv = (struct dev_dependent_vals *)dev_id->driver_data;
2385         driver_template.max_sectors = ddv->max_sectors;
2386
2387         host = scsi_host_alloc(&driver_template, sizeof(struct cxlflash_cfg));
2388         if (!host) {
2389                 dev_err(&pdev->dev, "%s: call to scsi_host_alloc failed!\n",
2390                         __func__);
2391                 rc = -ENOMEM;
2392                 goto out;
2393         }
2394
2395         host->max_id = CXLFLASH_MAX_NUM_TARGETS_PER_BUS;
2396         host->max_lun = CXLFLASH_MAX_NUM_LUNS_PER_TARGET;
2397         host->max_channel = NUM_FC_PORTS - 1;
2398         host->unique_id = host->host_no;
2399         host->max_cmd_len = CXLFLASH_MAX_CDB_LEN;
2400
2401         cfg = (struct cxlflash_cfg *)host->hostdata;
2402         cfg->host = host;
2403         rc = alloc_mem(cfg);
2404         if (rc) {
2405                 dev_err(&pdev->dev, "%s: call to scsi_host_alloc failed!\n",
2406                         __func__);
2407                 rc = -ENOMEM;
2408                 goto out;
2409         }
2410
2411         cfg->init_state = INIT_STATE_NONE;
2412         cfg->dev = pdev;
2413
2414         /*
2415          * The promoted LUNs move to the top of the LUN table. The rest stay
2416          * on the bottom half. The bottom half grows from the end
2417          * (index = 255), whereas the top half grows from the beginning
2418          * (index = 0).
2419          */
2420         cfg->promote_lun_index  = 0;
2421         cfg->last_lun_index[0] = CXLFLASH_NUM_VLUNS/2 - 1;
2422         cfg->last_lun_index[1] = CXLFLASH_NUM_VLUNS/2 - 1;
2423
2424         cfg->dev_id = (struct pci_device_id *)dev_id;
2425         cfg->mcctx = NULL;
2426
2427         init_waitqueue_head(&cfg->tmf_waitq);
2428         init_waitqueue_head(&cfg->reset_waitq);
2429
2430         INIT_WORK(&cfg->work_q, cxlflash_worker_thread);
2431         cfg->lr_state = LINK_RESET_INVALID;
2432         cfg->lr_port = -1;
2433         mutex_init(&cfg->ctx_tbl_list_mutex);
2434         mutex_init(&cfg->ctx_recovery_mutex);
2435         init_rwsem(&cfg->ioctl_rwsem);
2436         INIT_LIST_HEAD(&cfg->ctx_err_recovery);
2437         INIT_LIST_HEAD(&cfg->lluns);
2438
2439         pci_set_drvdata(pdev, cfg);
2440
2441         /* Use the special service provided to look up the physical
2442          * PCI device, since we are called on the probe of the virtual
2443          * PCI host bus (vphb)
2444          */
2445         phys_dev = cxl_get_phys_dev(pdev);
2446         if (!dev_is_pci(phys_dev)) {
2447                 dev_err(&pdev->dev, "%s: not a pci dev\n", __func__);
2448                 rc = -ENODEV;
2449                 goto out_remove;
2450         }
2451         cfg->parent_dev = to_pci_dev(phys_dev);
2452
2453         cfg->cxl_afu = cxl_pci_to_afu(pdev);
2454
2455         rc = init_pci(cfg);
2456         if (rc) {
2457                 dev_err(&pdev->dev, "%s: call to init_pci "
2458                         "failed rc=%d!\n", __func__, rc);
2459                 goto out_remove;
2460         }
2461         cfg->init_state = INIT_STATE_PCI;
2462
2463         rc = init_afu(cfg);
2464         if (rc) {
2465                 dev_err(&pdev->dev, "%s: call to init_afu "
2466                         "failed rc=%d!\n", __func__, rc);
2467                 goto out_remove;
2468         }
2469         cfg->init_state = INIT_STATE_AFU;
2470
2471
2472         rc = init_scsi(cfg);
2473         if (rc) {
2474                 dev_err(&pdev->dev, "%s: call to init_scsi "
2475                         "failed rc=%d!\n", __func__, rc);
2476                 goto out_remove;
2477         }
2478         cfg->init_state = INIT_STATE_SCSI;
2479
2480 out:
2481         pr_debug("%s: returning rc=%d\n", __func__, rc);
2482         return rc;
2483
2484 out_remove:
2485         cxlflash_remove(pdev);
2486         goto out;
2487 }
2488
2489 /**
2490  * drain_ioctls() - wait until all currently executing ioctls have completed
2491  * @cfg:        Internal structure associated with the host.
2492  *
2493  * Obtain write access to read/write semaphore that wraps ioctl
2494  * handling to 'drain' ioctls currently executing.
2495  */
2496 static void drain_ioctls(struct cxlflash_cfg *cfg)
2497 {
2498         down_write(&cfg->ioctl_rwsem);
2499         up_write(&cfg->ioctl_rwsem);
2500 }
2501
2502 /**
2503  * cxlflash_pci_error_detected() - called when a PCI error is detected
2504  * @pdev:       PCI device struct.
2505  * @state:      PCI channel state.
2506  *
2507  * Return: PCI_ERS_RESULT_NEED_RESET or PCI_ERS_RESULT_DISCONNECT
2508  */
2509 static pci_ers_result_t cxlflash_pci_error_detected(struct pci_dev *pdev,
2510                                                     pci_channel_state_t state)
2511 {
2512         int rc = 0;
2513         struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
2514         struct device *dev = &cfg->dev->dev;
2515
2516         dev_dbg(dev, "%s: pdev=%p state=%u\n", __func__, pdev, state);
2517
2518         switch (state) {
2519         case pci_channel_io_frozen:
2520                 cfg->state = STATE_RESET;
2521                 scsi_block_requests(cfg->host);
2522                 drain_ioctls(cfg);
2523                 rc = cxlflash_mark_contexts_error(cfg);
2524                 if (unlikely(rc))
2525                         dev_err(dev, "%s: Failed to mark user contexts!(%d)\n",
2526                                 __func__, rc);
2527                 term_mc(cfg, UNDO_START);
2528                 stop_afu(cfg);
2529                 return PCI_ERS_RESULT_NEED_RESET;
2530         case pci_channel_io_perm_failure:
2531                 cfg->state = STATE_FAILTERM;
2532                 wake_up_all(&cfg->reset_waitq);
2533                 scsi_unblock_requests(cfg->host);
2534                 return PCI_ERS_RESULT_DISCONNECT;
2535         default:
2536                 break;
2537         }
2538         return PCI_ERS_RESULT_NEED_RESET;
2539 }
2540
2541 /**
2542  * cxlflash_pci_slot_reset() - called when PCI slot has been reset
2543  * @pdev:       PCI device struct.
2544  *
2545  * This routine is called by the pci error recovery code after the PCI
2546  * slot has been reset, just before we should resume normal operations.
2547  *
2548  * Return: PCI_ERS_RESULT_RECOVERED or PCI_ERS_RESULT_DISCONNECT
2549  */
2550 static pci_ers_result_t cxlflash_pci_slot_reset(struct pci_dev *pdev)
2551 {
2552         int rc = 0;
2553         struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
2554         struct device *dev = &cfg->dev->dev;
2555
2556         dev_dbg(dev, "%s: pdev=%p\n", __func__, pdev);
2557
2558         rc = init_afu(cfg);
2559         if (unlikely(rc)) {
2560                 dev_err(dev, "%s: EEH recovery failed! (%d)\n", __func__, rc);
2561                 return PCI_ERS_RESULT_DISCONNECT;
2562         }
2563
2564         return PCI_ERS_RESULT_RECOVERED;
2565 }
2566
2567 /**
2568  * cxlflash_pci_resume() - called when normal operation can resume
2569  * @pdev:       PCI device struct
2570  */
2571 static void cxlflash_pci_resume(struct pci_dev *pdev)
2572 {
2573         struct cxlflash_cfg *cfg = pci_get_drvdata(pdev);
2574         struct device *dev = &cfg->dev->dev;
2575
2576         dev_dbg(dev, "%s: pdev=%p\n", __func__, pdev);
2577
2578         cfg->state = STATE_NORMAL;
2579         wake_up_all(&cfg->reset_waitq);
2580         scsi_unblock_requests(cfg->host);
2581 }
2582
2583 static const struct pci_error_handlers cxlflash_err_handler = {
2584         .error_detected = cxlflash_pci_error_detected,
2585         .slot_reset = cxlflash_pci_slot_reset,
2586         .resume = cxlflash_pci_resume,
2587 };
2588
2589 /*
2590  * PCI device structure
2591  */
2592 static struct pci_driver cxlflash_driver = {
2593         .name = CXLFLASH_NAME,
2594         .id_table = cxlflash_pci_table,
2595         .probe = cxlflash_probe,
2596         .remove = cxlflash_remove,
2597         .err_handler = &cxlflash_err_handler,
2598 };
2599
2600 /**
2601  * init_cxlflash() - module entry point
2602  *
2603  * Return: 0 on success / non-zero on failure
2604  */
2605 static int __init init_cxlflash(void)
2606 {
2607         pr_info("%s: IBM Power CXL Flash Adapter: %s\n",
2608                 __func__, CXLFLASH_DRIVER_DATE);
2609
2610         cxlflash_list_init();
2611
2612         return pci_register_driver(&cxlflash_driver);
2613 }
2614
2615 /**
2616  * exit_cxlflash() - module exit point
2617  */
2618 static void __exit exit_cxlflash(void)
2619 {
2620         cxlflash_term_global_luns();
2621         cxlflash_free_errpage();
2622
2623         pci_unregister_driver(&cxlflash_driver);
2624 }
2625
2626 module_init(init_cxlflash);
2627 module_exit(exit_cxlflash);