blob: bbd0ccdf2af8f6f9508cad52ed5041a50a03b4b9 [file] [log] [blame]
Tom Warren21ef6a12011-05-31 10:30:37 +00001/*
2 * (C) Copyright 2009 SAMSUNG Electronics
3 * Minkyu Kang <mk7.kang@samsung.com>
4 * Jaehoon Chung <jh80.chung@samsung.com>
5 * Portions Copyright 2011 NVIDIA Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include <common.h>
23#include <mmc.h>
24#include <asm/io.h>
25#include <asm/arch/clk_rst.h>
Simon Glass4ed59e72011-09-21 12:40:04 +000026#include <asm/arch/clock.h>
Tom Warren21ef6a12011-05-31 10:30:37 +000027#include "tegra2_mmc.h"
28
29/* support 4 mmc hosts */
30struct mmc mmc_dev[4];
31struct mmc_host mmc_host[4];
32
Simon Glass4ed59e72011-09-21 12:40:04 +000033
34/**
35 * Get the host address and peripheral ID for a device. Devices are numbered
36 * from 0 to 3.
37 *
38 * @param host Structure to fill in (base, reg, mmc_id)
39 * @param dev_index Device index (0-3)
40 */
41static void tegra2_get_setup(struct mmc_host *host, int dev_index)
Tom Warren21ef6a12011-05-31 10:30:37 +000042{
Tom Warren21ef6a12011-05-31 10:30:37 +000043 debug("tegra2_get_base_mmc: dev_index = %d\n", dev_index);
44
45 switch (dev_index) {
Tom Warren21ef6a12011-05-31 10:30:37 +000046 case 1:
Simon Glass4ed59e72011-09-21 12:40:04 +000047 host->base = TEGRA2_SDMMC3_BASE;
48 host->mmc_id = PERIPH_ID_SDMMC3;
Tom Warren21ef6a12011-05-31 10:30:37 +000049 break;
50 case 2:
Simon Glass4ed59e72011-09-21 12:40:04 +000051 host->base = TEGRA2_SDMMC2_BASE;
52 host->mmc_id = PERIPH_ID_SDMMC2;
Tom Warren21ef6a12011-05-31 10:30:37 +000053 break;
54 case 3:
Simon Glass4ed59e72011-09-21 12:40:04 +000055 host->base = TEGRA2_SDMMC1_BASE;
56 host->mmc_id = PERIPH_ID_SDMMC1;
Tom Warren21ef6a12011-05-31 10:30:37 +000057 break;
Simon Glass4ed59e72011-09-21 12:40:04 +000058 case 0:
Tom Warren21ef6a12011-05-31 10:30:37 +000059 default:
Simon Glass4ed59e72011-09-21 12:40:04 +000060 host->base = TEGRA2_SDMMC4_BASE;
61 host->mmc_id = PERIPH_ID_SDMMC4;
Tom Warren21ef6a12011-05-31 10:30:37 +000062 break;
63 }
64
Simon Glass4ed59e72011-09-21 12:40:04 +000065 host->reg = (struct tegra2_mmc *)host->base;
Tom Warren21ef6a12011-05-31 10:30:37 +000066}
67
68static void mmc_prepare_data(struct mmc_host *host, struct mmc_data *data)
69{
70 unsigned char ctrl;
71
72 debug("data->dest: %08X, data->blocks: %u, data->blocksize: %u\n",
73 (u32)data->dest, data->blocks, data->blocksize);
74
75 writel((u32)data->dest, &host->reg->sysad);
76 /*
77 * DMASEL[4:3]
78 * 00 = Selects SDMA
79 * 01 = Reserved
80 * 10 = Selects 32-bit Address ADMA2
81 * 11 = Selects 64-bit Address ADMA2
82 */
83 ctrl = readb(&host->reg->hostctl);
Anton staaf8e42f0d2011-11-10 11:56:49 +000084 ctrl &= ~TEGRA_MMC_HOSTCTL_DMASEL_MASK;
85 ctrl |= TEGRA_MMC_HOSTCTL_DMASEL_SDMA;
Tom Warren21ef6a12011-05-31 10:30:37 +000086 writeb(ctrl, &host->reg->hostctl);
87
88 /* We do not handle DMA boundaries, so set it to max (512 KiB) */
89 writew((7 << 12) | (data->blocksize & 0xFFF), &host->reg->blksize);
90 writew(data->blocks, &host->reg->blkcnt);
91}
92
93static void mmc_set_transfer_mode(struct mmc_host *host, struct mmc_data *data)
94{
95 unsigned short mode;
96 debug(" mmc_set_transfer_mode called\n");
97 /*
98 * TRNMOD
99 * MUL1SIN0[5] : Multi/Single Block Select
100 * RD1WT0[4] : Data Transfer Direction Select
101 * 1 = read
102 * 0 = write
103 * ENACMD12[2] : Auto CMD12 Enable
104 * ENBLKCNT[1] : Block Count Enable
105 * ENDMA[0] : DMA Enable
106 */
Anton staaf8e42f0d2011-11-10 11:56:49 +0000107 mode = (TEGRA_MMC_TRNMOD_DMA_ENABLE |
108 TEGRA_MMC_TRNMOD_BLOCK_COUNT_ENABLE);
109
Tom Warren21ef6a12011-05-31 10:30:37 +0000110 if (data->blocks > 1)
Anton staaf8e42f0d2011-11-10 11:56:49 +0000111 mode |= TEGRA_MMC_TRNMOD_MULTI_BLOCK_SELECT;
112
Tom Warren21ef6a12011-05-31 10:30:37 +0000113 if (data->flags & MMC_DATA_READ)
Anton staaf8e42f0d2011-11-10 11:56:49 +0000114 mode |= TEGRA_MMC_TRNMOD_DATA_XFER_DIR_SEL_READ;
Tom Warren21ef6a12011-05-31 10:30:37 +0000115
116 writew(mode, &host->reg->trnmod);
117}
118
119static int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
120 struct mmc_data *data)
121{
122 struct mmc_host *host = (struct mmc_host *)mmc->priv;
123 int flags, i;
124 unsigned int timeout;
125 unsigned int mask;
126 unsigned int retry = 0x100000;
127 debug(" mmc_send_cmd called\n");
128
129 /* Wait max 10 ms */
130 timeout = 10;
131
132 /*
133 * PRNSTS
134 * CMDINHDAT[1] : Command Inhibit (DAT)
135 * CMDINHCMD[0] : Command Inhibit (CMD)
136 */
Anton staaf8e42f0d2011-11-10 11:56:49 +0000137 mask = TEGRA_MMC_PRNSTS_CMD_INHIBIT_CMD;
Tom Warren21ef6a12011-05-31 10:30:37 +0000138 if ((data != NULL) || (cmd->resp_type & MMC_RSP_BUSY))
Anton staaf8e42f0d2011-11-10 11:56:49 +0000139 mask |= TEGRA_MMC_PRNSTS_CMD_INHIBIT_DAT;
Tom Warren21ef6a12011-05-31 10:30:37 +0000140
141 /*
142 * We shouldn't wait for data inhibit for stop commands, even
143 * though they might use busy signaling
144 */
145 if (data)
Anton staaf8e42f0d2011-11-10 11:56:49 +0000146 mask &= ~TEGRA_MMC_PRNSTS_CMD_INHIBIT_DAT;
Tom Warren21ef6a12011-05-31 10:30:37 +0000147
148 while (readl(&host->reg->prnsts) & mask) {
149 if (timeout == 0) {
150 printf("%s: timeout error\n", __func__);
151 return -1;
152 }
153 timeout--;
154 udelay(1000);
155 }
156
157 if (data)
158 mmc_prepare_data(host, data);
159
160 debug("cmd->arg: %08x\n", cmd->cmdarg);
161 writel(cmd->cmdarg, &host->reg->argument);
162
163 if (data)
164 mmc_set_transfer_mode(host, data);
165
166 if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY))
167 return -1;
168
169 /*
170 * CMDREG
171 * CMDIDX[13:8] : Command index
172 * DATAPRNT[5] : Data Present Select
173 * ENCMDIDX[4] : Command Index Check Enable
174 * ENCMDCRC[3] : Command CRC Check Enable
175 * RSPTYP[1:0]
176 * 00 = No Response
177 * 01 = Length 136
178 * 10 = Length 48
179 * 11 = Length 48 Check busy after response
180 */
181 if (!(cmd->resp_type & MMC_RSP_PRESENT))
Anton staaf8e42f0d2011-11-10 11:56:49 +0000182 flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_NO_RESPONSE;
Tom Warren21ef6a12011-05-31 10:30:37 +0000183 else if (cmd->resp_type & MMC_RSP_136)
Anton staaf8e42f0d2011-11-10 11:56:49 +0000184 flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_136;
Tom Warren21ef6a12011-05-31 10:30:37 +0000185 else if (cmd->resp_type & MMC_RSP_BUSY)
Anton staaf8e42f0d2011-11-10 11:56:49 +0000186 flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_48_BUSY;
Tom Warren21ef6a12011-05-31 10:30:37 +0000187 else
Anton staaf8e42f0d2011-11-10 11:56:49 +0000188 flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_48;
Tom Warren21ef6a12011-05-31 10:30:37 +0000189
190 if (cmd->resp_type & MMC_RSP_CRC)
Anton staaf8e42f0d2011-11-10 11:56:49 +0000191 flags |= TEGRA_MMC_TRNMOD_CMD_CRC_CHECK;
Tom Warren21ef6a12011-05-31 10:30:37 +0000192 if (cmd->resp_type & MMC_RSP_OPCODE)
Anton staaf8e42f0d2011-11-10 11:56:49 +0000193 flags |= TEGRA_MMC_TRNMOD_CMD_INDEX_CHECK;
Tom Warren21ef6a12011-05-31 10:30:37 +0000194 if (data)
Anton staaf8e42f0d2011-11-10 11:56:49 +0000195 flags |= TEGRA_MMC_TRNMOD_DATA_PRESENT_SELECT_DATA_TRANSFER;
Tom Warren21ef6a12011-05-31 10:30:37 +0000196
197 debug("cmd: %d\n", cmd->cmdidx);
198
199 writew((cmd->cmdidx << 8) | flags, &host->reg->cmdreg);
200
201 for (i = 0; i < retry; i++) {
202 mask = readl(&host->reg->norintsts);
203 /* Command Complete */
Anton staaf8e42f0d2011-11-10 11:56:49 +0000204 if (mask & TEGRA_MMC_NORINTSTS_CMD_COMPLETE) {
Tom Warren21ef6a12011-05-31 10:30:37 +0000205 if (!data)
206 writel(mask, &host->reg->norintsts);
207 break;
208 }
209 }
210
211 if (i == retry) {
212 printf("%s: waiting for status update\n", __func__);
213 return TIMEOUT;
214 }
215
Anton staaf8e42f0d2011-11-10 11:56:49 +0000216 if (mask & TEGRA_MMC_NORINTSTS_CMD_TIMEOUT) {
Tom Warren21ef6a12011-05-31 10:30:37 +0000217 /* Timeout Error */
218 debug("timeout: %08x cmd %d\n", mask, cmd->cmdidx);
219 return TIMEOUT;
Anton staaf8e42f0d2011-11-10 11:56:49 +0000220 } else if (mask & TEGRA_MMC_NORINTSTS_ERR_INTERRUPT) {
Tom Warren21ef6a12011-05-31 10:30:37 +0000221 /* Error Interrupt */
222 debug("error: %08x cmd %d\n", mask, cmd->cmdidx);
223 return -1;
224 }
225
226 if (cmd->resp_type & MMC_RSP_PRESENT) {
227 if (cmd->resp_type & MMC_RSP_136) {
228 /* CRC is stripped so we need to do some shifting. */
229 for (i = 0; i < 4; i++) {
230 unsigned int offset =
231 (unsigned int)(&host->reg->rspreg3 - i);
232 cmd->response[i] = readl(offset) << 8;
233
234 if (i != 3) {
235 cmd->response[i] |=
236 readb(offset - 1);
237 }
238 debug("cmd->resp[%d]: %08x\n",
239 i, cmd->response[i]);
240 }
241 } else if (cmd->resp_type & MMC_RSP_BUSY) {
242 for (i = 0; i < retry; i++) {
243 /* PRNTDATA[23:20] : DAT[3:0] Line Signal */
244 if (readl(&host->reg->prnsts)
245 & (1 << 20)) /* DAT[0] */
246 break;
247 }
248
249 if (i == retry) {
250 printf("%s: card is still busy\n", __func__);
251 return TIMEOUT;
252 }
253
254 cmd->response[0] = readl(&host->reg->rspreg0);
255 debug("cmd->resp[0]: %08x\n", cmd->response[0]);
256 } else {
257 cmd->response[0] = readl(&host->reg->rspreg0);
258 debug("cmd->resp[0]: %08x\n", cmd->response[0]);
259 }
260 }
261
262 if (data) {
Anton staaf9b3d1872011-11-10 11:56:51 +0000263 unsigned long start = get_timer(0);
264
Tom Warren21ef6a12011-05-31 10:30:37 +0000265 while (1) {
266 mask = readl(&host->reg->norintsts);
267
Anton staaf8e42f0d2011-11-10 11:56:49 +0000268 if (mask & TEGRA_MMC_NORINTSTS_ERR_INTERRUPT) {
Tom Warren21ef6a12011-05-31 10:30:37 +0000269 /* Error Interrupt */
270 writel(mask, &host->reg->norintsts);
271 printf("%s: error during transfer: 0x%08x\n",
272 __func__, mask);
273 return -1;
Anton staaf8e42f0d2011-11-10 11:56:49 +0000274 } else if (mask & TEGRA_MMC_NORINTSTS_DMA_INTERRUPT) {
Anton staaf5a762e22011-11-10 11:56:50 +0000275 /*
276 * DMA Interrupt, restart the transfer where
277 * it was interrupted.
278 */
279 unsigned int address = readl(&host->reg->sysad);
280
Tom Warren21ef6a12011-05-31 10:30:37 +0000281 debug("DMA end\n");
Anton staaf5a762e22011-11-10 11:56:50 +0000282 writel(TEGRA_MMC_NORINTSTS_DMA_INTERRUPT,
283 &host->reg->norintsts);
284 writel(address, &host->reg->sysad);
Anton staaf8e42f0d2011-11-10 11:56:49 +0000285 } else if (mask & TEGRA_MMC_NORINTSTS_XFER_COMPLETE) {
Tom Warren21ef6a12011-05-31 10:30:37 +0000286 /* Transfer Complete */
287 debug("r/w is done\n");
288 break;
Anton staaf9b3d1872011-11-10 11:56:51 +0000289 } else if (get_timer(start) > 2000UL) {
290 writel(mask, &host->reg->norintsts);
291 printf("%s: MMC Timeout\n"
292 " Interrupt status 0x%08x\n"
293 " Interrupt status enable 0x%08x\n"
294 " Interrupt signal enable 0x%08x\n"
295 " Present status 0x%08x\n",
296 __func__, mask,
297 readl(&host->reg->norintstsen),
298 readl(&host->reg->norintsigen),
299 readl(&host->reg->prnsts));
300 return -1;
Tom Warren21ef6a12011-05-31 10:30:37 +0000301 }
302 }
303 writel(mask, &host->reg->norintsts);
304 }
305
306 udelay(1000);
307 return 0;
308}
309
310static void mmc_change_clock(struct mmc_host *host, uint clock)
311{
Simon Glass4ed59e72011-09-21 12:40:04 +0000312 int div;
Tom Warren21ef6a12011-05-31 10:30:37 +0000313 unsigned short clk;
314 unsigned long timeout;
Simon Glass4ed59e72011-09-21 12:40:04 +0000315
Tom Warren21ef6a12011-05-31 10:30:37 +0000316 debug(" mmc_change_clock called\n");
317
Simon Glass4ed59e72011-09-21 12:40:04 +0000318 /*
319 * Change Tegra2 SDMMCx clock divisor here. Source is 216MHz,
320 * PLLP_OUT0
321 */
Tom Warren21ef6a12011-05-31 10:30:37 +0000322 if (clock == 0)
323 goto out;
Simon Glass4ed59e72011-09-21 12:40:04 +0000324 clock_adjust_periph_pll_div(host->mmc_id, CLOCK_ID_PERIPH, clock,
325 &div);
326 debug("div = %d\n", div);
Tom Warren21ef6a12011-05-31 10:30:37 +0000327
328 writew(0, &host->reg->clkcon);
329
Tom Warren21ef6a12011-05-31 10:30:37 +0000330 /*
331 * CLKCON
332 * SELFREQ[15:8] : base clock divided by value
333 * ENSDCLK[2] : SD Clock Enable
334 * STBLINTCLK[1] : Internal Clock Stable
335 * ENINTCLK[0] : Internal Clock Enable
336 */
Simon Glass4ed59e72011-09-21 12:40:04 +0000337 div >>= 1;
Anton staaf8e42f0d2011-11-10 11:56:49 +0000338 clk = ((div << TEGRA_MMC_CLKCON_SDCLK_FREQ_SEL_SHIFT) |
339 TEGRA_MMC_CLKCON_INTERNAL_CLOCK_ENABLE);
Tom Warren21ef6a12011-05-31 10:30:37 +0000340 writew(clk, &host->reg->clkcon);
341
342 /* Wait max 10 ms */
343 timeout = 10;
Anton staaf8e42f0d2011-11-10 11:56:49 +0000344 while (!(readw(&host->reg->clkcon) &
345 TEGRA_MMC_CLKCON_INTERNAL_CLOCK_STABLE)) {
Tom Warren21ef6a12011-05-31 10:30:37 +0000346 if (timeout == 0) {
347 printf("%s: timeout error\n", __func__);
348 return;
349 }
350 timeout--;
351 udelay(1000);
352 }
353
Anton staaf8e42f0d2011-11-10 11:56:49 +0000354 clk |= TEGRA_MMC_CLKCON_SD_CLOCK_ENABLE;
Tom Warren21ef6a12011-05-31 10:30:37 +0000355 writew(clk, &host->reg->clkcon);
356
357 debug("mmc_change_clock: clkcon = %08X\n", clk);
Tom Warren21ef6a12011-05-31 10:30:37 +0000358
359out:
360 host->clock = clock;
361}
362
363static void mmc_set_ios(struct mmc *mmc)
364{
365 struct mmc_host *host = mmc->priv;
366 unsigned char ctrl;
367 debug(" mmc_set_ios called\n");
368
369 debug("bus_width: %x, clock: %d\n", mmc->bus_width, mmc->clock);
370
371 /* Change clock first */
Tom Warren21ef6a12011-05-31 10:30:37 +0000372 mmc_change_clock(host, mmc->clock);
373
374 ctrl = readb(&host->reg->hostctl);
375
376 /*
377 * WIDE8[5]
378 * 0 = Depend on WIDE4
379 * 1 = 8-bit mode
380 * WIDE4[1]
381 * 1 = 4-bit mode
382 * 0 = 1-bit mode
383 */
384 if (mmc->bus_width == 8)
385 ctrl |= (1 << 5);
386 else if (mmc->bus_width == 4)
387 ctrl |= (1 << 1);
388 else
389 ctrl &= ~(1 << 1);
390
391 writeb(ctrl, &host->reg->hostctl);
392 debug("mmc_set_ios: hostctl = %08X\n", ctrl);
393}
394
395static void mmc_reset(struct mmc_host *host)
396{
397 unsigned int timeout;
398 debug(" mmc_reset called\n");
399
400 /*
401 * RSTALL[0] : Software reset for all
402 * 1 = reset
403 * 0 = work
404 */
Anton staaf8e42f0d2011-11-10 11:56:49 +0000405 writeb(TEGRA_MMC_SWRST_SW_RESET_FOR_ALL, &host->reg->swrst);
Tom Warren21ef6a12011-05-31 10:30:37 +0000406
407 host->clock = 0;
408
409 /* Wait max 100 ms */
410 timeout = 100;
411
412 /* hw clears the bit when it's done */
Anton staaf8e42f0d2011-11-10 11:56:49 +0000413 while (readb(&host->reg->swrst) & TEGRA_MMC_SWRST_SW_RESET_FOR_ALL) {
Tom Warren21ef6a12011-05-31 10:30:37 +0000414 if (timeout == 0) {
415 printf("%s: timeout error\n", __func__);
416 return;
417 }
418 timeout--;
419 udelay(1000);
420 }
421}
422
423static int mmc_core_init(struct mmc *mmc)
424{
425 struct mmc_host *host = (struct mmc_host *)mmc->priv;
426 unsigned int mask;
427 debug(" mmc_core_init called\n");
428
429 mmc_reset(host);
430
431 host->version = readw(&host->reg->hcver);
432 debug("host version = %x\n", host->version);
433
434 /* mask all */
435 writel(0xffffffff, &host->reg->norintstsen);
436 writel(0xffffffff, &host->reg->norintsigen);
437
438 writeb(0xe, &host->reg->timeoutcon); /* TMCLK * 2^27 */
439 /*
440 * NORMAL Interrupt Status Enable Register init
441 * [5] ENSTABUFRDRDY : Buffer Read Ready Status Enable
442 * [4] ENSTABUFWTRDY : Buffer write Ready Status Enable
Anton staaf5a762e22011-11-10 11:56:50 +0000443 * [3] ENSTADMAINT : DMA boundary interrupt
Tom Warren21ef6a12011-05-31 10:30:37 +0000444 * [1] ENSTASTANSCMPLT : Transfre Complete Status Enable
445 * [0] ENSTACMDCMPLT : Command Complete Status Enable
446 */
447 mask = readl(&host->reg->norintstsen);
448 mask &= ~(0xffff);
Anton staaf8e42f0d2011-11-10 11:56:49 +0000449 mask |= (TEGRA_MMC_NORINTSTSEN_CMD_COMPLETE |
450 TEGRA_MMC_NORINTSTSEN_XFER_COMPLETE |
Anton staaf5a762e22011-11-10 11:56:50 +0000451 TEGRA_MMC_NORINTSTSEN_DMA_INTERRUPT |
Anton staaf8e42f0d2011-11-10 11:56:49 +0000452 TEGRA_MMC_NORINTSTSEN_BUFFER_WRITE_READY |
453 TEGRA_MMC_NORINTSTSEN_BUFFER_READ_READY);
Tom Warren21ef6a12011-05-31 10:30:37 +0000454 writel(mask, &host->reg->norintstsen);
455
456 /*
457 * NORMAL Interrupt Signal Enable Register init
458 * [1] ENSTACMDCMPLT : Transfer Complete Signal Enable
459 */
460 mask = readl(&host->reg->norintsigen);
461 mask &= ~(0xffff);
Anton staaf8e42f0d2011-11-10 11:56:49 +0000462 mask |= TEGRA_MMC_NORINTSIGEN_XFER_COMPLETE;
Tom Warren21ef6a12011-05-31 10:30:37 +0000463 writel(mask, &host->reg->norintsigen);
464
465 return 0;
466}
467
468static int tegra2_mmc_initialize(int dev_index, int bus_width)
469{
Stephen Warrende71fbe2011-10-31 06:51:34 +0000470 struct mmc_host *host;
Tom Warren21ef6a12011-05-31 10:30:37 +0000471 struct mmc *mmc;
472
473 debug(" mmc_initialize called\n");
474
Stephen Warrende71fbe2011-10-31 06:51:34 +0000475 host = &mmc_host[dev_index];
476
477 host->clock = 0;
478 tegra2_get_setup(host, dev_index);
479
480 clock_start_periph_pll(host->mmc_id, CLOCK_ID_PERIPH, 20000000);
481
Tom Warren21ef6a12011-05-31 10:30:37 +0000482 mmc = &mmc_dev[dev_index];
483
484 sprintf(mmc->name, "Tegra2 SD/MMC");
Stephen Warrende71fbe2011-10-31 06:51:34 +0000485 mmc->priv = host;
Tom Warren21ef6a12011-05-31 10:30:37 +0000486 mmc->send_cmd = mmc_send_cmd;
487 mmc->set_ios = mmc_set_ios;
488 mmc->init = mmc_core_init;
489
490 mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
491 if (bus_width == 8)
492 mmc->host_caps = MMC_MODE_8BIT;
493 else
494 mmc->host_caps = MMC_MODE_4BIT;
Tom Warrenccf79882011-09-21 12:40:07 +0000495 mmc->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS | MMC_MODE_HC;
Tom Warren21ef6a12011-05-31 10:30:37 +0000496
497 /*
498 * min freq is for card identification, and is the highest
499 * low-speed SDIO card frequency (actually 400KHz)
500 * max freq is highest HS eMMC clock as per the SD/MMC spec
501 * (actually 52MHz)
502 * Both of these are the closest equivalents w/216MHz source
503 * clock and Tegra2 SDMMC divisors.
504 */
505 mmc->f_min = 375000;
506 mmc->f_max = 48000000;
507
Tom Warren21ef6a12011-05-31 10:30:37 +0000508 mmc_register(mmc);
509
510 return 0;
511}
512
513int tegra2_mmc_init(int dev_index, int bus_width)
514{
515 debug(" tegra2_mmc_init: index %d, bus width %d\n",
516 dev_index, bus_width);
517 return tegra2_mmc_initialize(dev_index, bus_width);
518}