3e2db1cf1cbbed8ecef23e3ba52e1a4652f01ca3
[pandora-kernel.git] / drivers / mmc / card / queue.c
1 /*
2  *  linux/drivers/mmc/card/queue.c
3  *
4  *  Copyright (C) 2003 Russell King, All Rights Reserved.
5  *  Copyright 2006-2007 Pierre Ossman
6  *
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/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>
18
19 #include <linux/mmc/card.h>
20 #include <linux/mmc/host.h>
21 #include "queue.h"
22
23 #define MMC_QUEUE_BOUNCESZ      65536
24
25 #define MMC_QUEUE_SUSPENDED     (1 << 0)
26
27 /*
28  * Prepare a MMC request. This just filters out odd stuff.
29  */
30 static int mmc_prep_request(struct request_queue *q, struct request *req)
31 {
32         /*
33          * We only like normal block requests and discards.
34          */
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;
38         }
39
40         req->cmd_flags |= REQ_DONTPREP;
41
42         return BLKPREP_OK;
43 }
44
45 static int mmc_queue_thread(void *d)
46 {
47         struct mmc_queue *mq = d;
48         struct request_queue *q = mq->queue;
49
50         current->flags |= PF_MEMALLOC;
51
52         down(&mq->thread_sem);
53         do {
54                 struct request *req = NULL;
55
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);
61
62                 if (!req) {
63                         if (kthread_should_stop()) {
64                                 set_current_state(TASK_RUNNING);
65                                 break;
66                         }
67                         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);
76         up(&mq->thread_sem);
77
78         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  */
87 static void mmc_request(struct request_queue *q)
88 {
89         struct mmc_queue *mq = q->queuedata;
90         struct request *req;
91
92         if (!mq) {
93                 while ((req = blk_fetch_request(q)) != NULL) {
94                         req->cmd_flags |= REQ_QUIET;
95                         __blk_end_request_all(req, -EIO);
96                 }
97                 return;
98         }
99
100         if (!mq->req)
101                 wake_up_process(mq->thread);
102 }
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  * @subname: partition subname
110  *
111  * Initialise a MMC card request queue.
112  */
113 int mmc_init_queue(struct mmc_queue *mq, struct mmc_card *card,
114                    spinlock_t *lock, const char *subname)
115 {
116         struct mmc_host *host = card->host;
117         u64 limit = BLK_BOUNCE_HIGH;
118         int ret;
119
120         if (mmc_dev(host)->dma_mask && *mmc_dev(host)->dma_mask)
121                 limit = *mmc_dev(host)->dma_mask;
122
123         mq->card = card;
124         mq->queue = blk_init_queue(mmc_request, lock);
125         if (!mq->queue)
126                 return -ENOMEM;
127
128         mq->queue->queuedata = mq;
129         mq->req = NULL;
130
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                 if (!mmc_can_trim(card) && is_power_of_2(card->erase_size)) {
139                         mq->queue->limits.discard_granularity =
140                                                         card->erase_size << 9;
141                         mq->queue->limits.discard_alignment =
142                                                         card->erase_size << 9;
143                 }
144                 if (mmc_can_secure_erase_trim(card))
145                         queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD,
146                                                 mq->queue);
147         }
148
149 #ifdef CONFIG_MMC_BLOCK_BOUNCE
150         if (host->max_segs == 1) {
151                 unsigned int bouncesz;
152
153                 bouncesz = MMC_QUEUE_BOUNCESZ;
154
155                 if (bouncesz > host->max_req_size)
156                         bouncesz = host->max_req_size;
157                 if (bouncesz > host->max_seg_size)
158                         bouncesz = host->max_seg_size;
159                 if (bouncesz > (host->max_blk_count * 512))
160                         bouncesz = host->max_blk_count * 512;
161
162                 if (bouncesz > 512) {
163                         mq->bounce_buf = kmalloc(bouncesz, GFP_KERNEL);
164                         if (!mq->bounce_buf) {
165                                 printk(KERN_WARNING "%s: unable to "
166                                         "allocate bounce buffer\n",
167                                         mmc_card_name(card));
168                         }
169                 }
170
171                 if (mq->bounce_buf) {
172                         blk_queue_bounce_limit(mq->queue, BLK_BOUNCE_ANY);
173                         blk_queue_max_hw_sectors(mq->queue, bouncesz / 512);
174                         blk_queue_max_segments(mq->queue, bouncesz / 512);
175                         blk_queue_max_segment_size(mq->queue, bouncesz);
176
177                         mq->sg = kmalloc(sizeof(struct scatterlist),
178                                 GFP_KERNEL);
179                         if (!mq->sg) {
180                                 ret = -ENOMEM;
181                                 goto cleanup_queue;
182                         }
183                         sg_init_table(mq->sg, 1);
184
185                         mq->bounce_sg = kmalloc(sizeof(struct scatterlist) *
186                                 bouncesz / 512, GFP_KERNEL);
187                         if (!mq->bounce_sg) {
188                                 ret = -ENOMEM;
189                                 goto cleanup_queue;
190                         }
191                         sg_init_table(mq->bounce_sg, bouncesz / 512);
192                 }
193         }
194 #endif
195
196         if (!mq->bounce_buf) {
197                 blk_queue_bounce_limit(mq->queue, limit);
198                 blk_queue_max_hw_sectors(mq->queue,
199                         min(host->max_blk_count, host->max_req_size / 512));
200                 blk_queue_max_segments(mq->queue, host->max_segs);
201                 blk_queue_max_segment_size(mq->queue, host->max_seg_size);
202
203                 mq->sg = kmalloc(sizeof(struct scatterlist) *
204                         host->max_segs, GFP_KERNEL);
205                 if (!mq->sg) {
206                         ret = -ENOMEM;
207                         goto cleanup_queue;
208                 }
209                 sg_init_table(mq->sg, host->max_segs);
210         }
211
212         sema_init(&mq->thread_sem, 1);
213
214         mq->thread = kthread_run(mmc_queue_thread, mq, "mmcqd/%d%s",
215                 host->index, subname ? subname : "");
216
217         if (IS_ERR(mq->thread)) {
218                 ret = PTR_ERR(mq->thread);
219                 goto free_bounce_sg;
220         }
221
222         return 0;
223  free_bounce_sg:
224         if (mq->bounce_sg)
225                 kfree(mq->bounce_sg);
226         mq->bounce_sg = NULL;
227  cleanup_queue:
228         if (mq->sg)
229                 kfree(mq->sg);
230         mq->sg = NULL;
231         if (mq->bounce_buf)
232                 kfree(mq->bounce_buf);
233         mq->bounce_buf = NULL;
234         blk_cleanup_queue(mq->queue);
235         return ret;
236 }
237
238 void mmc_cleanup_queue(struct mmc_queue *mq)
239 {
240         struct request_queue *q = mq->queue;
241         unsigned long flags;
242
243         /* Make sure the queue isn't suspended, as that will deadlock */
244         mmc_queue_resume(mq);
245
246         /* Then terminate our worker thread */
247         kthread_stop(mq->thread);
248
249         /* Empty the queue */
250         spin_lock_irqsave(q->queue_lock, flags);
251         q->queuedata = NULL;
252         blk_start_queue(q);
253         spin_unlock_irqrestore(q->queue_lock, flags);
254
255         if (mq->bounce_sg)
256                 kfree(mq->bounce_sg);
257         mq->bounce_sg = NULL;
258
259         kfree(mq->sg);
260         mq->sg = NULL;
261
262         if (mq->bounce_buf)
263                 kfree(mq->bounce_buf);
264         mq->bounce_buf = NULL;
265
266         mq->card = NULL;
267 }
268 EXPORT_SYMBOL(mmc_cleanup_queue);
269
270 /**
271  * mmc_queue_suspend - suspend a MMC request queue
272  * @mq: MMC queue to suspend
273  *
274  * Stop the block request queue, and wait for our thread to
275  * complete any outstanding requests.  This ensures that we
276  * won't suspend while a request is being processed.
277  */
278 void mmc_queue_suspend(struct mmc_queue *mq)
279 {
280         struct request_queue *q = mq->queue;
281         unsigned long flags;
282
283         if (!(mq->flags & MMC_QUEUE_SUSPENDED)) {
284                 mq->flags |= MMC_QUEUE_SUSPENDED;
285
286                 spin_lock_irqsave(q->queue_lock, flags);
287                 blk_stop_queue(q);
288                 spin_unlock_irqrestore(q->queue_lock, flags);
289
290                 down(&mq->thread_sem);
291         }
292 }
293
294 /**
295  * mmc_queue_resume - resume a previously suspended MMC request queue
296  * @mq: MMC queue to resume
297  */
298 void mmc_queue_resume(struct mmc_queue *mq)
299 {
300         struct request_queue *q = mq->queue;
301         unsigned long flags;
302
303         if (mq->flags & MMC_QUEUE_SUSPENDED) {
304                 mq->flags &= ~MMC_QUEUE_SUSPENDED;
305
306                 up(&mq->thread_sem);
307
308                 spin_lock_irqsave(q->queue_lock, flags);
309                 blk_start_queue(q);
310                 spin_unlock_irqrestore(q->queue_lock, flags);
311         }
312 }
313
314 /*
315  * Prepare the sg list(s) to be handed of to the host driver
316  */
317 unsigned int mmc_queue_map_sg(struct mmc_queue *mq)
318 {
319         unsigned int sg_len;
320         size_t buflen;
321         struct scatterlist *sg;
322         int i;
323
324         if (!mq->bounce_buf)
325                 return blk_rq_map_sg(mq->queue, mq->req, mq->sg);
326
327         BUG_ON(!mq->bounce_sg);
328
329         sg_len = blk_rq_map_sg(mq->queue, mq->req, mq->bounce_sg);
330
331         mq->bounce_sg_len = sg_len;
332
333         buflen = 0;
334         for_each_sg(mq->bounce_sg, sg, sg_len, i)
335                 buflen += sg->length;
336
337         sg_init_one(mq->sg, mq->bounce_buf, buflen);
338
339         return 1;
340 }
341
342 /*
343  * If writing, bounce the data to the buffer before the request
344  * is sent to the host driver
345  */
346 void mmc_queue_bounce_pre(struct mmc_queue *mq)
347 {
348         if (!mq->bounce_buf)
349                 return;
350
351         if (rq_data_dir(mq->req) != WRITE)
352                 return;
353
354         sg_copy_to_buffer(mq->bounce_sg, mq->bounce_sg_len,
355                 mq->bounce_buf, mq->sg[0].length);
356 }
357
358 /*
359  * If reading, bounce the data from the buffer after the request
360  * has been handled by the host driver
361  */
362 void mmc_queue_bounce_post(struct mmc_queue *mq)
363 {
364         if (!mq->bounce_buf)
365                 return;
366
367         if (rq_data_dir(mq->req) != READ)
368                 return;
369
370         sg_copy_from_buffer(mq->bounce_sg, mq->bounce_sg_len,
371                 mq->bounce_buf, mq->sg[0].length);
372 }
373