blob: 5cb97eb02af85a1ef806dcc8e848a42c02a07d81 [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>
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +020028#include <memalign.h>
Sukumar Ghoraide941242010-09-18 20:32:33 -070029#include <mmc.h>
30#include <part.h>
31#include <i2c.h>
Felix Brack339d5782017-10-11 17:05:28 +020032#if defined(CONFIG_OMAP54XX) || defined(CONFIG_OMAP44XX)
Nishanth Menoncb199102013-03-26 05:20:54 +000033#include <palmas.h>
Felix Brack339d5782017-10-11 17:05:28 +020034#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -070035#include <asm/io.h>
36#include <asm/arch/mmc_host_def.h>
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +010037#ifdef CONFIG_OMAP54XX
38#include <asm/arch/mux_dra7xx.h>
39#include <asm/arch/dra7xx_iodelay.h>
40#endif
Roger Quadros3b689392015-09-19 16:26:53 +053041#if !defined(CONFIG_SOC_KEYSTONE)
42#include <asm/gpio.h>
Dirk Behme96e0e7b2011-05-15 09:04:47 +000043#include <asm/arch/sys_proto.h>
Roger Quadros3b689392015-09-19 16:26:53 +053044#endif
Tom Rini2a48b3a2017-02-09 13:41:28 -050045#ifdef CONFIG_MMC_OMAP36XX_PINS
46#include <asm/arch/mux.h>
47#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +053048#include <dm.h>
Jean-Jacques Hiblot42182c92018-01-30 16:01:44 +010049#include <power/regulator.h>
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +053050
51DECLARE_GLOBAL_DATA_PTR;
Sukumar Ghoraide941242010-09-18 20:32:33 -070052
Pantelis Antoniouab769f22014-02-26 19:28:45 +020053/* simplify defines to OMAP_HSMMC_USE_GPIO */
54#if (defined(CONFIG_OMAP_GPIO) && !defined(CONFIG_SPL_BUILD)) || \
55 (defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_GPIO_SUPPORT))
56#define OMAP_HSMMC_USE_GPIO
57#else
58#undef OMAP_HSMMC_USE_GPIO
59#endif
60
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +000061/* common definitions for all OMAPs */
62#define SYSCTL_SRC (1 << 25)
63#define SYSCTL_SRD (1 << 26)
64
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +010065#ifdef CONFIG_IODELAY_RECALIBRATION
66struct omap_hsmmc_pinctrl_state {
67 struct pad_conf_entry *padconf;
68 int npads;
69 struct iodelay_cfg_entry *iodelay;
70 int niodelays;
71};
72#endif
73
Nikita Kiryanovcc22b0c2012-12-03 02:19:43 +000074struct omap_hsmmc_data {
75 struct hsmmc *base_addr;
Simon Glassc4d660d2017-07-04 13:31:19 -060076#if !CONFIG_IS_ENABLED(DM_MMC)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020077 struct mmc_config cfg;
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +010078#endif
Kishon Vijay Abraham I48a2f112018-01-30 16:01:31 +010079 uint bus_width;
Jean-Jacques Hiblot5baf5432018-01-30 16:01:30 +010080 uint clock;
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +010081 ushort last_cmd;
Pantelis Antoniouab769f22014-02-26 19:28:45 +020082#ifdef OMAP_HSMMC_USE_GPIO
Simon Glassc4d660d2017-07-04 13:31:19 -060083#if CONFIG_IS_ENABLED(DM_MMC)
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +053084 struct gpio_desc cd_gpio; /* Change Detect GPIO */
85 struct gpio_desc wp_gpio; /* Write Protect GPIO */
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +053086#else
Nikita Kiryanove874d5b2012-12-03 02:19:44 +000087 int cd_gpio;
Nikita Kiryanove3913f52012-12-03 02:19:47 +000088 int wp_gpio;
Pantelis Antoniouab769f22014-02-26 19:28:45 +020089#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +053090#endif
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +010091#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblot8fc238b2018-01-30 16:01:33 +010092 enum bus_mode mode;
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +010093#endif
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +020094 u8 controller_flags;
Jean-Jacques Hiblot27a4b3b2018-02-23 10:40:18 +010095#ifdef CONFIG_MMC_OMAP_HS_ADMA
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +020096 struct omap_hsmmc_adma_desc *adma_desc_table;
97 uint desc_slot;
98#endif
Kishon Vijay Abraham I2d28eed2018-01-30 16:01:41 +010099 const char *hw_rev;
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100100 struct udevice *pbias_supply;
101 uint signal_voltage;
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +0100102#ifdef CONFIG_IODELAY_RECALIBRATION
103 struct omap_hsmmc_pinctrl_state *default_pinctrl_state;
104 struct omap_hsmmc_pinctrl_state *hs_pinctrl_state;
105 struct omap_hsmmc_pinctrl_state *hs200_1_8v_pinctrl_state;
106 struct omap_hsmmc_pinctrl_state *ddr_1_8v_pinctrl_state;
107 struct omap_hsmmc_pinctrl_state *sdr12_pinctrl_state;
108 struct omap_hsmmc_pinctrl_state *sdr25_pinctrl_state;
109 struct omap_hsmmc_pinctrl_state *ddr50_pinctrl_state;
110 struct omap_hsmmc_pinctrl_state *sdr50_pinctrl_state;
111 struct omap_hsmmc_pinctrl_state *sdr104_pinctrl_state;
112#endif
113};
114
115struct omap_mmc_of_data {
116 u8 controller_flags;
Nikita Kiryanovcc22b0c2012-12-03 02:19:43 +0000117};
118
Jean-Jacques Hiblot27a4b3b2018-02-23 10:40:18 +0100119#ifdef CONFIG_MMC_OMAP_HS_ADMA
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +0200120struct omap_hsmmc_adma_desc {
121 u8 attr;
122 u8 reserved;
123 u16 len;
124 u32 addr;
125};
126
127#define ADMA_MAX_LEN 63488
128
129/* Decriptor table defines */
130#define ADMA_DESC_ATTR_VALID BIT(0)
131#define ADMA_DESC_ATTR_END BIT(1)
132#define ADMA_DESC_ATTR_INT BIT(2)
133#define ADMA_DESC_ATTR_ACT1 BIT(4)
134#define ADMA_DESC_ATTR_ACT2 BIT(5)
135
136#define ADMA_DESC_TRANSFER_DATA ADMA_DESC_ATTR_ACT2
137#define ADMA_DESC_LINK_DESC (ADMA_DESC_ATTR_ACT1 | ADMA_DESC_ATTR_ACT2)
138#endif
139
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500140/* If we fail after 1 second wait, something is really bad */
141#define MAX_RETRY_MS 1000
Jean-Jacques Hiblota4efd732018-01-30 16:01:37 +0100142#define MMC_TIMEOUT_MS 20
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500143
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +0200144/* DMA transfers can take a long time if a lot a data is transferred.
145 * The timeout must take in account the amount of data. Let's assume
146 * that the time will never exceed 333 ms per MB (in other word we assume
147 * that the bandwidth is always above 3MB/s).
148 */
149#define DMA_TIMEOUT_PER_MB 333
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100150#define OMAP_HSMMC_SUPPORTS_DUAL_VOLT BIT(0)
151#define OMAP_HSMMC_NO_1_8_V BIT(1)
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +0200152#define OMAP_HSMMC_USE_ADMA BIT(2)
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +0100153#define OMAP_HSMMC_REQUIRE_IODELAY BIT(3)
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +0200154
Sricharan933efe62011-11-15 09:49:53 -0500155static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size);
156static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
157 unsigned int siz);
Jean-Jacques Hiblot5baf5432018-01-30 16:01:30 +0100158static void omap_hsmmc_start_clock(struct hsmmc *mmc_base);
159static void omap_hsmmc_stop_clock(struct hsmmc *mmc_base);
Jean-Jacques Hiblot14761ca2018-01-30 16:01:35 +0100160static void mmc_reset_controller_fsm(struct hsmmc *mmc_base, u32 bit);
Balaji T K14fa2dd2011-09-08 06:34:57 +0000161
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100162static inline struct omap_hsmmc_data *omap_hsmmc_get_data(struct mmc *mmc)
163{
Simon Glassc4d660d2017-07-04 13:31:19 -0600164#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100165 return dev_get_priv(mmc->dev);
166#else
167 return (struct omap_hsmmc_data *)mmc->priv;
168#endif
169}
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100170static inline struct mmc_config *omap_hsmmc_get_cfg(struct mmc *mmc)
171{
Simon Glassc4d660d2017-07-04 13:31:19 -0600172#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100173 struct omap_hsmmc_plat *plat = dev_get_platdata(mmc->dev);
174 return &plat->cfg;
175#else
176 return &((struct omap_hsmmc_data *)mmc->priv)->cfg;
177#endif
178}
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100179
Simon Glassc4d660d2017-07-04 13:31:19 -0600180#if defined(OMAP_HSMMC_USE_GPIO) && !CONFIG_IS_ENABLED(DM_MMC)
Nikita Kiryanove874d5b2012-12-03 02:19:44 +0000181static int omap_mmc_setup_gpio_in(int gpio, const char *label)
182{
Simon Glass5915a2a2014-10-22 21:37:09 -0600183 int ret;
184
185#ifndef CONFIG_DM_GPIO
Nikita Kiryanove874d5b2012-12-03 02:19:44 +0000186 if (!gpio_is_valid(gpio))
187 return -1;
Simon Glass5915a2a2014-10-22 21:37:09 -0600188#endif
189 ret = gpio_request(gpio, label);
190 if (ret)
191 return ret;
Nikita Kiryanove874d5b2012-12-03 02:19:44 +0000192
Simon Glass5915a2a2014-10-22 21:37:09 -0600193 ret = gpio_direction_input(gpio);
194 if (ret)
195 return ret;
Nikita Kiryanove874d5b2012-12-03 02:19:44 +0000196
197 return gpio;
198}
Nikita Kiryanove874d5b2012-12-03 02:19:44 +0000199#endif
200
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200201static unsigned char mmc_board_init(struct mmc *mmc)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700202{
Sukumar Ghoraide941242010-09-18 20:32:33 -0700203#if defined(CONFIG_OMAP34XX)
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100204 struct mmc_config *cfg = omap_hsmmc_get_cfg(mmc);
Sukumar Ghoraide941242010-09-18 20:32:33 -0700205 t2_t *t2_base = (t2_t *)T2_BASE;
206 struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
Grazvydas Ignotasb1e725f2012-03-19 03:50:53 +0000207 u32 pbias_lite;
Adam Ford6aca17c2017-02-06 11:31:43 -0600208#ifdef CONFIG_MMC_OMAP36XX_PINS
209 u32 wkup_ctrl = readl(OMAP34XX_CTRL_WKUP_CTRL);
210#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700211
Grazvydas Ignotasb1e725f2012-03-19 03:50:53 +0000212 pbias_lite = readl(&t2_base->pbias_lite);
213 pbias_lite &= ~(PBIASLITEPWRDNZ1 | PBIASLITEPWRDNZ0);
Albert ARIBAUD \(3ADEV\)5bfdd1f2015-01-16 09:09:50 +0100214#ifdef CONFIG_TARGET_OMAP3_CAIRO
215 /* for cairo board, we need to set up 1.8 Volt bias level on MMC1 */
216 pbias_lite &= ~PBIASLITEVMODE0;
217#endif
Adam Ford03190a72018-09-05 04:11:08 -0500218#ifdef CONFIG_TARGET_OMAP3_LOGIC
219 /* For Logic PD board, 1.8V bias to go enable gpio127 for mmc_cd */
220 pbias_lite &= ~PBIASLITEVMODE1;
221#endif
Adam Ford6aca17c2017-02-06 11:31:43 -0600222#ifdef CONFIG_MMC_OMAP36XX_PINS
223 if (get_cpu_family() == CPU_OMAP36XX) {
224 /* Disable extended drain IO before changing PBIAS */
225 wkup_ctrl &= ~OMAP34XX_CTRL_WKUP_CTRL_GPIO_IO_PWRDNZ;
226 writel(wkup_ctrl, OMAP34XX_CTRL_WKUP_CTRL);
227 }
228#endif
Grazvydas Ignotasb1e725f2012-03-19 03:50:53 +0000229 writel(pbias_lite, &t2_base->pbias_lite);
Paul Kocialkowskiaac54502014-11-08 20:55:47 +0100230
Grazvydas Ignotasb1e725f2012-03-19 03:50:53 +0000231 writel(pbias_lite | PBIASLITEPWRDNZ1 |
Sukumar Ghoraide941242010-09-18 20:32:33 -0700232 PBIASSPEEDCTRL0 | PBIASLITEPWRDNZ0,
233 &t2_base->pbias_lite);
234
Adam Ford6aca17c2017-02-06 11:31:43 -0600235#ifdef CONFIG_MMC_OMAP36XX_PINS
236 if (get_cpu_family() == CPU_OMAP36XX)
237 /* Enable extended drain IO after changing PBIAS */
238 writel(wkup_ctrl |
239 OMAP34XX_CTRL_WKUP_CTRL_GPIO_IO_PWRDNZ,
240 OMAP34XX_CTRL_WKUP_CTRL);
241#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700242 writel(readl(&t2_base->devconf0) | MMCSDIO1ADPCLKISEL,
243 &t2_base->devconf0);
244
245 writel(readl(&t2_base->devconf1) | MMCSDIO2ADPCLKISEL,
246 &t2_base->devconf1);
247
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +0000248 /* Change from default of 52MHz to 26MHz if necessary */
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +0100249 if (!(cfg->host_caps & MMC_MODE_HS_52MHz))
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +0000250 writel(readl(&t2_base->ctl_prog_io1) & ~CTLPROGIO1SPEEDCTRL,
251 &t2_base->ctl_prog_io1);
252
Sukumar Ghoraide941242010-09-18 20:32:33 -0700253 writel(readl(&prcm_base->fclken1_core) |
254 EN_MMC1 | EN_MMC2 | EN_MMC3,
255 &prcm_base->fclken1_core);
256
257 writel(readl(&prcm_base->iclken1_core) |
258 EN_MMC1 | EN_MMC2 | EN_MMC3,
259 &prcm_base->iclken1_core);
260#endif
261
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100262#if (defined(CONFIG_OMAP54XX) || defined(CONFIG_OMAP44XX)) &&\
263 !CONFIG_IS_ENABLED(DM_REGULATOR)
Balaji T K14fa2dd2011-09-08 06:34:57 +0000264 /* PBIAS config needed for MMC1 only */
Jean-Jacques Hiblotdc091272017-03-22 16:00:32 +0100265 if (mmc_get_blk_desc(mmc)->devnum == 0)
Lokesh Vutlab4b06002016-11-23 13:25:28 +0530266 vmmc_pbias_config(LDO_VOLT_3V0);
Balaji T Kdd23e592012-03-12 02:25:49 +0000267#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700268
269 return 0;
270}
271
Sricharan933efe62011-11-15 09:49:53 -0500272void mmc_init_stream(struct hsmmc *mmc_base)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700273{
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500274 ulong start;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700275
276 writel(readl(&mmc_base->con) | INIT_INITSTREAM, &mmc_base->con);
277
278 writel(MMC_CMD0, &mmc_base->cmd);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500279 start = get_timer(0);
280 while (!(readl(&mmc_base->stat) & CC_MASK)) {
281 if (get_timer(0) - start > MAX_RETRY_MS) {
282 printf("%s: timedout waiting for cc!\n", __func__);
283 return;
284 }
285 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700286 writel(CC_MASK, &mmc_base->stat)
287 ;
288 writel(MMC_CMD0, &mmc_base->cmd)
289 ;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500290 start = get_timer(0);
291 while (!(readl(&mmc_base->stat) & CC_MASK)) {
292 if (get_timer(0) - start > MAX_RETRY_MS) {
293 printf("%s: timedout waiting for cc2!\n", __func__);
294 return;
295 }
296 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700297 writel(readl(&mmc_base->con) & ~INIT_INITSTREAM, &mmc_base->con);
298}
299
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100300#if CONFIG_IS_ENABLED(DM_MMC)
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +0100301#ifdef CONFIG_IODELAY_RECALIBRATION
302static void omap_hsmmc_io_recalibrate(struct mmc *mmc)
303{
304 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
305 struct omap_hsmmc_pinctrl_state *pinctrl_state;
306
307 switch (priv->mode) {
308 case MMC_HS_200:
309 pinctrl_state = priv->hs200_1_8v_pinctrl_state;
310 break;
311 case UHS_SDR104:
312 pinctrl_state = priv->sdr104_pinctrl_state;
313 break;
314 case UHS_SDR50:
315 pinctrl_state = priv->sdr50_pinctrl_state;
316 break;
317 case UHS_DDR50:
318 pinctrl_state = priv->ddr50_pinctrl_state;
319 break;
320 case UHS_SDR25:
321 pinctrl_state = priv->sdr25_pinctrl_state;
322 break;
323 case UHS_SDR12:
324 pinctrl_state = priv->sdr12_pinctrl_state;
325 break;
326 case SD_HS:
327 case MMC_HS:
328 case MMC_HS_52:
329 pinctrl_state = priv->hs_pinctrl_state;
330 break;
331 case MMC_DDR_52:
332 pinctrl_state = priv->ddr_1_8v_pinctrl_state;
333 default:
334 pinctrl_state = priv->default_pinctrl_state;
335 break;
336 }
337
Jean-Jacques Hiblotbcc6bd82018-01-30 16:01:42 +0100338 if (!pinctrl_state)
339 pinctrl_state = priv->default_pinctrl_state;
340
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +0100341 if (priv->controller_flags & OMAP_HSMMC_REQUIRE_IODELAY) {
342 if (pinctrl_state->iodelay)
343 late_recalibrate_iodelay(pinctrl_state->padconf,
344 pinctrl_state->npads,
345 pinctrl_state->iodelay,
346 pinctrl_state->niodelays);
347 else
348 do_set_mux32((*ctrl)->control_padconf_core_base,
349 pinctrl_state->padconf,
350 pinctrl_state->npads);
351 }
352}
353#endif
Jean-Jacques Hiblot8fc238b2018-01-30 16:01:33 +0100354static void omap_hsmmc_set_timing(struct mmc *mmc)
355{
356 u32 val;
357 struct hsmmc *mmc_base;
358 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
359
360 mmc_base = priv->base_addr;
361
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +0100362 omap_hsmmc_stop_clock(mmc_base);
Jean-Jacques Hiblot8fc238b2018-01-30 16:01:33 +0100363 val = readl(&mmc_base->ac12);
364 val &= ~AC12_UHSMC_MASK;
365 priv->mode = mmc->selected_mode;
366
Kishon Vijay Abraham I9b3fc212018-01-30 16:01:34 +0100367 if (mmc_is_mode_ddr(priv->mode))
368 writel(readl(&mmc_base->con) | DDR, &mmc_base->con);
369 else
370 writel(readl(&mmc_base->con) & ~DDR, &mmc_base->con);
371
Jean-Jacques Hiblot8fc238b2018-01-30 16:01:33 +0100372 switch (priv->mode) {
373 case MMC_HS_200:
374 case UHS_SDR104:
375 val |= AC12_UHSMC_SDR104;
376 break;
377 case UHS_SDR50:
378 val |= AC12_UHSMC_SDR50;
379 break;
380 case MMC_DDR_52:
381 case UHS_DDR50:
382 val |= AC12_UHSMC_DDR50;
383 break;
384 case SD_HS:
385 case MMC_HS_52:
386 case UHS_SDR25:
387 val |= AC12_UHSMC_SDR25;
388 break;
389 case MMC_LEGACY:
390 case MMC_HS:
391 case SD_LEGACY:
392 case UHS_SDR12:
393 val |= AC12_UHSMC_SDR12;
394 break;
395 default:
396 val |= AC12_UHSMC_RES;
397 break;
398 }
399 writel(val, &mmc_base->ac12);
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +0100400
401#ifdef CONFIG_IODELAY_RECALIBRATION
402 omap_hsmmc_io_recalibrate(mmc);
403#endif
404 omap_hsmmc_start_clock(mmc_base);
Jean-Jacques Hiblot8fc238b2018-01-30 16:01:33 +0100405}
406
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100407static void omap_hsmmc_conf_bus_power(struct mmc *mmc, uint signal_voltage)
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100408{
409 struct hsmmc *mmc_base;
410 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100411 u32 hctl, ac12;
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100412
413 mmc_base = priv->base_addr;
414
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100415 hctl = readl(&mmc_base->hctl) & ~SDVS_MASK;
416 ac12 = readl(&mmc_base->ac12) & ~AC12_V1V8_SIGEN;
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100417
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100418 switch (signal_voltage) {
419 case MMC_SIGNAL_VOLTAGE_330:
420 hctl |= SDVS_3V0;
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100421 break;
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100422 case MMC_SIGNAL_VOLTAGE_180:
423 hctl |= SDVS_1V8;
424 ac12 |= AC12_V1V8_SIGEN;
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100425 break;
426 }
427
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100428 writel(hctl, &mmc_base->hctl);
429 writel(ac12, &mmc_base->ac12);
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100430}
431
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100432#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
433static int omap_hsmmc_wait_dat0(struct udevice *dev, int state, int timeout)
434{
435 int ret = -ETIMEDOUT;
436 u32 con;
437 bool dat0_high;
438 bool target_dat0_high = !!state;
439 struct omap_hsmmc_data *priv = dev_get_priv(dev);
440 struct hsmmc *mmc_base = priv->base_addr;
441
442 con = readl(&mmc_base->con);
443 writel(con | CON_CLKEXTFREE | CON_PADEN, &mmc_base->con);
444
445 timeout = DIV_ROUND_UP(timeout, 10); /* check every 10 us. */
446 while (timeout--) {
447 dat0_high = !!(readl(&mmc_base->pstate) & PSTATE_DLEV_DAT0);
448 if (dat0_high == target_dat0_high) {
449 ret = 0;
450 break;
451 }
452 udelay(10);
453 }
454 writel(con, &mmc_base->con);
455
456 return ret;
457}
458#endif
459
460#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
461#if CONFIG_IS_ENABLED(DM_REGULATOR)
462static int omap_hsmmc_set_io_regulator(struct mmc *mmc, int mV)
463{
464 int ret = 0;
465 int uV = mV * 1000;
466
467 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
468
469 if (!mmc->vqmmc_supply)
470 return 0;
471
472 /* Disable PBIAS */
473 ret = regulator_set_enable(priv->pbias_supply, false);
474 if (ret && ret != -ENOSYS)
475 return ret;
476
477 /* Turn off IO voltage */
478 ret = regulator_set_enable(mmc->vqmmc_supply, false);
479 if (ret && ret != -ENOSYS)
480 return ret;
481 /* Program a new IO voltage value */
482 ret = regulator_set_value(mmc->vqmmc_supply, uV);
483 if (ret)
484 return ret;
485 /* Turn on IO voltage */
486 ret = regulator_set_enable(mmc->vqmmc_supply, true);
487 if (ret && ret != -ENOSYS)
488 return ret;
489
490 /* Program PBIAS voltage*/
491 ret = regulator_set_value(priv->pbias_supply, uV);
492 if (ret && ret != -ENOSYS)
493 return ret;
494 /* Enable PBIAS */
495 ret = regulator_set_enable(priv->pbias_supply, true);
496 if (ret && ret != -ENOSYS)
497 return ret;
498
499 return 0;
500}
501#endif
502
503static int omap_hsmmc_set_signal_voltage(struct mmc *mmc)
504{
505 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
506 struct hsmmc *mmc_base = priv->base_addr;
507 int mv = mmc_voltage_to_mv(mmc->signal_voltage);
508 u32 capa_mask;
509 __maybe_unused u8 palmas_ldo_volt;
510 u32 val;
511
512 if (mv < 0)
513 return -EINVAL;
514
515 if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_330) {
516 /* Use 3.0V rather than 3.3V */
517 mv = 3000;
518 capa_mask = VS30_3V0SUP;
519 palmas_ldo_volt = LDO_VOLT_3V0;
520 } else if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180) {
521 capa_mask = VS18_1V8SUP;
522 palmas_ldo_volt = LDO_VOLT_1V8;
523 } else {
524 return -EOPNOTSUPP;
525 }
526
527 val = readl(&mmc_base->capa);
528 if (!(val & capa_mask))
529 return -EOPNOTSUPP;
530
531 priv->signal_voltage = mmc->signal_voltage;
532
533 omap_hsmmc_conf_bus_power(mmc, mmc->signal_voltage);
534
535#if CONFIG_IS_ENABLED(DM_REGULATOR)
536 return omap_hsmmc_set_io_regulator(mmc, mv);
537#elif (defined(CONFIG_OMAP54XX) || defined(CONFIG_OMAP44XX)) && \
538 defined(CONFIG_PALMAS_POWER)
539 if (mmc_get_blk_desc(mmc)->devnum == 0)
540 vmmc_pbias_config(palmas_ldo_volt);
541 return 0;
542#else
543 return 0;
544#endif
545}
546#endif
547
548static uint32_t omap_hsmmc_set_capabilities(struct mmc *mmc)
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100549{
550 struct hsmmc *mmc_base;
551 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
552 u32 val;
553
554 mmc_base = priv->base_addr;
555 val = readl(&mmc_base->capa);
556
557 if (priv->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
558 val |= (VS30_3V0SUP | VS18_1V8SUP);
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100559 } else if (priv->controller_flags & OMAP_HSMMC_NO_1_8_V) {
560 val |= VS30_3V0SUP;
561 val &= ~VS18_1V8SUP;
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100562 } else {
563 val |= VS18_1V8SUP;
564 val &= ~VS30_3V0SUP;
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100565 }
566
567 writel(val, &mmc_base->capa);
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100568
569 return val;
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100570}
Jean-Jacques Hiblot14761ca2018-01-30 16:01:35 +0100571
572#ifdef MMC_SUPPORTS_TUNING
573static void omap_hsmmc_disable_tuning(struct mmc *mmc)
574{
575 struct hsmmc *mmc_base;
576 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
577 u32 val;
578
579 mmc_base = priv->base_addr;
580 val = readl(&mmc_base->ac12);
581 val &= ~(AC12_SCLK_SEL);
582 writel(val, &mmc_base->ac12);
583
584 val = readl(&mmc_base->dll);
585 val &= ~(DLL_FORCE_VALUE | DLL_SWT);
586 writel(val, &mmc_base->dll);
587}
588
589static void omap_hsmmc_set_dll(struct mmc *mmc, int count)
590{
591 int i;
592 struct hsmmc *mmc_base;
593 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
594 u32 val;
595
596 mmc_base = priv->base_addr;
597 val = readl(&mmc_base->dll);
598 val |= DLL_FORCE_VALUE;
599 val &= ~(DLL_FORCE_SR_C_MASK << DLL_FORCE_SR_C_SHIFT);
600 val |= (count << DLL_FORCE_SR_C_SHIFT);
601 writel(val, &mmc_base->dll);
602
603 val |= DLL_CALIB;
604 writel(val, &mmc_base->dll);
605 for (i = 0; i < 1000; i++) {
606 if (readl(&mmc_base->dll) & DLL_CALIB)
607 break;
608 }
609 val &= ~DLL_CALIB;
610 writel(val, &mmc_base->dll);
611}
612
613static int omap_hsmmc_execute_tuning(struct udevice *dev, uint opcode)
614{
615 struct omap_hsmmc_data *priv = dev_get_priv(dev);
616 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
617 struct mmc *mmc = upriv->mmc;
618 struct hsmmc *mmc_base;
619 u32 val;
620 u8 cur_match, prev_match = 0;
621 int ret;
622 u32 phase_delay = 0;
623 u32 start_window = 0, max_window = 0;
624 u32 length = 0, max_len = 0;
625
626 mmc_base = priv->base_addr;
627 val = readl(&mmc_base->capa2);
628
629 /* clock tuning is not needed for upto 52MHz */
630 if (!((mmc->selected_mode == MMC_HS_200) ||
631 (mmc->selected_mode == UHS_SDR104) ||
632 ((mmc->selected_mode == UHS_SDR50) && (val & CAPA2_TSDR50))))
633 return 0;
634
635 val = readl(&mmc_base->dll);
636 val |= DLL_SWT;
637 writel(val, &mmc_base->dll);
638 while (phase_delay <= MAX_PHASE_DELAY) {
639 omap_hsmmc_set_dll(mmc, phase_delay);
640
641 cur_match = !mmc_send_tuning(mmc, opcode, NULL);
642
643 if (cur_match) {
644 if (prev_match) {
645 length++;
646 } else {
647 start_window = phase_delay;
648 length = 1;
649 }
650 }
651
652 if (length > max_len) {
653 max_window = start_window;
654 max_len = length;
655 }
656
657 prev_match = cur_match;
658 phase_delay += 4;
659 }
660
661 if (!max_len) {
662 ret = -EIO;
663 goto tuning_error;
664 }
665
666 val = readl(&mmc_base->ac12);
667 if (!(val & AC12_SCLK_SEL)) {
668 ret = -EIO;
669 goto tuning_error;
670 }
671
672 phase_delay = max_window + 4 * ((3 * max_len) >> 2);
673 omap_hsmmc_set_dll(mmc, phase_delay);
674
675 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
676 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRC);
677
678 return 0;
679
680tuning_error:
681
682 omap_hsmmc_disable_tuning(mmc);
683 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
684 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRC);
685
686 return ret;
687}
688#endif
Jean-Jacques Hiblot42182c92018-01-30 16:01:44 +0100689
690static void omap_hsmmc_send_init_stream(struct udevice *dev)
691{
692 struct omap_hsmmc_data *priv = dev_get_priv(dev);
693 struct hsmmc *mmc_base = priv->base_addr;
694
695 mmc_init_stream(mmc_base);
696}
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100697#endif
698
Jean-Jacques Hiblot2faa1a32018-01-30 16:01:36 +0100699static void mmc_enable_irq(struct mmc *mmc, struct mmc_cmd *cmd)
700{
701 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
702 struct hsmmc *mmc_base = priv->base_addr;
703 u32 irq_mask = INT_EN_MASK;
704
705 /*
706 * TODO: Errata i802 indicates only DCRC interrupts can occur during
707 * tuning procedure and DCRC should be disabled. But see occurences
708 * of DEB, CIE, CEB, CCRC interupts during tuning procedure. These
709 * interrupts occur along with BRR, so the data is actually in the
710 * buffer. It has to be debugged why these interrutps occur
711 */
712 if (cmd && mmc_is_tuning_cmd(cmd->cmdidx))
713 irq_mask &= ~(IE_DEB | IE_DCRC | IE_CIE | IE_CEB | IE_CCRC);
714
715 writel(irq_mask, &mmc_base->ie);
716}
717
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200718static int omap_hsmmc_init_setup(struct mmc *mmc)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700719{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100720 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Nikita Kiryanovcc22b0c2012-12-03 02:19:43 +0000721 struct hsmmc *mmc_base;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700722 unsigned int reg_val;
723 unsigned int dsor;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500724 ulong start;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700725
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100726 mmc_base = priv->base_addr;
Balaji T K14fa2dd2011-09-08 06:34:57 +0000727 mmc_board_init(mmc);
Sukumar Ghoraide941242010-09-18 20:32:33 -0700728
729 writel(readl(&mmc_base->sysconfig) | MMC_SOFTRESET,
730 &mmc_base->sysconfig);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500731 start = get_timer(0);
732 while ((readl(&mmc_base->sysstatus) & RESETDONE) == 0) {
733 if (get_timer(0) - start > MAX_RETRY_MS) {
734 printf("%s: timedout waiting for cc2!\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900735 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500736 }
737 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700738 writel(readl(&mmc_base->sysctl) | SOFTRESETALL, &mmc_base->sysctl);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500739 start = get_timer(0);
740 while ((readl(&mmc_base->sysctl) & SOFTRESETALL) != 0x0) {
741 if (get_timer(0) - start > MAX_RETRY_MS) {
742 printf("%s: timedout waiting for softresetall!\n",
743 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900744 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500745 }
746 }
Jean-Jacques Hiblot27a4b3b2018-02-23 10:40:18 +0100747#ifdef CONFIG_MMC_OMAP_HS_ADMA
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +0200748 reg_val = readl(&mmc_base->hl_hwinfo);
749 if (reg_val & MADMA_EN)
750 priv->controller_flags |= OMAP_HSMMC_USE_ADMA;
751#endif
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100752
753#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100754 reg_val = omap_hsmmc_set_capabilities(mmc);
755 omap_hsmmc_conf_bus_power(mmc, (reg_val & VS30_3V0SUP) ?
756 MMC_SIGNAL_VOLTAGE_330 : MMC_SIGNAL_VOLTAGE_180);
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100757#else
Sukumar Ghoraide941242010-09-18 20:32:33 -0700758 writel(DTW_1_BITMODE | SDBP_PWROFF | SDVS_3V0, &mmc_base->hctl);
759 writel(readl(&mmc_base->capa) | VS30_3V0SUP | VS18_1V8SUP,
760 &mmc_base->capa);
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +0100761#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700762
763 reg_val = readl(&mmc_base->con) & RESERVED_MASK;
764
765 writel(CTPL_MMC_SD | reg_val | WPP_ACTIVEHIGH | CDP_ACTIVEHIGH |
766 MIT_CTO | DW8_1_4BITMODE | MODE_FUNC | STR_BLOCK |
767 HR_NOHOSTRESP | INIT_NOINIT | NOOPENDRAIN, &mmc_base->con);
768
769 dsor = 240;
770 mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
Kishon Vijay Abraham I29171dc2017-09-21 16:51:36 +0200771 (ICE_STOP | DTO_15THDTO));
Sukumar Ghoraide941242010-09-18 20:32:33 -0700772 mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
773 (dsor << CLKD_OFFSET) | ICE_OSCILLATE);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500774 start = get_timer(0);
775 while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
776 if (get_timer(0) - start > MAX_RETRY_MS) {
777 printf("%s: timedout waiting for ics!\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900778 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500779 }
780 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700781 writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
782
783 writel(readl(&mmc_base->hctl) | SDBP_PWRON, &mmc_base->hctl);
784
Jean-Jacques Hiblot2faa1a32018-01-30 16:01:36 +0100785 mmc_enable_irq(mmc, NULL);
Jean-Jacques Hiblot42182c92018-01-30 16:01:44 +0100786
787#if !CONFIG_IS_ENABLED(DM_MMC)
Sukumar Ghoraide941242010-09-18 20:32:33 -0700788 mmc_init_stream(mmc_base);
Jean-Jacques Hiblot42182c92018-01-30 16:01:44 +0100789#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -0700790
791 return 0;
792}
793
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +0000794/*
795 * MMC controller internal finite state machine reset
796 *
797 * Used to reset command or data internal state machines, using respectively
798 * SRC or SRD bit of SYSCTL register
799 */
800static void mmc_reset_controller_fsm(struct hsmmc *mmc_base, u32 bit)
801{
802 ulong start;
803
804 mmc_reg_out(&mmc_base->sysctl, bit, bit);
805
Oleksandr Tyshchenko61a6cc22013-08-06 13:44:16 +0300806 /*
807 * CMD(DAT) lines reset procedures are slightly different
808 * for OMAP3 and OMAP4(AM335x,OMAP5,DRA7xx).
809 * According to OMAP3 TRM:
810 * Set SRC(SRD) bit in MMCHS_SYSCTL register to 0x1 and wait until it
811 * returns to 0x0.
812 * According to OMAP4(AM335x,OMAP5,DRA7xx) TRMs, CMD(DATA) lines reset
813 * procedure steps must be as follows:
814 * 1. Initiate CMD(DAT) line reset by writing 0x1 to SRC(SRD) bit in
815 * MMCHS_SYSCTL register (SD_SYSCTL for AM335x).
816 * 2. Poll the SRC(SRD) bit until it is set to 0x1.
817 * 3. Wait until the SRC (SRD) bit returns to 0x0
818 * (reset procedure is completed).
819 */
820#if defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
Nikita Kiryanovdce55b92015-07-30 23:56:20 +0300821 defined(CONFIG_AM33XX) || defined(CONFIG_AM43XX)
Oleksandr Tyshchenko61a6cc22013-08-06 13:44:16 +0300822 if (!(readl(&mmc_base->sysctl) & bit)) {
823 start = get_timer(0);
824 while (!(readl(&mmc_base->sysctl) & bit)) {
Jean-Jacques Hiblota4efd732018-01-30 16:01:37 +0100825 if (get_timer(0) - start > MMC_TIMEOUT_MS)
Oleksandr Tyshchenko61a6cc22013-08-06 13:44:16 +0300826 return;
827 }
828 }
829#endif
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +0000830 start = get_timer(0);
831 while ((readl(&mmc_base->sysctl) & bit) != 0) {
832 if (get_timer(0) - start > MAX_RETRY_MS) {
833 printf("%s: timedout waiting for sysctl %x to clear\n",
834 __func__, bit);
835 return;
836 }
837 }
838}
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +0200839
Jean-Jacques Hiblot27a4b3b2018-02-23 10:40:18 +0100840#ifdef CONFIG_MMC_OMAP_HS_ADMA
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +0200841static void omap_hsmmc_adma_desc(struct mmc *mmc, char *buf, u16 len, bool end)
842{
843 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
844 struct omap_hsmmc_adma_desc *desc;
845 u8 attr;
846
847 desc = &priv->adma_desc_table[priv->desc_slot];
848
849 attr = ADMA_DESC_ATTR_VALID | ADMA_DESC_TRANSFER_DATA;
850 if (!end)
851 priv->desc_slot++;
852 else
853 attr |= ADMA_DESC_ATTR_END;
854
855 desc->len = len;
856 desc->addr = (u32)buf;
857 desc->reserved = 0;
858 desc->attr = attr;
859}
860
861static void omap_hsmmc_prepare_adma_table(struct mmc *mmc,
862 struct mmc_data *data)
863{
864 uint total_len = data->blocksize * data->blocks;
865 uint desc_count = DIV_ROUND_UP(total_len, ADMA_MAX_LEN);
866 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
867 int i = desc_count;
868 char *buf;
869
870 priv->desc_slot = 0;
871 priv->adma_desc_table = (struct omap_hsmmc_adma_desc *)
872 memalign(ARCH_DMA_MINALIGN, desc_count *
873 sizeof(struct omap_hsmmc_adma_desc));
874
875 if (data->flags & MMC_DATA_READ)
876 buf = data->dest;
877 else
878 buf = (char *)data->src;
879
880 while (--i) {
881 omap_hsmmc_adma_desc(mmc, buf, ADMA_MAX_LEN, false);
882 buf += ADMA_MAX_LEN;
883 total_len -= ADMA_MAX_LEN;
884 }
885
886 omap_hsmmc_adma_desc(mmc, buf, total_len, true);
887
888 flush_dcache_range((long)priv->adma_desc_table,
889 (long)priv->adma_desc_table +
890 ROUND(desc_count *
891 sizeof(struct omap_hsmmc_adma_desc),
892 ARCH_DMA_MINALIGN));
893}
894
895static void omap_hsmmc_prepare_data(struct mmc *mmc, struct mmc_data *data)
896{
897 struct hsmmc *mmc_base;
898 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
899 u32 val;
900 char *buf;
901
902 mmc_base = priv->base_addr;
903 omap_hsmmc_prepare_adma_table(mmc, data);
904
905 if (data->flags & MMC_DATA_READ)
906 buf = data->dest;
907 else
908 buf = (char *)data->src;
909
910 val = readl(&mmc_base->hctl);
911 val |= DMA_SELECT;
912 writel(val, &mmc_base->hctl);
913
914 val = readl(&mmc_base->con);
915 val |= DMA_MASTER;
916 writel(val, &mmc_base->con);
917
918 writel((u32)priv->adma_desc_table, &mmc_base->admasal);
919
920 flush_dcache_range((u32)buf,
921 (u32)buf +
922 ROUND(data->blocksize * data->blocks,
923 ARCH_DMA_MINALIGN));
924}
925
926static void omap_hsmmc_dma_cleanup(struct mmc *mmc)
927{
928 struct hsmmc *mmc_base;
929 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
930 u32 val;
931
932 mmc_base = priv->base_addr;
933
934 val = readl(&mmc_base->con);
935 val &= ~DMA_MASTER;
936 writel(val, &mmc_base->con);
937
938 val = readl(&mmc_base->hctl);
939 val &= ~DMA_SELECT;
940 writel(val, &mmc_base->hctl);
941
942 kfree(priv->adma_desc_table);
943}
944#else
945#define omap_hsmmc_adma_desc
946#define omap_hsmmc_prepare_adma_table
947#define omap_hsmmc_prepare_data
948#define omap_hsmmc_dma_cleanup
949#endif
950
Simon Glassc4d660d2017-07-04 13:31:19 -0600951#if !CONFIG_IS_ENABLED(DM_MMC)
Pantelis Antoniouab769f22014-02-26 19:28:45 +0200952static int omap_hsmmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
Sukumar Ghoraide941242010-09-18 20:32:33 -0700953 struct mmc_data *data)
954{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100955 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Jean-Jacques Hiblotb5511d62017-04-14 19:50:02 +0200956#else
957static int omap_hsmmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
958 struct mmc_data *data)
959{
960 struct omap_hsmmc_data *priv = dev_get_priv(dev);
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +0200961 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
962 struct mmc *mmc = upriv->mmc;
963#endif
Nikita Kiryanovcc22b0c2012-12-03 02:19:43 +0000964 struct hsmmc *mmc_base;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700965 unsigned int flags, mmc_stat;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500966 ulong start;
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +0100967 priv->last_cmd = cmd->cmdidx;
Sukumar Ghoraide941242010-09-18 20:32:33 -0700968
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +0100969 mmc_base = priv->base_addr;
Kishon Vijay Abraham I866bb982017-09-21 16:51:35 +0200970
971 if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION)
972 return 0;
973
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500974 start = get_timer(0);
Tom Rinia7778f82012-01-30 11:22:25 +0000975 while ((readl(&mmc_base->pstate) & (DATI_MASK | CMDI_MASK)) != 0) {
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500976 if (get_timer(0) - start > MAX_RETRY_MS) {
Tom Rinia7778f82012-01-30 11:22:25 +0000977 printf("%s: timedout waiting on cmd inhibit to clear\n",
978 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900979 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500980 }
981 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700982 writel(0xFFFFFFFF, &mmc_base->stat);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500983 start = get_timer(0);
984 while (readl(&mmc_base->stat)) {
985 if (get_timer(0) - start > MAX_RETRY_MS) {
Grazvydas Ignotas15ceb1d2012-03-19 12:11:43 +0000986 printf("%s: timedout waiting for STAT (%x) to clear\n",
987 __func__, readl(&mmc_base->stat));
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900988 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -0500989 }
990 }
Sukumar Ghoraide941242010-09-18 20:32:33 -0700991 /*
992 * CMDREG
993 * CMDIDX[13:8] : Command index
994 * DATAPRNT[5] : Data Present Select
995 * ENCMDIDX[4] : Command Index Check Enable
996 * ENCMDCRC[3] : Command CRC Check Enable
997 * RSPTYP[1:0]
998 * 00 = No Response
999 * 01 = Length 136
1000 * 10 = Length 48
1001 * 11 = Length 48 Check busy after response
1002 */
1003 /* Delay added before checking the status of frq change
1004 * retry not supported by mmc.c(core file)
1005 */
1006 if (cmd->cmdidx == SD_CMD_APP_SEND_SCR)
1007 udelay(50000); /* wait 50 ms */
1008
1009 if (!(cmd->resp_type & MMC_RSP_PRESENT))
1010 flags = 0;
1011 else if (cmd->resp_type & MMC_RSP_136)
1012 flags = RSP_TYPE_LGHT136 | CICE_NOCHECK;
1013 else if (cmd->resp_type & MMC_RSP_BUSY)
1014 flags = RSP_TYPE_LGHT48B;
1015 else
1016 flags = RSP_TYPE_LGHT48;
1017
1018 /* enable default flags */
1019 flags = flags | (CMD_TYPE_NORMAL | CICE_NOCHECK | CCCE_NOCHECK |
Kishon Vijay Abraham I29171dc2017-09-21 16:51:36 +02001020 MSBS_SGLEBLK);
1021 flags &= ~(ACEN_ENABLE | BCE_ENABLE | DE_ENABLE);
Sukumar Ghoraide941242010-09-18 20:32:33 -07001022
1023 if (cmd->resp_type & MMC_RSP_CRC)
1024 flags |= CCCE_CHECK;
1025 if (cmd->resp_type & MMC_RSP_OPCODE)
1026 flags |= CICE_CHECK;
1027
1028 if (data) {
1029 if ((cmd->cmdidx == MMC_CMD_READ_MULTIPLE_BLOCK) ||
1030 (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK)) {
Kishon Vijay Abraham I866bb982017-09-21 16:51:35 +02001031 flags |= (MSBS_MULTIBLK | BCE_ENABLE | ACEN_ENABLE);
Sukumar Ghoraide941242010-09-18 20:32:33 -07001032 data->blocksize = 512;
1033 writel(data->blocksize | (data->blocks << 16),
1034 &mmc_base->blk);
1035 } else
1036 writel(data->blocksize | NBLK_STPCNT, &mmc_base->blk);
1037
1038 if (data->flags & MMC_DATA_READ)
1039 flags |= (DP_DATA | DDIR_READ);
1040 else
1041 flags |= (DP_DATA | DDIR_WRITE);
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +02001042
Jean-Jacques Hiblot27a4b3b2018-02-23 10:40:18 +01001043#ifdef CONFIG_MMC_OMAP_HS_ADMA
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +02001044 if ((priv->controller_flags & OMAP_HSMMC_USE_ADMA) &&
1045 !mmc_is_tuning_cmd(cmd->cmdidx)) {
1046 omap_hsmmc_prepare_data(mmc, data);
1047 flags |= DE_ENABLE;
1048 }
1049#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -07001050 }
1051
Jean-Jacques Hiblot2faa1a32018-01-30 16:01:36 +01001052 mmc_enable_irq(mmc, cmd);
1053
Sukumar Ghoraide941242010-09-18 20:32:33 -07001054 writel(cmd->cmdarg, &mmc_base->arg);
Lubomir Popov152ba362013-08-14 18:59:18 +03001055 udelay(20); /* To fix "No status update" error on eMMC */
Sukumar Ghoraide941242010-09-18 20:32:33 -07001056 writel((cmd->cmdidx << 24) | flags, &mmc_base->cmd);
1057
Nishanth Menoneb9a28f2010-11-19 11:18:12 -05001058 start = get_timer(0);
Sukumar Ghoraide941242010-09-18 20:32:33 -07001059 do {
1060 mmc_stat = readl(&mmc_base->stat);
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +02001061 if (get_timer(start) > MAX_RETRY_MS) {
Nishanth Menoneb9a28f2010-11-19 11:18:12 -05001062 printf("%s : timeout: No status update\n", __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +09001063 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -05001064 }
1065 } while (!mmc_stat);
Sukumar Ghoraide941242010-09-18 20:32:33 -07001066
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +00001067 if ((mmc_stat & IE_CTO) != 0) {
1068 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRC);
Jaehoon Chung915ffa52016-07-19 16:33:36 +09001069 return -ETIMEDOUT;
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +00001070 } else if ((mmc_stat & ERRI_MASK) != 0)
Sukumar Ghoraide941242010-09-18 20:32:33 -07001071 return -1;
1072
1073 if (mmc_stat & CC_MASK) {
1074 writel(CC_MASK, &mmc_base->stat);
1075 if (cmd->resp_type & MMC_RSP_PRESENT) {
1076 if (cmd->resp_type & MMC_RSP_136) {
1077 /* response type 2 */
1078 cmd->response[3] = readl(&mmc_base->rsp10);
1079 cmd->response[2] = readl(&mmc_base->rsp32);
1080 cmd->response[1] = readl(&mmc_base->rsp54);
1081 cmd->response[0] = readl(&mmc_base->rsp76);
1082 } else
1083 /* response types 1, 1b, 3, 4, 5, 6 */
1084 cmd->response[0] = readl(&mmc_base->rsp10);
1085 }
1086 }
1087
Jean-Jacques Hiblot27a4b3b2018-02-23 10:40:18 +01001088#ifdef CONFIG_MMC_OMAP_HS_ADMA
Kishon Vijay Abraham If0d53e82017-09-21 16:51:34 +02001089 if ((priv->controller_flags & OMAP_HSMMC_USE_ADMA) && data &&
1090 !mmc_is_tuning_cmd(cmd->cmdidx)) {
1091 u32 sz_mb, timeout;
1092
1093 if (mmc_stat & IE_ADMAE) {
1094 omap_hsmmc_dma_cleanup(mmc);
1095 return -EIO;
1096 }
1097
1098 sz_mb = DIV_ROUND_UP(data->blocksize * data->blocks, 1 << 20);
1099 timeout = sz_mb * DMA_TIMEOUT_PER_MB;
1100 if (timeout < MAX_RETRY_MS)
1101 timeout = MAX_RETRY_MS;
1102
1103 start = get_timer(0);
1104 do {
1105 mmc_stat = readl(&mmc_base->stat);
1106 if (mmc_stat & TC_MASK) {
1107 writel(readl(&mmc_base->stat) | TC_MASK,
1108 &mmc_base->stat);
1109 break;
1110 }
1111 if (get_timer(start) > timeout) {
1112 printf("%s : DMA timeout: No status update\n",
1113 __func__);
1114 return -ETIMEDOUT;
1115 }
1116 } while (1);
1117
1118 omap_hsmmc_dma_cleanup(mmc);
1119 return 0;
1120 }
1121#endif
1122
Sukumar Ghoraide941242010-09-18 20:32:33 -07001123 if (data && (data->flags & MMC_DATA_READ)) {
1124 mmc_read_data(mmc_base, data->dest,
1125 data->blocksize * data->blocks);
1126 } else if (data && (data->flags & MMC_DATA_WRITE)) {
1127 mmc_write_data(mmc_base, data->src,
1128 data->blocksize * data->blocks);
1129 }
1130 return 0;
1131}
1132
Sricharan933efe62011-11-15 09:49:53 -05001133static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size)
Sukumar Ghoraide941242010-09-18 20:32:33 -07001134{
1135 unsigned int *output_buf = (unsigned int *)buf;
1136 unsigned int mmc_stat;
1137 unsigned int count;
1138
1139 /*
1140 * Start Polled Read
1141 */
1142 count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
1143 count /= 4;
1144
1145 while (size) {
Nishanth Menoneb9a28f2010-11-19 11:18:12 -05001146 ulong start = get_timer(0);
Sukumar Ghoraide941242010-09-18 20:32:33 -07001147 do {
1148 mmc_stat = readl(&mmc_base->stat);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -05001149 if (get_timer(0) - start > MAX_RETRY_MS) {
1150 printf("%s: timedout waiting for status!\n",
1151 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +09001152 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -05001153 }
Sukumar Ghoraide941242010-09-18 20:32:33 -07001154 } while (mmc_stat == 0);
1155
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +00001156 if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
1157 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
1158
Sukumar Ghoraide941242010-09-18 20:32:33 -07001159 if ((mmc_stat & ERRI_MASK) != 0)
1160 return 1;
1161
1162 if (mmc_stat & BRR_MASK) {
1163 unsigned int k;
1164
1165 writel(readl(&mmc_base->stat) | BRR_MASK,
1166 &mmc_base->stat);
1167 for (k = 0; k < count; k++) {
1168 *output_buf = readl(&mmc_base->data);
1169 output_buf++;
1170 }
1171 size -= (count*4);
1172 }
1173
1174 if (mmc_stat & BWR_MASK)
1175 writel(readl(&mmc_base->stat) | BWR_MASK,
1176 &mmc_base->stat);
1177
1178 if (mmc_stat & TC_MASK) {
1179 writel(readl(&mmc_base->stat) | TC_MASK,
1180 &mmc_base->stat);
1181 break;
1182 }
1183 }
1184 return 0;
1185}
1186
Jean-Jacques Hiblotc7d08d82018-02-23 10:40:17 +01001187#if CONFIG_IS_ENABLED(MMC_WRITE)
Sricharan933efe62011-11-15 09:49:53 -05001188static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
Jean-Jacques Hiblotc7d08d82018-02-23 10:40:17 +01001189 unsigned int size)
Sukumar Ghoraide941242010-09-18 20:32:33 -07001190{
1191 unsigned int *input_buf = (unsigned int *)buf;
1192 unsigned int mmc_stat;
1193 unsigned int count;
1194
1195 /*
Lubomir Popov152ba362013-08-14 18:59:18 +03001196 * Start Polled Write
Sukumar Ghoraide941242010-09-18 20:32:33 -07001197 */
1198 count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
1199 count /= 4;
1200
1201 while (size) {
Nishanth Menoneb9a28f2010-11-19 11:18:12 -05001202 ulong start = get_timer(0);
Sukumar Ghoraide941242010-09-18 20:32:33 -07001203 do {
1204 mmc_stat = readl(&mmc_base->stat);
Nishanth Menoneb9a28f2010-11-19 11:18:12 -05001205 if (get_timer(0) - start > MAX_RETRY_MS) {
1206 printf("%s: timedout waiting for status!\n",
1207 __func__);
Jaehoon Chung915ffa52016-07-19 16:33:36 +09001208 return -ETIMEDOUT;
Nishanth Menoneb9a28f2010-11-19 11:18:12 -05001209 }
Sukumar Ghoraide941242010-09-18 20:32:33 -07001210 } while (mmc_stat == 0);
1211
Grazvydas Ignotas25c719e2012-03-19 12:12:06 +00001212 if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
1213 mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
1214
Sukumar Ghoraide941242010-09-18 20:32:33 -07001215 if ((mmc_stat & ERRI_MASK) != 0)
1216 return 1;
1217
1218 if (mmc_stat & BWR_MASK) {
1219 unsigned int k;
1220
1221 writel(readl(&mmc_base->stat) | BWR_MASK,
1222 &mmc_base->stat);
1223 for (k = 0; k < count; k++) {
1224 writel(*input_buf, &mmc_base->data);
1225 input_buf++;
1226 }
1227 size -= (count*4);
1228 }
1229
1230 if (mmc_stat & BRR_MASK)
1231 writel(readl(&mmc_base->stat) | BRR_MASK,
1232 &mmc_base->stat);
1233
1234 if (mmc_stat & TC_MASK) {
1235 writel(readl(&mmc_base->stat) | TC_MASK,
1236 &mmc_base->stat);
1237 break;
1238 }
1239 }
1240 return 0;
1241}
Jean-Jacques Hiblotc7d08d82018-02-23 10:40:17 +01001242#else
1243static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
1244 unsigned int size)
1245{
1246 return -ENOTSUPP;
1247}
1248#endif
Jean-Jacques Hiblot5baf5432018-01-30 16:01:30 +01001249static void omap_hsmmc_stop_clock(struct hsmmc *mmc_base)
1250{
1251 writel(readl(&mmc_base->sysctl) & ~CEN_ENABLE, &mmc_base->sysctl);
1252}
1253
1254static void omap_hsmmc_start_clock(struct hsmmc *mmc_base)
1255{
1256 writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
1257}
1258
1259static void omap_hsmmc_set_clock(struct mmc *mmc)
1260{
1261 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
1262 struct hsmmc *mmc_base;
1263 unsigned int dsor = 0;
1264 ulong start;
1265
1266 mmc_base = priv->base_addr;
1267 omap_hsmmc_stop_clock(mmc_base);
1268
1269 /* TODO: Is setting DTO required here? */
1270 mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK),
1271 (ICE_STOP | DTO_15THDTO));
1272
1273 if (mmc->clock != 0) {
1274 dsor = DIV_ROUND_UP(MMC_CLOCK_REFERENCE * 1000000, mmc->clock);
1275 if (dsor > CLKD_MAX)
1276 dsor = CLKD_MAX;
1277 } else {
1278 dsor = CLKD_MAX;
1279 }
1280
1281 mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
1282 (dsor << CLKD_OFFSET) | ICE_OSCILLATE);
1283
1284 start = get_timer(0);
1285 while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
1286 if (get_timer(0) - start > MAX_RETRY_MS) {
1287 printf("%s: timedout waiting for ics!\n", __func__);
1288 return;
1289 }
1290 }
1291
Jean-Jacques Hiblot3149c132018-01-30 16:01:43 +01001292 priv->clock = MMC_CLOCK_REFERENCE * 1000000 / dsor;
1293 mmc->clock = priv->clock;
Jean-Jacques Hiblot5baf5432018-01-30 16:01:30 +01001294 omap_hsmmc_start_clock(mmc_base);
1295}
1296
Kishon Vijay Abraham I48a2f112018-01-30 16:01:31 +01001297static void omap_hsmmc_set_bus_width(struct mmc *mmc)
Sukumar Ghoraide941242010-09-18 20:32:33 -07001298{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001299 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Nikita Kiryanovcc22b0c2012-12-03 02:19:43 +00001300 struct hsmmc *mmc_base;
Sukumar Ghoraide941242010-09-18 20:32:33 -07001301
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001302 mmc_base = priv->base_addr;
Sukumar Ghoraide941242010-09-18 20:32:33 -07001303 /* configue bus width */
1304 switch (mmc->bus_width) {
1305 case 8:
1306 writel(readl(&mmc_base->con) | DTW_8_BITMODE,
1307 &mmc_base->con);
1308 break;
1309
1310 case 4:
1311 writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
1312 &mmc_base->con);
1313 writel(readl(&mmc_base->hctl) | DTW_4_BITMODE,
1314 &mmc_base->hctl);
1315 break;
1316
1317 case 1:
1318 default:
1319 writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
1320 &mmc_base->con);
1321 writel(readl(&mmc_base->hctl) & ~DTW_4_BITMODE,
1322 &mmc_base->hctl);
1323 break;
1324 }
1325
Kishon Vijay Abraham I48a2f112018-01-30 16:01:31 +01001326 priv->bus_width = mmc->bus_width;
1327}
1328
1329#if !CONFIG_IS_ENABLED(DM_MMC)
1330static int omap_hsmmc_set_ios(struct mmc *mmc)
1331{
1332 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
1333#else
1334static int omap_hsmmc_set_ios(struct udevice *dev)
1335{
1336 struct omap_hsmmc_data *priv = dev_get_priv(dev);
1337 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
1338 struct mmc *mmc = upriv->mmc;
1339#endif
Kishon Vijay Abraham I90321dc2018-01-30 16:01:45 +01001340 struct hsmmc *mmc_base = priv->base_addr;
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +01001341 int ret = 0;
Kishon Vijay Abraham I48a2f112018-01-30 16:01:31 +01001342
1343 if (priv->bus_width != mmc->bus_width)
1344 omap_hsmmc_set_bus_width(mmc);
1345
Jean-Jacques Hiblot5baf5432018-01-30 16:01:30 +01001346 if (priv->clock != mmc->clock)
1347 omap_hsmmc_set_clock(mmc);
Jaehoon Chung07b0b9c2016-12-30 15:30:16 +09001348
Kishon Vijay Abraham I90321dc2018-01-30 16:01:45 +01001349 if (mmc->clk_disable)
1350 omap_hsmmc_stop_clock(mmc_base);
1351 else
1352 omap_hsmmc_start_clock(mmc_base);
1353
Jean-Jacques Hiblot8fc238b2018-01-30 16:01:33 +01001354#if CONFIG_IS_ENABLED(DM_MMC)
1355 if (priv->mode != mmc->selected_mode)
1356 omap_hsmmc_set_timing(mmc);
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +01001357
1358#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
1359 if (priv->signal_voltage != mmc->signal_voltage)
1360 ret = omap_hsmmc_set_signal_voltage(mmc);
Jean-Jacques Hiblot8fc238b2018-01-30 16:01:33 +01001361#endif
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +01001362#endif
1363 return ret;
Sukumar Ghoraide941242010-09-18 20:32:33 -07001364}
1365
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001366#ifdef OMAP_HSMMC_USE_GPIO
Simon Glassc4d660d2017-07-04 13:31:19 -06001367#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotb5511d62017-04-14 19:50:02 +02001368static int omap_hsmmc_getcd(struct udevice *dev)
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301369{
Adam Ford307a2142018-08-21 07:16:56 -05001370 int value = -1;
1371#if CONFIG_IS_ENABLED(DM_GPIO)
Adam Fordf4df4052018-09-08 08:16:23 -05001372 struct omap_hsmmc_data *priv = dev_get_priv(dev);
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301373 value = dm_gpio_get_value(&priv->cd_gpio);
Adam Ford307a2142018-08-21 07:16:56 -05001374#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301375 /* if no CD return as 1 */
1376 if (value < 0)
1377 return 1;
1378
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301379 return value;
1380}
1381
Jean-Jacques Hiblotb5511d62017-04-14 19:50:02 +02001382static int omap_hsmmc_getwp(struct udevice *dev)
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301383{
Adam Ford307a2142018-08-21 07:16:56 -05001384 int value = 0;
1385#if CONFIG_IS_ENABLED(DM_GPIO)
Jean-Jacques Hiblotb5511d62017-04-14 19:50:02 +02001386 struct omap_hsmmc_data *priv = dev_get_priv(dev);
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301387 value = dm_gpio_get_value(&priv->wp_gpio);
Adam Ford307a2142018-08-21 07:16:56 -05001388#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301389 /* if no WP return as 0 */
1390 if (value < 0)
1391 return 0;
1392 return value;
1393}
1394#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001395static int omap_hsmmc_getcd(struct mmc *mmc)
1396{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001397 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001398 int cd_gpio;
1399
1400 /* if no CD return as 1 */
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001401 cd_gpio = priv->cd_gpio;
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001402 if (cd_gpio < 0)
1403 return 1;
1404
Igor Grinberg0b03a932014-11-03 11:32:23 +02001405 /* NOTE: assumes card detect signal is active-low */
1406 return !gpio_get_value(cd_gpio);
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001407}
1408
1409static int omap_hsmmc_getwp(struct mmc *mmc)
1410{
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001411 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001412 int wp_gpio;
1413
1414 /* if no WP return as 0 */
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001415 wp_gpio = priv->wp_gpio;
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001416 if (wp_gpio < 0)
1417 return 0;
1418
Igor Grinberg0b03a932014-11-03 11:32:23 +02001419 /* NOTE: assumes write protect signal is active-high */
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001420 return gpio_get_value(wp_gpio);
1421}
1422#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301423#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001424
Simon Glassc4d660d2017-07-04 13:31:19 -06001425#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotb5511d62017-04-14 19:50:02 +02001426static const struct dm_mmc_ops omap_hsmmc_ops = {
1427 .send_cmd = omap_hsmmc_send_cmd,
1428 .set_ios = omap_hsmmc_set_ios,
1429#ifdef OMAP_HSMMC_USE_GPIO
1430 .get_cd = omap_hsmmc_getcd,
1431 .get_wp = omap_hsmmc_getwp,
1432#endif
Jean-Jacques Hiblot14761ca2018-01-30 16:01:35 +01001433#ifdef MMC_SUPPORTS_TUNING
1434 .execute_tuning = omap_hsmmc_execute_tuning,
1435#endif
Jean-Jacques Hiblot42182c92018-01-30 16:01:44 +01001436 .send_init_stream = omap_hsmmc_send_init_stream,
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +01001437#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
1438 .wait_dat0 = omap_hsmmc_wait_dat0,
1439#endif
Jean-Jacques Hiblotb5511d62017-04-14 19:50:02 +02001440};
1441#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001442static const struct mmc_ops omap_hsmmc_ops = {
1443 .send_cmd = omap_hsmmc_send_cmd,
1444 .set_ios = omap_hsmmc_set_ios,
1445 .init = omap_hsmmc_init_setup,
1446#ifdef OMAP_HSMMC_USE_GPIO
1447 .getcd = omap_hsmmc_getcd,
1448 .getwp = omap_hsmmc_getwp,
1449#endif
1450};
Jean-Jacques Hiblotb5511d62017-04-14 19:50:02 +02001451#endif
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001452
Simon Glassc4d660d2017-07-04 13:31:19 -06001453#if !CONFIG_IS_ENABLED(DM_MMC)
Nikita Kiryanove3913f52012-12-03 02:19:47 +00001454int omap_mmc_init(int dev_index, uint host_caps_mask, uint f_max, int cd_gpio,
1455 int wp_gpio)
Sukumar Ghoraide941242010-09-18 20:32:33 -07001456{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001457 struct mmc *mmc;
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001458 struct omap_hsmmc_data *priv;
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001459 struct mmc_config *cfg;
1460 uint host_caps_val;
Sukumar Ghoraide941242010-09-18 20:32:33 -07001461
Alex Kiernan4a41fec2018-02-09 15:24:38 +00001462 priv = calloc(1, sizeof(*priv));
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001463 if (priv == NULL)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001464 return -1;
1465
Rob Herring5a203972015-03-23 17:56:59 -05001466 host_caps_val = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS;
Sukumar Ghoraide941242010-09-18 20:32:33 -07001467
1468 switch (dev_index) {
1469 case 0:
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001470 priv->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
Sukumar Ghoraide941242010-09-18 20:32:33 -07001471 break;
Tom Rini1037d582011-10-12 06:20:50 +00001472#ifdef OMAP_HSMMC2_BASE
Sukumar Ghoraide941242010-09-18 20:32:33 -07001473 case 1:
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001474 priv->base_addr = (struct hsmmc *)OMAP_HSMMC2_BASE;
Lubomir Popov152ba362013-08-14 18:59:18 +03001475#if (defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
Nishanth Menon3891a542016-11-29 15:22:00 +05301476 defined(CONFIG_DRA7XX) || defined(CONFIG_AM33XX) || \
Roger Quadros3b689392015-09-19 16:26:53 +05301477 defined(CONFIG_AM43XX) || defined(CONFIG_SOC_KEYSTONE)) && \
1478 defined(CONFIG_HSMMC2_8BIT)
Lubomir Popov152ba362013-08-14 18:59:18 +03001479 /* Enable 8-bit interface for eMMC on OMAP4/5 or DRA7XX */
1480 host_caps_val |= MMC_MODE_8BIT;
1481#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -07001482 break;
Tom Rini1037d582011-10-12 06:20:50 +00001483#endif
1484#ifdef OMAP_HSMMC3_BASE
Sukumar Ghoraide941242010-09-18 20:32:33 -07001485 case 2:
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001486 priv->base_addr = (struct hsmmc *)OMAP_HSMMC3_BASE;
Nishanth Menon3891a542016-11-29 15:22:00 +05301487#if defined(CONFIG_DRA7XX) && defined(CONFIG_HSMMC3_8BIT)
Lubomir Popov152ba362013-08-14 18:59:18 +03001488 /* Enable 8-bit interface for eMMC on DRA7XX */
1489 host_caps_val |= MMC_MODE_8BIT;
1490#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -07001491 break;
Tom Rini1037d582011-10-12 06:20:50 +00001492#endif
Sukumar Ghoraide941242010-09-18 20:32:33 -07001493 default:
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001494 priv->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
Sukumar Ghoraide941242010-09-18 20:32:33 -07001495 return 1;
1496 }
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001497#ifdef OMAP_HSMMC_USE_GPIO
1498 /* on error gpio values are set to -1, which is what we want */
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001499 priv->cd_gpio = omap_mmc_setup_gpio_in(cd_gpio, "mmc_cd");
1500 priv->wp_gpio = omap_mmc_setup_gpio_in(wp_gpio, "mmc_wp");
Pantelis Antoniouab769f22014-02-26 19:28:45 +02001501#endif
Peter Korsgaard173ddc52013-03-21 04:00:04 +00001502
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001503 cfg = &priv->cfg;
Sukumar Ghoraide941242010-09-18 20:32:33 -07001504
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001505 cfg->name = "OMAP SD/MMC";
1506 cfg->ops = &omap_hsmmc_ops;
1507
1508 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
1509 cfg->host_caps = host_caps_val & ~host_caps_mask;
1510
1511 cfg->f_min = 400000;
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +00001512
1513 if (f_max != 0)
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001514 cfg->f_max = f_max;
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +00001515 else {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001516 if (cfg->host_caps & MMC_MODE_HS) {
1517 if (cfg->host_caps & MMC_MODE_HS_52MHz)
1518 cfg->f_max = 52000000;
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +00001519 else
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001520 cfg->f_max = 26000000;
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +00001521 } else
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001522 cfg->f_max = 20000000;
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +00001523 }
Sukumar Ghoraide941242010-09-18 20:32:33 -07001524
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001525 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
John Rigby8feafcc2011-04-18 05:50:08 +00001526
John Rigby4ca92442011-04-19 05:48:14 +00001527#if defined(CONFIG_OMAP34XX)
1528 /*
1529 * Silicon revs 2.1 and older do not support multiblock transfers.
1530 */
1531 if ((get_cpu_family() == CPU_OMAP34XX) && (get_cpu_rev() <= CPU_3XX_ES21))
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001532 cfg->b_max = 1;
John Rigby4ca92442011-04-19 05:48:14 +00001533#endif
Kishon Vijay Abraham I2d28eed2018-01-30 16:01:41 +01001534
Jean-Jacques Hiblotae000e22017-03-22 16:00:31 +01001535 mmc = mmc_create(cfg, priv);
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001536 if (mmc == NULL)
1537 return -1;
Sukumar Ghoraide941242010-09-18 20:32:33 -07001538
1539 return 0;
1540}
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301541#else
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001542
1543#ifdef CONFIG_IODELAY_RECALIBRATION
1544static struct pad_conf_entry *
1545omap_hsmmc_get_pad_conf_entry(const fdt32_t *pinctrl, int count)
1546{
1547 int index = 0;
1548 struct pad_conf_entry *padconf;
1549
1550 padconf = (struct pad_conf_entry *)malloc(sizeof(*padconf) * count);
1551 if (!padconf) {
1552 debug("failed to allocate memory\n");
1553 return 0;
1554 }
1555
1556 while (index < count) {
1557 padconf[index].offset = fdt32_to_cpu(pinctrl[2 * index]);
1558 padconf[index].val = fdt32_to_cpu(pinctrl[2 * index + 1]);
1559 index++;
1560 }
1561
1562 return padconf;
1563}
1564
1565static struct iodelay_cfg_entry *
1566omap_hsmmc_get_iodelay_cfg_entry(const fdt32_t *pinctrl, int count)
1567{
1568 int index = 0;
1569 struct iodelay_cfg_entry *iodelay;
1570
1571 iodelay = (struct iodelay_cfg_entry *)malloc(sizeof(*iodelay) * count);
1572 if (!iodelay) {
1573 debug("failed to allocate memory\n");
1574 return 0;
1575 }
1576
1577 while (index < count) {
1578 iodelay[index].offset = fdt32_to_cpu(pinctrl[3 * index]);
1579 iodelay[index].a_delay = fdt32_to_cpu(pinctrl[3 * index + 1]);
1580 iodelay[index].g_delay = fdt32_to_cpu(pinctrl[3 * index + 2]);
1581 index++;
1582 }
1583
1584 return iodelay;
1585}
1586
1587static const fdt32_t *omap_hsmmc_get_pinctrl_entry(u32 phandle,
1588 const char *name, int *len)
1589{
1590 const void *fdt = gd->fdt_blob;
1591 int offset;
1592 const fdt32_t *pinctrl;
1593
1594 offset = fdt_node_offset_by_phandle(fdt, phandle);
1595 if (offset < 0) {
1596 debug("failed to get pinctrl node %s.\n",
1597 fdt_strerror(offset));
1598 return 0;
1599 }
1600
1601 pinctrl = fdt_getprop(fdt, offset, name, len);
1602 if (!pinctrl) {
1603 debug("failed to get property %s\n", name);
1604 return 0;
1605 }
1606
1607 return pinctrl;
1608}
1609
1610static uint32_t omap_hsmmc_get_pad_conf_phandle(struct mmc *mmc,
1611 char *prop_name)
1612{
1613 const void *fdt = gd->fdt_blob;
1614 const __be32 *phandle;
1615 int node = dev_of_offset(mmc->dev);
1616
1617 phandle = fdt_getprop(fdt, node, prop_name, NULL);
1618 if (!phandle) {
1619 debug("failed to get property %s\n", prop_name);
1620 return 0;
1621 }
1622
1623 return fdt32_to_cpu(*phandle);
1624}
1625
1626static uint32_t omap_hsmmc_get_iodelay_phandle(struct mmc *mmc,
1627 char *prop_name)
1628{
1629 const void *fdt = gd->fdt_blob;
1630 const __be32 *phandle;
1631 int len;
1632 int count;
1633 int node = dev_of_offset(mmc->dev);
1634
1635 phandle = fdt_getprop(fdt, node, prop_name, &len);
1636 if (!phandle) {
1637 debug("failed to get property %s\n", prop_name);
1638 return 0;
1639 }
1640
1641 /* No manual mode iodelay values if count < 2 */
1642 count = len / sizeof(*phandle);
1643 if (count < 2)
1644 return 0;
1645
1646 return fdt32_to_cpu(*(phandle + 1));
1647}
1648
1649static struct pad_conf_entry *
1650omap_hsmmc_get_pad_conf(struct mmc *mmc, char *prop_name, int *npads)
1651{
1652 int len;
1653 int count;
1654 struct pad_conf_entry *padconf;
1655 u32 phandle;
1656 const fdt32_t *pinctrl;
1657
1658 phandle = omap_hsmmc_get_pad_conf_phandle(mmc, prop_name);
1659 if (!phandle)
1660 return ERR_PTR(-EINVAL);
1661
1662 pinctrl = omap_hsmmc_get_pinctrl_entry(phandle, "pinctrl-single,pins",
1663 &len);
1664 if (!pinctrl)
1665 return ERR_PTR(-EINVAL);
1666
1667 count = (len / sizeof(*pinctrl)) / 2;
1668 padconf = omap_hsmmc_get_pad_conf_entry(pinctrl, count);
1669 if (!padconf)
1670 return ERR_PTR(-EINVAL);
1671
1672 *npads = count;
1673
1674 return padconf;
1675}
1676
1677static struct iodelay_cfg_entry *
1678omap_hsmmc_get_iodelay(struct mmc *mmc, char *prop_name, int *niodelay)
1679{
1680 int len;
1681 int count;
1682 struct iodelay_cfg_entry *iodelay;
1683 u32 phandle;
1684 const fdt32_t *pinctrl;
1685
1686 phandle = omap_hsmmc_get_iodelay_phandle(mmc, prop_name);
1687 /* Not all modes have manual mode iodelay values. So its not fatal */
1688 if (!phandle)
1689 return 0;
1690
1691 pinctrl = omap_hsmmc_get_pinctrl_entry(phandle, "pinctrl-pin-array",
1692 &len);
1693 if (!pinctrl)
1694 return ERR_PTR(-EINVAL);
1695
1696 count = (len / sizeof(*pinctrl)) / 3;
1697 iodelay = omap_hsmmc_get_iodelay_cfg_entry(pinctrl, count);
1698 if (!iodelay)
1699 return ERR_PTR(-EINVAL);
1700
1701 *niodelay = count;
1702
1703 return iodelay;
1704}
1705
1706static struct omap_hsmmc_pinctrl_state *
1707omap_hsmmc_get_pinctrl_by_mode(struct mmc *mmc, char *mode)
1708{
1709 int index;
1710 int npads = 0;
1711 int niodelays = 0;
1712 const void *fdt = gd->fdt_blob;
1713 int node = dev_of_offset(mmc->dev);
1714 char prop_name[11];
1715 struct omap_hsmmc_pinctrl_state *pinctrl_state;
1716
1717 pinctrl_state = (struct omap_hsmmc_pinctrl_state *)
1718 malloc(sizeof(*pinctrl_state));
1719 if (!pinctrl_state) {
1720 debug("failed to allocate memory\n");
1721 return 0;
1722 }
1723
1724 index = fdt_stringlist_search(fdt, node, "pinctrl-names", mode);
1725 if (index < 0) {
1726 debug("fail to find %s mode %s\n", mode, fdt_strerror(index));
1727 goto err_pinctrl_state;
1728 }
1729
1730 sprintf(prop_name, "pinctrl-%d", index);
1731
1732 pinctrl_state->padconf = omap_hsmmc_get_pad_conf(mmc, prop_name,
1733 &npads);
1734 if (IS_ERR(pinctrl_state->padconf))
1735 goto err_pinctrl_state;
1736 pinctrl_state->npads = npads;
1737
1738 pinctrl_state->iodelay = omap_hsmmc_get_iodelay(mmc, prop_name,
1739 &niodelays);
1740 if (IS_ERR(pinctrl_state->iodelay))
1741 goto err_padconf;
1742 pinctrl_state->niodelays = niodelays;
1743
1744 return pinctrl_state;
1745
1746err_padconf:
1747 kfree(pinctrl_state->padconf);
1748
1749err_pinctrl_state:
1750 kfree(pinctrl_state);
1751 return 0;
1752}
1753
Jean-Jacques Hiblotbcc6bd82018-01-30 16:01:42 +01001754#define OMAP_HSMMC_SETUP_PINCTRL(capmask, mode, optional) \
Kishon Vijay Abraham I2d28eed2018-01-30 16:01:41 +01001755 do { \
1756 struct omap_hsmmc_pinctrl_state *s = NULL; \
1757 char str[20]; \
1758 if (!(cfg->host_caps & capmask)) \
1759 break; \
1760 \
1761 if (priv->hw_rev) { \
1762 sprintf(str, "%s-%s", #mode, priv->hw_rev); \
1763 s = omap_hsmmc_get_pinctrl_by_mode(mmc, str); \
1764 } \
1765 \
1766 if (!s) \
1767 s = omap_hsmmc_get_pinctrl_by_mode(mmc, #mode); \
1768 \
Jean-Jacques Hiblotbcc6bd82018-01-30 16:01:42 +01001769 if (!s && !optional) { \
Kishon Vijay Abraham I2d28eed2018-01-30 16:01:41 +01001770 debug("%s: no pinctrl for %s\n", \
1771 mmc->dev->name, #mode); \
1772 cfg->host_caps &= ~(capmask); \
1773 } else { \
1774 priv->mode##_pinctrl_state = s; \
1775 } \
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001776 } while (0)
1777
1778static int omap_hsmmc_get_pinctrl_state(struct mmc *mmc)
1779{
1780 struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
1781 struct mmc_config *cfg = omap_hsmmc_get_cfg(mmc);
1782 struct omap_hsmmc_pinctrl_state *default_pinctrl;
1783
1784 if (!(priv->controller_flags & OMAP_HSMMC_REQUIRE_IODELAY))
1785 return 0;
1786
1787 default_pinctrl = omap_hsmmc_get_pinctrl_by_mode(mmc, "default");
1788 if (!default_pinctrl) {
1789 printf("no pinctrl state for default mode\n");
1790 return -EINVAL;
1791 }
1792
1793 priv->default_pinctrl_state = default_pinctrl;
1794
Jean-Jacques Hiblotbcc6bd82018-01-30 16:01:42 +01001795 OMAP_HSMMC_SETUP_PINCTRL(MMC_CAP(UHS_SDR104), sdr104, false);
1796 OMAP_HSMMC_SETUP_PINCTRL(MMC_CAP(UHS_SDR50), sdr50, false);
1797 OMAP_HSMMC_SETUP_PINCTRL(MMC_CAP(UHS_DDR50), ddr50, false);
1798 OMAP_HSMMC_SETUP_PINCTRL(MMC_CAP(UHS_SDR25), sdr25, false);
1799 OMAP_HSMMC_SETUP_PINCTRL(MMC_CAP(UHS_SDR12), sdr12, false);
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001800
Jean-Jacques Hiblotbcc6bd82018-01-30 16:01:42 +01001801 OMAP_HSMMC_SETUP_PINCTRL(MMC_CAP(MMC_HS_200), hs200_1_8v, false);
1802 OMAP_HSMMC_SETUP_PINCTRL(MMC_CAP(MMC_DDR_52), ddr_1_8v, false);
1803 OMAP_HSMMC_SETUP_PINCTRL(MMC_MODE_HS, hs, true);
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001804
1805 return 0;
1806}
1807#endif
1808
Lokesh Vutla2558c042017-04-26 13:37:05 +05301809#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Kishon Vijay Abraham I2d28eed2018-01-30 16:01:41 +01001810#ifdef CONFIG_OMAP54XX
1811__weak const struct mmc_platform_fixups *platform_fixups_mmc(uint32_t addr)
1812{
1813 return NULL;
1814}
1815#endif
1816
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301817static int omap_hsmmc_ofdata_to_platdata(struct udevice *dev)
1818{
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +01001819 struct omap_hsmmc_plat *plat = dev_get_platdata(dev);
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001820 struct omap_mmc_of_data *of_data = (void *)dev_get_driver_data(dev);
1821
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +01001822 struct mmc_config *cfg = &plat->cfg;
Kishon Vijay Abraham I2d28eed2018-01-30 16:01:41 +01001823#ifdef CONFIG_OMAP54XX
1824 const struct mmc_platform_fixups *fixups;
1825#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301826 const void *fdt = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -07001827 int node = dev_of_offset(dev);
Kishon Vijay Abraham I2d7482c2018-01-30 16:01:38 +01001828 int ret;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301829
Simon Glassa821c4a2017-05-17 17:18:05 -06001830 plat->base_addr = map_physmem(devfdt_get_addr(dev),
1831 sizeof(struct hsmmc *),
Jean-Jacques Hiblot741726a2017-09-21 16:51:32 +02001832 MAP_NOCACHE);
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301833
Kishon Vijay Abraham I2d7482c2018-01-30 16:01:38 +01001834 ret = mmc_of_parse(dev, cfg);
1835 if (ret < 0)
1836 return ret;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301837
Jean-Jacques Hiblotbeac7d32018-02-23 10:40:19 +01001838 if (!cfg->f_max)
1839 cfg->f_max = 52000000;
Kishon Vijay Abraham I2d7482c2018-01-30 16:01:38 +01001840 cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301841 cfg->f_min = 400000;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301842 cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
1843 cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
Kishon Vijay Abraham Ib5944812018-01-30 16:01:32 +01001844 if (fdtdec_get_bool(fdt, node, "ti,dual-volt"))
1845 plat->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1846 if (fdtdec_get_bool(fdt, node, "no-1-8-v"))
1847 plat->controller_flags |= OMAP_HSMMC_NO_1_8_V;
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001848 if (of_data)
1849 plat->controller_flags |= of_data->controller_flags;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301850
Kishon Vijay Abraham I2d28eed2018-01-30 16:01:41 +01001851#ifdef CONFIG_OMAP54XX
1852 fixups = platform_fixups_mmc(devfdt_get_addr(dev));
1853 if (fixups) {
1854 plat->hw_rev = fixups->hw_rev;
1855 cfg->host_caps &= ~fixups->unsupported_caps;
1856 cfg->f_max = fixups->max_freq;
1857 }
1858#endif
1859
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301860 return 0;
1861}
Lokesh Vutla2558c042017-04-26 13:37:05 +05301862#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301863
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +01001864#ifdef CONFIG_BLK
1865
1866static int omap_hsmmc_bind(struct udevice *dev)
1867{
1868 struct omap_hsmmc_plat *plat = dev_get_platdata(dev);
Jean-Jacques Hiblot45530e32018-02-23 10:40:16 +01001869 plat->mmc = calloc(1, sizeof(struct mmc));
1870 return mmc_bind(dev, plat->mmc, &plat->cfg);
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +01001871}
1872#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301873static int omap_hsmmc_probe(struct udevice *dev)
1874{
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +01001875 struct omap_hsmmc_plat *plat = dev_get_platdata(dev);
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301876 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
1877 struct omap_hsmmc_data *priv = dev_get_priv(dev);
Jean-Jacques Hiblot3d673ff2017-03-22 16:00:33 +01001878 struct mmc_config *cfg = &plat->cfg;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301879 struct mmc *mmc;
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001880#ifdef CONFIG_IODELAY_RECALIBRATION
1881 int ret;
1882#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301883
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301884 cfg->name = "OMAP SD/MMC";
Lokesh Vutla2558c042017-04-26 13:37:05 +05301885 priv->base_addr = plat->base_addr;
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001886 priv->controller_flags = plat->controller_flags;
Kishon Vijay Abraham I2d28eed2018-01-30 16:01:41 +01001887 priv->hw_rev = plat->hw_rev;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301888
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +01001889#ifdef CONFIG_BLK
Jean-Jacques Hiblot45530e32018-02-23 10:40:16 +01001890 mmc = plat->mmc;
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +01001891#else
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301892 mmc = mmc_create(cfg, priv);
1893 if (mmc == NULL)
1894 return -1;
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +01001895#endif
Jean-Jacques Hiblot04f9f8b2018-01-30 16:01:46 +01001896#if CONFIG_IS_ENABLED(DM_REGULATOR)
1897 device_get_supply_regulator(dev, "pbias-supply",
1898 &priv->pbias_supply);
1899#endif
Adam Ford307a2142018-08-21 07:16:56 -05001900#if defined(OMAP_HSMMC_USE_GPIO)
1901#if CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(DM_GPIO)
Mugunthan V N5cc6a242016-04-04 17:28:01 +05301902 gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN);
1903 gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, GPIOD_IS_IN);
1904#endif
Adam Ford307a2142018-08-21 07:16:56 -05001905#endif
Mugunthan V N5cc6a242016-04-04 17:28:01 +05301906
Simon Glasscffe5d82016-05-01 13:52:34 -06001907 mmc->dev = dev;
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301908 upriv->mmc = mmc;
1909
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001910#ifdef CONFIG_IODELAY_RECALIBRATION
1911 ret = omap_hsmmc_get_pinctrl_state(mmc);
1912 /*
1913 * disable high speed modes for the platforms that require IO delay
1914 * and for which we don't have this information
1915 */
1916 if ((ret < 0) &&
1917 (priv->controller_flags & OMAP_HSMMC_REQUIRE_IODELAY)) {
1918 priv->controller_flags &= ~OMAP_HSMMC_REQUIRE_IODELAY;
1919 cfg->host_caps &= ~(MMC_CAP(MMC_HS_200) | MMC_CAP(MMC_DDR_52) |
1920 UHS_CAPS);
1921 }
1922#endif
1923
Jean-Jacques Hiblotb5511d62017-04-14 19:50:02 +02001924 return omap_hsmmc_init_setup(mmc);
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301925}
1926
Lokesh Vutla2558c042017-04-26 13:37:05 +05301927#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001928
1929static const struct omap_mmc_of_data dra7_mmc_of_data = {
1930 .controller_flags = OMAP_HSMMC_REQUIRE_IODELAY,
1931};
1932
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301933static const struct udevice_id omap_hsmmc_ids[] = {
Jean-Jacques Hiblot741726a2017-09-21 16:51:32 +02001934 { .compatible = "ti,omap3-hsmmc" },
1935 { .compatible = "ti,omap4-hsmmc" },
1936 { .compatible = "ti,am33xx-hsmmc" },
Kishon Vijay Abraham I33c1d772018-01-30 16:01:40 +01001937 { .compatible = "ti,dra7-hsmmc", .data = (ulong)&dra7_mmc_of_data },
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301938 { }
1939};
Lokesh Vutla2558c042017-04-26 13:37:05 +05301940#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301941
1942U_BOOT_DRIVER(omap_hsmmc) = {
1943 .name = "omap_hsmmc",
1944 .id = UCLASS_MMC,
Lokesh Vutla2558c042017-04-26 13:37:05 +05301945#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301946 .of_match = omap_hsmmc_ids,
1947 .ofdata_to_platdata = omap_hsmmc_ofdata_to_platdata,
Lokesh Vutla2558c042017-04-26 13:37:05 +05301948 .platdata_auto_alloc_size = sizeof(struct omap_hsmmc_plat),
1949#endif
Jean-Jacques Hiblot17c9a1c2017-03-22 16:00:34 +01001950#ifdef CONFIG_BLK
1951 .bind = omap_hsmmc_bind,
1952#endif
Jean-Jacques Hiblotb5511d62017-04-14 19:50:02 +02001953 .ops = &omap_hsmmc_ops,
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301954 .probe = omap_hsmmc_probe,
1955 .priv_auto_alloc_size = sizeof(struct omap_hsmmc_data),
Bin Meng223b10c2018-10-24 06:36:32 -07001956#if !CONFIG_IS_ENABLED(OF_CONTROL)
Lokesh Vutlacbcb1702017-04-26 13:37:06 +05301957 .flags = DM_FLAG_PRE_RELOC,
Bin Meng223b10c2018-10-24 06:36:32 -07001958#endif
Mugunthan V Na9d6a7e2015-09-28 12:56:30 +05301959};
1960#endif