2 * linux/drivers/mmc/core/sd_ops.h
4 * Copyright 2006-2007 Pierre Ossman
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.
12 #include <linux/types.h>
13 #include <asm/scatterlist.h>
14 #include <linux/scatterlist.h>
16 #include <linux/mmc/host.h>
17 #include <linux/mmc/card.h>
18 #include <linux/mmc/mmc.h>
19 #include <linux/mmc/sd.h>
24 static int mmc_app_cmd(struct mmc_host *host, struct mmc_card *card)
27 struct mmc_command cmd;
30 BUG_ON(card && (card->host != host));
32 cmd.opcode = MMC_APP_CMD;
35 cmd.arg = card->rca << 16;
36 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
39 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_BCR;
42 err = mmc_wait_for_cmd(host, &cmd, 0);
46 /* Check that card supported application commands */
47 if (!mmc_host_is_spi(host) && !(cmd.resp[0] & R1_APP_CMD))
54 * mmc_wait_for_app_cmd - start an application command and wait for
56 * @host: MMC host to start command
57 * @card: Card to send MMC_APP_CMD to
58 * @cmd: MMC command to start
59 * @retries: maximum number of retries
61 * Sends a MMC_APP_CMD, checks the card response, sends the command
62 * in the parameter and waits for it to complete. Return any error
63 * that occurred while the command was executing. Do not attempt to
66 int mmc_wait_for_app_cmd(struct mmc_host *host, struct mmc_card *card,
67 struct mmc_command *cmd, int retries)
69 struct mmc_request mrq;
79 * We have to resend MMC_APP_CMD for each attempt so
80 * we cannot use the retries field in mmc_command.
82 for (i = 0;i <= retries;i++) {
83 memset(&mrq, 0, sizeof(struct mmc_request));
85 err = mmc_app_cmd(host, card);
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)
95 memset(&mrq, 0, sizeof(struct mmc_request));
97 memset(cmd->resp, 0, sizeof(cmd->resp));
103 mmc_wait_for_req(host, &mrq);
109 /* no point in retrying illegal APP commands */
110 if (mmc_host_is_spi(host)) {
111 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
119 EXPORT_SYMBOL(mmc_wait_for_app_cmd);
121 int mmc_app_set_bus_width(struct mmc_card *card, int width)
124 struct mmc_command cmd;
129 memset(&cmd, 0, sizeof(struct mmc_command));
131 cmd.opcode = SD_APP_SET_BUS_WIDTH;
132 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
135 case MMC_BUS_WIDTH_1:
136 cmd.arg = SD_BUS_WIDTH_1;
138 case MMC_BUS_WIDTH_4:
139 cmd.arg = SD_BUS_WIDTH_4;
145 err = mmc_wait_for_app_cmd(card->host, card, &cmd, MMC_CMD_RETRIES);
152 int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr)
154 struct mmc_command cmd;
159 memset(&cmd, 0, sizeof(struct mmc_command));
161 cmd.opcode = SD_APP_OP_COND;
162 if (mmc_host_is_spi(host))
163 cmd.arg = ocr & (1 << 30); /* SPI only defines one bit */
166 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R3 | MMC_CMD_BCR;
168 for (i = 100; i; i--) {
169 err = mmc_wait_for_app_cmd(host, NULL, &cmd, MMC_CMD_RETRIES);
173 /* if we're just probing, do a single pass */
177 /* otherwise wait until reset completes */
178 if (mmc_host_is_spi(host)) {
179 if (!(cmd.resp[0] & R1_SPI_IDLE))
182 if (cmd.resp[0] & MMC_CARD_BUSY)
191 if (rocr && !mmc_host_is_spi(host))
197 int mmc_send_if_cond(struct mmc_host *host, u32 ocr)
199 struct mmc_command cmd;
201 static const u8 test_pattern = 0xAA;
205 * To support SD 2.0 cards, we must always invoke SD_SEND_IF_COND
206 * before SD_APP_OP_COND. This command will harmlessly fail for
209 cmd.opcode = SD_SEND_IF_COND;
210 cmd.arg = ((ocr & 0xFF8000) != 0) << 8 | test_pattern;
211 cmd.flags = MMC_RSP_SPI_R7 | MMC_RSP_R7 | MMC_CMD_BCR;
213 err = mmc_wait_for_cmd(host, &cmd, 0);
217 if (mmc_host_is_spi(host))
218 result_pattern = cmd.resp[1] & 0xFF;
220 result_pattern = cmd.resp[0] & 0xFF;
222 if (result_pattern != test_pattern)
228 int mmc_send_relative_addr(struct mmc_host *host, unsigned int *rca)
231 struct mmc_command cmd;
236 memset(&cmd, 0, sizeof(struct mmc_command));
238 cmd.opcode = SD_SEND_RELATIVE_ADDR;
240 cmd.flags = MMC_RSP_R6 | MMC_CMD_BCR;
242 err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES);
246 *rca = cmd.resp[0] >> 16;
251 int mmc_app_send_scr(struct mmc_card *card, u32 *scr)
254 struct mmc_request mrq;
255 struct mmc_command cmd;
256 struct mmc_data data;
257 struct scatterlist sg;
263 /* NOTE: caller guarantees scr is heap-allocated */
265 err = mmc_app_cmd(card->host, card);
269 memset(&mrq, 0, sizeof(struct mmc_request));
270 memset(&cmd, 0, sizeof(struct mmc_command));
271 memset(&data, 0, sizeof(struct mmc_data));
276 cmd.opcode = SD_APP_SEND_SCR;
278 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
282 data.flags = MMC_DATA_READ;
286 sg_init_one(&sg, scr, 8);
288 mmc_set_data_timeout(&data, card);
290 mmc_wait_for_req(card->host, &mrq);
297 scr[0] = ntohl(scr[0]);
298 scr[1] = ntohl(scr[1]);
303 int mmc_sd_switch(struct mmc_card *card, int mode, int group,
306 struct mmc_request mrq;
307 struct mmc_command cmd;
308 struct mmc_data data;
309 struct scatterlist sg;
314 /* NOTE: caller guarantees resp is heap-allocated */
319 memset(&mrq, 0, sizeof(struct mmc_request));
320 memset(&cmd, 0, sizeof(struct mmc_command));
321 memset(&data, 0, sizeof(struct mmc_data));
326 cmd.opcode = SD_SWITCH;
327 cmd.arg = mode << 31 | 0x00FFFFFF;
328 cmd.arg &= ~(0xF << (group * 4));
329 cmd.arg |= value << (group * 4);
330 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
334 data.flags = MMC_DATA_READ;
338 sg_init_one(&sg, resp, 64);
340 mmc_set_data_timeout(&data, card);
342 mmc_wait_for_req(card->host, &mrq);