blob: 150b5f3cd401a7c8549e9e15910a1107b713986e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Pierre Ossmanaaac1b42007-02-28 15:33:10 +01002 * linux/drivers/mmc/core/core.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2003-2004 Russell King, All Rights Reserved.
Pierre Ossman5b4fd9a2005-09-06 15:18:56 -07005 * SD support Copyright (C) 2004 Ian Molton, All Rights Reserved.
Pierre Ossmanad3868b2008-06-28 12:52:45 +02006 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
Philip Langdalebce40a32006-10-21 12:35:02 +02007 * MMCv4 support Copyright (C) 2006 Philip Langdale, All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/interrupt.h>
16#include <linux/completion.h>
17#include <linux/device.h>
18#include <linux/delay.h>
19#include <linux/pagemap.h>
20#include <linux/err.h>
Pierre Ossmanaf8350c2007-09-24 07:15:48 +020021#include <linux/leds.h>
Pierre Ossmanb57c43a2005-09-06 15:18:53 -070022#include <linux/scatterlist.h>
Anton Vorontsov86e82862008-11-26 22:54:17 +030023#include <linux/log2.h>
David Brownell5c139412009-03-11 03:30:43 -080024#include <linux/regulator/consumer.h>
Ohad Ben-Cohene5945732010-11-28 07:21:30 +020025#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <linux/mmc/card.h>
28#include <linux/mmc/host.h>
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010029#include <linux/mmc/mmc.h>
30#include <linux/mmc/sd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Pierre Ossmanaaac1b42007-02-28 15:33:10 +010032#include "core.h"
Pierre Ossmanffce2e72007-05-19 14:32:22 +020033#include "bus.h"
34#include "host.h"
Pierre Ossmane29a7d72007-05-26 13:48:18 +020035#include "sdio_bus.h"
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010036
37#include "mmc_ops.h"
38#include "sd_ops.h"
Pierre Ossman5c4e6f12007-05-21 20:23:20 +020039#include "sdio_ops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Pierre Ossmanffce2e72007-05-19 14:32:22 +020041static struct workqueue_struct *workqueue;
42
43/*
David Brownellaf517152007-08-08 09:11:32 -070044 * Enabling software CRCs on the data blocks can be a significant (30%)
45 * performance cost, and for other reasons may not always be desired.
46 * So we allow it it to be disabled.
47 */
48int use_spi_crc = 1;
49module_param(use_spi_crc, bool, 0);
50
51/*
Ben Hutchingsbd68e082009-12-14 18:01:29 -080052 * We normally treat cards as removed during suspend if they are not
53 * known to be on a non-removable bus, to avoid the risk of writing
54 * back data to a different card after resume. Allow this to be
55 * overridden if necessary.
56 */
57#ifdef CONFIG_MMC_UNSAFE_RESUME
58int mmc_assume_removable;
59#else
60int mmc_assume_removable = 1;
61#endif
Matt Fleming71d7d3d2010-09-27 09:42:19 +010062EXPORT_SYMBOL(mmc_assume_removable);
Ben Hutchingsbd68e082009-12-14 18:01:29 -080063module_param_named(removable, mmc_assume_removable, bool, 0644);
64MODULE_PARM_DESC(
65 removable,
66 "MMC/SD cards are removable and may be removed during suspend");
67
68/*
Pierre Ossmanffce2e72007-05-19 14:32:22 +020069 * Internal function. Schedule delayed work in the MMC work queue.
70 */
71static int mmc_schedule_delayed_work(struct delayed_work *work,
72 unsigned long delay)
73{
74 return queue_delayed_work(workqueue, work, delay);
75}
76
77/*
78 * Internal function. Flush all scheduled work from the MMC work queue.
79 */
80static void mmc_flush_scheduled_work(void)
81{
82 flush_workqueue(workqueue);
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085/**
Russell Kingfe10c6a2006-05-04 13:51:45 +010086 * mmc_request_done - finish processing an MMC request
87 * @host: MMC host which completed request
88 * @mrq: MMC request which request
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 *
90 * MMC drivers should call this function when they have completed
Russell Kingfe10c6a2006-05-04 13:51:45 +010091 * their processing of a request.
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 */
93void mmc_request_done(struct mmc_host *host, struct mmc_request *mrq)
94{
95 struct mmc_command *cmd = mrq->cmd;
Russell King920e70c2006-05-04 18:22:51 +010096 int err = cmd->error;
97
David Brownellaf517152007-08-08 09:11:32 -070098 if (err && cmd->retries && mmc_host_is_spi(host)) {
99 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
100 cmd->retries = 0;
101 }
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 if (err && cmd->retries) {
Pierre Ossmane4d21702007-07-24 21:46:49 +0200104 pr_debug("%s: req failed (CMD%u): %d, retrying...\n",
105 mmc_hostname(host), cmd->opcode, err);
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 cmd->retries--;
108 cmd->error = 0;
109 host->ops->request(host, mrq);
Pierre Ossmane4d21702007-07-24 21:46:49 +0200110 } else {
Pierre Ossmanaf8350c2007-09-24 07:15:48 +0200111 led_trigger_event(host->led, LED_OFF);
112
Pierre Ossmane4d21702007-07-24 21:46:49 +0200113 pr_debug("%s: req done (CMD%u): %d: %08x %08x %08x %08x\n",
114 mmc_hostname(host), cmd->opcode, err,
115 cmd->resp[0], cmd->resp[1],
116 cmd->resp[2], cmd->resp[3]);
117
118 if (mrq->data) {
119 pr_debug("%s: %d bytes transferred: %d\n",
120 mmc_hostname(host),
121 mrq->data->bytes_xfered, mrq->data->error);
122 }
123
124 if (mrq->stop) {
125 pr_debug("%s: (CMD%u): %d: %08x %08x %08x %08x\n",
126 mmc_hostname(host), mrq->stop->opcode,
127 mrq->stop->error,
128 mrq->stop->resp[0], mrq->stop->resp[1],
129 mrq->stop->resp[2], mrq->stop->resp[3]);
130 }
131
132 if (mrq->done)
133 mrq->done(mrq);
Linus Walleij04566832010-11-08 21:36:50 -0500134
135 mmc_host_clk_gate(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137}
138
139EXPORT_SYMBOL(mmc_request_done);
140
Adrian Bunk39361852007-07-25 00:40:58 +0200141static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
143{
Pierre Ossman976d9272007-04-13 22:47:01 +0200144#ifdef CONFIG_MMC_DEBUG
145 unsigned int i, sz;
Pierre Ossmana84756c2008-07-29 01:09:37 +0200146 struct scatterlist *sg;
Pierre Ossman976d9272007-04-13 22:47:01 +0200147#endif
148
Russell King920e70c2006-05-04 18:22:51 +0100149 pr_debug("%s: starting CMD%u arg %08x flags %08x\n",
150 mmc_hostname(host), mrq->cmd->opcode,
151 mrq->cmd->arg, mrq->cmd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Pierre Ossmane4d21702007-07-24 21:46:49 +0200153 if (mrq->data) {
154 pr_debug("%s: blksz %d blocks %d flags %08x "
155 "tsac %d ms nsac %d\n",
156 mmc_hostname(host), mrq->data->blksz,
157 mrq->data->blocks, mrq->data->flags,
Pierre Ossmance252ed2007-08-07 14:06:18 +0200158 mrq->data->timeout_ns / 1000000,
Pierre Ossmane4d21702007-07-24 21:46:49 +0200159 mrq->data->timeout_clks);
160 }
161
162 if (mrq->stop) {
163 pr_debug("%s: CMD%u arg %08x flags %08x\n",
164 mmc_hostname(host), mrq->stop->opcode,
165 mrq->stop->arg, mrq->stop->flags);
166 }
167
Pierre Ossmanf22ee4e2006-12-26 15:11:23 +0100168 WARN_ON(!host->claimed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Pierre Ossmanaf8350c2007-09-24 07:15:48 +0200170 led_trigger_event(host->led, LED_FULL);
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 mrq->cmd->error = 0;
173 mrq->cmd->mrq = mrq;
174 if (mrq->data) {
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100175 BUG_ON(mrq->data->blksz > host->max_blk_size);
Pierre Ossman55db8902006-11-21 17:55:45 +0100176 BUG_ON(mrq->data->blocks > host->max_blk_count);
177 BUG_ON(mrq->data->blocks * mrq->data->blksz >
178 host->max_req_size);
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100179
Pierre Ossman976d9272007-04-13 22:47:01 +0200180#ifdef CONFIG_MMC_DEBUG
181 sz = 0;
Pierre Ossmana84756c2008-07-29 01:09:37 +0200182 for_each_sg(mrq->data->sg, sg, mrq->data->sg_len, i)
183 sz += sg->length;
Pierre Ossman976d9272007-04-13 22:47:01 +0200184 BUG_ON(sz != mrq->data->blocks * mrq->data->blksz);
185#endif
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 mrq->cmd->data = mrq->data;
188 mrq->data->error = 0;
189 mrq->data->mrq = mrq;
190 if (mrq->stop) {
191 mrq->data->stop = mrq->stop;
192 mrq->stop->error = 0;
193 mrq->stop->mrq = mrq;
194 }
195 }
Linus Walleij04566832010-11-08 21:36:50 -0500196 mmc_host_clk_ungate(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 host->ops->request(host, mrq);
198}
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static void mmc_wait_done(struct mmc_request *mrq)
201{
202 complete(mrq->done_data);
203}
204
Pierre Ossman67a61c42007-07-11 20:22:11 +0200205/**
206 * mmc_wait_for_req - start a request and wait for completion
207 * @host: MMC host to start command
208 * @mrq: MMC request to start
209 *
210 * Start a new MMC custom command request for a host, and wait
211 * for the command to complete. Does not attempt to parse the
212 * response.
213 */
214void mmc_wait_for_req(struct mmc_host *host, struct mmc_request *mrq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Ingo Molnar0afffc72006-07-03 00:25:35 -0700216 DECLARE_COMPLETION_ONSTACK(complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 mrq->done_data = &complete;
219 mrq->done = mmc_wait_done;
220
221 mmc_start_request(host, mrq);
222
223 wait_for_completion(&complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226EXPORT_SYMBOL(mmc_wait_for_req);
227
228/**
229 * mmc_wait_for_cmd - start a command and wait for completion
230 * @host: MMC host to start command
231 * @cmd: MMC command to start
232 * @retries: maximum number of retries
233 *
234 * Start a new MMC command for a host, and wait for the command
235 * to complete. Return any error that occurred while the command
236 * was executing. Do not attempt to parse the response.
237 */
238int mmc_wait_for_cmd(struct mmc_host *host, struct mmc_command *cmd, int retries)
239{
240 struct mmc_request mrq;
241
Pierre Ossmand84075c82007-08-09 13:23:56 +0200242 WARN_ON(!host->claimed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 memset(&mrq, 0, sizeof(struct mmc_request));
245
246 memset(cmd->resp, 0, sizeof(cmd->resp));
247 cmd->retries = retries;
248
249 mrq.cmd = cmd;
250 cmd->data = NULL;
251
252 mmc_wait_for_req(host, &mrq);
253
254 return cmd->error;
255}
256
257EXPORT_SYMBOL(mmc_wait_for_cmd);
258
Pierre Ossman335eadf2005-09-06 15:18:50 -0700259/**
Russell Kingd773d722006-09-07 15:57:12 +0100260 * mmc_set_data_timeout - set the timeout for a data command
261 * @data: data phase for command
262 * @card: the MMC card associated with the data transfer
Pierre Ossman67a61c42007-07-11 20:22:11 +0200263 *
264 * Computes the data timeout parameters according to the
265 * correct algorithm given the card type.
Russell Kingd773d722006-09-07 15:57:12 +0100266 */
Pierre Ossmanb146d262007-07-24 19:16:54 +0200267void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
Russell Kingd773d722006-09-07 15:57:12 +0100268{
269 unsigned int mult;
270
271 /*
Pierre Ossmane6f918b2007-08-07 14:11:55 +0200272 * SDIO cards only define an upper 1 s limit on access.
273 */
274 if (mmc_card_sdio(card)) {
275 data->timeout_ns = 1000000000;
276 data->timeout_clks = 0;
277 return;
278 }
279
280 /*
Russell Kingd773d722006-09-07 15:57:12 +0100281 * SD cards use a 100 multiplier rather than 10
282 */
283 mult = mmc_card_sd(card) ? 100 : 10;
284
285 /*
286 * Scale up the multiplier (and therefore the timeout) by
287 * the r2w factor for writes.
288 */
Pierre Ossmanb146d262007-07-24 19:16:54 +0200289 if (data->flags & MMC_DATA_WRITE)
Russell Kingd773d722006-09-07 15:57:12 +0100290 mult <<= card->csd.r2w_factor;
291
292 data->timeout_ns = card->csd.tacc_ns * mult;
293 data->timeout_clks = card->csd.tacc_clks * mult;
294
295 /*
296 * SD cards also have an upper limit on the timeout.
297 */
298 if (mmc_card_sd(card)) {
299 unsigned int timeout_us, limit_us;
300
301 timeout_us = data->timeout_ns / 1000;
Linus Walleije9b86842011-01-05 00:44:32 +0100302 if (mmc_host_clk_rate(card->host))
303 timeout_us += data->timeout_clks * 1000 /
304 (mmc_host_clk_rate(card->host) / 1000);
Russell Kingd773d722006-09-07 15:57:12 +0100305
Pierre Ossmanb146d262007-07-24 19:16:54 +0200306 if (data->flags & MMC_DATA_WRITE)
Pierre Ossman493890e2008-10-26 12:37:25 +0100307 /*
308 * The limit is really 250 ms, but that is
309 * insufficient for some crappy cards.
310 */
311 limit_us = 300000;
Russell Kingd773d722006-09-07 15:57:12 +0100312 else
313 limit_us = 100000;
314
Philip Langdalefba68bd2007-01-04 06:57:32 -0800315 /*
316 * SDHC cards always use these fixed values.
317 */
318 if (timeout_us > limit_us || mmc_card_blockaddr(card)) {
Russell Kingd773d722006-09-07 15:57:12 +0100319 data->timeout_ns = limit_us * 1000;
320 data->timeout_clks = 0;
321 }
322 }
Wolfgang Mueesc0c88872009-03-11 14:28:39 +0100323 /*
324 * Some cards need very high timeouts if driven in SPI mode.
325 * The worst observed timeout was 900ms after writing a
326 * continuous stream of data until the internal logic
327 * overflowed.
328 */
329 if (mmc_host_is_spi(card->host)) {
330 if (data->flags & MMC_DATA_WRITE) {
331 if (data->timeout_ns < 1000000000)
332 data->timeout_ns = 1000000000; /* 1s */
333 } else {
334 if (data->timeout_ns < 100000000)
335 data->timeout_ns = 100000000; /* 100ms */
336 }
337 }
Russell Kingd773d722006-09-07 15:57:12 +0100338}
339EXPORT_SYMBOL(mmc_set_data_timeout);
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341/**
Pierre Ossmanad3868b2008-06-28 12:52:45 +0200342 * mmc_align_data_size - pads a transfer size to a more optimal value
343 * @card: the MMC card associated with the data transfer
344 * @sz: original transfer size
345 *
346 * Pads the original data size with a number of extra bytes in
347 * order to avoid controller bugs and/or performance hits
348 * (e.g. some controllers revert to PIO for certain sizes).
349 *
350 * Returns the improved size, which might be unmodified.
351 *
352 * Note that this function is only relevant when issuing a
353 * single scatter gather entry.
354 */
355unsigned int mmc_align_data_size(struct mmc_card *card, unsigned int sz)
356{
357 /*
358 * FIXME: We don't have a system for the controller to tell
359 * the core about its problems yet, so for now we just 32-bit
360 * align the size.
361 */
362 sz = ((sz + 3) / 4) * 4;
363
364 return sz;
365}
366EXPORT_SYMBOL(mmc_align_data_size);
367
368/**
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700369 * mmc_host_enable - enable a host.
370 * @host: mmc host to enable
371 *
372 * Hosts that support power saving can use the 'enable' and 'disable'
373 * methods to exit and enter power saving states. For more information
374 * see comments for struct mmc_host_ops.
375 */
376int mmc_host_enable(struct mmc_host *host)
377{
378 if (!(host->caps & MMC_CAP_DISABLE))
379 return 0;
380
381 if (host->en_dis_recurs)
382 return 0;
383
384 if (host->nesting_cnt++)
385 return 0;
386
387 cancel_delayed_work_sync(&host->disable);
388
389 if (host->enabled)
390 return 0;
391
392 if (host->ops->enable) {
393 int err;
394
395 host->en_dis_recurs = 1;
396 err = host->ops->enable(host);
397 host->en_dis_recurs = 0;
398
399 if (err) {
400 pr_debug("%s: enable error %d\n",
401 mmc_hostname(host), err);
402 return err;
403 }
404 }
405 host->enabled = 1;
406 return 0;
407}
408EXPORT_SYMBOL(mmc_host_enable);
409
410static int mmc_host_do_disable(struct mmc_host *host, int lazy)
411{
412 if (host->ops->disable) {
413 int err;
414
415 host->en_dis_recurs = 1;
416 err = host->ops->disable(host, lazy);
417 host->en_dis_recurs = 0;
418
419 if (err < 0) {
420 pr_debug("%s: disable error %d\n",
421 mmc_hostname(host), err);
422 return err;
423 }
424 if (err > 0) {
425 unsigned long delay = msecs_to_jiffies(err);
426
427 mmc_schedule_delayed_work(&host->disable, delay);
428 }
429 }
430 host->enabled = 0;
431 return 0;
432}
433
434/**
435 * mmc_host_disable - disable a host.
436 * @host: mmc host to disable
437 *
438 * Hosts that support power saving can use the 'enable' and 'disable'
439 * methods to exit and enter power saving states. For more information
440 * see comments for struct mmc_host_ops.
441 */
442int mmc_host_disable(struct mmc_host *host)
443{
444 int err;
445
446 if (!(host->caps & MMC_CAP_DISABLE))
447 return 0;
448
449 if (host->en_dis_recurs)
450 return 0;
451
452 if (--host->nesting_cnt)
453 return 0;
454
455 if (!host->enabled)
456 return 0;
457
458 err = mmc_host_do_disable(host, 0);
459 return err;
460}
461EXPORT_SYMBOL(mmc_host_disable);
462
463/**
Nicolas Pitre2342f332007-06-30 16:21:52 +0200464 * __mmc_claim_host - exclusively claim a host
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 * @host: mmc host to claim
Nicolas Pitre2342f332007-06-30 16:21:52 +0200466 * @abort: whether or not the operation should be aborted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 *
Nicolas Pitre2342f332007-06-30 16:21:52 +0200468 * Claim a host for a set of operations. If @abort is non null and
469 * dereference a non-zero value then this will return prematurely with
470 * that non-zero value without acquiring the lock. Returns zero
471 * with the lock held otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 */
Nicolas Pitre2342f332007-06-30 16:21:52 +0200473int __mmc_claim_host(struct mmc_host *host, atomic_t *abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 DECLARE_WAITQUEUE(wait, current);
476 unsigned long flags;
Nicolas Pitre2342f332007-06-30 16:21:52 +0200477 int stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Pierre Ossmancf795bf2007-07-11 20:28:02 +0200479 might_sleep();
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 add_wait_queue(&host->wq, &wait);
482 spin_lock_irqsave(&host->lock, flags);
483 while (1) {
484 set_current_state(TASK_UNINTERRUPTIBLE);
Nicolas Pitre2342f332007-06-30 16:21:52 +0200485 stop = abort ? atomic_read(abort) : 0;
Adrian Hunter319a3f12009-09-22 16:44:30 -0700486 if (stop || !host->claimed || host->claimer == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 break;
488 spin_unlock_irqrestore(&host->lock, flags);
489 schedule();
490 spin_lock_irqsave(&host->lock, flags);
491 }
492 set_current_state(TASK_RUNNING);
Adrian Hunter319a3f12009-09-22 16:44:30 -0700493 if (!stop) {
Nicolas Pitre2342f332007-06-30 16:21:52 +0200494 host->claimed = 1;
Adrian Hunter319a3f12009-09-22 16:44:30 -0700495 host->claimer = current;
496 host->claim_cnt += 1;
497 } else
Nicolas Pitre2342f332007-06-30 16:21:52 +0200498 wake_up(&host->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 spin_unlock_irqrestore(&host->lock, flags);
500 remove_wait_queue(&host->wq, &wait);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700501 if (!stop)
502 mmc_host_enable(host);
Nicolas Pitre2342f332007-06-30 16:21:52 +0200503 return stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504}
505
Nicolas Pitre2342f332007-06-30 16:21:52 +0200506EXPORT_SYMBOL(__mmc_claim_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
Adrian Hunter319a3f12009-09-22 16:44:30 -0700508/**
509 * mmc_try_claim_host - try exclusively to claim a host
510 * @host: mmc host to claim
511 *
512 * Returns %1 if the host is claimed, %0 otherwise.
513 */
514int mmc_try_claim_host(struct mmc_host *host)
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700515{
516 int claimed_host = 0;
517 unsigned long flags;
518
519 spin_lock_irqsave(&host->lock, flags);
Adrian Hunter319a3f12009-09-22 16:44:30 -0700520 if (!host->claimed || host->claimer == current) {
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700521 host->claimed = 1;
Adrian Hunter319a3f12009-09-22 16:44:30 -0700522 host->claimer = current;
523 host->claim_cnt += 1;
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700524 claimed_host = 1;
525 }
526 spin_unlock_irqrestore(&host->lock, flags);
527 return claimed_host;
528}
Adrian Hunter319a3f12009-09-22 16:44:30 -0700529EXPORT_SYMBOL(mmc_try_claim_host);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700530
531static void mmc_do_release_host(struct mmc_host *host)
532{
533 unsigned long flags;
534
535 spin_lock_irqsave(&host->lock, flags);
Adrian Hunter319a3f12009-09-22 16:44:30 -0700536 if (--host->claim_cnt) {
537 /* Release for nested claim */
538 spin_unlock_irqrestore(&host->lock, flags);
539 } else {
540 host->claimed = 0;
541 host->claimer = NULL;
542 spin_unlock_irqrestore(&host->lock, flags);
543 wake_up(&host->wq);
544 }
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700545}
546
547void mmc_host_deeper_disable(struct work_struct *work)
548{
549 struct mmc_host *host =
550 container_of(work, struct mmc_host, disable.work);
551
552 /* If the host is claimed then we do not want to disable it anymore */
553 if (!mmc_try_claim_host(host))
554 return;
555 mmc_host_do_disable(host, 1);
556 mmc_do_release_host(host);
557}
558
559/**
560 * mmc_host_lazy_disable - lazily disable a host.
561 * @host: mmc host to disable
562 *
563 * Hosts that support power saving can use the 'enable' and 'disable'
564 * methods to exit and enter power saving states. For more information
565 * see comments for struct mmc_host_ops.
566 */
567int mmc_host_lazy_disable(struct mmc_host *host)
568{
569 if (!(host->caps & MMC_CAP_DISABLE))
570 return 0;
571
572 if (host->en_dis_recurs)
573 return 0;
574
575 if (--host->nesting_cnt)
576 return 0;
577
578 if (!host->enabled)
579 return 0;
580
581 if (host->disable_delay) {
582 mmc_schedule_delayed_work(&host->disable,
583 msecs_to_jiffies(host->disable_delay));
584 return 0;
585 } else
586 return mmc_host_do_disable(host, 1);
587}
588EXPORT_SYMBOL(mmc_host_lazy_disable);
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590/**
591 * mmc_release_host - release a host
592 * @host: mmc host to release
593 *
594 * Release a MMC host, allowing others to claim the host
595 * for their operations.
596 */
597void mmc_release_host(struct mmc_host *host)
598{
Pierre Ossmand84075c82007-08-09 13:23:56 +0200599 WARN_ON(!host->claimed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700601 mmc_host_lazy_disable(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700603 mmc_do_release_host(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606EXPORT_SYMBOL(mmc_release_host);
607
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100608/*
609 * Internal function that does the actual ios call to the host driver,
610 * optionally printing some debug output.
611 */
Russell King920e70c2006-05-04 18:22:51 +0100612static inline void mmc_set_ios(struct mmc_host *host)
613{
614 struct mmc_ios *ios = &host->ios;
615
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100616 pr_debug("%s: clock %uHz busmode %u powermode %u cs %u Vdd %u "
617 "width %u timing %u\n",
Russell King920e70c2006-05-04 18:22:51 +0100618 mmc_hostname(host), ios->clock, ios->bus_mode,
619 ios->power_mode, ios->chip_select, ios->vdd,
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100620 ios->bus_width, ios->timing);
Philip Langdalefba68bd2007-01-04 06:57:32 -0800621
Linus Walleij04566832010-11-08 21:36:50 -0500622 if (ios->clock > 0)
623 mmc_set_ungated(host);
Russell King920e70c2006-05-04 18:22:51 +0100624 host->ops->set_ios(host, ios);
625}
626
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100627/*
628 * Control chip select pin on a host.
629 */
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100630void mmc_set_chip_select(struct mmc_host *host, int mode)
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700631{
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100632 host->ios.chip_select = mode;
633 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635
636/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100637 * Sets the host clock to the highest possible frequency that
638 * is below "hz".
639 */
640void mmc_set_clock(struct mmc_host *host, unsigned int hz)
641{
642 WARN_ON(hz < host->f_min);
643
644 if (hz > host->f_max)
645 hz = host->f_max;
646
647 host->ios.clock = hz;
648 mmc_set_ios(host);
649}
650
Linus Walleij04566832010-11-08 21:36:50 -0500651#ifdef CONFIG_MMC_CLKGATE
652/*
653 * This gates the clock by setting it to 0 Hz.
654 */
655void mmc_gate_clock(struct mmc_host *host)
656{
657 unsigned long flags;
658
659 spin_lock_irqsave(&host->clk_lock, flags);
660 host->clk_old = host->ios.clock;
661 host->ios.clock = 0;
662 host->clk_gated = true;
663 spin_unlock_irqrestore(&host->clk_lock, flags);
664 mmc_set_ios(host);
665}
666
667/*
668 * This restores the clock from gating by using the cached
669 * clock value.
670 */
671void mmc_ungate_clock(struct mmc_host *host)
672{
673 /*
674 * We should previously have gated the clock, so the clock shall
675 * be 0 here! The clock may however be 0 during initialization,
676 * when some request operations are performed before setting
677 * the frequency. When ungate is requested in that situation
678 * we just ignore the call.
679 */
680 if (host->clk_old) {
681 BUG_ON(host->ios.clock);
682 /* This call will also set host->clk_gated to false */
683 mmc_set_clock(host, host->clk_old);
684 }
685}
686
687void mmc_set_ungated(struct mmc_host *host)
688{
689 unsigned long flags;
690
691 /*
692 * We've been given a new frequency while the clock is gated,
693 * so make sure we regard this as ungating it.
694 */
695 spin_lock_irqsave(&host->clk_lock, flags);
696 host->clk_gated = false;
697 spin_unlock_irqrestore(&host->clk_lock, flags);
698}
699
700#else
701void mmc_set_ungated(struct mmc_host *host)
702{
703}
704#endif
705
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100706/*
707 * Change the bus mode (open drain/push-pull) of a host.
708 */
709void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode)
710{
711 host->ios.bus_mode = mode;
712 mmc_set_ios(host);
713}
714
715/*
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +0300716 * Change data bus width and DDR mode of a host.
717 */
Adrian Hunter49e3b5a2010-10-11 12:43:50 +0300718void mmc_set_bus_width_ddr(struct mmc_host *host, unsigned int width,
719 unsigned int ddr)
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +0300720{
721 host->ios.bus_width = width;
Adrian Hunter49e3b5a2010-10-11 12:43:50 +0300722 host->ios.ddr = ddr;
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +0300723 mmc_set_ios(host);
724}
725
726/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100727 * Change data bus width of a host.
728 */
729void mmc_set_bus_width(struct mmc_host *host, unsigned int width)
730{
Adrian Hunter49e3b5a2010-10-11 12:43:50 +0300731 mmc_set_bus_width_ddr(host, width, MMC_SDR_MODE);
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100732}
733
Anton Vorontsov86e82862008-11-26 22:54:17 +0300734/**
735 * mmc_vdd_to_ocrbitnum - Convert a voltage to the OCR bit number
736 * @vdd: voltage (mV)
737 * @low_bits: prefer low bits in boundary cases
738 *
739 * This function returns the OCR bit number according to the provided @vdd
740 * value. If conversion is not possible a negative errno value returned.
741 *
742 * Depending on the @low_bits flag the function prefers low or high OCR bits
743 * on boundary voltages. For example,
744 * with @low_bits = true, 3300 mV translates to ilog2(MMC_VDD_32_33);
745 * with @low_bits = false, 3300 mV translates to ilog2(MMC_VDD_33_34);
746 *
747 * Any value in the [1951:1999] range translates to the ilog2(MMC_VDD_20_21).
748 */
749static int mmc_vdd_to_ocrbitnum(int vdd, bool low_bits)
750{
751 const int max_bit = ilog2(MMC_VDD_35_36);
752 int bit;
753
754 if (vdd < 1650 || vdd > 3600)
755 return -EINVAL;
756
757 if (vdd >= 1650 && vdd <= 1950)
758 return ilog2(MMC_VDD_165_195);
759
760 if (low_bits)
761 vdd -= 1;
762
763 /* Base 2000 mV, step 100 mV, bit's base 8. */
764 bit = (vdd - 2000) / 100 + 8;
765 if (bit > max_bit)
766 return max_bit;
767 return bit;
768}
769
770/**
771 * mmc_vddrange_to_ocrmask - Convert a voltage range to the OCR mask
772 * @vdd_min: minimum voltage value (mV)
773 * @vdd_max: maximum voltage value (mV)
774 *
775 * This function returns the OCR mask bits according to the provided @vdd_min
776 * and @vdd_max values. If conversion is not possible the function returns 0.
777 *
778 * Notes wrt boundary cases:
779 * This function sets the OCR bits for all boundary voltages, for example
780 * [3300:3400] range is translated to MMC_VDD_32_33 | MMC_VDD_33_34 |
781 * MMC_VDD_34_35 mask.
782 */
783u32 mmc_vddrange_to_ocrmask(int vdd_min, int vdd_max)
784{
785 u32 mask = 0;
786
787 if (vdd_max < vdd_min)
788 return 0;
789
790 /* Prefer high bits for the boundary vdd_max values. */
791 vdd_max = mmc_vdd_to_ocrbitnum(vdd_max, false);
792 if (vdd_max < 0)
793 return 0;
794
795 /* Prefer low bits for the boundary vdd_min values. */
796 vdd_min = mmc_vdd_to_ocrbitnum(vdd_min, true);
797 if (vdd_min < 0)
798 return 0;
799
800 /* Fill the mask, from max bit to min bit. */
801 while (vdd_max >= vdd_min)
802 mask |= 1 << vdd_max--;
803
804 return mask;
805}
806EXPORT_SYMBOL(mmc_vddrange_to_ocrmask);
807
David Brownell5c139412009-03-11 03:30:43 -0800808#ifdef CONFIG_REGULATOR
809
810/**
811 * mmc_regulator_get_ocrmask - return mask of supported voltages
812 * @supply: regulator to use
813 *
814 * This returns either a negative errno, or a mask of voltages that
815 * can be provided to MMC/SD/SDIO devices using the specified voltage
816 * regulator. This would normally be called before registering the
817 * MMC host adapter.
818 */
819int mmc_regulator_get_ocrmask(struct regulator *supply)
820{
821 int result = 0;
822 int count;
823 int i;
824
825 count = regulator_count_voltages(supply);
826 if (count < 0)
827 return count;
828
829 for (i = 0; i < count; i++) {
830 int vdd_uV;
831 int vdd_mV;
832
833 vdd_uV = regulator_list_voltage(supply, i);
834 if (vdd_uV <= 0)
835 continue;
836
837 vdd_mV = vdd_uV / 1000;
838 result |= mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
839 }
840
841 return result;
842}
843EXPORT_SYMBOL(mmc_regulator_get_ocrmask);
844
845/**
846 * mmc_regulator_set_ocr - set regulator to match host->ios voltage
Linus Walleij99fc5132010-09-29 01:08:27 -0400847 * @mmc: the host to regulate
David Brownell5c139412009-03-11 03:30:43 -0800848 * @supply: regulator to use
Linus Walleij99fc5132010-09-29 01:08:27 -0400849 * @vdd_bit: zero for power off, else a bit number (host->ios.vdd)
David Brownell5c139412009-03-11 03:30:43 -0800850 *
851 * Returns zero on success, else negative errno.
852 *
853 * MMC host drivers may use this to enable or disable a regulator using
854 * a particular supply voltage. This would normally be called from the
855 * set_ios() method.
856 */
Linus Walleij99fc5132010-09-29 01:08:27 -0400857int mmc_regulator_set_ocr(struct mmc_host *mmc,
858 struct regulator *supply,
859 unsigned short vdd_bit)
David Brownell5c139412009-03-11 03:30:43 -0800860{
861 int result = 0;
862 int min_uV, max_uV;
David Brownell5c139412009-03-11 03:30:43 -0800863
864 if (vdd_bit) {
865 int tmp;
866 int voltage;
867
868 /* REVISIT mmc_vddrange_to_ocrmask() may have set some
869 * bits this regulator doesn't quite support ... don't
870 * be too picky, most cards and regulators are OK with
871 * a 0.1V range goof (it's a small error percentage).
872 */
873 tmp = vdd_bit - ilog2(MMC_VDD_165_195);
874 if (tmp == 0) {
875 min_uV = 1650 * 1000;
876 max_uV = 1950 * 1000;
877 } else {
878 min_uV = 1900 * 1000 + tmp * 100 * 1000;
879 max_uV = min_uV + 100 * 1000;
880 }
881
882 /* avoid needless changes to this voltage; the regulator
883 * might not allow this operation
884 */
885 voltage = regulator_get_voltage(supply);
886 if (voltage < 0)
887 result = voltage;
888 else if (voltage < min_uV || voltage > max_uV)
889 result = regulator_set_voltage(supply, min_uV, max_uV);
890 else
891 result = 0;
892
Linus Walleij99fc5132010-09-29 01:08:27 -0400893 if (result == 0 && !mmc->regulator_enabled) {
David Brownell5c139412009-03-11 03:30:43 -0800894 result = regulator_enable(supply);
Linus Walleij99fc5132010-09-29 01:08:27 -0400895 if (!result)
896 mmc->regulator_enabled = true;
897 }
898 } else if (mmc->regulator_enabled) {
David Brownell5c139412009-03-11 03:30:43 -0800899 result = regulator_disable(supply);
Linus Walleij99fc5132010-09-29 01:08:27 -0400900 if (result == 0)
901 mmc->regulator_enabled = false;
David Brownell5c139412009-03-11 03:30:43 -0800902 }
903
Linus Walleij99fc5132010-09-29 01:08:27 -0400904 if (result)
905 dev_err(mmc_dev(mmc),
906 "could not set regulator OCR (%d)\n", result);
David Brownell5c139412009-03-11 03:30:43 -0800907 return result;
908}
909EXPORT_SYMBOL(mmc_regulator_set_ocr);
910
Linus Walleij99fc5132010-09-29 01:08:27 -0400911#endif /* CONFIG_REGULATOR */
David Brownell5c139412009-03-11 03:30:43 -0800912
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100913/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 * Mask off any voltages we don't support and select
915 * the lowest voltage
916 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100917u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
919 int bit;
920
921 ocr &= host->ocr_avail;
922
923 bit = ffs(ocr);
924 if (bit) {
925 bit -= 1;
926
Timo Teras63ef7312006-11-02 19:43:27 +0100927 ocr &= 3 << bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 host->ios.vdd = bit;
Russell King920e70c2006-05-04 18:22:51 +0100930 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 } else {
David Brownellf6e10b82008-12-31 09:50:30 -0800932 pr_warning("%s: host doesn't support card's voltages\n",
933 mmc_hostname(host));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 ocr = 0;
935 }
936
937 return ocr;
938}
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100941 * Select timing parameters for host.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100943void mmc_set_timing(struct mmc_host *host, unsigned int timing)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100945 host->ios.timing = timing;
946 mmc_set_ios(host);
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700947}
948
949/*
Russell King45f82452005-12-14 14:57:35 +0000950 * Apply power to the MMC stack. This is a two-stage process.
951 * First, we enable power to the card without the clock running.
952 * We then wait a bit for the power to stabilise. Finally,
953 * enable the bus drivers and clock to the card.
954 *
955 * We must _NOT_ enable the clock prior to power stablising.
956 *
957 * If a host does all the power sequencing itself, ignore the
958 * initial MMC_POWER_UP stage.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 */
960static void mmc_power_up(struct mmc_host *host)
961{
Balaji Rao500f3562009-09-22 16:44:18 -0700962 int bit;
963
964 /* If ocr is set, we use it */
965 if (host->ocr)
966 bit = ffs(host->ocr) - 1;
967 else
968 bit = fls(host->ocr_avail) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 host->ios.vdd = bit;
David Brownellaf517152007-08-08 09:11:32 -0700971 if (mmc_host_is_spi(host)) {
972 host->ios.chip_select = MMC_CS_HIGH;
973 host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
974 } else {
975 host->ios.chip_select = MMC_CS_DONTCARE;
976 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
977 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 host->ios.power_mode = MMC_POWER_UP;
Pierre Ossmanf2182782005-09-06 15:18:55 -0700979 host->ios.bus_width = MMC_BUS_WIDTH_1;
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100980 host->ios.timing = MMC_TIMING_LEGACY;
Russell King920e70c2006-05-04 18:22:51 +0100981 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Pierre Ossmanf9996ae2007-09-19 18:38:50 +0200983 /*
984 * This delay should be sufficient to allow the power supply
985 * to reach the minimum voltage.
986 */
José M. Fernández79bccc52009-03-10 02:21:21 +0100987 mmc_delay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Hein Tibosch88ae8b82010-09-06 09:37:19 +0800989 host->ios.clock = host->f_init;
Sascha Hauer8dfd0372009-04-09 08:32:02 +0200990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 host->ios.power_mode = MMC_POWER_ON;
Russell King920e70c2006-05-04 18:22:51 +0100992 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Pierre Ossmanf9996ae2007-09-19 18:38:50 +0200994 /*
995 * This delay must be at least 74 clock sizes, or 1 ms, or the
996 * time required to reach a stable voltage.
997 */
José M. Fernández79bccc52009-03-10 02:21:21 +0100998 mmc_delay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
1001static void mmc_power_off(struct mmc_host *host)
1002{
1003 host->ios.clock = 0;
1004 host->ios.vdd = 0;
David Brownellaf517152007-08-08 09:11:32 -07001005 if (!mmc_host_is_spi(host)) {
1006 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
1007 host->ios.chip_select = MMC_CS_DONTCARE;
1008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 host->ios.power_mode = MMC_POWER_OFF;
Pierre Ossmanf2182782005-09-06 15:18:55 -07001010 host->ios.bus_width = MMC_BUS_WIDTH_1;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001011 host->ios.timing = MMC_TIMING_LEGACY;
Russell King920e70c2006-05-04 18:22:51 +01001012 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015/*
Adrian Bunk39361852007-07-25 00:40:58 +02001016 * Cleanup when the last reference to the bus operator is dropped.
1017 */
Adrian Bunk261172f2008-04-13 21:15:47 +03001018static void __mmc_release_bus(struct mmc_host *host)
Adrian Bunk39361852007-07-25 00:40:58 +02001019{
1020 BUG_ON(!host);
1021 BUG_ON(host->bus_refs);
1022 BUG_ON(!host->bus_dead);
1023
1024 host->bus_ops = NULL;
1025}
1026
1027/*
1028 * Increase reference count of bus operator
1029 */
1030static inline void mmc_bus_get(struct mmc_host *host)
1031{
1032 unsigned long flags;
1033
1034 spin_lock_irqsave(&host->lock, flags);
1035 host->bus_refs++;
1036 spin_unlock_irqrestore(&host->lock, flags);
1037}
1038
1039/*
1040 * Decrease reference count of bus operator and free it if
1041 * it is the last reference.
1042 */
1043static inline void mmc_bus_put(struct mmc_host *host)
1044{
1045 unsigned long flags;
1046
1047 spin_lock_irqsave(&host->lock, flags);
1048 host->bus_refs--;
1049 if ((host->bus_refs == 0) && host->bus_ops)
1050 __mmc_release_bus(host);
1051 spin_unlock_irqrestore(&host->lock, flags);
1052}
1053
1054/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001055 * Assign a mmc bus handler to a host. Only one bus handler may control a
1056 * host at any given time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001058void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001060 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001062 BUG_ON(!host);
1063 BUG_ON(!ops);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001064
Pierre Ossmand84075c82007-08-09 13:23:56 +02001065 WARN_ON(!host->claimed);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001066
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001067 spin_lock_irqsave(&host->lock, flags);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001068
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001069 BUG_ON(host->bus_ops);
1070 BUG_ON(host->bus_refs);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001071
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001072 host->bus_ops = ops;
1073 host->bus_refs = 1;
1074 host->bus_dead = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001076 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
1079/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001080 * Remove the current bus handler from a host. Assumes that there are
1081 * no interesting cards left, so the bus is powered down.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001083void mmc_detach_bus(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001085 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001087 BUG_ON(!host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Pierre Ossmand84075c82007-08-09 13:23:56 +02001089 WARN_ON(!host->claimed);
1090 WARN_ON(!host->bus_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001092 spin_lock_irqsave(&host->lock, flags);
1093
1094 host->bus_dead = 1;
1095
1096 spin_unlock_irqrestore(&host->lock, flags);
1097
1098 mmc_power_off(host);
1099
1100 mmc_bus_put(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103/**
1104 * mmc_detect_change - process change of state on a MMC socket
1105 * @host: host which changed state.
Richard Purdie8dc00332005-09-08 17:53:01 +01001106 * @delay: optional delay to wait before detection (jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 *
Pierre Ossman67a61c42007-07-11 20:22:11 +02001108 * MMC drivers should call this when they detect a card has been
1109 * inserted or removed. The MMC layer will confirm that any
1110 * present card is still functional, and initialize any newly
1111 * inserted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 */
Richard Purdie8dc00332005-09-08 17:53:01 +01001113void mmc_detect_change(struct mmc_host *host, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Pierre Ossman3b91e552007-02-11 20:43:19 +01001115#ifdef CONFIG_MMC_DEBUG
Pierre Ossman1efd48b2007-05-08 22:35:17 +02001116 unsigned long flags;
Andrew Morton01f41ec2007-05-09 02:32:34 -07001117 spin_lock_irqsave(&host->lock, flags);
Pierre Ossmand84075c82007-08-09 13:23:56 +02001118 WARN_ON(host->removed);
Andrew Morton01f41ec2007-05-09 02:32:34 -07001119 spin_unlock_irqrestore(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01001120#endif
1121
David Howellsc4028952006-11-22 14:57:56 +00001122 mmc_schedule_delayed_work(&host->detect, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
1124
1125EXPORT_SYMBOL(mmc_detect_change);
1126
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001127void mmc_init_erase(struct mmc_card *card)
1128{
1129 unsigned int sz;
1130
1131 if (is_power_of_2(card->erase_size))
1132 card->erase_shift = ffs(card->erase_size) - 1;
1133 else
1134 card->erase_shift = 0;
1135
1136 /*
1137 * It is possible to erase an arbitrarily large area of an SD or MMC
1138 * card. That is not desirable because it can take a long time
1139 * (minutes) potentially delaying more important I/O, and also the
1140 * timeout calculations become increasingly hugely over-estimated.
1141 * Consequently, 'pref_erase' is defined as a guide to limit erases
1142 * to that size and alignment.
1143 *
1144 * For SD cards that define Allocation Unit size, limit erases to one
1145 * Allocation Unit at a time. For MMC cards that define High Capacity
1146 * Erase Size, whether it is switched on or not, limit to that size.
1147 * Otherwise just have a stab at a good value. For modern cards it
1148 * will end up being 4MiB. Note that if the value is too small, it
1149 * can end up taking longer to erase.
1150 */
1151 if (mmc_card_sd(card) && card->ssr.au) {
1152 card->pref_erase = card->ssr.au;
1153 card->erase_shift = ffs(card->ssr.au) - 1;
1154 } else if (card->ext_csd.hc_erase_size) {
1155 card->pref_erase = card->ext_csd.hc_erase_size;
1156 } else {
1157 sz = (card->csd.capacity << (card->csd.read_blkbits - 9)) >> 11;
1158 if (sz < 128)
1159 card->pref_erase = 512 * 1024 / 512;
1160 else if (sz < 512)
1161 card->pref_erase = 1024 * 1024 / 512;
1162 else if (sz < 1024)
1163 card->pref_erase = 2 * 1024 * 1024 / 512;
1164 else
1165 card->pref_erase = 4 * 1024 * 1024 / 512;
1166 if (card->pref_erase < card->erase_size)
1167 card->pref_erase = card->erase_size;
1168 else {
1169 sz = card->pref_erase % card->erase_size;
1170 if (sz)
1171 card->pref_erase += card->erase_size - sz;
1172 }
1173 }
1174}
1175
1176static void mmc_set_mmc_erase_timeout(struct mmc_card *card,
1177 struct mmc_command *cmd,
1178 unsigned int arg, unsigned int qty)
1179{
1180 unsigned int erase_timeout;
1181
1182 if (card->ext_csd.erase_group_def & 1) {
1183 /* High Capacity Erase Group Size uses HC timeouts */
1184 if (arg == MMC_TRIM_ARG)
1185 erase_timeout = card->ext_csd.trim_timeout;
1186 else
1187 erase_timeout = card->ext_csd.hc_erase_timeout;
1188 } else {
1189 /* CSD Erase Group Size uses write timeout */
1190 unsigned int mult = (10 << card->csd.r2w_factor);
1191 unsigned int timeout_clks = card->csd.tacc_clks * mult;
1192 unsigned int timeout_us;
1193
1194 /* Avoid overflow: e.g. tacc_ns=80000000 mult=1280 */
1195 if (card->csd.tacc_ns < 1000000)
1196 timeout_us = (card->csd.tacc_ns * mult) / 1000;
1197 else
1198 timeout_us = (card->csd.tacc_ns / 1000) * mult;
1199
1200 /*
1201 * ios.clock is only a target. The real clock rate might be
1202 * less but not that much less, so fudge it by multiplying by 2.
1203 */
1204 timeout_clks <<= 1;
1205 timeout_us += (timeout_clks * 1000) /
1206 (card->host->ios.clock / 1000);
1207
1208 erase_timeout = timeout_us / 1000;
1209
1210 /*
1211 * Theoretically, the calculation could underflow so round up
1212 * to 1ms in that case.
1213 */
1214 if (!erase_timeout)
1215 erase_timeout = 1;
1216 }
1217
1218 /* Multiplier for secure operations */
1219 if (arg & MMC_SECURE_ARGS) {
1220 if (arg == MMC_SECURE_ERASE_ARG)
1221 erase_timeout *= card->ext_csd.sec_erase_mult;
1222 else
1223 erase_timeout *= card->ext_csd.sec_trim_mult;
1224 }
1225
1226 erase_timeout *= qty;
1227
1228 /*
1229 * Ensure at least a 1 second timeout for SPI as per
1230 * 'mmc_set_data_timeout()'
1231 */
1232 if (mmc_host_is_spi(card->host) && erase_timeout < 1000)
1233 erase_timeout = 1000;
1234
1235 cmd->erase_timeout = erase_timeout;
1236}
1237
1238static void mmc_set_sd_erase_timeout(struct mmc_card *card,
1239 struct mmc_command *cmd, unsigned int arg,
1240 unsigned int qty)
1241{
1242 if (card->ssr.erase_timeout) {
1243 /* Erase timeout specified in SD Status Register (SSR) */
1244 cmd->erase_timeout = card->ssr.erase_timeout * qty +
1245 card->ssr.erase_offset;
1246 } else {
1247 /*
1248 * Erase timeout not specified in SD Status Register (SSR) so
1249 * use 250ms per write block.
1250 */
1251 cmd->erase_timeout = 250 * qty;
1252 }
1253
1254 /* Must not be less than 1 second */
1255 if (cmd->erase_timeout < 1000)
1256 cmd->erase_timeout = 1000;
1257}
1258
1259static void mmc_set_erase_timeout(struct mmc_card *card,
1260 struct mmc_command *cmd, unsigned int arg,
1261 unsigned int qty)
1262{
1263 if (mmc_card_sd(card))
1264 mmc_set_sd_erase_timeout(card, cmd, arg, qty);
1265 else
1266 mmc_set_mmc_erase_timeout(card, cmd, arg, qty);
1267}
1268
1269static int mmc_do_erase(struct mmc_card *card, unsigned int from,
1270 unsigned int to, unsigned int arg)
1271{
1272 struct mmc_command cmd;
1273 unsigned int qty = 0;
1274 int err;
1275
1276 /*
1277 * qty is used to calculate the erase timeout which depends on how many
1278 * erase groups (or allocation units in SD terminology) are affected.
1279 * We count erasing part of an erase group as one erase group.
1280 * For SD, the allocation units are always a power of 2. For MMC, the
1281 * erase group size is almost certainly also power of 2, but it does not
1282 * seem to insist on that in the JEDEC standard, so we fall back to
1283 * division in that case. SD may not specify an allocation unit size,
1284 * in which case the timeout is based on the number of write blocks.
1285 *
1286 * Note that the timeout for secure trim 2 will only be correct if the
1287 * number of erase groups specified is the same as the total of all
1288 * preceding secure trim 1 commands. Since the power may have been
1289 * lost since the secure trim 1 commands occurred, it is generally
1290 * impossible to calculate the secure trim 2 timeout correctly.
1291 */
1292 if (card->erase_shift)
1293 qty += ((to >> card->erase_shift) -
1294 (from >> card->erase_shift)) + 1;
1295 else if (mmc_card_sd(card))
1296 qty += to - from + 1;
1297 else
1298 qty += ((to / card->erase_size) -
1299 (from / card->erase_size)) + 1;
1300
1301 if (!mmc_card_blockaddr(card)) {
1302 from <<= 9;
1303 to <<= 9;
1304 }
1305
1306 memset(&cmd, 0, sizeof(struct mmc_command));
1307 if (mmc_card_sd(card))
1308 cmd.opcode = SD_ERASE_WR_BLK_START;
1309 else
1310 cmd.opcode = MMC_ERASE_GROUP_START;
1311 cmd.arg = from;
1312 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1313 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1314 if (err) {
1315 printk(KERN_ERR "mmc_erase: group start error %d, "
1316 "status %#x\n", err, cmd.resp[0]);
1317 err = -EINVAL;
1318 goto out;
1319 }
1320
1321 memset(&cmd, 0, sizeof(struct mmc_command));
1322 if (mmc_card_sd(card))
1323 cmd.opcode = SD_ERASE_WR_BLK_END;
1324 else
1325 cmd.opcode = MMC_ERASE_GROUP_END;
1326 cmd.arg = to;
1327 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1328 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1329 if (err) {
1330 printk(KERN_ERR "mmc_erase: group end error %d, status %#x\n",
1331 err, cmd.resp[0]);
1332 err = -EINVAL;
1333 goto out;
1334 }
1335
1336 memset(&cmd, 0, sizeof(struct mmc_command));
1337 cmd.opcode = MMC_ERASE;
1338 cmd.arg = arg;
1339 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1340 mmc_set_erase_timeout(card, &cmd, arg, qty);
1341 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1342 if (err) {
1343 printk(KERN_ERR "mmc_erase: erase error %d, status %#x\n",
1344 err, cmd.resp[0]);
1345 err = -EIO;
1346 goto out;
1347 }
1348
1349 if (mmc_host_is_spi(card->host))
1350 goto out;
1351
1352 do {
1353 memset(&cmd, 0, sizeof(struct mmc_command));
1354 cmd.opcode = MMC_SEND_STATUS;
1355 cmd.arg = card->rca << 16;
1356 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1357 /* Do not retry else we can't see errors */
1358 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1359 if (err || (cmd.resp[0] & 0xFDF92000)) {
1360 printk(KERN_ERR "error %d requesting status %#x\n",
1361 err, cmd.resp[0]);
1362 err = -EIO;
1363 goto out;
1364 }
1365 } while (!(cmd.resp[0] & R1_READY_FOR_DATA) ||
1366 R1_CURRENT_STATE(cmd.resp[0]) == 7);
1367out:
1368 return err;
1369}
1370
1371/**
1372 * mmc_erase - erase sectors.
1373 * @card: card to erase
1374 * @from: first sector to erase
1375 * @nr: number of sectors to erase
1376 * @arg: erase command argument (SD supports only %MMC_ERASE_ARG)
1377 *
1378 * Caller must claim host before calling this function.
1379 */
1380int mmc_erase(struct mmc_card *card, unsigned int from, unsigned int nr,
1381 unsigned int arg)
1382{
1383 unsigned int rem, to = from + nr;
1384
1385 if (!(card->host->caps & MMC_CAP_ERASE) ||
1386 !(card->csd.cmdclass & CCC_ERASE))
1387 return -EOPNOTSUPP;
1388
1389 if (!card->erase_size)
1390 return -EOPNOTSUPP;
1391
1392 if (mmc_card_sd(card) && arg != MMC_ERASE_ARG)
1393 return -EOPNOTSUPP;
1394
1395 if ((arg & MMC_SECURE_ARGS) &&
1396 !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN))
1397 return -EOPNOTSUPP;
1398
1399 if ((arg & MMC_TRIM_ARGS) &&
1400 !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN))
1401 return -EOPNOTSUPP;
1402
1403 if (arg == MMC_SECURE_ERASE_ARG) {
1404 if (from % card->erase_size || nr % card->erase_size)
1405 return -EINVAL;
1406 }
1407
1408 if (arg == MMC_ERASE_ARG) {
1409 rem = from % card->erase_size;
1410 if (rem) {
1411 rem = card->erase_size - rem;
1412 from += rem;
1413 if (nr > rem)
1414 nr -= rem;
1415 else
1416 return 0;
1417 }
1418 rem = nr % card->erase_size;
1419 if (rem)
1420 nr -= rem;
1421 }
1422
1423 if (nr == 0)
1424 return 0;
1425
1426 to = from + nr;
1427
1428 if (to <= from)
1429 return -EINVAL;
1430
1431 /* 'from' and 'to' are inclusive */
1432 to -= 1;
1433
1434 return mmc_do_erase(card, from, to, arg);
1435}
1436EXPORT_SYMBOL(mmc_erase);
1437
1438int mmc_can_erase(struct mmc_card *card)
1439{
1440 if ((card->host->caps & MMC_CAP_ERASE) &&
1441 (card->csd.cmdclass & CCC_ERASE) && card->erase_size)
1442 return 1;
1443 return 0;
1444}
1445EXPORT_SYMBOL(mmc_can_erase);
1446
1447int mmc_can_trim(struct mmc_card *card)
1448{
1449 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN)
1450 return 1;
1451 return 0;
1452}
1453EXPORT_SYMBOL(mmc_can_trim);
1454
1455int mmc_can_secure_erase_trim(struct mmc_card *card)
1456{
1457 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN)
1458 return 1;
1459 return 0;
1460}
1461EXPORT_SYMBOL(mmc_can_secure_erase_trim);
1462
1463int mmc_erase_group_aligned(struct mmc_card *card, unsigned int from,
1464 unsigned int nr)
1465{
1466 if (!card->erase_size)
1467 return 0;
1468 if (from % card->erase_size || nr % card->erase_size)
1469 return 0;
1470 return 1;
1471}
1472EXPORT_SYMBOL(mmc_erase_group_aligned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001474int mmc_set_blocklen(struct mmc_card *card, unsigned int blocklen)
1475{
1476 struct mmc_command cmd;
1477
1478 if (mmc_card_blockaddr(card) || mmc_card_ddr_mode(card))
1479 return 0;
1480
1481 memset(&cmd, 0, sizeof(struct mmc_command));
1482 cmd.opcode = MMC_SET_BLOCKLEN;
1483 cmd.arg = blocklen;
1484 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1485 return mmc_wait_for_cmd(card->host, &cmd, 5);
1486}
1487EXPORT_SYMBOL(mmc_set_blocklen);
1488
Andy Ross807e8e42011-01-03 10:36:56 -08001489static int mmc_rescan_try_freq(struct mmc_host *host, unsigned freq)
1490{
1491 host->f_init = freq;
1492
1493#ifdef CONFIG_MMC_DEBUG
1494 pr_info("%s: %s: trying to init card at %u Hz\n",
1495 mmc_hostname(host), __func__, host->f_init);
1496#endif
1497 mmc_power_up(host);
1498 sdio_reset(host);
1499 mmc_go_idle(host);
1500
1501 mmc_send_if_cond(host, host->ocr_avail);
1502
1503 /* Order's important: probe SDIO, then SD, then MMC */
1504 if (!mmc_attach_sdio(host))
1505 return 0;
1506 if (!mmc_attach_sd(host))
1507 return 0;
1508 if (!mmc_attach_mmc(host))
1509 return 0;
1510
1511 mmc_power_off(host);
1512 return -EIO;
1513}
1514
Pierre Ossmanb93931a2007-05-19 14:06:24 +02001515void mmc_rescan(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Andy Ross807e8e42011-01-03 10:36:56 -08001517 static const unsigned freqs[] = { 400000, 300000, 200000, 100000 };
David Howellsc4028952006-11-22 14:57:56 +00001518 struct mmc_host *host =
1519 container_of(work, struct mmc_host, detect.work);
Hein Tibosch88ae8b82010-09-06 09:37:19 +08001520 int i;
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07001521
Andy Ross807e8e42011-01-03 10:36:56 -08001522 if (host->rescan_disable)
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07001523 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001525 mmc_bus_get(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Ohad Ben-Cohen30201e72010-11-28 07:21:28 +02001527 /*
1528 * if there is a _removable_ card registered, check whether it is
1529 * still present
1530 */
1531 if (host->bus_ops && host->bus_ops->detect && !host->bus_dead
Ohad Ben-Cohenbad3bab2011-03-08 23:32:02 +02001532 && !(host->caps & MMC_CAP_NONREMOVABLE))
Jorg Schummer94d89ef2009-03-31 17:51:21 +03001533 host->bus_ops->detect(host);
1534
Chris Ballc5841792011-01-04 12:20:22 -05001535 /*
1536 * Let mmc_bus_put() free the bus/bus_ops if we've found that
1537 * the card is no longer present.
1538 */
Jorg Schummer94d89ef2009-03-31 17:51:21 +03001539 mmc_bus_put(host);
Jorg Schummer94d89ef2009-03-31 17:51:21 +03001540 mmc_bus_get(host);
1541
1542 /* if there still is a card present, stop here */
1543 if (host->bus_ops != NULL) {
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001544 mmc_bus_put(host);
Jorg Schummer94d89ef2009-03-31 17:51:21 +03001545 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
Jorg Schummer94d89ef2009-03-31 17:51:21 +03001547
Jorg Schummer94d89ef2009-03-31 17:51:21 +03001548 /*
1549 * Only we can add a new handler, so it's safe to
1550 * release the lock here.
1551 */
1552 mmc_bus_put(host);
1553
1554 if (host->ops->get_cd && host->ops->get_cd(host) == 0)
1555 goto out;
1556
Andy Ross807e8e42011-01-03 10:36:56 -08001557 mmc_claim_host(host);
Hein Tibosch88ae8b82010-09-06 09:37:19 +08001558 for (i = 0; i < ARRAY_SIZE(freqs); i++) {
Andy Ross807e8e42011-01-03 10:36:56 -08001559 if (!mmc_rescan_try_freq(host, max(freqs[i], host->f_min)))
1560 break;
1561 if (freqs[i] < host->f_min)
1562 break;
Hein Tibosch88ae8b82010-09-06 09:37:19 +08001563 }
Andy Ross807e8e42011-01-03 10:36:56 -08001564 mmc_release_host(host);
1565
1566 out:
Anton Vorontsov28f52482008-06-17 18:17:15 +04001567 if (host->caps & MMC_CAP_NEEDS_POLL)
1568 mmc_schedule_delayed_work(&host->detect, HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570
Pierre Ossmanb93931a2007-05-19 14:06:24 +02001571void mmc_start_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Pierre Ossmanb93931a2007-05-19 14:06:24 +02001573 mmc_power_off(host);
1574 mmc_detect_change(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575}
1576
Pierre Ossmanb93931a2007-05-19 14:06:24 +02001577void mmc_stop_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
Pierre Ossman3b91e552007-02-11 20:43:19 +01001579#ifdef CONFIG_MMC_DEBUG
Pierre Ossman1efd48b2007-05-08 22:35:17 +02001580 unsigned long flags;
1581 spin_lock_irqsave(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01001582 host->removed = 1;
Pierre Ossman1efd48b2007-05-08 22:35:17 +02001583 spin_unlock_irqrestore(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01001584#endif
1585
Adrian Hunter8ea926b2009-09-22 16:44:29 -07001586 if (host->caps & MMC_CAP_DISABLE)
1587 cancel_delayed_work(&host->disable);
Guennadi Liakhovetskid9bcbf32010-11-11 17:32:25 +01001588 cancel_delayed_work_sync(&host->detect);
Pierre Ossman3b91e552007-02-11 20:43:19 +01001589 mmc_flush_scheduled_work();
1590
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08001591 /* clear pm flags now and let card drivers set them as needed */
1592 host->pm_flags = 0;
1593
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001594 mmc_bus_get(host);
1595 if (host->bus_ops && !host->bus_dead) {
1596 if (host->bus_ops->remove)
1597 host->bus_ops->remove(host);
1598
1599 mmc_claim_host(host);
1600 mmc_detach_bus(host);
1601 mmc_release_host(host);
Denis Karpov53509f02009-09-22 16:44:36 -07001602 mmc_bus_put(host);
1603 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 }
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001605 mmc_bus_put(host);
1606
1607 BUG_ON(host->card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 mmc_power_off(host);
1610}
1611
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001612int mmc_power_save_host(struct mmc_host *host)
Adrian Huntereae1aee2009-09-22 16:44:33 -07001613{
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001614 int ret = 0;
1615
Adrian Huntereae1aee2009-09-22 16:44:33 -07001616 mmc_bus_get(host);
1617
1618 if (!host->bus_ops || host->bus_dead || !host->bus_ops->power_restore) {
1619 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001620 return -EINVAL;
Adrian Huntereae1aee2009-09-22 16:44:33 -07001621 }
1622
1623 if (host->bus_ops->power_save)
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001624 ret = host->bus_ops->power_save(host);
Adrian Huntereae1aee2009-09-22 16:44:33 -07001625
1626 mmc_bus_put(host);
1627
1628 mmc_power_off(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001629
1630 return ret;
Adrian Huntereae1aee2009-09-22 16:44:33 -07001631}
1632EXPORT_SYMBOL(mmc_power_save_host);
1633
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001634int mmc_power_restore_host(struct mmc_host *host)
Adrian Huntereae1aee2009-09-22 16:44:33 -07001635{
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001636 int ret;
1637
Adrian Huntereae1aee2009-09-22 16:44:33 -07001638 mmc_bus_get(host);
1639
1640 if (!host->bus_ops || host->bus_dead || !host->bus_ops->power_restore) {
1641 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001642 return -EINVAL;
Adrian Huntereae1aee2009-09-22 16:44:33 -07001643 }
1644
1645 mmc_power_up(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001646 ret = host->bus_ops->power_restore(host);
Adrian Huntereae1aee2009-09-22 16:44:33 -07001647
1648 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001649
1650 return ret;
Adrian Huntereae1aee2009-09-22 16:44:33 -07001651}
1652EXPORT_SYMBOL(mmc_power_restore_host);
1653
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -07001654int mmc_card_awake(struct mmc_host *host)
1655{
1656 int err = -ENOSYS;
1657
1658 mmc_bus_get(host);
1659
1660 if (host->bus_ops && !host->bus_dead && host->bus_ops->awake)
1661 err = host->bus_ops->awake(host);
1662
1663 mmc_bus_put(host);
1664
1665 return err;
1666}
1667EXPORT_SYMBOL(mmc_card_awake);
1668
1669int mmc_card_sleep(struct mmc_host *host)
1670{
1671 int err = -ENOSYS;
1672
1673 mmc_bus_get(host);
1674
1675 if (host->bus_ops && !host->bus_dead && host->bus_ops->awake)
1676 err = host->bus_ops->sleep(host);
1677
1678 mmc_bus_put(host);
1679
1680 return err;
1681}
1682EXPORT_SYMBOL(mmc_card_sleep);
1683
1684int mmc_card_can_sleep(struct mmc_host *host)
1685{
1686 struct mmc_card *card = host->card;
1687
1688 if (card && mmc_card_mmc(card) && card->ext_csd.rev >= 3)
1689 return 1;
1690 return 0;
1691}
1692EXPORT_SYMBOL(mmc_card_can_sleep);
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694#ifdef CONFIG_PM
1695
1696/**
1697 * mmc_suspend_host - suspend a host
1698 * @host: mmc host
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 */
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001700int mmc_suspend_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001702 int err = 0;
1703
Adrian Hunter8ea926b2009-09-22 16:44:29 -07001704 if (host->caps & MMC_CAP_DISABLE)
1705 cancel_delayed_work(&host->disable);
Jorg Schummer7de427d2009-02-19 13:17:03 +02001706 cancel_delayed_work(&host->detect);
Pierre Ossmanb5af25b2007-04-28 17:30:50 +02001707 mmc_flush_scheduled_work();
1708
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001709 mmc_bus_get(host);
1710 if (host->bus_ops && !host->bus_dead) {
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001711 if (host->bus_ops->suspend)
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001712 err = host->bus_ops->suspend(host);
Ohad Ben-Cohen1c8cf9c2010-10-13 09:31:56 +02001713 if (err == -ENOSYS || !host->bus_ops->resume) {
1714 /*
1715 * We simply "remove" the card in this case.
1716 * It will be redetected on resume.
1717 */
1718 if (host->bus_ops->remove)
1719 host->bus_ops->remove(host);
1720 mmc_claim_host(host);
1721 mmc_detach_bus(host);
1722 mmc_release_host(host);
1723 host->pm_flags = 0;
1724 err = 0;
1725 }
Pierre Ossmanb5af25b2007-04-28 17:30:50 +02001726 }
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001727 mmc_bus_put(host);
1728
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08001729 if (!err && !(host->pm_flags & MMC_PM_KEEP_POWER))
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001730 mmc_power_off(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001732 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
1734
1735EXPORT_SYMBOL(mmc_suspend_host);
1736
1737/**
1738 * mmc_resume_host - resume a previously suspended host
1739 * @host: mmc host
1740 */
1741int mmc_resume_host(struct mmc_host *host)
1742{
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001743 int err = 0;
1744
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001745 mmc_bus_get(host);
1746 if (host->bus_ops && !host->bus_dead) {
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08001747 if (!(host->pm_flags & MMC_PM_KEEP_POWER)) {
1748 mmc_power_up(host);
1749 mmc_select_voltage(host, host->ocr);
Ohad Ben-Cohene5945732010-11-28 07:21:30 +02001750 /*
1751 * Tell runtime PM core we just powered up the card,
1752 * since it still believes the card is powered off.
1753 * Note that currently runtime PM is only enabled
1754 * for SDIO cards that are MMC_CAP_POWER_OFF_CARD
1755 */
1756 if (mmc_card_sdio(host->card) &&
1757 (host->caps & MMC_CAP_POWER_OFF_CARD)) {
1758 pm_runtime_disable(&host->card->dev);
1759 pm_runtime_set_active(&host->card->dev);
1760 pm_runtime_enable(&host->card->dev);
1761 }
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08001762 }
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001763 BUG_ON(!host->bus_ops->resume);
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001764 err = host->bus_ops->resume(host);
1765 if (err) {
1766 printk(KERN_WARNING "%s: error %d during resume "
1767 "(card was removed?)\n",
1768 mmc_hostname(host), err);
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001769 err = 0;
1770 }
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001771 }
1772 mmc_bus_put(host);
1773
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001774 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776EXPORT_SYMBOL(mmc_resume_host);
1777
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07001778/* Do the card removal on suspend if card is assumed removeable
1779 * Do that in pm notifier while userspace isn't yet frozen, so we will be able
1780 to sync the card.
1781*/
1782int mmc_pm_notify(struct notifier_block *notify_block,
1783 unsigned long mode, void *unused)
1784{
1785 struct mmc_host *host = container_of(
1786 notify_block, struct mmc_host, pm_notify);
1787 unsigned long flags;
1788
1789
1790 switch (mode) {
1791 case PM_HIBERNATION_PREPARE:
1792 case PM_SUSPEND_PREPARE:
1793
1794 spin_lock_irqsave(&host->lock, flags);
1795 host->rescan_disable = 1;
1796 spin_unlock_irqrestore(&host->lock, flags);
1797 cancel_delayed_work_sync(&host->detect);
1798
1799 if (!host->bus_ops || host->bus_ops->suspend)
1800 break;
1801
1802 mmc_claim_host(host);
1803
1804 if (host->bus_ops->remove)
1805 host->bus_ops->remove(host);
1806
1807 mmc_detach_bus(host);
1808 mmc_release_host(host);
1809 host->pm_flags = 0;
1810 break;
1811
1812 case PM_POST_SUSPEND:
1813 case PM_POST_HIBERNATION:
Takashi Iwai274476f2010-12-10 08:40:31 +01001814 case PM_POST_RESTORE:
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07001815
1816 spin_lock_irqsave(&host->lock, flags);
1817 host->rescan_disable = 0;
1818 spin_unlock_irqrestore(&host->lock, flags);
1819 mmc_detect_change(host, 0);
1820
1821 }
1822
1823 return 0;
1824}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825#endif
1826
Pierre Ossmanffce2e72007-05-19 14:32:22 +02001827static int __init mmc_init(void)
1828{
1829 int ret;
1830
Tejun Heo0d9ee5b2010-12-24 16:00:17 +01001831 workqueue = alloc_ordered_workqueue("kmmcd", 0);
Pierre Ossmanffce2e72007-05-19 14:32:22 +02001832 if (!workqueue)
1833 return -ENOMEM;
1834
1835 ret = mmc_register_bus();
Pierre Ossmane29a7d72007-05-26 13:48:18 +02001836 if (ret)
1837 goto destroy_workqueue;
1838
1839 ret = mmc_register_host_class();
1840 if (ret)
1841 goto unregister_bus;
1842
1843 ret = sdio_register_bus();
1844 if (ret)
1845 goto unregister_host_class;
1846
1847 return 0;
1848
1849unregister_host_class:
1850 mmc_unregister_host_class();
1851unregister_bus:
1852 mmc_unregister_bus();
1853destroy_workqueue:
1854 destroy_workqueue(workqueue);
1855
Pierre Ossmanffce2e72007-05-19 14:32:22 +02001856 return ret;
1857}
1858
1859static void __exit mmc_exit(void)
1860{
Pierre Ossmane29a7d72007-05-26 13:48:18 +02001861 sdio_unregister_bus();
Pierre Ossmanffce2e72007-05-19 14:32:22 +02001862 mmc_unregister_host_class();
1863 mmc_unregister_bus();
1864 destroy_workqueue(workqueue);
1865}
1866
Nicolas Pitre26074962007-06-16 02:07:53 -04001867subsys_initcall(mmc_init);
Pierre Ossmanffce2e72007-05-19 14:32:22 +02001868module_exit(mmc_exit);
1869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870MODULE_LICENSE("GPL");