blob: 950b97d7412a4f6f5f562401f132ed0d568a969a [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>
Amerigo Wang35eb6db2011-07-25 17:13:11 -070026#include <linux/suspend.h>
Per Forlin1b676f72011-08-19 14:52:37 +020027#include <linux/fault-inject.h>
28#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <linux/mmc/card.h>
31#include <linux/mmc/host.h>
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010032#include <linux/mmc/mmc.h>
33#include <linux/mmc/sd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Pierre Ossmanaaac1b42007-02-28 15:33:10 +010035#include "core.h"
Pierre Ossmanffce2e72007-05-19 14:32:22 +020036#include "bus.h"
37#include "host.h"
Pierre Ossmane29a7d72007-05-26 13:48:18 +020038#include "sdio_bus.h"
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010039
40#include "mmc_ops.h"
41#include "sd_ops.h"
Pierre Ossman5c4e6f12007-05-21 20:23:20 +020042#include "sdio_ops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Pierre Ossmanffce2e72007-05-19 14:32:22 +020044static struct workqueue_struct *workqueue;
45
46/*
David Brownellaf517152007-08-08 09:11:32 -070047 * Enabling software CRCs on the data blocks can be a significant (30%)
48 * performance cost, and for other reasons may not always be desired.
49 * So we allow it it to be disabled.
50 */
51int use_spi_crc = 1;
52module_param(use_spi_crc, bool, 0);
53
54/*
Ben Hutchingsbd68e082009-12-14 18:01:29 -080055 * We normally treat cards as removed during suspend if they are not
56 * known to be on a non-removable bus, to avoid the risk of writing
57 * back data to a different card after resume. Allow this to be
58 * overridden if necessary.
59 */
60#ifdef CONFIG_MMC_UNSAFE_RESUME
61int mmc_assume_removable;
62#else
63int mmc_assume_removable = 1;
64#endif
Matt Fleming71d7d3d2010-09-27 09:42:19 +010065EXPORT_SYMBOL(mmc_assume_removable);
Ben Hutchingsbd68e082009-12-14 18:01:29 -080066module_param_named(removable, mmc_assume_removable, bool, 0644);
67MODULE_PARM_DESC(
68 removable,
69 "MMC/SD cards are removable and may be removed during suspend");
70
71/*
Pierre Ossmanffce2e72007-05-19 14:32:22 +020072 * Internal function. Schedule delayed work in the MMC work queue.
73 */
74static int mmc_schedule_delayed_work(struct delayed_work *work,
75 unsigned long delay)
76{
77 return queue_delayed_work(workqueue, work, delay);
78}
79
80/*
81 * Internal function. Flush all scheduled work from the MMC work queue.
82 */
83static void mmc_flush_scheduled_work(void)
84{
85 flush_workqueue(workqueue);
86}
87
Per Forlin1b676f72011-08-19 14:52:37 +020088#ifdef CONFIG_FAIL_MMC_REQUEST
89
90/*
91 * Internal function. Inject random data errors.
92 * If mmc_data is NULL no errors are injected.
93 */
94static void mmc_should_fail_request(struct mmc_host *host,
95 struct mmc_request *mrq)
96{
97 struct mmc_command *cmd = mrq->cmd;
98 struct mmc_data *data = mrq->data;
99 static const int data_errors[] = {
100 -ETIMEDOUT,
101 -EILSEQ,
102 -EIO,
103 };
104
105 if (!data)
106 return;
107
108 if (cmd->error || data->error ||
109 !should_fail(&host->fail_mmc_request, data->blksz * data->blocks))
110 return;
111
112 data->error = data_errors[random32() % ARRAY_SIZE(data_errors)];
113 data->bytes_xfered = (random32() % (data->bytes_xfered >> 9)) << 9;
114}
115
116#else /* CONFIG_FAIL_MMC_REQUEST */
117
118static inline void mmc_should_fail_request(struct mmc_host *host,
119 struct mmc_request *mrq)
120{
121}
122
123#endif /* CONFIG_FAIL_MMC_REQUEST */
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/**
Russell Kingfe10c6a2006-05-04 13:51:45 +0100126 * mmc_request_done - finish processing an MMC request
127 * @host: MMC host which completed request
128 * @mrq: MMC request which request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 *
130 * MMC drivers should call this function when they have completed
Russell Kingfe10c6a2006-05-04 13:51:45 +0100131 * their processing of a request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 */
133void mmc_request_done(struct mmc_host *host, struct mmc_request *mrq)
134{
135 struct mmc_command *cmd = mrq->cmd;
Russell King920e70c2006-05-04 18:22:51 +0100136 int err = cmd->error;
137
David Brownellaf517152007-08-08 09:11:32 -0700138 if (err && cmd->retries && mmc_host_is_spi(host)) {
139 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
140 cmd->retries = 0;
141 }
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 if (err && cmd->retries) {
Adrian Hunter08a7e1d2011-10-03 15:33:33 +0300144 /*
145 * Request starter must handle retries - see
146 * mmc_wait_for_req_done().
147 */
148 if (mrq->done)
149 mrq->done(mrq);
Pierre Ossmane4d21702007-07-24 21:46:49 +0200150 } else {
Per Forlin1b676f72011-08-19 14:52:37 +0200151 mmc_should_fail_request(host, mrq);
152
Pierre Ossmanaf8350c2007-09-24 07:15:48 +0200153 led_trigger_event(host->led, LED_OFF);
154
Pierre Ossmane4d21702007-07-24 21:46:49 +0200155 pr_debug("%s: req done (CMD%u): %d: %08x %08x %08x %08x\n",
156 mmc_hostname(host), cmd->opcode, err,
157 cmd->resp[0], cmd->resp[1],
158 cmd->resp[2], cmd->resp[3]);
159
160 if (mrq->data) {
161 pr_debug("%s: %d bytes transferred: %d\n",
162 mmc_hostname(host),
163 mrq->data->bytes_xfered, mrq->data->error);
164 }
165
166 if (mrq->stop) {
167 pr_debug("%s: (CMD%u): %d: %08x %08x %08x %08x\n",
168 mmc_hostname(host), mrq->stop->opcode,
169 mrq->stop->error,
170 mrq->stop->resp[0], mrq->stop->resp[1],
171 mrq->stop->resp[2], mrq->stop->resp[3]);
172 }
173
174 if (mrq->done)
175 mrq->done(mrq);
Linus Walleij04566832010-11-08 21:36:50 -0500176
Mika Westerberg08c14072011-08-18 15:23:47 +0300177 mmc_host_clk_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179}
180
181EXPORT_SYMBOL(mmc_request_done);
182
Adrian Bunk39361852007-07-25 00:40:58 +0200183static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
185{
Pierre Ossman976d9272007-04-13 22:47:01 +0200186#ifdef CONFIG_MMC_DEBUG
187 unsigned int i, sz;
Pierre Ossmana84756c2008-07-29 01:09:37 +0200188 struct scatterlist *sg;
Pierre Ossman976d9272007-04-13 22:47:01 +0200189#endif
190
Russell King920e70c2006-05-04 18:22:51 +0100191 pr_debug("%s: starting CMD%u arg %08x flags %08x\n",
192 mmc_hostname(host), mrq->cmd->opcode,
193 mrq->cmd->arg, mrq->cmd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Pierre Ossmane4d21702007-07-24 21:46:49 +0200195 if (mrq->data) {
196 pr_debug("%s: blksz %d blocks %d flags %08x "
197 "tsac %d ms nsac %d\n",
198 mmc_hostname(host), mrq->data->blksz,
199 mrq->data->blocks, mrq->data->flags,
Pierre Ossmance252ed2007-08-07 14:06:18 +0200200 mrq->data->timeout_ns / 1000000,
Pierre Ossmane4d21702007-07-24 21:46:49 +0200201 mrq->data->timeout_clks);
202 }
203
204 if (mrq->stop) {
205 pr_debug("%s: CMD%u arg %08x flags %08x\n",
206 mmc_hostname(host), mrq->stop->opcode,
207 mrq->stop->arg, mrq->stop->flags);
208 }
209
Pierre Ossmanf22ee4e2006-12-26 15:11:23 +0100210 WARN_ON(!host->claimed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 mrq->cmd->error = 0;
213 mrq->cmd->mrq = mrq;
214 if (mrq->data) {
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100215 BUG_ON(mrq->data->blksz > host->max_blk_size);
Pierre Ossman55db8902006-11-21 17:55:45 +0100216 BUG_ON(mrq->data->blocks > host->max_blk_count);
217 BUG_ON(mrq->data->blocks * mrq->data->blksz >
218 host->max_req_size);
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100219
Pierre Ossman976d9272007-04-13 22:47:01 +0200220#ifdef CONFIG_MMC_DEBUG
221 sz = 0;
Pierre Ossmana84756c2008-07-29 01:09:37 +0200222 for_each_sg(mrq->data->sg, sg, mrq->data->sg_len, i)
223 sz += sg->length;
Pierre Ossman976d9272007-04-13 22:47:01 +0200224 BUG_ON(sz != mrq->data->blocks * mrq->data->blksz);
225#endif
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 mrq->cmd->data = mrq->data;
228 mrq->data->error = 0;
229 mrq->data->mrq = mrq;
230 if (mrq->stop) {
231 mrq->data->stop = mrq->stop;
232 mrq->stop->error = 0;
233 mrq->stop->mrq = mrq;
234 }
235 }
Mika Westerberg08c14072011-08-18 15:23:47 +0300236 mmc_host_clk_hold(host);
Pierre Tardy66c036e2011-02-06 19:02:48 +0100237 led_trigger_event(host->led, LED_FULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 host->ops->request(host, mrq);
239}
240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241static void mmc_wait_done(struct mmc_request *mrq)
242{
Per Forlinaa8b6832011-07-01 18:55:22 +0200243 complete(&mrq->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
Per Forlinaa8b6832011-07-01 18:55:22 +0200246static void __mmc_start_req(struct mmc_host *host, struct mmc_request *mrq)
247{
248 init_completion(&mrq->completion);
249 mrq->done = mmc_wait_done;
250 mmc_start_request(host, mrq);
251}
252
253static void mmc_wait_for_req_done(struct mmc_host *host,
254 struct mmc_request *mrq)
255{
Adrian Hunter08a7e1d2011-10-03 15:33:33 +0300256 struct mmc_command *cmd;
257
258 while (1) {
259 wait_for_completion(&mrq->completion);
260
261 cmd = mrq->cmd;
262 if (!cmd->error || !cmd->retries)
263 break;
264
265 pr_debug("%s: req failed (CMD%u): %d, retrying...\n",
266 mmc_hostname(host), cmd->opcode, cmd->error);
267 cmd->retries--;
268 cmd->error = 0;
269 host->ops->request(host, mrq);
270 }
Per Forlinaa8b6832011-07-01 18:55:22 +0200271}
272
273/**
274 * mmc_pre_req - Prepare for a new request
275 * @host: MMC host to prepare command
276 * @mrq: MMC request to prepare for
277 * @is_first_req: true if there is no previous started request
278 * that may run in parellel to this call, otherwise false
279 *
280 * mmc_pre_req() is called in prior to mmc_start_req() to let
281 * host prepare for the new request. Preparation of a request may be
282 * performed while another request is running on the host.
283 */
284static void mmc_pre_req(struct mmc_host *host, struct mmc_request *mrq,
285 bool is_first_req)
286{
287 if (host->ops->pre_req)
288 host->ops->pre_req(host, mrq, is_first_req);
289}
290
291/**
292 * mmc_post_req - Post process a completed request
293 * @host: MMC host to post process command
294 * @mrq: MMC request to post process for
295 * @err: Error, if non zero, clean up any resources made in pre_req
296 *
297 * Let the host post process a completed request. Post processing of
298 * a request may be performed while another reuqest is running.
299 */
300static void mmc_post_req(struct mmc_host *host, struct mmc_request *mrq,
301 int err)
302{
303 if (host->ops->post_req)
304 host->ops->post_req(host, mrq, err);
305}
306
307/**
308 * mmc_start_req - start a non-blocking request
309 * @host: MMC host to start command
310 * @areq: async request to start
311 * @error: out parameter returns 0 for success, otherwise non zero
312 *
313 * Start a new MMC custom command request for a host.
314 * If there is on ongoing async request wait for completion
315 * of that request and start the new one and return.
316 * Does not wait for the new request to complete.
317 *
318 * Returns the completed request, NULL in case of none completed.
319 * Wait for the an ongoing request (previoulsy started) to complete and
320 * return the completed request. If there is no ongoing request, NULL
321 * is returned without waiting. NULL is not an error condition.
322 */
323struct mmc_async_req *mmc_start_req(struct mmc_host *host,
324 struct mmc_async_req *areq, int *error)
325{
326 int err = 0;
327 struct mmc_async_req *data = host->areq;
328
329 /* Prepare a new request */
330 if (areq)
331 mmc_pre_req(host, areq->mrq, !host->areq);
332
333 if (host->areq) {
334 mmc_wait_for_req_done(host, host->areq->mrq);
335 err = host->areq->err_check(host->card, host->areq);
336 if (err) {
Per Forlin7c8a2822011-08-29 15:35:58 +0200337 /* post process the completed failed request */
Per Forlinaa8b6832011-07-01 18:55:22 +0200338 mmc_post_req(host, host->areq->mrq, 0);
339 if (areq)
Per Forlin7c8a2822011-08-29 15:35:58 +0200340 /*
341 * Cancel the new prepared request, because
342 * it can't run until the failed
343 * request has been properly handled.
344 */
Per Forlinaa8b6832011-07-01 18:55:22 +0200345 mmc_post_req(host, areq->mrq, -EINVAL);
346
347 host->areq = NULL;
348 goto out;
349 }
350 }
351
352 if (areq)
353 __mmc_start_req(host, areq->mrq);
354
355 if (host->areq)
356 mmc_post_req(host, host->areq->mrq, 0);
357
358 host->areq = areq;
359 out:
360 if (error)
361 *error = err;
362 return data;
363}
364EXPORT_SYMBOL(mmc_start_req);
365
Pierre Ossman67a61c42007-07-11 20:22:11 +0200366/**
367 * mmc_wait_for_req - start a request and wait for completion
368 * @host: MMC host to start command
369 * @mrq: MMC request to start
370 *
371 * Start a new MMC custom command request for a host, and wait
372 * for the command to complete. Does not attempt to parse the
373 * response.
374 */
375void mmc_wait_for_req(struct mmc_host *host, struct mmc_request *mrq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Per Forlinaa8b6832011-07-01 18:55:22 +0200377 __mmc_start_req(host, mrq);
378 mmc_wait_for_req_done(host, mrq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380EXPORT_SYMBOL(mmc_wait_for_req);
381
382/**
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -0400383 * mmc_interrupt_hpi - Issue for High priority Interrupt
384 * @card: the MMC card associated with the HPI transfer
385 *
386 * Issued High Priority Interrupt, and check for card status
387 * util out-of prg-state.
388 */
389int mmc_interrupt_hpi(struct mmc_card *card)
390{
391 int err;
392 u32 status;
393
394 BUG_ON(!card);
395
396 if (!card->ext_csd.hpi_en) {
397 pr_info("%s: HPI enable bit unset\n", mmc_hostname(card->host));
398 return 1;
399 }
400
401 mmc_claim_host(card->host);
402 err = mmc_send_status(card, &status);
403 if (err) {
404 pr_err("%s: Get card status fail\n", mmc_hostname(card->host));
405 goto out;
406 }
407
408 /*
409 * If the card status is in PRG-state, we can send the HPI command.
410 */
411 if (R1_CURRENT_STATE(status) == R1_STATE_PRG) {
412 do {
413 /*
414 * We don't know when the HPI command will finish
415 * processing, so we need to resend HPI until out
416 * of prg-state, and keep checking the card status
417 * with SEND_STATUS. If a timeout error occurs when
418 * sending the HPI command, we are already out of
419 * prg-state.
420 */
421 err = mmc_send_hpi_cmd(card, &status);
422 if (err)
423 pr_debug("%s: abort HPI (%d error)\n",
424 mmc_hostname(card->host), err);
425
426 err = mmc_send_status(card, &status);
427 if (err)
428 break;
429 } while (R1_CURRENT_STATE(status) == R1_STATE_PRG);
430 } else
431 pr_debug("%s: Left prg-state\n", mmc_hostname(card->host));
432
433out:
434 mmc_release_host(card->host);
435 return err;
436}
437EXPORT_SYMBOL(mmc_interrupt_hpi);
438
439/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * mmc_wait_for_cmd - start a command and wait for completion
441 * @host: MMC host to start command
442 * @cmd: MMC command to start
443 * @retries: maximum number of retries
444 *
445 * Start a new MMC command for a host, and wait for the command
446 * to complete. Return any error that occurred while the command
447 * was executing. Do not attempt to parse the response.
448 */
449int mmc_wait_for_cmd(struct mmc_host *host, struct mmc_command *cmd, int retries)
450{
Venkatraman Sad5fd972011-08-25 00:30:50 +0530451 struct mmc_request mrq = {NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Pierre Ossmand84075c82007-08-09 13:23:56 +0200453 WARN_ON(!host->claimed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 memset(cmd->resp, 0, sizeof(cmd->resp));
456 cmd->retries = retries;
457
458 mrq.cmd = cmd;
459 cmd->data = NULL;
460
461 mmc_wait_for_req(host, &mrq);
462
463 return cmd->error;
464}
465
466EXPORT_SYMBOL(mmc_wait_for_cmd);
467
Pierre Ossman335eadf2005-09-06 15:18:50 -0700468/**
Russell Kingd773d722006-09-07 15:57:12 +0100469 * mmc_set_data_timeout - set the timeout for a data command
470 * @data: data phase for command
471 * @card: the MMC card associated with the data transfer
Pierre Ossman67a61c42007-07-11 20:22:11 +0200472 *
473 * Computes the data timeout parameters according to the
474 * correct algorithm given the card type.
Russell Kingd773d722006-09-07 15:57:12 +0100475 */
Pierre Ossmanb146d262007-07-24 19:16:54 +0200476void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
Russell Kingd773d722006-09-07 15:57:12 +0100477{
478 unsigned int mult;
479
480 /*
Pierre Ossmane6f918b2007-08-07 14:11:55 +0200481 * SDIO cards only define an upper 1 s limit on access.
482 */
483 if (mmc_card_sdio(card)) {
484 data->timeout_ns = 1000000000;
485 data->timeout_clks = 0;
486 return;
487 }
488
489 /*
Russell Kingd773d722006-09-07 15:57:12 +0100490 * SD cards use a 100 multiplier rather than 10
491 */
492 mult = mmc_card_sd(card) ? 100 : 10;
493
494 /*
495 * Scale up the multiplier (and therefore the timeout) by
496 * the r2w factor for writes.
497 */
Pierre Ossmanb146d262007-07-24 19:16:54 +0200498 if (data->flags & MMC_DATA_WRITE)
Russell Kingd773d722006-09-07 15:57:12 +0100499 mult <<= card->csd.r2w_factor;
500
501 data->timeout_ns = card->csd.tacc_ns * mult;
502 data->timeout_clks = card->csd.tacc_clks * mult;
503
504 /*
505 * SD cards also have an upper limit on the timeout.
506 */
507 if (mmc_card_sd(card)) {
508 unsigned int timeout_us, limit_us;
509
510 timeout_us = data->timeout_ns / 1000;
Linus Walleije9b86842011-01-05 00:44:32 +0100511 if (mmc_host_clk_rate(card->host))
512 timeout_us += data->timeout_clks * 1000 /
513 (mmc_host_clk_rate(card->host) / 1000);
Russell Kingd773d722006-09-07 15:57:12 +0100514
Pierre Ossmanb146d262007-07-24 19:16:54 +0200515 if (data->flags & MMC_DATA_WRITE)
Pierre Ossman493890e2008-10-26 12:37:25 +0100516 /*
517 * The limit is really 250 ms, but that is
518 * insufficient for some crappy cards.
519 */
520 limit_us = 300000;
Russell Kingd773d722006-09-07 15:57:12 +0100521 else
522 limit_us = 100000;
523
Philip Langdalefba68bd2007-01-04 06:57:32 -0800524 /*
525 * SDHC cards always use these fixed values.
526 */
527 if (timeout_us > limit_us || mmc_card_blockaddr(card)) {
Russell Kingd773d722006-09-07 15:57:12 +0100528 data->timeout_ns = limit_us * 1000;
529 data->timeout_clks = 0;
530 }
531 }
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +0100532
533 /*
534 * Some cards require longer data read timeout than indicated in CSD.
535 * Address this by setting the read timeout to a "reasonably high"
536 * value. For the cards tested, 300ms has proven enough. If necessary,
537 * this value can be increased if other problematic cards require this.
538 */
539 if (mmc_card_long_read_time(card) && data->flags & MMC_DATA_READ) {
540 data->timeout_ns = 300000000;
541 data->timeout_clks = 0;
542 }
543
Wolfgang Mueesc0c88872009-03-11 14:28:39 +0100544 /*
545 * Some cards need very high timeouts if driven in SPI mode.
546 * The worst observed timeout was 900ms after writing a
547 * continuous stream of data until the internal logic
548 * overflowed.
549 */
550 if (mmc_host_is_spi(card->host)) {
551 if (data->flags & MMC_DATA_WRITE) {
552 if (data->timeout_ns < 1000000000)
553 data->timeout_ns = 1000000000; /* 1s */
554 } else {
555 if (data->timeout_ns < 100000000)
556 data->timeout_ns = 100000000; /* 100ms */
557 }
558 }
Russell Kingd773d722006-09-07 15:57:12 +0100559}
560EXPORT_SYMBOL(mmc_set_data_timeout);
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562/**
Pierre Ossmanad3868b2008-06-28 12:52:45 +0200563 * mmc_align_data_size - pads a transfer size to a more optimal value
564 * @card: the MMC card associated with the data transfer
565 * @sz: original transfer size
566 *
567 * Pads the original data size with a number of extra bytes in
568 * order to avoid controller bugs and/or performance hits
569 * (e.g. some controllers revert to PIO for certain sizes).
570 *
571 * Returns the improved size, which might be unmodified.
572 *
573 * Note that this function is only relevant when issuing a
574 * single scatter gather entry.
575 */
576unsigned int mmc_align_data_size(struct mmc_card *card, unsigned int sz)
577{
578 /*
579 * FIXME: We don't have a system for the controller to tell
580 * the core about its problems yet, so for now we just 32-bit
581 * align the size.
582 */
583 sz = ((sz + 3) / 4) * 4;
584
585 return sz;
586}
587EXPORT_SYMBOL(mmc_align_data_size);
588
589/**
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700590 * mmc_host_enable - enable a host.
591 * @host: mmc host to enable
592 *
593 * Hosts that support power saving can use the 'enable' and 'disable'
594 * methods to exit and enter power saving states. For more information
595 * see comments for struct mmc_host_ops.
596 */
597int mmc_host_enable(struct mmc_host *host)
598{
599 if (!(host->caps & MMC_CAP_DISABLE))
600 return 0;
601
602 if (host->en_dis_recurs)
603 return 0;
604
605 if (host->nesting_cnt++)
606 return 0;
607
608 cancel_delayed_work_sync(&host->disable);
609
610 if (host->enabled)
611 return 0;
612
613 if (host->ops->enable) {
614 int err;
615
616 host->en_dis_recurs = 1;
617 err = host->ops->enable(host);
618 host->en_dis_recurs = 0;
619
620 if (err) {
621 pr_debug("%s: enable error %d\n",
622 mmc_hostname(host), err);
623 return err;
624 }
625 }
626 host->enabled = 1;
627 return 0;
628}
629EXPORT_SYMBOL(mmc_host_enable);
630
631static int mmc_host_do_disable(struct mmc_host *host, int lazy)
632{
633 if (host->ops->disable) {
634 int err;
635
636 host->en_dis_recurs = 1;
637 err = host->ops->disable(host, lazy);
638 host->en_dis_recurs = 0;
639
640 if (err < 0) {
641 pr_debug("%s: disable error %d\n",
642 mmc_hostname(host), err);
643 return err;
644 }
645 if (err > 0) {
646 unsigned long delay = msecs_to_jiffies(err);
647
648 mmc_schedule_delayed_work(&host->disable, delay);
649 }
650 }
651 host->enabled = 0;
652 return 0;
653}
654
655/**
656 * mmc_host_disable - disable a host.
657 * @host: mmc host to disable
658 *
659 * Hosts that support power saving can use the 'enable' and 'disable'
660 * methods to exit and enter power saving states. For more information
661 * see comments for struct mmc_host_ops.
662 */
663int mmc_host_disable(struct mmc_host *host)
664{
665 int err;
666
667 if (!(host->caps & MMC_CAP_DISABLE))
668 return 0;
669
670 if (host->en_dis_recurs)
671 return 0;
672
673 if (--host->nesting_cnt)
674 return 0;
675
676 if (!host->enabled)
677 return 0;
678
679 err = mmc_host_do_disable(host, 0);
680 return err;
681}
682EXPORT_SYMBOL(mmc_host_disable);
683
684/**
Nicolas Pitre2342f332007-06-30 16:21:52 +0200685 * __mmc_claim_host - exclusively claim a host
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 * @host: mmc host to claim
Nicolas Pitre2342f332007-06-30 16:21:52 +0200687 * @abort: whether or not the operation should be aborted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 *
Nicolas Pitre2342f332007-06-30 16:21:52 +0200689 * Claim a host for a set of operations. If @abort is non null and
690 * dereference a non-zero value then this will return prematurely with
691 * that non-zero value without acquiring the lock. Returns zero
692 * with the lock held otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 */
Nicolas Pitre2342f332007-06-30 16:21:52 +0200694int __mmc_claim_host(struct mmc_host *host, atomic_t *abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 DECLARE_WAITQUEUE(wait, current);
697 unsigned long flags;
Nicolas Pitre2342f332007-06-30 16:21:52 +0200698 int stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Pierre Ossmancf795bf2007-07-11 20:28:02 +0200700 might_sleep();
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 add_wait_queue(&host->wq, &wait);
703 spin_lock_irqsave(&host->lock, flags);
704 while (1) {
705 set_current_state(TASK_UNINTERRUPTIBLE);
Nicolas Pitre2342f332007-06-30 16:21:52 +0200706 stop = abort ? atomic_read(abort) : 0;
Adrian Hunter319a3f12009-09-22 16:44:30 -0700707 if (stop || !host->claimed || host->claimer == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 break;
709 spin_unlock_irqrestore(&host->lock, flags);
710 schedule();
711 spin_lock_irqsave(&host->lock, flags);
712 }
713 set_current_state(TASK_RUNNING);
Adrian Hunter319a3f12009-09-22 16:44:30 -0700714 if (!stop) {
Nicolas Pitre2342f332007-06-30 16:21:52 +0200715 host->claimed = 1;
Adrian Hunter319a3f12009-09-22 16:44:30 -0700716 host->claimer = current;
717 host->claim_cnt += 1;
718 } else
Nicolas Pitre2342f332007-06-30 16:21:52 +0200719 wake_up(&host->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 spin_unlock_irqrestore(&host->lock, flags);
721 remove_wait_queue(&host->wq, &wait);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700722 if (!stop)
723 mmc_host_enable(host);
Nicolas Pitre2342f332007-06-30 16:21:52 +0200724 return stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Nicolas Pitre2342f332007-06-30 16:21:52 +0200727EXPORT_SYMBOL(__mmc_claim_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Adrian Hunter319a3f12009-09-22 16:44:30 -0700729/**
730 * mmc_try_claim_host - try exclusively to claim a host
731 * @host: mmc host to claim
732 *
733 * Returns %1 if the host is claimed, %0 otherwise.
734 */
735int mmc_try_claim_host(struct mmc_host *host)
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700736{
737 int claimed_host = 0;
738 unsigned long flags;
739
740 spin_lock_irqsave(&host->lock, flags);
Adrian Hunter319a3f12009-09-22 16:44:30 -0700741 if (!host->claimed || host->claimer == current) {
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700742 host->claimed = 1;
Adrian Hunter319a3f12009-09-22 16:44:30 -0700743 host->claimer = current;
744 host->claim_cnt += 1;
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700745 claimed_host = 1;
746 }
747 spin_unlock_irqrestore(&host->lock, flags);
748 return claimed_host;
749}
Adrian Hunter319a3f12009-09-22 16:44:30 -0700750EXPORT_SYMBOL(mmc_try_claim_host);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700751
Ulf Hanssonab1efd22011-03-09 09:11:02 +0100752/**
753 * mmc_do_release_host - release a claimed host
754 * @host: mmc host to release
755 *
756 * If you successfully claimed a host, this function will
757 * release it again.
758 */
759void mmc_do_release_host(struct mmc_host *host)
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700760{
761 unsigned long flags;
762
763 spin_lock_irqsave(&host->lock, flags);
Adrian Hunter319a3f12009-09-22 16:44:30 -0700764 if (--host->claim_cnt) {
765 /* Release for nested claim */
766 spin_unlock_irqrestore(&host->lock, flags);
767 } else {
768 host->claimed = 0;
769 host->claimer = NULL;
770 spin_unlock_irqrestore(&host->lock, flags);
771 wake_up(&host->wq);
772 }
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700773}
Ulf Hanssonab1efd22011-03-09 09:11:02 +0100774EXPORT_SYMBOL(mmc_do_release_host);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700775
776void mmc_host_deeper_disable(struct work_struct *work)
777{
778 struct mmc_host *host =
779 container_of(work, struct mmc_host, disable.work);
780
781 /* If the host is claimed then we do not want to disable it anymore */
782 if (!mmc_try_claim_host(host))
783 return;
784 mmc_host_do_disable(host, 1);
785 mmc_do_release_host(host);
786}
787
788/**
789 * mmc_host_lazy_disable - lazily disable a host.
790 * @host: mmc host to disable
791 *
792 * Hosts that support power saving can use the 'enable' and 'disable'
793 * methods to exit and enter power saving states. For more information
794 * see comments for struct mmc_host_ops.
795 */
796int mmc_host_lazy_disable(struct mmc_host *host)
797{
798 if (!(host->caps & MMC_CAP_DISABLE))
799 return 0;
800
801 if (host->en_dis_recurs)
802 return 0;
803
804 if (--host->nesting_cnt)
805 return 0;
806
807 if (!host->enabled)
808 return 0;
809
810 if (host->disable_delay) {
811 mmc_schedule_delayed_work(&host->disable,
812 msecs_to_jiffies(host->disable_delay));
813 return 0;
814 } else
815 return mmc_host_do_disable(host, 1);
816}
817EXPORT_SYMBOL(mmc_host_lazy_disable);
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819/**
820 * mmc_release_host - release a host
821 * @host: mmc host to release
822 *
823 * Release a MMC host, allowing others to claim the host
824 * for their operations.
825 */
826void mmc_release_host(struct mmc_host *host)
827{
Pierre Ossmand84075c82007-08-09 13:23:56 +0200828 WARN_ON(!host->claimed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700830 mmc_host_lazy_disable(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700832 mmc_do_release_host(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
834
835EXPORT_SYMBOL(mmc_release_host);
836
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100837/*
838 * Internal function that does the actual ios call to the host driver,
839 * optionally printing some debug output.
840 */
Russell King920e70c2006-05-04 18:22:51 +0100841static inline void mmc_set_ios(struct mmc_host *host)
842{
843 struct mmc_ios *ios = &host->ios;
844
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100845 pr_debug("%s: clock %uHz busmode %u powermode %u cs %u Vdd %u "
846 "width %u timing %u\n",
Russell King920e70c2006-05-04 18:22:51 +0100847 mmc_hostname(host), ios->clock, ios->bus_mode,
848 ios->power_mode, ios->chip_select, ios->vdd,
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100849 ios->bus_width, ios->timing);
Philip Langdalefba68bd2007-01-04 06:57:32 -0800850
Linus Walleij04566832010-11-08 21:36:50 -0500851 if (ios->clock > 0)
852 mmc_set_ungated(host);
Russell King920e70c2006-05-04 18:22:51 +0100853 host->ops->set_ios(host, ios);
854}
855
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100856/*
857 * Control chip select pin on a host.
858 */
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100859void mmc_set_chip_select(struct mmc_host *host, int mode)
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700860{
Mika Westerberg778e2772011-08-18 15:23:48 +0300861 mmc_host_clk_hold(host);
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100862 host->ios.chip_select = mode;
863 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +0300864 mmc_host_clk_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865}
866
867/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100868 * Sets the host clock to the highest possible frequency that
869 * is below "hz".
870 */
Mika Westerberg778e2772011-08-18 15:23:48 +0300871static void __mmc_set_clock(struct mmc_host *host, unsigned int hz)
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100872{
873 WARN_ON(hz < host->f_min);
874
875 if (hz > host->f_max)
876 hz = host->f_max;
877
878 host->ios.clock = hz;
879 mmc_set_ios(host);
880}
881
Mika Westerberg778e2772011-08-18 15:23:48 +0300882void mmc_set_clock(struct mmc_host *host, unsigned int hz)
883{
884 mmc_host_clk_hold(host);
885 __mmc_set_clock(host, hz);
886 mmc_host_clk_release(host);
887}
888
Linus Walleij04566832010-11-08 21:36:50 -0500889#ifdef CONFIG_MMC_CLKGATE
890/*
891 * This gates the clock by setting it to 0 Hz.
892 */
893void mmc_gate_clock(struct mmc_host *host)
894{
895 unsigned long flags;
896
897 spin_lock_irqsave(&host->clk_lock, flags);
898 host->clk_old = host->ios.clock;
899 host->ios.clock = 0;
900 host->clk_gated = true;
901 spin_unlock_irqrestore(&host->clk_lock, flags);
902 mmc_set_ios(host);
903}
904
905/*
906 * This restores the clock from gating by using the cached
907 * clock value.
908 */
909void mmc_ungate_clock(struct mmc_host *host)
910{
911 /*
912 * We should previously have gated the clock, so the clock shall
913 * be 0 here! The clock may however be 0 during initialization,
914 * when some request operations are performed before setting
915 * the frequency. When ungate is requested in that situation
916 * we just ignore the call.
917 */
918 if (host->clk_old) {
919 BUG_ON(host->ios.clock);
920 /* This call will also set host->clk_gated to false */
Mika Westerberg778e2772011-08-18 15:23:48 +0300921 __mmc_set_clock(host, host->clk_old);
Linus Walleij04566832010-11-08 21:36:50 -0500922 }
923}
924
925void mmc_set_ungated(struct mmc_host *host)
926{
927 unsigned long flags;
928
929 /*
930 * We've been given a new frequency while the clock is gated,
931 * so make sure we regard this as ungating it.
932 */
933 spin_lock_irqsave(&host->clk_lock, flags);
934 host->clk_gated = false;
935 spin_unlock_irqrestore(&host->clk_lock, flags);
936}
937
938#else
939void mmc_set_ungated(struct mmc_host *host)
940{
941}
942#endif
943
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100944/*
945 * Change the bus mode (open drain/push-pull) of a host.
946 */
947void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode)
948{
Mika Westerberg778e2772011-08-18 15:23:48 +0300949 mmc_host_clk_hold(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100950 host->ios.bus_mode = mode;
951 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +0300952 mmc_host_clk_release(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100953}
954
955/*
956 * Change data bus width of a host.
957 */
958void mmc_set_bus_width(struct mmc_host *host, unsigned int width)
959{
Mika Westerberg778e2772011-08-18 15:23:48 +0300960 mmc_host_clk_hold(host);
Philip Rakity4c4cb172011-05-13 11:17:18 +0530961 host->ios.bus_width = width;
962 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +0300963 mmc_host_clk_release(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100964}
965
Anton Vorontsov86e82862008-11-26 22:54:17 +0300966/**
967 * mmc_vdd_to_ocrbitnum - Convert a voltage to the OCR bit number
968 * @vdd: voltage (mV)
969 * @low_bits: prefer low bits in boundary cases
970 *
971 * This function returns the OCR bit number according to the provided @vdd
972 * value. If conversion is not possible a negative errno value returned.
973 *
974 * Depending on the @low_bits flag the function prefers low or high OCR bits
975 * on boundary voltages. For example,
976 * with @low_bits = true, 3300 mV translates to ilog2(MMC_VDD_32_33);
977 * with @low_bits = false, 3300 mV translates to ilog2(MMC_VDD_33_34);
978 *
979 * Any value in the [1951:1999] range translates to the ilog2(MMC_VDD_20_21).
980 */
981static int mmc_vdd_to_ocrbitnum(int vdd, bool low_bits)
982{
983 const int max_bit = ilog2(MMC_VDD_35_36);
984 int bit;
985
986 if (vdd < 1650 || vdd > 3600)
987 return -EINVAL;
988
989 if (vdd >= 1650 && vdd <= 1950)
990 return ilog2(MMC_VDD_165_195);
991
992 if (low_bits)
993 vdd -= 1;
994
995 /* Base 2000 mV, step 100 mV, bit's base 8. */
996 bit = (vdd - 2000) / 100 + 8;
997 if (bit > max_bit)
998 return max_bit;
999 return bit;
1000}
1001
1002/**
1003 * mmc_vddrange_to_ocrmask - Convert a voltage range to the OCR mask
1004 * @vdd_min: minimum voltage value (mV)
1005 * @vdd_max: maximum voltage value (mV)
1006 *
1007 * This function returns the OCR mask bits according to the provided @vdd_min
1008 * and @vdd_max values. If conversion is not possible the function returns 0.
1009 *
1010 * Notes wrt boundary cases:
1011 * This function sets the OCR bits for all boundary voltages, for example
1012 * [3300:3400] range is translated to MMC_VDD_32_33 | MMC_VDD_33_34 |
1013 * MMC_VDD_34_35 mask.
1014 */
1015u32 mmc_vddrange_to_ocrmask(int vdd_min, int vdd_max)
1016{
1017 u32 mask = 0;
1018
1019 if (vdd_max < vdd_min)
1020 return 0;
1021
1022 /* Prefer high bits for the boundary vdd_max values. */
1023 vdd_max = mmc_vdd_to_ocrbitnum(vdd_max, false);
1024 if (vdd_max < 0)
1025 return 0;
1026
1027 /* Prefer low bits for the boundary vdd_min values. */
1028 vdd_min = mmc_vdd_to_ocrbitnum(vdd_min, true);
1029 if (vdd_min < 0)
1030 return 0;
1031
1032 /* Fill the mask, from max bit to min bit. */
1033 while (vdd_max >= vdd_min)
1034 mask |= 1 << vdd_max--;
1035
1036 return mask;
1037}
1038EXPORT_SYMBOL(mmc_vddrange_to_ocrmask);
1039
David Brownell5c139412009-03-11 03:30:43 -08001040#ifdef CONFIG_REGULATOR
1041
1042/**
1043 * mmc_regulator_get_ocrmask - return mask of supported voltages
1044 * @supply: regulator to use
1045 *
1046 * This returns either a negative errno, or a mask of voltages that
1047 * can be provided to MMC/SD/SDIO devices using the specified voltage
1048 * regulator. This would normally be called before registering the
1049 * MMC host adapter.
1050 */
1051int mmc_regulator_get_ocrmask(struct regulator *supply)
1052{
1053 int result = 0;
1054 int count;
1055 int i;
1056
1057 count = regulator_count_voltages(supply);
1058 if (count < 0)
1059 return count;
1060
1061 for (i = 0; i < count; i++) {
1062 int vdd_uV;
1063 int vdd_mV;
1064
1065 vdd_uV = regulator_list_voltage(supply, i);
1066 if (vdd_uV <= 0)
1067 continue;
1068
1069 vdd_mV = vdd_uV / 1000;
1070 result |= mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
1071 }
1072
1073 return result;
1074}
1075EXPORT_SYMBOL(mmc_regulator_get_ocrmask);
1076
1077/**
1078 * mmc_regulator_set_ocr - set regulator to match host->ios voltage
Linus Walleij99fc5132010-09-29 01:08:27 -04001079 * @mmc: the host to regulate
David Brownell5c139412009-03-11 03:30:43 -08001080 * @supply: regulator to use
Linus Walleij99fc5132010-09-29 01:08:27 -04001081 * @vdd_bit: zero for power off, else a bit number (host->ios.vdd)
David Brownell5c139412009-03-11 03:30:43 -08001082 *
1083 * Returns zero on success, else negative errno.
1084 *
1085 * MMC host drivers may use this to enable or disable a regulator using
1086 * a particular supply voltage. This would normally be called from the
1087 * set_ios() method.
1088 */
Linus Walleij99fc5132010-09-29 01:08:27 -04001089int mmc_regulator_set_ocr(struct mmc_host *mmc,
1090 struct regulator *supply,
1091 unsigned short vdd_bit)
David Brownell5c139412009-03-11 03:30:43 -08001092{
1093 int result = 0;
1094 int min_uV, max_uV;
David Brownell5c139412009-03-11 03:30:43 -08001095
1096 if (vdd_bit) {
1097 int tmp;
1098 int voltage;
1099
1100 /* REVISIT mmc_vddrange_to_ocrmask() may have set some
1101 * bits this regulator doesn't quite support ... don't
1102 * be too picky, most cards and regulators are OK with
1103 * a 0.1V range goof (it's a small error percentage).
1104 */
1105 tmp = vdd_bit - ilog2(MMC_VDD_165_195);
1106 if (tmp == 0) {
1107 min_uV = 1650 * 1000;
1108 max_uV = 1950 * 1000;
1109 } else {
1110 min_uV = 1900 * 1000 + tmp * 100 * 1000;
1111 max_uV = min_uV + 100 * 1000;
1112 }
1113
1114 /* avoid needless changes to this voltage; the regulator
1115 * might not allow this operation
1116 */
1117 voltage = regulator_get_voltage(supply);
1118 if (voltage < 0)
1119 result = voltage;
1120 else if (voltage < min_uV || voltage > max_uV)
1121 result = regulator_set_voltage(supply, min_uV, max_uV);
1122 else
1123 result = 0;
1124
Linus Walleij99fc5132010-09-29 01:08:27 -04001125 if (result == 0 && !mmc->regulator_enabled) {
David Brownell5c139412009-03-11 03:30:43 -08001126 result = regulator_enable(supply);
Linus Walleij99fc5132010-09-29 01:08:27 -04001127 if (!result)
1128 mmc->regulator_enabled = true;
1129 }
1130 } else if (mmc->regulator_enabled) {
David Brownell5c139412009-03-11 03:30:43 -08001131 result = regulator_disable(supply);
Linus Walleij99fc5132010-09-29 01:08:27 -04001132 if (result == 0)
1133 mmc->regulator_enabled = false;
David Brownell5c139412009-03-11 03:30:43 -08001134 }
1135
Linus Walleij99fc5132010-09-29 01:08:27 -04001136 if (result)
1137 dev_err(mmc_dev(mmc),
1138 "could not set regulator OCR (%d)\n", result);
David Brownell5c139412009-03-11 03:30:43 -08001139 return result;
1140}
1141EXPORT_SYMBOL(mmc_regulator_set_ocr);
1142
Linus Walleij99fc5132010-09-29 01:08:27 -04001143#endif /* CONFIG_REGULATOR */
David Brownell5c139412009-03-11 03:30:43 -08001144
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001145/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 * Mask off any voltages we don't support and select
1147 * the lowest voltage
1148 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001149u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
1151 int bit;
1152
1153 ocr &= host->ocr_avail;
1154
1155 bit = ffs(ocr);
1156 if (bit) {
1157 bit -= 1;
1158
Timo Teras63ef7312006-11-02 19:43:27 +01001159 ocr &= 3 << bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Mika Westerberg778e2772011-08-18 15:23:48 +03001161 mmc_host_clk_hold(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 host->ios.vdd = bit;
Russell King920e70c2006-05-04 18:22:51 +01001163 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +03001164 mmc_host_clk_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 } else {
David Brownellf6e10b82008-12-31 09:50:30 -08001166 pr_warning("%s: host doesn't support card's voltages\n",
1167 mmc_hostname(host));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 ocr = 0;
1169 }
1170
1171 return ocr;
1172}
1173
Philip Rakity261bbd42011-05-13 11:17:17 +05301174int mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage, bool cmd11)
Arindam Nathf2119df2011-05-05 12:18:57 +05301175{
1176 struct mmc_command cmd = {0};
1177 int err = 0;
1178
1179 BUG_ON(!host);
1180
1181 /*
1182 * Send CMD11 only if the request is to switch the card to
1183 * 1.8V signalling.
1184 */
Philip Rakity261bbd42011-05-13 11:17:17 +05301185 if ((signal_voltage != MMC_SIGNAL_VOLTAGE_330) && cmd11) {
Arindam Nathf2119df2011-05-05 12:18:57 +05301186 cmd.opcode = SD_SWITCH_VOLTAGE;
1187 cmd.arg = 0;
1188 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1189
1190 err = mmc_wait_for_cmd(host, &cmd, 0);
1191 if (err)
1192 return err;
1193
1194 if (!mmc_host_is_spi(host) && (cmd.resp[0] & R1_ERROR))
1195 return -EIO;
1196 }
1197
1198 host->ios.signal_voltage = signal_voltage;
1199
1200 if (host->ops->start_signal_voltage_switch)
1201 err = host->ops->start_signal_voltage_switch(host, &host->ios);
1202
1203 return err;
1204}
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001207 * Select timing parameters for host.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001209void mmc_set_timing(struct mmc_host *host, unsigned int timing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
Mika Westerberg778e2772011-08-18 15:23:48 +03001211 mmc_host_clk_hold(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001212 host->ios.timing = timing;
1213 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +03001214 mmc_host_clk_release(host);
Pierre Ossmanb57c43a2005-09-06 15:18:53 -07001215}
1216
1217/*
Arindam Nathd6d50a12011-05-05 12:18:59 +05301218 * Select appropriate driver type for host.
1219 */
1220void mmc_set_driver_type(struct mmc_host *host, unsigned int drv_type)
1221{
Mika Westerberg778e2772011-08-18 15:23:48 +03001222 mmc_host_clk_hold(host);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301223 host->ios.drv_type = drv_type;
1224 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +03001225 mmc_host_clk_release(host);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301226}
1227
Girish K Sa80f1622011-11-15 11:55:46 +05301228static void mmc_poweroff_notify(struct mmc_host *host)
1229{
1230 struct mmc_card *card;
1231 unsigned int timeout;
1232 unsigned int notify_type = EXT_CSD_NO_POWER_NOTIFICATION;
1233 int err = 0;
1234
1235 card = host->card;
1236
1237 /*
1238 * Send power notify command only if card
1239 * is mmc and notify state is powered ON
1240 */
1241 if (card && mmc_card_mmc(card) &&
1242 (card->poweroff_notify_state == MMC_POWERED_ON)) {
1243
1244 if (host->power_notify_type == MMC_HOST_PW_NOTIFY_SHORT) {
1245 notify_type = EXT_CSD_POWER_OFF_SHORT;
1246 timeout = card->ext_csd.generic_cmd6_time;
1247 card->poweroff_notify_state = MMC_POWEROFF_SHORT;
1248 } else {
1249 notify_type = EXT_CSD_POWER_OFF_LONG;
1250 timeout = card->ext_csd.power_off_longtime;
1251 card->poweroff_notify_state = MMC_POWEROFF_LONG;
1252 }
1253
1254 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1255 EXT_CSD_POWER_OFF_NOTIFICATION,
1256 notify_type, timeout);
1257
1258 if (err && err != -EBADMSG)
1259 pr_err("Device failed to respond within %d poweroff "
1260 "time. Forcefully powering down the device\n",
1261 timeout);
1262
1263 /* Set the card state to no notification after the poweroff */
1264 card->poweroff_notify_state = MMC_NO_POWER_NOTIFICATION;
1265 }
1266}
1267
Arindam Nathd6d50a12011-05-05 12:18:59 +05301268/*
Russell King45f82452005-12-14 14:57:35 +00001269 * Apply power to the MMC stack. This is a two-stage process.
1270 * First, we enable power to the card without the clock running.
1271 * We then wait a bit for the power to stabilise. Finally,
1272 * enable the bus drivers and clock to the card.
1273 *
1274 * We must _NOT_ enable the clock prior to power stablising.
1275 *
1276 * If a host does all the power sequencing itself, ignore the
1277 * initial MMC_POWER_UP stage.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 */
1279static void mmc_power_up(struct mmc_host *host)
1280{
Balaji Rao500f3562009-09-22 16:44:18 -07001281 int bit;
1282
Mika Westerberg778e2772011-08-18 15:23:48 +03001283 mmc_host_clk_hold(host);
1284
Balaji Rao500f3562009-09-22 16:44:18 -07001285 /* If ocr is set, we use it */
1286 if (host->ocr)
1287 bit = ffs(host->ocr) - 1;
1288 else
1289 bit = fls(host->ocr_avail) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 host->ios.vdd = bit;
Stefan Nilsson XK44669032011-09-15 17:50:38 +02001292 if (mmc_host_is_spi(host))
David Brownellaf517152007-08-08 09:11:32 -07001293 host->ios.chip_select = MMC_CS_HIGH;
Stefan Nilsson XK44669032011-09-15 17:50:38 +02001294 else
David Brownellaf517152007-08-08 09:11:32 -07001295 host->ios.chip_select = MMC_CS_DONTCARE;
Stefan Nilsson XK44669032011-09-15 17:50:38 +02001296 host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 host->ios.power_mode = MMC_POWER_UP;
Pierre Ossmanf2182782005-09-06 15:18:55 -07001298 host->ios.bus_width = MMC_BUS_WIDTH_1;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001299 host->ios.timing = MMC_TIMING_LEGACY;
Russell King920e70c2006-05-04 18:22:51 +01001300 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Pierre Ossmanf9996ae2007-09-19 18:38:50 +02001302 /*
1303 * This delay should be sufficient to allow the power supply
1304 * to reach the minimum voltage.
1305 */
José M. Fernández79bccc52009-03-10 02:21:21 +01001306 mmc_delay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Hein Tibosch88ae8b82010-09-06 09:37:19 +08001308 host->ios.clock = host->f_init;
Sascha Hauer8dfd0372009-04-09 08:32:02 +02001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 host->ios.power_mode = MMC_POWER_ON;
Russell King920e70c2006-05-04 18:22:51 +01001311 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Pierre Ossmanf9996ae2007-09-19 18:38:50 +02001313 /*
1314 * This delay must be at least 74 clock sizes, or 1 ms, or the
1315 * time required to reach a stable voltage.
1316 */
José M. Fernández79bccc52009-03-10 02:21:21 +01001317 mmc_delay(10);
Mika Westerberg778e2772011-08-18 15:23:48 +03001318
1319 mmc_host_clk_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
Ulf Hansson7f7e4122011-09-21 14:08:13 -04001322void mmc_power_off(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Mika Westerberg778e2772011-08-18 15:23:48 +03001324 mmc_host_clk_hold(host);
1325
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 host->ios.clock = 0;
1327 host->ios.vdd = 0;
Ulf Hanssonb33d46c2011-03-05 14:36:24 +01001328
Girish K Sa80f1622011-11-15 11:55:46 +05301329 mmc_poweroff_notify(host);
Girish K Sbec87262011-10-13 12:04:16 +05301330
Ulf Hanssonb33d46c2011-03-05 14:36:24 +01001331 /*
1332 * Reset ocr mask to be the highest possible voltage supported for
1333 * this mmc host. This value will be used at next power up.
1334 */
1335 host->ocr = 1 << (fls(host->ocr_avail) - 1);
1336
David Brownellaf517152007-08-08 09:11:32 -07001337 if (!mmc_host_is_spi(host)) {
1338 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
1339 host->ios.chip_select = MMC_CS_DONTCARE;
1340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 host->ios.power_mode = MMC_POWER_OFF;
Pierre Ossmanf2182782005-09-06 15:18:55 -07001342 host->ios.bus_width = MMC_BUS_WIDTH_1;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001343 host->ios.timing = MMC_TIMING_LEGACY;
Russell King920e70c2006-05-04 18:22:51 +01001344 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +03001345
Daniel Drake041beb12011-09-07 10:22:09 +01001346 /*
1347 * Some configurations, such as the 802.11 SDIO card in the OLPC
1348 * XO-1.5, require a short delay after poweroff before the card
1349 * can be successfully turned on again.
1350 */
1351 mmc_delay(1);
1352
Mika Westerberg778e2772011-08-18 15:23:48 +03001353 mmc_host_clk_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356/*
Adrian Bunk39361852007-07-25 00:40:58 +02001357 * Cleanup when the last reference to the bus operator is dropped.
1358 */
Adrian Bunk261172f2008-04-13 21:15:47 +03001359static void __mmc_release_bus(struct mmc_host *host)
Adrian Bunk39361852007-07-25 00:40:58 +02001360{
1361 BUG_ON(!host);
1362 BUG_ON(host->bus_refs);
1363 BUG_ON(!host->bus_dead);
1364
1365 host->bus_ops = NULL;
1366}
1367
1368/*
1369 * Increase reference count of bus operator
1370 */
1371static inline void mmc_bus_get(struct mmc_host *host)
1372{
1373 unsigned long flags;
1374
1375 spin_lock_irqsave(&host->lock, flags);
1376 host->bus_refs++;
1377 spin_unlock_irqrestore(&host->lock, flags);
1378}
1379
1380/*
1381 * Decrease reference count of bus operator and free it if
1382 * it is the last reference.
1383 */
1384static inline void mmc_bus_put(struct mmc_host *host)
1385{
1386 unsigned long flags;
1387
1388 spin_lock_irqsave(&host->lock, flags);
1389 host->bus_refs--;
1390 if ((host->bus_refs == 0) && host->bus_ops)
1391 __mmc_release_bus(host);
1392 spin_unlock_irqrestore(&host->lock, flags);
1393}
1394
1395/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001396 * Assign a mmc bus handler to a host. Only one bus handler may control a
1397 * host at any given time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001399void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001401 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001403 BUG_ON(!host);
1404 BUG_ON(!ops);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001405
Pierre Ossmand84075c82007-08-09 13:23:56 +02001406 WARN_ON(!host->claimed);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001407
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001408 spin_lock_irqsave(&host->lock, flags);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001409
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001410 BUG_ON(host->bus_ops);
1411 BUG_ON(host->bus_refs);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001412
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001413 host->bus_ops = ops;
1414 host->bus_refs = 1;
1415 host->bus_dead = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001417 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
1420/*
Ulf Hansson7f7e4122011-09-21 14:08:13 -04001421 * Remove the current bus handler from a host.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001423void mmc_detach_bus(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001425 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001427 BUG_ON(!host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Pierre Ossmand84075c82007-08-09 13:23:56 +02001429 WARN_ON(!host->claimed);
1430 WARN_ON(!host->bus_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001432 spin_lock_irqsave(&host->lock, flags);
1433
1434 host->bus_dead = 1;
1435
1436 spin_unlock_irqrestore(&host->lock, flags);
1437
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001438 mmc_bus_put(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439}
1440
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441/**
1442 * mmc_detect_change - process change of state on a MMC socket
1443 * @host: host which changed state.
Richard Purdie8dc00332005-09-08 17:53:01 +01001444 * @delay: optional delay to wait before detection (jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 *
Pierre Ossman67a61c42007-07-11 20:22:11 +02001446 * MMC drivers should call this when they detect a card has been
1447 * inserted or removed. The MMC layer will confirm that any
1448 * present card is still functional, and initialize any newly
1449 * inserted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 */
Richard Purdie8dc00332005-09-08 17:53:01 +01001451void mmc_detect_change(struct mmc_host *host, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
Pierre Ossman3b91e552007-02-11 20:43:19 +01001453#ifdef CONFIG_MMC_DEBUG
Pierre Ossman1efd48b2007-05-08 22:35:17 +02001454 unsigned long flags;
Andrew Morton01f41ec2007-05-09 02:32:34 -07001455 spin_lock_irqsave(&host->lock, flags);
Pierre Ossmand84075c82007-08-09 13:23:56 +02001456 WARN_ON(host->removed);
Andrew Morton01f41ec2007-05-09 02:32:34 -07001457 spin_unlock_irqrestore(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01001458#endif
1459
David Howellsc4028952006-11-22 14:57:56 +00001460 mmc_schedule_delayed_work(&host->detect, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
1463EXPORT_SYMBOL(mmc_detect_change);
1464
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001465void mmc_init_erase(struct mmc_card *card)
1466{
1467 unsigned int sz;
1468
1469 if (is_power_of_2(card->erase_size))
1470 card->erase_shift = ffs(card->erase_size) - 1;
1471 else
1472 card->erase_shift = 0;
1473
1474 /*
1475 * It is possible to erase an arbitrarily large area of an SD or MMC
1476 * card. That is not desirable because it can take a long time
1477 * (minutes) potentially delaying more important I/O, and also the
1478 * timeout calculations become increasingly hugely over-estimated.
1479 * Consequently, 'pref_erase' is defined as a guide to limit erases
1480 * to that size and alignment.
1481 *
1482 * For SD cards that define Allocation Unit size, limit erases to one
1483 * Allocation Unit at a time. For MMC cards that define High Capacity
1484 * Erase Size, whether it is switched on or not, limit to that size.
1485 * Otherwise just have a stab at a good value. For modern cards it
1486 * will end up being 4MiB. Note that if the value is too small, it
1487 * can end up taking longer to erase.
1488 */
1489 if (mmc_card_sd(card) && card->ssr.au) {
1490 card->pref_erase = card->ssr.au;
1491 card->erase_shift = ffs(card->ssr.au) - 1;
1492 } else if (card->ext_csd.hc_erase_size) {
1493 card->pref_erase = card->ext_csd.hc_erase_size;
1494 } else {
1495 sz = (card->csd.capacity << (card->csd.read_blkbits - 9)) >> 11;
1496 if (sz < 128)
1497 card->pref_erase = 512 * 1024 / 512;
1498 else if (sz < 512)
1499 card->pref_erase = 1024 * 1024 / 512;
1500 else if (sz < 1024)
1501 card->pref_erase = 2 * 1024 * 1024 / 512;
1502 else
1503 card->pref_erase = 4 * 1024 * 1024 / 512;
1504 if (card->pref_erase < card->erase_size)
1505 card->pref_erase = card->erase_size;
1506 else {
1507 sz = card->pref_erase % card->erase_size;
1508 if (sz)
1509 card->pref_erase += card->erase_size - sz;
1510 }
1511 }
1512}
1513
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001514static unsigned int mmc_mmc_erase_timeout(struct mmc_card *card,
1515 unsigned int arg, unsigned int qty)
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001516{
1517 unsigned int erase_timeout;
1518
1519 if (card->ext_csd.erase_group_def & 1) {
1520 /* High Capacity Erase Group Size uses HC timeouts */
1521 if (arg == MMC_TRIM_ARG)
1522 erase_timeout = card->ext_csd.trim_timeout;
1523 else
1524 erase_timeout = card->ext_csd.hc_erase_timeout;
1525 } else {
1526 /* CSD Erase Group Size uses write timeout */
1527 unsigned int mult = (10 << card->csd.r2w_factor);
1528 unsigned int timeout_clks = card->csd.tacc_clks * mult;
1529 unsigned int timeout_us;
1530
1531 /* Avoid overflow: e.g. tacc_ns=80000000 mult=1280 */
1532 if (card->csd.tacc_ns < 1000000)
1533 timeout_us = (card->csd.tacc_ns * mult) / 1000;
1534 else
1535 timeout_us = (card->csd.tacc_ns / 1000) * mult;
1536
1537 /*
1538 * ios.clock is only a target. The real clock rate might be
1539 * less but not that much less, so fudge it by multiplying by 2.
1540 */
1541 timeout_clks <<= 1;
1542 timeout_us += (timeout_clks * 1000) /
Adrian Hunter4cf8c6d2011-06-23 13:40:27 +03001543 (mmc_host_clk_rate(card->host) / 1000);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001544
1545 erase_timeout = timeout_us / 1000;
1546
1547 /*
1548 * Theoretically, the calculation could underflow so round up
1549 * to 1ms in that case.
1550 */
1551 if (!erase_timeout)
1552 erase_timeout = 1;
1553 }
1554
1555 /* Multiplier for secure operations */
1556 if (arg & MMC_SECURE_ARGS) {
1557 if (arg == MMC_SECURE_ERASE_ARG)
1558 erase_timeout *= card->ext_csd.sec_erase_mult;
1559 else
1560 erase_timeout *= card->ext_csd.sec_trim_mult;
1561 }
1562
1563 erase_timeout *= qty;
1564
1565 /*
1566 * Ensure at least a 1 second timeout for SPI as per
1567 * 'mmc_set_data_timeout()'
1568 */
1569 if (mmc_host_is_spi(card->host) && erase_timeout < 1000)
1570 erase_timeout = 1000;
1571
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001572 return erase_timeout;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001573}
1574
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001575static unsigned int mmc_sd_erase_timeout(struct mmc_card *card,
1576 unsigned int arg,
1577 unsigned int qty)
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001578{
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001579 unsigned int erase_timeout;
1580
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001581 if (card->ssr.erase_timeout) {
1582 /* Erase timeout specified in SD Status Register (SSR) */
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001583 erase_timeout = card->ssr.erase_timeout * qty +
1584 card->ssr.erase_offset;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001585 } else {
1586 /*
1587 * Erase timeout not specified in SD Status Register (SSR) so
1588 * use 250ms per write block.
1589 */
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001590 erase_timeout = 250 * qty;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001591 }
1592
1593 /* Must not be less than 1 second */
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001594 if (erase_timeout < 1000)
1595 erase_timeout = 1000;
1596
1597 return erase_timeout;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001598}
1599
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001600static unsigned int mmc_erase_timeout(struct mmc_card *card,
1601 unsigned int arg,
1602 unsigned int qty)
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001603{
1604 if (mmc_card_sd(card))
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001605 return mmc_sd_erase_timeout(card, arg, qty);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001606 else
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001607 return mmc_mmc_erase_timeout(card, arg, qty);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001608}
1609
1610static int mmc_do_erase(struct mmc_card *card, unsigned int from,
1611 unsigned int to, unsigned int arg)
1612{
Chris Ball1278dba2011-04-13 23:40:30 -04001613 struct mmc_command cmd = {0};
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001614 unsigned int qty = 0;
1615 int err;
1616
1617 /*
1618 * qty is used to calculate the erase timeout which depends on how many
1619 * erase groups (or allocation units in SD terminology) are affected.
1620 * We count erasing part of an erase group as one erase group.
1621 * For SD, the allocation units are always a power of 2. For MMC, the
1622 * erase group size is almost certainly also power of 2, but it does not
1623 * seem to insist on that in the JEDEC standard, so we fall back to
1624 * division in that case. SD may not specify an allocation unit size,
1625 * in which case the timeout is based on the number of write blocks.
1626 *
1627 * Note that the timeout for secure trim 2 will only be correct if the
1628 * number of erase groups specified is the same as the total of all
1629 * preceding secure trim 1 commands. Since the power may have been
1630 * lost since the secure trim 1 commands occurred, it is generally
1631 * impossible to calculate the secure trim 2 timeout correctly.
1632 */
1633 if (card->erase_shift)
1634 qty += ((to >> card->erase_shift) -
1635 (from >> card->erase_shift)) + 1;
1636 else if (mmc_card_sd(card))
1637 qty += to - from + 1;
1638 else
1639 qty += ((to / card->erase_size) -
1640 (from / card->erase_size)) + 1;
1641
1642 if (!mmc_card_blockaddr(card)) {
1643 from <<= 9;
1644 to <<= 9;
1645 }
1646
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001647 if (mmc_card_sd(card))
1648 cmd.opcode = SD_ERASE_WR_BLK_START;
1649 else
1650 cmd.opcode = MMC_ERASE_GROUP_START;
1651 cmd.arg = from;
1652 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1653 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1654 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301655 pr_err("mmc_erase: group start error %d, "
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001656 "status %#x\n", err, cmd.resp[0]);
Adrian Hunter67716322011-08-29 16:42:15 +03001657 err = -EIO;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001658 goto out;
1659 }
1660
1661 memset(&cmd, 0, sizeof(struct mmc_command));
1662 if (mmc_card_sd(card))
1663 cmd.opcode = SD_ERASE_WR_BLK_END;
1664 else
1665 cmd.opcode = MMC_ERASE_GROUP_END;
1666 cmd.arg = to;
1667 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1668 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1669 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301670 pr_err("mmc_erase: group end error %d, status %#x\n",
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001671 err, cmd.resp[0]);
Adrian Hunter67716322011-08-29 16:42:15 +03001672 err = -EIO;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001673 goto out;
1674 }
1675
1676 memset(&cmd, 0, sizeof(struct mmc_command));
1677 cmd.opcode = MMC_ERASE;
1678 cmd.arg = arg;
1679 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001680 cmd.cmd_timeout_ms = mmc_erase_timeout(card, arg, qty);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001681 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1682 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301683 pr_err("mmc_erase: erase error %d, status %#x\n",
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001684 err, cmd.resp[0]);
1685 err = -EIO;
1686 goto out;
1687 }
1688
1689 if (mmc_host_is_spi(card->host))
1690 goto out;
1691
1692 do {
1693 memset(&cmd, 0, sizeof(struct mmc_command));
1694 cmd.opcode = MMC_SEND_STATUS;
1695 cmd.arg = card->rca << 16;
1696 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1697 /* Do not retry else we can't see errors */
1698 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1699 if (err || (cmd.resp[0] & 0xFDF92000)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301700 pr_err("error %d requesting status %#x\n",
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001701 err, cmd.resp[0]);
1702 err = -EIO;
1703 goto out;
1704 }
1705 } while (!(cmd.resp[0] & R1_READY_FOR_DATA) ||
Jaehoon Chung7435bb72011-08-10 18:46:28 +09001706 R1_CURRENT_STATE(cmd.resp[0]) == R1_STATE_PRG);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001707out:
1708 return err;
1709}
1710
1711/**
1712 * mmc_erase - erase sectors.
1713 * @card: card to erase
1714 * @from: first sector to erase
1715 * @nr: number of sectors to erase
1716 * @arg: erase command argument (SD supports only %MMC_ERASE_ARG)
1717 *
1718 * Caller must claim host before calling this function.
1719 */
1720int mmc_erase(struct mmc_card *card, unsigned int from, unsigned int nr,
1721 unsigned int arg)
1722{
1723 unsigned int rem, to = from + nr;
1724
1725 if (!(card->host->caps & MMC_CAP_ERASE) ||
1726 !(card->csd.cmdclass & CCC_ERASE))
1727 return -EOPNOTSUPP;
1728
1729 if (!card->erase_size)
1730 return -EOPNOTSUPP;
1731
1732 if (mmc_card_sd(card) && arg != MMC_ERASE_ARG)
1733 return -EOPNOTSUPP;
1734
1735 if ((arg & MMC_SECURE_ARGS) &&
1736 !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN))
1737 return -EOPNOTSUPP;
1738
1739 if ((arg & MMC_TRIM_ARGS) &&
1740 !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN))
1741 return -EOPNOTSUPP;
1742
1743 if (arg == MMC_SECURE_ERASE_ARG) {
1744 if (from % card->erase_size || nr % card->erase_size)
1745 return -EINVAL;
1746 }
1747
1748 if (arg == MMC_ERASE_ARG) {
1749 rem = from % card->erase_size;
1750 if (rem) {
1751 rem = card->erase_size - rem;
1752 from += rem;
1753 if (nr > rem)
1754 nr -= rem;
1755 else
1756 return 0;
1757 }
1758 rem = nr % card->erase_size;
1759 if (rem)
1760 nr -= rem;
1761 }
1762
1763 if (nr == 0)
1764 return 0;
1765
1766 to = from + nr;
1767
1768 if (to <= from)
1769 return -EINVAL;
1770
1771 /* 'from' and 'to' are inclusive */
1772 to -= 1;
1773
1774 return mmc_do_erase(card, from, to, arg);
1775}
1776EXPORT_SYMBOL(mmc_erase);
1777
1778int mmc_can_erase(struct mmc_card *card)
1779{
1780 if ((card->host->caps & MMC_CAP_ERASE) &&
1781 (card->csd.cmdclass & CCC_ERASE) && card->erase_size)
1782 return 1;
1783 return 0;
1784}
1785EXPORT_SYMBOL(mmc_can_erase);
1786
1787int mmc_can_trim(struct mmc_card *card)
1788{
1789 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN)
1790 return 1;
Kyungmin Parkb3bf9152011-10-18 09:34:04 +09001791 if (mmc_can_discard(card))
1792 return 1;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001793 return 0;
1794}
1795EXPORT_SYMBOL(mmc_can_trim);
1796
Kyungmin Parkb3bf9152011-10-18 09:34:04 +09001797int mmc_can_discard(struct mmc_card *card)
1798{
1799 /*
1800 * As there's no way to detect the discard support bit at v4.5
1801 * use the s/w feature support filed.
1802 */
1803 if (card->ext_csd.feature_support & MMC_DISCARD_FEATURE)
1804 return 1;
1805 return 0;
1806}
1807EXPORT_SYMBOL(mmc_can_discard);
1808
Kyungmin Parkd9ddd622011-10-14 14:15:48 +09001809int mmc_can_sanitize(struct mmc_card *card)
1810{
1811 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_SANITIZE)
1812 return 1;
1813 return 0;
1814}
1815EXPORT_SYMBOL(mmc_can_sanitize);
1816
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001817int mmc_can_secure_erase_trim(struct mmc_card *card)
1818{
1819 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN)
1820 return 1;
1821 return 0;
1822}
1823EXPORT_SYMBOL(mmc_can_secure_erase_trim);
1824
1825int mmc_erase_group_aligned(struct mmc_card *card, unsigned int from,
1826 unsigned int nr)
1827{
1828 if (!card->erase_size)
1829 return 0;
1830 if (from % card->erase_size || nr % card->erase_size)
1831 return 0;
1832 return 1;
1833}
1834EXPORT_SYMBOL(mmc_erase_group_aligned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Adrian Huntere056a1b2011-06-28 17:16:02 +03001836static unsigned int mmc_do_calc_max_discard(struct mmc_card *card,
1837 unsigned int arg)
1838{
1839 struct mmc_host *host = card->host;
1840 unsigned int max_discard, x, y, qty = 0, max_qty, timeout;
1841 unsigned int last_timeout = 0;
1842
1843 if (card->erase_shift)
1844 max_qty = UINT_MAX >> card->erase_shift;
1845 else if (mmc_card_sd(card))
1846 max_qty = UINT_MAX;
1847 else
1848 max_qty = UINT_MAX / card->erase_size;
1849
1850 /* Find the largest qty with an OK timeout */
1851 do {
1852 y = 0;
1853 for (x = 1; x && x <= max_qty && max_qty - x >= qty; x <<= 1) {
1854 timeout = mmc_erase_timeout(card, arg, qty + x);
1855 if (timeout > host->max_discard_to)
1856 break;
1857 if (timeout < last_timeout)
1858 break;
1859 last_timeout = timeout;
1860 y = x;
1861 }
1862 qty += y;
1863 } while (y);
1864
1865 if (!qty)
1866 return 0;
1867
1868 if (qty == 1)
1869 return 1;
1870
1871 /* Convert qty to sectors */
1872 if (card->erase_shift)
1873 max_discard = --qty << card->erase_shift;
1874 else if (mmc_card_sd(card))
1875 max_discard = qty;
1876 else
1877 max_discard = --qty * card->erase_size;
1878
1879 return max_discard;
1880}
1881
1882unsigned int mmc_calc_max_discard(struct mmc_card *card)
1883{
1884 struct mmc_host *host = card->host;
1885 unsigned int max_discard, max_trim;
1886
1887 if (!host->max_discard_to)
1888 return UINT_MAX;
1889
1890 /*
1891 * Without erase_group_def set, MMC erase timeout depends on clock
1892 * frequence which can change. In that case, the best choice is
1893 * just the preferred erase size.
1894 */
1895 if (mmc_card_mmc(card) && !(card->ext_csd.erase_group_def & 1))
1896 return card->pref_erase;
1897
1898 max_discard = mmc_do_calc_max_discard(card, MMC_ERASE_ARG);
1899 if (mmc_can_trim(card)) {
1900 max_trim = mmc_do_calc_max_discard(card, MMC_TRIM_ARG);
1901 if (max_trim < max_discard)
1902 max_discard = max_trim;
1903 } else if (max_discard < card->erase_size) {
1904 max_discard = 0;
1905 }
1906 pr_debug("%s: calculated max. discard sectors %u for timeout %u ms\n",
1907 mmc_hostname(host), max_discard, host->max_discard_to);
1908 return max_discard;
1909}
1910EXPORT_SYMBOL(mmc_calc_max_discard);
1911
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001912int mmc_set_blocklen(struct mmc_card *card, unsigned int blocklen)
1913{
Chris Ball1278dba2011-04-13 23:40:30 -04001914 struct mmc_command cmd = {0};
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001915
1916 if (mmc_card_blockaddr(card) || mmc_card_ddr_mode(card))
1917 return 0;
1918
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001919 cmd.opcode = MMC_SET_BLOCKLEN;
1920 cmd.arg = blocklen;
1921 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1922 return mmc_wait_for_cmd(card->host, &cmd, 5);
1923}
1924EXPORT_SYMBOL(mmc_set_blocklen);
1925
Adrian Hunterb2499512011-08-29 16:42:11 +03001926static void mmc_hw_reset_for_init(struct mmc_host *host)
1927{
1928 if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
1929 return;
1930 mmc_host_clk_hold(host);
1931 host->ops->hw_reset(host);
1932 mmc_host_clk_release(host);
1933}
1934
1935int mmc_can_reset(struct mmc_card *card)
1936{
1937 u8 rst_n_function;
1938
1939 if (!mmc_card_mmc(card))
1940 return 0;
1941 rst_n_function = card->ext_csd.rst_n_function;
1942 if ((rst_n_function & EXT_CSD_RST_N_EN_MASK) != EXT_CSD_RST_N_ENABLED)
1943 return 0;
1944 return 1;
1945}
1946EXPORT_SYMBOL(mmc_can_reset);
1947
1948static int mmc_do_hw_reset(struct mmc_host *host, int check)
1949{
1950 struct mmc_card *card = host->card;
1951
1952 if (!host->bus_ops->power_restore)
1953 return -EOPNOTSUPP;
1954
1955 if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
1956 return -EOPNOTSUPP;
1957
1958 if (!card)
1959 return -EINVAL;
1960
1961 if (!mmc_can_reset(card))
1962 return -EOPNOTSUPP;
1963
1964 mmc_host_clk_hold(host);
1965 mmc_set_clock(host, host->f_init);
1966
1967 host->ops->hw_reset(host);
1968
1969 /* If the reset has happened, then a status command will fail */
1970 if (check) {
1971 struct mmc_command cmd = {0};
1972 int err;
1973
1974 cmd.opcode = MMC_SEND_STATUS;
1975 if (!mmc_host_is_spi(card->host))
1976 cmd.arg = card->rca << 16;
1977 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
1978 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1979 if (!err) {
1980 mmc_host_clk_release(host);
1981 return -ENOSYS;
1982 }
1983 }
1984
1985 host->card->state &= ~(MMC_STATE_HIGHSPEED | MMC_STATE_HIGHSPEED_DDR);
1986 if (mmc_host_is_spi(host)) {
1987 host->ios.chip_select = MMC_CS_HIGH;
1988 host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
1989 } else {
1990 host->ios.chip_select = MMC_CS_DONTCARE;
1991 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
1992 }
1993 host->ios.bus_width = MMC_BUS_WIDTH_1;
1994 host->ios.timing = MMC_TIMING_LEGACY;
1995 mmc_set_ios(host);
1996
1997 mmc_host_clk_release(host);
1998
1999 return host->bus_ops->power_restore(host);
2000}
2001
2002int mmc_hw_reset(struct mmc_host *host)
2003{
2004 return mmc_do_hw_reset(host, 0);
2005}
2006EXPORT_SYMBOL(mmc_hw_reset);
2007
2008int mmc_hw_reset_check(struct mmc_host *host)
2009{
2010 return mmc_do_hw_reset(host, 1);
2011}
2012EXPORT_SYMBOL(mmc_hw_reset_check);
2013
Andy Ross807e8e42011-01-03 10:36:56 -08002014static int mmc_rescan_try_freq(struct mmc_host *host, unsigned freq)
2015{
2016 host->f_init = freq;
2017
2018#ifdef CONFIG_MMC_DEBUG
2019 pr_info("%s: %s: trying to init card at %u Hz\n",
2020 mmc_hostname(host), __func__, host->f_init);
2021#endif
2022 mmc_power_up(host);
Philip Rakity2f94e552011-02-13 23:12:28 -08002023
2024 /*
Adrian Hunterb2499512011-08-29 16:42:11 +03002025 * Some eMMCs (with VCCQ always on) may not be reset after power up, so
2026 * do a hardware reset if possible.
2027 */
2028 mmc_hw_reset_for_init(host);
2029
2030 /*
Philip Rakity2f94e552011-02-13 23:12:28 -08002031 * sdio_reset sends CMD52 to reset card. Since we do not know
2032 * if the card is being re-initialized, just send it. CMD52
2033 * should be ignored by SD/eMMC cards.
2034 */
Andy Ross807e8e42011-01-03 10:36:56 -08002035 sdio_reset(host);
2036 mmc_go_idle(host);
2037
2038 mmc_send_if_cond(host, host->ocr_avail);
2039
2040 /* Order's important: probe SDIO, then SD, then MMC */
2041 if (!mmc_attach_sdio(host))
2042 return 0;
2043 if (!mmc_attach_sd(host))
2044 return 0;
2045 if (!mmc_attach_mmc(host))
2046 return 0;
2047
2048 mmc_power_off(host);
2049 return -EIO;
2050}
2051
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002052void mmc_rescan(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053{
Andy Ross807e8e42011-01-03 10:36:56 -08002054 static const unsigned freqs[] = { 400000, 300000, 200000, 100000 };
David Howellsc4028952006-11-22 14:57:56 +00002055 struct mmc_host *host =
2056 container_of(work, struct mmc_host, detect.work);
Hein Tibosch88ae8b82010-09-06 09:37:19 +08002057 int i;
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002058
Andy Ross807e8e42011-01-03 10:36:56 -08002059 if (host->rescan_disable)
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002060 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002062 mmc_bus_get(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Ohad Ben-Cohen30201e72010-11-28 07:21:28 +02002064 /*
2065 * if there is a _removable_ card registered, check whether it is
2066 * still present
2067 */
2068 if (host->bus_ops && host->bus_ops->detect && !host->bus_dead
Ohad Ben-Cohenbad3bab2011-03-08 23:32:02 +02002069 && !(host->caps & MMC_CAP_NONREMOVABLE))
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002070 host->bus_ops->detect(host);
2071
Chris Ballc5841792011-01-04 12:20:22 -05002072 /*
2073 * Let mmc_bus_put() free the bus/bus_ops if we've found that
2074 * the card is no longer present.
2075 */
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002076 mmc_bus_put(host);
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002077 mmc_bus_get(host);
2078
2079 /* if there still is a card present, stop here */
2080 if (host->bus_ops != NULL) {
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002081 mmc_bus_put(host);
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002082 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002084
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002085 /*
2086 * Only we can add a new handler, so it's safe to
2087 * release the lock here.
2088 */
2089 mmc_bus_put(host);
2090
2091 if (host->ops->get_cd && host->ops->get_cd(host) == 0)
2092 goto out;
2093
Andy Ross807e8e42011-01-03 10:36:56 -08002094 mmc_claim_host(host);
Hein Tibosch88ae8b82010-09-06 09:37:19 +08002095 for (i = 0; i < ARRAY_SIZE(freqs); i++) {
Andy Ross807e8e42011-01-03 10:36:56 -08002096 if (!mmc_rescan_try_freq(host, max(freqs[i], host->f_min)))
2097 break;
Jaehoon Chung06b22332011-05-12 17:18:59 +09002098 if (freqs[i] <= host->f_min)
Andy Ross807e8e42011-01-03 10:36:56 -08002099 break;
Hein Tibosch88ae8b82010-09-06 09:37:19 +08002100 }
Andy Ross807e8e42011-01-03 10:36:56 -08002101 mmc_release_host(host);
2102
2103 out:
Anton Vorontsov28f52482008-06-17 18:17:15 +04002104 if (host->caps & MMC_CAP_NEEDS_POLL)
2105 mmc_schedule_delayed_work(&host->detect, HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002108void mmc_start_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002110 mmc_power_off(host);
2111 mmc_detect_change(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112}
2113
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002114void mmc_stop_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
Pierre Ossman3b91e552007-02-11 20:43:19 +01002116#ifdef CONFIG_MMC_DEBUG
Pierre Ossman1efd48b2007-05-08 22:35:17 +02002117 unsigned long flags;
2118 spin_lock_irqsave(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01002119 host->removed = 1;
Pierre Ossman1efd48b2007-05-08 22:35:17 +02002120 spin_unlock_irqrestore(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01002121#endif
2122
Adrian Hunter8ea926b2009-09-22 16:44:29 -07002123 if (host->caps & MMC_CAP_DISABLE)
2124 cancel_delayed_work(&host->disable);
Guennadi Liakhovetskid9bcbf32010-11-11 17:32:25 +01002125 cancel_delayed_work_sync(&host->detect);
Pierre Ossman3b91e552007-02-11 20:43:19 +01002126 mmc_flush_scheduled_work();
2127
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08002128 /* clear pm flags now and let card drivers set them as needed */
2129 host->pm_flags = 0;
2130
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002131 mmc_bus_get(host);
2132 if (host->bus_ops && !host->bus_dead) {
2133 if (host->bus_ops->remove)
2134 host->bus_ops->remove(host);
2135
2136 mmc_claim_host(host);
2137 mmc_detach_bus(host);
Ulf Hansson7f7e4122011-09-21 14:08:13 -04002138 mmc_power_off(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002139 mmc_release_host(host);
Denis Karpov53509f02009-09-22 16:44:36 -07002140 mmc_bus_put(host);
2141 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 }
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002143 mmc_bus_put(host);
2144
2145 BUG_ON(host->card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
2147 mmc_power_off(host);
2148}
2149
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002150int mmc_power_save_host(struct mmc_host *host)
Adrian Huntereae1aee2009-09-22 16:44:33 -07002151{
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002152 int ret = 0;
2153
Daniel Drakebb9cab92011-07-17 16:38:41 +01002154#ifdef CONFIG_MMC_DEBUG
2155 pr_info("%s: %s: powering down\n", mmc_hostname(host), __func__);
2156#endif
2157
Adrian Huntereae1aee2009-09-22 16:44:33 -07002158 mmc_bus_get(host);
2159
2160 if (!host->bus_ops || host->bus_dead || !host->bus_ops->power_restore) {
2161 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002162 return -EINVAL;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002163 }
2164
2165 if (host->bus_ops->power_save)
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002166 ret = host->bus_ops->power_save(host);
Adrian Huntereae1aee2009-09-22 16:44:33 -07002167
2168 mmc_bus_put(host);
2169
2170 mmc_power_off(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002171
2172 return ret;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002173}
2174EXPORT_SYMBOL(mmc_power_save_host);
2175
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002176int mmc_power_restore_host(struct mmc_host *host)
Adrian Huntereae1aee2009-09-22 16:44:33 -07002177{
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002178 int ret;
2179
Daniel Drakebb9cab92011-07-17 16:38:41 +01002180#ifdef CONFIG_MMC_DEBUG
2181 pr_info("%s: %s: powering up\n", mmc_hostname(host), __func__);
2182#endif
2183
Adrian Huntereae1aee2009-09-22 16:44:33 -07002184 mmc_bus_get(host);
2185
2186 if (!host->bus_ops || host->bus_dead || !host->bus_ops->power_restore) {
2187 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002188 return -EINVAL;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002189 }
2190
2191 mmc_power_up(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002192 ret = host->bus_ops->power_restore(host);
Adrian Huntereae1aee2009-09-22 16:44:33 -07002193
2194 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002195
2196 return ret;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002197}
2198EXPORT_SYMBOL(mmc_power_restore_host);
2199
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -07002200int mmc_card_awake(struct mmc_host *host)
2201{
2202 int err = -ENOSYS;
2203
2204 mmc_bus_get(host);
2205
2206 if (host->bus_ops && !host->bus_dead && host->bus_ops->awake)
2207 err = host->bus_ops->awake(host);
2208
2209 mmc_bus_put(host);
2210
2211 return err;
2212}
2213EXPORT_SYMBOL(mmc_card_awake);
2214
2215int mmc_card_sleep(struct mmc_host *host)
2216{
2217 int err = -ENOSYS;
2218
2219 mmc_bus_get(host);
2220
Kyungmin Parkc99872a2011-11-17 13:34:33 +09002221 if (host->bus_ops && !host->bus_dead && host->bus_ops->sleep)
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -07002222 err = host->bus_ops->sleep(host);
2223
2224 mmc_bus_put(host);
2225
2226 return err;
2227}
2228EXPORT_SYMBOL(mmc_card_sleep);
2229
2230int mmc_card_can_sleep(struct mmc_host *host)
2231{
2232 struct mmc_card *card = host->card;
2233
2234 if (card && mmc_card_mmc(card) && card->ext_csd.rev >= 3)
2235 return 1;
2236 return 0;
2237}
2238EXPORT_SYMBOL(mmc_card_can_sleep);
2239
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002240/*
2241 * Flush the cache to the non-volatile storage.
2242 */
2243int mmc_flush_cache(struct mmc_card *card)
2244{
2245 struct mmc_host *host = card->host;
2246 int err = 0;
2247
2248 if (!(host->caps2 & MMC_CAP2_CACHE_CTRL))
2249 return err;
2250
2251 if (mmc_card_mmc(card) &&
2252 (card->ext_csd.cache_size > 0) &&
2253 (card->ext_csd.cache_ctrl & 1)) {
2254 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
2255 EXT_CSD_FLUSH_CACHE, 1, 0);
2256 if (err)
2257 pr_err("%s: cache flush error %d\n",
2258 mmc_hostname(card->host), err);
2259 }
2260
2261 return err;
2262}
2263EXPORT_SYMBOL(mmc_flush_cache);
2264
2265/*
2266 * Turn the cache ON/OFF.
2267 * Turning the cache OFF shall trigger flushing of the data
2268 * to the non-volatile storage.
2269 */
2270int mmc_cache_ctrl(struct mmc_host *host, u8 enable)
2271{
2272 struct mmc_card *card = host->card;
2273 int err = 0;
2274
2275 if (!(host->caps2 & MMC_CAP2_CACHE_CTRL) ||
2276 mmc_card_is_removable(host))
2277 return err;
2278
2279 if (card && mmc_card_mmc(card) &&
2280 (card->ext_csd.cache_size > 0)) {
2281 enable = !!enable;
2282
2283 if (card->ext_csd.cache_ctrl ^ enable)
2284 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
2285 EXT_CSD_CACHE_CTRL, enable, 0);
2286 if (err)
2287 pr_err("%s: cache %s error %d\n",
2288 mmc_hostname(card->host),
2289 enable ? "on" : "off",
2290 err);
2291 else
2292 card->ext_csd.cache_ctrl = enable;
2293 }
2294
2295 return err;
2296}
2297EXPORT_SYMBOL(mmc_cache_ctrl);
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299#ifdef CONFIG_PM
2300
2301/**
2302 * mmc_suspend_host - suspend a host
2303 * @host: mmc host
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 */
Matt Fleming1a13f8f2010-05-26 14:42:08 -07002305int mmc_suspend_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306{
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002307 int err = 0;
2308
Adrian Hunter8ea926b2009-09-22 16:44:29 -07002309 if (host->caps & MMC_CAP_DISABLE)
2310 cancel_delayed_work(&host->disable);
Jorg Schummer7de427d2009-02-19 13:17:03 +02002311 cancel_delayed_work(&host->detect);
Pierre Ossmanb5af25b2007-04-28 17:30:50 +02002312 mmc_flush_scheduled_work();
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002313 err = mmc_cache_ctrl(host, 0);
2314 if (err)
2315 goto out;
Pierre Ossmanb5af25b2007-04-28 17:30:50 +02002316
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002317 mmc_bus_get(host);
2318 if (host->bus_ops && !host->bus_dead) {
Ulf Hanssonb6ad7262011-10-13 16:03:58 +02002319
2320 /*
2321 * A long response time is not acceptable for device drivers
2322 * when doing suspend. Prevent mmc_claim_host in the suspend
2323 * sequence, to potentially wait "forever" by trying to
2324 * pre-claim the host.
2325 */
2326 if (mmc_try_claim_host(host)) {
Girish K Sa80f1622011-11-15 11:55:46 +05302327 if (host->bus_ops->suspend) {
2328 /*
2329 * For eMMC 4.5 device send notify command
2330 * before sleep, because in sleep state eMMC 4.5
2331 * devices respond to only RESET and AWAKE cmd
2332 */
2333 mmc_poweroff_notify(host);
Ulf Hanssonb6ad7262011-10-13 16:03:58 +02002334 err = host->bus_ops->suspend(host);
Girish K Sa80f1622011-11-15 11:55:46 +05302335 }
Sujit Reddy Thumma49df7802011-11-23 08:43:18 +05302336 mmc_do_release_host(host);
2337
Ulf Hanssonb6ad7262011-10-13 16:03:58 +02002338 if (err == -ENOSYS || !host->bus_ops->resume) {
2339 /*
2340 * We simply "remove" the card in this case.
2341 * It will be redetected on resume.
2342 */
2343 if (host->bus_ops->remove)
2344 host->bus_ops->remove(host);
2345 mmc_claim_host(host);
2346 mmc_detach_bus(host);
2347 mmc_power_off(host);
2348 mmc_release_host(host);
2349 host->pm_flags = 0;
2350 err = 0;
2351 }
Ulf Hanssonb6ad7262011-10-13 16:03:58 +02002352 } else {
2353 err = -EBUSY;
Ohad Ben-Cohen1c8cf9c2010-10-13 09:31:56 +02002354 }
Pierre Ossmanb5af25b2007-04-28 17:30:50 +02002355 }
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002356 mmc_bus_put(host);
2357
Ohad Ben-Cohena5e94252011-04-05 17:43:20 +03002358 if (!err && !mmc_card_keep_power(host))
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002359 mmc_power_off(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002361out:
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002362 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363}
2364
2365EXPORT_SYMBOL(mmc_suspend_host);
2366
2367/**
2368 * mmc_resume_host - resume a previously suspended host
2369 * @host: mmc host
2370 */
2371int mmc_resume_host(struct mmc_host *host)
2372{
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002373 int err = 0;
2374
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02002375 mmc_bus_get(host);
2376 if (host->bus_ops && !host->bus_dead) {
Ohad Ben-Cohena5e94252011-04-05 17:43:20 +03002377 if (!mmc_card_keep_power(host)) {
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08002378 mmc_power_up(host);
2379 mmc_select_voltage(host, host->ocr);
Ohad Ben-Cohene5945732010-11-28 07:21:30 +02002380 /*
2381 * Tell runtime PM core we just powered up the card,
2382 * since it still believes the card is powered off.
2383 * Note that currently runtime PM is only enabled
2384 * for SDIO cards that are MMC_CAP_POWER_OFF_CARD
2385 */
2386 if (mmc_card_sdio(host->card) &&
2387 (host->caps & MMC_CAP_POWER_OFF_CARD)) {
2388 pm_runtime_disable(&host->card->dev);
2389 pm_runtime_set_active(&host->card->dev);
2390 pm_runtime_enable(&host->card->dev);
2391 }
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08002392 }
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02002393 BUG_ON(!host->bus_ops->resume);
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002394 err = host->bus_ops->resume(host);
2395 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302396 pr_warning("%s: error %d during resume "
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002397 "(card was removed?)\n",
2398 mmc_hostname(host), err);
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002399 err = 0;
2400 }
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02002401 }
Eliad Pellera8e6df72011-05-09 11:32:31 +03002402 host->pm_flags &= ~MMC_PM_KEEP_POWER;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02002403 mmc_bus_put(host);
2404
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002405 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407EXPORT_SYMBOL(mmc_resume_host);
2408
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002409/* Do the card removal on suspend if card is assumed removeable
2410 * Do that in pm notifier while userspace isn't yet frozen, so we will be able
2411 to sync the card.
2412*/
2413int mmc_pm_notify(struct notifier_block *notify_block,
2414 unsigned long mode, void *unused)
2415{
2416 struct mmc_host *host = container_of(
2417 notify_block, struct mmc_host, pm_notify);
2418 unsigned long flags;
2419
2420
2421 switch (mode) {
2422 case PM_HIBERNATION_PREPARE:
2423 case PM_SUSPEND_PREPARE:
2424
2425 spin_lock_irqsave(&host->lock, flags);
2426 host->rescan_disable = 1;
Girish K Sbec87262011-10-13 12:04:16 +05302427 host->power_notify_type = MMC_HOST_PW_NOTIFY_SHORT;
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002428 spin_unlock_irqrestore(&host->lock, flags);
2429 cancel_delayed_work_sync(&host->detect);
2430
2431 if (!host->bus_ops || host->bus_ops->suspend)
2432 break;
2433
2434 mmc_claim_host(host);
2435
2436 if (host->bus_ops->remove)
2437 host->bus_ops->remove(host);
2438
2439 mmc_detach_bus(host);
Ulf Hansson7f7e4122011-09-21 14:08:13 -04002440 mmc_power_off(host);
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002441 mmc_release_host(host);
2442 host->pm_flags = 0;
2443 break;
2444
2445 case PM_POST_SUSPEND:
2446 case PM_POST_HIBERNATION:
Takashi Iwai274476f2010-12-10 08:40:31 +01002447 case PM_POST_RESTORE:
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002448
2449 spin_lock_irqsave(&host->lock, flags);
2450 host->rescan_disable = 0;
Girish K Sbec87262011-10-13 12:04:16 +05302451 host->power_notify_type = MMC_HOST_PW_NOTIFY_LONG;
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002452 spin_unlock_irqrestore(&host->lock, flags);
2453 mmc_detect_change(host, 0);
2454
2455 }
2456
2457 return 0;
2458}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459#endif
2460
Pierre Ossmanffce2e72007-05-19 14:32:22 +02002461static int __init mmc_init(void)
2462{
2463 int ret;
2464
Tejun Heo0d9ee5b2010-12-24 16:00:17 +01002465 workqueue = alloc_ordered_workqueue("kmmcd", 0);
Pierre Ossmanffce2e72007-05-19 14:32:22 +02002466 if (!workqueue)
2467 return -ENOMEM;
2468
2469 ret = mmc_register_bus();
Pierre Ossmane29a7d72007-05-26 13:48:18 +02002470 if (ret)
2471 goto destroy_workqueue;
2472
2473 ret = mmc_register_host_class();
2474 if (ret)
2475 goto unregister_bus;
2476
2477 ret = sdio_register_bus();
2478 if (ret)
2479 goto unregister_host_class;
2480
2481 return 0;
2482
2483unregister_host_class:
2484 mmc_unregister_host_class();
2485unregister_bus:
2486 mmc_unregister_bus();
2487destroy_workqueue:
2488 destroy_workqueue(workqueue);
2489
Pierre Ossmanffce2e72007-05-19 14:32:22 +02002490 return ret;
2491}
2492
2493static void __exit mmc_exit(void)
2494{
Pierre Ossmane29a7d72007-05-26 13:48:18 +02002495 sdio_unregister_bus();
Pierre Ossmanffce2e72007-05-19 14:32:22 +02002496 mmc_unregister_host_class();
2497 mmc_unregister_bus();
2498 destroy_workqueue(workqueue);
2499}
2500
Nicolas Pitre26074962007-06-16 02:07:53 -04002501subsys_initcall(mmc_init);
Pierre Ossmanffce2e72007-05-19 14:32:22 +02002502module_exit(mmc_exit);
2503
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504MODULE_LICENSE("GPL");