blob: 381fe032caa129039c89da492a0b092f5540aed1 [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 */
12#include <linux/module.h>
13#include <linux/blkdev.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070014#include <linux/freezer.h>
Christoph Hellwig87598a22006-11-13 20:23:52 +010015#include <linux/kthread.h>
Jens Axboe45711f12007-10-22 21:19:53 +020016#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <linux/mmc/card.h>
19#include <linux/mmc/host.h>
Pierre Ossman98ac2162006-12-23 20:03:02 +010020#include "queue.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Pierre Ossman98ccf142007-05-12 00:26:16 +020022#define MMC_QUEUE_BOUNCESZ 65536
23
Christoph Hellwig87598a22006-11-13 20:23:52 +010024#define MMC_QUEUE_SUSPENDED (1 << 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/*
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020027 * Prepare a MMC request. This just filters out odd stuff.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 */
29static int mmc_prep_request(struct request_queue *q, struct request *req)
30{
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020031 /*
32 * We only like normal block requests.
33 */
Pierre Ossmand6d8de32008-08-16 20:43:48 +020034 if (!blk_fs_request(req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 blk_dump_rq_flags(req, "MMC bad request");
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020036 return BLKPREP_KILL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 }
38
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020039 req->cmd_flags |= REQ_DONTPREP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Pierre Ossman9c9f2d62007-05-16 17:29:21 +020041 return BLKPREP_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042}
43
44static int mmc_queue_thread(void *d)
45{
46 struct mmc_queue *mq = d;
47 struct request_queue *q = mq->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Rafael J. Wysocki83144182007-07-17 04:03:35 -070049 current->flags |= PF_MEMALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 down(&mq->thread_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 do {
53 struct request *req = NULL;
54
55 spin_lock_irq(q->queue_lock);
56 set_current_state(TASK_INTERRUPTIBLE);
Tejun Heo9934c8c2009-05-08 11:54:16 +090057 if (!blk_queue_plugged(q))
58 req = blk_fetch_request(q);
Juha [êöläc723e08a2006-08-06 09:58:22 +010059 mq->req = req;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 spin_unlock_irq(q->queue_lock);
61
62 if (!req) {
Vitaly Wool7b30d282006-12-07 20:08:02 +010063 if (kthread_should_stop()) {
64 set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 break;
Vitaly Wool7b30d282006-12-07 20:08:02 +010066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 up(&mq->thread_sem);
68 schedule();
69 down(&mq->thread_sem);
70 continue;
71 }
72 set_current_state(TASK_RUNNING);
73
74 mq->issue_fn(mq, req);
75 } while (1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 up(&mq->thread_sem);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return 0;
79}
80
81/*
82 * Generic MMC request handler. This is called for any queue on a
83 * particular host. When the host is not busy, we look for a request
84 * on any queue on this host, and attempt to issue it. This may
85 * not be the queue we were asked to process.
86 */
Jens Axboe165125e2007-07-24 09:28:11 +020087static void mmc_request(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
89 struct mmc_queue *mq = q->queuedata;
Pierre Ossman89b4e132006-11-14 22:08:16 +010090 struct request *req;
Pierre Ossman89b4e132006-11-14 22:08:16 +010091
92 if (!mq) {
Adrian Hunter5fa83ce2010-01-08 14:43:00 -080093 while ((req = blk_fetch_request(q)) != NULL) {
94 req->cmd_flags |= REQ_QUIET;
Tejun Heo296b2f62009-05-08 11:54:15 +090095 __blk_end_request_all(req, -EIO);
Adrian Hunter5fa83ce2010-01-08 14:43:00 -080096 }
Pierre Ossman89b4e132006-11-14 22:08:16 +010097 return;
98 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100 if (!mq->req)
Christoph Hellwig87598a22006-11-13 20:23:52 +0100101 wake_up_process(mq->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102}
103
104/**
105 * mmc_init_queue - initialise a queue structure.
106 * @mq: mmc queue
107 * @card: mmc card to attach this queue
108 * @lock: queue lock
109 *
110 * Initialise a MMC card request queue.
111 */
112int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card, spinlock_t *lock)
113{
114 struct mmc_host *host = card->host;
115 u64 limit = BLK_BOUNCE_HIGH;
116 int ret;
117
Greg Kroah-Hartmanfcaf71f2006-09-12 17:00:10 +0200118 if (mmc_dev(host)->dma_mask && *mmc_dev(host)->dma_mask)
119 limit = *mmc_dev(host)->dma_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 mq->card = card;
122 mq->queue = blk_init_queue(mmc_request, lock);
123 if (!mq->queue)
124 return -ENOMEM;
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 mq->queue->queuedata = mq;
127 mq->req = NULL;
128
Pierre Ossman98ccf142007-05-12 00:26:16 +0200129 blk_queue_prep_rq(mq->queue, mmc_prep_request);
Pierre Ossman91028952008-08-16 21:15:50 +0200130 blk_queue_ordered(mq->queue, QUEUE_ORDERED_DRAIN, NULL);
Pierre Ossman8dddfe12008-10-14 20:04:46 +0200131 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, mq->queue);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200132
133#ifdef CONFIG_MMC_BLOCK_BOUNCE
134 if (host->max_hw_segs == 1) {
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200135 unsigned int bouncesz;
136
Pierre Ossman98ccf142007-05-12 00:26:16 +0200137 bouncesz = MMC_QUEUE_BOUNCESZ;
138
139 if (bouncesz > host->max_req_size)
140 bouncesz = host->max_req_size;
141 if (bouncesz > host->max_seg_size)
142 bouncesz = host->max_seg_size;
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200143 if (bouncesz > (host->max_blk_count * 512))
144 bouncesz = host->max_blk_count * 512;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200145
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200146 if (bouncesz > 512) {
147 mq->bounce_buf = kmalloc(bouncesz, GFP_KERNEL);
148 if (!mq->bounce_buf) {
149 printk(KERN_WARNING "%s: unable to "
150 "allocate bounce buffer\n",
151 mmc_card_name(card));
152 }
153 }
154
155 if (mq->bounce_buf) {
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200156 blk_queue_bounce_limit(mq->queue, BLK_BOUNCE_ANY);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -0500157 blk_queue_max_hw_sectors(mq->queue, bouncesz / 512);
Martin K. Petersen8a783622010-02-26 00:20:39 -0500158 blk_queue_max_segments(mq->queue, bouncesz / 512);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200159 blk_queue_max_segment_size(mq->queue, bouncesz);
160
Jens Axboe45711f12007-10-22 21:19:53 +0200161 mq->sg = kmalloc(sizeof(struct scatterlist),
Pierre Ossman98ccf142007-05-12 00:26:16 +0200162 GFP_KERNEL);
163 if (!mq->sg) {
164 ret = -ENOMEM;
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200165 goto cleanup_queue;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200166 }
Jens Axboe45711f12007-10-22 21:19:53 +0200167 sg_init_table(mq->sg, 1);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200168
Jens Axboe45711f12007-10-22 21:19:53 +0200169 mq->bounce_sg = kmalloc(sizeof(struct scatterlist) *
Pierre Ossman98ccf142007-05-12 00:26:16 +0200170 bouncesz / 512, GFP_KERNEL);
171 if (!mq->bounce_sg) {
172 ret = -ENOMEM;
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200173 goto cleanup_queue;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200174 }
Jens Axboe45711f12007-10-22 21:19:53 +0200175 sg_init_table(mq->bounce_sg, bouncesz / 512);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200176 }
177 }
178#endif
179
180 if (!mq->bounce_buf) {
181 blk_queue_bounce_limit(mq->queue, limit);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -0500182 blk_queue_max_hw_sectors(mq->queue,
Pierre Ossmanf3eb0aa2008-08-16 21:34:02 +0200183 min(host->max_blk_count, host->max_req_size / 512));
Martin K. Petersen8a783622010-02-26 00:20:39 -0500184 blk_queue_max_segments(mq->queue, host->max_hw_segs);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200185 blk_queue_max_segment_size(mq->queue, host->max_seg_size);
186
Haavard Skinnemoen05e5b132007-11-23 10:19:00 +0100187 mq->sg = kmalloc(sizeof(struct scatterlist) *
Pierre Ossman98ccf142007-05-12 00:26:16 +0200188 host->max_phys_segs, GFP_KERNEL);
189 if (!mq->sg) {
190 ret = -ENOMEM;
191 goto cleanup_queue;
192 }
Haavard Skinnemoen05e5b132007-11-23 10:19:00 +0100193 sg_init_table(mq->sg, host->max_phys_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 init_MUTEX(&mq->thread_sem);
197
Christoph Hellwig87598a22006-11-13 20:23:52 +0100198 mq->thread = kthread_run(mmc_queue_thread, mq, "mmcqd");
199 if (IS_ERR(mq->thread)) {
200 ret = PTR_ERR(mq->thread);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200201 goto free_bounce_sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
203
Christoph Hellwig87598a22006-11-13 20:23:52 +0100204 return 0;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200205 free_bounce_sg:
206 if (mq->bounce_sg)
207 kfree(mq->bounce_sg);
208 mq->bounce_sg = NULL;
Pierre Ossmanaafabfa2007-08-09 14:28:02 +0200209 cleanup_queue:
210 if (mq->sg)
211 kfree(mq->sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 mq->sg = NULL;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200213 if (mq->bounce_buf)
214 kfree(mq->bounce_buf);
215 mq->bounce_buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 blk_cleanup_queue(mq->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return ret;
218}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220void mmc_cleanup_queue(struct mmc_queue *mq)
221{
Jens Axboe165125e2007-07-24 09:28:11 +0200222 struct request_queue *q = mq->queue;
Pierre Ossman89b4e132006-11-14 22:08:16 +0100223 unsigned long flags;
224
Pierre Ossmand2b46f62007-04-28 16:52:12 +0200225 /* Make sure the queue isn't suspended, as that will deadlock */
226 mmc_queue_resume(mq);
227
Pierre Ossman89b4e132006-11-14 22:08:16 +0100228 /* Then terminate our worker thread */
Christoph Hellwig87598a22006-11-13 20:23:52 +0100229 kthread_stop(mq->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Adrian Hunter5fa83ce2010-01-08 14:43:00 -0800231 /* Empty the queue */
232 spin_lock_irqsave(q->queue_lock, flags);
233 q->queuedata = NULL;
234 blk_start_queue(q);
235 spin_unlock_irqrestore(q->queue_lock, flags);
236
Pierre Ossman98ccf142007-05-12 00:26:16 +0200237 if (mq->bounce_sg)
238 kfree(mq->bounce_sg);
239 mq->bounce_sg = NULL;
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 kfree(mq->sg);
242 mq->sg = NULL;
243
Pierre Ossman98ccf142007-05-12 00:26:16 +0200244 if (mq->bounce_buf)
245 kfree(mq->bounce_buf);
246 mq->bounce_buf = NULL;
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 mq->card = NULL;
249}
250EXPORT_SYMBOL(mmc_cleanup_queue);
251
252/**
253 * mmc_queue_suspend - suspend a MMC request queue
254 * @mq: MMC queue to suspend
255 *
256 * Stop the block request queue, and wait for our thread to
257 * complete any outstanding requests. This ensures that we
258 * won't suspend while a request is being processed.
259 */
260void mmc_queue_suspend(struct mmc_queue *mq)
261{
Jens Axboe165125e2007-07-24 09:28:11 +0200262 struct request_queue *q = mq->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 unsigned long flags;
264
265 if (!(mq->flags & MMC_QUEUE_SUSPENDED)) {
266 mq->flags |= MMC_QUEUE_SUSPENDED;
267
268 spin_lock_irqsave(q->queue_lock, flags);
269 blk_stop_queue(q);
270 spin_unlock_irqrestore(q->queue_lock, flags);
271
272 down(&mq->thread_sem);
273 }
274}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276/**
277 * mmc_queue_resume - resume a previously suspended MMC request queue
278 * @mq: MMC queue to resume
279 */
280void mmc_queue_resume(struct mmc_queue *mq)
281{
Jens Axboe165125e2007-07-24 09:28:11 +0200282 struct request_queue *q = mq->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 unsigned long flags;
284
285 if (mq->flags & MMC_QUEUE_SUSPENDED) {
286 mq->flags &= ~MMC_QUEUE_SUSPENDED;
287
288 up(&mq->thread_sem);
289
290 spin_lock_irqsave(q->queue_lock, flags);
291 blk_start_queue(q);
292 spin_unlock_irqrestore(q->queue_lock, flags);
293 }
294}
Pierre Ossman98ac2162006-12-23 20:03:02 +0100295
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200296/*
297 * Prepare the sg list(s) to be handed of to the host driver
298 */
Pierre Ossman98ccf142007-05-12 00:26:16 +0200299unsigned int mmc_queue_map_sg(struct mmc_queue *mq)
300{
301 unsigned int sg_len;
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200302 size_t buflen;
303 struct scatterlist *sg;
304 int i;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200305
306 if (!mq->bounce_buf)
307 return blk_rq_map_sg(mq->queue, mq->req, mq->sg);
308
309 BUG_ON(!mq->bounce_sg);
310
311 sg_len = blk_rq_map_sg(mq->queue, mq->req, mq->bounce_sg);
312
313 mq->bounce_sg_len = sg_len;
314
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200315 buflen = 0;
316 for_each_sg(mq->bounce_sg, sg, sg_len, i)
317 buflen += sg->length;
Pierre Ossman98ccf142007-05-12 00:26:16 +0200318
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200319 sg_init_one(mq->sg, mq->bounce_buf, buflen);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200320
321 return 1;
322}
323
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200324/*
325 * If writing, bounce the data to the buffer before the request
326 * is sent to the host driver
327 */
Pierre Ossman98ccf142007-05-12 00:26:16 +0200328void mmc_queue_bounce_pre(struct mmc_queue *mq)
329{
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200330 unsigned long flags;
331
Pierre Ossman98ccf142007-05-12 00:26:16 +0200332 if (!mq->bounce_buf)
333 return;
334
Pierre Ossman98ccf142007-05-12 00:26:16 +0200335 if (rq_data_dir(mq->req) != WRITE)
336 return;
337
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200338 local_irq_save(flags);
339 sg_copy_to_buffer(mq->bounce_sg, mq->bounce_sg_len,
340 mq->bounce_buf, mq->sg[0].length);
341 local_irq_restore(flags);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200342}
343
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200344/*
345 * If reading, bounce the data from the buffer after the request
346 * has been handled by the host driver
347 */
Pierre Ossman98ccf142007-05-12 00:26:16 +0200348void mmc_queue_bounce_post(struct mmc_queue *mq)
349{
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200350 unsigned long flags;
351
Pierre Ossman98ccf142007-05-12 00:26:16 +0200352 if (!mq->bounce_buf)
353 return;
354
Pierre Ossman98ccf142007-05-12 00:26:16 +0200355 if (rq_data_dir(mq->req) != READ)
356 return;
357
Pierre Ossman2ff1fa62008-07-22 14:35:42 +0200358 local_irq_save(flags);
359 sg_copy_from_buffer(mq->bounce_sg, mq->bounce_sg_len,
360 mq->bounce_buf, mq->sg[0].length);
361 local_irq_restore(flags);
Pierre Ossman98ccf142007-05-12 00:26:16 +0200362}
363