blob: fadf52eb5d70d410bc0055d379b248413e680d6b [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
27/*
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020028 * Prepare a MMC request. This just filters out odd stuff.
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
30static int mmc_prep_request(struct request_queue *q, struct request *req)
31{
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +053032 struct mmc_queue *mq = q->queuedata;
33
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020034 /*
Adrian Hunterbd788c92010-08-11 14:17:47 -070035 * We only like normal block requests and discards.
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020036 */
Adrian Hunterbd788c92010-08-11 14:17:47 -070037 if (req->cmd_type != REQ_TYPE_FS && !(req->cmd_flags & REQ_DISCARD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 blk_dump_rq_flags(req, "MMC bad request");
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020039 return BLKPREP_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 }
41
Sujit Reddy Thummaa8ad82cc2011-12-08 14:05:50 +053042 if (mq && mmc_card_removed(mq->card))
43 return BLKPREP_KILL;
44
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020045 req->cmd_flags |= REQ_DONTPREP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020047 return BLKPREP_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048}
49
50static int mmc_queue_thread(void *d)
51{
52 struct mmc_queue *mq = d;
53 struct request_queue *q = mq->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Rafael J. Wysocki83144182007-07-17 04:03:35 -070055 current->flags |= PF_MEMALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 down(&mq->thread_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 do {
59 struct request *req = NULL;
Per Forlinee8a43a2011-07-01 18:55:33 +020060 struct mmc_queue_req *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 spin_lock_irq(q->queue_lock);
63 set_current_state(TASK_INTERRUPTIBLE);
Jens Axboe7eaceac2011-03-10 08:52:07 +010064 req = blk_fetch_request(q);
Per Forlin97868a22011-07-09 17:12:36 -040065 mq->mqrq_cur->req = req;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 spin_unlock_irq(q->queue_lock);
67
Per Forlinee8a43a2011-07-01 18:55:33 +020068 if (req || mq->mqrq_prev->req) {
69 set_current_state(TASK_RUNNING);
70 mq->issue_fn(mq, req);
Seungwon Jeon45c5a912012-09-28 19:12:53 +090071
72 /*
73 * Current request becomes previous request
74 * and vice versa.
75 */
76 mq->mqrq_prev->brq.mrq.data = NULL;
77 mq->mqrq_prev->req = NULL;
78 tmp = mq->mqrq_prev;
79 mq->mqrq_prev = mq->mqrq_cur;
80 mq->mqrq_cur = tmp;
Per Forlinee8a43a2011-07-01 18:55:33 +020081 } else {
Vitaly Wool7b30d282006-12-07 20:08:02 +010082 if (kthread_should_stop()) {
83 set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 break;
Vitaly Wool7b30d282006-12-07 20:08:02 +010085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 up(&mq->thread_sem);
87 schedule();
88 down(&mq->thread_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 } while (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 up(&mq->thread_sem);
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 return 0;
94}
95
96/*
97 * Generic MMC request handler. This is called for any queue on a
98 * particular host. When the host is not busy, we look for a request
99 * on any queue on this host, and attempt to issue it. This may
100 * not be the queue we were asked to process.
101 */
Venkatraman S1b50f5f2012-04-13 17:54:11 +0530102static void mmc_request_fn(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 struct mmc_queue *mq = q->queuedata;
Pierre Ossman89b4e132006-11-14 22:08:16 +0100105 struct request *req;
Pierre Ossman89b4e132006-11-14 22:08:16 +0100106
107 if (!mq) {
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800108 while ((req = blk_fetch_request(q)) != NULL) {
109 req->cmd_flags |= REQ_QUIET;
Tejun Heo296b2f62009-05-08 11:54:15 +0900110 __blk_end_request_all(req, -EIO);
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800111 }
Pierre Ossman89b4e132006-11-14 22:08:16 +0100112 return;
113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Per Forlinee8a43a2011-07-01 18:55:33 +0200115 if (!mq->mqrq_cur->req && !mq->mqrq_prev->req)
Christoph Hellwig87598a22006-11-13 20:23:52 +0100116 wake_up_process(mq->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
Venkatraman S7513cd72011-08-23 21:16:02 +0530119static struct scatterlist *mmc_alloc_sg(int sg_len, int *err)
Per Forlin97868a22011-07-09 17:12:36 -0400120{
121 struct scatterlist *sg;
122
123 sg = kmalloc(sizeof(struct scatterlist)*sg_len, GFP_KERNEL);
124 if (!sg)
125 *err = -ENOMEM;
126 else {
127 *err = 0;
128 sg_init_table(sg, sg_len);
129 }
130
131 return sg;
132}
133
Adrian Huntere056a1b2011-06-28 17:16:02 +0300134static void mmc_queue_setup_discard(struct request_queue *q,
135 struct mmc_card *card)
136{
137 unsigned max_discard;
138
139 max_discard = mmc_calc_max_discard(card);
140 if (!max_discard)
141 return;
142
143 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
144 q->limits.max_discard_sectors = max_discard;
Adrian Hunter7194efb2012-04-05 14:45:47 +0300145 if (card->erased_byte == 0 && !mmc_can_discard(card))
Adrian Huntere056a1b2011-06-28 17:16:02 +0300146 q->limits.discard_zeroes_data = 1;
147 q->limits.discard_granularity = card->pref_erase << 9;
148 /* granularity must not be greater than max. discard */
149 if (card->pref_erase > max_discard)
150 q->limits.discard_granularity = 0;
Kyungmin Parkd9ddd622011-10-14 14:15:48 +0900151 if (mmc_can_secure_erase_trim(card) || mmc_can_sanitize(card))
Adrian Huntere056a1b2011-06-28 17:16:02 +0300152 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, q);
153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/**
156 * mmc_init_queue - initialise a queue structure.
157 * @mq: mmc queue
158 * @card: mmc card to attach this queue
159 * @lock: queue lock
Adrian Hunterd09408a2011-06-23 13:40:28 +0300160 * @subname: partition subname
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *
162 * Initialise a MMC card request queue.
163 */
Adrian Hunterd09408a2011-06-23 13:40:28 +0300164int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
165 spinlock_t *lock, const char *subname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 struct mmc_host *host = card->host;
168 u64 limit = BLK_BOUNCE_HIGH;
169 int ret;
Per Forlin97868a22011-07-09 17:12:36 -0400170 struct mmc_queue_req *mqrq_cur = &mq->mqrq[0];
Per Forlin04296b72011-07-01 18:55:31 +0200171 struct mmc_queue_req *mqrq_prev = &mq->mqrq[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Greg Kroah-Hartmanfcaf71f2006-09-12 17:00:10 +0200173 if (mmc_dev(host)->dma_mask && *mmc_dev(host)->dma_mask)
174 limit = *mmc_dev(host)->dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 mq->card = card;
Venkatraman S1b50f5f2012-04-13 17:54:11 +0530177 mq->queue = blk_init_queue(mmc_request_fn, lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (!mq->queue)
179 return -ENOMEM;
180
Per Forlin97868a22011-07-09 17:12:36 -0400181 mq->mqrq_cur = mqrq_cur;
Per Forlin04296b72011-07-01 18:55:31 +0200182 mq->mqrq_prev = mqrq_prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 mq->queue->queuedata = mq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Pierre Ossman98ccf142007-05-12 00:26:16 +0200185 blk_queue_prep_rq(mq->queue, mmc_prep_request);
Pierre Ossman8dddfe12008-10-14 20:04:46 +0200186 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, mq->queue);
Adrian Huntere056a1b2011-06-28 17:16:02 +0300187 if (mmc_can_erase(card))
188 mmc_queue_setup_discard(mq->queue, card);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200189
190#ifdef CONFIG_MMC_BLOCK_BOUNCE
Martin K. Petersena36274e2010-09-10 01:33:59 -0400191 if (host->max_segs == 1) {
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200192 unsigned int bouncesz;
193
Pierre Ossman98ccf142007-05-12 00:26:16 +0200194 bouncesz = MMC_QUEUE_BOUNCESZ;
195
196 if (bouncesz > host->max_req_size)
197 bouncesz = host->max_req_size;
198 if (bouncesz > host->max_seg_size)
199 bouncesz = host->max_seg_size;
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200200 if (bouncesz > (host->max_blk_count * 512))
201 bouncesz = host->max_blk_count * 512;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200202
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200203 if (bouncesz > 512) {
Per Forlin97868a22011-07-09 17:12:36 -0400204 mqrq_cur->bounce_buf = kmalloc(bouncesz, GFP_KERNEL);
205 if (!mqrq_cur->bounce_buf) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530206 pr_warning("%s: unable to "
Per Forlin97868a22011-07-09 17:12:36 -0400207 "allocate bounce cur buffer\n",
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200208 mmc_card_name(card));
209 }
Per Forlin04296b72011-07-01 18:55:31 +0200210 mqrq_prev->bounce_buf = kmalloc(bouncesz, GFP_KERNEL);
211 if (!mqrq_prev->bounce_buf) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530212 pr_warning("%s: unable to "
Per Forlin04296b72011-07-01 18:55:31 +0200213 "allocate bounce prev buffer\n",
214 mmc_card_name(card));
215 kfree(mqrq_cur->bounce_buf);
216 mqrq_cur->bounce_buf = NULL;
217 }
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200218 }
219
Per Forlin04296b72011-07-01 18:55:31 +0200220 if (mqrq_cur->bounce_buf && mqrq_prev->bounce_buf) {
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200221 blk_queue_bounce_limit(mq->queue, BLK_BOUNCE_ANY);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -0500222 blk_queue_max_hw_sectors(mq->queue, bouncesz / 512);
Martin K. Petersen8a783622010-02-26 00:20:39 -0500223 blk_queue_max_segments(mq->queue, bouncesz / 512);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200224 blk_queue_max_segment_size(mq->queue, bouncesz);
225
Per Forlin97868a22011-07-09 17:12:36 -0400226 mqrq_cur->sg = mmc_alloc_sg(1, &ret);
227 if (ret)
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200228 goto cleanup_queue;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200229
Per Forlin97868a22011-07-09 17:12:36 -0400230 mqrq_cur->bounce_sg =
231 mmc_alloc_sg(bouncesz / 512, &ret);
232 if (ret)
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200233 goto cleanup_queue;
Per Forlin97868a22011-07-09 17:12:36 -0400234
Per Forlin04296b72011-07-01 18:55:31 +0200235 mqrq_prev->sg = mmc_alloc_sg(1, &ret);
236 if (ret)
237 goto cleanup_queue;
238
239 mqrq_prev->bounce_sg =
240 mmc_alloc_sg(bouncesz / 512, &ret);
241 if (ret)
242 goto cleanup_queue;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200243 }
244 }
245#endif
246
Per Forlin04296b72011-07-01 18:55:31 +0200247 if (!mqrq_cur->bounce_buf && !mqrq_prev->bounce_buf) {
Pierre Ossman98ccf142007-05-12 00:26:16 +0200248 blk_queue_bounce_limit(mq->queue, limit);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -0500249 blk_queue_max_hw_sectors(mq->queue,
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200250 min(host->max_blk_count, host->max_req_size / 512));
Martin K. Petersena36274e2010-09-10 01:33:59 -0400251 blk_queue_max_segments(mq->queue, host->max_segs);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200252 blk_queue_max_segment_size(mq->queue, host->max_seg_size);
253
Per Forlin97868a22011-07-09 17:12:36 -0400254 mqrq_cur->sg = mmc_alloc_sg(host->max_segs, &ret);
255 if (ret)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200256 goto cleanup_queue;
Per Forlin97868a22011-07-09 17:12:36 -0400257
Per Forlin04296b72011-07-01 18:55:31 +0200258
259 mqrq_prev->sg = mmc_alloc_sg(host->max_segs, &ret);
260 if (ret)
261 goto cleanup_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
263
Thomas Gleixner632cf922010-09-14 07:12:35 -0400264 sema_init(&mq->thread_sem, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Adrian Hunterd09408a2011-06-23 13:40:28 +0300266 mq->thread = kthread_run(mmc_queue_thread, mq, "mmcqd/%d%s",
267 host->index, subname ? subname : "");
Ethan Dude528fa2010-09-30 18:40:27 -0400268
Christoph Hellwig87598a22006-11-13 20:23:52 +0100269 if (IS_ERR(mq->thread)) {
270 ret = PTR_ERR(mq->thread);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200271 goto free_bounce_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 }
273
Christoph Hellwig87598a22006-11-13 20:23:52 +0100274 return 0;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200275 free_bounce_sg:
Per Forlin97868a22011-07-09 17:12:36 -0400276 kfree(mqrq_cur->bounce_sg);
277 mqrq_cur->bounce_sg = NULL;
Per Forlin04296b72011-07-01 18:55:31 +0200278 kfree(mqrq_prev->bounce_sg);
279 mqrq_prev->bounce_sg = NULL;
Per Forlin97868a22011-07-09 17:12:36 -0400280
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200281 cleanup_queue:
Per Forlin97868a22011-07-09 17:12:36 -0400282 kfree(mqrq_cur->sg);
283 mqrq_cur->sg = NULL;
284 kfree(mqrq_cur->bounce_buf);
285 mqrq_cur->bounce_buf = NULL;
286
Per Forlin04296b72011-07-01 18:55:31 +0200287 kfree(mqrq_prev->sg);
288 mqrq_prev->sg = NULL;
289 kfree(mqrq_prev->bounce_buf);
290 mqrq_prev->bounce_buf = NULL;
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 blk_cleanup_queue(mq->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return ret;
294}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296void mmc_cleanup_queue(struct mmc_queue *mq)
297{
Jens Axboe165125e2007-07-24 09:28:11 +0200298 struct request_queue *q = mq->queue;
Pierre Ossman89b4e132006-11-14 22:08:16 +0100299 unsigned long flags;
Per Forlin97868a22011-07-09 17:12:36 -0400300 struct mmc_queue_req *mqrq_cur = mq->mqrq_cur;
Per Forlin04296b72011-07-01 18:55:31 +0200301 struct mmc_queue_req *mqrq_prev = mq->mqrq_prev;
Pierre Ossman89b4e132006-11-14 22:08:16 +0100302
Pierre Ossmand2b46f62007-04-28 16:52:12 +0200303 /* Make sure the queue isn't suspended, as that will deadlock */
304 mmc_queue_resume(mq);
305
Pierre Ossman89b4e132006-11-14 22:08:16 +0100306 /* Then terminate our worker thread */
Christoph Hellwig87598a22006-11-13 20:23:52 +0100307 kthread_stop(mq->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800309 /* Empty the queue */
310 spin_lock_irqsave(q->queue_lock, flags);
311 q->queuedata = NULL;
312 blk_start_queue(q);
313 spin_unlock_irqrestore(q->queue_lock, flags);
314
Per Forlin97868a22011-07-09 17:12:36 -0400315 kfree(mqrq_cur->bounce_sg);
316 mqrq_cur->bounce_sg = NULL;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200317
Per Forlin97868a22011-07-09 17:12:36 -0400318 kfree(mqrq_cur->sg);
319 mqrq_cur->sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Per Forlin97868a22011-07-09 17:12:36 -0400321 kfree(mqrq_cur->bounce_buf);
322 mqrq_cur->bounce_buf = NULL;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200323
Per Forlin04296b72011-07-01 18:55:31 +0200324 kfree(mqrq_prev->bounce_sg);
325 mqrq_prev->bounce_sg = NULL;
326
327 kfree(mqrq_prev->sg);
328 mqrq_prev->sg = NULL;
329
330 kfree(mqrq_prev->bounce_buf);
331 mqrq_prev->bounce_buf = NULL;
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 mq->card = NULL;
334}
335EXPORT_SYMBOL(mmc_cleanup_queue);
336
337/**
338 * mmc_queue_suspend - suspend a MMC request queue
339 * @mq: MMC queue to suspend
340 *
341 * Stop the block request queue, and wait for our thread to
342 * complete any outstanding requests. This ensures that we
343 * won't suspend while a request is being processed.
344 */
345void mmc_queue_suspend(struct mmc_queue *mq)
346{
Jens Axboe165125e2007-07-24 09:28:11 +0200347 struct request_queue *q = mq->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 unsigned long flags;
349
350 if (!(mq->flags & MMC_QUEUE_SUSPENDED)) {
351 mq->flags |= MMC_QUEUE_SUSPENDED;
352
353 spin_lock_irqsave(q->queue_lock, flags);
354 blk_stop_queue(q);
355 spin_unlock_irqrestore(q->queue_lock, flags);
356
357 down(&mq->thread_sem);
358 }
359}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361/**
362 * mmc_queue_resume - resume a previously suspended MMC request queue
363 * @mq: MMC queue to resume
364 */
365void mmc_queue_resume(struct mmc_queue *mq)
366{
Jens Axboe165125e2007-07-24 09:28:11 +0200367 struct request_queue *q = mq->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 unsigned long flags;
369
370 if (mq->flags & MMC_QUEUE_SUSPENDED) {
371 mq->flags &= ~MMC_QUEUE_SUSPENDED;
372
373 up(&mq->thread_sem);
374
375 spin_lock_irqsave(q->queue_lock, flags);
376 blk_start_queue(q);
377 spin_unlock_irqrestore(q->queue_lock, flags);
378 }
379}
Pierre Ossman98ac2162006-12-23 20:03:02 +0100380
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200381/*
382 * Prepare the sg list(s) to be handed of to the host driver
383 */
Per Forlin97868a22011-07-09 17:12:36 -0400384unsigned int mmc_queue_map_sg(struct mmc_queue *mq, struct mmc_queue_req *mqrq)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200385{
386 unsigned int sg_len;
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200387 size_t buflen;
388 struct scatterlist *sg;
389 int i;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200390
Per Forlin97868a22011-07-09 17:12:36 -0400391 if (!mqrq->bounce_buf)
392 return blk_rq_map_sg(mq->queue, mqrq->req, mqrq->sg);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200393
Per Forlin97868a22011-07-09 17:12:36 -0400394 BUG_ON(!mqrq->bounce_sg);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200395
Per Forlin97868a22011-07-09 17:12:36 -0400396 sg_len = blk_rq_map_sg(mq->queue, mqrq->req, mqrq->bounce_sg);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200397
Per Forlin97868a22011-07-09 17:12:36 -0400398 mqrq->bounce_sg_len = sg_len;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200399
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200400 buflen = 0;
Per Forlin97868a22011-07-09 17:12:36 -0400401 for_each_sg(mqrq->bounce_sg, sg, sg_len, i)
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200402 buflen += sg->length;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200403
Per Forlin97868a22011-07-09 17:12:36 -0400404 sg_init_one(mqrq->sg, mqrq->bounce_buf, buflen);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200405
406 return 1;
407}
408
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200409/*
410 * If writing, bounce the data to the buffer before the request
411 * is sent to the host driver
412 */
Per Forlin97868a22011-07-09 17:12:36 -0400413void mmc_queue_bounce_pre(struct mmc_queue_req *mqrq)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200414{
Per Forlin97868a22011-07-09 17:12:36 -0400415 if (!mqrq->bounce_buf)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200416 return;
417
Per Forlin97868a22011-07-09 17:12:36 -0400418 if (rq_data_dir(mqrq->req) != WRITE)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200419 return;
420
Per Forlin97868a22011-07-09 17:12:36 -0400421 sg_copy_to_buffer(mqrq->bounce_sg, mqrq->bounce_sg_len,
422 mqrq->bounce_buf, mqrq->sg[0].length);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200423}
424
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200425/*
426 * If reading, bounce the data from the buffer after the request
427 * has been handled by the host driver
428 */
Per Forlin97868a22011-07-09 17:12:36 -0400429void mmc_queue_bounce_post(struct mmc_queue_req *mqrq)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200430{
Per Forlin97868a22011-07-09 17:12:36 -0400431 if (!mqrq->bounce_buf)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200432 return;
433
Per Forlin97868a22011-07-09 17:12:36 -0400434 if (rq_data_dir(mqrq->req) != READ)
Pierre Ossman98ccf142007-05-12 00:26:16 +0200435 return;
436
Per Forlin97868a22011-07-09 17:12:36 -0400437 sg_copy_from_buffer(mqrq->bounce_sg, mqrq->bounce_sg_len,
438 mqrq->bounce_buf, mqrq->sg[0].length);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200439}