blob: 18661554e79cdc954bb9dd641852394dc341f95d [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 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103051bool use_spi_crc = 1;
David Brownellaf517152007-08-08 09:11:32 -070052module_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
Rusty Russell90ab5ee2012-01-13 09:32:20 +103061bool mmc_assume_removable;
Ben Hutchingsbd68e082009-12-14 18:01:29 -080062#else
Rusty Russell90ab5ee2012-01-13 09:32:20 +103063bool mmc_assume_removable = 1;
Ben Hutchingsbd68e082009-12-14 18:01:29 -080064#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
Adrian Hunterd3049502011-11-28 16:22:00 +0200143 if (err && cmd->retries && !mmc_card_removed(host->card)) {
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;
Adrian Hunterd3049502011-11-28 16:22:00 +0200250 if (mmc_card_removed(host->card)) {
251 mrq->cmd->error = -ENOMEDIUM;
252 complete(&mrq->completion);
253 return;
254 }
Per Forlinaa8b6832011-07-01 18:55:22 +0200255 mmc_start_request(host, mrq);
256}
257
258static void mmc_wait_for_req_done(struct mmc_host *host,
259 struct mmc_request *mrq)
260{
Adrian Hunter08a7e1d2011-10-03 15:33:33 +0300261 struct mmc_command *cmd;
262
263 while (1) {
264 wait_for_completion(&mrq->completion);
265
266 cmd = mrq->cmd;
Adrian Hunterd3049502011-11-28 16:22:00 +0200267 if (!cmd->error || !cmd->retries ||
268 mmc_card_removed(host->card))
Adrian Hunter08a7e1d2011-10-03 15:33:33 +0300269 break;
270
271 pr_debug("%s: req failed (CMD%u): %d, retrying...\n",
272 mmc_hostname(host), cmd->opcode, cmd->error);
273 cmd->retries--;
274 cmd->error = 0;
275 host->ops->request(host, mrq);
276 }
Per Forlinaa8b6832011-07-01 18:55:22 +0200277}
278
279/**
280 * mmc_pre_req - Prepare for a new request
281 * @host: MMC host to prepare command
282 * @mrq: MMC request to prepare for
283 * @is_first_req: true if there is no previous started request
284 * that may run in parellel to this call, otherwise false
285 *
286 * mmc_pre_req() is called in prior to mmc_start_req() to let
287 * host prepare for the new request. Preparation of a request may be
288 * performed while another request is running on the host.
289 */
290static void mmc_pre_req(struct mmc_host *host, struct mmc_request *mrq,
291 bool is_first_req)
292{
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500293 if (host->ops->pre_req) {
294 mmc_host_clk_hold(host);
Per Forlinaa8b6832011-07-01 18:55:22 +0200295 host->ops->pre_req(host, mrq, is_first_req);
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500296 mmc_host_clk_release(host);
297 }
Per Forlinaa8b6832011-07-01 18:55:22 +0200298}
299
300/**
301 * mmc_post_req - Post process a completed request
302 * @host: MMC host to post process command
303 * @mrq: MMC request to post process for
304 * @err: Error, if non zero, clean up any resources made in pre_req
305 *
306 * Let the host post process a completed request. Post processing of
307 * a request may be performed while another reuqest is running.
308 */
309static void mmc_post_req(struct mmc_host *host, struct mmc_request *mrq,
310 int err)
311{
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500312 if (host->ops->post_req) {
313 mmc_host_clk_hold(host);
Per Forlinaa8b6832011-07-01 18:55:22 +0200314 host->ops->post_req(host, mrq, err);
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500315 mmc_host_clk_release(host);
316 }
Per Forlinaa8b6832011-07-01 18:55:22 +0200317}
318
319/**
320 * mmc_start_req - start a non-blocking request
321 * @host: MMC host to start command
322 * @areq: async request to start
323 * @error: out parameter returns 0 for success, otherwise non zero
324 *
325 * Start a new MMC custom command request for a host.
326 * If there is on ongoing async request wait for completion
327 * of that request and start the new one and return.
328 * Does not wait for the new request to complete.
329 *
330 * Returns the completed request, NULL in case of none completed.
331 * Wait for the an ongoing request (previoulsy started) to complete and
332 * return the completed request. If there is no ongoing request, NULL
333 * is returned without waiting. NULL is not an error condition.
334 */
335struct mmc_async_req *mmc_start_req(struct mmc_host *host,
336 struct mmc_async_req *areq, int *error)
337{
338 int err = 0;
339 struct mmc_async_req *data = host->areq;
340
341 /* Prepare a new request */
342 if (areq)
343 mmc_pre_req(host, areq->mrq, !host->areq);
344
345 if (host->areq) {
346 mmc_wait_for_req_done(host, host->areq->mrq);
347 err = host->areq->err_check(host->card, host->areq);
348 if (err) {
Per Forlin7c8a2822011-08-29 15:35:58 +0200349 /* post process the completed failed request */
Per Forlinaa8b6832011-07-01 18:55:22 +0200350 mmc_post_req(host, host->areq->mrq, 0);
351 if (areq)
Per Forlin7c8a2822011-08-29 15:35:58 +0200352 /*
353 * Cancel the new prepared request, because
354 * it can't run until the failed
355 * request has been properly handled.
356 */
Per Forlinaa8b6832011-07-01 18:55:22 +0200357 mmc_post_req(host, areq->mrq, -EINVAL);
358
359 host->areq = NULL;
360 goto out;
361 }
362 }
363
364 if (areq)
365 __mmc_start_req(host, areq->mrq);
366
367 if (host->areq)
368 mmc_post_req(host, host->areq->mrq, 0);
369
370 host->areq = areq;
371 out:
372 if (error)
373 *error = err;
374 return data;
375}
376EXPORT_SYMBOL(mmc_start_req);
377
Pierre Ossman67a61c42007-07-11 20:22:11 +0200378/**
379 * mmc_wait_for_req - start a request and wait for completion
380 * @host: MMC host to start command
381 * @mrq: MMC request to start
382 *
383 * Start a new MMC custom command request for a host, and wait
384 * for the command to complete. Does not attempt to parse the
385 * response.
386 */
387void mmc_wait_for_req(struct mmc_host *host, struct mmc_request *mrq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Per Forlinaa8b6832011-07-01 18:55:22 +0200389 __mmc_start_req(host, mrq);
390 mmc_wait_for_req_done(host, mrq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392EXPORT_SYMBOL(mmc_wait_for_req);
393
394/**
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -0400395 * mmc_interrupt_hpi - Issue for High priority Interrupt
396 * @card: the MMC card associated with the HPI transfer
397 *
398 * Issued High Priority Interrupt, and check for card status
399 * util out-of prg-state.
400 */
401int mmc_interrupt_hpi(struct mmc_card *card)
402{
403 int err;
404 u32 status;
405
406 BUG_ON(!card);
407
408 if (!card->ext_csd.hpi_en) {
409 pr_info("%s: HPI enable bit unset\n", mmc_hostname(card->host));
410 return 1;
411 }
412
413 mmc_claim_host(card->host);
414 err = mmc_send_status(card, &status);
415 if (err) {
416 pr_err("%s: Get card status fail\n", mmc_hostname(card->host));
417 goto out;
418 }
419
420 /*
421 * If the card status is in PRG-state, we can send the HPI command.
422 */
423 if (R1_CURRENT_STATE(status) == R1_STATE_PRG) {
424 do {
425 /*
426 * We don't know when the HPI command will finish
427 * processing, so we need to resend HPI until out
428 * of prg-state, and keep checking the card status
429 * with SEND_STATUS. If a timeout error occurs when
430 * sending the HPI command, we are already out of
431 * prg-state.
432 */
433 err = mmc_send_hpi_cmd(card, &status);
434 if (err)
435 pr_debug("%s: abort HPI (%d error)\n",
436 mmc_hostname(card->host), err);
437
438 err = mmc_send_status(card, &status);
439 if (err)
440 break;
441 } while (R1_CURRENT_STATE(status) == R1_STATE_PRG);
442 } else
443 pr_debug("%s: Left prg-state\n", mmc_hostname(card->host));
444
445out:
446 mmc_release_host(card->host);
447 return err;
448}
449EXPORT_SYMBOL(mmc_interrupt_hpi);
450
451/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 * mmc_wait_for_cmd - start a command and wait for completion
453 * @host: MMC host to start command
454 * @cmd: MMC command to start
455 * @retries: maximum number of retries
456 *
457 * Start a new MMC command for a host, and wait for the command
458 * to complete. Return any error that occurred while the command
459 * was executing. Do not attempt to parse the response.
460 */
461int mmc_wait_for_cmd(struct mmc_host *host, struct mmc_command *cmd, int retries)
462{
Venkatraman Sad5fd972011-08-25 00:30:50 +0530463 struct mmc_request mrq = {NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Pierre Ossmand84075c82007-08-09 13:23:56 +0200465 WARN_ON(!host->claimed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 memset(cmd->resp, 0, sizeof(cmd->resp));
468 cmd->retries = retries;
469
470 mrq.cmd = cmd;
471 cmd->data = NULL;
472
473 mmc_wait_for_req(host, &mrq);
474
475 return cmd->error;
476}
477
478EXPORT_SYMBOL(mmc_wait_for_cmd);
479
Pierre Ossman335eadf2005-09-06 15:18:50 -0700480/**
Russell Kingd773d722006-09-07 15:57:12 +0100481 * mmc_set_data_timeout - set the timeout for a data command
482 * @data: data phase for command
483 * @card: the MMC card associated with the data transfer
Pierre Ossman67a61c42007-07-11 20:22:11 +0200484 *
485 * Computes the data timeout parameters according to the
486 * correct algorithm given the card type.
Russell Kingd773d722006-09-07 15:57:12 +0100487 */
Pierre Ossmanb146d262007-07-24 19:16:54 +0200488void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
Russell Kingd773d722006-09-07 15:57:12 +0100489{
490 unsigned int mult;
491
492 /*
Pierre Ossmane6f918b2007-08-07 14:11:55 +0200493 * SDIO cards only define an upper 1 s limit on access.
494 */
495 if (mmc_card_sdio(card)) {
496 data->timeout_ns = 1000000000;
497 data->timeout_clks = 0;
498 return;
499 }
500
501 /*
Russell Kingd773d722006-09-07 15:57:12 +0100502 * SD cards use a 100 multiplier rather than 10
503 */
504 mult = mmc_card_sd(card) ? 100 : 10;
505
506 /*
507 * Scale up the multiplier (and therefore the timeout) by
508 * the r2w factor for writes.
509 */
Pierre Ossmanb146d262007-07-24 19:16:54 +0200510 if (data->flags & MMC_DATA_WRITE)
Russell Kingd773d722006-09-07 15:57:12 +0100511 mult <<= card->csd.r2w_factor;
512
513 data->timeout_ns = card->csd.tacc_ns * mult;
514 data->timeout_clks = card->csd.tacc_clks * mult;
515
516 /*
517 * SD cards also have an upper limit on the timeout.
518 */
519 if (mmc_card_sd(card)) {
520 unsigned int timeout_us, limit_us;
521
522 timeout_us = data->timeout_ns / 1000;
Linus Walleije9b86842011-01-05 00:44:32 +0100523 if (mmc_host_clk_rate(card->host))
524 timeout_us += data->timeout_clks * 1000 /
525 (mmc_host_clk_rate(card->host) / 1000);
Russell Kingd773d722006-09-07 15:57:12 +0100526
Pierre Ossmanb146d262007-07-24 19:16:54 +0200527 if (data->flags & MMC_DATA_WRITE)
Pierre Ossman493890e2008-10-26 12:37:25 +0100528 /*
529 * The limit is really 250 ms, but that is
530 * insufficient for some crappy cards.
531 */
532 limit_us = 300000;
Russell Kingd773d722006-09-07 15:57:12 +0100533 else
534 limit_us = 100000;
535
Philip Langdalefba68bd2007-01-04 06:57:32 -0800536 /*
537 * SDHC cards always use these fixed values.
538 */
539 if (timeout_us > limit_us || mmc_card_blockaddr(card)) {
Russell Kingd773d722006-09-07 15:57:12 +0100540 data->timeout_ns = limit_us * 1000;
541 data->timeout_clks = 0;
542 }
543 }
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +0100544
545 /*
546 * Some cards require longer data read timeout than indicated in CSD.
547 * Address this by setting the read timeout to a "reasonably high"
548 * value. For the cards tested, 300ms has proven enough. If necessary,
549 * this value can be increased if other problematic cards require this.
550 */
551 if (mmc_card_long_read_time(card) && data->flags & MMC_DATA_READ) {
552 data->timeout_ns = 300000000;
553 data->timeout_clks = 0;
554 }
555
Wolfgang Mueesc0c88872009-03-11 14:28:39 +0100556 /*
557 * Some cards need very high timeouts if driven in SPI mode.
558 * The worst observed timeout was 900ms after writing a
559 * continuous stream of data until the internal logic
560 * overflowed.
561 */
562 if (mmc_host_is_spi(card->host)) {
563 if (data->flags & MMC_DATA_WRITE) {
564 if (data->timeout_ns < 1000000000)
565 data->timeout_ns = 1000000000; /* 1s */
566 } else {
567 if (data->timeout_ns < 100000000)
568 data->timeout_ns = 100000000; /* 100ms */
569 }
570 }
Russell Kingd773d722006-09-07 15:57:12 +0100571}
572EXPORT_SYMBOL(mmc_set_data_timeout);
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574/**
Pierre Ossmanad3868b2008-06-28 12:52:45 +0200575 * mmc_align_data_size - pads a transfer size to a more optimal value
576 * @card: the MMC card associated with the data transfer
577 * @sz: original transfer size
578 *
579 * Pads the original data size with a number of extra bytes in
580 * order to avoid controller bugs and/or performance hits
581 * (e.g. some controllers revert to PIO for certain sizes).
582 *
583 * Returns the improved size, which might be unmodified.
584 *
585 * Note that this function is only relevant when issuing a
586 * single scatter gather entry.
587 */
588unsigned int mmc_align_data_size(struct mmc_card *card, unsigned int sz)
589{
590 /*
591 * FIXME: We don't have a system for the controller to tell
592 * the core about its problems yet, so for now we just 32-bit
593 * align the size.
594 */
595 sz = ((sz + 3) / 4) * 4;
596
597 return sz;
598}
599EXPORT_SYMBOL(mmc_align_data_size);
600
601/**
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700602 * mmc_host_enable - enable a host.
603 * @host: mmc host to enable
604 *
605 * Hosts that support power saving can use the 'enable' and 'disable'
606 * methods to exit and enter power saving states. For more information
607 * see comments for struct mmc_host_ops.
608 */
609int mmc_host_enable(struct mmc_host *host)
610{
611 if (!(host->caps & MMC_CAP_DISABLE))
612 return 0;
613
614 if (host->en_dis_recurs)
615 return 0;
616
617 if (host->nesting_cnt++)
618 return 0;
619
620 cancel_delayed_work_sync(&host->disable);
621
622 if (host->enabled)
623 return 0;
624
625 if (host->ops->enable) {
626 int err;
627
628 host->en_dis_recurs = 1;
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500629 mmc_host_clk_hold(host);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700630 err = host->ops->enable(host);
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500631 mmc_host_clk_release(host);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700632 host->en_dis_recurs = 0;
633
634 if (err) {
635 pr_debug("%s: enable error %d\n",
636 mmc_hostname(host), err);
637 return err;
638 }
639 }
640 host->enabled = 1;
641 return 0;
642}
643EXPORT_SYMBOL(mmc_host_enable);
644
645static int mmc_host_do_disable(struct mmc_host *host, int lazy)
646{
647 if (host->ops->disable) {
648 int err;
649
650 host->en_dis_recurs = 1;
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500651 mmc_host_clk_hold(host);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700652 err = host->ops->disable(host, lazy);
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500653 mmc_host_clk_release(host);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700654 host->en_dis_recurs = 0;
655
656 if (err < 0) {
657 pr_debug("%s: disable error %d\n",
658 mmc_hostname(host), err);
659 return err;
660 }
661 if (err > 0) {
662 unsigned long delay = msecs_to_jiffies(err);
663
664 mmc_schedule_delayed_work(&host->disable, delay);
665 }
666 }
667 host->enabled = 0;
668 return 0;
669}
670
671/**
672 * mmc_host_disable - disable a host.
673 * @host: mmc host to disable
674 *
675 * Hosts that support power saving can use the 'enable' and 'disable'
676 * methods to exit and enter power saving states. For more information
677 * see comments for struct mmc_host_ops.
678 */
679int mmc_host_disable(struct mmc_host *host)
680{
681 int err;
682
683 if (!(host->caps & MMC_CAP_DISABLE))
684 return 0;
685
686 if (host->en_dis_recurs)
687 return 0;
688
689 if (--host->nesting_cnt)
690 return 0;
691
692 if (!host->enabled)
693 return 0;
694
695 err = mmc_host_do_disable(host, 0);
696 return err;
697}
698EXPORT_SYMBOL(mmc_host_disable);
699
700/**
Nicolas Pitre2342f332007-06-30 16:21:52 +0200701 * __mmc_claim_host - exclusively claim a host
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 * @host: mmc host to claim
Nicolas Pitre2342f332007-06-30 16:21:52 +0200703 * @abort: whether or not the operation should be aborted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 *
Nicolas Pitre2342f332007-06-30 16:21:52 +0200705 * Claim a host for a set of operations. If @abort is non null and
706 * dereference a non-zero value then this will return prematurely with
707 * that non-zero value without acquiring the lock. Returns zero
708 * with the lock held otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 */
Nicolas Pitre2342f332007-06-30 16:21:52 +0200710int __mmc_claim_host(struct mmc_host *host, atomic_t *abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
712 DECLARE_WAITQUEUE(wait, current);
713 unsigned long flags;
Nicolas Pitre2342f332007-06-30 16:21:52 +0200714 int stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Pierre Ossmancf795bf2007-07-11 20:28:02 +0200716 might_sleep();
717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 add_wait_queue(&host->wq, &wait);
719 spin_lock_irqsave(&host->lock, flags);
720 while (1) {
721 set_current_state(TASK_UNINTERRUPTIBLE);
Nicolas Pitre2342f332007-06-30 16:21:52 +0200722 stop = abort ? atomic_read(abort) : 0;
Adrian Hunter319a3f12009-09-22 16:44:30 -0700723 if (stop || !host->claimed || host->claimer == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 break;
725 spin_unlock_irqrestore(&host->lock, flags);
726 schedule();
727 spin_lock_irqsave(&host->lock, flags);
728 }
729 set_current_state(TASK_RUNNING);
Adrian Hunter319a3f12009-09-22 16:44:30 -0700730 if (!stop) {
Nicolas Pitre2342f332007-06-30 16:21:52 +0200731 host->claimed = 1;
Adrian Hunter319a3f12009-09-22 16:44:30 -0700732 host->claimer = current;
733 host->claim_cnt += 1;
734 } else
Nicolas Pitre2342f332007-06-30 16:21:52 +0200735 wake_up(&host->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 spin_unlock_irqrestore(&host->lock, flags);
737 remove_wait_queue(&host->wq, &wait);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700738 if (!stop)
739 mmc_host_enable(host);
Nicolas Pitre2342f332007-06-30 16:21:52 +0200740 return stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
Nicolas Pitre2342f332007-06-30 16:21:52 +0200743EXPORT_SYMBOL(__mmc_claim_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Adrian Hunter319a3f12009-09-22 16:44:30 -0700745/**
746 * mmc_try_claim_host - try exclusively to claim a host
747 * @host: mmc host to claim
748 *
749 * Returns %1 if the host is claimed, %0 otherwise.
750 */
751int mmc_try_claim_host(struct mmc_host *host)
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700752{
753 int claimed_host = 0;
754 unsigned long flags;
755
756 spin_lock_irqsave(&host->lock, flags);
Adrian Hunter319a3f12009-09-22 16:44:30 -0700757 if (!host->claimed || host->claimer == current) {
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700758 host->claimed = 1;
Adrian Hunter319a3f12009-09-22 16:44:30 -0700759 host->claimer = current;
760 host->claim_cnt += 1;
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700761 claimed_host = 1;
762 }
763 spin_unlock_irqrestore(&host->lock, flags);
764 return claimed_host;
765}
Adrian Hunter319a3f12009-09-22 16:44:30 -0700766EXPORT_SYMBOL(mmc_try_claim_host);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700767
Ulf Hanssonab1efd22011-03-09 09:11:02 +0100768/**
769 * mmc_do_release_host - release a claimed host
770 * @host: mmc host to release
771 *
772 * If you successfully claimed a host, this function will
773 * release it again.
774 */
775void mmc_do_release_host(struct mmc_host *host)
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700776{
777 unsigned long flags;
778
779 spin_lock_irqsave(&host->lock, flags);
Adrian Hunter319a3f12009-09-22 16:44:30 -0700780 if (--host->claim_cnt) {
781 /* Release for nested claim */
782 spin_unlock_irqrestore(&host->lock, flags);
783 } else {
784 host->claimed = 0;
785 host->claimer = NULL;
786 spin_unlock_irqrestore(&host->lock, flags);
787 wake_up(&host->wq);
788 }
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700789}
Ulf Hanssonab1efd22011-03-09 09:11:02 +0100790EXPORT_SYMBOL(mmc_do_release_host);
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700791
792void mmc_host_deeper_disable(struct work_struct *work)
793{
794 struct mmc_host *host =
795 container_of(work, struct mmc_host, disable.work);
796
797 /* If the host is claimed then we do not want to disable it anymore */
798 if (!mmc_try_claim_host(host))
799 return;
800 mmc_host_do_disable(host, 1);
801 mmc_do_release_host(host);
802}
803
804/**
805 * mmc_host_lazy_disable - lazily disable a host.
806 * @host: mmc host to disable
807 *
808 * Hosts that support power saving can use the 'enable' and 'disable'
809 * methods to exit and enter power saving states. For more information
810 * see comments for struct mmc_host_ops.
811 */
812int mmc_host_lazy_disable(struct mmc_host *host)
813{
814 if (!(host->caps & MMC_CAP_DISABLE))
815 return 0;
816
817 if (host->en_dis_recurs)
818 return 0;
819
820 if (--host->nesting_cnt)
821 return 0;
822
823 if (!host->enabled)
824 return 0;
825
826 if (host->disable_delay) {
827 mmc_schedule_delayed_work(&host->disable,
828 msecs_to_jiffies(host->disable_delay));
829 return 0;
830 } else
831 return mmc_host_do_disable(host, 1);
832}
833EXPORT_SYMBOL(mmc_host_lazy_disable);
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835/**
836 * mmc_release_host - release a host
837 * @host: mmc host to release
838 *
839 * Release a MMC host, allowing others to claim the host
840 * for their operations.
841 */
842void mmc_release_host(struct mmc_host *host)
843{
Pierre Ossmand84075c82007-08-09 13:23:56 +0200844 WARN_ON(!host->claimed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700846 mmc_host_lazy_disable(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Adrian Hunter8ea926b2009-09-22 16:44:29 -0700848 mmc_do_release_host(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849}
850
851EXPORT_SYMBOL(mmc_release_host);
852
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100853/*
854 * Internal function that does the actual ios call to the host driver,
855 * optionally printing some debug output.
856 */
Russell King920e70c2006-05-04 18:22:51 +0100857static inline void mmc_set_ios(struct mmc_host *host)
858{
859 struct mmc_ios *ios = &host->ios;
860
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100861 pr_debug("%s: clock %uHz busmode %u powermode %u cs %u Vdd %u "
862 "width %u timing %u\n",
Russell King920e70c2006-05-04 18:22:51 +0100863 mmc_hostname(host), ios->clock, ios->bus_mode,
864 ios->power_mode, ios->chip_select, ios->vdd,
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100865 ios->bus_width, ios->timing);
Philip Langdalefba68bd2007-01-04 06:57:32 -0800866
Linus Walleij04566832010-11-08 21:36:50 -0500867 if (ios->clock > 0)
868 mmc_set_ungated(host);
Russell King920e70c2006-05-04 18:22:51 +0100869 host->ops->set_ios(host, ios);
870}
871
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100872/*
873 * Control chip select pin on a host.
874 */
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100875void mmc_set_chip_select(struct mmc_host *host, int mode)
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700876{
Mika Westerberg778e2772011-08-18 15:23:48 +0300877 mmc_host_clk_hold(host);
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100878 host->ios.chip_select = mode;
879 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +0300880 mmc_host_clk_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
883/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100884 * Sets the host clock to the highest possible frequency that
885 * is below "hz".
886 */
Mika Westerberg778e2772011-08-18 15:23:48 +0300887static void __mmc_set_clock(struct mmc_host *host, unsigned int hz)
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100888{
889 WARN_ON(hz < host->f_min);
890
891 if (hz > host->f_max)
892 hz = host->f_max;
893
894 host->ios.clock = hz;
895 mmc_set_ios(host);
896}
897
Mika Westerberg778e2772011-08-18 15:23:48 +0300898void mmc_set_clock(struct mmc_host *host, unsigned int hz)
899{
900 mmc_host_clk_hold(host);
901 __mmc_set_clock(host, hz);
902 mmc_host_clk_release(host);
903}
904
Linus Walleij04566832010-11-08 21:36:50 -0500905#ifdef CONFIG_MMC_CLKGATE
906/*
907 * This gates the clock by setting it to 0 Hz.
908 */
909void mmc_gate_clock(struct mmc_host *host)
910{
911 unsigned long flags;
912
913 spin_lock_irqsave(&host->clk_lock, flags);
914 host->clk_old = host->ios.clock;
915 host->ios.clock = 0;
916 host->clk_gated = true;
917 spin_unlock_irqrestore(&host->clk_lock, flags);
918 mmc_set_ios(host);
919}
920
921/*
922 * This restores the clock from gating by using the cached
923 * clock value.
924 */
925void mmc_ungate_clock(struct mmc_host *host)
926{
927 /*
928 * We should previously have gated the clock, so the clock shall
929 * be 0 here! The clock may however be 0 during initialization,
930 * when some request operations are performed before setting
931 * the frequency. When ungate is requested in that situation
932 * we just ignore the call.
933 */
934 if (host->clk_old) {
935 BUG_ON(host->ios.clock);
936 /* This call will also set host->clk_gated to false */
Mika Westerberg778e2772011-08-18 15:23:48 +0300937 __mmc_set_clock(host, host->clk_old);
Linus Walleij04566832010-11-08 21:36:50 -0500938 }
939}
940
941void mmc_set_ungated(struct mmc_host *host)
942{
943 unsigned long flags;
944
945 /*
946 * We've been given a new frequency while the clock is gated,
947 * so make sure we regard this as ungating it.
948 */
949 spin_lock_irqsave(&host->clk_lock, flags);
950 host->clk_gated = false;
951 spin_unlock_irqrestore(&host->clk_lock, flags);
952}
953
954#else
955void mmc_set_ungated(struct mmc_host *host)
956{
957}
958#endif
959
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100960/*
961 * Change the bus mode (open drain/push-pull) of a host.
962 */
963void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode)
964{
Mika Westerberg778e2772011-08-18 15:23:48 +0300965 mmc_host_clk_hold(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100966 host->ios.bus_mode = mode;
967 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +0300968 mmc_host_clk_release(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100969}
970
971/*
972 * Change data bus width of a host.
973 */
974void mmc_set_bus_width(struct mmc_host *host, unsigned int width)
975{
Mika Westerberg778e2772011-08-18 15:23:48 +0300976 mmc_host_clk_hold(host);
Philip Rakity4c4cb172011-05-13 11:17:18 +0530977 host->ios.bus_width = width;
978 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +0300979 mmc_host_clk_release(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100980}
981
Anton Vorontsov86e82862008-11-26 22:54:17 +0300982/**
983 * mmc_vdd_to_ocrbitnum - Convert a voltage to the OCR bit number
984 * @vdd: voltage (mV)
985 * @low_bits: prefer low bits in boundary cases
986 *
987 * This function returns the OCR bit number according to the provided @vdd
988 * value. If conversion is not possible a negative errno value returned.
989 *
990 * Depending on the @low_bits flag the function prefers low or high OCR bits
991 * on boundary voltages. For example,
992 * with @low_bits = true, 3300 mV translates to ilog2(MMC_VDD_32_33);
993 * with @low_bits = false, 3300 mV translates to ilog2(MMC_VDD_33_34);
994 *
995 * Any value in the [1951:1999] range translates to the ilog2(MMC_VDD_20_21).
996 */
997static int mmc_vdd_to_ocrbitnum(int vdd, bool low_bits)
998{
999 const int max_bit = ilog2(MMC_VDD_35_36);
1000 int bit;
1001
1002 if (vdd < 1650 || vdd > 3600)
1003 return -EINVAL;
1004
1005 if (vdd >= 1650 && vdd <= 1950)
1006 return ilog2(MMC_VDD_165_195);
1007
1008 if (low_bits)
1009 vdd -= 1;
1010
1011 /* Base 2000 mV, step 100 mV, bit's base 8. */
1012 bit = (vdd - 2000) / 100 + 8;
1013 if (bit > max_bit)
1014 return max_bit;
1015 return bit;
1016}
1017
1018/**
1019 * mmc_vddrange_to_ocrmask - Convert a voltage range to the OCR mask
1020 * @vdd_min: minimum voltage value (mV)
1021 * @vdd_max: maximum voltage value (mV)
1022 *
1023 * This function returns the OCR mask bits according to the provided @vdd_min
1024 * and @vdd_max values. If conversion is not possible the function returns 0.
1025 *
1026 * Notes wrt boundary cases:
1027 * This function sets the OCR bits for all boundary voltages, for example
1028 * [3300:3400] range is translated to MMC_VDD_32_33 | MMC_VDD_33_34 |
1029 * MMC_VDD_34_35 mask.
1030 */
1031u32 mmc_vddrange_to_ocrmask(int vdd_min, int vdd_max)
1032{
1033 u32 mask = 0;
1034
1035 if (vdd_max < vdd_min)
1036 return 0;
1037
1038 /* Prefer high bits for the boundary vdd_max values. */
1039 vdd_max = mmc_vdd_to_ocrbitnum(vdd_max, false);
1040 if (vdd_max < 0)
1041 return 0;
1042
1043 /* Prefer low bits for the boundary vdd_min values. */
1044 vdd_min = mmc_vdd_to_ocrbitnum(vdd_min, true);
1045 if (vdd_min < 0)
1046 return 0;
1047
1048 /* Fill the mask, from max bit to min bit. */
1049 while (vdd_max >= vdd_min)
1050 mask |= 1 << vdd_max--;
1051
1052 return mask;
1053}
1054EXPORT_SYMBOL(mmc_vddrange_to_ocrmask);
1055
David Brownell5c139412009-03-11 03:30:43 -08001056#ifdef CONFIG_REGULATOR
1057
1058/**
1059 * mmc_regulator_get_ocrmask - return mask of supported voltages
1060 * @supply: regulator to use
1061 *
1062 * This returns either a negative errno, or a mask of voltages that
1063 * can be provided to MMC/SD/SDIO devices using the specified voltage
1064 * regulator. This would normally be called before registering the
1065 * MMC host adapter.
1066 */
1067int mmc_regulator_get_ocrmask(struct regulator *supply)
1068{
1069 int result = 0;
1070 int count;
1071 int i;
1072
1073 count = regulator_count_voltages(supply);
1074 if (count < 0)
1075 return count;
1076
1077 for (i = 0; i < count; i++) {
1078 int vdd_uV;
1079 int vdd_mV;
1080
1081 vdd_uV = regulator_list_voltage(supply, i);
1082 if (vdd_uV <= 0)
1083 continue;
1084
1085 vdd_mV = vdd_uV / 1000;
1086 result |= mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
1087 }
1088
1089 return result;
1090}
1091EXPORT_SYMBOL(mmc_regulator_get_ocrmask);
1092
1093/**
1094 * mmc_regulator_set_ocr - set regulator to match host->ios voltage
Linus Walleij99fc5132010-09-29 01:08:27 -04001095 * @mmc: the host to regulate
David Brownell5c139412009-03-11 03:30:43 -08001096 * @supply: regulator to use
Linus Walleij99fc5132010-09-29 01:08:27 -04001097 * @vdd_bit: zero for power off, else a bit number (host->ios.vdd)
David Brownell5c139412009-03-11 03:30:43 -08001098 *
1099 * Returns zero on success, else negative errno.
1100 *
1101 * MMC host drivers may use this to enable or disable a regulator using
1102 * a particular supply voltage. This would normally be called from the
1103 * set_ios() method.
1104 */
Linus Walleij99fc5132010-09-29 01:08:27 -04001105int mmc_regulator_set_ocr(struct mmc_host *mmc,
1106 struct regulator *supply,
1107 unsigned short vdd_bit)
David Brownell5c139412009-03-11 03:30:43 -08001108{
1109 int result = 0;
1110 int min_uV, max_uV;
David Brownell5c139412009-03-11 03:30:43 -08001111
1112 if (vdd_bit) {
1113 int tmp;
1114 int voltage;
1115
1116 /* REVISIT mmc_vddrange_to_ocrmask() may have set some
1117 * bits this regulator doesn't quite support ... don't
1118 * be too picky, most cards and regulators are OK with
1119 * a 0.1V range goof (it's a small error percentage).
1120 */
1121 tmp = vdd_bit - ilog2(MMC_VDD_165_195);
1122 if (tmp == 0) {
1123 min_uV = 1650 * 1000;
1124 max_uV = 1950 * 1000;
1125 } else {
1126 min_uV = 1900 * 1000 + tmp * 100 * 1000;
1127 max_uV = min_uV + 100 * 1000;
1128 }
1129
1130 /* avoid needless changes to this voltage; the regulator
1131 * might not allow this operation
1132 */
1133 voltage = regulator_get_voltage(supply);
Jaehoon Chung6e8201f2012-01-16 17:49:01 +09001134
1135 if (mmc->caps2 & MMC_CAP2_BROKEN_VOLTAGE)
1136 min_uV = max_uV = voltage;
1137
David Brownell5c139412009-03-11 03:30:43 -08001138 if (voltage < 0)
1139 result = voltage;
1140 else if (voltage < min_uV || voltage > max_uV)
1141 result = regulator_set_voltage(supply, min_uV, max_uV);
1142 else
1143 result = 0;
1144
Linus Walleij99fc5132010-09-29 01:08:27 -04001145 if (result == 0 && !mmc->regulator_enabled) {
David Brownell5c139412009-03-11 03:30:43 -08001146 result = regulator_enable(supply);
Linus Walleij99fc5132010-09-29 01:08:27 -04001147 if (!result)
1148 mmc->regulator_enabled = true;
1149 }
1150 } else if (mmc->regulator_enabled) {
David Brownell5c139412009-03-11 03:30:43 -08001151 result = regulator_disable(supply);
Linus Walleij99fc5132010-09-29 01:08:27 -04001152 if (result == 0)
1153 mmc->regulator_enabled = false;
David Brownell5c139412009-03-11 03:30:43 -08001154 }
1155
Linus Walleij99fc5132010-09-29 01:08:27 -04001156 if (result)
1157 dev_err(mmc_dev(mmc),
1158 "could not set regulator OCR (%d)\n", result);
David Brownell5c139412009-03-11 03:30:43 -08001159 return result;
1160}
1161EXPORT_SYMBOL(mmc_regulator_set_ocr);
1162
Linus Walleij99fc5132010-09-29 01:08:27 -04001163#endif /* CONFIG_REGULATOR */
David Brownell5c139412009-03-11 03:30:43 -08001164
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001165/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 * Mask off any voltages we don't support and select
1167 * the lowest voltage
1168 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001169u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170{
1171 int bit;
1172
1173 ocr &= host->ocr_avail;
1174
1175 bit = ffs(ocr);
1176 if (bit) {
1177 bit -= 1;
1178
Timo Teras63ef7312006-11-02 19:43:27 +01001179 ocr &= 3 << bit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Mika Westerberg778e2772011-08-18 15:23:48 +03001181 mmc_host_clk_hold(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 host->ios.vdd = bit;
Russell King920e70c2006-05-04 18:22:51 +01001183 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +03001184 mmc_host_clk_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 } else {
David Brownellf6e10b82008-12-31 09:50:30 -08001186 pr_warning("%s: host doesn't support card's voltages\n",
1187 mmc_hostname(host));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 ocr = 0;
1189 }
1190
1191 return ocr;
1192}
1193
Philip Rakity261bbd42011-05-13 11:17:17 +05301194int mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage, bool cmd11)
Arindam Nathf2119df2011-05-05 12:18:57 +05301195{
1196 struct mmc_command cmd = {0};
1197 int err = 0;
1198
1199 BUG_ON(!host);
1200
1201 /*
1202 * Send CMD11 only if the request is to switch the card to
1203 * 1.8V signalling.
1204 */
Philip Rakity261bbd42011-05-13 11:17:17 +05301205 if ((signal_voltage != MMC_SIGNAL_VOLTAGE_330) && cmd11) {
Arindam Nathf2119df2011-05-05 12:18:57 +05301206 cmd.opcode = SD_SWITCH_VOLTAGE;
1207 cmd.arg = 0;
1208 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1209
1210 err = mmc_wait_for_cmd(host, &cmd, 0);
1211 if (err)
1212 return err;
1213
1214 if (!mmc_host_is_spi(host) && (cmd.resp[0] & R1_ERROR))
1215 return -EIO;
1216 }
1217
1218 host->ios.signal_voltage = signal_voltage;
1219
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -05001220 if (host->ops->start_signal_voltage_switch) {
1221 mmc_host_clk_hold(host);
Arindam Nathf2119df2011-05-05 12:18:57 +05301222 err = host->ops->start_signal_voltage_switch(host, &host->ios);
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -05001223 mmc_host_clk_release(host);
1224 }
Arindam Nathf2119df2011-05-05 12:18:57 +05301225
1226 return err;
1227}
1228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001230 * Select timing parameters for host.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001232void mmc_set_timing(struct mmc_host *host, unsigned int timing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
Mika Westerberg778e2772011-08-18 15:23:48 +03001234 mmc_host_clk_hold(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001235 host->ios.timing = timing;
1236 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +03001237 mmc_host_clk_release(host);
Pierre Ossmanb57c43a2005-09-06 15:18:53 -07001238}
1239
1240/*
Arindam Nathd6d50a12011-05-05 12:18:59 +05301241 * Select appropriate driver type for host.
1242 */
1243void mmc_set_driver_type(struct mmc_host *host, unsigned int drv_type)
1244{
Mika Westerberg778e2772011-08-18 15:23:48 +03001245 mmc_host_clk_hold(host);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301246 host->ios.drv_type = drv_type;
1247 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +03001248 mmc_host_clk_release(host);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301249}
1250
Girish K Sa80f1622011-11-15 11:55:46 +05301251static void mmc_poweroff_notify(struct mmc_host *host)
1252{
1253 struct mmc_card *card;
1254 unsigned int timeout;
1255 unsigned int notify_type = EXT_CSD_NO_POWER_NOTIFICATION;
1256 int err = 0;
1257
1258 card = host->card;
1259
1260 /*
1261 * Send power notify command only if card
1262 * is mmc and notify state is powered ON
1263 */
1264 if (card && mmc_card_mmc(card) &&
1265 (card->poweroff_notify_state == MMC_POWERED_ON)) {
1266
1267 if (host->power_notify_type == MMC_HOST_PW_NOTIFY_SHORT) {
1268 notify_type = EXT_CSD_POWER_OFF_SHORT;
1269 timeout = card->ext_csd.generic_cmd6_time;
1270 card->poweroff_notify_state = MMC_POWEROFF_SHORT;
1271 } else {
1272 notify_type = EXT_CSD_POWER_OFF_LONG;
1273 timeout = card->ext_csd.power_off_longtime;
1274 card->poweroff_notify_state = MMC_POWEROFF_LONG;
1275 }
1276
1277 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1278 EXT_CSD_POWER_OFF_NOTIFICATION,
1279 notify_type, timeout);
1280
1281 if (err && err != -EBADMSG)
1282 pr_err("Device failed to respond within %d poweroff "
1283 "time. Forcefully powering down the device\n",
1284 timeout);
1285
1286 /* Set the card state to no notification after the poweroff */
1287 card->poweroff_notify_state = MMC_NO_POWER_NOTIFICATION;
1288 }
1289}
1290
Arindam Nathd6d50a12011-05-05 12:18:59 +05301291/*
Russell King45f82452005-12-14 14:57:35 +00001292 * Apply power to the MMC stack. This is a two-stage process.
1293 * First, we enable power to the card without the clock running.
1294 * We then wait a bit for the power to stabilise. Finally,
1295 * enable the bus drivers and clock to the card.
1296 *
1297 * We must _NOT_ enable the clock prior to power stablising.
1298 *
1299 * If a host does all the power sequencing itself, ignore the
1300 * initial MMC_POWER_UP stage.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 */
1302static void mmc_power_up(struct mmc_host *host)
1303{
Balaji Rao500f3562009-09-22 16:44:18 -07001304 int bit;
1305
Mika Westerberg778e2772011-08-18 15:23:48 +03001306 mmc_host_clk_hold(host);
1307
Balaji Rao500f3562009-09-22 16:44:18 -07001308 /* If ocr is set, we use it */
1309 if (host->ocr)
1310 bit = ffs(host->ocr) - 1;
1311 else
1312 bit = fls(host->ocr_avail) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 host->ios.vdd = bit;
Stefan Nilsson XK44669032011-09-15 17:50:38 +02001315 if (mmc_host_is_spi(host))
David Brownellaf517152007-08-08 09:11:32 -07001316 host->ios.chip_select = MMC_CS_HIGH;
Stefan Nilsson XK44669032011-09-15 17:50:38 +02001317 else
David Brownellaf517152007-08-08 09:11:32 -07001318 host->ios.chip_select = MMC_CS_DONTCARE;
Stefan Nilsson XK44669032011-09-15 17:50:38 +02001319 host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 host->ios.power_mode = MMC_POWER_UP;
Pierre Ossmanf2182782005-09-06 15:18:55 -07001321 host->ios.bus_width = MMC_BUS_WIDTH_1;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001322 host->ios.timing = MMC_TIMING_LEGACY;
Russell King920e70c2006-05-04 18:22:51 +01001323 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Pierre Ossmanf9996ae2007-09-19 18:38:50 +02001325 /*
1326 * This delay should be sufficient to allow the power supply
1327 * to reach the minimum voltage.
1328 */
José M. Fernández79bccc52009-03-10 02:21:21 +01001329 mmc_delay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Hein Tibosch88ae8b82010-09-06 09:37:19 +08001331 host->ios.clock = host->f_init;
Sascha Hauer8dfd0372009-04-09 08:32:02 +02001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 host->ios.power_mode = MMC_POWER_ON;
Russell King920e70c2006-05-04 18:22:51 +01001334 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Pierre Ossmanf9996ae2007-09-19 18:38:50 +02001336 /*
1337 * This delay must be at least 74 clock sizes, or 1 ms, or the
1338 * time required to reach a stable voltage.
1339 */
José M. Fernández79bccc52009-03-10 02:21:21 +01001340 mmc_delay(10);
Mika Westerberg778e2772011-08-18 15:23:48 +03001341
1342 mmc_host_clk_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343}
1344
Ulf Hansson7f7e4122011-09-21 14:08:13 -04001345void mmc_power_off(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
Mika Westerberg778e2772011-08-18 15:23:48 +03001347 mmc_host_clk_hold(host);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 host->ios.clock = 0;
1350 host->ios.vdd = 0;
Ulf Hanssonb33d46c2011-03-05 14:36:24 +01001351
Girish K Sa80f1622011-11-15 11:55:46 +05301352 mmc_poweroff_notify(host);
Girish K Sbec87262011-10-13 12:04:16 +05301353
Ulf Hanssonb33d46c2011-03-05 14:36:24 +01001354 /*
1355 * Reset ocr mask to be the highest possible voltage supported for
1356 * this mmc host. This value will be used at next power up.
1357 */
1358 host->ocr = 1 << (fls(host->ocr_avail) - 1);
1359
David Brownellaf517152007-08-08 09:11:32 -07001360 if (!mmc_host_is_spi(host)) {
1361 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
1362 host->ios.chip_select = MMC_CS_DONTCARE;
1363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 host->ios.power_mode = MMC_POWER_OFF;
Pierre Ossmanf2182782005-09-06 15:18:55 -07001365 host->ios.bus_width = MMC_BUS_WIDTH_1;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001366 host->ios.timing = MMC_TIMING_LEGACY;
Russell King920e70c2006-05-04 18:22:51 +01001367 mmc_set_ios(host);
Mika Westerberg778e2772011-08-18 15:23:48 +03001368
Daniel Drake041beb12011-09-07 10:22:09 +01001369 /*
1370 * Some configurations, such as the 802.11 SDIO card in the OLPC
1371 * XO-1.5, require a short delay after poweroff before the card
1372 * can be successfully turned on again.
1373 */
1374 mmc_delay(1);
1375
Mika Westerberg778e2772011-08-18 15:23:48 +03001376 mmc_host_clk_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377}
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379/*
Adrian Bunk39361852007-07-25 00:40:58 +02001380 * Cleanup when the last reference to the bus operator is dropped.
1381 */
Adrian Bunk261172f2008-04-13 21:15:47 +03001382static void __mmc_release_bus(struct mmc_host *host)
Adrian Bunk39361852007-07-25 00:40:58 +02001383{
1384 BUG_ON(!host);
1385 BUG_ON(host->bus_refs);
1386 BUG_ON(!host->bus_dead);
1387
1388 host->bus_ops = NULL;
1389}
1390
1391/*
1392 * Increase reference count of bus operator
1393 */
1394static inline void mmc_bus_get(struct mmc_host *host)
1395{
1396 unsigned long flags;
1397
1398 spin_lock_irqsave(&host->lock, flags);
1399 host->bus_refs++;
1400 spin_unlock_irqrestore(&host->lock, flags);
1401}
1402
1403/*
1404 * Decrease reference count of bus operator and free it if
1405 * it is the last reference.
1406 */
1407static inline void mmc_bus_put(struct mmc_host *host)
1408{
1409 unsigned long flags;
1410
1411 spin_lock_irqsave(&host->lock, flags);
1412 host->bus_refs--;
1413 if ((host->bus_refs == 0) && host->bus_ops)
1414 __mmc_release_bus(host);
1415 spin_unlock_irqrestore(&host->lock, flags);
1416}
1417
1418/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001419 * Assign a mmc bus handler to a host. Only one bus handler may control a
1420 * host at any given time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001422void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001424 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001426 BUG_ON(!host);
1427 BUG_ON(!ops);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001428
Pierre Ossmand84075c82007-08-09 13:23:56 +02001429 WARN_ON(!host->claimed);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001430
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001431 spin_lock_irqsave(&host->lock, flags);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001432
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001433 BUG_ON(host->bus_ops);
1434 BUG_ON(host->bus_refs);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001435
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001436 host->bus_ops = ops;
1437 host->bus_refs = 1;
1438 host->bus_dead = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001440 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441}
1442
1443/*
Ulf Hansson7f7e4122011-09-21 14:08:13 -04001444 * Remove the current bus handler from a host.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001446void mmc_detach_bus(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001448 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001450 BUG_ON(!host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Pierre Ossmand84075c82007-08-09 13:23:56 +02001452 WARN_ON(!host->claimed);
1453 WARN_ON(!host->bus_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001455 spin_lock_irqsave(&host->lock, flags);
1456
1457 host->bus_dead = 1;
1458
1459 spin_unlock_irqrestore(&host->lock, flags);
1460
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001461 mmc_bus_put(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464/**
1465 * mmc_detect_change - process change of state on a MMC socket
1466 * @host: host which changed state.
Richard Purdie8dc00332005-09-08 17:53:01 +01001467 * @delay: optional delay to wait before detection (jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 *
Pierre Ossman67a61c42007-07-11 20:22:11 +02001469 * MMC drivers should call this when they detect a card has been
1470 * inserted or removed. The MMC layer will confirm that any
1471 * present card is still functional, and initialize any newly
1472 * inserted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 */
Richard Purdie8dc00332005-09-08 17:53:01 +01001474void mmc_detect_change(struct mmc_host *host, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475{
Pierre Ossman3b91e552007-02-11 20:43:19 +01001476#ifdef CONFIG_MMC_DEBUG
Pierre Ossman1efd48b2007-05-08 22:35:17 +02001477 unsigned long flags;
Andrew Morton01f41ec2007-05-09 02:32:34 -07001478 spin_lock_irqsave(&host->lock, flags);
Pierre Ossmand84075c82007-08-09 13:23:56 +02001479 WARN_ON(host->removed);
Andrew Morton01f41ec2007-05-09 02:32:34 -07001480 spin_unlock_irqrestore(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01001481#endif
Adrian Hunterd3049502011-11-28 16:22:00 +02001482 host->detect_change = 1;
David Howellsc4028952006-11-22 14:57:56 +00001483 mmc_schedule_delayed_work(&host->detect, delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
1486EXPORT_SYMBOL(mmc_detect_change);
1487
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001488void mmc_init_erase(struct mmc_card *card)
1489{
1490 unsigned int sz;
1491
1492 if (is_power_of_2(card->erase_size))
1493 card->erase_shift = ffs(card->erase_size) - 1;
1494 else
1495 card->erase_shift = 0;
1496
1497 /*
1498 * It is possible to erase an arbitrarily large area of an SD or MMC
1499 * card. That is not desirable because it can take a long time
1500 * (minutes) potentially delaying more important I/O, and also the
1501 * timeout calculations become increasingly hugely over-estimated.
1502 * Consequently, 'pref_erase' is defined as a guide to limit erases
1503 * to that size and alignment.
1504 *
1505 * For SD cards that define Allocation Unit size, limit erases to one
1506 * Allocation Unit at a time. For MMC cards that define High Capacity
1507 * Erase Size, whether it is switched on or not, limit to that size.
1508 * Otherwise just have a stab at a good value. For modern cards it
1509 * will end up being 4MiB. Note that if the value is too small, it
1510 * can end up taking longer to erase.
1511 */
1512 if (mmc_card_sd(card) && card->ssr.au) {
1513 card->pref_erase = card->ssr.au;
1514 card->erase_shift = ffs(card->ssr.au) - 1;
1515 } else if (card->ext_csd.hc_erase_size) {
1516 card->pref_erase = card->ext_csd.hc_erase_size;
1517 } else {
1518 sz = (card->csd.capacity << (card->csd.read_blkbits - 9)) >> 11;
1519 if (sz < 128)
1520 card->pref_erase = 512 * 1024 / 512;
1521 else if (sz < 512)
1522 card->pref_erase = 1024 * 1024 / 512;
1523 else if (sz < 1024)
1524 card->pref_erase = 2 * 1024 * 1024 / 512;
1525 else
1526 card->pref_erase = 4 * 1024 * 1024 / 512;
1527 if (card->pref_erase < card->erase_size)
1528 card->pref_erase = card->erase_size;
1529 else {
1530 sz = card->pref_erase % card->erase_size;
1531 if (sz)
1532 card->pref_erase += card->erase_size - sz;
1533 }
1534 }
1535}
1536
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001537static unsigned int mmc_mmc_erase_timeout(struct mmc_card *card,
1538 unsigned int arg, unsigned int qty)
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001539{
1540 unsigned int erase_timeout;
1541
1542 if (card->ext_csd.erase_group_def & 1) {
1543 /* High Capacity Erase Group Size uses HC timeouts */
1544 if (arg == MMC_TRIM_ARG)
1545 erase_timeout = card->ext_csd.trim_timeout;
1546 else
1547 erase_timeout = card->ext_csd.hc_erase_timeout;
1548 } else {
1549 /* CSD Erase Group Size uses write timeout */
1550 unsigned int mult = (10 << card->csd.r2w_factor);
1551 unsigned int timeout_clks = card->csd.tacc_clks * mult;
1552 unsigned int timeout_us;
1553
1554 /* Avoid overflow: e.g. tacc_ns=80000000 mult=1280 */
1555 if (card->csd.tacc_ns < 1000000)
1556 timeout_us = (card->csd.tacc_ns * mult) / 1000;
1557 else
1558 timeout_us = (card->csd.tacc_ns / 1000) * mult;
1559
1560 /*
1561 * ios.clock is only a target. The real clock rate might be
1562 * less but not that much less, so fudge it by multiplying by 2.
1563 */
1564 timeout_clks <<= 1;
1565 timeout_us += (timeout_clks * 1000) /
Adrian Hunter4cf8c6d2011-06-23 13:40:27 +03001566 (mmc_host_clk_rate(card->host) / 1000);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001567
1568 erase_timeout = timeout_us / 1000;
1569
1570 /*
1571 * Theoretically, the calculation could underflow so round up
1572 * to 1ms in that case.
1573 */
1574 if (!erase_timeout)
1575 erase_timeout = 1;
1576 }
1577
1578 /* Multiplier for secure operations */
1579 if (arg & MMC_SECURE_ARGS) {
1580 if (arg == MMC_SECURE_ERASE_ARG)
1581 erase_timeout *= card->ext_csd.sec_erase_mult;
1582 else
1583 erase_timeout *= card->ext_csd.sec_trim_mult;
1584 }
1585
1586 erase_timeout *= qty;
1587
1588 /*
1589 * Ensure at least a 1 second timeout for SPI as per
1590 * 'mmc_set_data_timeout()'
1591 */
1592 if (mmc_host_is_spi(card->host) && erase_timeout < 1000)
1593 erase_timeout = 1000;
1594
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001595 return erase_timeout;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001596}
1597
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001598static unsigned int mmc_sd_erase_timeout(struct mmc_card *card,
1599 unsigned int arg,
1600 unsigned int qty)
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001601{
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001602 unsigned int erase_timeout;
1603
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001604 if (card->ssr.erase_timeout) {
1605 /* Erase timeout specified in SD Status Register (SSR) */
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001606 erase_timeout = card->ssr.erase_timeout * qty +
1607 card->ssr.erase_offset;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001608 } else {
1609 /*
1610 * Erase timeout not specified in SD Status Register (SSR) so
1611 * use 250ms per write block.
1612 */
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001613 erase_timeout = 250 * qty;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001614 }
1615
1616 /* Must not be less than 1 second */
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001617 if (erase_timeout < 1000)
1618 erase_timeout = 1000;
1619
1620 return erase_timeout;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001621}
1622
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001623static unsigned int mmc_erase_timeout(struct mmc_card *card,
1624 unsigned int arg,
1625 unsigned int qty)
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001626{
1627 if (mmc_card_sd(card))
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001628 return mmc_sd_erase_timeout(card, arg, qty);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001629 else
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001630 return mmc_mmc_erase_timeout(card, arg, qty);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001631}
1632
1633static int mmc_do_erase(struct mmc_card *card, unsigned int from,
1634 unsigned int to, unsigned int arg)
1635{
Chris Ball1278dba2011-04-13 23:40:30 -04001636 struct mmc_command cmd = {0};
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001637 unsigned int qty = 0;
1638 int err;
1639
1640 /*
1641 * qty is used to calculate the erase timeout which depends on how many
1642 * erase groups (or allocation units in SD terminology) are affected.
1643 * We count erasing part of an erase group as one erase group.
1644 * For SD, the allocation units are always a power of 2. For MMC, the
1645 * erase group size is almost certainly also power of 2, but it does not
1646 * seem to insist on that in the JEDEC standard, so we fall back to
1647 * division in that case. SD may not specify an allocation unit size,
1648 * in which case the timeout is based on the number of write blocks.
1649 *
1650 * Note that the timeout for secure trim 2 will only be correct if the
1651 * number of erase groups specified is the same as the total of all
1652 * preceding secure trim 1 commands. Since the power may have been
1653 * lost since the secure trim 1 commands occurred, it is generally
1654 * impossible to calculate the secure trim 2 timeout correctly.
1655 */
1656 if (card->erase_shift)
1657 qty += ((to >> card->erase_shift) -
1658 (from >> card->erase_shift)) + 1;
1659 else if (mmc_card_sd(card))
1660 qty += to - from + 1;
1661 else
1662 qty += ((to / card->erase_size) -
1663 (from / card->erase_size)) + 1;
1664
1665 if (!mmc_card_blockaddr(card)) {
1666 from <<= 9;
1667 to <<= 9;
1668 }
1669
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001670 if (mmc_card_sd(card))
1671 cmd.opcode = SD_ERASE_WR_BLK_START;
1672 else
1673 cmd.opcode = MMC_ERASE_GROUP_START;
1674 cmd.arg = from;
1675 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1676 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1677 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301678 pr_err("mmc_erase: group start error %d, "
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001679 "status %#x\n", err, cmd.resp[0]);
Adrian Hunter67716322011-08-29 16:42:15 +03001680 err = -EIO;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001681 goto out;
1682 }
1683
1684 memset(&cmd, 0, sizeof(struct mmc_command));
1685 if (mmc_card_sd(card))
1686 cmd.opcode = SD_ERASE_WR_BLK_END;
1687 else
1688 cmd.opcode = MMC_ERASE_GROUP_END;
1689 cmd.arg = to;
1690 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1691 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1692 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301693 pr_err("mmc_erase: group end error %d, status %#x\n",
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001694 err, cmd.resp[0]);
Adrian Hunter67716322011-08-29 16:42:15 +03001695 err = -EIO;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001696 goto out;
1697 }
1698
1699 memset(&cmd, 0, sizeof(struct mmc_command));
1700 cmd.opcode = MMC_ERASE;
1701 cmd.arg = arg;
1702 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
Andrei Warkentineaa02f72011-04-11 16:13:41 -05001703 cmd.cmd_timeout_ms = mmc_erase_timeout(card, arg, qty);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001704 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1705 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301706 pr_err("mmc_erase: erase error %d, status %#x\n",
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001707 err, cmd.resp[0]);
1708 err = -EIO;
1709 goto out;
1710 }
1711
1712 if (mmc_host_is_spi(card->host))
1713 goto out;
1714
1715 do {
1716 memset(&cmd, 0, sizeof(struct mmc_command));
1717 cmd.opcode = MMC_SEND_STATUS;
1718 cmd.arg = card->rca << 16;
1719 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1720 /* Do not retry else we can't see errors */
1721 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1722 if (err || (cmd.resp[0] & 0xFDF92000)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301723 pr_err("error %d requesting status %#x\n",
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001724 err, cmd.resp[0]);
1725 err = -EIO;
1726 goto out;
1727 }
1728 } while (!(cmd.resp[0] & R1_READY_FOR_DATA) ||
Jaehoon Chung7435bb72011-08-10 18:46:28 +09001729 R1_CURRENT_STATE(cmd.resp[0]) == R1_STATE_PRG);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001730out:
1731 return err;
1732}
1733
1734/**
1735 * mmc_erase - erase sectors.
1736 * @card: card to erase
1737 * @from: first sector to erase
1738 * @nr: number of sectors to erase
1739 * @arg: erase command argument (SD supports only %MMC_ERASE_ARG)
1740 *
1741 * Caller must claim host before calling this function.
1742 */
1743int mmc_erase(struct mmc_card *card, unsigned int from, unsigned int nr,
1744 unsigned int arg)
1745{
1746 unsigned int rem, to = from + nr;
1747
1748 if (!(card->host->caps & MMC_CAP_ERASE) ||
1749 !(card->csd.cmdclass & CCC_ERASE))
1750 return -EOPNOTSUPP;
1751
1752 if (!card->erase_size)
1753 return -EOPNOTSUPP;
1754
1755 if (mmc_card_sd(card) && arg != MMC_ERASE_ARG)
1756 return -EOPNOTSUPP;
1757
1758 if ((arg & MMC_SECURE_ARGS) &&
1759 !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN))
1760 return -EOPNOTSUPP;
1761
1762 if ((arg & MMC_TRIM_ARGS) &&
1763 !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN))
1764 return -EOPNOTSUPP;
1765
1766 if (arg == MMC_SECURE_ERASE_ARG) {
1767 if (from % card->erase_size || nr % card->erase_size)
1768 return -EINVAL;
1769 }
1770
1771 if (arg == MMC_ERASE_ARG) {
1772 rem = from % card->erase_size;
1773 if (rem) {
1774 rem = card->erase_size - rem;
1775 from += rem;
1776 if (nr > rem)
1777 nr -= rem;
1778 else
1779 return 0;
1780 }
1781 rem = nr % card->erase_size;
1782 if (rem)
1783 nr -= rem;
1784 }
1785
1786 if (nr == 0)
1787 return 0;
1788
1789 to = from + nr;
1790
1791 if (to <= from)
1792 return -EINVAL;
1793
1794 /* 'from' and 'to' are inclusive */
1795 to -= 1;
1796
1797 return mmc_do_erase(card, from, to, arg);
1798}
1799EXPORT_SYMBOL(mmc_erase);
1800
1801int mmc_can_erase(struct mmc_card *card)
1802{
1803 if ((card->host->caps & MMC_CAP_ERASE) &&
1804 (card->csd.cmdclass & CCC_ERASE) && card->erase_size)
1805 return 1;
1806 return 0;
1807}
1808EXPORT_SYMBOL(mmc_can_erase);
1809
1810int mmc_can_trim(struct mmc_card *card)
1811{
1812 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN)
1813 return 1;
Kyungmin Parkb3bf9152011-10-18 09:34:04 +09001814 if (mmc_can_discard(card))
1815 return 1;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001816 return 0;
1817}
1818EXPORT_SYMBOL(mmc_can_trim);
1819
Kyungmin Parkb3bf9152011-10-18 09:34:04 +09001820int mmc_can_discard(struct mmc_card *card)
1821{
1822 /*
1823 * As there's no way to detect the discard support bit at v4.5
1824 * use the s/w feature support filed.
1825 */
1826 if (card->ext_csd.feature_support & MMC_DISCARD_FEATURE)
1827 return 1;
1828 return 0;
1829}
1830EXPORT_SYMBOL(mmc_can_discard);
1831
Kyungmin Parkd9ddd622011-10-14 14:15:48 +09001832int mmc_can_sanitize(struct mmc_card *card)
1833{
1834 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_SANITIZE)
1835 return 1;
1836 return 0;
1837}
1838EXPORT_SYMBOL(mmc_can_sanitize);
1839
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07001840int mmc_can_secure_erase_trim(struct mmc_card *card)
1841{
1842 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN)
1843 return 1;
1844 return 0;
1845}
1846EXPORT_SYMBOL(mmc_can_secure_erase_trim);
1847
1848int mmc_erase_group_aligned(struct mmc_card *card, unsigned int from,
1849 unsigned int nr)
1850{
1851 if (!card->erase_size)
1852 return 0;
1853 if (from % card->erase_size || nr % card->erase_size)
1854 return 0;
1855 return 1;
1856}
1857EXPORT_SYMBOL(mmc_erase_group_aligned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Adrian Huntere056a1b2011-06-28 17:16:02 +03001859static unsigned int mmc_do_calc_max_discard(struct mmc_card *card,
1860 unsigned int arg)
1861{
1862 struct mmc_host *host = card->host;
1863 unsigned int max_discard, x, y, qty = 0, max_qty, timeout;
1864 unsigned int last_timeout = 0;
1865
1866 if (card->erase_shift)
1867 max_qty = UINT_MAX >> card->erase_shift;
1868 else if (mmc_card_sd(card))
1869 max_qty = UINT_MAX;
1870 else
1871 max_qty = UINT_MAX / card->erase_size;
1872
1873 /* Find the largest qty with an OK timeout */
1874 do {
1875 y = 0;
1876 for (x = 1; x && x <= max_qty && max_qty - x >= qty; x <<= 1) {
1877 timeout = mmc_erase_timeout(card, arg, qty + x);
1878 if (timeout > host->max_discard_to)
1879 break;
1880 if (timeout < last_timeout)
1881 break;
1882 last_timeout = timeout;
1883 y = x;
1884 }
1885 qty += y;
1886 } while (y);
1887
1888 if (!qty)
1889 return 0;
1890
1891 if (qty == 1)
1892 return 1;
1893
1894 /* Convert qty to sectors */
1895 if (card->erase_shift)
1896 max_discard = --qty << card->erase_shift;
1897 else if (mmc_card_sd(card))
1898 max_discard = qty;
1899 else
1900 max_discard = --qty * card->erase_size;
1901
1902 return max_discard;
1903}
1904
1905unsigned int mmc_calc_max_discard(struct mmc_card *card)
1906{
1907 struct mmc_host *host = card->host;
1908 unsigned int max_discard, max_trim;
1909
1910 if (!host->max_discard_to)
1911 return UINT_MAX;
1912
1913 /*
1914 * Without erase_group_def set, MMC erase timeout depends on clock
1915 * frequence which can change. In that case, the best choice is
1916 * just the preferred erase size.
1917 */
1918 if (mmc_card_mmc(card) && !(card->ext_csd.erase_group_def & 1))
1919 return card->pref_erase;
1920
1921 max_discard = mmc_do_calc_max_discard(card, MMC_ERASE_ARG);
1922 if (mmc_can_trim(card)) {
1923 max_trim = mmc_do_calc_max_discard(card, MMC_TRIM_ARG);
1924 if (max_trim < max_discard)
1925 max_discard = max_trim;
1926 } else if (max_discard < card->erase_size) {
1927 max_discard = 0;
1928 }
1929 pr_debug("%s: calculated max. discard sectors %u for timeout %u ms\n",
1930 mmc_hostname(host), max_discard, host->max_discard_to);
1931 return max_discard;
1932}
1933EXPORT_SYMBOL(mmc_calc_max_discard);
1934
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001935int mmc_set_blocklen(struct mmc_card *card, unsigned int blocklen)
1936{
Chris Ball1278dba2011-04-13 23:40:30 -04001937 struct mmc_command cmd = {0};
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001938
1939 if (mmc_card_blockaddr(card) || mmc_card_ddr_mode(card))
1940 return 0;
1941
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03001942 cmd.opcode = MMC_SET_BLOCKLEN;
1943 cmd.arg = blocklen;
1944 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1945 return mmc_wait_for_cmd(card->host, &cmd, 5);
1946}
1947EXPORT_SYMBOL(mmc_set_blocklen);
1948
Adrian Hunterb2499512011-08-29 16:42:11 +03001949static void mmc_hw_reset_for_init(struct mmc_host *host)
1950{
1951 if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
1952 return;
1953 mmc_host_clk_hold(host);
1954 host->ops->hw_reset(host);
1955 mmc_host_clk_release(host);
1956}
1957
1958int mmc_can_reset(struct mmc_card *card)
1959{
1960 u8 rst_n_function;
1961
1962 if (!mmc_card_mmc(card))
1963 return 0;
1964 rst_n_function = card->ext_csd.rst_n_function;
1965 if ((rst_n_function & EXT_CSD_RST_N_EN_MASK) != EXT_CSD_RST_N_ENABLED)
1966 return 0;
1967 return 1;
1968}
1969EXPORT_SYMBOL(mmc_can_reset);
1970
1971static int mmc_do_hw_reset(struct mmc_host *host, int check)
1972{
1973 struct mmc_card *card = host->card;
1974
1975 if (!host->bus_ops->power_restore)
1976 return -EOPNOTSUPP;
1977
1978 if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
1979 return -EOPNOTSUPP;
1980
1981 if (!card)
1982 return -EINVAL;
1983
1984 if (!mmc_can_reset(card))
1985 return -EOPNOTSUPP;
1986
1987 mmc_host_clk_hold(host);
1988 mmc_set_clock(host, host->f_init);
1989
1990 host->ops->hw_reset(host);
1991
1992 /* If the reset has happened, then a status command will fail */
1993 if (check) {
1994 struct mmc_command cmd = {0};
1995 int err;
1996
1997 cmd.opcode = MMC_SEND_STATUS;
1998 if (!mmc_host_is_spi(card->host))
1999 cmd.arg = card->rca << 16;
2000 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
2001 err = mmc_wait_for_cmd(card->host, &cmd, 0);
2002 if (!err) {
2003 mmc_host_clk_release(host);
2004 return -ENOSYS;
2005 }
2006 }
2007
2008 host->card->state &= ~(MMC_STATE_HIGHSPEED | MMC_STATE_HIGHSPEED_DDR);
2009 if (mmc_host_is_spi(host)) {
2010 host->ios.chip_select = MMC_CS_HIGH;
2011 host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
2012 } else {
2013 host->ios.chip_select = MMC_CS_DONTCARE;
2014 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
2015 }
2016 host->ios.bus_width = MMC_BUS_WIDTH_1;
2017 host->ios.timing = MMC_TIMING_LEGACY;
2018 mmc_set_ios(host);
2019
2020 mmc_host_clk_release(host);
2021
2022 return host->bus_ops->power_restore(host);
2023}
2024
2025int mmc_hw_reset(struct mmc_host *host)
2026{
2027 return mmc_do_hw_reset(host, 0);
2028}
2029EXPORT_SYMBOL(mmc_hw_reset);
2030
2031int mmc_hw_reset_check(struct mmc_host *host)
2032{
2033 return mmc_do_hw_reset(host, 1);
2034}
2035EXPORT_SYMBOL(mmc_hw_reset_check);
2036
Andy Ross807e8e42011-01-03 10:36:56 -08002037static int mmc_rescan_try_freq(struct mmc_host *host, unsigned freq)
2038{
2039 host->f_init = freq;
2040
2041#ifdef CONFIG_MMC_DEBUG
2042 pr_info("%s: %s: trying to init card at %u Hz\n",
2043 mmc_hostname(host), __func__, host->f_init);
2044#endif
2045 mmc_power_up(host);
Philip Rakity2f94e552011-02-13 23:12:28 -08002046
2047 /*
Adrian Hunterb2499512011-08-29 16:42:11 +03002048 * Some eMMCs (with VCCQ always on) may not be reset after power up, so
2049 * do a hardware reset if possible.
2050 */
2051 mmc_hw_reset_for_init(host);
2052
2053 /*
Philip Rakity2f94e552011-02-13 23:12:28 -08002054 * sdio_reset sends CMD52 to reset card. Since we do not know
2055 * if the card is being re-initialized, just send it. CMD52
2056 * should be ignored by SD/eMMC cards.
2057 */
Andy Ross807e8e42011-01-03 10:36:56 -08002058 sdio_reset(host);
2059 mmc_go_idle(host);
2060
2061 mmc_send_if_cond(host, host->ocr_avail);
2062
2063 /* Order's important: probe SDIO, then SD, then MMC */
2064 if (!mmc_attach_sdio(host))
2065 return 0;
2066 if (!mmc_attach_sd(host))
2067 return 0;
2068 if (!mmc_attach_mmc(host))
2069 return 0;
2070
2071 mmc_power_off(host);
2072 return -EIO;
2073}
2074
Adrian Hunterd3049502011-11-28 16:22:00 +02002075int _mmc_detect_card_removed(struct mmc_host *host)
2076{
2077 int ret;
2078
2079 if ((host->caps & MMC_CAP_NONREMOVABLE) || !host->bus_ops->alive)
2080 return 0;
2081
2082 if (!host->card || mmc_card_removed(host->card))
2083 return 1;
2084
2085 ret = host->bus_ops->alive(host);
2086 if (ret) {
2087 mmc_card_set_removed(host->card);
2088 pr_debug("%s: card remove detected\n", mmc_hostname(host));
2089 }
2090
2091 return ret;
2092}
2093
2094int mmc_detect_card_removed(struct mmc_host *host)
2095{
2096 struct mmc_card *card = host->card;
2097
2098 WARN_ON(!host->claimed);
2099 /*
2100 * The card will be considered unchanged unless we have been asked to
2101 * detect a change or host requires polling to provide card detection.
2102 */
2103 if (card && !host->detect_change && !(host->caps & MMC_CAP_NEEDS_POLL))
2104 return mmc_card_removed(card);
2105
2106 host->detect_change = 0;
2107
2108 return _mmc_detect_card_removed(host);
2109}
2110EXPORT_SYMBOL(mmc_detect_card_removed);
2111
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002112void mmc_rescan(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
Andy Ross807e8e42011-01-03 10:36:56 -08002114 static const unsigned freqs[] = { 400000, 300000, 200000, 100000 };
David Howellsc4028952006-11-22 14:57:56 +00002115 struct mmc_host *host =
2116 container_of(work, struct mmc_host, detect.work);
Hein Tibosch88ae8b82010-09-06 09:37:19 +08002117 int i;
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002118
Andy Ross807e8e42011-01-03 10:36:56 -08002119 if (host->rescan_disable)
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002120 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002122 mmc_bus_get(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Ohad Ben-Cohen30201e72010-11-28 07:21:28 +02002124 /*
2125 * if there is a _removable_ card registered, check whether it is
2126 * still present
2127 */
2128 if (host->bus_ops && host->bus_ops->detect && !host->bus_dead
Ohad Ben-Cohenbad3bab2011-03-08 23:32:02 +02002129 && !(host->caps & MMC_CAP_NONREMOVABLE))
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002130 host->bus_ops->detect(host);
2131
Adrian Hunterd3049502011-11-28 16:22:00 +02002132 host->detect_change = 0;
2133
Chris Ballc5841792011-01-04 12:20:22 -05002134 /*
2135 * Let mmc_bus_put() free the bus/bus_ops if we've found that
2136 * the card is no longer present.
2137 */
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002138 mmc_bus_put(host);
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002139 mmc_bus_get(host);
2140
2141 /* if there still is a card present, stop here */
2142 if (host->bus_ops != NULL) {
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002143 mmc_bus_put(host);
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002144 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002146
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002147 /*
2148 * Only we can add a new handler, so it's safe to
2149 * release the lock here.
2150 */
2151 mmc_bus_put(host);
2152
2153 if (host->ops->get_cd && host->ops->get_cd(host) == 0)
2154 goto out;
2155
Andy Ross807e8e42011-01-03 10:36:56 -08002156 mmc_claim_host(host);
Hein Tibosch88ae8b82010-09-06 09:37:19 +08002157 for (i = 0; i < ARRAY_SIZE(freqs); i++) {
Andy Ross807e8e42011-01-03 10:36:56 -08002158 if (!mmc_rescan_try_freq(host, max(freqs[i], host->f_min)))
2159 break;
Jaehoon Chung06b22332011-05-12 17:18:59 +09002160 if (freqs[i] <= host->f_min)
Andy Ross807e8e42011-01-03 10:36:56 -08002161 break;
Hein Tibosch88ae8b82010-09-06 09:37:19 +08002162 }
Andy Ross807e8e42011-01-03 10:36:56 -08002163 mmc_release_host(host);
2164
2165 out:
Anton Vorontsov28f52482008-06-17 18:17:15 +04002166 if (host->caps & MMC_CAP_NEEDS_POLL)
2167 mmc_schedule_delayed_work(&host->detect, HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002170void mmc_start_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002172 mmc_power_off(host);
2173 mmc_detect_change(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002176void mmc_stop_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177{
Pierre Ossman3b91e552007-02-11 20:43:19 +01002178#ifdef CONFIG_MMC_DEBUG
Pierre Ossman1efd48b2007-05-08 22:35:17 +02002179 unsigned long flags;
2180 spin_lock_irqsave(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01002181 host->removed = 1;
Pierre Ossman1efd48b2007-05-08 22:35:17 +02002182 spin_unlock_irqrestore(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01002183#endif
2184
Adrian Hunter8ea926b2009-09-22 16:44:29 -07002185 if (host->caps & MMC_CAP_DISABLE)
2186 cancel_delayed_work(&host->disable);
Guennadi Liakhovetskid9bcbf32010-11-11 17:32:25 +01002187 cancel_delayed_work_sync(&host->detect);
Pierre Ossman3b91e552007-02-11 20:43:19 +01002188 mmc_flush_scheduled_work();
2189
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08002190 /* clear pm flags now and let card drivers set them as needed */
2191 host->pm_flags = 0;
2192
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002193 mmc_bus_get(host);
2194 if (host->bus_ops && !host->bus_dead) {
Guennadi Liakhovetski0db13fc2012-01-04 15:28:45 +01002195 /* Calling bus_ops->remove() with a claimed host can deadlock */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002196 if (host->bus_ops->remove)
2197 host->bus_ops->remove(host);
2198
2199 mmc_claim_host(host);
2200 mmc_detach_bus(host);
Ulf Hansson7f7e4122011-09-21 14:08:13 -04002201 mmc_power_off(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002202 mmc_release_host(host);
Denis Karpov53509f02009-09-22 16:44:36 -07002203 mmc_bus_put(host);
2204 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002206 mmc_bus_put(host);
2207
2208 BUG_ON(host->card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 mmc_power_off(host);
2211}
2212
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002213int mmc_power_save_host(struct mmc_host *host)
Adrian Huntereae1aee2009-09-22 16:44:33 -07002214{
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002215 int ret = 0;
2216
Daniel Drakebb9cab92011-07-17 16:38:41 +01002217#ifdef CONFIG_MMC_DEBUG
2218 pr_info("%s: %s: powering down\n", mmc_hostname(host), __func__);
2219#endif
2220
Adrian Huntereae1aee2009-09-22 16:44:33 -07002221 mmc_bus_get(host);
2222
2223 if (!host->bus_ops || host->bus_dead || !host->bus_ops->power_restore) {
2224 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002225 return -EINVAL;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002226 }
2227
2228 if (host->bus_ops->power_save)
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002229 ret = host->bus_ops->power_save(host);
Adrian Huntereae1aee2009-09-22 16:44:33 -07002230
2231 mmc_bus_put(host);
2232
2233 mmc_power_off(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002234
2235 return ret;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002236}
2237EXPORT_SYMBOL(mmc_power_save_host);
2238
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002239int mmc_power_restore_host(struct mmc_host *host)
Adrian Huntereae1aee2009-09-22 16:44:33 -07002240{
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002241 int ret;
2242
Daniel Drakebb9cab92011-07-17 16:38:41 +01002243#ifdef CONFIG_MMC_DEBUG
2244 pr_info("%s: %s: powering up\n", mmc_hostname(host), __func__);
2245#endif
2246
Adrian Huntereae1aee2009-09-22 16:44:33 -07002247 mmc_bus_get(host);
2248
2249 if (!host->bus_ops || host->bus_dead || !host->bus_ops->power_restore) {
2250 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002251 return -EINVAL;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002252 }
2253
2254 mmc_power_up(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002255 ret = host->bus_ops->power_restore(host);
Adrian Huntereae1aee2009-09-22 16:44:33 -07002256
2257 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002258
2259 return ret;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002260}
2261EXPORT_SYMBOL(mmc_power_restore_host);
2262
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -07002263int mmc_card_awake(struct mmc_host *host)
2264{
2265 int err = -ENOSYS;
2266
Ulf Hanssonaa9df4f2011-12-19 16:24:19 +01002267 if (host->caps2 & MMC_CAP2_NO_SLEEP_CMD)
2268 return 0;
2269
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -07002270 mmc_bus_get(host);
2271
2272 if (host->bus_ops && !host->bus_dead && host->bus_ops->awake)
2273 err = host->bus_ops->awake(host);
2274
2275 mmc_bus_put(host);
2276
2277 return err;
2278}
2279EXPORT_SYMBOL(mmc_card_awake);
2280
2281int mmc_card_sleep(struct mmc_host *host)
2282{
2283 int err = -ENOSYS;
2284
Ulf Hanssonaa9df4f2011-12-19 16:24:19 +01002285 if (host->caps2 & MMC_CAP2_NO_SLEEP_CMD)
2286 return 0;
2287
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -07002288 mmc_bus_get(host);
2289
Kyungmin Parkc99872a2011-11-17 13:34:33 +09002290 if (host->bus_ops && !host->bus_dead && host->bus_ops->sleep)
Jarkko Lavinenb1ebe382009-09-22 16:44:34 -07002291 err = host->bus_ops->sleep(host);
2292
2293 mmc_bus_put(host);
2294
2295 return err;
2296}
2297EXPORT_SYMBOL(mmc_card_sleep);
2298
2299int mmc_card_can_sleep(struct mmc_host *host)
2300{
2301 struct mmc_card *card = host->card;
2302
2303 if (card && mmc_card_mmc(card) && card->ext_csd.rev >= 3)
2304 return 1;
2305 return 0;
2306}
2307EXPORT_SYMBOL(mmc_card_can_sleep);
2308
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002309/*
2310 * Flush the cache to the non-volatile storage.
2311 */
2312int mmc_flush_cache(struct mmc_card *card)
2313{
2314 struct mmc_host *host = card->host;
2315 int err = 0;
2316
2317 if (!(host->caps2 & MMC_CAP2_CACHE_CTRL))
2318 return err;
2319
2320 if (mmc_card_mmc(card) &&
2321 (card->ext_csd.cache_size > 0) &&
2322 (card->ext_csd.cache_ctrl & 1)) {
2323 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
2324 EXT_CSD_FLUSH_CACHE, 1, 0);
2325 if (err)
2326 pr_err("%s: cache flush error %d\n",
2327 mmc_hostname(card->host), err);
2328 }
2329
2330 return err;
2331}
2332EXPORT_SYMBOL(mmc_flush_cache);
2333
2334/*
2335 * Turn the cache ON/OFF.
2336 * Turning the cache OFF shall trigger flushing of the data
2337 * to the non-volatile storage.
2338 */
2339int mmc_cache_ctrl(struct mmc_host *host, u8 enable)
2340{
2341 struct mmc_card *card = host->card;
Seungwon Jeon8bc06782011-12-09 17:47:17 +09002342 unsigned int timeout;
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002343 int err = 0;
2344
2345 if (!(host->caps2 & MMC_CAP2_CACHE_CTRL) ||
2346 mmc_card_is_removable(host))
2347 return err;
2348
2349 if (card && mmc_card_mmc(card) &&
2350 (card->ext_csd.cache_size > 0)) {
2351 enable = !!enable;
2352
Seungwon Jeon8bc06782011-12-09 17:47:17 +09002353 if (card->ext_csd.cache_ctrl ^ enable) {
2354 timeout = enable ? card->ext_csd.generic_cmd6_time : 0;
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002355 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Seungwon Jeon8bc06782011-12-09 17:47:17 +09002356 EXT_CSD_CACHE_CTRL, enable, timeout);
2357 if (err)
2358 pr_err("%s: cache %s error %d\n",
2359 mmc_hostname(card->host),
2360 enable ? "on" : "off",
2361 err);
2362 else
2363 card->ext_csd.cache_ctrl = enable;
2364 }
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002365 }
2366
2367 return err;
2368}
2369EXPORT_SYMBOL(mmc_cache_ctrl);
2370
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371#ifdef CONFIG_PM
2372
2373/**
2374 * mmc_suspend_host - suspend a host
2375 * @host: mmc host
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 */
Matt Fleming1a13f8f2010-05-26 14:42:08 -07002377int mmc_suspend_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378{
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002379 int err = 0;
2380
Adrian Hunter8ea926b2009-09-22 16:44:29 -07002381 if (host->caps & MMC_CAP_DISABLE)
2382 cancel_delayed_work(&host->disable);
Jorg Schummer7de427d2009-02-19 13:17:03 +02002383 cancel_delayed_work(&host->detect);
Pierre Ossmanb5af25b2007-04-28 17:30:50 +02002384 mmc_flush_scheduled_work();
Seungwon Jeon17e9ff52011-12-26 18:03:05 +09002385 if (mmc_try_claim_host(host)) {
2386 err = mmc_cache_ctrl(host, 0);
2387 mmc_do_release_host(host);
2388 } else {
2389 err = -EBUSY;
2390 }
2391
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002392 if (err)
2393 goto out;
Pierre Ossmanb5af25b2007-04-28 17:30:50 +02002394
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002395 mmc_bus_get(host);
2396 if (host->bus_ops && !host->bus_dead) {
Ulf Hanssonb6ad7262011-10-13 16:03:58 +02002397
2398 /*
2399 * A long response time is not acceptable for device drivers
2400 * when doing suspend. Prevent mmc_claim_host in the suspend
2401 * sequence, to potentially wait "forever" by trying to
2402 * pre-claim the host.
2403 */
2404 if (mmc_try_claim_host(host)) {
Girish K Sa80f1622011-11-15 11:55:46 +05302405 if (host->bus_ops->suspend) {
2406 /*
2407 * For eMMC 4.5 device send notify command
2408 * before sleep, because in sleep state eMMC 4.5
2409 * devices respond to only RESET and AWAKE cmd
2410 */
2411 mmc_poweroff_notify(host);
Ulf Hanssonb6ad7262011-10-13 16:03:58 +02002412 err = host->bus_ops->suspend(host);
Girish K Sa80f1622011-11-15 11:55:46 +05302413 }
Sujit Reddy Thumma49df7802011-11-23 08:43:18 +05302414 mmc_do_release_host(host);
2415
Ulf Hanssonb6ad7262011-10-13 16:03:58 +02002416 if (err == -ENOSYS || !host->bus_ops->resume) {
2417 /*
2418 * We simply "remove" the card in this case.
Guennadi Liakhovetski0db13fc2012-01-04 15:28:45 +01002419 * It will be redetected on resume. (Calling
2420 * bus_ops->remove() with a claimed host can
2421 * deadlock.)
Ulf Hanssonb6ad7262011-10-13 16:03:58 +02002422 */
2423 if (host->bus_ops->remove)
2424 host->bus_ops->remove(host);
2425 mmc_claim_host(host);
2426 mmc_detach_bus(host);
2427 mmc_power_off(host);
2428 mmc_release_host(host);
2429 host->pm_flags = 0;
2430 err = 0;
2431 }
Ulf Hanssonb6ad7262011-10-13 16:03:58 +02002432 } else {
2433 err = -EBUSY;
Ohad Ben-Cohen1c8cf9c2010-10-13 09:31:56 +02002434 }
Pierre Ossmanb5af25b2007-04-28 17:30:50 +02002435 }
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002436 mmc_bus_put(host);
2437
Ohad Ben-Cohena5e94252011-04-05 17:43:20 +03002438 if (!err && !mmc_card_keep_power(host))
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002439 mmc_power_off(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002441out:
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002442 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443}
2444
2445EXPORT_SYMBOL(mmc_suspend_host);
2446
2447/**
2448 * mmc_resume_host - resume a previously suspended host
2449 * @host: mmc host
2450 */
2451int mmc_resume_host(struct mmc_host *host)
2452{
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002453 int err = 0;
2454
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02002455 mmc_bus_get(host);
2456 if (host->bus_ops && !host->bus_dead) {
Ohad Ben-Cohena5e94252011-04-05 17:43:20 +03002457 if (!mmc_card_keep_power(host)) {
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08002458 mmc_power_up(host);
2459 mmc_select_voltage(host, host->ocr);
Ohad Ben-Cohene5945732010-11-28 07:21:30 +02002460 /*
2461 * Tell runtime PM core we just powered up the card,
2462 * since it still believes the card is powered off.
2463 * Note that currently runtime PM is only enabled
2464 * for SDIO cards that are MMC_CAP_POWER_OFF_CARD
2465 */
2466 if (mmc_card_sdio(host->card) &&
2467 (host->caps & MMC_CAP_POWER_OFF_CARD)) {
2468 pm_runtime_disable(&host->card->dev);
2469 pm_runtime_set_active(&host->card->dev);
2470 pm_runtime_enable(&host->card->dev);
2471 }
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08002472 }
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02002473 BUG_ON(!host->bus_ops->resume);
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002474 err = host->bus_ops->resume(host);
2475 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302476 pr_warning("%s: error %d during resume "
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002477 "(card was removed?)\n",
2478 mmc_hostname(host), err);
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002479 err = 0;
2480 }
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02002481 }
Eliad Pellera8e6df72011-05-09 11:32:31 +03002482 host->pm_flags &= ~MMC_PM_KEEP_POWER;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02002483 mmc_bus_put(host);
2484
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07002485 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487EXPORT_SYMBOL(mmc_resume_host);
2488
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002489/* Do the card removal on suspend if card is assumed removeable
2490 * Do that in pm notifier while userspace isn't yet frozen, so we will be able
2491 to sync the card.
2492*/
2493int mmc_pm_notify(struct notifier_block *notify_block,
2494 unsigned long mode, void *unused)
2495{
2496 struct mmc_host *host = container_of(
2497 notify_block, struct mmc_host, pm_notify);
2498 unsigned long flags;
2499
2500
2501 switch (mode) {
2502 case PM_HIBERNATION_PREPARE:
2503 case PM_SUSPEND_PREPARE:
2504
2505 spin_lock_irqsave(&host->lock, flags);
2506 host->rescan_disable = 1;
Girish K Sbec87262011-10-13 12:04:16 +05302507 host->power_notify_type = MMC_HOST_PW_NOTIFY_SHORT;
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002508 spin_unlock_irqrestore(&host->lock, flags);
2509 cancel_delayed_work_sync(&host->detect);
2510
2511 if (!host->bus_ops || host->bus_ops->suspend)
2512 break;
2513
Guennadi Liakhovetski0db13fc2012-01-04 15:28:45 +01002514 /* Calling bus_ops->remove() with a claimed host can deadlock */
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002515 if (host->bus_ops->remove)
2516 host->bus_ops->remove(host);
2517
Guennadi Liakhovetski0db13fc2012-01-04 15:28:45 +01002518 mmc_claim_host(host);
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002519 mmc_detach_bus(host);
Ulf Hansson7f7e4122011-09-21 14:08:13 -04002520 mmc_power_off(host);
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002521 mmc_release_host(host);
2522 host->pm_flags = 0;
2523 break;
2524
2525 case PM_POST_SUSPEND:
2526 case PM_POST_HIBERNATION:
Takashi Iwai274476f2010-12-10 08:40:31 +01002527 case PM_POST_RESTORE:
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002528
2529 spin_lock_irqsave(&host->lock, flags);
2530 host->rescan_disable = 0;
Girish K Sbec87262011-10-13 12:04:16 +05302531 host->power_notify_type = MMC_HOST_PW_NOTIFY_LONG;
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002532 spin_unlock_irqrestore(&host->lock, flags);
2533 mmc_detect_change(host, 0);
2534
2535 }
2536
2537 return 0;
2538}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539#endif
2540
Pierre Ossmanffce2e72007-05-19 14:32:22 +02002541static int __init mmc_init(void)
2542{
2543 int ret;
2544
Tejun Heo0d9ee5b2010-12-24 16:00:17 +01002545 workqueue = alloc_ordered_workqueue("kmmcd", 0);
Pierre Ossmanffce2e72007-05-19 14:32:22 +02002546 if (!workqueue)
2547 return -ENOMEM;
2548
2549 ret = mmc_register_bus();
Pierre Ossmane29a7d72007-05-26 13:48:18 +02002550 if (ret)
2551 goto destroy_workqueue;
2552
2553 ret = mmc_register_host_class();
2554 if (ret)
2555 goto unregister_bus;
2556
2557 ret = sdio_register_bus();
2558 if (ret)
2559 goto unregister_host_class;
2560
2561 return 0;
2562
2563unregister_host_class:
2564 mmc_unregister_host_class();
2565unregister_bus:
2566 mmc_unregister_bus();
2567destroy_workqueue:
2568 destroy_workqueue(workqueue);
2569
Pierre Ossmanffce2e72007-05-19 14:32:22 +02002570 return ret;
2571}
2572
2573static void __exit mmc_exit(void)
2574{
Pierre Ossmane29a7d72007-05-26 13:48:18 +02002575 sdio_unregister_bus();
Pierre Ossmanffce2e72007-05-19 14:32:22 +02002576 mmc_unregister_host_class();
2577 mmc_unregister_bus();
2578 destroy_workqueue(workqueue);
2579}
2580
Nicolas Pitre26074962007-06-16 02:07:53 -04002581subsys_initcall(mmc_init);
Pierre Ossmanffce2e72007-05-19 14:32:22 +02002582module_exit(mmc_exit);
2583
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584MODULE_LICENSE("GPL");