1 // SPDX-License-Identifier: GPL-2.0-only
3 * IBM Accelerator Family 'GenWQE'
5 * (C) Copyright IBM Corp. 2013
7 * Author: Frank Haverkamp <haver@linux.vnet.ibm.com>
8 * Author: Joerg-Stephan Vogt <jsvogt@de.ibm.com>
9 * Author: Michael Jung <mijung@gmx.net>
10 * Author: Michael Ruettger <michael@ibmra.de>
14 * Device Driver Control Block (DDCB) queue support. Definition of
15 * interrupt handlers for queue support as well as triggering the
16 * health monitor code in case of problems. The current hardware uses
17 * an MSI interrupt which is shared between error handling and
21 #include <linux/types.h>
22 #include <linux/sched.h>
23 #include <linux/wait.h>
24 #include <linux/pci.h>
25 #include <linux/string.h>
26 #include <linux/dma-mapping.h>
27 #include <linux/delay.h>
28 #include <linux/module.h>
29 #include <linux/interrupt.h>
30 #include <linux/crc-itu-t.h>
32 #include "card_base.h"
33 #include "card_ddcb.h"
36 * N: next DDCB, this is where the next DDCB will be put.
37 * A: active DDCB, this is where the code will look for the next completion.
38 * x: DDCB is enqueued, we are waiting for its completion.
40 * Situation (1): Empty queue
41 * +---+---+---+---+---+---+---+---+
42 * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
44 * +---+---+---+---+---+---+---+---+
46 * enqueued_ddcbs = A - N = 2 - 2 = 0
48 * Situation (2): Wrapped, N > A
49 * +---+---+---+---+---+---+---+---+
50 * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
51 * | | | x | x | | | | |
52 * +---+---+---+---+---+---+---+---+
54 * enqueued_ddcbs = N - A = 4 - 2 = 2
56 * Situation (3): Queue wrapped, A > N
57 * +---+---+---+---+---+---+---+---+
58 * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
59 * | x | x | | | x | x | x | x |
60 * +---+---+---+---+---+---+---+---+
62 * enqueued_ddcbs = queue_max - (A - N) = 8 - (4 - 2) = 6
64 * Situation (4a): Queue full N > A
65 * +---+---+---+---+---+---+---+---+
66 * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
67 * | x | x | x | x | x | x | x | |
68 * +---+---+---+---+---+---+---+---+
71 * enqueued_ddcbs = N - A = 7 - 0 = 7
73 * Situation (4a): Queue full A > N
74 * +---+---+---+---+---+---+---+---+
75 * | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 |
76 * | x | x | x | | x | x | x | x |
77 * +---+---+---+---+---+---+---+---+
79 * enqueued_ddcbs = queue_max - (A - N) = 8 - (4 - 3) = 7
82 static int queue_empty(struct ddcb_queue
*queue
)
84 return queue
->ddcb_next
== queue
->ddcb_act
;
87 static int queue_enqueued_ddcbs(struct ddcb_queue
*queue
)
89 if (queue
->ddcb_next
>= queue
->ddcb_act
)
90 return queue
->ddcb_next
- queue
->ddcb_act
;
92 return queue
->ddcb_max
- (queue
->ddcb_act
- queue
->ddcb_next
);
95 static int queue_free_ddcbs(struct ddcb_queue
*queue
)
97 int free_ddcbs
= queue
->ddcb_max
- queue_enqueued_ddcbs(queue
) - 1;
99 if (WARN_ON_ONCE(free_ddcbs
< 0)) { /* must never ever happen! */
106 * Use of the PRIV field in the DDCB for queue debugging:
108 * (1) Trying to get rid of a DDCB which saw a timeout:
109 * pddcb->priv[6] = 0xcc; # cleared
111 * (2) Append a DDCB via NEXT bit:
112 * pddcb->priv[7] = 0xaa; # appended
114 * (3) DDCB needed tapping:
115 * pddcb->priv[7] = 0xbb; # tapped
117 * (4) DDCB marked as correctly finished:
118 * pddcb->priv[6] = 0xff; # finished
121 static inline void ddcb_mark_tapped(struct ddcb
*pddcb
)
123 pddcb
->priv
[7] = 0xbb; /* tapped */
126 static inline void ddcb_mark_appended(struct ddcb
*pddcb
)
128 pddcb
->priv
[7] = 0xaa; /* appended */
131 static inline void ddcb_mark_cleared(struct ddcb
*pddcb
)
133 pddcb
->priv
[6] = 0xcc; /* cleared */
136 static inline void ddcb_mark_finished(struct ddcb
*pddcb
)
138 pddcb
->priv
[6] = 0xff; /* finished */
141 static inline void ddcb_mark_unused(struct ddcb
*pddcb
)
143 pddcb
->priv_64
= cpu_to_be64(0); /* not tapped */
147 * genwqe_crc16() - Generate 16-bit crc as required for DDCBs
148 * @buff: pointer to data buffer
149 * @len: length of data for calculation
150 * @init: initial crc (0xffff at start)
152 * Polynomial = x^16 + x^12 + x^5 + 1 (0x1021)
153 * Example: 4 bytes 0x01 0x02 0x03 0x04 with init = 0xffff
154 * should result in a crc16 of 0x89c3
156 * Return: crc16 checksum in big endian format !
158 static inline u16
genwqe_crc16(const u8
*buff
, size_t len
, u16 init
)
160 return crc_itu_t(init
, buff
, len
);
163 static void print_ddcb_info(struct genwqe_dev
*cd
, struct ddcb_queue
*queue
)
168 struct pci_dev
*pci_dev
= cd
->pci_dev
;
170 spin_lock_irqsave(&cd
->print_lock
, flags
);
172 dev_info(&pci_dev
->dev
,
173 "DDCB list for card #%d (ddcb_act=%d / ddcb_next=%d):\n",
174 cd
->card_idx
, queue
->ddcb_act
, queue
->ddcb_next
);
176 pddcb
= queue
->ddcb_vaddr
;
177 for (i
= 0; i
< queue
->ddcb_max
; i
++) {
178 dev_err(&pci_dev
->dev
,
179 " %c %-3d: RETC=%03x SEQ=%04x HSI=%02X SHI=%02x PRIV=%06llx CMD=%03x\n",
180 i
== queue
->ddcb_act
? '>' : ' ',
182 be16_to_cpu(pddcb
->retc_16
),
183 be16_to_cpu(pddcb
->seqnum_16
),
186 be64_to_cpu(pddcb
->priv_64
),
190 spin_unlock_irqrestore(&cd
->print_lock
, flags
);
193 struct genwqe_ddcb_cmd
*ddcb_requ_alloc(void)
195 struct ddcb_requ
*req
;
197 req
= kzalloc(sizeof(*req
), GFP_KERNEL
);
204 void ddcb_requ_free(struct genwqe_ddcb_cmd
*cmd
)
206 struct ddcb_requ
*req
= container_of(cmd
, struct ddcb_requ
, cmd
);
211 static inline enum genwqe_requ_state
ddcb_requ_get_state(struct ddcb_requ
*req
)
213 return req
->req_state
;
216 static inline void ddcb_requ_set_state(struct ddcb_requ
*req
,
217 enum genwqe_requ_state new_state
)
219 req
->req_state
= new_state
;
222 static inline int ddcb_requ_collect_debug_data(struct ddcb_requ
*req
)
224 return req
->cmd
.ddata_addr
!= 0x0;
228 * ddcb_requ_finished() - Returns the hardware state of the associated DDCB
229 * @cd: pointer to genwqe device descriptor
230 * @req: DDCB work request
232 * Status of ddcb_requ mirrors this hardware state, but is copied in
233 * the ddcb_requ on interrupt/polling function. The lowlevel code
234 * should check the hardware state directly, the higher level code
235 * should check the copy.
237 * This function will also return true if the state of the queue is
238 * not GENWQE_CARD_USED. This enables us to purge all DDCBs in the
241 static int ddcb_requ_finished(struct genwqe_dev
*cd
, struct ddcb_requ
*req
)
243 return (ddcb_requ_get_state(req
) == GENWQE_REQU_FINISHED
) ||
244 (cd
->card_state
!= GENWQE_CARD_USED
);
247 #define RET_DDCB_APPENDED 1
248 #define RET_DDCB_TAPPED 2
250 * enqueue_ddcb() - Enqueue a DDCB
251 * @cd: pointer to genwqe device descriptor
252 * @queue: queue this operation should be done on
253 * @pddcb: pointer to ddcb structure
254 * @ddcb_no: pointer to ddcb number being tapped
256 * Start execution of DDCB by tapping or append to queue via NEXT
257 * bit. This is done by an atomic 'compare and swap' instruction and
258 * checking SHI and HSI of the previous DDCB.
260 * This function must only be called with ddcb_lock held.
262 * Return: 1 if new DDCB is appended to previous
263 * 2 if DDCB queue is tapped via register/simulation
265 static int enqueue_ddcb(struct genwqe_dev
*cd
, struct ddcb_queue
*queue
,
266 struct ddcb
*pddcb
, int ddcb_no
)
270 struct ddcb
*prev_ddcb
;
271 __be32 old
, new, icrc_hsi_shi
;
275 * For performance checks a Dispatch Timestamp can be put into
276 * DDCB It is supposed to use the SLU's free running counter,
277 * but this requires PCIe cycles.
279 ddcb_mark_unused(pddcb
);
281 /* check previous DDCB if already fetched */
282 prev_no
= (ddcb_no
== 0) ? queue
->ddcb_max
- 1 : ddcb_no
- 1;
283 prev_ddcb
= &queue
->ddcb_vaddr
[prev_no
];
286 * It might have happened that the HSI.FETCHED bit is
287 * set. Retry in this case. Therefore I expect maximum 2 times
290 ddcb_mark_appended(pddcb
);
291 for (try = 0; try < 2; try++) {
292 old
= prev_ddcb
->icrc_hsi_shi_32
; /* read SHI/HSI in BE32 */
294 /* try to append via NEXT bit if prev DDCB is not completed */
295 if ((old
& DDCB_COMPLETED_BE32
) != 0x00000000)
298 new = (old
| DDCB_NEXT_BE32
);
300 wmb(); /* need to ensure write ordering */
301 icrc_hsi_shi
= cmpxchg(&prev_ddcb
->icrc_hsi_shi_32
, old
, new);
303 if (icrc_hsi_shi
== old
)
304 return RET_DDCB_APPENDED
; /* appended to queue */
307 /* Queue must be re-started by updating QUEUE_OFFSET */
308 ddcb_mark_tapped(pddcb
);
309 num
= (u64
)ddcb_no
<< 8;
311 wmb(); /* need to ensure write ordering */
312 __genwqe_writeq(cd
, queue
->IO_QUEUE_OFFSET
, num
); /* start queue */
314 return RET_DDCB_TAPPED
;
318 * copy_ddcb_results() - Copy output state from real DDCB to request
319 * @req: pointer to requsted DDCB parameters
320 * @ddcb_no: pointer to ddcb number being tapped
322 * Copy DDCB ASV to request struct. There is no endian
323 * conversion made, since data structure in ASV is still
327 * - genwqe_purge_ddcb()
328 * - genwqe_check_ddcb_queue()
330 static void copy_ddcb_results(struct ddcb_requ
*req
, int ddcb_no
)
332 struct ddcb_queue
*queue
= req
->queue
;
333 struct ddcb
*pddcb
= &queue
->ddcb_vaddr
[req
->num
];
335 memcpy(&req
->cmd
.asv
[0], &pddcb
->asv
[0], DDCB_ASV_LENGTH
);
337 /* copy status flags of the variant part */
338 req
->cmd
.vcrc
= be16_to_cpu(pddcb
->vcrc_16
);
339 req
->cmd
.deque_ts
= be64_to_cpu(pddcb
->deque_ts_64
);
340 req
->cmd
.cmplt_ts
= be64_to_cpu(pddcb
->cmplt_ts_64
);
342 req
->cmd
.attn
= be16_to_cpu(pddcb
->attn_16
);
343 req
->cmd
.progress
= be32_to_cpu(pddcb
->progress_32
);
344 req
->cmd
.retc
= be16_to_cpu(pddcb
->retc_16
);
346 if (ddcb_requ_collect_debug_data(req
)) {
347 int prev_no
= (ddcb_no
== 0) ?
348 queue
->ddcb_max
- 1 : ddcb_no
- 1;
349 struct ddcb
*prev_pddcb
= &queue
->ddcb_vaddr
[prev_no
];
351 memcpy(&req
->debug_data
.ddcb_finished
, pddcb
,
352 sizeof(req
->debug_data
.ddcb_finished
));
353 memcpy(&req
->debug_data
.ddcb_prev
, prev_pddcb
,
354 sizeof(req
->debug_data
.ddcb_prev
));
359 * genwqe_check_ddcb_queue() - Checks DDCB queue for completed work equests.
360 * @cd: pointer to genwqe device descriptor
361 * @queue: queue to be checked
363 * Return: Number of DDCBs which were finished
365 static int genwqe_check_ddcb_queue(struct genwqe_dev
*cd
,
366 struct ddcb_queue
*queue
)
369 int ddcbs_finished
= 0;
370 struct pci_dev
*pci_dev
= cd
->pci_dev
;
372 spin_lock_irqsave(&queue
->ddcb_lock
, flags
);
374 /* FIXME avoid soft locking CPU */
375 while (!queue_empty(queue
) && (ddcbs_finished
< queue
->ddcb_max
)) {
378 struct ddcb_requ
*req
;
379 u16 vcrc
, vcrc_16
, retc_16
;
381 pddcb
= &queue
->ddcb_vaddr
[queue
->ddcb_act
];
383 if ((pddcb
->icrc_hsi_shi_32
& DDCB_COMPLETED_BE32
) ==
385 goto go_home
; /* not completed, continue waiting */
387 wmb(); /* Add sync to decouple prev. read operations */
389 /* Note: DDCB could be purged */
390 req
= queue
->ddcb_req
[queue
->ddcb_act
];
392 /* this occurs if DDCB is purged, not an error */
393 /* Move active DDCB further; Nothing to do anymore. */
398 * HSI=0x44 (fetched and completed), but RETC is
399 * 0x101, or even worse 0x000.
401 * In case of seeing the queue in inconsistent state
402 * we read the errcnts and the queue status to provide
403 * a trigger for our PCIe analyzer stop capturing.
405 retc_16
= be16_to_cpu(pddcb
->retc_16
);
406 if ((pddcb
->hsi
== 0x44) && (retc_16
<= 0x101)) {
408 u64 ddcb_offs
= (u64
)pddcb
- (u64
)queue
->ddcb_vaddr
;
410 errcnts
= __genwqe_readq(cd
, queue
->IO_QUEUE_ERRCNTS
);
411 status
= __genwqe_readq(cd
, queue
->IO_QUEUE_STATUS
);
413 dev_err(&pci_dev
->dev
,
414 "[%s] SEQN=%04x HSI=%02x RETC=%03x Q_ERRCNTS=%016llx Q_STATUS=%016llx DDCB_DMA_ADDR=%016llx\n",
415 __func__
, be16_to_cpu(pddcb
->seqnum_16
),
416 pddcb
->hsi
, retc_16
, errcnts
, status
,
417 queue
->ddcb_daddr
+ ddcb_offs
);
420 copy_ddcb_results(req
, queue
->ddcb_act
);
421 queue
->ddcb_req
[queue
->ddcb_act
] = NULL
; /* take from queue */
423 dev_dbg(&pci_dev
->dev
, "FINISHED DDCB#%d\n", req
->num
);
424 genwqe_hexdump(pci_dev
, pddcb
, sizeof(*pddcb
));
426 ddcb_mark_finished(pddcb
);
428 /* calculate CRC_16 to see if VCRC is correct */
429 vcrc
= genwqe_crc16(pddcb
->asv
,
430 VCRC_LENGTH(req
->cmd
.asv_length
),
432 vcrc_16
= be16_to_cpu(pddcb
->vcrc_16
);
433 if (vcrc
!= vcrc_16
) {
434 printk_ratelimited(KERN_ERR
435 "%s %s: err: wrong VCRC pre=%02x vcrc_len=%d bytes vcrc_data=%04x is not vcrc_card=%04x\n",
436 GENWQE_DEVNAME
, dev_name(&pci_dev
->dev
),
437 pddcb
->pre
, VCRC_LENGTH(req
->cmd
.asv_length
),
441 ddcb_requ_set_state(req
, GENWQE_REQU_FINISHED
);
442 queue
->ddcbs_completed
++;
443 queue
->ddcbs_in_flight
--;
445 /* wake up process waiting for this DDCB, and
446 processes on the busy queue */
447 wake_up_interruptible(&queue
->ddcb_waitqs
[queue
->ddcb_act
]);
448 wake_up_interruptible(&queue
->busy_waitq
);
451 queue
->ddcb_act
= (queue
->ddcb_act
+ 1) % queue
->ddcb_max
;
456 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
457 return ddcbs_finished
;
461 * __genwqe_wait_ddcb(): Waits until DDCB is completed
462 * @cd: pointer to genwqe device descriptor
463 * @req: pointer to requsted DDCB parameters
465 * The Service Layer will update the RETC in DDCB when processing is
468 * Return: > 0 remaining jiffies, DDCB completed
469 * -ETIMEDOUT when timeout
470 * -ERESTARTSYS when ^C
471 * -EINVAL when unknown error condition
473 * When an error is returned the called needs to ensure that
474 * purge_ddcb() is being called to get the &req removed from the
477 int __genwqe_wait_ddcb(struct genwqe_dev
*cd
, struct ddcb_requ
*req
)
480 unsigned int ddcb_no
;
481 struct ddcb_queue
*queue
;
482 struct pci_dev
*pci_dev
= cd
->pci_dev
;
492 if (ddcb_no
>= queue
->ddcb_max
)
495 rc
= wait_event_interruptible_timeout(queue
->ddcb_waitqs
[ddcb_no
],
496 ddcb_requ_finished(cd
, req
),
497 GENWQE_DDCB_SOFTWARE_TIMEOUT
* HZ
);
500 * We need to distinguish 3 cases here:
501 * 1. rc == 0 timeout occured
502 * 2. rc == -ERESTARTSYS signal received
503 * 3. rc > 0 remaining jiffies condition is true
506 struct ddcb_queue
*queue
= req
->queue
;
510 * Timeout may be caused by long task switching time.
511 * When timeout happens, check if the request has
512 * meanwhile completed.
514 genwqe_check_ddcb_queue(cd
, req
->queue
);
515 if (ddcb_requ_finished(cd
, req
))
518 dev_err(&pci_dev
->dev
,
519 "[%s] err: DDCB#%d timeout rc=%d state=%d req @ %p\n",
520 __func__
, req
->num
, rc
, ddcb_requ_get_state(req
),
522 dev_err(&pci_dev
->dev
,
523 "[%s] IO_QUEUE_STATUS=0x%016llx\n", __func__
,
524 __genwqe_readq(cd
, queue
->IO_QUEUE_STATUS
));
526 pddcb
= &queue
->ddcb_vaddr
[req
->num
];
527 genwqe_hexdump(pci_dev
, pddcb
, sizeof(*pddcb
));
529 print_ddcb_info(cd
, req
->queue
);
532 } else if (rc
== -ERESTARTSYS
) {
535 * EINTR: Stops the application
536 * ERESTARTSYS: Restartable systemcall; called again
540 dev_err(&pci_dev
->dev
,
541 "[%s] err: DDCB#%d unknown result (rc=%d) %d!\n",
542 __func__
, req
->num
, rc
, ddcb_requ_get_state(req
));
546 /* Severe error occured. Driver is forced to stop operation */
547 if (cd
->card_state
!= GENWQE_CARD_USED
) {
548 dev_err(&pci_dev
->dev
,
549 "[%s] err: DDCB#%d forced to stop (rc=%d)\n",
550 __func__
, req
->num
, rc
);
557 * get_next_ddcb() - Get next available DDCB
558 * @cd: pointer to genwqe device descriptor
560 * @num: internal DDCB number
562 * DDCB's content is completely cleared but presets for PRE and
563 * SEQNUM. This function must only be called when ddcb_lock is held.
565 * Return: NULL if no empty DDCB available otherwise ptr to next DDCB.
567 static struct ddcb
*get_next_ddcb(struct genwqe_dev
*cd
,
568 struct ddcb_queue
*queue
,
574 if (queue_free_ddcbs(queue
) == 0) /* queue is full */
578 pddcb
= &queue
->ddcb_vaddr
[queue
->ddcb_next
];
580 /* if it is not completed, we are not allowed to use it */
582 if ((pddcb
->icrc_hsi_shi_32
& DDCB_COMPLETED_BE32
) == 0x00000000)
585 *num
= queue
->ddcb_next
; /* internal DDCB number */
586 queue
->ddcb_next
= (queue
->ddcb_next
+ 1) % queue
->ddcb_max
;
588 /* clear important DDCB fields */
590 pu64
[0] = 0ULL; /* offs 0x00 (ICRC,HSI,SHI,...) */
591 pu64
[1] = 0ULL; /* offs 0x01 (ACFUNC,CMD...) */
593 /* destroy previous results in ASV */
594 pu64
[0x80/8] = 0ULL; /* offs 0x80 (ASV + 0) */
595 pu64
[0x88/8] = 0ULL; /* offs 0x88 (ASV + 0x08) */
596 pu64
[0x90/8] = 0ULL; /* offs 0x90 (ASV + 0x10) */
597 pu64
[0x98/8] = 0ULL; /* offs 0x98 (ASV + 0x18) */
598 pu64
[0xd0/8] = 0ULL; /* offs 0xd0 (RETC,ATTN...) */
600 pddcb
->pre
= DDCB_PRESET_PRE
; /* 128 */
601 pddcb
->seqnum_16
= cpu_to_be16(queue
->ddcb_seq
++);
606 * __genwqe_purge_ddcb() - Remove a DDCB from the workqueue
607 * @cd: genwqe device descriptor
610 * This will fail when the request was already FETCHED. In this case
611 * we need to wait until it is finished. Else the DDCB can be
612 * reused. This function also ensures that the request data structure
613 * is removed from ddcb_req[].
615 * Do not forget to call this function when genwqe_wait_ddcb() fails,
616 * such that the request gets really removed from ddcb_req[].
620 int __genwqe_purge_ddcb(struct genwqe_dev
*cd
, struct ddcb_requ
*req
)
622 struct ddcb
*pddcb
= NULL
;
625 struct ddcb_queue
*queue
= req
->queue
;
626 struct pci_dev
*pci_dev
= cd
->pci_dev
;
628 __be32 icrc_hsi_shi
= 0x0000;
631 /* unsigned long flags; */
632 if (GENWQE_DDCB_SOFTWARE_TIMEOUT
<= 0) {
633 dev_err(&pci_dev
->dev
,
634 "[%s] err: software timeout is not set!\n", __func__
);
638 pddcb
= &queue
->ddcb_vaddr
[req
->num
];
640 for (t
= 0; t
< GENWQE_DDCB_SOFTWARE_TIMEOUT
* 10; t
++) {
642 spin_lock_irqsave(&queue
->ddcb_lock
, flags
);
644 /* Check if req was meanwhile finished */
645 if (ddcb_requ_get_state(req
) == GENWQE_REQU_FINISHED
)
648 /* try to set PURGE bit if FETCHED/COMPLETED are not set */
649 old
= pddcb
->icrc_hsi_shi_32
; /* read SHI/HSI in BE32 */
650 if ((old
& DDCB_FETCHED_BE32
) == 0x00000000) {
652 new = (old
| DDCB_PURGE_BE32
);
653 icrc_hsi_shi
= cmpxchg(&pddcb
->icrc_hsi_shi_32
,
655 if (icrc_hsi_shi
== old
)
659 /* normal finish with HSI bit */
661 icrc_hsi_shi
= pddcb
->icrc_hsi_shi_32
;
662 if (icrc_hsi_shi
& DDCB_COMPLETED_BE32
)
665 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
668 * Here the check_ddcb() function will most likely
669 * discover this DDCB to be finished some point in
670 * time. It will mark the req finished and free it up
674 copy_ddcb_results(req
, req
->num
); /* for the failing case */
675 msleep(100); /* sleep for 1/10 second and try again */
679 copy_ddcb_results(req
, req
->num
);
680 ddcb_requ_set_state(req
, GENWQE_REQU_FINISHED
);
681 queue
->ddcbs_in_flight
--;
682 queue
->ddcb_req
[req
->num
] = NULL
; /* delete from array */
683 ddcb_mark_cleared(pddcb
);
685 /* Move active DDCB further; Nothing to do here anymore. */
688 * We need to ensure that there is at least one free
689 * DDCB in the queue. To do that, we must update
690 * ddcb_act only if the COMPLETED bit is set for the
691 * DDCB we are working on else we treat that DDCB even
692 * if we PURGED it as occupied (hardware is supposed
693 * to set the COMPLETED bit yet!).
695 icrc_hsi_shi
= pddcb
->icrc_hsi_shi_32
;
696 if ((icrc_hsi_shi
& DDCB_COMPLETED_BE32
) &&
697 (queue
->ddcb_act
== req
->num
)) {
698 queue
->ddcb_act
= ((queue
->ddcb_act
+ 1) %
702 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
707 * If the card is dead and the queue is forced to stop, we
708 * might see this in the queue status register.
710 queue_status
= __genwqe_readq(cd
, queue
->IO_QUEUE_STATUS
);
712 dev_dbg(&pci_dev
->dev
, "UN/FINISHED DDCB#%d\n", req
->num
);
713 genwqe_hexdump(pci_dev
, pddcb
, sizeof(*pddcb
));
715 dev_err(&pci_dev
->dev
,
716 "[%s] err: DDCB#%d not purged and not completed after %d seconds QSTAT=%016llx!!\n",
717 __func__
, req
->num
, GENWQE_DDCB_SOFTWARE_TIMEOUT
,
720 print_ddcb_info(cd
, req
->queue
);
725 int genwqe_init_debug_data(struct genwqe_dev
*cd
, struct genwqe_debug_data
*d
)
728 struct pci_dev
*pci_dev
= cd
->pci_dev
;
731 dev_err(&pci_dev
->dev
,
732 "[%s] err: invalid memory for debug data!\n",
737 len
= sizeof(d
->driver_version
);
738 snprintf(d
->driver_version
, len
, "%s", DRV_VERSION
);
739 d
->slu_unitcfg
= cd
->slu_unitcfg
;
740 d
->app_unitcfg
= cd
->app_unitcfg
;
745 * __genwqe_enqueue_ddcb() - Enqueue a DDCB
746 * @cd: pointer to genwqe device descriptor
747 * @req: pointer to DDCB execution request
748 * @f_flags: file mode: blocking, non-blocking
750 * Return: 0 if enqueuing succeeded
751 * -EIO if card is unusable/PCIe problems
752 * -EBUSY if enqueuing failed
754 int __genwqe_enqueue_ddcb(struct genwqe_dev
*cd
, struct ddcb_requ
*req
,
755 unsigned int f_flags
)
759 struct ddcb_queue
*queue
;
760 struct pci_dev
*pci_dev
= cd
->pci_dev
;
764 if (cd
->card_state
!= GENWQE_CARD_USED
) {
765 printk_ratelimited(KERN_ERR
766 "%s %s: [%s] Card is unusable/PCIe problem Req#%d\n",
767 GENWQE_DEVNAME
, dev_name(&pci_dev
->dev
),
772 queue
= req
->queue
= &cd
->queue
;
774 /* FIXME circumvention to improve performance when no irq is
777 if (GENWQE_POLLING_ENABLED
)
778 genwqe_check_ddcb_queue(cd
, queue
);
781 * It must be ensured to process all DDCBs in successive
782 * order. Use a lock here in order to prevent nested DDCB
785 spin_lock_irqsave(&queue
->ddcb_lock
, flags
);
787 pddcb
= get_next_ddcb(cd
, queue
, &req
->num
); /* get ptr and num */
791 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
793 if (f_flags
& O_NONBLOCK
) {
794 queue
->return_on_busy
++;
798 queue
->wait_on_busy
++;
799 rc
= wait_event_interruptible(queue
->busy_waitq
,
800 queue_free_ddcbs(queue
) != 0);
801 dev_dbg(&pci_dev
->dev
, "[%s] waiting for free DDCB: rc=%d\n",
803 if (rc
== -ERESTARTSYS
)
804 return rc
; /* interrupted by a signal */
809 if (queue
->ddcb_req
[req
->num
] != NULL
) {
810 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
812 dev_err(&pci_dev
->dev
,
813 "[%s] picked DDCB %d with req=%p still in use!!\n",
814 __func__
, req
->num
, req
);
817 ddcb_requ_set_state(req
, GENWQE_REQU_ENQUEUED
);
818 queue
->ddcb_req
[req
->num
] = req
;
820 pddcb
->cmdopts_16
= cpu_to_be16(req
->cmd
.cmdopts
);
821 pddcb
->cmd
= req
->cmd
.cmd
;
822 pddcb
->acfunc
= req
->cmd
.acfunc
; /* functional unit */
825 * We know that we can get retc 0x104 with CRC error, do not
826 * stop the queue in those cases for this command. XDIR = 1
827 * does not work for old SLU versions.
829 * Last bitstream with the old XDIR behavior had SLU_ID
832 if ((cd
->slu_unitcfg
& 0xFFFF0ull
) > 0x34199ull
)
838 pddcb
->psp
= (((req
->cmd
.asiv_length
/ 8) << 4) |
839 ((req
->cmd
.asv_length
/ 8)));
840 pddcb
->disp_ts_64
= cpu_to_be64(req
->cmd
.disp_ts
);
843 * If copying the whole DDCB_ASIV_LENGTH is impacting
844 * performance we need to change it to
845 * req->cmd.asiv_length. But simulation benefits from some
846 * non-architectured bits behind the architectured content.
848 * How much data is copied depends on the availability of the
849 * ATS field, which was introduced late. If the ATS field is
850 * supported ASIV is 8 bytes shorter than it used to be. Since
851 * the ATS field is copied too, the code should do exactly
852 * what it did before, but I wanted to make copying of the ATS
853 * field very explicit.
855 if (genwqe_get_slu_id(cd
) <= 0x2) {
856 memcpy(&pddcb
->__asiv
[0], /* destination */
857 &req
->cmd
.__asiv
[0], /* source */
858 DDCB_ASIV_LENGTH
); /* req->cmd.asiv_length */
860 pddcb
->n
.ats_64
= cpu_to_be64(req
->cmd
.ats
);
861 memcpy(&pddcb
->n
.asiv
[0], /* destination */
862 &req
->cmd
.asiv
[0], /* source */
863 DDCB_ASIV_LENGTH_ATS
); /* req->cmd.asiv_length */
866 pddcb
->icrc_hsi_shi_32
= cpu_to_be32(0x00000000); /* for crc */
869 * Calculate CRC_16 for corresponding range PSP(7:4). Include
870 * empty 4 bytes prior to the data.
872 icrc
= genwqe_crc16((const u8
*)pddcb
,
873 ICRC_LENGTH(req
->cmd
.asiv_length
), 0xffff);
874 pddcb
->icrc_hsi_shi_32
= cpu_to_be32((u32
)icrc
<< 16);
876 /* enable DDCB completion irq */
877 if (!GENWQE_POLLING_ENABLED
)
878 pddcb
->icrc_hsi_shi_32
|= DDCB_INTR_BE32
;
880 dev_dbg(&pci_dev
->dev
, "INPUT DDCB#%d\n", req
->num
);
881 genwqe_hexdump(pci_dev
, pddcb
, sizeof(*pddcb
));
883 if (ddcb_requ_collect_debug_data(req
)) {
884 /* use the kernel copy of debug data. copying back to
885 user buffer happens later */
887 genwqe_init_debug_data(cd
, &req
->debug_data
);
888 memcpy(&req
->debug_data
.ddcb_before
, pddcb
,
889 sizeof(req
->debug_data
.ddcb_before
));
892 enqueue_ddcb(cd
, queue
, pddcb
, req
->num
);
893 queue
->ddcbs_in_flight
++;
895 if (queue
->ddcbs_in_flight
> queue
->ddcbs_max_in_flight
)
896 queue
->ddcbs_max_in_flight
= queue
->ddcbs_in_flight
;
898 ddcb_requ_set_state(req
, GENWQE_REQU_TAPPED
);
899 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
900 wake_up_interruptible(&cd
->queue_waitq
);
906 * __genwqe_execute_raw_ddcb() - Setup and execute DDCB
907 * @cd: pointer to genwqe device descriptor
908 * @cmd: user provided DDCB command
909 * @f_flags: file mode: blocking, non-blocking
911 int __genwqe_execute_raw_ddcb(struct genwqe_dev
*cd
,
912 struct genwqe_ddcb_cmd
*cmd
,
913 unsigned int f_flags
)
916 struct pci_dev
*pci_dev
= cd
->pci_dev
;
917 struct ddcb_requ
*req
= container_of(cmd
, struct ddcb_requ
, cmd
);
919 if (cmd
->asiv_length
> DDCB_ASIV_LENGTH
) {
920 dev_err(&pci_dev
->dev
, "[%s] err: wrong asiv_length of %d\n",
921 __func__
, cmd
->asiv_length
);
924 if (cmd
->asv_length
> DDCB_ASV_LENGTH
) {
925 dev_err(&pci_dev
->dev
, "[%s] err: wrong asv_length of %d\n",
926 __func__
, cmd
->asiv_length
);
929 rc
= __genwqe_enqueue_ddcb(cd
, req
, f_flags
);
933 rc
= __genwqe_wait_ddcb(cd
, req
);
934 if (rc
< 0) /* error or signal interrupt */
937 if (ddcb_requ_collect_debug_data(req
)) {
938 if (copy_to_user((struct genwqe_debug_data __user
*)
939 (unsigned long)cmd
->ddata_addr
,
941 sizeof(struct genwqe_debug_data
)))
946 * Higher values than 0x102 indicate completion with faults,
947 * lower values than 0x102 indicate processing faults. Note
948 * that DDCB might have been purged. E.g. Cntl+C.
950 if (cmd
->retc
!= DDCB_RETC_COMPLETE
) {
951 /* This might happen e.g. flash read, and needs to be
952 handled by the upper layer code. */
953 rc
= -EBADMSG
; /* not processed/error retc */
959 __genwqe_purge_ddcb(cd
, req
);
961 if (ddcb_requ_collect_debug_data(req
)) {
962 if (copy_to_user((struct genwqe_debug_data __user
*)
963 (unsigned long)cmd
->ddata_addr
,
965 sizeof(struct genwqe_debug_data
)))
972 * genwqe_next_ddcb_ready() - Figure out if the next DDCB is already finished
973 * @cd: pointer to genwqe device descriptor
975 * We use this as condition for our wait-queue code.
977 static int genwqe_next_ddcb_ready(struct genwqe_dev
*cd
)
981 struct ddcb_queue
*queue
= &cd
->queue
;
983 spin_lock_irqsave(&queue
->ddcb_lock
, flags
);
985 if (queue_empty(queue
)) { /* emtpy queue */
986 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
990 pddcb
= &queue
->ddcb_vaddr
[queue
->ddcb_act
];
991 if (pddcb
->icrc_hsi_shi_32
& DDCB_COMPLETED_BE32
) { /* ddcb ready */
992 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
996 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
1001 * genwqe_ddcbs_in_flight() - Check how many DDCBs are in flight
1002 * @cd: pointer to genwqe device descriptor
1004 * Keep track on the number of DDCBs which ware currently in the
1005 * queue. This is needed for statistics as well as conditon if we want
1006 * to wait or better do polling in case of no interrupts available.
1008 int genwqe_ddcbs_in_flight(struct genwqe_dev
*cd
)
1010 unsigned long flags
;
1011 int ddcbs_in_flight
= 0;
1012 struct ddcb_queue
*queue
= &cd
->queue
;
1014 spin_lock_irqsave(&queue
->ddcb_lock
, flags
);
1015 ddcbs_in_flight
+= queue
->ddcbs_in_flight
;
1016 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
1018 return ddcbs_in_flight
;
1021 static int setup_ddcb_queue(struct genwqe_dev
*cd
, struct ddcb_queue
*queue
)
1026 unsigned int queue_size
;
1027 struct pci_dev
*pci_dev
= cd
->pci_dev
;
1029 if (GENWQE_DDCB_MAX
< 2)
1032 queue_size
= roundup(GENWQE_DDCB_MAX
* sizeof(struct ddcb
), PAGE_SIZE
);
1034 queue
->ddcbs_in_flight
= 0; /* statistics */
1035 queue
->ddcbs_max_in_flight
= 0;
1036 queue
->ddcbs_completed
= 0;
1037 queue
->return_on_busy
= 0;
1038 queue
->wait_on_busy
= 0;
1040 queue
->ddcb_seq
= 0x100; /* start sequence number */
1041 queue
->ddcb_max
= GENWQE_DDCB_MAX
;
1042 queue
->ddcb_vaddr
= __genwqe_alloc_consistent(cd
, queue_size
,
1043 &queue
->ddcb_daddr
);
1044 if (queue
->ddcb_vaddr
== NULL
) {
1045 dev_err(&pci_dev
->dev
,
1046 "[%s] **err: could not allocate DDCB **\n", __func__
);
1049 queue
->ddcb_req
= kcalloc(queue
->ddcb_max
, sizeof(struct ddcb_requ
*),
1051 if (!queue
->ddcb_req
) {
1056 queue
->ddcb_waitqs
= kcalloc(queue
->ddcb_max
,
1057 sizeof(wait_queue_head_t
),
1059 if (!queue
->ddcb_waitqs
) {
1064 for (i
= 0; i
< queue
->ddcb_max
; i
++) {
1065 pddcb
= &queue
->ddcb_vaddr
[i
]; /* DDCBs */
1066 pddcb
->icrc_hsi_shi_32
= DDCB_COMPLETED_BE32
;
1067 pddcb
->retc_16
= cpu_to_be16(0xfff);
1069 queue
->ddcb_req
[i
] = NULL
; /* requests */
1070 init_waitqueue_head(&queue
->ddcb_waitqs
[i
]); /* waitqueues */
1073 queue
->ddcb_act
= 0;
1074 queue
->ddcb_next
= 0; /* queue is empty */
1076 spin_lock_init(&queue
->ddcb_lock
);
1077 init_waitqueue_head(&queue
->busy_waitq
);
1079 val64
= ((u64
)(queue
->ddcb_max
- 1) << 8); /* lastptr */
1080 __genwqe_writeq(cd
, queue
->IO_QUEUE_CONFIG
, 0x07); /* iCRC/vCRC */
1081 __genwqe_writeq(cd
, queue
->IO_QUEUE_SEGMENT
, queue
->ddcb_daddr
);
1082 __genwqe_writeq(cd
, queue
->IO_QUEUE_INITSQN
, queue
->ddcb_seq
);
1083 __genwqe_writeq(cd
, queue
->IO_QUEUE_WRAP
, val64
);
1087 kfree(queue
->ddcb_req
);
1088 queue
->ddcb_req
= NULL
;
1090 __genwqe_free_consistent(cd
, queue_size
, queue
->ddcb_vaddr
,
1092 queue
->ddcb_vaddr
= NULL
;
1093 queue
->ddcb_daddr
= 0ull;
1098 static int ddcb_queue_initialized(struct ddcb_queue
*queue
)
1100 return queue
->ddcb_vaddr
!= NULL
;
1103 static void free_ddcb_queue(struct genwqe_dev
*cd
, struct ddcb_queue
*queue
)
1105 unsigned int queue_size
;
1107 queue_size
= roundup(queue
->ddcb_max
* sizeof(struct ddcb
), PAGE_SIZE
);
1109 kfree(queue
->ddcb_req
);
1110 queue
->ddcb_req
= NULL
;
1112 if (queue
->ddcb_vaddr
) {
1113 __genwqe_free_consistent(cd
, queue_size
, queue
->ddcb_vaddr
,
1115 queue
->ddcb_vaddr
= NULL
;
1116 queue
->ddcb_daddr
= 0ull;
1120 static irqreturn_t
genwqe_pf_isr(int irq
, void *dev_id
)
1123 struct genwqe_dev
*cd
= (struct genwqe_dev
*)dev_id
;
1124 struct pci_dev
*pci_dev
= cd
->pci_dev
;
1127 * In case of fatal FIR error the queue is stopped, such that
1128 * we can safely check it without risking anything.
1130 cd
->irqs_processed
++;
1131 wake_up_interruptible(&cd
->queue_waitq
);
1134 * Checking for errors before kicking the queue might be
1135 * safer, but slower for the good-case ... See above.
1137 gfir
= __genwqe_readq(cd
, IO_SLC_CFGREG_GFIR
);
1138 if (((gfir
& GFIR_ERR_TRIGGER
) != 0x0) &&
1139 !pci_channel_offline(pci_dev
)) {
1141 if (cd
->use_platform_recovery
) {
1143 * Since we use raw accessors, EEH errors won't be
1144 * detected by the platform until we do a non-raw
1145 * MMIO or config space read
1147 readq(cd
->mmio
+ IO_SLC_CFGREG_GFIR
);
1149 /* Don't do anything if the PCI channel is frozen */
1150 if (pci_channel_offline(pci_dev
))
1154 wake_up_interruptible(&cd
->health_waitq
);
1157 * By default GFIRs causes recovery actions. This
1158 * count is just for debug when recovery is masked.
1160 dev_err_ratelimited(&pci_dev
->dev
,
1161 "[%s] GFIR=%016llx\n",
1169 static irqreturn_t
genwqe_vf_isr(int irq
, void *dev_id
)
1171 struct genwqe_dev
*cd
= (struct genwqe_dev
*)dev_id
;
1173 cd
->irqs_processed
++;
1174 wake_up_interruptible(&cd
->queue_waitq
);
1180 * genwqe_card_thread() - Work thread for the DDCB queue
1181 * @data: pointer to genwqe device descriptor
1183 * The idea is to check if there are DDCBs in processing. If there are
1184 * some finished DDCBs, we process them and wakeup the
1185 * requestors. Otherwise we give other processes time using
1188 static int genwqe_card_thread(void *data
)
1190 int should_stop
= 0;
1191 struct genwqe_dev
*cd
= (struct genwqe_dev
*)data
;
1193 while (!kthread_should_stop()) {
1195 genwqe_check_ddcb_queue(cd
, &cd
->queue
);
1197 if (GENWQE_POLLING_ENABLED
) {
1198 wait_event_interruptible_timeout(
1200 genwqe_ddcbs_in_flight(cd
) ||
1201 (should_stop
= kthread_should_stop()), 1);
1203 wait_event_interruptible_timeout(
1205 genwqe_next_ddcb_ready(cd
) ||
1206 (should_stop
= kthread_should_stop()), HZ
);
1212 * Avoid soft lockups on heavy loads; we do not want
1213 * to disable our interrupts.
1221 * genwqe_setup_service_layer() - Setup DDCB queue
1222 * @cd: pointer to genwqe device descriptor
1224 * Allocate DDCBs. Configure Service Layer Controller (SLC).
1228 int genwqe_setup_service_layer(struct genwqe_dev
*cd
)
1231 struct ddcb_queue
*queue
;
1232 struct pci_dev
*pci_dev
= cd
->pci_dev
;
1234 if (genwqe_is_privileged(cd
)) {
1235 rc
= genwqe_card_reset(cd
);
1237 dev_err(&pci_dev
->dev
,
1238 "[%s] err: reset failed.\n", __func__
);
1241 genwqe_read_softreset(cd
);
1245 queue
->IO_QUEUE_CONFIG
= IO_SLC_QUEUE_CONFIG
;
1246 queue
->IO_QUEUE_STATUS
= IO_SLC_QUEUE_STATUS
;
1247 queue
->IO_QUEUE_SEGMENT
= IO_SLC_QUEUE_SEGMENT
;
1248 queue
->IO_QUEUE_INITSQN
= IO_SLC_QUEUE_INITSQN
;
1249 queue
->IO_QUEUE_OFFSET
= IO_SLC_QUEUE_OFFSET
;
1250 queue
->IO_QUEUE_WRAP
= IO_SLC_QUEUE_WRAP
;
1251 queue
->IO_QUEUE_WTIME
= IO_SLC_QUEUE_WTIME
;
1252 queue
->IO_QUEUE_ERRCNTS
= IO_SLC_QUEUE_ERRCNTS
;
1253 queue
->IO_QUEUE_LRW
= IO_SLC_QUEUE_LRW
;
1255 rc
= setup_ddcb_queue(cd
, queue
);
1261 init_waitqueue_head(&cd
->queue_waitq
);
1262 cd
->card_thread
= kthread_run(genwqe_card_thread
, cd
,
1263 GENWQE_DEVNAME
"%d_thread",
1265 if (IS_ERR(cd
->card_thread
)) {
1266 rc
= PTR_ERR(cd
->card_thread
);
1267 cd
->card_thread
= NULL
;
1268 goto stop_free_queue
;
1271 rc
= genwqe_set_interrupt_capability(cd
, GENWQE_MSI_IRQS
);
1276 * We must have all wait-queues initialized when we enable the
1277 * interrupts. Otherwise we might crash if we get an early
1280 init_waitqueue_head(&cd
->health_waitq
);
1282 if (genwqe_is_privileged(cd
)) {
1283 rc
= request_irq(pci_dev
->irq
, genwqe_pf_isr
, IRQF_SHARED
,
1284 GENWQE_DEVNAME
, cd
);
1286 rc
= request_irq(pci_dev
->irq
, genwqe_vf_isr
, IRQF_SHARED
,
1287 GENWQE_DEVNAME
, cd
);
1290 dev_err(&pci_dev
->dev
, "irq %d not free.\n", pci_dev
->irq
);
1294 cd
->card_state
= GENWQE_CARD_USED
;
1298 genwqe_reset_interrupt_capability(cd
);
1300 kthread_stop(cd
->card_thread
);
1301 cd
->card_thread
= NULL
;
1303 free_ddcb_queue(cd
, queue
);
1309 * queue_wake_up_all() - Handles fatal error case
1310 * @cd: pointer to genwqe device descriptor
1312 * The PCI device got unusable and we have to stop all pending
1313 * requests as fast as we can. The code after this must purge the
1314 * DDCBs in question and ensure that all mappings are freed.
1316 static int queue_wake_up_all(struct genwqe_dev
*cd
)
1319 unsigned long flags
;
1320 struct ddcb_queue
*queue
= &cd
->queue
;
1322 spin_lock_irqsave(&queue
->ddcb_lock
, flags
);
1324 for (i
= 0; i
< queue
->ddcb_max
; i
++)
1325 wake_up_interruptible(&queue
->ddcb_waitqs
[queue
->ddcb_act
]);
1327 wake_up_interruptible(&queue
->busy_waitq
);
1328 spin_unlock_irqrestore(&queue
->ddcb_lock
, flags
);
1334 * genwqe_finish_queue() - Remove any genwqe devices and user-interfaces
1335 * @cd: pointer to genwqe device descriptor
1337 * Relies on the pre-condition that there are no users of the card
1338 * device anymore e.g. with open file-descriptors.
1340 * This function must be robust enough to be called twice.
1342 int genwqe_finish_queue(struct genwqe_dev
*cd
)
1344 int i
, rc
= 0, in_flight
;
1345 int waitmax
= GENWQE_DDCB_SOFTWARE_TIMEOUT
;
1346 struct pci_dev
*pci_dev
= cd
->pci_dev
;
1347 struct ddcb_queue
*queue
= &cd
->queue
;
1349 if (!ddcb_queue_initialized(queue
))
1352 /* Do not wipe out the error state. */
1353 if (cd
->card_state
== GENWQE_CARD_USED
)
1354 cd
->card_state
= GENWQE_CARD_UNUSED
;
1356 /* Wake up all requests in the DDCB queue such that they
1357 should be removed nicely. */
1358 queue_wake_up_all(cd
);
1360 /* We must wait to get rid of the DDCBs in flight */
1361 for (i
= 0; i
< waitmax
; i
++) {
1362 in_flight
= genwqe_ddcbs_in_flight(cd
);
1367 dev_dbg(&pci_dev
->dev
,
1368 " DEBUG [%d/%d] waiting for queue to get empty: %d requests!\n",
1369 i
, waitmax
, in_flight
);
1372 * Severe severe error situation: The card itself has
1373 * 16 DDCB queues, each queue has e.g. 32 entries,
1374 * each DDBC has a hardware timeout of currently 250
1375 * msec but the PFs have a hardware timeout of 8 sec
1376 * ... so I take something large.
1381 dev_err(&pci_dev
->dev
, " [%s] err: queue is not empty!!\n",
1389 * genwqe_release_service_layer() - Shutdown DDCB queue
1390 * @cd: genwqe device descriptor
1392 * This function must be robust enough to be called twice.
1394 int genwqe_release_service_layer(struct genwqe_dev
*cd
)
1396 struct pci_dev
*pci_dev
= cd
->pci_dev
;
1398 if (!ddcb_queue_initialized(&cd
->queue
))
1401 free_irq(pci_dev
->irq
, cd
);
1402 genwqe_reset_interrupt_capability(cd
);
1404 if (cd
->card_thread
!= NULL
) {
1405 kthread_stop(cd
->card_thread
);
1406 cd
->card_thread
= NULL
;
1409 free_ddcb_queue(cd
, &cd
->queue
);