]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/mmc/omap_hsmmc.c
board: ti: dra71x-evm: Add PMIC support
[people/ms/u-boot.git] / drivers / mmc / omap_hsmmc.c
CommitLineData
de941241
SG
1/*
2 * (C) Copyright 2008
3 * Texas Instruments, <www.ti.com>
4 * Sukumar Ghorai <s-ghorai@ti.com>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation's version 2 of
12 * the License.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <config.h>
26#include <common.h>
93bfd616 27#include <malloc.h>
de941241
SG
28#include <mmc.h>
29#include <part.h>
30#include <i2c.h>
31#include <twl4030.h>
14fa2dd0 32#include <twl6030.h>
cb199102 33#include <palmas.h>
de941241
SG
34#include <asm/io.h>
35#include <asm/arch/mmc_host_def.h>
3b68939f
RQ
36#if !defined(CONFIG_SOC_KEYSTONE)
37#include <asm/gpio.h>
96e0e7b3 38#include <asm/arch/sys_proto.h>
3b68939f 39#endif
a9d6a7e2
M
40#include <dm.h>
41
42DECLARE_GLOBAL_DATA_PTR;
de941241 43
ab769f22
PA
44/* simplify defines to OMAP_HSMMC_USE_GPIO */
45#if (defined(CONFIG_OMAP_GPIO) && !defined(CONFIG_SPL_BUILD)) || \
46 (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_GPIO_SUPPORT))
47#define OMAP_HSMMC_USE_GPIO
48#else
49#undef OMAP_HSMMC_USE_GPIO
50#endif
51
25c719e2
GI
52/* common definitions for all OMAPs */
53#define SYSCTL_SRC (1 << 25)
54#define SYSCTL_SRD (1 << 26)
55
cc22b0c0
NK
56struct omap_hsmmc_data {
57 struct hsmmc *base_addr;
93bfd616 58 struct mmc_config cfg;
ab769f22 59#ifdef OMAP_HSMMC_USE_GPIO
a9d6a7e2
M
60#ifdef CONFIG_DM_MMC
61 struct gpio_desc cd_gpio; /* Change Detect GPIO */
62 struct gpio_desc wp_gpio; /* Write Protect GPIO */
63 bool cd_inverted;
64#else
e874d5b0 65 int cd_gpio;
e3913f56 66 int wp_gpio;
ab769f22 67#endif
a9d6a7e2 68#endif
cc22b0c0
NK
69};
70
eb9a28f6
NM
71/* If we fail after 1 second wait, something is really bad */
72#define MAX_RETRY_MS 1000
73
933efe64
S
74static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size);
75static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
76 unsigned int siz);
14fa2dd0 77
a9d6a7e2 78#if defined(OMAP_HSMMC_USE_GPIO) && !defined(CONFIG_DM_MMC)
e874d5b0
NK
79static int omap_mmc_setup_gpio_in(int gpio, const char *label)
80{
5915a2ad 81 int ret;
e874d5b0 82
5915a2ad
SG
83#ifndef CONFIG_DM_GPIO
84 if (!gpio_is_valid(gpio))
e874d5b0 85 return -1;
5915a2ad
SG
86#endif
87 ret = gpio_request(gpio, label);
88 if (ret)
89 return ret;
e874d5b0 90
5915a2ad
SG
91 ret = gpio_direction_input(gpio);
92 if (ret)
93 return ret;
e874d5b0
NK
94
95 return gpio;
96}
e874d5b0
NK
97#endif
98
fbf1b08a 99#if defined(CONFIG_OMAP44XX)
14fa2dd0
B
100static void omap4_vmmc_pbias_config(struct mmc *mmc)
101{
102 u32 value = 0;
14fa2dd0 103
c43c8339 104 value = readl((*ctrl)->control_pbiaslite);
14fa2dd0 105 value &= ~(MMC1_PBIASLITE_PWRDNZ | MMC1_PWRDNZ);
c43c8339 106 writel(value, (*ctrl)->control_pbiaslite);
c43c8339 107 value = readl((*ctrl)->control_pbiaslite);
14fa2dd0 108 value |= MMC1_PBIASLITE_VMODE | MMC1_PBIASLITE_PWRDNZ | MMC1_PWRDNZ;
c43c8339 109 writel(value, (*ctrl)->control_pbiaslite);
14fa2dd0
B
110}
111#endif
112
cb199102 113#if defined(CONFIG_OMAP54XX) && defined(CONFIG_PALMAS_POWER)
dd23e59d
B
114static void omap5_pbias_config(struct mmc *mmc)
115{
116 u32 value = 0;
dd23e59d 117
c43c8339 118 value = readl((*ctrl)->control_pbias);
a5d439c2
B
119 value &= ~SDCARD_PWRDNZ;
120 writel(value, (*ctrl)->control_pbias);
121 udelay(10); /* wait 10 us */
122 value &= ~SDCARD_BIAS_PWRDNZ;
c43c8339 123 writel(value, (*ctrl)->control_pbias);
dd23e59d 124
384bcae0 125 palmas_mmc1_poweron_ldo();
dd23e59d 126
c43c8339 127 value = readl((*ctrl)->control_pbias);
a5d439c2 128 value |= SDCARD_BIAS_PWRDNZ;
c43c8339 129 writel(value, (*ctrl)->control_pbias);
a5d439c2
B
130 udelay(150); /* wait 150 us */
131 value |= SDCARD_PWRDNZ;
132 writel(value, (*ctrl)->control_pbias);
133 udelay(150); /* wait 150 us */
dd23e59d
B
134}
135#endif
136
750121c3 137static unsigned char mmc_board_init(struct mmc *mmc)
de941241 138{
de941241
SG
139#if defined(CONFIG_OMAP34XX)
140 t2_t *t2_base = (t2_t *)T2_BASE;
141 struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
b1e725f2 142 u32 pbias_lite;
de941241 143
b1e725f2
GI
144 pbias_lite = readl(&t2_base->pbias_lite);
145 pbias_lite &= ~(PBIASLITEPWRDNZ1 | PBIASLITEPWRDNZ0);
5bfdd1fc
AA
146#ifdef CONFIG_TARGET_OMAP3_CAIRO
147 /* for cairo board, we need to set up 1.8 Volt bias level on MMC1 */
148 pbias_lite &= ~PBIASLITEVMODE0;
149#endif
b1e725f2 150 writel(pbias_lite, &t2_base->pbias_lite);
aac5450e 151
b1e725f2 152 writel(pbias_lite | PBIASLITEPWRDNZ1 |
de941241
SG
153 PBIASSPEEDCTRL0 | PBIASLITEPWRDNZ0,
154 &t2_base->pbias_lite);
155
156 writel(readl(&t2_base->devconf0) | MMCSDIO1ADPCLKISEL,
157 &t2_base->devconf0);
158
159 writel(readl(&t2_base->devconf1) | MMCSDIO2ADPCLKISEL,
160 &t2_base->devconf1);
161
bbbc1ae9 162 /* Change from default of 52MHz to 26MHz if necessary */
93bfd616 163 if (!(mmc->cfg->host_caps & MMC_MODE_HS_52MHz))
bbbc1ae9
JS
164 writel(readl(&t2_base->ctl_prog_io1) & ~CTLPROGIO1SPEEDCTRL,
165 &t2_base->ctl_prog_io1);
166
de941241
SG
167 writel(readl(&prcm_base->fclken1_core) |
168 EN_MMC1 | EN_MMC2 | EN_MMC3,
169 &prcm_base->fclken1_core);
170
171 writel(readl(&prcm_base->iclken1_core) |
172 EN_MMC1 | EN_MMC2 | EN_MMC3,
173 &prcm_base->iclken1_core);
174#endif
175
fbf1b08a 176#if defined(CONFIG_OMAP44XX)
14fa2dd0 177 /* PBIAS config needed for MMC1 only */
bcce53d0 178 if (mmc->block_dev.devnum == 0)
14fa2dd0
B
179 omap4_vmmc_pbias_config(mmc);
180#endif
cb199102 181#if defined(CONFIG_OMAP54XX) && defined(CONFIG_PALMAS_POWER)
bcce53d0 182 if (mmc->block_dev.devnum == 0)
dd23e59d
B
183 omap5_pbias_config(mmc);
184#endif
de941241
SG
185
186 return 0;
187}
188
933efe64 189void mmc_init_stream(struct hsmmc *mmc_base)
de941241 190{
eb9a28f6 191 ulong start;
de941241
SG
192
193 writel(readl(&mmc_base->con) | INIT_INITSTREAM, &mmc_base->con);
194
195 writel(MMC_CMD0, &mmc_base->cmd);
eb9a28f6
NM
196 start = get_timer(0);
197 while (!(readl(&mmc_base->stat) & CC_MASK)) {
198 if (get_timer(0) - start > MAX_RETRY_MS) {
199 printf("%s: timedout waiting for cc!\n", __func__);
200 return;
201 }
202 }
de941241
SG
203 writel(CC_MASK, &mmc_base->stat)
204 ;
205 writel(MMC_CMD0, &mmc_base->cmd)
206 ;
eb9a28f6
NM
207 start = get_timer(0);
208 while (!(readl(&mmc_base->stat) & CC_MASK)) {
209 if (get_timer(0) - start > MAX_RETRY_MS) {
210 printf("%s: timedout waiting for cc2!\n", __func__);
211 return;
212 }
213 }
de941241
SG
214 writel(readl(&mmc_base->con) & ~INIT_INITSTREAM, &mmc_base->con);
215}
216
217
ab769f22 218static int omap_hsmmc_init_setup(struct mmc *mmc)
de941241 219{
cc22b0c0 220 struct hsmmc *mmc_base;
de941241
SG
221 unsigned int reg_val;
222 unsigned int dsor;
eb9a28f6 223 ulong start;
de941241 224
cc22b0c0 225 mmc_base = ((struct omap_hsmmc_data *)mmc->priv)->base_addr;
14fa2dd0 226 mmc_board_init(mmc);
de941241
SG
227
228 writel(readl(&mmc_base->sysconfig) | MMC_SOFTRESET,
229 &mmc_base->sysconfig);
eb9a28f6
NM
230 start = get_timer(0);
231 while ((readl(&mmc_base->sysstatus) & RESETDONE) == 0) {
232 if (get_timer(0) - start > MAX_RETRY_MS) {
233 printf("%s: timedout waiting for cc2!\n", __func__);
915ffa52 234 return -ETIMEDOUT;
eb9a28f6
NM
235 }
236 }
de941241 237 writel(readl(&mmc_base->sysctl) | SOFTRESETALL, &mmc_base->sysctl);
eb9a28f6
NM
238 start = get_timer(0);
239 while ((readl(&mmc_base->sysctl) & SOFTRESETALL) != 0x0) {
240 if (get_timer(0) - start > MAX_RETRY_MS) {
241 printf("%s: timedout waiting for softresetall!\n",
242 __func__);
915ffa52 243 return -ETIMEDOUT;
eb9a28f6
NM
244 }
245 }
de941241
SG
246 writel(DTW_1_BITMODE | SDBP_PWROFF | SDVS_3V0, &mmc_base->hctl);
247 writel(readl(&mmc_base->capa) | VS30_3V0SUP | VS18_1V8SUP,
248 &mmc_base->capa);
249
250 reg_val = readl(&mmc_base->con) & RESERVED_MASK;
251
252 writel(CTPL_MMC_SD | reg_val | WPP_ACTIVEHIGH | CDP_ACTIVEHIGH |
253 MIT_CTO | DW8_1_4BITMODE | MODE_FUNC | STR_BLOCK |
254 HR_NOHOSTRESP | INIT_NOINIT | NOOPENDRAIN, &mmc_base->con);
255
256 dsor = 240;
257 mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
258 (ICE_STOP | DTO_15THDTO | CEN_DISABLE));
259 mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
260 (dsor << CLKD_OFFSET) | ICE_OSCILLATE);
eb9a28f6
NM
261 start = get_timer(0);
262 while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
263 if (get_timer(0) - start > MAX_RETRY_MS) {
264 printf("%s: timedout waiting for ics!\n", __func__);
915ffa52 265 return -ETIMEDOUT;
eb9a28f6
NM
266 }
267 }
de941241
SG
268 writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
269
270 writel(readl(&mmc_base->hctl) | SDBP_PWRON, &mmc_base->hctl);
271
272 writel(IE_BADA | IE_CERR | IE_DEB | IE_DCRC | IE_DTO | IE_CIE |
273 IE_CEB | IE_CCRC | IE_CTO | IE_BRR | IE_BWR | IE_TC | IE_CC,
274 &mmc_base->ie);
275
276 mmc_init_stream(mmc_base);
277
278 return 0;
279}
280
25c719e2
GI
281/*
282 * MMC controller internal finite state machine reset
283 *
284 * Used to reset command or data internal state machines, using respectively
285 * SRC or SRD bit of SYSCTL register
286 */
287static void mmc_reset_controller_fsm(struct hsmmc *mmc_base, u32 bit)
288{
289 ulong start;
290
291 mmc_reg_out(&mmc_base->sysctl, bit, bit);
292
61a6cc27
OT
293 /*
294 * CMD(DAT) lines reset procedures are slightly different
295 * for OMAP3 and OMAP4(AM335x,OMAP5,DRA7xx).
296 * According to OMAP3 TRM:
297 * Set SRC(SRD) bit in MMCHS_SYSCTL register to 0x1 and wait until it
298 * returns to 0x0.
299 * According to OMAP4(AM335x,OMAP5,DRA7xx) TRMs, CMD(DATA) lines reset
300 * procedure steps must be as follows:
301 * 1. Initiate CMD(DAT) line reset by writing 0x1 to SRC(SRD) bit in
302 * MMCHS_SYSCTL register (SD_SYSCTL for AM335x).
303 * 2. Poll the SRC(SRD) bit until it is set to 0x1.
304 * 3. Wait until the SRC (SRD) bit returns to 0x0
305 * (reset procedure is completed).
306 */
307#if defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
dce55b93 308 defined(CONFIG_AM33XX) || defined(CONFIG_AM43XX)
61a6cc27
OT
309 if (!(readl(&mmc_base->sysctl) & bit)) {
310 start = get_timer(0);
311 while (!(readl(&mmc_base->sysctl) & bit)) {
312 if (get_timer(0) - start > MAX_RETRY_MS)
313 return;
314 }
315 }
316#endif
25c719e2
GI
317 start = get_timer(0);
318 while ((readl(&mmc_base->sysctl) & bit) != 0) {
319 if (get_timer(0) - start > MAX_RETRY_MS) {
320 printf("%s: timedout waiting for sysctl %x to clear\n",
321 __func__, bit);
322 return;
323 }
324 }
325}
de941241 326
ab769f22 327static int omap_hsmmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
de941241
SG
328 struct mmc_data *data)
329{
cc22b0c0 330 struct hsmmc *mmc_base;
de941241 331 unsigned int flags, mmc_stat;
eb9a28f6 332 ulong start;
de941241 333
cc22b0c0 334 mmc_base = ((struct omap_hsmmc_data *)mmc->priv)->base_addr;
eb9a28f6 335 start = get_timer(0);
a7778f8f 336 while ((readl(&mmc_base->pstate) & (DATI_MASK | CMDI_MASK)) != 0) {
eb9a28f6 337 if (get_timer(0) - start > MAX_RETRY_MS) {
a7778f8f
TR
338 printf("%s: timedout waiting on cmd inhibit to clear\n",
339 __func__);
915ffa52 340 return -ETIMEDOUT;
eb9a28f6
NM
341 }
342 }
de941241 343 writel(0xFFFFFFFF, &mmc_base->stat);
eb9a28f6
NM
344 start = get_timer(0);
345 while (readl(&mmc_base->stat)) {
346 if (get_timer(0) - start > MAX_RETRY_MS) {
15ceb1de
GI
347 printf("%s: timedout waiting for STAT (%x) to clear\n",
348 __func__, readl(&mmc_base->stat));
915ffa52 349 return -ETIMEDOUT;
eb9a28f6
NM
350 }
351 }
de941241
SG
352 /*
353 * CMDREG
354 * CMDIDX[13:8] : Command index
355 * DATAPRNT[5] : Data Present Select
356 * ENCMDIDX[4] : Command Index Check Enable
357 * ENCMDCRC[3] : Command CRC Check Enable
358 * RSPTYP[1:0]
359 * 00 = No Response
360 * 01 = Length 136
361 * 10 = Length 48
362 * 11 = Length 48 Check busy after response
363 */
364 /* Delay added before checking the status of frq change
365 * retry not supported by mmc.c(core file)
366 */
367 if (cmd->cmdidx == SD_CMD_APP_SEND_SCR)
368 udelay(50000); /* wait 50 ms */
369
370 if (!(cmd->resp_type & MMC_RSP_PRESENT))
371 flags = 0;
372 else if (cmd->resp_type & MMC_RSP_136)
373 flags = RSP_TYPE_LGHT136 | CICE_NOCHECK;
374 else if (cmd->resp_type & MMC_RSP_BUSY)
375 flags = RSP_TYPE_LGHT48B;
376 else
377 flags = RSP_TYPE_LGHT48;
378
379 /* enable default flags */
380 flags = flags | (CMD_TYPE_NORMAL | CICE_NOCHECK | CCCE_NOCHECK |
381 MSBS_SGLEBLK | ACEN_DISABLE | BCE_DISABLE | DE_DISABLE);
382
383 if (cmd->resp_type & MMC_RSP_CRC)
384 flags |= CCCE_CHECK;
385 if (cmd->resp_type & MMC_RSP_OPCODE)
386 flags |= CICE_CHECK;
387
388 if (data) {
389 if ((cmd->cmdidx == MMC_CMD_READ_MULTIPLE_BLOCK) ||
390 (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK)) {
391 flags |= (MSBS_MULTIBLK | BCE_ENABLE);
392 data->blocksize = 512;
393 writel(data->blocksize | (data->blocks << 16),
394 &mmc_base->blk);
395 } else
396 writel(data->blocksize | NBLK_STPCNT, &mmc_base->blk);
397
398 if (data->flags & MMC_DATA_READ)
399 flags |= (DP_DATA | DDIR_READ);
400 else
401 flags |= (DP_DATA | DDIR_WRITE);
402 }
403
404 writel(cmd->cmdarg, &mmc_base->arg);
152ba363 405 udelay(20); /* To fix "No status update" error on eMMC */
de941241
SG
406 writel((cmd->cmdidx << 24) | flags, &mmc_base->cmd);
407
eb9a28f6 408 start = get_timer(0);
de941241
SG
409 do {
410 mmc_stat = readl(&mmc_base->stat);
eb9a28f6
NM
411 if (get_timer(0) - start > MAX_RETRY_MS) {
412 printf("%s : timeout: No status update\n", __func__);
915ffa52 413 return -ETIMEDOUT;
eb9a28f6
NM
414 }
415 } while (!mmc_stat);
de941241 416
25c719e2
GI
417 if ((mmc_stat & IE_CTO) != 0) {
418 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRC);
915ffa52 419 return -ETIMEDOUT;
25c719e2 420 } else if ((mmc_stat & ERRI_MASK) != 0)
de941241
SG
421 return -1;
422
423 if (mmc_stat & CC_MASK) {
424 writel(CC_MASK, &mmc_base->stat);
425 if (cmd->resp_type & MMC_RSP_PRESENT) {
426 if (cmd->resp_type & MMC_RSP_136) {
427 /* response type 2 */
428 cmd->response[3] = readl(&mmc_base->rsp10);
429 cmd->response[2] = readl(&mmc_base->rsp32);
430 cmd->response[1] = readl(&mmc_base->rsp54);
431 cmd->response[0] = readl(&mmc_base->rsp76);
432 } else
433 /* response types 1, 1b, 3, 4, 5, 6 */
434 cmd->response[0] = readl(&mmc_base->rsp10);
435 }
436 }
437
438 if (data && (data->flags & MMC_DATA_READ)) {
439 mmc_read_data(mmc_base, data->dest,
440 data->blocksize * data->blocks);
441 } else if (data && (data->flags & MMC_DATA_WRITE)) {
442 mmc_write_data(mmc_base, data->src,
443 data->blocksize * data->blocks);
444 }
445 return 0;
446}
447
933efe64 448static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size)
de941241
SG
449{
450 unsigned int *output_buf = (unsigned int *)buf;
451 unsigned int mmc_stat;
452 unsigned int count;
453
454 /*
455 * Start Polled Read
456 */
457 count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
458 count /= 4;
459
460 while (size) {
eb9a28f6 461 ulong start = get_timer(0);
de941241
SG
462 do {
463 mmc_stat = readl(&mmc_base->stat);
eb9a28f6
NM
464 if (get_timer(0) - start > MAX_RETRY_MS) {
465 printf("%s: timedout waiting for status!\n",
466 __func__);
915ffa52 467 return -ETIMEDOUT;
eb9a28f6 468 }
de941241
SG
469 } while (mmc_stat == 0);
470
25c719e2
GI
471 if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
472 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
473
de941241
SG
474 if ((mmc_stat & ERRI_MASK) != 0)
475 return 1;
476
477 if (mmc_stat & BRR_MASK) {
478 unsigned int k;
479
480 writel(readl(&mmc_base->stat) | BRR_MASK,
481 &mmc_base->stat);
482 for (k = 0; k < count; k++) {
483 *output_buf = readl(&mmc_base->data);
484 output_buf++;
485 }
486 size -= (count*4);
487 }
488
489 if (mmc_stat & BWR_MASK)
490 writel(readl(&mmc_base->stat) | BWR_MASK,
491 &mmc_base->stat);
492
493 if (mmc_stat & TC_MASK) {
494 writel(readl(&mmc_base->stat) | TC_MASK,
495 &mmc_base->stat);
496 break;
497 }
498 }
499 return 0;
500}
501
933efe64
S
502static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
503 unsigned int size)
de941241
SG
504{
505 unsigned int *input_buf = (unsigned int *)buf;
506 unsigned int mmc_stat;
507 unsigned int count;
508
509 /*
152ba363 510 * Start Polled Write
de941241
SG
511 */
512 count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
513 count /= 4;
514
515 while (size) {
eb9a28f6 516 ulong start = get_timer(0);
de941241
SG
517 do {
518 mmc_stat = readl(&mmc_base->stat);
eb9a28f6
NM
519 if (get_timer(0) - start > MAX_RETRY_MS) {
520 printf("%s: timedout waiting for status!\n",
521 __func__);
915ffa52 522 return -ETIMEDOUT;
eb9a28f6 523 }
de941241
SG
524 } while (mmc_stat == 0);
525
25c719e2
GI
526 if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
527 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
528
de941241
SG
529 if ((mmc_stat & ERRI_MASK) != 0)
530 return 1;
531
532 if (mmc_stat & BWR_MASK) {
533 unsigned int k;
534
535 writel(readl(&mmc_base->stat) | BWR_MASK,
536 &mmc_base->stat);
537 for (k = 0; k < count; k++) {
538 writel(*input_buf, &mmc_base->data);
539 input_buf++;
540 }
541 size -= (count*4);
542 }
543
544 if (mmc_stat & BRR_MASK)
545 writel(readl(&mmc_base->stat) | BRR_MASK,
546 &mmc_base->stat);
547
548 if (mmc_stat & TC_MASK) {
549 writel(readl(&mmc_base->stat) | TC_MASK,
550 &mmc_base->stat);
551 break;
552 }
553 }
554 return 0;
555}
556
ab769f22 557static void omap_hsmmc_set_ios(struct mmc *mmc)
de941241 558{
cc22b0c0 559 struct hsmmc *mmc_base;
de941241 560 unsigned int dsor = 0;
eb9a28f6 561 ulong start;
de941241 562
cc22b0c0 563 mmc_base = ((struct omap_hsmmc_data *)mmc->priv)->base_addr;
de941241
SG
564 /* configue bus width */
565 switch (mmc->bus_width) {
566 case 8:
567 writel(readl(&mmc_base->con) | DTW_8_BITMODE,
568 &mmc_base->con);
569 break;
570
571 case 4:
572 writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
573 &mmc_base->con);
574 writel(readl(&mmc_base->hctl) | DTW_4_BITMODE,
575 &mmc_base->hctl);
576 break;
577
578 case 1:
579 default:
580 writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
581 &mmc_base->con);
582 writel(readl(&mmc_base->hctl) & ~DTW_4_BITMODE,
583 &mmc_base->hctl);
584 break;
585 }
586
587 /* configure clock with 96Mhz system clock.
588 */
589 if (mmc->clock != 0) {
590 dsor = (MMC_CLOCK_REFERENCE * 1000000 / mmc->clock);
591 if ((MMC_CLOCK_REFERENCE * 1000000) / dsor > mmc->clock)
592 dsor++;
593 }
594
595 mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
596 (ICE_STOP | DTO_15THDTO | CEN_DISABLE));
597
598 mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
599 (dsor << CLKD_OFFSET) | ICE_OSCILLATE);
600
eb9a28f6
NM
601 start = get_timer(0);
602 while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
603 if (get_timer(0) - start > MAX_RETRY_MS) {
604 printf("%s: timedout waiting for ics!\n", __func__);
605 return;
606 }
607 }
de941241
SG
608 writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
609}
610
ab769f22 611#ifdef OMAP_HSMMC_USE_GPIO
a9d6a7e2
M
612#ifdef CONFIG_DM_MMC
613static int omap_hsmmc_getcd(struct mmc *mmc)
614{
615 struct omap_hsmmc_data *priv = mmc->priv;
616 int value;
617
618 value = dm_gpio_get_value(&priv->cd_gpio);
619 /* if no CD return as 1 */
620 if (value < 0)
621 return 1;
622
623 if (priv->cd_inverted)
624 return !value;
625 return value;
626}
627
628static int omap_hsmmc_getwp(struct mmc *mmc)
629{
630 struct omap_hsmmc_data *priv = mmc->priv;
631 int value;
632
633 value = dm_gpio_get_value(&priv->wp_gpio);
634 /* if no WP return as 0 */
635 if (value < 0)
636 return 0;
637 return value;
638}
639#else
ab769f22
PA
640static int omap_hsmmc_getcd(struct mmc *mmc)
641{
642 struct omap_hsmmc_data *priv_data = mmc->priv;
643 int cd_gpio;
644
645 /* if no CD return as 1 */
646 cd_gpio = priv_data->cd_gpio;
647 if (cd_gpio < 0)
648 return 1;
649
0b03a931
IG
650 /* NOTE: assumes card detect signal is active-low */
651 return !gpio_get_value(cd_gpio);
ab769f22
PA
652}
653
654static int omap_hsmmc_getwp(struct mmc *mmc)
655{
656 struct omap_hsmmc_data *priv_data = mmc->priv;
657 int wp_gpio;
658
659 /* if no WP return as 0 */
660 wp_gpio = priv_data->wp_gpio;
661 if (wp_gpio < 0)
662 return 0;
663
0b03a931 664 /* NOTE: assumes write protect signal is active-high */
ab769f22
PA
665 return gpio_get_value(wp_gpio);
666}
667#endif
a9d6a7e2 668#endif
ab769f22
PA
669
670static const struct mmc_ops omap_hsmmc_ops = {
671 .send_cmd = omap_hsmmc_send_cmd,
672 .set_ios = omap_hsmmc_set_ios,
673 .init = omap_hsmmc_init_setup,
674#ifdef OMAP_HSMMC_USE_GPIO
675 .getcd = omap_hsmmc_getcd,
676 .getwp = omap_hsmmc_getwp,
677#endif
678};
679
a9d6a7e2 680#ifndef CONFIG_DM_MMC
e3913f56
NK
681int omap_mmc_init(int dev_index, uint host_caps_mask, uint f_max, int cd_gpio,
682 int wp_gpio)
de941241 683{
93bfd616
PA
684 struct mmc *mmc;
685 struct omap_hsmmc_data *priv_data;
686 struct mmc_config *cfg;
687 uint host_caps_val;
688
689 priv_data = malloc(sizeof(*priv_data));
690 if (priv_data == NULL)
691 return -1;
de941241 692
5a20397b 693 host_caps_val = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS;
de941241
SG
694
695 switch (dev_index) {
696 case 0:
cc22b0c0 697 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
de941241 698 break;
1037d585 699#ifdef OMAP_HSMMC2_BASE
de941241 700 case 1:
cc22b0c0 701 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC2_BASE;
152ba363 702#if (defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
3891a54f 703 defined(CONFIG_DRA7XX) || defined(CONFIG_AM33XX) || \
3b68939f
RQ
704 defined(CONFIG_AM43XX) || defined(CONFIG_SOC_KEYSTONE)) && \
705 defined(CONFIG_HSMMC2_8BIT)
152ba363
LP
706 /* Enable 8-bit interface for eMMC on OMAP4/5 or DRA7XX */
707 host_caps_val |= MMC_MODE_8BIT;
708#endif
de941241 709 break;
1037d585
TR
710#endif
711#ifdef OMAP_HSMMC3_BASE
de941241 712 case 2:
cc22b0c0 713 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC3_BASE;
3891a54f 714#if defined(CONFIG_DRA7XX) && defined(CONFIG_HSMMC3_8BIT)
152ba363
LP
715 /* Enable 8-bit interface for eMMC on DRA7XX */
716 host_caps_val |= MMC_MODE_8BIT;
717#endif
de941241 718 break;
1037d585 719#endif
de941241 720 default:
cc22b0c0 721 priv_data->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
de941241
SG
722 return 1;
723 }
ab769f22
PA
724#ifdef OMAP_HSMMC_USE_GPIO
725 /* on error gpio values are set to -1, which is what we want */
e874d5b0 726 priv_data->cd_gpio = omap_mmc_setup_gpio_in(cd_gpio, "mmc_cd");
e3913f56 727 priv_data->wp_gpio = omap_mmc_setup_gpio_in(wp_gpio, "mmc_wp");
ab769f22 728#endif
173ddc5b 729
93bfd616 730 cfg = &priv_data->cfg;
de941241 731
93bfd616
PA
732 cfg->name = "OMAP SD/MMC";
733 cfg->ops = &omap_hsmmc_ops;
734
735 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
736 cfg->host_caps = host_caps_val & ~host_caps_mask;
737
738 cfg->f_min = 400000;
bbbc1ae9
JS
739
740 if (f_max != 0)
93bfd616 741 cfg->f_max = f_max;
bbbc1ae9 742 else {
93bfd616
PA
743 if (cfg->host_caps & MMC_MODE_HS) {
744 if (cfg->host_caps & MMC_MODE_HS_52MHz)
745 cfg->f_max = 52000000;
bbbc1ae9 746 else
93bfd616 747 cfg->f_max = 26000000;
bbbc1ae9 748 } else
93bfd616 749 cfg->f_max = 20000000;
bbbc1ae9 750 }
de941241 751
93bfd616 752 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
8feafcc4 753
4ca9244d
JR
754#if defined(CONFIG_OMAP34XX)
755 /*
756 * Silicon revs 2.1 and older do not support multiblock transfers.
757 */
758 if ((get_cpu_family() == CPU_OMAP34XX) && (get_cpu_rev() <= CPU_3XX_ES21))
93bfd616 759 cfg->b_max = 1;
4ca9244d 760#endif
93bfd616
PA
761 mmc = mmc_create(cfg, priv_data);
762 if (mmc == NULL)
763 return -1;
de941241
SG
764
765 return 0;
766}
a9d6a7e2
M
767#else
768static int omap_hsmmc_ofdata_to_platdata(struct udevice *dev)
769{
770 struct omap_hsmmc_data *priv = dev_get_priv(dev);
771 const void *fdt = gd->fdt_blob;
772 int node = dev->of_offset;
773 struct mmc_config *cfg;
774 int val;
775
4bc5e19e
M
776 priv->base_addr = map_physmem(dev_get_addr(dev), sizeof(struct hsmmc *),
777 MAP_NOCACHE);
a9d6a7e2
M
778 cfg = &priv->cfg;
779
780 cfg->host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS;
781 val = fdtdec_get_int(fdt, node, "bus-width", -1);
782 if (val < 0) {
783 printf("error: bus-width property missing\n");
784 return -ENOENT;
785 }
786
787 switch (val) {
788 case 0x8:
789 cfg->host_caps |= MMC_MODE_8BIT;
790 case 0x4:
791 cfg->host_caps |= MMC_MODE_4BIT;
792 break;
793 default:
794 printf("error: invalid bus-width property\n");
795 return -ENOENT;
796 }
797
798 cfg->f_min = 400000;
799 cfg->f_max = fdtdec_get_int(fdt, node, "max-frequency", 52000000);
800 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
801 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
802
4de2de51 803#ifdef OMAP_HSMMC_USE_GPIO
a9d6a7e2 804 priv->cd_inverted = fdtdec_get_bool(fdt, node, "cd-inverted");
4de2de51 805#endif
a9d6a7e2
M
806
807 return 0;
808}
809
810static int omap_hsmmc_probe(struct udevice *dev)
811{
812 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
813 struct omap_hsmmc_data *priv = dev_get_priv(dev);
814 struct mmc_config *cfg;
815 struct mmc *mmc;
816
817 cfg = &priv->cfg;
818 cfg->name = "OMAP SD/MMC";
819 cfg->ops = &omap_hsmmc_ops;
820
821 mmc = mmc_create(cfg, priv);
822 if (mmc == NULL)
823 return -1;
824
5cc6a245
M
825#ifdef OMAP_HSMMC_USE_GPIO
826 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN);
827 gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, GPIOD_IS_IN);
828#endif
829
cffe5d86 830 mmc->dev = dev;
a9d6a7e2
M
831 upriv->mmc = mmc;
832
833 return 0;
834}
835
836static const struct udevice_id omap_hsmmc_ids[] = {
837 { .compatible = "ti,omap3-hsmmc" },
838 { .compatible = "ti,omap4-hsmmc" },
839 { .compatible = "ti,am33xx-hsmmc" },
840 { }
841};
842
843U_BOOT_DRIVER(omap_hsmmc) = {
844 .name = "omap_hsmmc",
845 .id = UCLASS_MMC,
846 .of_match = omap_hsmmc_ids,
847 .ofdata_to_platdata = omap_hsmmc_ofdata_to_platdata,
848 .probe = omap_hsmmc_probe,
849 .priv_auto_alloc_size = sizeof(struct omap_hsmmc_data),
850};
851#endif