blob: d151fe726622e4d075bb7ebb29a2ed8fcc3c384e [file] [log] [blame]
Sukumar Ghoraide941242010-09-18 20:32:33 -07001/*
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>
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020027#include <malloc.h>
Sukumar Ghoraide941242010-09-18 20:32:33 -070028#include <mmc.h>
29#include <part.h>
30#include <i2c.h>
31#include <twl4030.h>
Balaji T K14fa2dd2011-09-08 06:34:57 +000032#include <twl6030.h>
Nishanth Menoncb199102013-03-26 05:20:54 +000033#include <palmas.h>
Sukumar Ghoraide941242010-09-18 20:32:33 -070034#include <asm/io.h>
35#include <asm/arch/mmc_host_def.h>
Roger Quadros3b689392015-09-19 16:26:53 +053036#if !defined(CONFIG_SOC_KEYSTONE)
37#include <asm/gpio.h>
Dirk Behme96e0e7b2011-05-15 09:04:47 +000038#include <asm/arch/sys_proto.h>
Roger Quadros3b689392015-09-19 16:26:53 +053039#endif
Tom Rini2a48b3a2017-02-09 13:41:28 -050040#ifdef CONFIG_MMC_OMAP36XX_PINS
41#include <asm/arch/mux.h>
42#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +053043#include <dm.h>
44
45DECLARE_GLOBAL_DATA_PTR;
Sukumar Ghoraide941242010-09-18 20:32:33 -070046
Pantelis Antoniouab769f22014-02-26 19:28:45 +020047/* simplify defines to OMAP_HSMMC_USE_GPIO */
48#if (defined(CONFIG_OMAP_GPIO) && !defined(CONFIG_SPL_BUILD)) || \
49 (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_GPIO_SUPPORT))
50#define OMAP_HSMMC_USE_GPIO
51#else
52#undef OMAP_HSMMC_USE_GPIO
53#endif
54
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +000055/* common definitions for all OMAPs */
56#define SYSCTL_SRC (1 << 25)
57#define SYSCTL_SRD (1 << 26)
58
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +010059struct omap_hsmmc_plat {
60 struct mmc_config cfg;
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +010061 struct mmc mmc;
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +010062};
63
Adam Ford46831c12017-04-17 08:09:37 -050064struct omap2_mmc_platform_config {
65 u32 reg_offset;
66};
67
Nikita Kiryanovcc22b0c2012-12-03 02:19:43 +000068struct omap_hsmmc_data {
69 struct hsmmc *base_addr;
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +010070#ifndef CONFIG_DM_MMC
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020071 struct mmc_config cfg;
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +010072#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +020073#ifdef OMAP_HSMMC_USE_GPIO
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +053074#ifdef CONFIG_DM_MMC
75 struct gpio_desc cd_gpio; /* Change Detect GPIO */
76 struct gpio_desc wp_gpio; /* Write Protect GPIO */
77 bool cd_inverted;
78#else
Nikita Kiryanove874d5b2012-12-03 02:19:44 +000079 int cd_gpio;
Nikita Kiryanove3913f52012-12-03 02:19:47 +000080 int wp_gpio;
Pantelis Antoniouab769f22014-02-26 19:28:45 +020081#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +053082#endif
Nikita Kiryanovcc22b0c2012-12-03 02:19:43 +000083};
84
Nishanth Menoneb9a28f2010-11-19 11:18:12 -050085/* If we fail after 1 second wait, something is really bad */
86#define MAX_RETRY_MS 1000
87
Sricharan933efe62011-11-15 09:49:53 -050088static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size);
89static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
90 unsigned int siz);
Balaji T K14fa2dd2011-09-08 06:34:57 +000091
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +010092static inline struct omap_hsmmc_data *omap_hsmmc_get_data(struct mmc *mmc)
93{
94#ifdef CONFIG_DM_MMC
95 return dev_get_priv(mmc->dev);
96#else
97 return (struct omap_hsmmc_data *)mmc->priv;
98#endif
99}
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100100static inline struct mmc_config *omap_hsmmc_get_cfg(struct mmc *mmc)
101{
102#ifdef CONFIG_DM_MMC
103 struct omap_hsmmc_plat *plat = dev_get_platdata(mmc->dev);
104 return &plat->cfg;
105#else
106 return &((struct omap_hsmmc_data *)mmc->priv)->cfg;
107#endif
108}
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100109
110 #if defined(OMAP_HSMMC_USE_GPIO) && !defined(CONFIG_DM_MMC)
Nikita Kiryanove874d5b2012-12-03 02:19:44 +0000111static int omap_mmc_setup_gpio_in(int gpio, const char *label)
112{
Simon Glass5915a2a2014-10-22 21:37:09 -0600113 int ret;
114
115#ifndef CONFIG_DM_GPIO
Nikita Kiryanove874d5b2012-12-03 02:19:44 +0000116 if (!gpio_is_valid(gpio))
117 return -1;
Simon Glass5915a2a2014-10-22 21:37:09 -0600118#endif
119 ret = gpio_request(gpio, label);
120 if (ret)
121 return ret;
Nikita Kiryanove874d5b2012-12-03 02:19:44 +0000122
Simon Glass5915a2a2014-10-22 21:37:09 -0600123 ret = gpio_direction_input(gpio);
124 if (ret)
125 return ret;
Nikita Kiryanove874d5b2012-12-03 02:19:44 +0000126
127 return gpio;
128}
Nikita Kiryanove874d5b2012-12-03 02:19:44 +0000129#endif
130
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200131static unsigned char mmc_board_init(struct mmc *mmc)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700132{
Sukumar Ghoraide941242010-09-18 20:32:33 -0700133#if defined(CONFIG_OMAP34XX)
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100134 struct mmc_config *cfg = omap_hsmmc_get_cfg(mmc);
Sukumar Ghoraide941242010-09-18 20:32:33 -0700135 t2_t *t2_base = (t2_t *)T2_BASE;
136 struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
Grazvydas Ignotasb1e725f2012-03-19 03:50:53 +0000137 u32 pbias_lite;
Adam Ford6aca17c2017-02-06 11:31:43 -0600138#ifdef CONFIG_MMC_OMAP36XX_PINS
139 u32 wkup_ctrl = readl(OMAP34XX_CTRL_WKUP_CTRL);
140#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700141
Grazvydas Ignotasb1e725f2012-03-19 03:50:53 +0000142 pbias_lite = readl(&t2_base->pbias_lite);
143 pbias_lite &= ~(PBIASLITEPWRDNZ1 | PBIASLITEPWRDNZ0);
Albert ARIBAUD \(3ADEV\)5bfdd1f2015-01-16 09:09:50 +0100144#ifdef CONFIG_TARGET_OMAP3_CAIRO
145 /* for cairo board, we need to set up 1.8 Volt bias level on MMC1 */
146 pbias_lite &= ~PBIASLITEVMODE0;
147#endif
Adam Ford6aca17c2017-02-06 11:31:43 -0600148#ifdef CONFIG_MMC_OMAP36XX_PINS
149 if (get_cpu_family() == CPU_OMAP36XX) {
150 /* Disable extended drain IO before changing PBIAS */
151 wkup_ctrl &= ~OMAP34XX_CTRL_WKUP_CTRL_GPIO_IO_PWRDNZ;
152 writel(wkup_ctrl, OMAP34XX_CTRL_WKUP_CTRL);
153 }
154#endif
Grazvydas Ignotasb1e725f2012-03-19 03:50:53 +0000155 writel(pbias_lite, &t2_base->pbias_lite);
Paul Kocialkowskiaac54502014-11-08 20:55:47 +0100156
Grazvydas Ignotasb1e725f2012-03-19 03:50:53 +0000157 writel(pbias_lite | PBIASLITEPWRDNZ1 |
Sukumar Ghoraide941242010-09-18 20:32:33 -0700158 PBIASSPEEDCTRL0 | PBIASLITEPWRDNZ0,
159 &t2_base->pbias_lite);
160
Adam Ford6aca17c2017-02-06 11:31:43 -0600161#ifdef CONFIG_MMC_OMAP36XX_PINS
162 if (get_cpu_family() == CPU_OMAP36XX)
163 /* Enable extended drain IO after changing PBIAS */
164 writel(wkup_ctrl |
165 OMAP34XX_CTRL_WKUP_CTRL_GPIO_IO_PWRDNZ,
166 OMAP34XX_CTRL_WKUP_CTRL);
167#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700168 writel(readl(&t2_base->devconf0) | MMCSDIO1ADPCLKISEL,
169 &t2_base->devconf0);
170
171 writel(readl(&t2_base->devconf1) | MMCSDIO2ADPCLKISEL,
172 &t2_base->devconf1);
173
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +0000174 /* Change from default of 52MHz to 26MHz if necessary */
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100175 if (!(cfg->host_caps & MMC_MODE_HS_52MHz))
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +0000176 writel(readl(&t2_base->ctl_prog_io1) & ~CTLPROGIO1SPEEDCTRL,
177 &t2_base->ctl_prog_io1);
178
Sukumar Ghoraide941242010-09-18 20:32:33 -0700179 writel(readl(&prcm_base->fclken1_core) |
180 EN_MMC1 | EN_MMC2 | EN_MMC3,
181 &prcm_base->fclken1_core);
182
183 writel(readl(&prcm_base->iclken1_core) |
184 EN_MMC1 | EN_MMC2 | EN_MMC3,
185 &prcm_base->iclken1_core);
186#endif
187
Lokesh Vutlab4b06002016-11-23 13:25:28 +0530188#if defined(CONFIG_OMAP54XX) || defined(CONFIG_OMAP44XX)
Balaji T K14fa2dd2011-09-08 06:34:57 +0000189 /* PBIAS config needed for MMC1 only */
Jean-Jacques Hiblotdc091272017-03-22 16:00:32 +0100190 if (mmc_get_blk_desc(mmc)->devnum == 0)
Lokesh Vutlab4b06002016-11-23 13:25:28 +0530191 vmmc_pbias_config(LDO_VOLT_3V0);
Balaji T Kdd23e592012-03-12 02:25:49 +0000192#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700193
194 return 0;
195}
196
Sricharan933efe62011-11-15 09:49:53 -0500197void mmc_init_stream(struct hsmmc *mmc_base)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700198{
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500199 ulong start;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700200
201 writel(readl(&mmc_base->con) | INIT_INITSTREAM, &mmc_base->con);
202
203 writel(MMC_CMD0, &mmc_base->cmd);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500204 start = get_timer(0);
205 while (!(readl(&mmc_base->stat) & CC_MASK)) {
206 if (get_timer(0) - start > MAX_RETRY_MS) {
207 printf("%s: timedout waiting for cc!\n", __func__);
208 return;
209 }
210 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700211 writel(CC_MASK, &mmc_base->stat)
212 ;
213 writel(MMC_CMD0, &mmc_base->cmd)
214 ;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500215 start = get_timer(0);
216 while (!(readl(&mmc_base->stat) & CC_MASK)) {
217 if (get_timer(0) - start > MAX_RETRY_MS) {
218 printf("%s: timedout waiting for cc2!\n", __func__);
219 return;
220 }
221 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700222 writel(readl(&mmc_base->con) & ~INIT_INITSTREAM, &mmc_base->con);
223}
224
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200225static int omap_hsmmc_init_setup(struct mmc *mmc)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700226{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100227 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Nikita Kiryanovcc22b0c2012-12-03 02:19:43 +0000228 struct hsmmc *mmc_base;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700229 unsigned int reg_val;
230 unsigned int dsor;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500231 ulong start;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700232
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100233 mmc_base = priv->base_addr;
Balaji T K14fa2dd2011-09-08 06:34:57 +0000234 mmc_board_init(mmc);
Sukumar Ghoraide941242010-09-18 20:32:33 -0700235
236 writel(readl(&mmc_base->sysconfig) | MMC_SOFTRESET,
237 &mmc_base->sysconfig);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500238 start = get_timer(0);
239 while ((readl(&mmc_base->sysstatus) & RESETDONE) == 0) {
240 if (get_timer(0) - start > MAX_RETRY_MS) {
241 printf("%s: timedout waiting for cc2!\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900242 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500243 }
244 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700245 writel(readl(&mmc_base->sysctl) | SOFTRESETALL, &mmc_base->sysctl);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500246 start = get_timer(0);
247 while ((readl(&mmc_base->sysctl) & SOFTRESETALL) != 0x0) {
248 if (get_timer(0) - start > MAX_RETRY_MS) {
249 printf("%s: timedout waiting for softresetall!\n",
250 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900251 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500252 }
253 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700254 writel(DTW_1_BITMODE | SDBP_PWROFF | SDVS_3V0, &mmc_base->hctl);
255 writel(readl(&mmc_base->capa) | VS30_3V0SUP | VS18_1V8SUP,
256 &mmc_base->capa);
257
258 reg_val = readl(&mmc_base->con) & RESERVED_MASK;
259
260 writel(CTPL_MMC_SD | reg_val | WPP_ACTIVEHIGH | CDP_ACTIVEHIGH |
261 MIT_CTO | DW8_1_4BITMODE | MODE_FUNC | STR_BLOCK |
262 HR_NOHOSTRESP | INIT_NOINIT | NOOPENDRAIN, &mmc_base->con);
263
264 dsor = 240;
265 mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
266 (ICE_STOP | DTO_15THDTO | CEN_DISABLE));
267 mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
268 (dsor << CLKD_OFFSET) | ICE_OSCILLATE);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500269 start = get_timer(0);
270 while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
271 if (get_timer(0) - start > MAX_RETRY_MS) {
272 printf("%s: timedout waiting for ics!\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900273 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500274 }
275 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700276 writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
277
278 writel(readl(&mmc_base->hctl) | SDBP_PWRON, &mmc_base->hctl);
279
280 writel(IE_BADA | IE_CERR | IE_DEB | IE_DCRC | IE_DTO | IE_CIE |
281 IE_CEB | IE_CCRC | IE_CTO | IE_BRR | IE_BWR | IE_TC | IE_CC,
282 &mmc_base->ie);
283
284 mmc_init_stream(mmc_base);
285
286 return 0;
287}
288
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +0000289/*
290 * MMC controller internal finite state machine reset
291 *
292 * Used to reset command or data internal state machines, using respectively
293 * SRC or SRD bit of SYSCTL register
294 */
295static void mmc_reset_controller_fsm(struct hsmmc *mmc_base, u32 bit)
296{
297 ulong start;
298
299 mmc_reg_out(&mmc_base->sysctl, bit, bit);
300
Oleksandr Tyshchenko61a6cc22013-08-06 13:44:16 +0300301 /*
302 * CMD(DAT) lines reset procedures are slightly different
303 * for OMAP3 and OMAP4(AM335x,OMAP5,DRA7xx).
304 * According to OMAP3 TRM:
305 * Set SRC(SRD) bit in MMCHS_SYSCTL register to 0x1 and wait until it
306 * returns to 0x0.
307 * According to OMAP4(AM335x,OMAP5,DRA7xx) TRMs, CMD(DATA) lines reset
308 * procedure steps must be as follows:
309 * 1. Initiate CMD(DAT) line reset by writing 0x1 to SRC(SRD) bit in
310 * MMCHS_SYSCTL register (SD_SYSCTL for AM335x).
311 * 2. Poll the SRC(SRD) bit until it is set to 0x1.
312 * 3. Wait until the SRC (SRD) bit returns to 0x0
313 * (reset procedure is completed).
314 */
315#if defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
Nikita Kiryanovdce55b92015-07-30 23:56:20 +0300316 defined(CONFIG_AM33XX) || defined(CONFIG_AM43XX)
Oleksandr Tyshchenko61a6cc22013-08-06 13:44:16 +0300317 if (!(readl(&mmc_base->sysctl) & bit)) {
318 start = get_timer(0);
319 while (!(readl(&mmc_base->sysctl) & bit)) {
320 if (get_timer(0) - start > MAX_RETRY_MS)
321 return;
322 }
323 }
324#endif
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +0000325 start = get_timer(0);
326 while ((readl(&mmc_base->sysctl) & bit) != 0) {
327 if (get_timer(0) - start > MAX_RETRY_MS) {
328 printf("%s: timedout waiting for sysctl %x to clear\n",
329 __func__, bit);
330 return;
331 }
332 }
333}
Sukumar Ghoraide941242010-09-18 20:32:33 -0700334
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200335static int omap_hsmmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
Sukumar Ghoraide941242010-09-18 20:32:33 -0700336 struct mmc_data *data)
337{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100338 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Nikita Kiryanovcc22b0c2012-12-03 02:19:43 +0000339 struct hsmmc *mmc_base;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700340 unsigned int flags, mmc_stat;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500341 ulong start;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700342
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100343 mmc_base = priv->base_addr;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500344 start = get_timer(0);
Tom Rinia7778f82012-01-30 11:22:25 +0000345 while ((readl(&mmc_base->pstate) & (DATI_MASK | CMDI_MASK)) != 0) {
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500346 if (get_timer(0) - start > MAX_RETRY_MS) {
Tom Rinia7778f82012-01-30 11:22:25 +0000347 printf("%s: timedout waiting on cmd inhibit to clear\n",
348 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900349 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500350 }
351 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700352 writel(0xFFFFFFFF, &mmc_base->stat);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500353 start = get_timer(0);
354 while (readl(&mmc_base->stat)) {
355 if (get_timer(0) - start > MAX_RETRY_MS) {
Grazvydas Ignotas15ceb1d2012-03-19 12:11:43 +0000356 printf("%s: timedout waiting for STAT (%x) to clear\n",
357 __func__, readl(&mmc_base->stat));
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900358 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500359 }
360 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700361 /*
362 * CMDREG
363 * CMDIDX[13:8] : Command index
364 * DATAPRNT[5] : Data Present Select
365 * ENCMDIDX[4] : Command Index Check Enable
366 * ENCMDCRC[3] : Command CRC Check Enable
367 * RSPTYP[1:0]
368 * 00 = No Response
369 * 01 = Length 136
370 * 10 = Length 48
371 * 11 = Length 48 Check busy after response
372 */
373 /* Delay added before checking the status of frq change
374 * retry not supported by mmc.c(core file)
375 */
376 if (cmd->cmdidx == SD_CMD_APP_SEND_SCR)
377 udelay(50000); /* wait 50 ms */
378
379 if (!(cmd->resp_type & MMC_RSP_PRESENT))
380 flags = 0;
381 else if (cmd->resp_type & MMC_RSP_136)
382 flags = RSP_TYPE_LGHT136 | CICE_NOCHECK;
383 else if (cmd->resp_type & MMC_RSP_BUSY)
384 flags = RSP_TYPE_LGHT48B;
385 else
386 flags = RSP_TYPE_LGHT48;
387
388 /* enable default flags */
389 flags = flags | (CMD_TYPE_NORMAL | CICE_NOCHECK | CCCE_NOCHECK |
390 MSBS_SGLEBLK | ACEN_DISABLE | BCE_DISABLE | DE_DISABLE);
391
392 if (cmd->resp_type & MMC_RSP_CRC)
393 flags |= CCCE_CHECK;
394 if (cmd->resp_type & MMC_RSP_OPCODE)
395 flags |= CICE_CHECK;
396
397 if (data) {
398 if ((cmd->cmdidx == MMC_CMD_READ_MULTIPLE_BLOCK) ||
399 (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK)) {
400 flags |= (MSBS_MULTIBLK | BCE_ENABLE);
401 data->blocksize = 512;
402 writel(data->blocksize | (data->blocks << 16),
403 &mmc_base->blk);
404 } else
405 writel(data->blocksize | NBLK_STPCNT, &mmc_base->blk);
406
407 if (data->flags & MMC_DATA_READ)
408 flags |= (DP_DATA | DDIR_READ);
409 else
410 flags |= (DP_DATA | DDIR_WRITE);
411 }
412
413 writel(cmd->cmdarg, &mmc_base->arg);
Lubomir Popov152ba362013-08-14 18:59:18 +0300414 udelay(20); /* To fix "No status update" error on eMMC */
Sukumar Ghoraide941242010-09-18 20:32:33 -0700415 writel((cmd->cmdidx << 24) | flags, &mmc_base->cmd);
416
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500417 start = get_timer(0);
Sukumar Ghoraide941242010-09-18 20:32:33 -0700418 do {
419 mmc_stat = readl(&mmc_base->stat);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500420 if (get_timer(0) - start > MAX_RETRY_MS) {
421 printf("%s : timeout: No status update\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900422 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500423 }
424 } while (!mmc_stat);
Sukumar Ghoraide941242010-09-18 20:32:33 -0700425
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +0000426 if ((mmc_stat & IE_CTO) != 0) {
427 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRC);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900428 return -ETIMEDOUT;
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +0000429 } else if ((mmc_stat & ERRI_MASK) != 0)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700430 return -1;
431
432 if (mmc_stat & CC_MASK) {
433 writel(CC_MASK, &mmc_base->stat);
434 if (cmd->resp_type & MMC_RSP_PRESENT) {
435 if (cmd->resp_type & MMC_RSP_136) {
436 /* response type 2 */
437 cmd->response[3] = readl(&mmc_base->rsp10);
438 cmd->response[2] = readl(&mmc_base->rsp32);
439 cmd->response[1] = readl(&mmc_base->rsp54);
440 cmd->response[0] = readl(&mmc_base->rsp76);
441 } else
442 /* response types 1, 1b, 3, 4, 5, 6 */
443 cmd->response[0] = readl(&mmc_base->rsp10);
444 }
445 }
446
447 if (data && (data->flags & MMC_DATA_READ)) {
448 mmc_read_data(mmc_base, data->dest,
449 data->blocksize * data->blocks);
450 } else if (data && (data->flags & MMC_DATA_WRITE)) {
451 mmc_write_data(mmc_base, data->src,
452 data->blocksize * data->blocks);
453 }
454 return 0;
455}
456
Sricharan933efe62011-11-15 09:49:53 -0500457static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700458{
459 unsigned int *output_buf = (unsigned int *)buf;
460 unsigned int mmc_stat;
461 unsigned int count;
462
463 /*
464 * Start Polled Read
465 */
466 count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
467 count /= 4;
468
469 while (size) {
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500470 ulong start = get_timer(0);
Sukumar Ghoraide941242010-09-18 20:32:33 -0700471 do {
472 mmc_stat = readl(&mmc_base->stat);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500473 if (get_timer(0) - start > MAX_RETRY_MS) {
474 printf("%s: timedout waiting for status!\n",
475 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900476 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500477 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700478 } while (mmc_stat == 0);
479
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +0000480 if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
481 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
482
Sukumar Ghoraide941242010-09-18 20:32:33 -0700483 if ((mmc_stat & ERRI_MASK) != 0)
484 return 1;
485
486 if (mmc_stat & BRR_MASK) {
487 unsigned int k;
488
489 writel(readl(&mmc_base->stat) | BRR_MASK,
490 &mmc_base->stat);
491 for (k = 0; k < count; k++) {
492 *output_buf = readl(&mmc_base->data);
493 output_buf++;
494 }
495 size -= (count*4);
496 }
497
498 if (mmc_stat & BWR_MASK)
499 writel(readl(&mmc_base->stat) | BWR_MASK,
500 &mmc_base->stat);
501
502 if (mmc_stat & TC_MASK) {
503 writel(readl(&mmc_base->stat) | TC_MASK,
504 &mmc_base->stat);
505 break;
506 }
507 }
508 return 0;
509}
510
Sricharan933efe62011-11-15 09:49:53 -0500511static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
512 unsigned int size)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700513{
514 unsigned int *input_buf = (unsigned int *)buf;
515 unsigned int mmc_stat;
516 unsigned int count;
517
518 /*
Lubomir Popov152ba362013-08-14 18:59:18 +0300519 * Start Polled Write
Sukumar Ghoraide941242010-09-18 20:32:33 -0700520 */
521 count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
522 count /= 4;
523
524 while (size) {
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500525 ulong start = get_timer(0);
Sukumar Ghoraide941242010-09-18 20:32:33 -0700526 do {
527 mmc_stat = readl(&mmc_base->stat);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500528 if (get_timer(0) - start > MAX_RETRY_MS) {
529 printf("%s: timedout waiting for status!\n",
530 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900531 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500532 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700533 } while (mmc_stat == 0);
534
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +0000535 if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
536 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
537
Sukumar Ghoraide941242010-09-18 20:32:33 -0700538 if ((mmc_stat & ERRI_MASK) != 0)
539 return 1;
540
541 if (mmc_stat & BWR_MASK) {
542 unsigned int k;
543
544 writel(readl(&mmc_base->stat) | BWR_MASK,
545 &mmc_base->stat);
546 for (k = 0; k < count; k++) {
547 writel(*input_buf, &mmc_base->data);
548 input_buf++;
549 }
550 size -= (count*4);
551 }
552
553 if (mmc_stat & BRR_MASK)
554 writel(readl(&mmc_base->stat) | BRR_MASK,
555 &mmc_base->stat);
556
557 if (mmc_stat & TC_MASK) {
558 writel(readl(&mmc_base->stat) | TC_MASK,
559 &mmc_base->stat);
560 break;
561 }
562 }
563 return 0;
564}
565
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900566static int omap_hsmmc_set_ios(struct mmc *mmc)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700567{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100568 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Nikita Kiryanovcc22b0c2012-12-03 02:19:43 +0000569 struct hsmmc *mmc_base;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700570 unsigned int dsor = 0;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500571 ulong start;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700572
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100573 mmc_base = priv->base_addr;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700574 /* configue bus width */
575 switch (mmc->bus_width) {
576 case 8:
577 writel(readl(&mmc_base->con) | DTW_8_BITMODE,
578 &mmc_base->con);
579 break;
580
581 case 4:
582 writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
583 &mmc_base->con);
584 writel(readl(&mmc_base->hctl) | DTW_4_BITMODE,
585 &mmc_base->hctl);
586 break;
587
588 case 1:
589 default:
590 writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
591 &mmc_base->con);
592 writel(readl(&mmc_base->hctl) & ~DTW_4_BITMODE,
593 &mmc_base->hctl);
594 break;
595 }
596
597 /* configure clock with 96Mhz system clock.
598 */
599 if (mmc->clock != 0) {
600 dsor = (MMC_CLOCK_REFERENCE * 1000000 / mmc->clock);
601 if ((MMC_CLOCK_REFERENCE * 1000000) / dsor > mmc->clock)
602 dsor++;
603 }
604
605 mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
606 (ICE_STOP | DTO_15THDTO | CEN_DISABLE));
607
608 mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
609 (dsor << CLKD_OFFSET) | ICE_OSCILLATE);
610
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500611 start = get_timer(0);
612 while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
613 if (get_timer(0) - start > MAX_RETRY_MS) {
614 printf("%s: timedout waiting for ics!\n", __func__);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900615 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500616 }
617 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700618 writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +0900619
620 return 0;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700621}
622
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200623#ifdef OMAP_HSMMC_USE_GPIO
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530624#ifdef CONFIG_DM_MMC
625static int omap_hsmmc_getcd(struct mmc *mmc)
626{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100627 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530628 int value;
629
630 value = dm_gpio_get_value(&priv->cd_gpio);
631 /* if no CD return as 1 */
632 if (value < 0)
633 return 1;
634
635 if (priv->cd_inverted)
636 return !value;
637 return value;
638}
639
640static int omap_hsmmc_getwp(struct mmc *mmc)
641{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100642 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530643 int value;
644
645 value = dm_gpio_get_value(&priv->wp_gpio);
646 /* if no WP return as 0 */
647 if (value < 0)
648 return 0;
649 return value;
650}
651#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200652static int omap_hsmmc_getcd(struct mmc *mmc)
653{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100654 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200655 int cd_gpio;
656
657 /* if no CD return as 1 */
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100658 cd_gpio = priv->cd_gpio;
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200659 if (cd_gpio < 0)
660 return 1;
661
Igor Grinberg0b03a932014-11-03 11:32:23 +0200662 /* NOTE: assumes card detect signal is active-low */
663 return !gpio_get_value(cd_gpio);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200664}
665
666static int omap_hsmmc_getwp(struct mmc *mmc)
667{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100668 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200669 int wp_gpio;
670
671 /* if no WP return as 0 */
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100672 wp_gpio = priv->wp_gpio;
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200673 if (wp_gpio < 0)
674 return 0;
675
Igor Grinberg0b03a932014-11-03 11:32:23 +0200676 /* NOTE: assumes write protect signal is active-high */
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200677 return gpio_get_value(wp_gpio);
678}
679#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530680#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200681
682static const struct mmc_ops omap_hsmmc_ops = {
683 .send_cmd = omap_hsmmc_send_cmd,
684 .set_ios = omap_hsmmc_set_ios,
685 .init = omap_hsmmc_init_setup,
686#ifdef OMAP_HSMMC_USE_GPIO
687 .getcd = omap_hsmmc_getcd,
688 .getwp = omap_hsmmc_getwp,
689#endif
690};
691
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530692#ifndef CONFIG_DM_MMC
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000693int omap_mmc_init(int dev_index, uint host_caps_mask, uint f_max, int cd_gpio,
694 int wp_gpio)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700695{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200696 struct mmc *mmc;
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100697 struct omap_hsmmc_data *priv;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200698 struct mmc_config *cfg;
699 uint host_caps_val;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700700
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100701 priv = malloc(sizeof(*priv));
702 if (priv == NULL)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200703 return -1;
704
Rob Herring5a203972015-03-23 17:56:59 -0500705 host_caps_val = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700706
707 switch (dev_index) {
708 case 0:
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100709 priv->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700710 break;
Tom Rini1037d582011-10-12 06:20:50 +0000711#ifdef OMAP_HSMMC2_BASE
Sukumar Ghoraide941242010-09-18 20:32:33 -0700712 case 1:
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100713 priv->base_addr = (struct hsmmc *)OMAP_HSMMC2_BASE;
Lubomir Popov152ba362013-08-14 18:59:18 +0300714#if (defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
Nishanth Menon3891a542016-11-29 15:22:00 +0530715 defined(CONFIG_DRA7XX) || defined(CONFIG_AM33XX) || \
Roger Quadros3b689392015-09-19 16:26:53 +0530716 defined(CONFIG_AM43XX) || defined(CONFIG_SOC_KEYSTONE)) && \
717 defined(CONFIG_HSMMC2_8BIT)
Lubomir Popov152ba362013-08-14 18:59:18 +0300718 /* Enable 8-bit interface for eMMC on OMAP4/5 or DRA7XX */
719 host_caps_val |= MMC_MODE_8BIT;
720#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700721 break;
Tom Rini1037d582011-10-12 06:20:50 +0000722#endif
723#ifdef OMAP_HSMMC3_BASE
Sukumar Ghoraide941242010-09-18 20:32:33 -0700724 case 2:
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100725 priv->base_addr = (struct hsmmc *)OMAP_HSMMC3_BASE;
Nishanth Menon3891a542016-11-29 15:22:00 +0530726#if defined(CONFIG_DRA7XX) && defined(CONFIG_HSMMC3_8BIT)
Lubomir Popov152ba362013-08-14 18:59:18 +0300727 /* Enable 8-bit interface for eMMC on DRA7XX */
728 host_caps_val |= MMC_MODE_8BIT;
729#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700730 break;
Tom Rini1037d582011-10-12 06:20:50 +0000731#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700732 default:
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100733 priv->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700734 return 1;
735 }
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200736#ifdef OMAP_HSMMC_USE_GPIO
737 /* on error gpio values are set to -1, which is what we want */
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100738 priv->cd_gpio = omap_mmc_setup_gpio_in(cd_gpio, "mmc_cd");
739 priv->wp_gpio = omap_mmc_setup_gpio_in(wp_gpio, "mmc_wp");
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200740#endif
Peter Korsgaard173ddc52013-03-21 04:00:04 +0000741
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100742 cfg = &priv->cfg;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700743
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200744 cfg->name = "OMAP SD/MMC";
745 cfg->ops = &omap_hsmmc_ops;
746
747 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
748 cfg->host_caps = host_caps_val & ~host_caps_mask;
749
750 cfg->f_min = 400000;
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +0000751
752 if (f_max != 0)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200753 cfg->f_max = f_max;
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +0000754 else {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200755 if (cfg->host_caps & MMC_MODE_HS) {
756 if (cfg->host_caps & MMC_MODE_HS_52MHz)
757 cfg->f_max = 52000000;
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +0000758 else
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200759 cfg->f_max = 26000000;
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +0000760 } else
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200761 cfg->f_max = 20000000;
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +0000762 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700763
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200764 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
John Rigby8feafcc2011-04-18 05:50:08 +0000765
John Rigby4ca92442011-04-19 05:48:14 +0000766#if defined(CONFIG_OMAP34XX)
767 /*
768 * Silicon revs 2.1 and older do not support multiblock transfers.
769 */
770 if ((get_cpu_family() == CPU_OMAP34XX) && (get_cpu_rev() <= CPU_3XX_ES21))
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200771 cfg->b_max = 1;
John Rigby4ca92442011-04-19 05:48:14 +0000772#endif
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100773 mmc = mmc_create(cfg, priv);
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200774 if (mmc == NULL)
775 return -1;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700776
777 return 0;
778}
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530779#else
780static int omap_hsmmc_ofdata_to_platdata(struct udevice *dev)
781{
782 struct omap_hsmmc_data *priv = dev_get_priv(dev);
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100783 struct omap_hsmmc_plat *plat = dev_get_platdata(dev);
784 struct mmc_config *cfg = &plat->cfg;
Adam Ford46831c12017-04-17 08:09:37 -0500785 struct omap2_mmc_platform_config *data =
786 (struct omap2_mmc_platform_config *)dev_get_driver_data(dev);
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530787 const void *fdt = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -0700788 int node = dev_of_offset(dev);
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530789 int val;
790
Mugunthan V N4bc5e192016-04-04 15:22:49 +0530791 priv->base_addr = map_physmem(dev_get_addr(dev), sizeof(struct hsmmc *),
Adam Ford46831c12017-04-17 08:09:37 -0500792 MAP_NOCACHE) + data->reg_offset;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530793
794 cfg->host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS;
795 val = fdtdec_get_int(fdt, node, "bus-width", -1);
796 if (val < 0) {
797 printf("error: bus-width property missing\n");
798 return -ENOENT;
799 }
800
801 switch (val) {
802 case 0x8:
803 cfg->host_caps |= MMC_MODE_8BIT;
804 case 0x4:
805 cfg->host_caps |= MMC_MODE_4BIT;
806 break;
807 default:
808 printf("error: invalid bus-width property\n");
809 return -ENOENT;
810 }
811
812 cfg->f_min = 400000;
813 cfg->f_max = fdtdec_get_int(fdt, node, "max-frequency", 52000000);
814 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
815 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
816
Sekhar Nori4de2de52016-08-10 19:24:03 +0530817#ifdef OMAP_HSMMC_USE_GPIO
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530818 priv->cd_inverted = fdtdec_get_bool(fdt, node, "cd-inverted");
Sekhar Nori4de2de52016-08-10 19:24:03 +0530819#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530820
821 return 0;
822}
823
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +0100824#ifdef CONFIG_BLK
825
826static int omap_hsmmc_bind(struct udevice *dev)
827{
828 struct omap_hsmmc_plat *plat = dev_get_platdata(dev);
829
830 return mmc_bind(dev, &plat->mmc, &plat->cfg);
831}
832#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530833static int omap_hsmmc_probe(struct udevice *dev)
834{
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100835 struct omap_hsmmc_plat *plat = dev_get_platdata(dev);
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530836 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
837 struct omap_hsmmc_data *priv = dev_get_priv(dev);
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100838 struct mmc_config *cfg = &plat->cfg;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530839 struct mmc *mmc;
840
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530841 cfg->name = "OMAP SD/MMC";
842 cfg->ops = &omap_hsmmc_ops;
843
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +0100844#ifdef CONFIG_BLK
845 mmc = &plat->mmc;
846#else
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530847 mmc = mmc_create(cfg, priv);
848 if (mmc == NULL)
849 return -1;
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +0100850#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530851
Mugunthan V N5cc6a242016-04-04 17:28:01 +0530852#ifdef OMAP_HSMMC_USE_GPIO
853 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN);
854 gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, GPIOD_IS_IN);
855#endif
856
Simon Glasscffe5d82016-05-01 13:52:34 -0600857 mmc->dev = dev;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530858 upriv->mmc = mmc;
859
860 return 0;
861}
862
Adam Ford46831c12017-04-17 08:09:37 -0500863static const struct omap2_mmc_platform_config omap3_mmc_pdata = {
864 .reg_offset = 0,
865};
866
867static const struct omap2_mmc_platform_config am33xx_mmc_pdata = {
868 .reg_offset = 0x100,
869};
870
871static const struct omap2_mmc_platform_config omap4_mmc_pdata = {
872 .reg_offset = 0x100,
873};
874
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530875static const struct udevice_id omap_hsmmc_ids[] = {
Adam Ford46831c12017-04-17 08:09:37 -0500876 {
877 .compatible = "ti,omap3-hsmmc",
878 .data = (ulong)&omap3_mmc_pdata
879 },
880 {
881 .compatible = "ti,omap4-hsmmc",
882 .data = (ulong)&omap4_mmc_pdata
883 },
884 {
885 .compatible = "ti,am33xx-hsmmc",
886 .data = (ulong)&am33xx_mmc_pdata
887 },
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530888 { }
889};
890
891U_BOOT_DRIVER(omap_hsmmc) = {
892 .name = "omap_hsmmc",
893 .id = UCLASS_MMC,
894 .of_match = omap_hsmmc_ids,
895 .ofdata_to_platdata = omap_hsmmc_ofdata_to_platdata,
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +0100896#ifdef CONFIG_BLK
897 .bind = omap_hsmmc_bind,
898#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530899 .probe = omap_hsmmc_probe,
900 .priv_auto_alloc_size = sizeof(struct omap_hsmmc_data),
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100901 .platdata_auto_alloc_size = sizeof(struct omap_hsmmc_plat),
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +0530902};
903#endif