blob: 6edffeed99534935f320b5b3d6e941dad15a968d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2003 Russell King, All Rights Reserved.
Pierre Ossman98ac2162006-12-23 20:03:02 +01003 * Copyright 2006-2007 Pierre Ossman
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/blkdev.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070013#include <linux/freezer.h>
Christoph Hellwig87598a22006-11-13 20:23:52 +010014#include <linux/kthread.h>
Jens Axboe45711f12007-10-22 21:19:53 +020015#include <linux/scatterlist.h>
Santosh Shilimkar8e0cb8a2013-07-29 14:20:15 +010016#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <linux/mmc/card.h>
19#include <linux/mmc/host.h>
Linus Walleij29eb7bd2016-09-20 11:34:38 +020020
Pierre Ossman98ac2162006-12-23 20:03:02 +010021#include "queue.h"
Linus Walleij29eb7bd2016-09-20 11:34:38 +020022#include "block.h"
Ulf Hansson55244c52017-01-13 14:14:08 +010023#include "core.h"
Ulf Hansson4facdde2017-01-13 14:14:14 +010024#include "card.h"
Adrian Hunter81196972017-11-29 15:41:03 +020025#include "host.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Adrian Hunter1e8e55b2017-11-29 15:41:04 +020027static inline bool mmc_cqe_dcmd_busy(struct mmc_queue *mq)
28{
29 /* Allow only 1 DCMD at a time */
30 return mq->in_flight[MMC_ISSUE_DCMD];
31}
32
33void mmc_cqe_check_busy(struct mmc_queue *mq)
34{
35 if ((mq->cqe_busy & MMC_CQE_DCMD_BUSY) && !mmc_cqe_dcmd_busy(mq))
36 mq->cqe_busy &= ~MMC_CQE_DCMD_BUSY;
37
38 mq->cqe_busy &= ~MMC_CQE_QUEUE_FULL;
39}
40
41static inline bool mmc_cqe_can_dcmd(struct mmc_host *host)
42{
43 return host->caps2 & MMC_CAP2_CQE_DCMD;
44}
45
Colin Ian King15ff2942017-11-30 11:37:38 +000046static enum mmc_issue_type mmc_cqe_issue_type(struct mmc_host *host,
47 struct request *req)
Adrian Hunter1e8e55b2017-11-29 15:41:04 +020048{
49 switch (req_op(req)) {
50 case REQ_OP_DRV_IN:
51 case REQ_OP_DRV_OUT:
52 case REQ_OP_DISCARD:
53 case REQ_OP_SECURE_ERASE:
54 return MMC_ISSUE_SYNC;
55 case REQ_OP_FLUSH:
56 return mmc_cqe_can_dcmd(host) ? MMC_ISSUE_DCMD : MMC_ISSUE_SYNC;
57 default:
58 return MMC_ISSUE_ASYNC;
59 }
60}
61
Adrian Hunter81196972017-11-29 15:41:03 +020062enum mmc_issue_type mmc_issue_type(struct mmc_queue *mq, struct request *req)
63{
Adrian Hunter1e8e55b2017-11-29 15:41:04 +020064 struct mmc_host *host = mq->card->host;
65
66 if (mq->use_cqe)
67 return mmc_cqe_issue_type(host, req);
68
Adrian Hunter81196972017-11-29 15:41:03 +020069 if (req_op(req) == REQ_OP_READ || req_op(req) == REQ_OP_WRITE)
70 return MMC_ISSUE_ASYNC;
71
72 return MMC_ISSUE_SYNC;
73}
74
Adrian Hunter1e8e55b2017-11-29 15:41:04 +020075static void __mmc_cqe_recovery_notifier(struct mmc_queue *mq)
76{
77 if (!mq->recovery_needed) {
78 mq->recovery_needed = true;
79 schedule_work(&mq->recovery_work);
80 }
81}
82
83void mmc_cqe_recovery_notifier(struct mmc_request *mrq)
84{
85 struct mmc_queue_req *mqrq = container_of(mrq, struct mmc_queue_req,
86 brq.mrq);
87 struct request *req = mmc_queue_req_to_req(mqrq);
88 struct request_queue *q = req->q;
89 struct mmc_queue *mq = q->queuedata;
90 unsigned long flags;
91
92 spin_lock_irqsave(q->queue_lock, flags);
93 __mmc_cqe_recovery_notifier(mq);
94 spin_unlock_irqrestore(q->queue_lock, flags);
95}
96
97static enum blk_eh_timer_return mmc_cqe_timed_out(struct request *req)
98{
99 struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
100 struct mmc_request *mrq = &mqrq->brq.mrq;
101 struct mmc_queue *mq = req->q->queuedata;
102 struct mmc_host *host = mq->card->host;
103 enum mmc_issue_type issue_type = mmc_issue_type(mq, req);
104 bool recovery_needed = false;
105
106 switch (issue_type) {
107 case MMC_ISSUE_ASYNC:
108 case MMC_ISSUE_DCMD:
109 if (host->cqe_ops->cqe_timeout(host, mrq, &recovery_needed)) {
110 if (recovery_needed)
111 __mmc_cqe_recovery_notifier(mq);
112 return BLK_EH_RESET_TIMER;
113 }
Christoph Hellwigad73d6f2018-05-29 15:52:35 +0200114 /* No timeout (XXX: huh? comment doesn't make much sense) */
115 blk_mq_complete_request(req);
116 return BLK_EH_DONE;
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200117 default:
118 /* Timeout is handled by mmc core */
119 return BLK_EH_RESET_TIMER;
120 }
121}
122
Adrian Hunter81196972017-11-29 15:41:03 +0200123static enum blk_eh_timer_return mmc_mq_timed_out(struct request *req,
124 bool reserved)
125{
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200126 struct request_queue *q = req->q;
127 struct mmc_queue *mq = q->queuedata;
128 unsigned long flags;
129 int ret;
130
131 spin_lock_irqsave(q->queue_lock, flags);
132
133 if (mq->recovery_needed || !mq->use_cqe)
134 ret = BLK_EH_RESET_TIMER;
135 else
136 ret = mmc_cqe_timed_out(req);
137
138 spin_unlock_irqrestore(q->queue_lock, flags);
139
140 return ret;
141}
142
143static void mmc_mq_recovery_handler(struct work_struct *work)
144{
145 struct mmc_queue *mq = container_of(work, struct mmc_queue,
146 recovery_work);
147 struct request_queue *q = mq->queue;
148
149 mmc_get_card(mq->card, &mq->ctx);
150
151 mq->in_recovery = true;
152
Adrian Hunter10f21df42017-11-29 15:41:07 +0200153 if (mq->use_cqe)
154 mmc_blk_cqe_recovery(mq);
155 else
156 mmc_blk_mq_recovery(mq);
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200157
158 mq->in_recovery = false;
159
160 spin_lock_irq(q->queue_lock);
161 mq->recovery_needed = false;
162 spin_unlock_irq(q->queue_lock);
163
164 mmc_put_card(mq->card, &mq->ctx);
165
166 blk_mq_run_hw_queues(q, true);
Adrian Hunter81196972017-11-29 15:41:03 +0200167}
168
Linus Walleij304419d2017-05-18 11:29:32 +0200169static struct scatterlist *mmc_alloc_sg(int sg_len, gfp_t gfp)
Per Forlin97868a22011-07-09 17:12:36 -0400170{
171 struct scatterlist *sg;
172
Linus Walleij304419d2017-05-18 11:29:32 +0200173 sg = kmalloc_array(sg_len, sizeof(*sg), gfp);
Adrian Hunter7b410d02017-03-13 14:36:36 +0200174 if (sg)
Per Forlin97868a22011-07-09 17:12:36 -0400175 sg_init_table(sg, sg_len);
Per Forlin97868a22011-07-09 17:12:36 -0400176
177 return sg;
178}
179
Adrian Huntere056a1b2011-06-28 17:16:02 +0300180static void mmc_queue_setup_discard(struct request_queue *q,
181 struct mmc_card *card)
182{
183 unsigned max_discard;
184
185 max_discard = mmc_calc_max_discard(card);
186 if (!max_discard)
187 return;
188
Bart Van Assche8b904b52018-03-07 17:10:10 -0800189 blk_queue_flag_set(QUEUE_FLAG_DISCARD, q);
Jens Axboe2bb4cd52015-07-14 08:15:12 -0600190 blk_queue_max_discard_sectors(q, max_discard);
Adrian Huntere056a1b2011-06-28 17:16:02 +0300191 q->limits.discard_granularity = card->pref_erase << 9;
192 /* granularity must not be greater than max. discard */
193 if (card->pref_erase > max_discard)
194 q->limits.discard_granularity = 0;
Maya Erez775a9362013-04-18 15:41:55 +0300195 if (mmc_can_secure_erase_trim(card))
Bart Van Assche8b904b52018-03-07 17:10:10 -0800196 blk_queue_flag_set(QUEUE_FLAG_SECERASE, q);
Adrian Huntere056a1b2011-06-28 17:16:02 +0300197}
198
Linus Walleij304419d2017-05-18 11:29:32 +0200199/**
200 * mmc_init_request() - initialize the MMC-specific per-request data
201 * @q: the request queue
202 * @req: the request
203 * @gfp: memory allocation policy
204 */
Adrian Hunter81196972017-11-29 15:41:03 +0200205static int __mmc_init_request(struct mmc_queue *mq, struct request *req,
206 gfp_t gfp)
Adrian Hunterf2b8b522016-11-29 12:09:12 +0200207{
Linus Walleij304419d2017-05-18 11:29:32 +0200208 struct mmc_queue_req *mq_rq = req_to_mmc_queue_req(req);
Linus Walleij304419d2017-05-18 11:29:32 +0200209 struct mmc_card *card = mq->card;
210 struct mmc_host *host = card->host;
Adrian Hunterc8539822016-11-29 12:09:11 +0200211
Linus Walleijde3ee992017-09-20 10:56:14 +0200212 mq_rq->sg = mmc_alloc_sg(host->max_segs, gfp);
213 if (!mq_rq->sg)
214 return -ENOMEM;
Adrian Hunter64e29e422016-11-29 12:09:13 +0200215
Adrian Hunterc5bda0c2016-11-29 12:09:15 +0200216 return 0;
217}
Adrian Hunter64e29e422016-11-29 12:09:13 +0200218
Linus Walleij304419d2017-05-18 11:29:32 +0200219static void mmc_exit_request(struct request_queue *q, struct request *req)
Adrian Hunterc5bda0c2016-11-29 12:09:15 +0200220{
Linus Walleij304419d2017-05-18 11:29:32 +0200221 struct mmc_queue_req *mq_rq = req_to_mmc_queue_req(req);
Adrian Hunter64e29e422016-11-29 12:09:13 +0200222
Linus Walleij304419d2017-05-18 11:29:32 +0200223 kfree(mq_rq->sg);
224 mq_rq->sg = NULL;
Adrian Hunterc09949c2016-11-29 12:09:14 +0200225}
226
Adrian Hunter81196972017-11-29 15:41:03 +0200227static int mmc_mq_init_request(struct blk_mq_tag_set *set, struct request *req,
228 unsigned int hctx_idx, unsigned int numa_node)
229{
230 return __mmc_init_request(set->driver_data, req, GFP_KERNEL);
231}
232
233static void mmc_mq_exit_request(struct blk_mq_tag_set *set, struct request *req,
234 unsigned int hctx_idx)
235{
236 struct mmc_queue *mq = set->driver_data;
237
238 mmc_exit_request(mq->queue, req);
239}
240
Adrian Hunter81196972017-11-29 15:41:03 +0200241static blk_status_t mmc_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
242 const struct blk_mq_queue_data *bd)
243{
244 struct request *req = bd->rq;
245 struct request_queue *q = req->q;
246 struct mmc_queue *mq = q->queuedata;
247 struct mmc_card *card = mq->card;
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200248 struct mmc_host *host = card->host;
Adrian Hunter81196972017-11-29 15:41:03 +0200249 enum mmc_issue_type issue_type;
250 enum mmc_issued issued;
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200251 bool get_card, cqe_retune_ok;
Adrian Hunter81196972017-11-29 15:41:03 +0200252 int ret;
253
254 if (mmc_card_removed(mq->card)) {
255 req->rq_flags |= RQF_QUIET;
256 return BLK_STS_IOERR;
257 }
258
259 issue_type = mmc_issue_type(mq, req);
260
261 spin_lock_irq(q->queue_lock);
262
Adrian Hunter26caddf2018-08-21 15:05:55 +0300263 if (mq->recovery_needed || mq->busy) {
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200264 spin_unlock_irq(q->queue_lock);
265 return BLK_STS_RESOURCE;
266 }
267
Adrian Hunter81196972017-11-29 15:41:03 +0200268 switch (issue_type) {
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200269 case MMC_ISSUE_DCMD:
270 if (mmc_cqe_dcmd_busy(mq)) {
271 mq->cqe_busy |= MMC_CQE_DCMD_BUSY;
272 spin_unlock_irq(q->queue_lock);
273 return BLK_STS_RESOURCE;
274 }
275 break;
Adrian Hunter81196972017-11-29 15:41:03 +0200276 case MMC_ISSUE_ASYNC:
277 break;
278 default:
279 /*
280 * Timeouts are handled by mmc core, and we don't have a host
281 * API to abort requests, so we can't handle the timeout anyway.
282 * However, when the timeout happens, blk_mq_complete_request()
283 * no longer works (to stop the request disappearing under us).
284 * To avoid racing with that, set a large timeout.
285 */
286 req->timeout = 600 * HZ;
287 break;
288 }
289
Adrian Hunter26caddf2018-08-21 15:05:55 +0300290 /* Parallel dispatch of requests is not supported at the moment */
291 mq->busy = true;
292
Adrian Hunter81196972017-11-29 15:41:03 +0200293 mq->in_flight[issue_type] += 1;
294 get_card = (mmc_tot_in_flight(mq) == 1);
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200295 cqe_retune_ok = (mmc_cqe_qcnt(mq) == 1);
Adrian Hunter81196972017-11-29 15:41:03 +0200296
297 spin_unlock_irq(q->queue_lock);
298
299 if (!(req->rq_flags & RQF_DONTPREP)) {
300 req_to_mmc_queue_req(req)->retries = 0;
301 req->rq_flags |= RQF_DONTPREP;
302 }
303
304 if (get_card)
305 mmc_get_card(card, &mq->ctx);
306
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200307 if (mq->use_cqe) {
308 host->retune_now = host->need_retune && cqe_retune_ok &&
309 !host->hold_retune;
310 }
311
Adrian Hunter81196972017-11-29 15:41:03 +0200312 blk_mq_start_request(req);
313
314 issued = mmc_blk_mq_issue_rq(mq, req);
315
316 switch (issued) {
317 case MMC_REQ_BUSY:
318 ret = BLK_STS_RESOURCE;
319 break;
320 case MMC_REQ_FAILED_TO_START:
321 ret = BLK_STS_IOERR;
322 break;
323 default:
324 ret = BLK_STS_OK;
325 break;
326 }
327
328 if (issued != MMC_REQ_STARTED) {
329 bool put_card = false;
330
331 spin_lock_irq(q->queue_lock);
332 mq->in_flight[issue_type] -= 1;
333 if (mmc_tot_in_flight(mq) == 0)
334 put_card = true;
Adrian Hunter26caddf2018-08-21 15:05:55 +0300335 mq->busy = false;
Adrian Hunter81196972017-11-29 15:41:03 +0200336 spin_unlock_irq(q->queue_lock);
337 if (put_card)
338 mmc_put_card(card, &mq->ctx);
Adrian Hunter26caddf2018-08-21 15:05:55 +0300339 } else {
340 WRITE_ONCE(mq->busy, false);
Adrian Hunter81196972017-11-29 15:41:03 +0200341 }
342
343 return ret;
344}
345
346static const struct blk_mq_ops mmc_mq_ops = {
347 .queue_rq = mmc_mq_queue_rq,
348 .init_request = mmc_mq_init_request,
349 .exit_request = mmc_mq_exit_request,
350 .complete = mmc_blk_mq_complete,
351 .timeout = mmc_mq_timed_out,
352};
353
Adrian Hunterc8b5fd02017-09-22 15:36:57 +0300354static void mmc_setup_queue(struct mmc_queue *mq, struct mmc_card *card)
355{
356 struct mmc_host *host = card->host;
357 u64 limit = BLK_BOUNCE_HIGH;
358
359 if (mmc_dev(host)->dma_mask && *mmc_dev(host)->dma_mask)
360 limit = (u64)dma_max_pfn(mmc_dev(host)) << PAGE_SHIFT;
361
Bart Van Assche8b904b52018-03-07 17:10:10 -0800362 blk_queue_flag_set(QUEUE_FLAG_NONROT, mq->queue);
363 blk_queue_flag_clear(QUEUE_FLAG_ADD_RANDOM, mq->queue);
Adrian Hunterc8b5fd02017-09-22 15:36:57 +0300364 if (mmc_can_erase(card))
365 mmc_queue_setup_discard(mq->queue, card);
366
367 blk_queue_bounce_limit(mq->queue, limit);
368 blk_queue_max_hw_sectors(mq->queue,
369 min(host->max_blk_count, host->max_req_size / 512));
370 blk_queue_max_segments(mq->queue, host->max_segs);
371 blk_queue_max_segment_size(mq->queue, host->max_seg_size);
372
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200373 INIT_WORK(&mq->recovery_work, mmc_mq_recovery_handler);
Adrian Hunter81196972017-11-29 15:41:03 +0200374 INIT_WORK(&mq->complete_work, mmc_blk_mq_complete_work);
375
376 mutex_init(&mq->complete_lock);
377
378 init_waitqueue_head(&mq->wait);
379}
380
381static int mmc_mq_init_queue(struct mmc_queue *mq, int q_depth,
382 const struct blk_mq_ops *mq_ops, spinlock_t *lock)
383{
384 int ret;
385
386 memset(&mq->tag_set, 0, sizeof(mq->tag_set));
387 mq->tag_set.ops = mq_ops;
388 mq->tag_set.queue_depth = q_depth;
389 mq->tag_set.numa_node = NUMA_NO_NODE;
390 mq->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE |
391 BLK_MQ_F_BLOCKING;
392 mq->tag_set.nr_hw_queues = 1;
393 mq->tag_set.cmd_size = sizeof(struct mmc_queue_req);
394 mq->tag_set.driver_data = mq;
395
396 ret = blk_mq_alloc_tag_set(&mq->tag_set);
397 if (ret)
398 return ret;
399
400 mq->queue = blk_mq_init_queue(&mq->tag_set);
401 if (IS_ERR(mq->queue)) {
402 ret = PTR_ERR(mq->queue);
403 goto free_tag_set;
404 }
405
406 mq->queue->queue_lock = lock;
407 mq->queue->queuedata = mq;
408
409 return 0;
410
411free_tag_set:
412 blk_mq_free_tag_set(&mq->tag_set);
413
414 return ret;
415}
416
417/* Set queue depth to get a reasonable value for q->nr_requests */
418#define MMC_QUEUE_DEPTH 64
419
420static int mmc_mq_init(struct mmc_queue *mq, struct mmc_card *card,
421 spinlock_t *lock)
422{
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200423 struct mmc_host *host = card->host;
Adrian Hunter81196972017-11-29 15:41:03 +0200424 int q_depth;
425 int ret;
426
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200427 /*
428 * The queue depth for CQE must match the hardware because the request
429 * tag is used to index the hardware queue.
430 */
431 if (mq->use_cqe)
432 q_depth = min_t(int, card->ext_csd.cmdq_depth, host->cqe_qdepth);
433 else
434 q_depth = MMC_QUEUE_DEPTH;
Adrian Hunter81196972017-11-29 15:41:03 +0200435
436 ret = mmc_mq_init_queue(mq, q_depth, &mmc_mq_ops, lock);
437 if (ret)
438 return ret;
439
440 blk_queue_rq_timeout(mq->queue, 60 * HZ);
441
442 mmc_setup_queue(mq, card);
443
444 return 0;
Adrian Hunterc8b5fd02017-09-22 15:36:57 +0300445}
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447/**
448 * mmc_init_queue - initialise a queue structure.
449 * @mq: mmc queue
450 * @card: mmc card to attach this queue
451 * @lock: queue lock
Adrian Hunterd09408a2011-06-23 13:40:28 +0300452 * @subname: partition subname
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *
454 * Initialise a MMC card request queue.
455 */
Adrian Hunterd09408a2011-06-23 13:40:28 +0300456int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
457 spinlock_t *lock, const char *subname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 struct mmc_host *host = card->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 mq->card = card;
Adrian Hunter81196972017-11-29 15:41:03 +0200462
Adrian Hunter1e8e55b2017-11-29 15:41:04 +0200463 mq->use_cqe = host->cqe_enabled;
464
Adrian Hunter0fbfd122017-11-29 15:41:18 +0200465 return mmc_mq_init(mq, card, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Adrian Hunter0fbfd122017-11-29 15:41:18 +0200468void mmc_queue_suspend(struct mmc_queue *mq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Adrian Hunter81196972017-11-29 15:41:03 +0200470 blk_mq_quiesce_queue(mq->queue);
Pierre Ossman89b4e132006-11-14 22:08:16 +0100471
Adrian Hunter81196972017-11-29 15:41:03 +0200472 /*
473 * The host remains claimed while there are outstanding requests, so
474 * simply claiming and releasing here ensures there are none.
475 */
476 mmc_claim_host(mq->card->host);
477 mmc_release_host(mq->card->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Adrian Hunter0fbfd122017-11-29 15:41:18 +0200480void mmc_queue_resume(struct mmc_queue *mq)
Adrian Hunter81196972017-11-29 15:41:03 +0200481{
482 blk_mq_unquiesce_queue(mq->queue);
483}
484
Adrian Hunter81196972017-11-29 15:41:03 +0200485void mmc_cleanup_queue(struct mmc_queue *mq)
486{
487 struct request_queue *q = mq->queue;
Adrian Hunter81196972017-11-29 15:41:03 +0200488
Adrian Hunter0fbfd122017-11-29 15:41:18 +0200489 /*
490 * The legacy code handled the possibility of being suspended,
491 * so do that here too.
492 */
493 if (blk_queue_quiesced(q))
494 blk_mq_unquiesce_queue(q);
Adrian Hunter81196972017-11-29 15:41:03 +0200495
Adrian Hunter81196972017-11-29 15:41:03 +0200496 blk_cleanup_queue(q);
497
498 /*
499 * A request can be completed before the next request, potentially
500 * leaving a complete_work with nothing to do. Such a work item might
501 * still be queued at this point. Flush it.
502 */
503 flush_work(&mq->complete_work);
504
505 mq->card = NULL;
506}
507
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200508/*
509 * Prepare the sg list(s) to be handed of to the host driver
510 */
Per Forlin97868a22011-07-09 17:12:36 -0400511unsigned int mmc_queue_map_sg(struct mmc_queue *mq, struct mmc_queue_req *mqrq)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200512{
Linus Walleij67e69d52017-05-19 15:37:27 +0200513 struct request *req = mmc_queue_req_to_req(mqrq);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200514
Linus Walleijde3ee992017-09-20 10:56:14 +0200515 return blk_rq_map_sg(mq->queue, req, mqrq->sg);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200516}