Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 *  Copyright (C) 2003 Russell King, All Rights Reserved.
  4 *  Copyright 2006-2007 Pierre Ossman
 
 
 
 
 
  5 */
  6#include <linux/slab.h>
  7#include <linux/module.h>
  8#include <linux/blkdev.h>
  9#include <linux/freezer.h>
 
 10#include <linux/scatterlist.h>
 11#include <linux/dma-mapping.h>
 12#include <linux/backing-dev.h>
 13
 14#include <linux/mmc/card.h>
 15#include <linux/mmc/host.h>
 16
 17#include "queue.h"
 18#include "block.h"
 19#include "core.h"
 20#include "card.h"
 21#include "crypto.h"
 22#include "host.h"
 23
 24#define MMC_DMA_MAP_MERGE_SEGMENTS	512
 25
 26static inline bool mmc_cqe_dcmd_busy(struct mmc_queue *mq)
 27{
 28	/* Allow only 1 DCMD at a time */
 29	return mq->in_flight[MMC_ISSUE_DCMD];
 30}
 31
 32void mmc_cqe_check_busy(struct mmc_queue *mq)
 33{
 34	if ((mq->cqe_busy & MMC_CQE_DCMD_BUSY) && !mmc_cqe_dcmd_busy(mq))
 35		mq->cqe_busy &= ~MMC_CQE_DCMD_BUSY;
 
 
 36}
 37
 38static inline bool mmc_cqe_can_dcmd(struct mmc_host *host)
 39{
 40	return host->caps2 & MMC_CAP2_CQE_DCMD;
 41}
 42
 43static enum mmc_issue_type mmc_cqe_issue_type(struct mmc_host *host,
 44					      struct request *req)
 45{
 46	switch (req_op(req)) {
 47	case REQ_OP_DRV_IN:
 48	case REQ_OP_DRV_OUT:
 49	case REQ_OP_DISCARD:
 50	case REQ_OP_SECURE_ERASE:
 51	case REQ_OP_WRITE_ZEROES:
 52		return MMC_ISSUE_SYNC;
 53	case REQ_OP_FLUSH:
 54		return mmc_cqe_can_dcmd(host) ? MMC_ISSUE_DCMD : MMC_ISSUE_SYNC;
 55	default:
 56		return MMC_ISSUE_ASYNC;
 57	}
 58}
 59
 60enum mmc_issue_type mmc_issue_type(struct mmc_queue *mq, struct request *req)
 61{
 62	struct mmc_host *host = mq->card->host;
 63
 64	if (host->cqe_enabled && !host->hsq_enabled)
 65		return mmc_cqe_issue_type(host, req);
 66
 67	if (req_op(req) == REQ_OP_READ || req_op(req) == REQ_OP_WRITE)
 68		return MMC_ISSUE_ASYNC;
 69
 70	return MMC_ISSUE_SYNC;
 71}
 72
 73static void __mmc_cqe_recovery_notifier(struct mmc_queue *mq)
 74{
 75	if (!mq->recovery_needed) {
 76		mq->recovery_needed = true;
 77		schedule_work(&mq->recovery_work);
 78	}
 79}
 80
 81void mmc_cqe_recovery_notifier(struct mmc_request *mrq)
 82{
 83	struct mmc_queue_req *mqrq = container_of(mrq, struct mmc_queue_req,
 84						  brq.mrq);
 85	struct request *req = mmc_queue_req_to_req(mqrq);
 86	struct request_queue *q = req->q;
 87	struct mmc_queue *mq = q->queuedata;
 88	unsigned long flags;
 89
 90	spin_lock_irqsave(&mq->lock, flags);
 91	__mmc_cqe_recovery_notifier(mq);
 92	spin_unlock_irqrestore(&mq->lock, flags);
 93}
 94
 95static enum blk_eh_timer_return mmc_cqe_timed_out(struct request *req)
 96{
 97	struct mmc_queue_req *mqrq = req_to_mmc_queue_req(req);
 98	struct mmc_request *mrq = &mqrq->brq.mrq;
 99	struct mmc_queue *mq = req->q->queuedata;
100	struct mmc_host *host = mq->card->host;
101	enum mmc_issue_type issue_type = mmc_issue_type(mq, req);
102	bool recovery_needed = false;
103
104	switch (issue_type) {
105	case MMC_ISSUE_ASYNC:
106	case MMC_ISSUE_DCMD:
107		if (host->cqe_ops->cqe_timeout(host, mrq, &recovery_needed)) {
108			if (recovery_needed)
109				mmc_cqe_recovery_notifier(mrq);
110			return BLK_EH_RESET_TIMER;
111		}
112		/* The request has gone already */
113		return BLK_EH_DONE;
114	default:
115		/* Timeout is handled by mmc core */
116		return BLK_EH_RESET_TIMER;
117	}
118}
119
120static enum blk_eh_timer_return mmc_mq_timed_out(struct request *req)
 
121{
122	struct request_queue *q = req->q;
123	struct mmc_queue *mq = q->queuedata;
124	struct mmc_card *card = mq->card;
125	struct mmc_host *host = card->host;
126	unsigned long flags;
127	bool ignore_tout;
128
129	spin_lock_irqsave(&mq->lock, flags);
130	ignore_tout = mq->recovery_needed || !host->cqe_enabled || host->hsq_enabled;
131	spin_unlock_irqrestore(&mq->lock, flags);
132
133	return ignore_tout ? BLK_EH_RESET_TIMER : mmc_cqe_timed_out(req);
 
 
 
 
 
 
 
134}
135
136static void mmc_mq_recovery_handler(struct work_struct *work)
137{
138	struct mmc_queue *mq = container_of(work, struct mmc_queue,
139					    recovery_work);
140	struct request_queue *q = mq->queue;
141	struct mmc_host *host = mq->card->host;
142
143	mmc_get_card(mq->card, &mq->ctx);
144
145	mq->in_recovery = true;
146
147	if (host->cqe_enabled && !host->hsq_enabled)
148		mmc_blk_cqe_recovery(mq);
149	else
150		mmc_blk_mq_recovery(mq);
151
152	mq->in_recovery = false;
153
154	spin_lock_irq(&mq->lock);
155	mq->recovery_needed = false;
156	spin_unlock_irq(&mq->lock);
157
158	if (host->hsq_enabled)
159		host->cqe_ops->cqe_recovery_finish(host);
160
161	mmc_put_card(mq->card, &mq->ctx);
162
163	blk_mq_run_hw_queues(q, true);
164}
165
166static struct scatterlist *mmc_alloc_sg(unsigned short sg_len, gfp_t gfp)
167{
168	struct scatterlist *sg;
169
170	sg = kmalloc_array(sg_len, sizeof(*sg), gfp);
171	if (sg)
172		sg_init_table(sg, sg_len);
173
174	return sg;
175}
176
177static void mmc_queue_setup_discard(struct mmc_card *card,
178		struct queue_limits *lim)
179{
180	unsigned max_discard;
181
182	max_discard = mmc_calc_max_discard(card);
183	if (!max_discard)
184		return;
185
186	lim->max_hw_discard_sectors = max_discard;
187	if (mmc_can_secure_erase_trim(card))
188		lim->max_secure_erase_sectors = max_discard;
189	if (mmc_can_trim(card) && card->erased_byte == 0)
190		lim->max_write_zeroes_sectors = max_discard;
191
192	/* granularity must not be greater than max. discard */
193	if (card->pref_erase > max_discard)
194		lim->discard_granularity = SECTOR_SIZE;
195	else
196		lim->discard_granularity = card->pref_erase << 9;
197}
198
199static unsigned short mmc_get_max_segments(struct mmc_host *host)
200{
201	return host->can_dma_map_merge ? MMC_DMA_MAP_MERGE_SEGMENTS :
202					 host->max_segs;
203}
204
205static int mmc_mq_init_request(struct blk_mq_tag_set *set, struct request *req,
206			       unsigned int hctx_idx, unsigned int numa_node)
 
 
 
 
 
 
207{
208	struct mmc_queue_req *mq_rq = req_to_mmc_queue_req(req);
209	struct mmc_queue *mq = set->driver_data;
210	struct mmc_card *card = mq->card;
211	struct mmc_host *host = card->host;
212
213	mq_rq->sg = mmc_alloc_sg(mmc_get_max_segments(host), GFP_KERNEL);
214	if (!mq_rq->sg)
215		return -ENOMEM;
216
217	return 0;
218}
219
220static void mmc_mq_exit_request(struct blk_mq_tag_set *set, struct request *req,
221				unsigned int hctx_idx)
222{
223	struct mmc_queue_req *mq_rq = req_to_mmc_queue_req(req);
224
225	kfree(mq_rq->sg);
226	mq_rq->sg = NULL;
227}
228
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
229static blk_status_t mmc_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
230				    const struct blk_mq_queue_data *bd)
231{
232	struct request *req = bd->rq;
233	struct request_queue *q = req->q;
234	struct mmc_queue *mq = q->queuedata;
235	struct mmc_card *card = mq->card;
236	struct mmc_host *host = card->host;
237	enum mmc_issue_type issue_type;
238	enum mmc_issued issued;
239	bool get_card, cqe_retune_ok;
240	blk_status_t ret;
241
242	if (mmc_card_removed(mq->card)) {
243		req->rq_flags |= RQF_QUIET;
244		return BLK_STS_IOERR;
245	}
246
247	issue_type = mmc_issue_type(mq, req);
248
249	spin_lock_irq(&mq->lock);
250
251	if (mq->recovery_needed || mq->busy) {
252		spin_unlock_irq(&mq->lock);
253		return BLK_STS_RESOURCE;
254	}
255
256	switch (issue_type) {
257	case MMC_ISSUE_DCMD:
258		if (mmc_cqe_dcmd_busy(mq)) {
259			mq->cqe_busy |= MMC_CQE_DCMD_BUSY;
260			spin_unlock_irq(&mq->lock);
261			return BLK_STS_RESOURCE;
262		}
263		break;
264	case MMC_ISSUE_ASYNC:
265		if (host->hsq_enabled && mq->in_flight[issue_type] > host->hsq_depth) {
266			spin_unlock_irq(&mq->lock);
267			return BLK_STS_RESOURCE;
268		}
269		break;
270	default:
271		/*
272		 * Timeouts are handled by mmc core, and we don't have a host
273		 * API to abort requests, so we can't handle the timeout anyway.
274		 * However, when the timeout happens, blk_mq_complete_request()
275		 * no longer works (to stop the request disappearing under us).
276		 * To avoid racing with that, set a large timeout.
277		 */
278		req->timeout = 600 * HZ;
279		break;
280	}
281
282	/* Parallel dispatch of requests is not supported at the moment */
283	mq->busy = true;
284
285	mq->in_flight[issue_type] += 1;
286	get_card = (mmc_tot_in_flight(mq) == 1);
287	cqe_retune_ok = (mmc_cqe_qcnt(mq) == 1);
288
289	spin_unlock_irq(&mq->lock);
290
291	if (!(req->rq_flags & RQF_DONTPREP)) {
292		req_to_mmc_queue_req(req)->retries = 0;
293		req->rq_flags |= RQF_DONTPREP;
294	}
295
296	if (get_card)
297		mmc_get_card(card, &mq->ctx);
298
299	if (host->cqe_enabled) {
300		host->retune_now = host->need_retune && cqe_retune_ok &&
301				   !host->hold_retune;
302	}
303
304	blk_mq_start_request(req);
305
306	issued = mmc_blk_mq_issue_rq(mq, req);
307
308	switch (issued) {
309	case MMC_REQ_BUSY:
310		ret = BLK_STS_RESOURCE;
311		break;
312	case MMC_REQ_FAILED_TO_START:
313		ret = BLK_STS_IOERR;
314		break;
315	default:
316		ret = BLK_STS_OK;
317		break;
318	}
319
320	if (issued != MMC_REQ_STARTED) {
321		bool put_card = false;
322
323		spin_lock_irq(&mq->lock);
324		mq->in_flight[issue_type] -= 1;
325		if (mmc_tot_in_flight(mq) == 0)
326			put_card = true;
327		mq->busy = false;
328		spin_unlock_irq(&mq->lock);
329		if (put_card)
330			mmc_put_card(card, &mq->ctx);
331	} else {
332		WRITE_ONCE(mq->busy, false);
333	}
334
335	return ret;
336}
337
338static const struct blk_mq_ops mmc_mq_ops = {
339	.queue_rq	= mmc_mq_queue_rq,
340	.init_request	= mmc_mq_init_request,
341	.exit_request	= mmc_mq_exit_request,
342	.complete	= mmc_blk_mq_complete,
343	.timeout	= mmc_mq_timed_out,
344};
345
346static struct gendisk *mmc_alloc_disk(struct mmc_queue *mq,
347		struct mmc_card *card, unsigned int features)
348{
349	struct mmc_host *host = card->host;
350	struct queue_limits lim = {
351		.features		= features,
352	};
353	struct gendisk *disk;
354
355	if (mmc_can_erase(card))
356		mmc_queue_setup_discard(card, &lim);
357
358	lim.max_hw_sectors = min(host->max_blk_count, host->max_req_size / 512);
359
360	if (mmc_card_mmc(card) && card->ext_csd.data_sector_size)
361		lim.logical_block_size = card->ext_csd.data_sector_size;
362	else
363		lim.logical_block_size = 512;
364
365	WARN_ON_ONCE(lim.logical_block_size != 512 &&
366		     lim.logical_block_size != 4096);
367
368	/*
369	 * Setting a virt_boundary implicity sets a max_segment_size, so try
370	 * to set the hardware one here.
371	 */
372	if (host->can_dma_map_merge) {
373		lim.virt_boundary_mask = dma_get_merge_boundary(mmc_dev(host));
374		lim.max_segments = MMC_DMA_MAP_MERGE_SEGMENTS;
375	} else {
376		lim.max_segment_size =
377			round_down(host->max_seg_size, lim.logical_block_size);
378		lim.max_segments = host->max_segs;
379	}
380
381	if (mmc_host_is_spi(host) && host->use_spi_crc)
382		lim.features |= BLK_FEAT_STABLE_WRITES;
383
384	disk = blk_mq_alloc_disk(&mq->tag_set, &lim, mq);
385	if (IS_ERR(disk))
386		return disk;
387	mq->queue = disk->queue;
388
389	blk_queue_rq_timeout(mq->queue, 60 * HZ);
 
 
 
390
391	if (mmc_dev(host)->dma_parms)
392		dma_set_max_seg_size(mmc_dev(host), queue_max_segment_size(mq->queue));
 
 
 
393
394	INIT_WORK(&mq->recovery_work, mmc_mq_recovery_handler);
395	INIT_WORK(&mq->complete_work, mmc_blk_mq_complete_work);
396
397	mutex_init(&mq->complete_lock);
398
399	init_waitqueue_head(&mq->wait);
400
401	mmc_crypto_setup_queue(mq->queue, host);
402	return disk;
403}
404
405static inline bool mmc_merge_capable(struct mmc_host *host)
 
406{
407	return host->caps2 & MMC_CAP2_MERGE_CAPABLE;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
408}
409
410/* Set queue depth to get a reasonable value for q->nr_requests */
411#define MMC_QUEUE_DEPTH 64
412
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
413/**
414 * mmc_init_queue - initialise a queue structure.
415 * @mq: mmc queue
416 * @card: mmc card to attach this queue
417 * @features: block layer features (BLK_FEAT_*)
 
418 *
419 * Initialise a MMC card request queue.
420 */
421struct gendisk *mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
422		unsigned int features)
423{
424	struct mmc_host *host = card->host;
425	struct gendisk *disk;
426	int ret;
427
428	mq->card = card;
429	
430	spin_lock_init(&mq->lock);
431
432	memset(&mq->tag_set, 0, sizeof(mq->tag_set));
433	mq->tag_set.ops = &mmc_mq_ops;
434	/*
435	 * The queue depth for CQE must match the hardware because the request
436	 * tag is used to index the hardware queue.
437	 */
438	if (host->cqe_enabled && !host->hsq_enabled)
439		mq->tag_set.queue_depth =
440			min_t(int, card->ext_csd.cmdq_depth, host->cqe_qdepth);
441	else
442		mq->tag_set.queue_depth = MMC_QUEUE_DEPTH;
443	mq->tag_set.numa_node = NUMA_NO_NODE;
444	mq->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_BLOCKING;
445	mq->tag_set.nr_hw_queues = 1;
446	mq->tag_set.cmd_size = sizeof(struct mmc_queue_req);
447	mq->tag_set.driver_data = mq;
448
449	/*
450	 * Since blk_mq_alloc_tag_set() calls .init_request() of mmc_mq_ops,
451	 * the host->can_dma_map_merge should be set before to get max_segs
452	 * from mmc_get_max_segments().
453	 */
454	if (mmc_merge_capable(host) &&
455	    host->max_segs < MMC_DMA_MAP_MERGE_SEGMENTS &&
456	    dma_get_merge_boundary(mmc_dev(host)))
457		host->can_dma_map_merge = 1;
458	else
459		host->can_dma_map_merge = 0;
460
461	ret = blk_mq_alloc_tag_set(&mq->tag_set);
462	if (ret)
463		return ERR_PTR(ret);
464		
465
466	disk = mmc_alloc_disk(mq, card, features);
467	if (IS_ERR(disk))
468		blk_mq_free_tag_set(&mq->tag_set);
469	return disk;
470}
471
472void mmc_queue_suspend(struct mmc_queue *mq)
473{
474	blk_mq_quiesce_queue(mq->queue);
475
476	/*
477	 * The host remains claimed while there are outstanding requests, so
478	 * simply claiming and releasing here ensures there are none.
479	 */
480	mmc_claim_host(mq->card->host);
481	mmc_release_host(mq->card->host);
482}
483
484void mmc_queue_resume(struct mmc_queue *mq)
485{
486	blk_mq_unquiesce_queue(mq->queue);
487}
488
489void mmc_cleanup_queue(struct mmc_queue *mq)
490{
491	struct request_queue *q = mq->queue;
492
493	/*
494	 * The legacy code handled the possibility of being suspended,
495	 * so do that here too.
496	 */
497	if (blk_queue_quiesced(q))
498		blk_mq_unquiesce_queue(q);
499
500	/*
501	 * If the recovery completes the last (and only remaining) request in
502	 * the queue, and the card has been removed, we could end up here with
503	 * the recovery not quite finished yet, so cancel it.
504	 */
505	cancel_work_sync(&mq->recovery_work);
506
507	blk_mq_free_tag_set(&mq->tag_set);
508
509	/*
510	 * A request can be completed before the next request, potentially
511	 * leaving a complete_work with nothing to do. Such a work item might
512	 * still be queued at this point. Flush it.
513	 */
514	flush_work(&mq->complete_work);
515
516	mq->card = NULL;
517}
518
519/*
520 * Prepare the sg list(s) to be handed of to the host driver
521 */
522unsigned int mmc_queue_map_sg(struct mmc_queue *mq, struct mmc_queue_req *mqrq)
523{
524	struct request *req = mmc_queue_req_to_req(mqrq);
525
526	return blk_rq_map_sg(mq->queue, req, mqrq->sg);
527}
v4.17
 
  1/*
  2 *  Copyright (C) 2003 Russell King, All Rights Reserved.
  3 *  Copyright 2006-2007 Pierre Ossman
  4 *
  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 */
 10#include <linux/slab.h>
 11#include <linux/module.h>
 12#include <linux/blkdev.h>
 13#include <linux/freezer.h>
 14#include <linux/kthread.h>
 15#include <linux/scatterlist.h>
 16#include <linux/dma-mapping.h>
 
 17
 18#include <linux/mmc/card.h>
 19#include <linux/mmc/host.h>
 20
 21#include "queue.h"
 22#include "block.h"
 23#include "core.h"
 24#include "card.h"
 
 25#include "host.h"
 26
 
 
 27static 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
 46static enum mmc_issue_type mmc_cqe_issue_type(struct mmc_host *host,
 47					      struct request *req)
 48{
 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
 62enum mmc_issue_type mmc_issue_type(struct mmc_queue *mq, struct request *req)
 63{
 64	struct mmc_host *host = mq->card->host;
 65
 66	if (mq->use_cqe)
 67		return mmc_cqe_issue_type(host, req);
 68
 69	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
 75static 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		}
114		/* No timeout */
115		return BLK_EH_HANDLED;
116	default:
117		/* Timeout is handled by mmc core */
118		return BLK_EH_RESET_TIMER;
119	}
120}
121
122static enum blk_eh_timer_return mmc_mq_timed_out(struct request *req,
123						 bool reserved)
124{
125	struct request_queue *q = req->q;
126	struct mmc_queue *mq = q->queuedata;
 
 
127	unsigned long flags;
128	int ret;
129
130	spin_lock_irqsave(q->queue_lock, flags);
 
 
131
132	if (mq->recovery_needed || !mq->use_cqe)
133		ret = BLK_EH_RESET_TIMER;
134	else
135		ret = mmc_cqe_timed_out(req);
136
137	spin_unlock_irqrestore(q->queue_lock, flags);
138
139	return ret;
140}
141
142static void mmc_mq_recovery_handler(struct work_struct *work)
143{
144	struct mmc_queue *mq = container_of(work, struct mmc_queue,
145					    recovery_work);
146	struct request_queue *q = mq->queue;
 
147
148	mmc_get_card(mq->card, &mq->ctx);
149
150	mq->in_recovery = true;
151
152	if (mq->use_cqe)
153		mmc_blk_cqe_recovery(mq);
154	else
155		mmc_blk_mq_recovery(mq);
156
157	mq->in_recovery = false;
158
159	spin_lock_irq(q->queue_lock);
160	mq->recovery_needed = false;
161	spin_unlock_irq(q->queue_lock);
 
 
 
162
163	mmc_put_card(mq->card, &mq->ctx);
164
165	blk_mq_run_hw_queues(q, true);
166}
167
168static struct scatterlist *mmc_alloc_sg(int sg_len, gfp_t gfp)
169{
170	struct scatterlist *sg;
171
172	sg = kmalloc_array(sg_len, sizeof(*sg), gfp);
173	if (sg)
174		sg_init_table(sg, sg_len);
175
176	return sg;
177}
178
179static void mmc_queue_setup_discard(struct request_queue *q,
180				    struct mmc_card *card)
181{
182	unsigned max_discard;
183
184	max_discard = mmc_calc_max_discard(card);
185	if (!max_discard)
186		return;
187
188	blk_queue_flag_set(QUEUE_FLAG_DISCARD, q);
189	blk_queue_max_discard_sectors(q, max_discard);
190	q->limits.discard_granularity = card->pref_erase << 9;
 
 
 
191	/* granularity must not be greater than max. discard */
192	if (card->pref_erase > max_discard)
193		q->limits.discard_granularity = 0;
194	if (mmc_can_secure_erase_trim(card))
195		blk_queue_flag_set(QUEUE_FLAG_SECERASE, q);
 
 
 
 
 
 
196}
197
198/**
199 * mmc_init_request() - initialize the MMC-specific per-request data
200 * @q: the request queue
201 * @req: the request
202 * @gfp: memory allocation policy
203 */
204static int __mmc_init_request(struct mmc_queue *mq, struct request *req,
205			      gfp_t gfp)
206{
207	struct mmc_queue_req *mq_rq = req_to_mmc_queue_req(req);
 
208	struct mmc_card *card = mq->card;
209	struct mmc_host *host = card->host;
210
211	mq_rq->sg = mmc_alloc_sg(host->max_segs, gfp);
212	if (!mq_rq->sg)
213		return -ENOMEM;
214
215	return 0;
216}
217
218static void mmc_exit_request(struct request_queue *q, struct request *req)
 
219{
220	struct mmc_queue_req *mq_rq = req_to_mmc_queue_req(req);
221
222	kfree(mq_rq->sg);
223	mq_rq->sg = NULL;
224}
225
226static int mmc_mq_init_request(struct blk_mq_tag_set *set, struct request *req,
227			       unsigned int hctx_idx, unsigned int numa_node)
228{
229	return __mmc_init_request(set->driver_data, req, GFP_KERNEL);
230}
231
232static void mmc_mq_exit_request(struct blk_mq_tag_set *set, struct request *req,
233				unsigned int hctx_idx)
234{
235	struct mmc_queue *mq = set->driver_data;
236
237	mmc_exit_request(mq->queue, req);
238}
239
240/*
241 * We use BLK_MQ_F_BLOCKING and have only 1 hardware queue, which means requests
242 * will not be dispatched in parallel.
243 */
244static blk_status_t mmc_mq_queue_rq(struct blk_mq_hw_ctx *hctx,
245				    const struct blk_mq_queue_data *bd)
246{
247	struct request *req = bd->rq;
248	struct request_queue *q = req->q;
249	struct mmc_queue *mq = q->queuedata;
250	struct mmc_card *card = mq->card;
251	struct mmc_host *host = card->host;
252	enum mmc_issue_type issue_type;
253	enum mmc_issued issued;
254	bool get_card, cqe_retune_ok;
255	int ret;
256
257	if (mmc_card_removed(mq->card)) {
258		req->rq_flags |= RQF_QUIET;
259		return BLK_STS_IOERR;
260	}
261
262	issue_type = mmc_issue_type(mq, req);
263
264	spin_lock_irq(q->queue_lock);
265
266	if (mq->recovery_needed) {
267		spin_unlock_irq(q->queue_lock);
268		return BLK_STS_RESOURCE;
269	}
270
271	switch (issue_type) {
272	case MMC_ISSUE_DCMD:
273		if (mmc_cqe_dcmd_busy(mq)) {
274			mq->cqe_busy |= MMC_CQE_DCMD_BUSY;
275			spin_unlock_irq(q->queue_lock);
276			return BLK_STS_RESOURCE;
277		}
278		break;
279	case MMC_ISSUE_ASYNC:
 
 
 
 
280		break;
281	default:
282		/*
283		 * Timeouts are handled by mmc core, and we don't have a host
284		 * API to abort requests, so we can't handle the timeout anyway.
285		 * However, when the timeout happens, blk_mq_complete_request()
286		 * no longer works (to stop the request disappearing under us).
287		 * To avoid racing with that, set a large timeout.
288		 */
289		req->timeout = 600 * HZ;
290		break;
291	}
292
 
 
 
293	mq->in_flight[issue_type] += 1;
294	get_card = (mmc_tot_in_flight(mq) == 1);
295	cqe_retune_ok = (mmc_cqe_qcnt(mq) == 1);
296
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
307	if (mq->use_cqe) {
308		host->retune_now = host->need_retune && cqe_retune_ok &&
309				   !host->hold_retune;
310	}
311
312	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;
335		spin_unlock_irq(q->queue_lock);
 
336		if (put_card)
337			mmc_put_card(card, &mq->ctx);
 
 
338	}
339
340	return ret;
341}
342
343static const struct blk_mq_ops mmc_mq_ops = {
344	.queue_rq	= mmc_mq_queue_rq,
345	.init_request	= mmc_mq_init_request,
346	.exit_request	= mmc_mq_exit_request,
347	.complete	= mmc_blk_mq_complete,
348	.timeout	= mmc_mq_timed_out,
349};
350
351static void mmc_setup_queue(struct mmc_queue *mq, struct mmc_card *card)
 
352{
353	struct mmc_host *host = card->host;
354	u64 limit = BLK_BOUNCE_HIGH;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
355
356	if (mmc_dev(host)->dma_mask && *mmc_dev(host)->dma_mask)
357		limit = (u64)dma_max_pfn(mmc_dev(host)) << PAGE_SHIFT;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
359	blk_queue_flag_set(QUEUE_FLAG_NONROT, mq->queue);
360	blk_queue_flag_clear(QUEUE_FLAG_ADD_RANDOM, mq->queue);
361	if (mmc_can_erase(card))
362		mmc_queue_setup_discard(mq->queue, card);
363
364	blk_queue_bounce_limit(mq->queue, limit);
365	blk_queue_max_hw_sectors(mq->queue,
366		min(host->max_blk_count, host->max_req_size / 512));
367	blk_queue_max_segments(mq->queue, host->max_segs);
368	blk_queue_max_segment_size(mq->queue, host->max_seg_size);
369
370	INIT_WORK(&mq->recovery_work, mmc_mq_recovery_handler);
371	INIT_WORK(&mq->complete_work, mmc_blk_mq_complete_work);
372
373	mutex_init(&mq->complete_lock);
374
375	init_waitqueue_head(&mq->wait);
 
 
 
376}
377
378static int mmc_mq_init_queue(struct mmc_queue *mq, int q_depth,
379			     const struct blk_mq_ops *mq_ops, spinlock_t *lock)
380{
381	int ret;
382
383	memset(&mq->tag_set, 0, sizeof(mq->tag_set));
384	mq->tag_set.ops = mq_ops;
385	mq->tag_set.queue_depth = q_depth;
386	mq->tag_set.numa_node = NUMA_NO_NODE;
387	mq->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE |
388			    BLK_MQ_F_BLOCKING;
389	mq->tag_set.nr_hw_queues = 1;
390	mq->tag_set.cmd_size = sizeof(struct mmc_queue_req);
391	mq->tag_set.driver_data = mq;
392
393	ret = blk_mq_alloc_tag_set(&mq->tag_set);
394	if (ret)
395		return ret;
396
397	mq->queue = blk_mq_init_queue(&mq->tag_set);
398	if (IS_ERR(mq->queue)) {
399		ret = PTR_ERR(mq->queue);
400		goto free_tag_set;
401	}
402
403	mq->queue->queue_lock = lock;
404	mq->queue->queuedata = mq;
405
406	return 0;
407
408free_tag_set:
409	blk_mq_free_tag_set(&mq->tag_set);
410
411	return ret;
412}
413
414/* Set queue depth to get a reasonable value for q->nr_requests */
415#define MMC_QUEUE_DEPTH 64
416
417static int mmc_mq_init(struct mmc_queue *mq, struct mmc_card *card,
418			 spinlock_t *lock)
419{
420	struct mmc_host *host = card->host;
421	int q_depth;
422	int ret;
423
424	/*
425	 * The queue depth for CQE must match the hardware because the request
426	 * tag is used to index the hardware queue.
427	 */
428	if (mq->use_cqe)
429		q_depth = min_t(int, card->ext_csd.cmdq_depth, host->cqe_qdepth);
430	else
431		q_depth = MMC_QUEUE_DEPTH;
432
433	ret = mmc_mq_init_queue(mq, q_depth, &mmc_mq_ops, lock);
434	if (ret)
435		return ret;
436
437	blk_queue_rq_timeout(mq->queue, 60 * HZ);
438
439	mmc_setup_queue(mq, card);
440
441	return 0;
442}
443
444/**
445 * mmc_init_queue - initialise a queue structure.
446 * @mq: mmc queue
447 * @card: mmc card to attach this queue
448 * @lock: queue lock
449 * @subname: partition subname
450 *
451 * Initialise a MMC card request queue.
452 */
453int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
454		   spinlock_t *lock, const char *subname)
455{
456	struct mmc_host *host = card->host;
 
 
457
458	mq->card = card;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
460	mq->use_cqe = host->cqe_enabled;
 
 
 
461
462	return mmc_mq_init(mq, card, lock);
 
 
 
463}
464
465void mmc_queue_suspend(struct mmc_queue *mq)
466{
467	blk_mq_quiesce_queue(mq->queue);
468
469	/*
470	 * The host remains claimed while there are outstanding requests, so
471	 * simply claiming and releasing here ensures there are none.
472	 */
473	mmc_claim_host(mq->card->host);
474	mmc_release_host(mq->card->host);
475}
476
477void mmc_queue_resume(struct mmc_queue *mq)
478{
479	blk_mq_unquiesce_queue(mq->queue);
480}
481
482void mmc_cleanup_queue(struct mmc_queue *mq)
483{
484	struct request_queue *q = mq->queue;
485
486	/*
487	 * The legacy code handled the possibility of being suspended,
488	 * so do that here too.
489	 */
490	if (blk_queue_quiesced(q))
491		blk_mq_unquiesce_queue(q);
492
493	blk_cleanup_queue(q);
 
 
 
 
 
 
 
494
495	/*
496	 * A request can be completed before the next request, potentially
497	 * leaving a complete_work with nothing to do. Such a work item might
498	 * still be queued at this point. Flush it.
499	 */
500	flush_work(&mq->complete_work);
501
502	mq->card = NULL;
503}
504
505/*
506 * Prepare the sg list(s) to be handed of to the host driver
507 */
508unsigned int mmc_queue_map_sg(struct mmc_queue *mq, struct mmc_queue_req *mqrq)
509{
510	struct request *req = mmc_queue_req_to_req(mqrq);
511
512	return blk_rq_map_sg(mq->queue, req, mqrq->sg);
513}