blob: da870c646ebbac06734ca1b7a840bd7b01a23806 [file] [log] [blame]
Reinhard Meyer1592ef82010-08-13 10:31:06 +02001/*
2 * Copyright (C) 2010
3 * Rob Emanuele <rob@emanuele.us>
4 * Reinhard Meyer, EMK Elektronik <reinhard.meyer@emk-elektronik.de>
5 *
6 * Original Driver:
7 * Copyright (C) 2004-2006 Atmel Corporation
8 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Reinhard Meyer1592ef82010-08-13 10:31:06 +020010 */
11
12#include <common.h>
13#include <mmc.h>
14#include <part.h>
15#include <malloc.h>
16#include <asm/io.h>
17#include <asm/errno.h>
18#include <asm/byteorder.h>
19#include <asm/arch/clk.h>
Reinhard Meyer329f0f52010-11-03 16:32:56 +010020#include <asm/arch/hardware.h>
Reinhard Meyer1592ef82010-08-13 10:31:06 +020021#include "atmel_mci.h"
22
23#ifndef CONFIG_SYS_MMC_CLK_OD
24# define CONFIG_SYS_MMC_CLK_OD 150000
25#endif
26
27#define MMC_DEFAULT_BLKLEN 512
28
29#if defined(CONFIG_ATMEL_MCI_PORTB)
30# define MCI_BUS 1
31#else
32# define MCI_BUS 0
33#endif
34
Marek Vasut6b75d352015-10-23 20:46:30 +020035struct atmel_mci_priv {
36 struct mmc_config cfg;
37 struct atmel_mci *mci;
Marek Vasut877807e2015-10-23 20:46:31 +020038 unsigned int initialized:1;
Marek Vasut6b75d352015-10-23 20:46:30 +020039};
40
Bo Shenaac4b692013-04-26 00:27:06 +000041/* Read Atmel MCI IP version */
42static unsigned int atmel_mci_get_version(struct atmel_mci *mci)
43{
44 return readl(&mci->version) & 0x00000fff;
45}
46
Reinhard Meyer1592ef82010-08-13 10:31:06 +020047/*
48 * Print command and status:
49 *
50 * - always when DEBUG is defined
51 * - on command errors
52 */
53static void dump_cmd(u32 cmdr, u32 arg, u32 status, const char* msg)
54{
Marek Vasutb84c9c92015-10-23 20:46:28 +020055 debug("gen_atmel_mci: CMDR %08x (%2u) ARGR %08x (SR: %08x) %s\n",
56 cmdr, cmdr & 0x3F, arg, status, msg);
Reinhard Meyer1592ef82010-08-13 10:31:06 +020057}
58
59/* Setup for MCI Clock and Block Size */
60static void mci_set_mode(struct mmc *mmc, u32 hz, u32 blklen)
61{
Marek Vasut6b75d352015-10-23 20:46:30 +020062 struct atmel_mci_priv *priv = mmc->priv;
63 atmel_mci_t *mci = priv->mci;
Reinhard Meyer1592ef82010-08-13 10:31:06 +020064 u32 bus_hz = get_mci_clk_rate();
65 u32 clkdiv = 255;
Bo Shencd60ebd42014-07-31 14:39:30 +080066 unsigned int version = atmel_mci_get_version(mci);
67 u32 clkodd = 0;
68 u32 mr;
Reinhard Meyer1592ef82010-08-13 10:31:06 +020069
70 debug("mci: bus_hz is %u, setting clock %u Hz, block size %u\n",
71 bus_hz, hz, blklen);
72 if (hz > 0) {
Bo Shencd60ebd42014-07-31 14:39:30 +080073 if (version >= 0x500) {
74 clkdiv = DIV_ROUND_UP(bus_hz, hz) - 2;
75 if (clkdiv > 511)
76 clkdiv = 511;
77
78 clkodd = clkdiv & 1;
79 clkdiv >>= 1;
80
Marek Vasutb84c9c92015-10-23 20:46:28 +020081 debug("mci: setting clock %u Hz, block size %u\n",
82 bus_hz / (clkdiv * 2 + clkodd + 2), blklen);
Bo Shencd60ebd42014-07-31 14:39:30 +080083 } else {
84 /* find clkdiv yielding a rate <= than requested */
85 for (clkdiv = 0; clkdiv < 255; clkdiv++) {
86 if ((bus_hz / (clkdiv + 1) / 2) <= hz)
87 break;
88 }
Marek Vasutb84c9c92015-10-23 20:46:28 +020089 debug("mci: setting clock %u Hz, block size %u\n",
90 (bus_hz / (clkdiv + 1)) / 2, blklen);
Bo Shencd60ebd42014-07-31 14:39:30 +080091
Reinhard Meyer1592ef82010-08-13 10:31:06 +020092 }
93 }
Reinhard Meyer1592ef82010-08-13 10:31:06 +020094
95 blklen &= 0xfffc;
Bo Shencd60ebd42014-07-31 14:39:30 +080096
97 mr = MMCI_BF(CLKDIV, clkdiv);
98
99 /* MCI IP version >= 0x200 has R/WPROOF */
100 if (version >= 0x200)
101 mr |= MMCI_BIT(RDPROOF) | MMCI_BIT(WRPROOF);
102
Wu, Josh1db73772012-09-13 22:22:04 +0000103 /*
Bo Shencd60ebd42014-07-31 14:39:30 +0800104 * MCI IP version >= 0x500 use bit 16 as clkodd.
105 * MCI IP version < 0x500 use upper 16 bits for blklen.
Wu, Josh1db73772012-09-13 22:22:04 +0000106 */
Bo Shencd60ebd42014-07-31 14:39:30 +0800107 if (version >= 0x500)
108 mr |= MMCI_BF(CLKODD, clkodd);
109 else
110 mr |= MMCI_BF(BLKLEN, blklen);
111
112 writel(mr, &mci->mr);
113
114 /* MCI IP version >= 0x200 has blkr */
115 if (version >= 0x200)
116 writel(MMCI_BF(BLKLEN, blklen), &mci->blkr);
117
Bo Shenda55c662014-07-31 14:39:32 +0800118 if (mmc->card_caps & mmc->cfg->host_caps & MMC_MODE_HS)
119 writel(MMCI_BIT(HSMODE), &mci->cfg);
120
Marek Vasutecfb0ff2015-10-23 20:46:29 +0200121 udelay(50);
122
Marek Vasut877807e2015-10-23 20:46:31 +0200123 priv->initialized = 1;
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200124}
125
126/* Return the CMDR with flags for a given command and data packet */
127static u32 mci_encode_cmd(
128 struct mmc_cmd *cmd, struct mmc_data *data, u32* error_flags)
129{
130 u32 cmdr = 0;
131
132 /* Default Flags for Errors */
133 *error_flags |= (MMCI_BIT(DTOE) | MMCI_BIT(RDIRE) | MMCI_BIT(RENDE) |
134 MMCI_BIT(RINDE) | MMCI_BIT(RTOE));
135
136 /* Default Flags for the Command */
137 cmdr |= MMCI_BIT(MAXLAT);
138
139 if (data) {
140 cmdr |= MMCI_BF(TRCMD, 1);
141 if (data->blocks > 1)
142 cmdr |= MMCI_BF(TRTYP, 1);
143 if (data->flags & MMC_DATA_READ)
144 cmdr |= MMCI_BIT(TRDIR);
145 }
146
147 if (cmd->resp_type & MMC_RSP_CRC)
148 *error_flags |= MMCI_BIT(RCRCE);
149 if (cmd->resp_type & MMC_RSP_136)
150 cmdr |= MMCI_BF(RSPTYP, 2);
151 else if (cmd->resp_type & MMC_RSP_BUSY)
152 cmdr |= MMCI_BF(RSPTYP, 3);
153 else if (cmd->resp_type & MMC_RSP_PRESENT)
154 cmdr |= MMCI_BF(RSPTYP, 1);
155
156 return cmdr | MMCI_BF(CMDNB, cmd->cmdidx);
157}
158
159/* Entered into function pointer in mci_send_cmd */
160static u32 mci_data_read(atmel_mci_t *mci, u32* data, u32 error_flags)
161{
162 u32 status;
163
164 do {
165 status = readl(&mci->sr);
166 if (status & (error_flags | MMCI_BIT(OVRE)))
167 goto io_fail;
168 } while (!(status & MMCI_BIT(RXRDY)));
169
170 if (status & MMCI_BIT(RXRDY)) {
171 *data = readl(&mci->rdr);
172 status = 0;
173 }
174io_fail:
175 return status;
176}
177
178/* Entered into function pointer in mci_send_cmd */
179static u32 mci_data_write(atmel_mci_t *mci, u32* data, u32 error_flags)
180{
181 u32 status;
182
183 do {
184 status = readl(&mci->sr);
185 if (status & (error_flags | MMCI_BIT(UNRE)))
186 goto io_fail;
187 } while (!(status & MMCI_BIT(TXRDY)));
188
189 if (status & MMCI_BIT(TXRDY)) {
190 writel(*data, &mci->tdr);
191 status = 0;
192 }
193io_fail:
194 return status;
195}
196
197/*
198 * Entered into mmc structure during driver init
199 *
200 * Sends a command out on the bus and deals with the block data.
201 * Takes the mmc pointer, a command pointer, and an optional data pointer.
202 */
203static int
204mci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
205{
Marek Vasut6b75d352015-10-23 20:46:30 +0200206 struct atmel_mci_priv *priv = mmc->priv;
207 atmel_mci_t *mci = priv->mci;
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200208 u32 cmdr;
209 u32 error_flags = 0;
210 u32 status;
211
Marek Vasut877807e2015-10-23 20:46:31 +0200212 if (!priv->initialized) {
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200213 puts ("MCI not initialized!\n");
214 return COMM_ERR;
215 }
216
217 /* Figure out the transfer arguments */
218 cmdr = mci_encode_cmd(cmd, data, &error_flags);
219
Wu, Josh1db73772012-09-13 22:22:04 +0000220 /* For multi blocks read/write, set the block register */
221 if ((cmd->cmdidx == MMC_CMD_READ_MULTIPLE_BLOCK)
222 || (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK))
223 writel(data->blocks | MMCI_BF(BLKLEN, mmc->read_bl_len),
224 &mci->blkr);
225
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200226 /* Send the command */
227 writel(cmd->cmdarg, &mci->argr);
228 writel(cmdr, &mci->cmdr);
229
230#ifdef DEBUG
231 dump_cmd(cmdr, cmd->cmdarg, 0, "DEBUG");
232#endif
233
234 /* Wait for the command to complete */
235 while (!((status = readl(&mci->sr)) & MMCI_BIT(CMDRDY)));
236
Bo Shen93e32362013-04-26 00:27:07 +0000237 if ((status & error_flags) & MMCI_BIT(RTOE)) {
238 dump_cmd(cmdr, cmd->cmdarg, status, "Command Time Out");
239 return TIMEOUT;
240 } else if (status & error_flags) {
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200241 dump_cmd(cmdr, cmd->cmdarg, status, "Command Failed");
242 return COMM_ERR;
243 }
244
245 /* Copy the response to the response buffer */
246 if (cmd->resp_type & MMC_RSP_136) {
247 cmd->response[0] = readl(&mci->rspr);
248 cmd->response[1] = readl(&mci->rspr1);
249 cmd->response[2] = readl(&mci->rspr2);
250 cmd->response[3] = readl(&mci->rspr3);
251 } else
252 cmd->response[0] = readl(&mci->rspr);
253
254 /* transfer all of the blocks */
255 if (data) {
256 u32 word_count, block_count;
257 u32* ioptr;
258 u32 sys_blocksize, dummy, i;
259 u32 (*mci_data_op)
260 (atmel_mci_t *mci, u32* data, u32 error_flags);
261
262 if (data->flags & MMC_DATA_READ) {
263 mci_data_op = mci_data_read;
264 sys_blocksize = mmc->read_bl_len;
265 ioptr = (u32*)data->dest;
266 } else {
267 mci_data_op = mci_data_write;
268 sys_blocksize = mmc->write_bl_len;
269 ioptr = (u32*)data->src;
270 }
271
272 status = 0;
273 for (block_count = 0;
274 block_count < data->blocks && !status;
275 block_count++) {
276 word_count = 0;
277 do {
278 status = mci_data_op(mci, ioptr, error_flags);
279 word_count++;
280 ioptr++;
281 } while (!status && word_count < (data->blocksize/4));
282#ifdef DEBUG
283 if (data->flags & MMC_DATA_READ)
284 {
Wu, Josh9902c7b2014-05-07 17:06:08 +0800285 u32 cnt = word_count * 4;
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200286 printf("Read Data:\n");
Wu, Josh9902c7b2014-05-07 17:06:08 +0800287 print_buffer(0, data->dest + cnt * block_count,
288 1, cnt, 0);
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200289 }
290#endif
291#ifdef DEBUG
292 if (!status && word_count < (sys_blocksize / 4))
293 printf("filling rest of block...\n");
294#endif
295 /* fill the rest of a full block */
296 while (!status && word_count < (sys_blocksize / 4)) {
297 status = mci_data_op(mci, &dummy,
298 error_flags);
299 word_count++;
300 }
301 if (status) {
302 dump_cmd(cmdr, cmd->cmdarg, status,
303 "Data Transfer Failed");
304 return COMM_ERR;
305 }
306 }
307
308 /* Wait for Transfer End */
309 i = 0;
310 do {
311 status = readl(&mci->sr);
312
313 if (status & error_flags) {
314 dump_cmd(cmdr, cmd->cmdarg, status,
315 "DTIP Wait Failed");
316 return COMM_ERR;
317 }
318 i++;
319 } while ((status & MMCI_BIT(DTIP)) && i < 10000);
320 if (status & MMCI_BIT(DTIP)) {
321 dump_cmd(cmdr, cmd->cmdarg, status,
322 "XFER DTIP never unset, ignoring");
323 }
324 }
325
326 return 0;
327}
328
329/* Entered into mmc structure during driver init */
330static void mci_set_ios(struct mmc *mmc)
331{
Marek Vasut6b75d352015-10-23 20:46:30 +0200332 struct atmel_mci_priv *priv = mmc->priv;
333 atmel_mci_t *mci = priv->mci;
Bo Shenaac4b692013-04-26 00:27:06 +0000334 int bus_width = mmc->bus_width;
335 unsigned int version = atmel_mci_get_version(mci);
336 int busw;
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200337
338 /* Set the clock speed */
339 mci_set_mode(mmc, mmc->clock, MMC_DEFAULT_BLKLEN);
340
341 /*
342 * set the bus width and select slot for this interface
343 * there is no capability for multiple slots on the same interface yet
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200344 */
Bo Shenaac4b692013-04-26 00:27:06 +0000345 if ((version & 0xf00) >= 0x300) {
346 switch (bus_width) {
347 case 8:
348 busw = 3;
349 break;
350 case 4:
351 busw = 2;
352 break;
353 default:
354 busw = 0;
355 break;
356 }
357
358 writel(busw << 6 | MMCI_BF(SCDSEL, MCI_BUS), &mci->sdcr);
359 } else {
360 busw = (bus_width == 4) ? 1 : 0;
361
362 writel(busw << 7 | MMCI_BF(SCDSEL, MCI_BUS), &mci->sdcr);
363 }
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200364}
365
366/* Entered into mmc structure during driver init */
367static int mci_init(struct mmc *mmc)
368{
Marek Vasut6b75d352015-10-23 20:46:30 +0200369 struct atmel_mci_priv *priv = mmc->priv;
370 atmel_mci_t *mci = priv->mci;
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200371
372 /* Initialize controller */
373 writel(MMCI_BIT(SWRST), &mci->cr); /* soft reset */
374 writel(MMCI_BIT(PWSDIS), &mci->cr); /* disable power save */
375 writel(MMCI_BIT(MCIEN), &mci->cr); /* enable mci */
Reinhard Meyer2aed9d12010-11-16 09:24:41 +0100376 writel(MMCI_BF(SCDSEL, MCI_BUS), &mci->sdcr); /* select port */
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200377
Wu, Josh9924ca62012-09-13 22:22:06 +0000378 /* This delay can be optimized, but stick with max value */
379 writel(0x7f, &mci->dtor);
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200380 /* Disable Interrupts */
381 writel(~0UL, &mci->idr);
382
383 /* Set default clocks and blocklen */
384 mci_set_mode(mmc, CONFIG_SYS_MMC_CLK_OD, MMC_DEFAULT_BLKLEN);
385
386 return 0;
387}
388
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200389static const struct mmc_ops atmel_mci_ops = {
390 .send_cmd = mci_send_cmd,
391 .set_ios = mci_set_ios,
392 .init = mci_init,
393};
394
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200395/*
396 * This is the only exported function
397 *
398 * Call it with the MCI register base address
399 */
400int atmel_mci_init(void *regs)
401{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200402 struct mmc *mmc;
403 struct mmc_config *cfg;
Marek Vasut6b75d352015-10-23 20:46:30 +0200404 struct atmel_mci_priv *priv;
Bo Shenaac4b692013-04-26 00:27:06 +0000405 unsigned int version;
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200406
Marek Vasut6b75d352015-10-23 20:46:30 +0200407 priv = calloc(1, sizeof(*priv));
408 if (!priv)
409 return -ENOMEM;
Bo Shenaac4b692013-04-26 00:27:06 +0000410
Marek Vasut6b75d352015-10-23 20:46:30 +0200411 cfg = &priv->cfg;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200412
413 cfg->name = "mci";
414 cfg->ops = &atmel_mci_ops;
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200415
Marek Vasut6b75d352015-10-23 20:46:30 +0200416 priv->mci = (struct atmel_mci *)regs;
Marek Vasut877807e2015-10-23 20:46:31 +0200417 priv->initialized = 0;
Marek Vasut6b75d352015-10-23 20:46:30 +0200418
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200419 /* need to be able to pass these in on a board by board basis */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200420 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
Marek Vasut6b75d352015-10-23 20:46:30 +0200421 version = atmel_mci_get_version(priv->mci);
Bo Shenda55c662014-07-31 14:39:32 +0800422 if ((version & 0xf00) >= 0x300) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200423 cfg->host_caps = MMC_MODE_8BIT;
Bo Shenda55c662014-07-31 14:39:32 +0800424 cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz;
425 }
Bo Shenaac4b692013-04-26 00:27:06 +0000426
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200427 cfg->host_caps |= MMC_MODE_4BIT;
Bo Shenaac4b692013-04-26 00:27:06 +0000428
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200429 /*
430 * min and max frequencies determined by
431 * max and min of clock divider
432 */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200433 cfg->f_min = get_mci_clk_rate() / (2*256);
434 cfg->f_max = get_mci_clk_rate() / (2*1);
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200435
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200436 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
John Rigby8feafcc2011-04-18 05:50:08 +0000437
Marek Vasut6b75d352015-10-23 20:46:30 +0200438 mmc = mmc_create(cfg, priv);
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200439
440 if (mmc == NULL) {
Marek Vasut6b75d352015-10-23 20:46:30 +0200441 free(priv);
442 return -ENODEV;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200443 }
Marek Vasut6b75d352015-10-23 20:46:30 +0200444 /* NOTE: possibly leaking the priv structure */
Reinhard Meyer1592ef82010-08-13 10:31:06 +0200445
446 return 0;
447}