ARM: 7409/1: Do not call flush_cache_user_range with mmap_sem held
[linux/fpc-iii.git] / drivers / mmc / card / queue.c
blob6413afa318d2c65532bd11dc6f36a539c6291107
1 /*
2 * linux/drivers/mmc/card/queue.c
4 * Copyright (C) 2003 Russell King, All Rights Reserved.
5 * Copyright 2006-2007 Pierre Ossman
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.
12 #include <linux/slab.h>
13 #include <linux/module.h>
14 #include <linux/blkdev.h>
15 #include <linux/freezer.h>
16 #include <linux/kthread.h>
17 #include <linux/scatterlist.h>
19 #include <linux/mmc/card.h>
20 #include <linux/mmc/host.h>
21 #include "queue.h"
23 #define MMC_QUEUE_BOUNCESZ 65536
25 #define MMC_QUEUE_SUSPENDED (1 << 0)
28 * Prepare a MMC request. This just filters out odd stuff.
30 static int mmc_prep_request(struct request_queue *q, struct request *req)
33 * We only like normal block requests and discards.
35 if (req->cmd_type != REQ_TYPE_FS && !(req->cmd_flags & REQ_DISCARD)) {
36 blk_dump_rq_flags(req, "MMC bad request");
37 return BLKPREP_KILL;
40 req->cmd_flags |= REQ_DONTPREP;
42 return BLKPREP_OK;
45 static int mmc_queue_thread(void *d)
47 struct mmc_queue *mq = d;
48 struct request_queue *q = mq->queue;
50 current->flags |= PF_MEMALLOC;
52 down(&mq->thread_sem);
53 do {
54 struct request *req = NULL;
56 spin_lock_irq(q->queue_lock);
57 set_current_state(TASK_INTERRUPTIBLE);
58 req = blk_fetch_request(q);
59 mq->req = req;
60 spin_unlock_irq(q->queue_lock);
62 if (!req) {
63 if (kthread_should_stop()) {
64 set_current_state(TASK_RUNNING);
65 break;
67 up(&mq->thread_sem);
68 schedule();
69 down(&mq->thread_sem);
70 continue;
72 set_current_state(TASK_RUNNING);
74 mq->issue_fn(mq, req);
75 } while (1);
76 up(&mq->thread_sem);
78 return 0;
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.
87 static void mmc_request(struct request_queue *q)
89 struct mmc_queue *mq = q->queuedata;
90 struct request *req;
92 if (!mq) {
93 while ((req = blk_fetch_request(q)) != NULL) {
94 req->cmd_flags |= REQ_QUIET;
95 __blk_end_request_all(req, -EIO);
97 return;
100 if (!mq->req)
101 wake_up_process(mq->thread);
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 * @subname: partition subname
111 * Initialise a MMC card request queue.
113 int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
114 spinlock_t *lock, const char *subname)
116 struct mmc_host *host = card->host;
117 u64 limit = BLK_BOUNCE_HIGH;
118 int ret;
120 if (mmc_dev(host)->dma_mask && *mmc_dev(host)->dma_mask)
121 limit = *mmc_dev(host)->dma_mask;
123 mq->card = card;
124 mq->queue = blk_init_queue(mmc_request, lock);
125 if (!mq->queue)
126 return -ENOMEM;
128 mq->queue->queuedata = mq;
129 mq->req = NULL;
131 blk_queue_prep_rq(mq->queue, mmc_prep_request);
132 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, mq->queue);
133 if (mmc_can_erase(card)) {
134 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, mq->queue);
135 mq->queue->limits.max_discard_sectors = UINT_MAX;
136 if (card->erased_byte == 0)
137 mq->queue->limits.discard_zeroes_data = 1;
138 mq->queue->limits.discard_granularity = card->pref_erase << 9;
139 if (mmc_can_secure_erase_trim(card))
140 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD,
141 mq->queue);
144 #ifdef CONFIG_MMC_BLOCK_BOUNCE
145 if (host->max_segs == 1) {
146 unsigned int bouncesz;
148 bouncesz = MMC_QUEUE_BOUNCESZ;
150 if (bouncesz > host->max_req_size)
151 bouncesz = host->max_req_size;
152 if (bouncesz > host->max_seg_size)
153 bouncesz = host->max_seg_size;
154 if (bouncesz > (host->max_blk_count * 512))
155 bouncesz = host->max_blk_count * 512;
157 if (bouncesz > 512) {
158 mq->bounce_buf = kmalloc(bouncesz, GFP_KERNEL);
159 if (!mq->bounce_buf) {
160 printk(KERN_WARNING "%s: unable to "
161 "allocate bounce buffer\n",
162 mmc_card_name(card));
166 if (mq->bounce_buf) {
167 blk_queue_bounce_limit(mq->queue, BLK_BOUNCE_ANY);
168 blk_queue_max_hw_sectors(mq->queue, bouncesz / 512);
169 blk_queue_max_segments(mq->queue, bouncesz / 512);
170 blk_queue_max_segment_size(mq->queue, bouncesz);
172 mq->sg = kmalloc(sizeof(struct scatterlist),
173 GFP_KERNEL);
174 if (!mq->sg) {
175 ret = -ENOMEM;
176 goto cleanup_queue;
178 sg_init_table(mq->sg, 1);
180 mq->bounce_sg = kmalloc(sizeof(struct scatterlist) *
181 bouncesz / 512, GFP_KERNEL);
182 if (!mq->bounce_sg) {
183 ret = -ENOMEM;
184 goto cleanup_queue;
186 sg_init_table(mq->bounce_sg, bouncesz / 512);
189 #endif
191 if (!mq->bounce_buf) {
192 blk_queue_bounce_limit(mq->queue, limit);
193 blk_queue_max_hw_sectors(mq->queue,
194 min(host->max_blk_count, host->max_req_size / 512));
195 blk_queue_max_segments(mq->queue, host->max_segs);
196 blk_queue_max_segment_size(mq->queue, host->max_seg_size);
198 mq->sg = kmalloc(sizeof(struct scatterlist) *
199 host->max_segs, GFP_KERNEL);
200 if (!mq->sg) {
201 ret = -ENOMEM;
202 goto cleanup_queue;
204 sg_init_table(mq->sg, host->max_segs);
207 sema_init(&mq->thread_sem, 1);
209 mq->thread = kthread_run(mmc_queue_thread, mq, "mmcqd/%d%s",
210 host->index, subname ? subname : "");
212 if (IS_ERR(mq->thread)) {
213 ret = PTR_ERR(mq->thread);
214 goto free_bounce_sg;
217 return 0;
218 free_bounce_sg:
219 if (mq->bounce_sg)
220 kfree(mq->bounce_sg);
221 mq->bounce_sg = NULL;
222 cleanup_queue:
223 if (mq->sg)
224 kfree(mq->sg);
225 mq->sg = NULL;
226 if (mq->bounce_buf)
227 kfree(mq->bounce_buf);
228 mq->bounce_buf = NULL;
229 blk_cleanup_queue(mq->queue);
230 return ret;
233 void mmc_cleanup_queue(struct mmc_queue *mq)
235 struct request_queue *q = mq->queue;
236 unsigned long flags;
238 /* Make sure the queue isn't suspended, as that will deadlock */
239 mmc_queue_resume(mq);
241 /* Then terminate our worker thread */
242 kthread_stop(mq->thread);
244 /* Empty the queue */
245 spin_lock_irqsave(q->queue_lock, flags);
246 q->queuedata = NULL;
247 blk_start_queue(q);
248 spin_unlock_irqrestore(q->queue_lock, flags);
250 if (mq->bounce_sg)
251 kfree(mq->bounce_sg);
252 mq->bounce_sg = NULL;
254 kfree(mq->sg);
255 mq->sg = NULL;
257 if (mq->bounce_buf)
258 kfree(mq->bounce_buf);
259 mq->bounce_buf = NULL;
261 mq->card = NULL;
263 EXPORT_SYMBOL(mmc_cleanup_queue);
266 * mmc_queue_suspend - suspend a MMC request queue
267 * @mq: MMC queue to suspend
269 * Stop the block request queue, and wait for our thread to
270 * complete any outstanding requests. This ensures that we
271 * won't suspend while a request is being processed.
273 void mmc_queue_suspend(struct mmc_queue *mq)
275 struct request_queue *q = mq->queue;
276 unsigned long flags;
278 if (!(mq->flags & MMC_QUEUE_SUSPENDED)) {
279 mq->flags |= MMC_QUEUE_SUSPENDED;
281 spin_lock_irqsave(q->queue_lock, flags);
282 blk_stop_queue(q);
283 spin_unlock_irqrestore(q->queue_lock, flags);
285 down(&mq->thread_sem);
290 * mmc_queue_resume - resume a previously suspended MMC request queue
291 * @mq: MMC queue to resume
293 void mmc_queue_resume(struct mmc_queue *mq)
295 struct request_queue *q = mq->queue;
296 unsigned long flags;
298 if (mq->flags & MMC_QUEUE_SUSPENDED) {
299 mq->flags &= ~MMC_QUEUE_SUSPENDED;
301 up(&mq->thread_sem);
303 spin_lock_irqsave(q->queue_lock, flags);
304 blk_start_queue(q);
305 spin_unlock_irqrestore(q->queue_lock, flags);
310 * Prepare the sg list(s) to be handed of to the host driver
312 unsigned int mmc_queue_map_sg(struct mmc_queue *mq)
314 unsigned int sg_len;
315 size_t buflen;
316 struct scatterlist *sg;
317 int i;
319 if (!mq->bounce_buf)
320 return blk_rq_map_sg(mq->queue, mq->req, mq->sg);
322 BUG_ON(!mq->bounce_sg);
324 sg_len = blk_rq_map_sg(mq->queue, mq->req, mq->bounce_sg);
326 mq->bounce_sg_len = sg_len;
328 buflen = 0;
329 for_each_sg(mq->bounce_sg, sg, sg_len, i)
330 buflen += sg->length;
332 sg_init_one(mq->sg, mq->bounce_buf, buflen);
334 return 1;
338 * If writing, bounce the data to the buffer before the request
339 * is sent to the host driver
341 void mmc_queue_bounce_pre(struct mmc_queue *mq)
343 if (!mq->bounce_buf)
344 return;
346 if (rq_data_dir(mq->req) != WRITE)
347 return;
349 sg_copy_to_buffer(mq->bounce_sg, mq->bounce_sg_len,
350 mq->bounce_buf, mq->sg[0].length);
354 * If reading, bounce the data from the buffer after the request
355 * has been handled by the host driver
357 void mmc_queue_bounce_post(struct mmc_queue *mq)
359 if (!mq->bounce_buf)
360 return;
362 if (rq_data_dir(mq->req) != READ)
363 return;
365 sg_copy_from_buffer(mq->bounce_sg, mq->bounce_sg_len,
366 mq->bounce_buf, mq->sg[0].length);