blob: 16b774c18e75fbc9b37c982bff30e38c18944304 [file] [log] [blame]
Pierre Ossmanda7fbe52006-12-24 22:46:55 +01001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/core/sd_ops.h
Pierre Ossmanda7fbe52006-12-24 22:46:55 +01003 *
4 * Copyright 2006-2007 Pierre Ossman
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
10 */
11
Yoshihiro Shimoda4f665cb2011-03-25 15:06:19 +090012#include <linux/slab.h>
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010013#include <linux/types.h>
Paul Gortmaker3ef77af2011-07-10 12:42:00 -040014#include <linux/export.h>
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010015#include <linux/scatterlist.h>
16
17#include <linux/mmc/host.h>
18#include <linux/mmc/card.h>
19#include <linux/mmc/mmc.h>
20#include <linux/mmc/sd.h>
21
22#include "core.h"
23#include "sd_ops.h"
24
John Calixtocb87ea22011-04-26 18:56:29 -040025int mmc_app_cmd(struct mmc_host *host, struct mmc_card *card)
Adrian Bunk39361852007-07-25 00:40:58 +020026{
27 int err;
Chris Ball1278dba2011-04-13 23:40:30 -040028 struct mmc_command cmd = {0};
Adrian Bunk39361852007-07-25 00:40:58 +020029
30 BUG_ON(!host);
31 BUG_ON(card && (card->host != host));
32
33 cmd.opcode = MMC_APP_CMD;
34
35 if (card) {
36 cmd.arg = card->rca << 16;
David Brownellaf517152007-08-08 09:11:32 -070037 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
Adrian Bunk39361852007-07-25 00:40:58 +020038 } else {
39 cmd.arg = 0;
David Brownellaf517152007-08-08 09:11:32 -070040 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_BCR;
Adrian Bunk39361852007-07-25 00:40:58 +020041 }
42
43 err = mmc_wait_for_cmd(host, &cmd, 0);
Pierre Ossman17b04292007-07-22 22:18:46 +020044 if (err)
Adrian Bunk39361852007-07-25 00:40:58 +020045 return err;
46
47 /* Check that card supported application commands */
David Brownellaf517152007-08-08 09:11:32 -070048 if (!mmc_host_is_spi(host) && !(cmd.resp[0] & R1_APP_CMD))
Pierre Ossman17b04292007-07-22 22:18:46 +020049 return -EOPNOTSUPP;
Adrian Bunk39361852007-07-25 00:40:58 +020050
Pierre Ossman17b04292007-07-22 22:18:46 +020051 return 0;
Adrian Bunk39361852007-07-25 00:40:58 +020052}
John Calixtocb87ea22011-04-26 18:56:29 -040053EXPORT_SYMBOL_GPL(mmc_app_cmd);
Adrian Bunk39361852007-07-25 00:40:58 +020054
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010055/**
56 * mmc_wait_for_app_cmd - start an application command and wait for
57 completion
58 * @host: MMC host to start command
Pierre Ossman67a61c42007-07-11 20:22:11 +020059 * @card: Card to send MMC_APP_CMD to
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010060 * @cmd: MMC command to start
61 * @retries: maximum number of retries
62 *
63 * Sends a MMC_APP_CMD, checks the card response, sends the command
64 * in the parameter and waits for it to complete. Return any error
65 * that occurred while the command was executing. Do not attempt to
66 * parse the response.
67 */
68int mmc_wait_for_app_cmd(struct mmc_host *host, struct mmc_card *card,
69 struct mmc_command *cmd, int retries)
70{
Venkatraman Sad5fd972011-08-25 00:30:50 +053071 struct mmc_request mrq = {NULL};
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010072
73 int i, err;
74
75 BUG_ON(!cmd);
76 BUG_ON(retries < 0);
77
Pierre Ossman17b04292007-07-22 22:18:46 +020078 err = -EIO;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010079
80 /*
81 * We have to resend MMC_APP_CMD for each attempt so
82 * we cannot use the retries field in mmc_command.
83 */
84 for (i = 0;i <= retries;i++) {
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010085 err = mmc_app_cmd(host, card);
David Brownellaf517152007-08-08 09:11:32 -070086 if (err) {
87 /* no point in retrying; no APP commands allowed */
88 if (mmc_host_is_spi(host)) {
89 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
90 break;
91 }
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010092 continue;
David Brownellaf517152007-08-08 09:11:32 -070093 }
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010094
95 memset(&mrq, 0, sizeof(struct mmc_request));
96
97 memset(cmd->resp, 0, sizeof(cmd->resp));
98 cmd->retries = 0;
99
100 mrq.cmd = cmd;
101 cmd->data = NULL;
102
103 mmc_wait_for_req(host, &mrq);
104
105 err = cmd->error;
Pierre Ossman17b04292007-07-22 22:18:46 +0200106 if (!cmd->error)
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100107 break;
David Brownellaf517152007-08-08 09:11:32 -0700108
109 /* no point in retrying illegal APP commands */
110 if (mmc_host_is_spi(host)) {
111 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
112 break;
113 }
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100114 }
115
116 return err;
117}
118
119EXPORT_SYMBOL(mmc_wait_for_app_cmd);
120
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100121int mmc_app_set_bus_width(struct mmc_card *card, int width)
122{
Chris Ball1278dba2011-04-13 23:40:30 -0400123 struct mmc_command cmd = {0};
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100124
125 BUG_ON(!card);
126 BUG_ON(!card->host);
127
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100128 cmd.opcode = SD_APP_SET_BUS_WIDTH;
129 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
130
131 switch (width) {
132 case MMC_BUS_WIDTH_1:
133 cmd.arg = SD_BUS_WIDTH_1;
134 break;
135 case MMC_BUS_WIDTH_4:
136 cmd.arg = SD_BUS_WIDTH_4;
137 break;
138 default:
Pierre Ossman17b04292007-07-22 22:18:46 +0200139 return -EINVAL;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100140 }
141
Masahiro Yamada0899e742016-01-08 11:15:25 +0900142 return mmc_wait_for_app_cmd(card->host, card, &cmd, MMC_CMD_RETRIES);
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100143}
144
145int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr)
146{
Chris Ball1278dba2011-04-13 23:40:30 -0400147 struct mmc_command cmd = {0};
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100148 int i, err = 0;
149
150 BUG_ON(!host);
151
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100152 cmd.opcode = SD_APP_OP_COND;
David Brownellaf517152007-08-08 09:11:32 -0700153 if (mmc_host_is_spi(host))
154 cmd.arg = ocr & (1 << 30); /* SPI only defines one bit */
155 else
156 cmd.arg = ocr;
157 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R3 | MMC_CMD_BCR;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100158
159 for (i = 100; i; i--) {
160 err = mmc_wait_for_app_cmd(host, NULL, &cmd, MMC_CMD_RETRIES);
Pierre Ossman17b04292007-07-22 22:18:46 +0200161 if (err)
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100162 break;
163
David Brownellaf517152007-08-08 09:11:32 -0700164 /* if we're just probing, do a single pass */
165 if (ocr == 0)
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100166 break;
167
David Brownellaf517152007-08-08 09:11:32 -0700168 /* otherwise wait until reset completes */
169 if (mmc_host_is_spi(host)) {
170 if (!(cmd.resp[0] & R1_SPI_IDLE))
171 break;
172 } else {
173 if (cmd.resp[0] & MMC_CARD_BUSY)
174 break;
175 }
176
Pierre Ossman17b04292007-07-22 22:18:46 +0200177 err = -ETIMEDOUT;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100178
179 mmc_delay(10);
180 }
181
Johan Rudholm5e863662014-05-23 16:15:03 +0200182 if (!i)
183 pr_err("%s: card never left busy state\n", mmc_hostname(host));
184
David Brownellaf517152007-08-08 09:11:32 -0700185 if (rocr && !mmc_host_is_spi(host))
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100186 *rocr = cmd.resp[0];
187
188 return err;
189}
190
191int mmc_send_if_cond(struct mmc_host *host, u32 ocr)
192{
Chris Ball1278dba2011-04-13 23:40:30 -0400193 struct mmc_command cmd = {0};
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100194 int err;
195 static const u8 test_pattern = 0xAA;
David Brownellaf517152007-08-08 09:11:32 -0700196 u8 result_pattern;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100197
198 /*
199 * To support SD 2.0 cards, we must always invoke SD_SEND_IF_COND
200 * before SD_APP_OP_COND. This command will harmlessly fail for
201 * SD 1.0 cards.
202 */
203 cmd.opcode = SD_SEND_IF_COND;
204 cmd.arg = ((ocr & 0xFF8000) != 0) << 8 | test_pattern;
David Brownellaf517152007-08-08 09:11:32 -0700205 cmd.flags = MMC_RSP_SPI_R7 | MMC_RSP_R7 | MMC_CMD_BCR;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100206
207 err = mmc_wait_for_cmd(host, &cmd, 0);
Pierre Ossman17b04292007-07-22 22:18:46 +0200208 if (err)
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100209 return err;
210
David Brownellaf517152007-08-08 09:11:32 -0700211 if (mmc_host_is_spi(host))
212 result_pattern = cmd.resp[1] & 0xFF;
213 else
214 result_pattern = cmd.resp[0] & 0xFF;
215
216 if (result_pattern != test_pattern)
Pierre Ossman17b04292007-07-22 22:18:46 +0200217 return -EIO;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100218
Pierre Ossman17b04292007-07-22 22:18:46 +0200219 return 0;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100220}
221
222int mmc_send_relative_addr(struct mmc_host *host, unsigned int *rca)
223{
224 int err;
Chris Ball1278dba2011-04-13 23:40:30 -0400225 struct mmc_command cmd = {0};
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100226
227 BUG_ON(!host);
228 BUG_ON(!rca);
229
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100230 cmd.opcode = SD_SEND_RELATIVE_ADDR;
231 cmd.arg = 0;
232 cmd.flags = MMC_RSP_R6 | MMC_CMD_BCR;
233
234 err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES);
Pierre Ossman17b04292007-07-22 22:18:46 +0200235 if (err)
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100236 return err;
237
238 *rca = cmd.resp[0] >> 16;
239
Pierre Ossman17b04292007-07-22 22:18:46 +0200240 return 0;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100241}
242
243int mmc_app_send_scr(struct mmc_card *card, u32 *scr)
244{
245 int err;
Venkatraman Sad5fd972011-08-25 00:30:50 +0530246 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400247 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400248 struct mmc_data data = {0};
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100249 struct scatterlist sg;
Yoshihiro Shimoda4f665cb2011-03-25 15:06:19 +0900250 void *data_buf;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100251
252 BUG_ON(!card);
253 BUG_ON(!card->host);
254 BUG_ON(!scr);
255
David Brownellaf517152007-08-08 09:11:32 -0700256 /* NOTE: caller guarantees scr is heap-allocated */
257
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100258 err = mmc_app_cmd(card->host, card);
Pierre Ossman17b04292007-07-22 22:18:46 +0200259 if (err)
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100260 return err;
261
Yoshihiro Shimoda4f665cb2011-03-25 15:06:19 +0900262 /* dma onto stack is unsafe/nonportable, but callers to this
263 * routine normally provide temporary on-stack buffers ...
264 */
265 data_buf = kmalloc(sizeof(card->raw_scr), GFP_KERNEL);
266 if (data_buf == NULL)
267 return -ENOMEM;
268
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100269 mrq.cmd = &cmd;
270 mrq.data = &data;
271
272 cmd.opcode = SD_APP_SEND_SCR;
273 cmd.arg = 0;
David Brownellaf517152007-08-08 09:11:32 -0700274 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100275
276 data.blksz = 8;
277 data.blocks = 1;
278 data.flags = MMC_DATA_READ;
279 data.sg = &sg;
280 data.sg_len = 1;
281
Yoshihiro Shimoda4f665cb2011-03-25 15:06:19 +0900282 sg_init_one(&sg, data_buf, 8);
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100283
Pierre Ossmanb146d262007-07-24 19:16:54 +0200284 mmc_set_data_timeout(&data, card);
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100285
286 mmc_wait_for_req(card->host, &mrq);
287
Yoshihiro Shimoda4f665cb2011-03-25 15:06:19 +0900288 memcpy(scr, data_buf, sizeof(card->raw_scr));
289 kfree(data_buf);
290
Pierre Ossman17b04292007-07-22 22:18:46 +0200291 if (cmd.error)
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100292 return cmd.error;
Pierre Ossman17b04292007-07-22 22:18:46 +0200293 if (data.error)
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100294 return data.error;
295
Pierre Ossman1fa8dd12007-10-27 14:41:04 +0200296 scr[0] = be32_to_cpu(scr[0]);
297 scr[1] = be32_to_cpu(scr[1]);
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100298
Pierre Ossman17b04292007-07-22 22:18:46 +0200299 return 0;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100300}
301
302int mmc_sd_switch(struct mmc_card *card, int mode, int group,
303 u8 value, u8 *resp)
304{
Venkatraman Sad5fd972011-08-25 00:30:50 +0530305 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400306 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400307 struct mmc_data data = {0};
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100308 struct scatterlist sg;
309
310 BUG_ON(!card);
311 BUG_ON(!card->host);
312
David Brownellaf517152007-08-08 09:11:32 -0700313 /* NOTE: caller guarantees resp is heap-allocated */
314
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100315 mode = !!mode;
316 value &= 0xF;
317
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100318 mrq.cmd = &cmd;
319 mrq.data = &data;
320
321 cmd.opcode = SD_SWITCH;
322 cmd.arg = mode << 31 | 0x00FFFFFF;
323 cmd.arg &= ~(0xF << (group * 4));
324 cmd.arg |= value << (group * 4);
David Brownellaf517152007-08-08 09:11:32 -0700325 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100326
327 data.blksz = 64;
328 data.blocks = 1;
329 data.flags = MMC_DATA_READ;
330 data.sg = &sg;
331 data.sg_len = 1;
332
333 sg_init_one(&sg, resp, 64);
334
Pierre Ossmanb146d262007-07-24 19:16:54 +0200335 mmc_set_data_timeout(&data, card);
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100336
337 mmc_wait_for_req(card->host, &mrq);
338
Pierre Ossman17b04292007-07-22 22:18:46 +0200339 if (cmd.error)
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100340 return cmd.error;
Pierre Ossman17b04292007-07-22 22:18:46 +0200341 if (data.error)
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100342 return data.error;
343
Pierre Ossman17b04292007-07-22 22:18:46 +0200344 return 0;
Pierre Ossmanda7fbe52006-12-24 22:46:55 +0100345}
346
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700347int mmc_app_sd_status(struct mmc_card *card, void *ssr)
348{
349 int err;
Venkatraman Sad5fd972011-08-25 00:30:50 +0530350 struct mmc_request mrq = {NULL};
Chris Ball1278dba2011-04-13 23:40:30 -0400351 struct mmc_command cmd = {0};
Chris Balla61ad2b2011-04-13 23:46:05 -0400352 struct mmc_data data = {0};
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700353 struct scatterlist sg;
354
355 BUG_ON(!card);
356 BUG_ON(!card->host);
357 BUG_ON(!ssr);
358
359 /* NOTE: caller guarantees ssr is heap-allocated */
360
361 err = mmc_app_cmd(card->host, card);
362 if (err)
363 return err;
364
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700365 mrq.cmd = &cmd;
366 mrq.data = &data;
367
368 cmd.opcode = SD_APP_SD_STATUS;
369 cmd.arg = 0;
370 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_ADTC;
371
372 data.blksz = 64;
373 data.blocks = 1;
374 data.flags = MMC_DATA_READ;
375 data.sg = &sg;
376 data.sg_len = 1;
377
378 sg_init_one(&sg, ssr, 64);
379
380 mmc_set_data_timeout(&data, card);
381
382 mmc_wait_for_req(card->host, &mrq);
383
384 if (cmd.error)
385 return cmd.error;
386 if (data.error)
387 return data.error;
388
389 return 0;
390}