blob: d630d9861e7bf0f4631b99374b84b1b0baa180d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/card/queue.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2003 Russell King, All Rights Reserved.
Pierre Ossman98ac2162006-12-23 20:03:02 +01005 * Copyright 2006-2007 Pierre Ossman
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/blkdev.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070015#include <linux/freezer.h>
Christoph Hellwig87598a22006-11-13 20:23:52 +010016#include <linux/kthread.h>
Jens Axboe45711f12007-10-22 21:19:53 +020017#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#include <linux/mmc/card.h>
20#include <linux/mmc/host.h>
Pierre Ossman98ac2162006-12-23 20:03:02 +010021#include "queue.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Pierre Ossman98ccf142007-05-12 00:26:16 +020023#define MMC_QUEUE_BOUNCESZ 65536
24
Christoph Hellwig87598a22006-11-13 20:23:52 +010025#define MMC_QUEUE_SUSPENDED (1 << 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Seungwon Jeon369d3212012-12-26 10:40:17 +090027#define MMC_REQ_SPECIAL_MASK (REQ_DISCARD | REQ_FLUSH)
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/*
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020030 * Prepare a MMC request. This just filters out odd stuff.
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 */
32static int mmc_prep_request(struct request_queue *q, struct request *req)
33{
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +053034 struct mmc_queue *mq = q->queuedata;
35
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020036 /*
Adrian Hunterbd788c92010-08-11 14:17:47 -070037 * We only like normal block requests and discards.
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020038 */
Adrian Hunterbd788c92010-08-11 14:17:47 -070039 if (req->cmd_type != REQ_TYPE_FS && !(req->cmd_flags & REQ_DISCARD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 blk_dump_rq_flags(req, "MMC bad request");
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020041 return BLKPREP_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 }
43
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +053044 if (mq && mmc_card_removed(mq->card))
45 return BLKPREP_KILL;
46
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020047 req->cmd_flags |= REQ_DONTPREP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020049 return BLKPREP_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
52static int mmc_queue_thread(void *d)
53{
54 struct mmc_queue *mq = d;
55 struct request_queue *q = mq->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Rafael J. Wysocki83144182007-07-17 04:03:35 -070057 current->flags |= PF_MEMALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 down(&mq->thread_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 do {
61 struct request *req = NULL;
Per Forlinee8a43a2011-07-01 18:55:33 +020062 struct mmc_queue_req *tmp;
Seungwon Jeon369d3212012-12-26 10:40:17 +090063 unsigned int cmd_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 spin_lock_irq(q->queue_lock);
66 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboe7eaceac2011-03-10 08:52:07 +010067 req = blk_fetch_request(q);
Per Forlin97868a22011-07-09 17:12:36 -040068 mq->mqrq_cur->req = req;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 spin_unlock_irq(q->queue_lock);
70
Per Forlinee8a43a2011-07-01 18:55:33 +020071 if (req || mq->mqrq_prev->req) {
72 set_current_state(TASK_RUNNING);
Seungwon Jeon369d3212012-12-26 10:40:17 +090073 cmd_flags = req ? req->cmd_flags : 0;
Per Forlinee8a43a2011-07-01 18:55:33 +020074 mq->issue_fn(mq, req);
Seungwon Jeon45c5a912012-09-28 19:12:53 +090075
76 /*
77 * Current request becomes previous request
78 * and vice versa.
Seungwon Jeon369d3212012-12-26 10:40:17 +090079 * In case of special requests, current request
80 * has been finished. Do not assign it to previous
81 * request.
Seungwon Jeon45c5a912012-09-28 19:12:53 +090082 */
Seungwon Jeon369d3212012-12-26 10:40:17 +090083 if (cmd_flags & MMC_REQ_SPECIAL_MASK)
84 mq->mqrq_cur->req = NULL;
85
Seungwon Jeon45c5a912012-09-28 19:12:53 +090086 mq->mqrq_prev->brq.mrq.data = NULL;
87 mq->mqrq_prev->req = NULL;
88 tmp = mq->mqrq_prev;
89 mq->mqrq_prev = mq->mqrq_cur;
90 mq->mqrq_cur = tmp;
Per Forlinee8a43a2011-07-01 18:55:33 +020091 } else {
Vitaly Wool7b30d282006-12-07 20:08:02 +010092 if (kthread_should_stop()) {
93 set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 break;
Vitaly Wool7b30d282006-12-07 20:08:02 +010095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 up(&mq->thread_sem);
97 schedule();
98 down(&mq->thread_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 } while (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 up(&mq->thread_sem);
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return 0;
104}
105
106/*
107 * Generic MMC request handler. This is called for any queue on a
108 * particular host. When the host is not busy, we look for a request
109 * on any queue on this host, and attempt to issue it. This may
110 * not be the queue we were asked to process.
111 */
Venkatraman S1b50f5f2012-04-13 17:54:11 +0530112static void mmc_request_fn(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct mmc_queue *mq = q->queuedata;
Pierre Ossman89b4e132006-11-14 22:08:16 +0100115 struct request *req;
Pierre Ossman89b4e132006-11-14 22:08:16 +0100116
117 if (!mq) {
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800118 while ((req = blk_fetch_request(q)) != NULL) {
119 req->cmd_flags |= REQ_QUIET;
Tejun Heo296b2f62009-05-08 11:54:15 +0900120 __blk_end_request_all(req, -EIO);
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800121 }
Pierre Ossman89b4e132006-11-14 22:08:16 +0100122 return;
123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Per Forlinee8a43a2011-07-01 18:55:33 +0200125 if (!mq->mqrq_cur->req && !mq->mqrq_prev->req)
Christoph Hellwig87598a22006-11-13 20:23:52 +0100126 wake_up_process(mq->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Venkatraman S7513cd72011-08-23 21:16:02 +0530129static struct scatterlist *mmc_alloc_sg(int sg_len, int *err)
Per Forlin97868a22011-07-09 17:12:36 -0400130{
131 struct scatterlist *sg;
132
133 sg = kmalloc(sizeof(struct scatterlist)*sg_len, GFP_KERNEL);
134 if (!sg)
135 *err = -ENOMEM;
136 else {
137 *err = 0;
138 sg_init_table(sg, sg_len);
139 }
140
141 return sg;
142}
143
Adrian Huntere056a1b2011-06-28 17:16:02 +0300144static void mmc_queue_setup_discard(struct request_queue *q,
145 struct mmc_card *card)
146{
147 unsigned max_discard;
148
149 max_discard = mmc_calc_max_discard(card);
150 if (!max_discard)
151 return;
152
153 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
154 q->limits.max_discard_sectors = max_discard;
Adrian Hunter7194efb2012-04-05 14:45:47 +0300155 if (card->erased_byte == 0 && !mmc_can_discard(card))
Adrian Huntere056a1b2011-06-28 17:16:02 +0300156 q->limits.discard_zeroes_data = 1;
157 q->limits.discard_granularity = card->pref_erase << 9;
158 /* granularity must not be greater than max. discard */
159 if (card->pref_erase > max_discard)
160 q->limits.discard_granularity = 0;
Kyungmin Parkd9ddd622011-10-14 14:15:48 +0900161 if (mmc_can_secure_erase_trim(card) || mmc_can_sanitize(card))
Adrian Huntere056a1b2011-06-28 17:16:02 +0300162 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/**
166 * mmc_init_queue - initialise a queue structure.
167 * @mq: mmc queue
168 * @card: mmc card to attach this queue
169 * @lock: queue lock
Adrian Hunterd09408a2011-06-23 13:40:28 +0300170 * @subname: partition subname
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
172 * Initialise a MMC card request queue.
173 */
Adrian Hunterd09408a2011-06-23 13:40:28 +0300174int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
175 spinlock_t *lock, const char *subname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 struct mmc_host *host = card->host;
178 u64 limit = BLK_BOUNCE_HIGH;
179 int ret;
Per Forlin97868a22011-07-09 17:12:36 -0400180 struct mmc_queue_req *mqrq_cur = &mq->mqrq[0];
Per Forlin04296b72011-07-01 18:55:31 +0200181 struct mmc_queue_req *mqrq_prev = &mq->mqrq[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Greg Kroah-Hartmanfcaf71f2006-09-12 17:00:10 +0200183 if (mmc_dev(host)->dma_mask && *mmc_dev(host)->dma_mask)
184 limit = *mmc_dev(host)->dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 mq->card = card;
Venkatraman S1b50f5f2012-04-13 17:54:11 +0530187 mq->queue = blk_init_queue(mmc_request_fn, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (!mq->queue)
189 return -ENOMEM;
190
Per Forlin97868a22011-07-09 17:12:36 -0400191 mq->mqrq_cur = mqrq_cur;
Per Forlin04296b72011-07-01 18:55:31 +0200192 mq->mqrq_prev = mqrq_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 mq->queue->queuedata = mq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Pierre Ossman98ccf142007-05-12 00:26:16 +0200195 blk_queue_prep_rq(mq->queue, mmc_prep_request);
Pierre Ossman8dddfe12008-10-14 20:04:46 +0200196 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, mq->queue);
Adrian Huntere056a1b2011-06-28 17:16:02 +0300197 if (mmc_can_erase(card))
198 mmc_queue_setup_discard(mq->queue, card);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200199
200#ifdef CONFIG_MMC_BLOCK_BOUNCE
Martin K. Petersena36274e2010-09-10 01:33:59 -0400201 if (host->max_segs == 1) {
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200202 unsigned int bouncesz;
203
Pierre Ossman98ccf142007-05-12 00:26:16 +0200204 bouncesz = MMC_QUEUE_BOUNCESZ;
205
206 if (bouncesz > host->max_req_size)
207 bouncesz = host->max_req_size;
208 if (bouncesz > host->max_seg_size)
209 bouncesz = host->max_seg_size;
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200210 if (bouncesz > (host->max_blk_count * 512))
211 bouncesz = host->max_blk_count * 512;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200212
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200213 if (bouncesz > 512) {
Per Forlin97868a22011-07-09 17:12:36 -0400214 mqrq_cur->bounce_buf = kmalloc(bouncesz, GFP_KERNEL);
215 if (!mqrq_cur->bounce_buf) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530216 pr_warning("%s: unable to "
Per Forlin97868a22011-07-09 17:12:36 -0400217 "allocate bounce cur buffer\n",
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200218 mmc_card_name(card));
219 }
Per Forlin04296b72011-07-01 18:55:31 +0200220 mqrq_prev->bounce_buf = kmalloc(bouncesz, GFP_KERNEL);
221 if (!mqrq_prev->bounce_buf) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530222 pr_warning("%s: unable to "
Per Forlin04296b72011-07-01 18:55:31 +0200223 "allocate bounce prev buffer\n",
224 mmc_card_name(card));
225 kfree(mqrq_cur->bounce_buf);
226 mqrq_cur->bounce_buf = NULL;
227 }
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200228 }
229
Per Forlin04296b72011-07-01 18:55:31 +0200230 if (mqrq_cur->bounce_buf && mqrq_prev->bounce_buf) {
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200231 blk_queue_bounce_limit(mq->queue, BLK_BOUNCE_ANY);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -0500232 blk_queue_max_hw_sectors(mq->queue, bouncesz / 512);
Martin K. Petersen8a783622010-02-26 00:20:39 -0500233 blk_queue_max_segments(mq->queue, bouncesz / 512);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200234 blk_queue_max_segment_size(mq->queue, bouncesz);
235
Per Forlin97868a22011-07-09 17:12:36 -0400236 mqrq_cur->sg = mmc_alloc_sg(1, &ret);
237 if (ret)
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200238 goto cleanup_queue;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200239
Per Forlin97868a22011-07-09 17:12:36 -0400240 mqrq_cur->bounce_sg =
241 mmc_alloc_sg(bouncesz / 512, &ret);
242 if (ret)
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200243 goto cleanup_queue;
Per Forlin97868a22011-07-09 17:12:36 -0400244
Per Forlin04296b72011-07-01 18:55:31 +0200245 mqrq_prev->sg = mmc_alloc_sg(1, &ret);
246 if (ret)
247 goto cleanup_queue;
248
249 mqrq_prev->bounce_sg =
250 mmc_alloc_sg(bouncesz / 512, &ret);
251 if (ret)
252 goto cleanup_queue;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200253 }
254 }
255#endif
256
Per Forlin04296b72011-07-01 18:55:31 +0200257 if (!mqrq_cur->bounce_buf && !mqrq_prev->bounce_buf) {
Pierre Ossman98ccf142007-05-12 00:26:16 +0200258 blk_queue_bounce_limit(mq->queue, limit);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -0500259 blk_queue_max_hw_sectors(mq->queue,
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200260 min(host->max_blk_count, host->max_req_size / 512));
Martin K. Petersena36274e2010-09-10 01:33:59 -0400261 blk_queue_max_segments(mq->queue, host->max_segs);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200262 blk_queue_max_segment_size(mq->queue, host->max_seg_size);
263
Per Forlin97868a22011-07-09 17:12:36 -0400264 mqrq_cur->sg = mmc_alloc_sg(host->max_segs, &ret);
265 if (ret)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200266 goto cleanup_queue;
Per Forlin97868a22011-07-09 17:12:36 -0400267
Per Forlin04296b72011-07-01 18:55:31 +0200268
269 mqrq_prev->sg = mmc_alloc_sg(host->max_segs, &ret);
270 if (ret)
271 goto cleanup_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
273
Thomas Gleixner632cf922010-09-14 07:12:35 -0400274 sema_init(&mq->thread_sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Adrian Hunterd09408a2011-06-23 13:40:28 +0300276 mq->thread = kthread_run(mmc_queue_thread, mq, "mmcqd/%d%s",
277 host->index, subname ? subname : "");
Ethan Dude528fa2010-09-30 18:40:27 -0400278
Christoph Hellwig87598a22006-11-13 20:23:52 +0100279 if (IS_ERR(mq->thread)) {
280 ret = PTR_ERR(mq->thread);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200281 goto free_bounce_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 }
283
Christoph Hellwig87598a22006-11-13 20:23:52 +0100284 return 0;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200285 free_bounce_sg:
Per Forlin97868a22011-07-09 17:12:36 -0400286 kfree(mqrq_cur->bounce_sg);
287 mqrq_cur->bounce_sg = NULL;
Per Forlin04296b72011-07-01 18:55:31 +0200288 kfree(mqrq_prev->bounce_sg);
289 mqrq_prev->bounce_sg = NULL;
Per Forlin97868a22011-07-09 17:12:36 -0400290
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200291 cleanup_queue:
Per Forlin97868a22011-07-09 17:12:36 -0400292 kfree(mqrq_cur->sg);
293 mqrq_cur->sg = NULL;
294 kfree(mqrq_cur->bounce_buf);
295 mqrq_cur->bounce_buf = NULL;
296
Per Forlin04296b72011-07-01 18:55:31 +0200297 kfree(mqrq_prev->sg);
298 mqrq_prev->sg = NULL;
299 kfree(mqrq_prev->bounce_buf);
300 mqrq_prev->bounce_buf = NULL;
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 blk_cleanup_queue(mq->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return ret;
304}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306void mmc_cleanup_queue(struct mmc_queue *mq)
307{
Jens Axboe165125e2007-07-24 09:28:11 +0200308 struct request_queue *q = mq->queue;
Pierre Ossman89b4e132006-11-14 22:08:16 +0100309 unsigned long flags;
Per Forlin97868a22011-07-09 17:12:36 -0400310 struct mmc_queue_req *mqrq_cur = mq->mqrq_cur;
Per Forlin04296b72011-07-01 18:55:31 +0200311 struct mmc_queue_req *mqrq_prev = mq->mqrq_prev;
Pierre Ossman89b4e132006-11-14 22:08:16 +0100312
Pierre Ossmand2b46f62007-04-28 16:52:12 +0200313 /* Make sure the queue isn't suspended, as that will deadlock */
314 mmc_queue_resume(mq);
315
Pierre Ossman89b4e132006-11-14 22:08:16 +0100316 /* Then terminate our worker thread */
Christoph Hellwig87598a22006-11-13 20:23:52 +0100317 kthread_stop(mq->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800319 /* Empty the queue */
320 spin_lock_irqsave(q->queue_lock, flags);
321 q->queuedata = NULL;
322 blk_start_queue(q);
323 spin_unlock_irqrestore(q->queue_lock, flags);
324
Per Forlin97868a22011-07-09 17:12:36 -0400325 kfree(mqrq_cur->bounce_sg);
326 mqrq_cur->bounce_sg = NULL;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200327
Per Forlin97868a22011-07-09 17:12:36 -0400328 kfree(mqrq_cur->sg);
329 mqrq_cur->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Per Forlin97868a22011-07-09 17:12:36 -0400331 kfree(mqrq_cur->bounce_buf);
332 mqrq_cur->bounce_buf = NULL;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200333
Per Forlin04296b72011-07-01 18:55:31 +0200334 kfree(mqrq_prev->bounce_sg);
335 mqrq_prev->bounce_sg = NULL;
336
337 kfree(mqrq_prev->sg);
338 mqrq_prev->sg = NULL;
339
340 kfree(mqrq_prev->bounce_buf);
341 mqrq_prev->bounce_buf = NULL;
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 mq->card = NULL;
344}
345EXPORT_SYMBOL(mmc_cleanup_queue);
346
347/**
348 * mmc_queue_suspend - suspend a MMC request queue
349 * @mq: MMC queue to suspend
350 *
351 * Stop the block request queue, and wait for our thread to
352 * complete any outstanding requests. This ensures that we
353 * won't suspend while a request is being processed.
354 */
355void mmc_queue_suspend(struct mmc_queue *mq)
356{
Jens Axboe165125e2007-07-24 09:28:11 +0200357 struct request_queue *q = mq->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 unsigned long flags;
359
360 if (!(mq->flags & MMC_QUEUE_SUSPENDED)) {
361 mq->flags |= MMC_QUEUE_SUSPENDED;
362
363 spin_lock_irqsave(q->queue_lock, flags);
364 blk_stop_queue(q);
365 spin_unlock_irqrestore(q->queue_lock, flags);
366
367 down(&mq->thread_sem);
368 }
369}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371/**
372 * mmc_queue_resume - resume a previously suspended MMC request queue
373 * @mq: MMC queue to resume
374 */
375void mmc_queue_resume(struct mmc_queue *mq)
376{
Jens Axboe165125e2007-07-24 09:28:11 +0200377 struct request_queue *q = mq->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 unsigned long flags;
379
380 if (mq->flags & MMC_QUEUE_SUSPENDED) {
381 mq->flags &= ~MMC_QUEUE_SUSPENDED;
382
383 up(&mq->thread_sem);
384
385 spin_lock_irqsave(q->queue_lock, flags);
386 blk_start_queue(q);
387 spin_unlock_irqrestore(q->queue_lock, flags);
388 }
389}
Pierre Ossman98ac2162006-12-23 20:03:02 +0100390
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200391/*
392 * Prepare the sg list(s) to be handed of to the host driver
393 */
Per Forlin97868a22011-07-09 17:12:36 -0400394unsigned int mmc_queue_map_sg(struct mmc_queue *mq, struct mmc_queue_req *mqrq)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200395{
396 unsigned int sg_len;
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200397 size_t buflen;
398 struct scatterlist *sg;
399 int i;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200400
Per Forlin97868a22011-07-09 17:12:36 -0400401 if (!mqrq->bounce_buf)
402 return blk_rq_map_sg(mq->queue, mqrq->req, mqrq->sg);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200403
Per Forlin97868a22011-07-09 17:12:36 -0400404 BUG_ON(!mqrq->bounce_sg);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200405
Per Forlin97868a22011-07-09 17:12:36 -0400406 sg_len = blk_rq_map_sg(mq->queue, mqrq->req, mqrq->bounce_sg);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200407
Per Forlin97868a22011-07-09 17:12:36 -0400408 mqrq->bounce_sg_len = sg_len;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200409
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200410 buflen = 0;
Per Forlin97868a22011-07-09 17:12:36 -0400411 for_each_sg(mqrq->bounce_sg, sg, sg_len, i)
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200412 buflen += sg->length;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200413
Per Forlin97868a22011-07-09 17:12:36 -0400414 sg_init_one(mqrq->sg, mqrq->bounce_buf, buflen);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200415
416 return 1;
417}
418
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200419/*
420 * If writing, bounce the data to the buffer before the request
421 * is sent to the host driver
422 */
Per Forlin97868a22011-07-09 17:12:36 -0400423void mmc_queue_bounce_pre(struct mmc_queue_req *mqrq)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200424{
Per Forlin97868a22011-07-09 17:12:36 -0400425 if (!mqrq->bounce_buf)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200426 return;
427
Per Forlin97868a22011-07-09 17:12:36 -0400428 if (rq_data_dir(mqrq->req) != WRITE)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200429 return;
430
Per Forlin97868a22011-07-09 17:12:36 -0400431 sg_copy_to_buffer(mqrq->bounce_sg, mqrq->bounce_sg_len,
432 mqrq->bounce_buf, mqrq->sg[0].length);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200433}
434
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200435/*
436 * If reading, bounce the data from the buffer after the request
437 * has been handled by the host driver
438 */
Per Forlin97868a22011-07-09 17:12:36 -0400439void mmc_queue_bounce_post(struct mmc_queue_req *mqrq)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200440{
Per Forlin97868a22011-07-09 17:12:36 -0400441 if (!mqrq->bounce_buf)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200442 return;
443
Per Forlin97868a22011-07-09 17:12:36 -0400444 if (rq_data_dir(mqrq->req) != READ)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200445 return;
446
Per Forlin97868a22011-07-09 17:12:36 -0400447 sg_copy_from_buffer(mqrq->bounce_sg, mqrq->bounce_sg_len,
448 mqrq->bounce_buf, mqrq->sg[0].length);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200449}