Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * linux/drivers/mmc/core/sd_ops.h
4 *
5 * Copyright 2006-2007 Pierre Ossman
6 */
7
8#include <linux/slab.h>
9#include <linux/types.h>
10#include <linux/export.h>
11#include <linux/scatterlist.h>
12
13#include <linux/mmc/host.h>
14#include <linux/mmc/card.h>
15#include <linux/mmc/mmc.h>
16#include <linux/mmc/sd.h>
17
18#include "core.h"
19#include "sd_ops.h"
20#include "mmc_ops.h"
21
22int mmc_app_cmd(struct mmc_host *host, struct mmc_card *card)
23{
24 int err;
25 struct mmc_command cmd = {};
26
27 if (WARN_ON(card && card->host != host))
28 return -EINVAL;
29
30 cmd.opcode = MMC_APP_CMD;
31
32 if (card) {
33 cmd.arg = card->rca << 16;
34 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
35 } else {
36 cmd.arg = 0;
37 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_BCR;
38 }
39
40 err = mmc_wait_for_cmd(host, &cmd, 0);
41 if (err)
42 return err;
43
44 /* Check that card supported application commands */
45 if (!mmc_host_is_spi(host) && !(cmd.resp[0] & R1_APP_CMD))
46 return -EOPNOTSUPP;
47
48 return 0;
49}
50EXPORT_SYMBOL_GPL(mmc_app_cmd);
51
52static int mmc_wait_for_app_cmd(struct mmc_host *host, struct mmc_card *card,
53 struct mmc_command *cmd)
54{
55 struct mmc_request mrq = {};
56 int i, err = -EIO;
57
58 /*
59 * We have to resend MMC_APP_CMD for each attempt so
60 * we cannot use the retries field in mmc_command.
61 */
62 for (i = 0; i <= MMC_CMD_RETRIES; i++) {
63 err = mmc_app_cmd(host, card);
64 if (err) {
65 /* no point in retrying; no APP commands allowed */
66 if (mmc_host_is_spi(host)) {
67 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
68 break;
69 }
70 continue;
71 }
72
73 memset(&mrq, 0, sizeof(struct mmc_request));
74
75 memset(cmd->resp, 0, sizeof(cmd->resp));
76 cmd->retries = 0;
77
78 mrq.cmd = cmd;
79 cmd->data = NULL;
80
81 mmc_wait_for_req(host, &mrq);
82
83 err = cmd->error;
84 if (!cmd->error)
85 break;
86
87 /* no point in retrying illegal APP commands */
88 if (mmc_host_is_spi(host)) {
89 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
90 break;
91 }
92 }
93
94 return err;
95}
96
97int mmc_app_set_bus_width(struct mmc_card *card, int width)
98{
99 struct mmc_command cmd = {};
100
101 cmd.opcode = SD_APP_SET_BUS_WIDTH;
102 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
103
104 switch (width) {
105 case MMC_BUS_WIDTH_1:
106 cmd.arg = SD_BUS_WIDTH_1;
107 break;
108 case MMC_BUS_WIDTH_4:
109 cmd.arg = SD_BUS_WIDTH_4;
110 break;
111 default:
112 return -EINVAL;
113 }
114
115 return mmc_wait_for_app_cmd(card->host, card, &cmd);
116}
117
118int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr)
119{
120 struct mmc_command cmd = {};
121 int i, err = 0;
122
123 cmd.opcode = SD_APP_OP_COND;
124 if (mmc_host_is_spi(host))
125 cmd.arg = ocr & (1 << 30); /* SPI only defines one bit */
126 else
127 cmd.arg = ocr;
128 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R3 | MMC_CMD_BCR;
129
130 for (i = 100; i; i--) {
131 err = mmc_wait_for_app_cmd(host, NULL, &cmd);
132 if (err)
133 break;
134
135 /* if we're just probing, do a single pass */
136 if (ocr == 0)
137 break;
138
139 /* otherwise wait until reset completes */
140 if (mmc_host_is_spi(host)) {
141 if (!(cmd.resp[0] & R1_SPI_IDLE))
142 break;
143 } else {
144 if (cmd.resp[0] & MMC_CARD_BUSY)
145 break;
146 }
147
148 err = -ETIMEDOUT;
149
150 mmc_delay(10);
151 }
152
153 if (!i)
154 pr_err("%s: card never left busy state\n", mmc_hostname(host));
155
156 if (rocr && !mmc_host_is_spi(host))
157 *rocr = cmd.resp[0];
158
159 return err;
160}
161
162static int __mmc_send_if_cond(struct mmc_host *host, u32 ocr, u8 pcie_bits,
163 u32 *resp)
164{
165 struct mmc_command cmd = {};
166 int err;
167 static const u8 test_pattern = 0xAA;
168 u8 result_pattern;
169
170 /*
171 * To support SD 2.0 cards, we must always invoke SD_SEND_IF_COND
172 * before SD_APP_OP_COND. This command will harmlessly fail for
173 * SD 1.0 cards.
174 */
175 cmd.opcode = SD_SEND_IF_COND;
176 cmd.arg = ((ocr & 0xFF8000) != 0) << 8 | pcie_bits << 8 | test_pattern;
177 cmd.flags = MMC_RSP_SPI_R7 | MMC_RSP_R7 | MMC_CMD_BCR;
178
179 err = mmc_wait_for_cmd(host, &cmd, 0);
180 if (err)
181 return err;
182
183 if (mmc_host_is_spi(host))
184 result_pattern = cmd.resp[1] & 0xFF;
185 else
186 result_pattern = cmd.resp[0] & 0xFF;
187
188 if (result_pattern != test_pattern)
189 return -EIO;
190
191 if (resp)
192 *resp = cmd.resp[0];
193
194 return 0;
195}
196
197int mmc_send_if_cond(struct mmc_host *host, u32 ocr)
198{
199 return __mmc_send_if_cond(host, ocr, 0, NULL);
200}
201
202int mmc_send_if_cond_pcie(struct mmc_host *host, u32 ocr)
203{
204 u32 resp = 0;
205 u8 pcie_bits = 0;
206 int ret;
207
208 if (host->caps2 & MMC_CAP2_SD_EXP) {
209 /* Probe card for SD express support via PCIe. */
210 pcie_bits = 0x10;
211 if (host->caps2 & MMC_CAP2_SD_EXP_1_2V)
212 /* Probe also for 1.2V support. */
213 pcie_bits = 0x30;
214 }
215
216 ret = __mmc_send_if_cond(host, ocr, pcie_bits, &resp);
217 if (ret)
218 return 0;
219
220 /* Continue with the SD express init, if the card supports it. */
221 resp &= 0x3000;
222 if (pcie_bits && resp) {
223 if (resp == 0x3000)
224 host->ios.timing = MMC_TIMING_SD_EXP_1_2V;
225 else
226 host->ios.timing = MMC_TIMING_SD_EXP;
227
228 /*
229 * According to the spec the clock shall also be gated, but
230 * let's leave this to the host driver for more flexibility.
231 */
232 return host->ops->init_sd_express(host, &host->ios);
233 }
234
235 return 0;
236}
237
238int mmc_send_relative_addr(struct mmc_host *host, unsigned int *rca)
239{
240 int err;
241 struct mmc_command cmd = {};
242
243 cmd.opcode = SD_SEND_RELATIVE_ADDR;
244 cmd.arg = 0;
245 cmd.flags = MMC_RSP_R6 | MMC_CMD_BCR;
246
247 err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES);
248 if (err)
249 return err;
250
251 *rca = cmd.resp[0] >> 16;
252
253 return 0;
254}
255
256int mmc_app_send_scr(struct mmc_card *card)
257{
258 int err;
259 struct mmc_request mrq = {};
260 struct mmc_command cmd = {};
261 struct mmc_data data = {};
262 struct scatterlist sg;
263 __be32 *scr;
264
265 /* NOTE: caller guarantees scr is heap-allocated */
266
267 err = mmc_app_cmd(card->host, card);
268 if (err)
269 return err;
270
271 /* dma onto stack is unsafe/nonportable, but callers to this
272 * routine normally provide temporary on-stack buffers ...
273 */
274 scr = kmalloc(sizeof(card->raw_scr), GFP_KERNEL);
275 if (!scr)
276 return -ENOMEM;
277
278 mrq.cmd = &cmd;
279 mrq.data = &data;
280
281 cmd.opcode = SD_APP_SEND_SCR;
282 cmd.arg = 0;
283 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
284
285 data.blksz = 8;
286 data.blocks = 1;
287 data.flags = MMC_DATA_READ;
288 data.sg = &sg;
289 data.sg_len = 1;
290
291 sg_init_one(&sg, scr, 8);
292
293 mmc_set_data_timeout(&data, card);
294
295 mmc_wait_for_req(card->host, &mrq);
296
297 card->raw_scr[0] = be32_to_cpu(scr[0]);
298 card->raw_scr[1] = be32_to_cpu(scr[1]);
299
300 kfree(scr);
301
302 if (cmd.error)
303 return cmd.error;
304 if (data.error)
305 return data.error;
306
307 return 0;
308}
309
310int mmc_sd_switch(struct mmc_card *card, int mode, int group,
311 u8 value, u8 *resp)
312{
313 u32 cmd_args;
314
315 /* NOTE: caller guarantees resp is heap-allocated */
316
317 mode = !!mode;
318 value &= 0xF;
319 cmd_args = mode << 31 | 0x00FFFFFF;
320 cmd_args &= ~(0xF << (group * 4));
321 cmd_args |= value << (group * 4);
322
323 return mmc_send_adtc_data(card, card->host, SD_SWITCH, cmd_args, resp,
324 64);
325}
326EXPORT_SYMBOL_GPL(mmc_sd_switch);
327
328int mmc_app_sd_status(struct mmc_card *card, void *ssr)
329{
330 int err;
331 struct mmc_request mrq = {};
332 struct mmc_command cmd = {};
333 struct mmc_data data = {};
334 struct scatterlist sg;
335
336 /* NOTE: caller guarantees ssr is heap-allocated */
337
338 err = mmc_app_cmd(card->host, card);
339 if (err)
340 return err;
341
342 mrq.cmd = &cmd;
343 mrq.data = &data;
344
345 cmd.opcode = SD_APP_SD_STATUS;
346 cmd.arg = 0;
347 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_ADTC;
348
349 data.blksz = 64;
350 data.blocks = 1;
351 data.flags = MMC_DATA_READ;
352 data.sg = &sg;
353 data.sg_len = 1;
354
355 sg_init_one(&sg, ssr, 64);
356
357 mmc_set_data_timeout(&data, card);
358
359 mmc_wait_for_req(card->host, &mrq);
360
361 if (cmd.error)
362 return cmd.error;
363 if (data.error)
364 return data.error;
365
366 return 0;
367}
1/*
2 * linux/drivers/mmc/core/sd_ops.h
3 *
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
12#include <linux/slab.h>
13#include <linux/types.h>
14#include <linux/scatterlist.h>
15
16#include <linux/mmc/host.h>
17#include <linux/mmc/card.h>
18#include <linux/mmc/mmc.h>
19#include <linux/mmc/sd.h>
20
21#include "core.h"
22#include "sd_ops.h"
23
24int mmc_app_cmd(struct mmc_host *host, struct mmc_card *card)
25{
26 int err;
27 struct mmc_command cmd = {0};
28
29 BUG_ON(!host);
30 BUG_ON(card && (card->host != host));
31
32 cmd.opcode = MMC_APP_CMD;
33
34 if (card) {
35 cmd.arg = card->rca << 16;
36 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
37 } else {
38 cmd.arg = 0;
39 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_BCR;
40 }
41
42 err = mmc_wait_for_cmd(host, &cmd, 0);
43 if (err)
44 return err;
45
46 /* Check that card supported application commands */
47 if (!mmc_host_is_spi(host) && !(cmd.resp[0] & R1_APP_CMD))
48 return -EOPNOTSUPP;
49
50 return 0;
51}
52EXPORT_SYMBOL_GPL(mmc_app_cmd);
53
54/**
55 * mmc_wait_for_app_cmd - start an application command and wait for
56 completion
57 * @host: MMC host to start command
58 * @card: Card to send MMC_APP_CMD to
59 * @cmd: MMC command to start
60 * @retries: maximum number of retries
61 *
62 * Sends a MMC_APP_CMD, checks the card response, sends the command
63 * in the parameter and waits for it to complete. Return any error
64 * that occurred while the command was executing. Do not attempt to
65 * parse the response.
66 */
67int mmc_wait_for_app_cmd(struct mmc_host *host, struct mmc_card *card,
68 struct mmc_command *cmd, int retries)
69{
70 struct mmc_request mrq = {0};
71
72 int i, err;
73
74 BUG_ON(!cmd);
75 BUG_ON(retries < 0);
76
77 err = -EIO;
78
79 /*
80 * We have to resend MMC_APP_CMD for each attempt so
81 * we cannot use the retries field in mmc_command.
82 */
83 for (i = 0;i <= retries;i++) {
84 err = mmc_app_cmd(host, card);
85 if (err) {
86 /* no point in retrying; no APP commands allowed */
87 if (mmc_host_is_spi(host)) {
88 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
89 break;
90 }
91 continue;
92 }
93
94 memset(&mrq, 0, sizeof(struct mmc_request));
95
96 memset(cmd->resp, 0, sizeof(cmd->resp));
97 cmd->retries = 0;
98
99 mrq.cmd = cmd;
100 cmd->data = NULL;
101
102 mmc_wait_for_req(host, &mrq);
103
104 err = cmd->error;
105 if (!cmd->error)
106 break;
107
108 /* no point in retrying illegal APP commands */
109 if (mmc_host_is_spi(host)) {
110 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
111 break;
112 }
113 }
114
115 return err;
116}
117
118EXPORT_SYMBOL(mmc_wait_for_app_cmd);
119
120int mmc_app_set_bus_width(struct mmc_card *card, int width)
121{
122 int err;
123 struct mmc_command cmd = {0};
124
125 BUG_ON(!card);
126 BUG_ON(!card->host);
127
128 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:
139 return -EINVAL;
140 }
141
142 err = mmc_wait_for_app_cmd(card->host, card, &cmd, MMC_CMD_RETRIES);
143 if (err)
144 return err;
145
146 return 0;
147}
148
149int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr)
150{
151 struct mmc_command cmd = {0};
152 int i, err = 0;
153
154 BUG_ON(!host);
155
156 cmd.opcode = SD_APP_OP_COND;
157 if (mmc_host_is_spi(host))
158 cmd.arg = ocr & (1 << 30); /* SPI only defines one bit */
159 else
160 cmd.arg = ocr;
161 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R3 | MMC_CMD_BCR;
162
163 for (i = 100; i; i--) {
164 err = mmc_wait_for_app_cmd(host, NULL, &cmd, MMC_CMD_RETRIES);
165 if (err)
166 break;
167
168 /* if we're just probing, do a single pass */
169 if (ocr == 0)
170 break;
171
172 /* otherwise wait until reset completes */
173 if (mmc_host_is_spi(host)) {
174 if (!(cmd.resp[0] & R1_SPI_IDLE))
175 break;
176 } else {
177 if (cmd.resp[0] & MMC_CARD_BUSY)
178 break;
179 }
180
181 err = -ETIMEDOUT;
182
183 mmc_delay(10);
184 }
185
186 if (rocr && !mmc_host_is_spi(host))
187 *rocr = cmd.resp[0];
188
189 return err;
190}
191
192int mmc_send_if_cond(struct mmc_host *host, u32 ocr)
193{
194 struct mmc_command cmd = {0};
195 int err;
196 static const u8 test_pattern = 0xAA;
197 u8 result_pattern;
198
199 /*
200 * To support SD 2.0 cards, we must always invoke SD_SEND_IF_COND
201 * before SD_APP_OP_COND. This command will harmlessly fail for
202 * SD 1.0 cards.
203 */
204 cmd.opcode = SD_SEND_IF_COND;
205 cmd.arg = ((ocr & 0xFF8000) != 0) << 8 | test_pattern;
206 cmd.flags = MMC_RSP_SPI_R7 | MMC_RSP_R7 | MMC_CMD_BCR;
207
208 err = mmc_wait_for_cmd(host, &cmd, 0);
209 if (err)
210 return err;
211
212 if (mmc_host_is_spi(host))
213 result_pattern = cmd.resp[1] & 0xFF;
214 else
215 result_pattern = cmd.resp[0] & 0xFF;
216
217 if (result_pattern != test_pattern)
218 return -EIO;
219
220 return 0;
221}
222
223int mmc_send_relative_addr(struct mmc_host *host, unsigned int *rca)
224{
225 int err;
226 struct mmc_command cmd = {0};
227
228 BUG_ON(!host);
229 BUG_ON(!rca);
230
231 cmd.opcode = SD_SEND_RELATIVE_ADDR;
232 cmd.arg = 0;
233 cmd.flags = MMC_RSP_R6 | MMC_CMD_BCR;
234
235 err = mmc_wait_for_cmd(host, &cmd, MMC_CMD_RETRIES);
236 if (err)
237 return err;
238
239 *rca = cmd.resp[0] >> 16;
240
241 return 0;
242}
243
244int mmc_app_send_scr(struct mmc_card *card, u32 *scr)
245{
246 int err;
247 struct mmc_request mrq = {0};
248 struct mmc_command cmd = {0};
249 struct mmc_data data = {0};
250 struct scatterlist sg;
251 void *data_buf;
252
253 BUG_ON(!card);
254 BUG_ON(!card->host);
255 BUG_ON(!scr);
256
257 /* NOTE: caller guarantees scr is heap-allocated */
258
259 err = mmc_app_cmd(card->host, card);
260 if (err)
261 return err;
262
263 /* dma onto stack is unsafe/nonportable, but callers to this
264 * routine normally provide temporary on-stack buffers ...
265 */
266 data_buf = kmalloc(sizeof(card->raw_scr), GFP_KERNEL);
267 if (data_buf == NULL)
268 return -ENOMEM;
269
270 mrq.cmd = &cmd;
271 mrq.data = &data;
272
273 cmd.opcode = SD_APP_SEND_SCR;
274 cmd.arg = 0;
275 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
276
277 data.blksz = 8;
278 data.blocks = 1;
279 data.flags = MMC_DATA_READ;
280 data.sg = &sg;
281 data.sg_len = 1;
282
283 sg_init_one(&sg, data_buf, 8);
284
285 mmc_set_data_timeout(&data, card);
286
287 mmc_wait_for_req(card->host, &mrq);
288
289 memcpy(scr, data_buf, sizeof(card->raw_scr));
290 kfree(data_buf);
291
292 if (cmd.error)
293 return cmd.error;
294 if (data.error)
295 return data.error;
296
297 scr[0] = be32_to_cpu(scr[0]);
298 scr[1] = be32_to_cpu(scr[1]);
299
300 return 0;
301}
302
303int mmc_sd_switch(struct mmc_card *card, int mode, int group,
304 u8 value, u8 *resp)
305{
306 struct mmc_request mrq = {0};
307 struct mmc_command cmd = {0};
308 struct mmc_data data = {0};
309 struct scatterlist sg;
310
311 BUG_ON(!card);
312 BUG_ON(!card->host);
313
314 /* NOTE: caller guarantees resp is heap-allocated */
315
316 mode = !!mode;
317 value &= 0xF;
318
319 mrq.cmd = &cmd;
320 mrq.data = &data;
321
322 cmd.opcode = SD_SWITCH;
323 cmd.arg = mode << 31 | 0x00FFFFFF;
324 cmd.arg &= ~(0xF << (group * 4));
325 cmd.arg |= value << (group * 4);
326 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_ADTC;
327
328 data.blksz = 64;
329 data.blocks = 1;
330 data.flags = MMC_DATA_READ;
331 data.sg = &sg;
332 data.sg_len = 1;
333
334 sg_init_one(&sg, resp, 64);
335
336 mmc_set_data_timeout(&data, card);
337
338 mmc_wait_for_req(card->host, &mrq);
339
340 if (cmd.error)
341 return cmd.error;
342 if (data.error)
343 return data.error;
344
345 return 0;
346}
347
348int mmc_app_sd_status(struct mmc_card *card, void *ssr)
349{
350 int err;
351 struct mmc_request mrq = {0};
352 struct mmc_command cmd = {0};
353 struct mmc_data data = {0};
354 struct scatterlist sg;
355
356 BUG_ON(!card);
357 BUG_ON(!card->host);
358 BUG_ON(!ssr);
359
360 /* NOTE: caller guarantees ssr is heap-allocated */
361
362 err = mmc_app_cmd(card->host, card);
363 if (err)
364 return err;
365
366 mrq.cmd = &cmd;
367 mrq.data = &data;
368
369 cmd.opcode = SD_APP_SD_STATUS;
370 cmd.arg = 0;
371 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_ADTC;
372
373 data.blksz = 64;
374 data.blocks = 1;
375 data.flags = MMC_DATA_READ;
376 data.sg = &sg;
377 data.sg_len = 1;
378
379 sg_init_one(&sg, ssr, 64);
380
381 mmc_set_data_timeout(&data, card);
382
383 mmc_wait_for_req(card->host, &mrq);
384
385 if (cmd.error)
386 return cmd.error;
387 if (data.error)
388 return data.error;
389
390 return 0;
391}