xref: /rk3399_rockchip-uboot/drivers/mmc/omap_hsmmc.c (revision cbcb1701643bf8f4f5f73648fd96c52eb4e4bc59)
1de941241SSukumar Ghorai /*
2de941241SSukumar Ghorai  * (C) Copyright 2008
3de941241SSukumar Ghorai  * Texas Instruments, <www.ti.com>
4de941241SSukumar Ghorai  * Sukumar Ghorai <s-ghorai@ti.com>
5de941241SSukumar Ghorai  *
6de941241SSukumar Ghorai  * See file CREDITS for list of people who contributed to this
7de941241SSukumar Ghorai  * project.
8de941241SSukumar Ghorai  *
9de941241SSukumar Ghorai  * This program is free software; you can redistribute it and/or
10de941241SSukumar Ghorai  * modify it under the terms of the GNU General Public License as
11de941241SSukumar Ghorai  * published by the Free Software Foundation's version 2 of
12de941241SSukumar Ghorai  * the License.
13de941241SSukumar Ghorai  *
14de941241SSukumar Ghorai  * This program is distributed in the hope that it will be useful,
15de941241SSukumar Ghorai  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16de941241SSukumar Ghorai  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17de941241SSukumar Ghorai  * GNU General Public License for more details.
18de941241SSukumar Ghorai  *
19de941241SSukumar Ghorai  * You should have received a copy of the GNU General Public License
20de941241SSukumar Ghorai  * along with this program; if not, write to the Free Software
21de941241SSukumar Ghorai  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22de941241SSukumar Ghorai  * MA 02111-1307 USA
23de941241SSukumar Ghorai  */
24de941241SSukumar Ghorai 
25de941241SSukumar Ghorai #include <config.h>
26de941241SSukumar Ghorai #include <common.h>
2793bfd616SPantelis Antoniou #include <malloc.h>
28de941241SSukumar Ghorai #include <mmc.h>
29de941241SSukumar Ghorai #include <part.h>
30de941241SSukumar Ghorai #include <i2c.h>
31de941241SSukumar Ghorai #include <twl4030.h>
3214fa2dd0SBalaji T K #include <twl6030.h>
33cb199102SNishanth Menon #include <palmas.h>
34de941241SSukumar Ghorai #include <asm/io.h>
35de941241SSukumar Ghorai #include <asm/arch/mmc_host_def.h>
363b68939fSRoger Quadros #if !defined(CONFIG_SOC_KEYSTONE)
373b68939fSRoger Quadros #include <asm/gpio.h>
3896e0e7b3SDirk Behme #include <asm/arch/sys_proto.h>
393b68939fSRoger Quadros #endif
402a48b3a2STom Rini #ifdef CONFIG_MMC_OMAP36XX_PINS
412a48b3a2STom Rini #include <asm/arch/mux.h>
422a48b3a2STom Rini #endif
43a9d6a7e2SMugunthan V N #include <dm.h>
44a9d6a7e2SMugunthan V N 
45a9d6a7e2SMugunthan V N DECLARE_GLOBAL_DATA_PTR;
46de941241SSukumar Ghorai 
47ab769f22SPantelis Antoniou /* simplify defines to OMAP_HSMMC_USE_GPIO */
48ab769f22SPantelis Antoniou #if (defined(CONFIG_OMAP_GPIO) && !defined(CONFIG_SPL_BUILD)) || \
49ab769f22SPantelis Antoniou 	(defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_GPIO_SUPPORT))
50ab769f22SPantelis Antoniou #define OMAP_HSMMC_USE_GPIO
51ab769f22SPantelis Antoniou #else
52ab769f22SPantelis Antoniou #undef OMAP_HSMMC_USE_GPIO
53ab769f22SPantelis Antoniou #endif
54ab769f22SPantelis Antoniou 
5525c719e2SGrazvydas Ignotas /* common definitions for all OMAPs */
5625c719e2SGrazvydas Ignotas #define SYSCTL_SRC	(1 << 25)
5725c719e2SGrazvydas Ignotas #define SYSCTL_SRD	(1 << 26)
5825c719e2SGrazvydas Ignotas 
5946831c1aSAdam Ford struct omap2_mmc_platform_config {
6046831c1aSAdam Ford 	u32 reg_offset;
6146831c1aSAdam Ford };
6246831c1aSAdam Ford 
63cc22b0c0SNikita Kiryanov struct omap_hsmmc_data {
64cc22b0c0SNikita Kiryanov 	struct hsmmc *base_addr;
653d673ffcSJean-Jacques Hiblot #ifndef CONFIG_DM_MMC
6693bfd616SPantelis Antoniou 	struct mmc_config cfg;
673d673ffcSJean-Jacques Hiblot #endif
68ab769f22SPantelis Antoniou #ifdef OMAP_HSMMC_USE_GPIO
69a9d6a7e2SMugunthan V N #ifdef CONFIG_DM_MMC
70a9d6a7e2SMugunthan V N 	struct gpio_desc cd_gpio;	/* Change Detect GPIO */
71a9d6a7e2SMugunthan V N 	struct gpio_desc wp_gpio;	/* Write Protect GPIO */
72a9d6a7e2SMugunthan V N 	bool cd_inverted;
73a9d6a7e2SMugunthan V N #else
74e874d5b0SNikita Kiryanov 	int cd_gpio;
75e3913f56SNikita Kiryanov 	int wp_gpio;
76ab769f22SPantelis Antoniou #endif
77a9d6a7e2SMugunthan V N #endif
78cc22b0c0SNikita Kiryanov };
79cc22b0c0SNikita Kiryanov 
80eb9a28f6SNishanth Menon /* If we fail after 1 second wait, something is really bad */
81eb9a28f6SNishanth Menon #define MAX_RETRY_MS	1000
82eb9a28f6SNishanth Menon 
83933efe64SSricharan static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size);
84933efe64SSricharan static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
85933efe64SSricharan 			unsigned int siz);
8614fa2dd0SBalaji T K 
87ae000e23SJean-Jacques Hiblot static inline struct omap_hsmmc_data *omap_hsmmc_get_data(struct mmc *mmc)
88ae000e23SJean-Jacques Hiblot {
89ae000e23SJean-Jacques Hiblot #ifdef CONFIG_DM_MMC
90ae000e23SJean-Jacques Hiblot 	return dev_get_priv(mmc->dev);
91ae000e23SJean-Jacques Hiblot #else
92ae000e23SJean-Jacques Hiblot 	return (struct omap_hsmmc_data *)mmc->priv;
93ae000e23SJean-Jacques Hiblot #endif
94ae000e23SJean-Jacques Hiblot }
953d673ffcSJean-Jacques Hiblot static inline struct mmc_config *omap_hsmmc_get_cfg(struct mmc *mmc)
963d673ffcSJean-Jacques Hiblot {
973d673ffcSJean-Jacques Hiblot #ifdef CONFIG_DM_MMC
983d673ffcSJean-Jacques Hiblot 	struct omap_hsmmc_plat *plat = dev_get_platdata(mmc->dev);
993d673ffcSJean-Jacques Hiblot 	return &plat->cfg;
1003d673ffcSJean-Jacques Hiblot #else
1013d673ffcSJean-Jacques Hiblot 	return &((struct omap_hsmmc_data *)mmc->priv)->cfg;
1023d673ffcSJean-Jacques Hiblot #endif
1033d673ffcSJean-Jacques Hiblot }
104ae000e23SJean-Jacques Hiblot 
105a9d6a7e2SMugunthan V N  #if defined(OMAP_HSMMC_USE_GPIO) && !defined(CONFIG_DM_MMC)
106e874d5b0SNikita Kiryanov static int omap_mmc_setup_gpio_in(int gpio, const char *label)
107e874d5b0SNikita Kiryanov {
1085915a2adSSimon Glass 	int ret;
1095915a2adSSimon Glass 
1105915a2adSSimon Glass #ifndef CONFIG_DM_GPIO
111e874d5b0SNikita Kiryanov 	if (!gpio_is_valid(gpio))
112e874d5b0SNikita Kiryanov 		return -1;
1135915a2adSSimon Glass #endif
1145915a2adSSimon Glass 	ret = gpio_request(gpio, label);
1155915a2adSSimon Glass 	if (ret)
1165915a2adSSimon Glass 		return ret;
117e874d5b0SNikita Kiryanov 
1185915a2adSSimon Glass 	ret = gpio_direction_input(gpio);
1195915a2adSSimon Glass 	if (ret)
1205915a2adSSimon Glass 		return ret;
121e874d5b0SNikita Kiryanov 
122e874d5b0SNikita Kiryanov 	return gpio;
123e874d5b0SNikita Kiryanov }
124e874d5b0SNikita Kiryanov #endif
125e874d5b0SNikita Kiryanov 
126750121c3SJeroen Hofstee static unsigned char mmc_board_init(struct mmc *mmc)
127de941241SSukumar Ghorai {
128de941241SSukumar Ghorai #if defined(CONFIG_OMAP34XX)
1293d673ffcSJean-Jacques Hiblot 	struct mmc_config *cfg = omap_hsmmc_get_cfg(mmc);
130de941241SSukumar Ghorai 	t2_t *t2_base = (t2_t *)T2_BASE;
131de941241SSukumar Ghorai 	struct prcm *prcm_base = (struct prcm *)PRCM_BASE;
132b1e725f2SGrazvydas Ignotas 	u32 pbias_lite;
1336aca17c9SAdam Ford #ifdef CONFIG_MMC_OMAP36XX_PINS
1346aca17c9SAdam Ford 	u32 wkup_ctrl = readl(OMAP34XX_CTRL_WKUP_CTRL);
1356aca17c9SAdam Ford #endif
136de941241SSukumar Ghorai 
137b1e725f2SGrazvydas Ignotas 	pbias_lite = readl(&t2_base->pbias_lite);
138b1e725f2SGrazvydas Ignotas 	pbias_lite &= ~(PBIASLITEPWRDNZ1 | PBIASLITEPWRDNZ0);
1395bfdd1fcSAlbert ARIBAUD \(3ADEV\) #ifdef CONFIG_TARGET_OMAP3_CAIRO
1405bfdd1fcSAlbert ARIBAUD \(3ADEV\) 	/* for cairo board, we need to set up 1.8 Volt bias level on MMC1 */
1415bfdd1fcSAlbert ARIBAUD \(3ADEV\) 	pbias_lite &= ~PBIASLITEVMODE0;
1425bfdd1fcSAlbert ARIBAUD \(3ADEV\) #endif
1436aca17c9SAdam Ford #ifdef CONFIG_MMC_OMAP36XX_PINS
1446aca17c9SAdam Ford 	if (get_cpu_family() == CPU_OMAP36XX) {
1456aca17c9SAdam Ford 		/* Disable extended drain IO before changing PBIAS */
1466aca17c9SAdam Ford 		wkup_ctrl &= ~OMAP34XX_CTRL_WKUP_CTRL_GPIO_IO_PWRDNZ;
1476aca17c9SAdam Ford 		writel(wkup_ctrl, OMAP34XX_CTRL_WKUP_CTRL);
1486aca17c9SAdam Ford 	}
1496aca17c9SAdam Ford #endif
150b1e725f2SGrazvydas Ignotas 	writel(pbias_lite, &t2_base->pbias_lite);
151aac5450eSPaul Kocialkowski 
152b1e725f2SGrazvydas Ignotas 	writel(pbias_lite | PBIASLITEPWRDNZ1 |
153de941241SSukumar Ghorai 		PBIASSPEEDCTRL0 | PBIASLITEPWRDNZ0,
154de941241SSukumar Ghorai 		&t2_base->pbias_lite);
155de941241SSukumar Ghorai 
1566aca17c9SAdam Ford #ifdef CONFIG_MMC_OMAP36XX_PINS
1576aca17c9SAdam Ford 	if (get_cpu_family() == CPU_OMAP36XX)
1586aca17c9SAdam Ford 		/* Enable extended drain IO after changing PBIAS */
1596aca17c9SAdam Ford 		writel(wkup_ctrl |
1606aca17c9SAdam Ford 				OMAP34XX_CTRL_WKUP_CTRL_GPIO_IO_PWRDNZ,
1616aca17c9SAdam Ford 				OMAP34XX_CTRL_WKUP_CTRL);
1626aca17c9SAdam Ford #endif
163de941241SSukumar Ghorai 	writel(readl(&t2_base->devconf0) | MMCSDIO1ADPCLKISEL,
164de941241SSukumar Ghorai 		&t2_base->devconf0);
165de941241SSukumar Ghorai 
166de941241SSukumar Ghorai 	writel(readl(&t2_base->devconf1) | MMCSDIO2ADPCLKISEL,
167de941241SSukumar Ghorai 		&t2_base->devconf1);
168de941241SSukumar Ghorai 
169bbbc1ae9SJonathan Solnit 	/* Change from default of 52MHz to 26MHz if necessary */
1703d673ffcSJean-Jacques Hiblot 	if (!(cfg->host_caps & MMC_MODE_HS_52MHz))
171bbbc1ae9SJonathan Solnit 		writel(readl(&t2_base->ctl_prog_io1) & ~CTLPROGIO1SPEEDCTRL,
172bbbc1ae9SJonathan Solnit 			&t2_base->ctl_prog_io1);
173bbbc1ae9SJonathan Solnit 
174de941241SSukumar Ghorai 	writel(readl(&prcm_base->fclken1_core) |
175de941241SSukumar Ghorai 		EN_MMC1 | EN_MMC2 | EN_MMC3,
176de941241SSukumar Ghorai 		&prcm_base->fclken1_core);
177de941241SSukumar Ghorai 
178de941241SSukumar Ghorai 	writel(readl(&prcm_base->iclken1_core) |
179de941241SSukumar Ghorai 		EN_MMC1 | EN_MMC2 | EN_MMC3,
180de941241SSukumar Ghorai 		&prcm_base->iclken1_core);
181de941241SSukumar Ghorai #endif
182de941241SSukumar Ghorai 
183b4b06006SLokesh Vutla #if defined(CONFIG_OMAP54XX) || defined(CONFIG_OMAP44XX)
18414fa2dd0SBalaji T K 	/* PBIAS config needed for MMC1 only */
185dc09127aSJean-Jacques Hiblot 	if (mmc_get_blk_desc(mmc)->devnum == 0)
186b4b06006SLokesh Vutla 		vmmc_pbias_config(LDO_VOLT_3V0);
187dd23e59dSBalaji T K #endif
188de941241SSukumar Ghorai 
189de941241SSukumar Ghorai 	return 0;
190de941241SSukumar Ghorai }
191de941241SSukumar Ghorai 
192933efe64SSricharan void mmc_init_stream(struct hsmmc *mmc_base)
193de941241SSukumar Ghorai {
194eb9a28f6SNishanth Menon 	ulong start;
195de941241SSukumar Ghorai 
196de941241SSukumar Ghorai 	writel(readl(&mmc_base->con) | INIT_INITSTREAM, &mmc_base->con);
197de941241SSukumar Ghorai 
198de941241SSukumar Ghorai 	writel(MMC_CMD0, &mmc_base->cmd);
199eb9a28f6SNishanth Menon 	start = get_timer(0);
200eb9a28f6SNishanth Menon 	while (!(readl(&mmc_base->stat) & CC_MASK)) {
201eb9a28f6SNishanth Menon 		if (get_timer(0) - start > MAX_RETRY_MS) {
202eb9a28f6SNishanth Menon 			printf("%s: timedout waiting for cc!\n", __func__);
203eb9a28f6SNishanth Menon 			return;
204eb9a28f6SNishanth Menon 		}
205eb9a28f6SNishanth Menon 	}
206de941241SSukumar Ghorai 	writel(CC_MASK, &mmc_base->stat)
207de941241SSukumar Ghorai 		;
208de941241SSukumar Ghorai 	writel(MMC_CMD0, &mmc_base->cmd)
209de941241SSukumar Ghorai 		;
210eb9a28f6SNishanth Menon 	start = get_timer(0);
211eb9a28f6SNishanth Menon 	while (!(readl(&mmc_base->stat) & CC_MASK)) {
212eb9a28f6SNishanth Menon 		if (get_timer(0) - start > MAX_RETRY_MS) {
213eb9a28f6SNishanth Menon 			printf("%s: timedout waiting for cc2!\n", __func__);
214eb9a28f6SNishanth Menon 			return;
215eb9a28f6SNishanth Menon 		}
216eb9a28f6SNishanth Menon 	}
217de941241SSukumar Ghorai 	writel(readl(&mmc_base->con) & ~INIT_INITSTREAM, &mmc_base->con);
218de941241SSukumar Ghorai }
219de941241SSukumar Ghorai 
220ab769f22SPantelis Antoniou static int omap_hsmmc_init_setup(struct mmc *mmc)
221de941241SSukumar Ghorai {
222ae000e23SJean-Jacques Hiblot 	struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
223cc22b0c0SNikita Kiryanov 	struct hsmmc *mmc_base;
224de941241SSukumar Ghorai 	unsigned int reg_val;
225de941241SSukumar Ghorai 	unsigned int dsor;
226eb9a28f6SNishanth Menon 	ulong start;
227de941241SSukumar Ghorai 
228ae000e23SJean-Jacques Hiblot 	mmc_base = priv->base_addr;
22914fa2dd0SBalaji T K 	mmc_board_init(mmc);
230de941241SSukumar Ghorai 
231de941241SSukumar Ghorai 	writel(readl(&mmc_base->sysconfig) | MMC_SOFTRESET,
232de941241SSukumar Ghorai 		&mmc_base->sysconfig);
233eb9a28f6SNishanth Menon 	start = get_timer(0);
234eb9a28f6SNishanth Menon 	while ((readl(&mmc_base->sysstatus) & RESETDONE) == 0) {
235eb9a28f6SNishanth Menon 		if (get_timer(0) - start > MAX_RETRY_MS) {
236eb9a28f6SNishanth Menon 			printf("%s: timedout waiting for cc2!\n", __func__);
237915ffa52SJaehoon Chung 			return -ETIMEDOUT;
238eb9a28f6SNishanth Menon 		}
239eb9a28f6SNishanth Menon 	}
240de941241SSukumar Ghorai 	writel(readl(&mmc_base->sysctl) | SOFTRESETALL, &mmc_base->sysctl);
241eb9a28f6SNishanth Menon 	start = get_timer(0);
242eb9a28f6SNishanth Menon 	while ((readl(&mmc_base->sysctl) & SOFTRESETALL) != 0x0) {
243eb9a28f6SNishanth Menon 		if (get_timer(0) - start > MAX_RETRY_MS) {
244eb9a28f6SNishanth Menon 			printf("%s: timedout waiting for softresetall!\n",
245eb9a28f6SNishanth Menon 				__func__);
246915ffa52SJaehoon Chung 			return -ETIMEDOUT;
247eb9a28f6SNishanth Menon 		}
248eb9a28f6SNishanth Menon 	}
249de941241SSukumar Ghorai 	writel(DTW_1_BITMODE | SDBP_PWROFF | SDVS_3V0, &mmc_base->hctl);
250de941241SSukumar Ghorai 	writel(readl(&mmc_base->capa) | VS30_3V0SUP | VS18_1V8SUP,
251de941241SSukumar Ghorai 		&mmc_base->capa);
252de941241SSukumar Ghorai 
253de941241SSukumar Ghorai 	reg_val = readl(&mmc_base->con) & RESERVED_MASK;
254de941241SSukumar Ghorai 
255de941241SSukumar Ghorai 	writel(CTPL_MMC_SD | reg_val | WPP_ACTIVEHIGH | CDP_ACTIVEHIGH |
256de941241SSukumar Ghorai 		MIT_CTO | DW8_1_4BITMODE | MODE_FUNC | STR_BLOCK |
257de941241SSukumar Ghorai 		HR_NOHOSTRESP | INIT_NOINIT | NOOPENDRAIN, &mmc_base->con);
258de941241SSukumar Ghorai 
259de941241SSukumar Ghorai 	dsor = 240;
260de941241SSukumar Ghorai 	mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
261de941241SSukumar Ghorai 		(ICE_STOP | DTO_15THDTO | CEN_DISABLE));
262de941241SSukumar Ghorai 	mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
263de941241SSukumar Ghorai 		(dsor << CLKD_OFFSET) | ICE_OSCILLATE);
264eb9a28f6SNishanth Menon 	start = get_timer(0);
265eb9a28f6SNishanth Menon 	while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
266eb9a28f6SNishanth Menon 		if (get_timer(0) - start > MAX_RETRY_MS) {
267eb9a28f6SNishanth Menon 			printf("%s: timedout waiting for ics!\n", __func__);
268915ffa52SJaehoon Chung 			return -ETIMEDOUT;
269eb9a28f6SNishanth Menon 		}
270eb9a28f6SNishanth Menon 	}
271de941241SSukumar Ghorai 	writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
272de941241SSukumar Ghorai 
273de941241SSukumar Ghorai 	writel(readl(&mmc_base->hctl) | SDBP_PWRON, &mmc_base->hctl);
274de941241SSukumar Ghorai 
275de941241SSukumar Ghorai 	writel(IE_BADA | IE_CERR | IE_DEB | IE_DCRC | IE_DTO | IE_CIE |
276de941241SSukumar Ghorai 		IE_CEB | IE_CCRC | IE_CTO | IE_BRR | IE_BWR | IE_TC | IE_CC,
277de941241SSukumar Ghorai 		&mmc_base->ie);
278de941241SSukumar Ghorai 
279de941241SSukumar Ghorai 	mmc_init_stream(mmc_base);
280de941241SSukumar Ghorai 
281de941241SSukumar Ghorai 	return 0;
282de941241SSukumar Ghorai }
283de941241SSukumar Ghorai 
28425c719e2SGrazvydas Ignotas /*
28525c719e2SGrazvydas Ignotas  * MMC controller internal finite state machine reset
28625c719e2SGrazvydas Ignotas  *
28725c719e2SGrazvydas Ignotas  * Used to reset command or data internal state machines, using respectively
28825c719e2SGrazvydas Ignotas  * SRC or SRD bit of SYSCTL register
28925c719e2SGrazvydas Ignotas  */
29025c719e2SGrazvydas Ignotas static void mmc_reset_controller_fsm(struct hsmmc *mmc_base, u32 bit)
29125c719e2SGrazvydas Ignotas {
29225c719e2SGrazvydas Ignotas 	ulong start;
29325c719e2SGrazvydas Ignotas 
29425c719e2SGrazvydas Ignotas 	mmc_reg_out(&mmc_base->sysctl, bit, bit);
29525c719e2SGrazvydas Ignotas 
29661a6cc27SOleksandr Tyshchenko 	/*
29761a6cc27SOleksandr Tyshchenko 	 * CMD(DAT) lines reset procedures are slightly different
29861a6cc27SOleksandr Tyshchenko 	 * for OMAP3 and OMAP4(AM335x,OMAP5,DRA7xx).
29961a6cc27SOleksandr Tyshchenko 	 * According to OMAP3 TRM:
30061a6cc27SOleksandr Tyshchenko 	 * Set SRC(SRD) bit in MMCHS_SYSCTL register to 0x1 and wait until it
30161a6cc27SOleksandr Tyshchenko 	 * returns to 0x0.
30261a6cc27SOleksandr Tyshchenko 	 * According to OMAP4(AM335x,OMAP5,DRA7xx) TRMs, CMD(DATA) lines reset
30361a6cc27SOleksandr Tyshchenko 	 * procedure steps must be as follows:
30461a6cc27SOleksandr Tyshchenko 	 * 1. Initiate CMD(DAT) line reset by writing 0x1 to SRC(SRD) bit in
30561a6cc27SOleksandr Tyshchenko 	 *    MMCHS_SYSCTL register (SD_SYSCTL for AM335x).
30661a6cc27SOleksandr Tyshchenko 	 * 2. Poll the SRC(SRD) bit until it is set to 0x1.
30761a6cc27SOleksandr Tyshchenko 	 * 3. Wait until the SRC (SRD) bit returns to 0x0
30861a6cc27SOleksandr Tyshchenko 	 *    (reset procedure is completed).
30961a6cc27SOleksandr Tyshchenko 	 */
31061a6cc27SOleksandr Tyshchenko #if defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
311dce55b93SNikita Kiryanov 	defined(CONFIG_AM33XX) || defined(CONFIG_AM43XX)
31261a6cc27SOleksandr Tyshchenko 	if (!(readl(&mmc_base->sysctl) & bit)) {
31361a6cc27SOleksandr Tyshchenko 		start = get_timer(0);
31461a6cc27SOleksandr Tyshchenko 		while (!(readl(&mmc_base->sysctl) & bit)) {
31561a6cc27SOleksandr Tyshchenko 			if (get_timer(0) - start > MAX_RETRY_MS)
31661a6cc27SOleksandr Tyshchenko 				return;
31761a6cc27SOleksandr Tyshchenko 		}
31861a6cc27SOleksandr Tyshchenko 	}
31961a6cc27SOleksandr Tyshchenko #endif
32025c719e2SGrazvydas Ignotas 	start = get_timer(0);
32125c719e2SGrazvydas Ignotas 	while ((readl(&mmc_base->sysctl) & bit) != 0) {
32225c719e2SGrazvydas Ignotas 		if (get_timer(0) - start > MAX_RETRY_MS) {
32325c719e2SGrazvydas Ignotas 			printf("%s: timedout waiting for sysctl %x to clear\n",
32425c719e2SGrazvydas Ignotas 				__func__, bit);
32525c719e2SGrazvydas Ignotas 			return;
32625c719e2SGrazvydas Ignotas 		}
32725c719e2SGrazvydas Ignotas 	}
32825c719e2SGrazvydas Ignotas }
329de941241SSukumar Ghorai 
330ab769f22SPantelis Antoniou static int omap_hsmmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
331de941241SSukumar Ghorai 			struct mmc_data *data)
332de941241SSukumar Ghorai {
333ae000e23SJean-Jacques Hiblot 	struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
334cc22b0c0SNikita Kiryanov 	struct hsmmc *mmc_base;
335de941241SSukumar Ghorai 	unsigned int flags, mmc_stat;
336eb9a28f6SNishanth Menon 	ulong start;
337de941241SSukumar Ghorai 
338ae000e23SJean-Jacques Hiblot 	mmc_base = priv->base_addr;
339eb9a28f6SNishanth Menon 	start = get_timer(0);
340a7778f8fSTom Rini 	while ((readl(&mmc_base->pstate) & (DATI_MASK | CMDI_MASK)) != 0) {
341eb9a28f6SNishanth Menon 		if (get_timer(0) - start > MAX_RETRY_MS) {
342a7778f8fSTom Rini 			printf("%s: timedout waiting on cmd inhibit to clear\n",
343a7778f8fSTom Rini 					__func__);
344915ffa52SJaehoon Chung 			return -ETIMEDOUT;
345eb9a28f6SNishanth Menon 		}
346eb9a28f6SNishanth Menon 	}
347de941241SSukumar Ghorai 	writel(0xFFFFFFFF, &mmc_base->stat);
348eb9a28f6SNishanth Menon 	start = get_timer(0);
349eb9a28f6SNishanth Menon 	while (readl(&mmc_base->stat)) {
350eb9a28f6SNishanth Menon 		if (get_timer(0) - start > MAX_RETRY_MS) {
35115ceb1deSGrazvydas Ignotas 			printf("%s: timedout waiting for STAT (%x) to clear\n",
35215ceb1deSGrazvydas Ignotas 				__func__, readl(&mmc_base->stat));
353915ffa52SJaehoon Chung 			return -ETIMEDOUT;
354eb9a28f6SNishanth Menon 		}
355eb9a28f6SNishanth Menon 	}
356de941241SSukumar Ghorai 	/*
357de941241SSukumar Ghorai 	 * CMDREG
358de941241SSukumar Ghorai 	 * CMDIDX[13:8]	: Command index
359de941241SSukumar Ghorai 	 * DATAPRNT[5]	: Data Present Select
360de941241SSukumar Ghorai 	 * ENCMDIDX[4]	: Command Index Check Enable
361de941241SSukumar Ghorai 	 * ENCMDCRC[3]	: Command CRC Check Enable
362de941241SSukumar Ghorai 	 * RSPTYP[1:0]
363de941241SSukumar Ghorai 	 *	00 = No Response
364de941241SSukumar Ghorai 	 *	01 = Length 136
365de941241SSukumar Ghorai 	 *	10 = Length 48
366de941241SSukumar Ghorai 	 *	11 = Length 48 Check busy after response
367de941241SSukumar Ghorai 	 */
368de941241SSukumar Ghorai 	/* Delay added before checking the status of frq change
369de941241SSukumar Ghorai 	 * retry not supported by mmc.c(core file)
370de941241SSukumar Ghorai 	 */
371de941241SSukumar Ghorai 	if (cmd->cmdidx == SD_CMD_APP_SEND_SCR)
372de941241SSukumar Ghorai 		udelay(50000); /* wait 50 ms */
373de941241SSukumar Ghorai 
374de941241SSukumar Ghorai 	if (!(cmd->resp_type & MMC_RSP_PRESENT))
375de941241SSukumar Ghorai 		flags = 0;
376de941241SSukumar Ghorai 	else if (cmd->resp_type & MMC_RSP_136)
377de941241SSukumar Ghorai 		flags = RSP_TYPE_LGHT136 | CICE_NOCHECK;
378de941241SSukumar Ghorai 	else if (cmd->resp_type & MMC_RSP_BUSY)
379de941241SSukumar Ghorai 		flags = RSP_TYPE_LGHT48B;
380de941241SSukumar Ghorai 	else
381de941241SSukumar Ghorai 		flags = RSP_TYPE_LGHT48;
382de941241SSukumar Ghorai 
383de941241SSukumar Ghorai 	/* enable default flags */
384de941241SSukumar Ghorai 	flags =	flags | (CMD_TYPE_NORMAL | CICE_NOCHECK | CCCE_NOCHECK |
385de941241SSukumar Ghorai 			MSBS_SGLEBLK | ACEN_DISABLE | BCE_DISABLE | DE_DISABLE);
386de941241SSukumar Ghorai 
387de941241SSukumar Ghorai 	if (cmd->resp_type & MMC_RSP_CRC)
388de941241SSukumar Ghorai 		flags |= CCCE_CHECK;
389de941241SSukumar Ghorai 	if (cmd->resp_type & MMC_RSP_OPCODE)
390de941241SSukumar Ghorai 		flags |= CICE_CHECK;
391de941241SSukumar Ghorai 
392de941241SSukumar Ghorai 	if (data) {
393de941241SSukumar Ghorai 		if ((cmd->cmdidx == MMC_CMD_READ_MULTIPLE_BLOCK) ||
394de941241SSukumar Ghorai 			 (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK)) {
395de941241SSukumar Ghorai 			flags |= (MSBS_MULTIBLK | BCE_ENABLE);
396de941241SSukumar Ghorai 			data->blocksize = 512;
397de941241SSukumar Ghorai 			writel(data->blocksize | (data->blocks << 16),
398de941241SSukumar Ghorai 							&mmc_base->blk);
399de941241SSukumar Ghorai 		} else
400de941241SSukumar Ghorai 			writel(data->blocksize | NBLK_STPCNT, &mmc_base->blk);
401de941241SSukumar Ghorai 
402de941241SSukumar Ghorai 		if (data->flags & MMC_DATA_READ)
403de941241SSukumar Ghorai 			flags |= (DP_DATA | DDIR_READ);
404de941241SSukumar Ghorai 		else
405de941241SSukumar Ghorai 			flags |= (DP_DATA | DDIR_WRITE);
406de941241SSukumar Ghorai 	}
407de941241SSukumar Ghorai 
408de941241SSukumar Ghorai 	writel(cmd->cmdarg, &mmc_base->arg);
409152ba363SLubomir Popov 	udelay(20);		/* To fix "No status update" error on eMMC */
410de941241SSukumar Ghorai 	writel((cmd->cmdidx << 24) | flags, &mmc_base->cmd);
411de941241SSukumar Ghorai 
412eb9a28f6SNishanth Menon 	start = get_timer(0);
413de941241SSukumar Ghorai 	do {
414de941241SSukumar Ghorai 		mmc_stat = readl(&mmc_base->stat);
415eb9a28f6SNishanth Menon 		if (get_timer(0) - start > MAX_RETRY_MS) {
416de941241SSukumar Ghorai 			printf("%s : timeout: No status update\n", __func__);
417915ffa52SJaehoon Chung 			return -ETIMEDOUT;
418de941241SSukumar Ghorai 		}
419eb9a28f6SNishanth Menon 	} while (!mmc_stat);
420de941241SSukumar Ghorai 
42125c719e2SGrazvydas Ignotas 	if ((mmc_stat & IE_CTO) != 0) {
42225c719e2SGrazvydas Ignotas 		mmc_reset_controller_fsm(mmc_base, SYSCTL_SRC);
423915ffa52SJaehoon Chung 		return -ETIMEDOUT;
42425c719e2SGrazvydas Ignotas 	} else if ((mmc_stat & ERRI_MASK) != 0)
425de941241SSukumar Ghorai 		return -1;
426de941241SSukumar Ghorai 
427de941241SSukumar Ghorai 	if (mmc_stat & CC_MASK) {
428de941241SSukumar Ghorai 		writel(CC_MASK, &mmc_base->stat);
429de941241SSukumar Ghorai 		if (cmd->resp_type & MMC_RSP_PRESENT) {
430de941241SSukumar Ghorai 			if (cmd->resp_type & MMC_RSP_136) {
431de941241SSukumar Ghorai 				/* response type 2 */
432de941241SSukumar Ghorai 				cmd->response[3] = readl(&mmc_base->rsp10);
433de941241SSukumar Ghorai 				cmd->response[2] = readl(&mmc_base->rsp32);
434de941241SSukumar Ghorai 				cmd->response[1] = readl(&mmc_base->rsp54);
435de941241SSukumar Ghorai 				cmd->response[0] = readl(&mmc_base->rsp76);
436de941241SSukumar Ghorai 			} else
437de941241SSukumar Ghorai 				/* response types 1, 1b, 3, 4, 5, 6 */
438de941241SSukumar Ghorai 				cmd->response[0] = readl(&mmc_base->rsp10);
439de941241SSukumar Ghorai 		}
440de941241SSukumar Ghorai 	}
441de941241SSukumar Ghorai 
442de941241SSukumar Ghorai 	if (data && (data->flags & MMC_DATA_READ)) {
443de941241SSukumar Ghorai 		mmc_read_data(mmc_base,	data->dest,
444de941241SSukumar Ghorai 				data->blocksize * data->blocks);
445de941241SSukumar Ghorai 	} else if (data && (data->flags & MMC_DATA_WRITE)) {
446de941241SSukumar Ghorai 		mmc_write_data(mmc_base, data->src,
447de941241SSukumar Ghorai 				data->blocksize * data->blocks);
448de941241SSukumar Ghorai 	}
449de941241SSukumar Ghorai 	return 0;
450de941241SSukumar Ghorai }
451de941241SSukumar Ghorai 
452933efe64SSricharan static int mmc_read_data(struct hsmmc *mmc_base, char *buf, unsigned int size)
453de941241SSukumar Ghorai {
454de941241SSukumar Ghorai 	unsigned int *output_buf = (unsigned int *)buf;
455de941241SSukumar Ghorai 	unsigned int mmc_stat;
456de941241SSukumar Ghorai 	unsigned int count;
457de941241SSukumar Ghorai 
458de941241SSukumar Ghorai 	/*
459de941241SSukumar Ghorai 	 * Start Polled Read
460de941241SSukumar Ghorai 	 */
461de941241SSukumar Ghorai 	count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
462de941241SSukumar Ghorai 	count /= 4;
463de941241SSukumar Ghorai 
464de941241SSukumar Ghorai 	while (size) {
465eb9a28f6SNishanth Menon 		ulong start = get_timer(0);
466de941241SSukumar Ghorai 		do {
467de941241SSukumar Ghorai 			mmc_stat = readl(&mmc_base->stat);
468eb9a28f6SNishanth Menon 			if (get_timer(0) - start > MAX_RETRY_MS) {
469eb9a28f6SNishanth Menon 				printf("%s: timedout waiting for status!\n",
470eb9a28f6SNishanth Menon 						__func__);
471915ffa52SJaehoon Chung 				return -ETIMEDOUT;
472eb9a28f6SNishanth Menon 			}
473de941241SSukumar Ghorai 		} while (mmc_stat == 0);
474de941241SSukumar Ghorai 
47525c719e2SGrazvydas Ignotas 		if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
47625c719e2SGrazvydas Ignotas 			mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
47725c719e2SGrazvydas Ignotas 
478de941241SSukumar Ghorai 		if ((mmc_stat & ERRI_MASK) != 0)
479de941241SSukumar Ghorai 			return 1;
480de941241SSukumar Ghorai 
481de941241SSukumar Ghorai 		if (mmc_stat & BRR_MASK) {
482de941241SSukumar Ghorai 			unsigned int k;
483de941241SSukumar Ghorai 
484de941241SSukumar Ghorai 			writel(readl(&mmc_base->stat) | BRR_MASK,
485de941241SSukumar Ghorai 				&mmc_base->stat);
486de941241SSukumar Ghorai 			for (k = 0; k < count; k++) {
487de941241SSukumar Ghorai 				*output_buf = readl(&mmc_base->data);
488de941241SSukumar Ghorai 				output_buf++;
489de941241SSukumar Ghorai 			}
490de941241SSukumar Ghorai 			size -= (count*4);
491de941241SSukumar Ghorai 		}
492de941241SSukumar Ghorai 
493de941241SSukumar Ghorai 		if (mmc_stat & BWR_MASK)
494de941241SSukumar Ghorai 			writel(readl(&mmc_base->stat) | BWR_MASK,
495de941241SSukumar Ghorai 				&mmc_base->stat);
496de941241SSukumar Ghorai 
497de941241SSukumar Ghorai 		if (mmc_stat & TC_MASK) {
498de941241SSukumar Ghorai 			writel(readl(&mmc_base->stat) | TC_MASK,
499de941241SSukumar Ghorai 				&mmc_base->stat);
500de941241SSukumar Ghorai 			break;
501de941241SSukumar Ghorai 		}
502de941241SSukumar Ghorai 	}
503de941241SSukumar Ghorai 	return 0;
504de941241SSukumar Ghorai }
505de941241SSukumar Ghorai 
506933efe64SSricharan static int mmc_write_data(struct hsmmc *mmc_base, const char *buf,
507933efe64SSricharan 				unsigned int size)
508de941241SSukumar Ghorai {
509de941241SSukumar Ghorai 	unsigned int *input_buf = (unsigned int *)buf;
510de941241SSukumar Ghorai 	unsigned int mmc_stat;
511de941241SSukumar Ghorai 	unsigned int count;
512de941241SSukumar Ghorai 
513de941241SSukumar Ghorai 	/*
514152ba363SLubomir Popov 	 * Start Polled Write
515de941241SSukumar Ghorai 	 */
516de941241SSukumar Ghorai 	count = (size > MMCSD_SECTOR_SIZE) ? MMCSD_SECTOR_SIZE : size;
517de941241SSukumar Ghorai 	count /= 4;
518de941241SSukumar Ghorai 
519de941241SSukumar Ghorai 	while (size) {
520eb9a28f6SNishanth Menon 		ulong start = get_timer(0);
521de941241SSukumar Ghorai 		do {
522de941241SSukumar Ghorai 			mmc_stat = readl(&mmc_base->stat);
523eb9a28f6SNishanth Menon 			if (get_timer(0) - start > MAX_RETRY_MS) {
524eb9a28f6SNishanth Menon 				printf("%s: timedout waiting for status!\n",
525eb9a28f6SNishanth Menon 						__func__);
526915ffa52SJaehoon Chung 				return -ETIMEDOUT;
527eb9a28f6SNishanth Menon 			}
528de941241SSukumar Ghorai 		} while (mmc_stat == 0);
529de941241SSukumar Ghorai 
53025c719e2SGrazvydas Ignotas 		if ((mmc_stat & (IE_DTO | IE_DCRC | IE_DEB)) != 0)
53125c719e2SGrazvydas Ignotas 			mmc_reset_controller_fsm(mmc_base, SYSCTL_SRD);
53225c719e2SGrazvydas Ignotas 
533de941241SSukumar Ghorai 		if ((mmc_stat & ERRI_MASK) != 0)
534de941241SSukumar Ghorai 			return 1;
535de941241SSukumar Ghorai 
536de941241SSukumar Ghorai 		if (mmc_stat & BWR_MASK) {
537de941241SSukumar Ghorai 			unsigned int k;
538de941241SSukumar Ghorai 
539de941241SSukumar Ghorai 			writel(readl(&mmc_base->stat) | BWR_MASK,
540de941241SSukumar Ghorai 					&mmc_base->stat);
541de941241SSukumar Ghorai 			for (k = 0; k < count; k++) {
542de941241SSukumar Ghorai 				writel(*input_buf, &mmc_base->data);
543de941241SSukumar Ghorai 				input_buf++;
544de941241SSukumar Ghorai 			}
545de941241SSukumar Ghorai 			size -= (count*4);
546de941241SSukumar Ghorai 		}
547de941241SSukumar Ghorai 
548de941241SSukumar Ghorai 		if (mmc_stat & BRR_MASK)
549de941241SSukumar Ghorai 			writel(readl(&mmc_base->stat) | BRR_MASK,
550de941241SSukumar Ghorai 				&mmc_base->stat);
551de941241SSukumar Ghorai 
552de941241SSukumar Ghorai 		if (mmc_stat & TC_MASK) {
553de941241SSukumar Ghorai 			writel(readl(&mmc_base->stat) | TC_MASK,
554de941241SSukumar Ghorai 				&mmc_base->stat);
555de941241SSukumar Ghorai 			break;
556de941241SSukumar Ghorai 		}
557de941241SSukumar Ghorai 	}
558de941241SSukumar Ghorai 	return 0;
559de941241SSukumar Ghorai }
560de941241SSukumar Ghorai 
56107b0b9c0SJaehoon Chung static int omap_hsmmc_set_ios(struct mmc *mmc)
562de941241SSukumar Ghorai {
563ae000e23SJean-Jacques Hiblot 	struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
564cc22b0c0SNikita Kiryanov 	struct hsmmc *mmc_base;
565de941241SSukumar Ghorai 	unsigned int dsor = 0;
566eb9a28f6SNishanth Menon 	ulong start;
567de941241SSukumar Ghorai 
568ae000e23SJean-Jacques Hiblot 	mmc_base = priv->base_addr;
569de941241SSukumar Ghorai 	/* configue bus width */
570de941241SSukumar Ghorai 	switch (mmc->bus_width) {
571de941241SSukumar Ghorai 	case 8:
572de941241SSukumar Ghorai 		writel(readl(&mmc_base->con) | DTW_8_BITMODE,
573de941241SSukumar Ghorai 			&mmc_base->con);
574de941241SSukumar Ghorai 		break;
575de941241SSukumar Ghorai 
576de941241SSukumar Ghorai 	case 4:
577de941241SSukumar Ghorai 		writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
578de941241SSukumar Ghorai 			&mmc_base->con);
579de941241SSukumar Ghorai 		writel(readl(&mmc_base->hctl) | DTW_4_BITMODE,
580de941241SSukumar Ghorai 			&mmc_base->hctl);
581de941241SSukumar Ghorai 		break;
582de941241SSukumar Ghorai 
583de941241SSukumar Ghorai 	case 1:
584de941241SSukumar Ghorai 	default:
585de941241SSukumar Ghorai 		writel(readl(&mmc_base->con) & ~DTW_8_BITMODE,
586de941241SSukumar Ghorai 			&mmc_base->con);
587de941241SSukumar Ghorai 		writel(readl(&mmc_base->hctl) & ~DTW_4_BITMODE,
588de941241SSukumar Ghorai 			&mmc_base->hctl);
589de941241SSukumar Ghorai 		break;
590de941241SSukumar Ghorai 	}
591de941241SSukumar Ghorai 
592de941241SSukumar Ghorai 	/* configure clock with 96Mhz system clock.
593de941241SSukumar Ghorai 	 */
594de941241SSukumar Ghorai 	if (mmc->clock != 0) {
595de941241SSukumar Ghorai 		dsor = (MMC_CLOCK_REFERENCE * 1000000 / mmc->clock);
596de941241SSukumar Ghorai 		if ((MMC_CLOCK_REFERENCE * 1000000) / dsor > mmc->clock)
597de941241SSukumar Ghorai 			dsor++;
598de941241SSukumar Ghorai 	}
599de941241SSukumar Ghorai 
600de941241SSukumar Ghorai 	mmc_reg_out(&mmc_base->sysctl, (ICE_MASK | DTO_MASK | CEN_MASK),
601de941241SSukumar Ghorai 				(ICE_STOP | DTO_15THDTO | CEN_DISABLE));
602de941241SSukumar Ghorai 
603de941241SSukumar Ghorai 	mmc_reg_out(&mmc_base->sysctl, ICE_MASK | CLKD_MASK,
604de941241SSukumar Ghorai 				(dsor << CLKD_OFFSET) | ICE_OSCILLATE);
605de941241SSukumar Ghorai 
606eb9a28f6SNishanth Menon 	start = get_timer(0);
607eb9a28f6SNishanth Menon 	while ((readl(&mmc_base->sysctl) & ICS_MASK) == ICS_NOTREADY) {
608eb9a28f6SNishanth Menon 		if (get_timer(0) - start > MAX_RETRY_MS) {
609eb9a28f6SNishanth Menon 			printf("%s: timedout waiting for ics!\n", __func__);
61007b0b9c0SJaehoon Chung 			return -ETIMEDOUT;
611eb9a28f6SNishanth Menon 		}
612eb9a28f6SNishanth Menon 	}
613de941241SSukumar Ghorai 	writel(readl(&mmc_base->sysctl) | CEN_ENABLE, &mmc_base->sysctl);
61407b0b9c0SJaehoon Chung 
61507b0b9c0SJaehoon Chung 	return 0;
616de941241SSukumar Ghorai }
617de941241SSukumar Ghorai 
618ab769f22SPantelis Antoniou #ifdef OMAP_HSMMC_USE_GPIO
619a9d6a7e2SMugunthan V N #ifdef CONFIG_DM_MMC
620a9d6a7e2SMugunthan V N static int omap_hsmmc_getcd(struct mmc *mmc)
621a9d6a7e2SMugunthan V N {
622ae000e23SJean-Jacques Hiblot 	struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
623a9d6a7e2SMugunthan V N 	int value;
624a9d6a7e2SMugunthan V N 
625a9d6a7e2SMugunthan V N 	value = dm_gpio_get_value(&priv->cd_gpio);
626a9d6a7e2SMugunthan V N 	/* if no CD return as 1 */
627a9d6a7e2SMugunthan V N 	if (value < 0)
628a9d6a7e2SMugunthan V N 		return 1;
629a9d6a7e2SMugunthan V N 
630a9d6a7e2SMugunthan V N 	if (priv->cd_inverted)
631a9d6a7e2SMugunthan V N 		return !value;
632a9d6a7e2SMugunthan V N 	return value;
633a9d6a7e2SMugunthan V N }
634a9d6a7e2SMugunthan V N 
635a9d6a7e2SMugunthan V N static int omap_hsmmc_getwp(struct mmc *mmc)
636a9d6a7e2SMugunthan V N {
637ae000e23SJean-Jacques Hiblot 	struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
638a9d6a7e2SMugunthan V N 	int value;
639a9d6a7e2SMugunthan V N 
640a9d6a7e2SMugunthan V N 	value = dm_gpio_get_value(&priv->wp_gpio);
641a9d6a7e2SMugunthan V N 	/* if no WP return as 0 */
642a9d6a7e2SMugunthan V N 	if (value < 0)
643a9d6a7e2SMugunthan V N 		return 0;
644a9d6a7e2SMugunthan V N 	return value;
645a9d6a7e2SMugunthan V N }
646a9d6a7e2SMugunthan V N #else
647ab769f22SPantelis Antoniou static int omap_hsmmc_getcd(struct mmc *mmc)
648ab769f22SPantelis Antoniou {
649ae000e23SJean-Jacques Hiblot 	struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
650ab769f22SPantelis Antoniou 	int cd_gpio;
651ab769f22SPantelis Antoniou 
652ab769f22SPantelis Antoniou 	/* if no CD return as 1 */
653ae000e23SJean-Jacques Hiblot 	cd_gpio = priv->cd_gpio;
654ab769f22SPantelis Antoniou 	if (cd_gpio < 0)
655ab769f22SPantelis Antoniou 		return 1;
656ab769f22SPantelis Antoniou 
6570b03a931SIgor Grinberg 	/* NOTE: assumes card detect signal is active-low */
6580b03a931SIgor Grinberg 	return !gpio_get_value(cd_gpio);
659ab769f22SPantelis Antoniou }
660ab769f22SPantelis Antoniou 
661ab769f22SPantelis Antoniou static int omap_hsmmc_getwp(struct mmc *mmc)
662ab769f22SPantelis Antoniou {
663ae000e23SJean-Jacques Hiblot 	struct omap_hsmmc_data *priv = omap_hsmmc_get_data(mmc);
664ab769f22SPantelis Antoniou 	int wp_gpio;
665ab769f22SPantelis Antoniou 
666ab769f22SPantelis Antoniou 	/* if no WP return as 0 */
667ae000e23SJean-Jacques Hiblot 	wp_gpio = priv->wp_gpio;
668ab769f22SPantelis Antoniou 	if (wp_gpio < 0)
669ab769f22SPantelis Antoniou 		return 0;
670ab769f22SPantelis Antoniou 
6710b03a931SIgor Grinberg 	/* NOTE: assumes write protect signal is active-high */
672ab769f22SPantelis Antoniou 	return gpio_get_value(wp_gpio);
673ab769f22SPantelis Antoniou }
674ab769f22SPantelis Antoniou #endif
675a9d6a7e2SMugunthan V N #endif
676ab769f22SPantelis Antoniou 
677ab769f22SPantelis Antoniou static const struct mmc_ops omap_hsmmc_ops = {
678ab769f22SPantelis Antoniou 	.send_cmd	= omap_hsmmc_send_cmd,
679ab769f22SPantelis Antoniou 	.set_ios	= omap_hsmmc_set_ios,
680ab769f22SPantelis Antoniou 	.init		= omap_hsmmc_init_setup,
681ab769f22SPantelis Antoniou #ifdef OMAP_HSMMC_USE_GPIO
682ab769f22SPantelis Antoniou 	.getcd		= omap_hsmmc_getcd,
683ab769f22SPantelis Antoniou 	.getwp		= omap_hsmmc_getwp,
684ab769f22SPantelis Antoniou #endif
685ab769f22SPantelis Antoniou };
686ab769f22SPantelis Antoniou 
687a9d6a7e2SMugunthan V N #ifndef CONFIG_DM_MMC
688e3913f56SNikita Kiryanov int omap_mmc_init(int dev_index, uint host_caps_mask, uint f_max, int cd_gpio,
689e3913f56SNikita Kiryanov 		int wp_gpio)
690de941241SSukumar Ghorai {
69193bfd616SPantelis Antoniou 	struct mmc *mmc;
692ae000e23SJean-Jacques Hiblot 	struct omap_hsmmc_data *priv;
69393bfd616SPantelis Antoniou 	struct mmc_config *cfg;
69493bfd616SPantelis Antoniou 	uint host_caps_val;
695de941241SSukumar Ghorai 
696ae000e23SJean-Jacques Hiblot 	priv = malloc(sizeof(*priv));
697ae000e23SJean-Jacques Hiblot 	if (priv == NULL)
69893bfd616SPantelis Antoniou 		return -1;
69993bfd616SPantelis Antoniou 
7005a20397bSRob Herring 	host_caps_val = MMC_MODE_4BIT | MMC_MODE_HS_52MHz | MMC_MODE_HS;
701de941241SSukumar Ghorai 
702de941241SSukumar Ghorai 	switch (dev_index) {
703de941241SSukumar Ghorai 	case 0:
704ae000e23SJean-Jacques Hiblot 		priv->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
705de941241SSukumar Ghorai 		break;
7061037d585STom Rini #ifdef OMAP_HSMMC2_BASE
707de941241SSukumar Ghorai 	case 1:
708ae000e23SJean-Jacques Hiblot 		priv->base_addr = (struct hsmmc *)OMAP_HSMMC2_BASE;
709152ba363SLubomir Popov #if (defined(CONFIG_OMAP44XX) || defined(CONFIG_OMAP54XX) || \
7103891a54fSNishanth Menon 	defined(CONFIG_DRA7XX) || defined(CONFIG_AM33XX) || \
7113b68939fSRoger Quadros 	defined(CONFIG_AM43XX) || defined(CONFIG_SOC_KEYSTONE)) && \
7123b68939fSRoger Quadros 		defined(CONFIG_HSMMC2_8BIT)
713152ba363SLubomir Popov 		/* Enable 8-bit interface for eMMC on OMAP4/5 or DRA7XX */
714152ba363SLubomir Popov 		host_caps_val |= MMC_MODE_8BIT;
715152ba363SLubomir Popov #endif
716de941241SSukumar Ghorai 		break;
7171037d585STom Rini #endif
7181037d585STom Rini #ifdef OMAP_HSMMC3_BASE
719de941241SSukumar Ghorai 	case 2:
720ae000e23SJean-Jacques Hiblot 		priv->base_addr = (struct hsmmc *)OMAP_HSMMC3_BASE;
7213891a54fSNishanth Menon #if defined(CONFIG_DRA7XX) && defined(CONFIG_HSMMC3_8BIT)
722152ba363SLubomir Popov 		/* Enable 8-bit interface for eMMC on DRA7XX */
723152ba363SLubomir Popov 		host_caps_val |= MMC_MODE_8BIT;
724152ba363SLubomir Popov #endif
725de941241SSukumar Ghorai 		break;
7261037d585STom Rini #endif
727de941241SSukumar Ghorai 	default:
728ae000e23SJean-Jacques Hiblot 		priv->base_addr = (struct hsmmc *)OMAP_HSMMC1_BASE;
729de941241SSukumar Ghorai 		return 1;
730de941241SSukumar Ghorai 	}
731ab769f22SPantelis Antoniou #ifdef OMAP_HSMMC_USE_GPIO
732ab769f22SPantelis Antoniou 	/* on error gpio values are set to -1, which is what we want */
733ae000e23SJean-Jacques Hiblot 	priv->cd_gpio = omap_mmc_setup_gpio_in(cd_gpio, "mmc_cd");
734ae000e23SJean-Jacques Hiblot 	priv->wp_gpio = omap_mmc_setup_gpio_in(wp_gpio, "mmc_wp");
735ab769f22SPantelis Antoniou #endif
736173ddc5bSPeter Korsgaard 
737ae000e23SJean-Jacques Hiblot 	cfg = &priv->cfg;
738de941241SSukumar Ghorai 
73993bfd616SPantelis Antoniou 	cfg->name = "OMAP SD/MMC";
74093bfd616SPantelis Antoniou 	cfg->ops = &omap_hsmmc_ops;
74193bfd616SPantelis Antoniou 
74293bfd616SPantelis Antoniou 	cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
74393bfd616SPantelis Antoniou 	cfg->host_caps = host_caps_val & ~host_caps_mask;
74493bfd616SPantelis Antoniou 
74593bfd616SPantelis Antoniou 	cfg->f_min = 400000;
746bbbc1ae9SJonathan Solnit 
747bbbc1ae9SJonathan Solnit 	if (f_max != 0)
74893bfd616SPantelis Antoniou 		cfg->f_max = f_max;
749bbbc1ae9SJonathan Solnit 	else {
75093bfd616SPantelis Antoniou 		if (cfg->host_caps & MMC_MODE_HS) {
75193bfd616SPantelis Antoniou 			if (cfg->host_caps & MMC_MODE_HS_52MHz)
75293bfd616SPantelis Antoniou 				cfg->f_max = 52000000;
753bbbc1ae9SJonathan Solnit 			else
75493bfd616SPantelis Antoniou 				cfg->f_max = 26000000;
755bbbc1ae9SJonathan Solnit 		} else
75693bfd616SPantelis Antoniou 			cfg->f_max = 20000000;
757bbbc1ae9SJonathan Solnit 	}
758de941241SSukumar Ghorai 
75993bfd616SPantelis Antoniou 	cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
7608feafcc4SJohn Rigby 
7614ca9244dSJohn Rigby #if defined(CONFIG_OMAP34XX)
7624ca9244dSJohn Rigby 	/*
7634ca9244dSJohn Rigby 	 * Silicon revs 2.1 and older do not support multiblock transfers.
7644ca9244dSJohn Rigby 	 */
7654ca9244dSJohn Rigby 	if ((get_cpu_family() == CPU_OMAP34XX) && (get_cpu_rev() <= CPU_3XX_ES21))
76693bfd616SPantelis Antoniou 		cfg->b_max = 1;
7674ca9244dSJohn Rigby #endif
768ae000e23SJean-Jacques Hiblot 	mmc = mmc_create(cfg, priv);
76993bfd616SPantelis Antoniou 	if (mmc == NULL)
77093bfd616SPantelis Antoniou 		return -1;
771de941241SSukumar Ghorai 
772de941241SSukumar Ghorai 	return 0;
773de941241SSukumar Ghorai }
774a9d6a7e2SMugunthan V N #else
7752558c049SLokesh Vutla #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
776a9d6a7e2SMugunthan V N static int omap_hsmmc_ofdata_to_platdata(struct udevice *dev)
777a9d6a7e2SMugunthan V N {
7783d673ffcSJean-Jacques Hiblot 	struct omap_hsmmc_plat *plat = dev_get_platdata(dev);
7793d673ffcSJean-Jacques Hiblot 	struct mmc_config *cfg = &plat->cfg;
78046831c1aSAdam Ford 	struct omap2_mmc_platform_config *data =
78146831c1aSAdam Ford 		(struct omap2_mmc_platform_config *)dev_get_driver_data(dev);
782a9d6a7e2SMugunthan V N 	const void *fdt = gd->fdt_blob;
783e160f7d4SSimon Glass 	int node = dev_of_offset(dev);
784a9d6a7e2SMugunthan V N 	int val;
785a9d6a7e2SMugunthan V N 
7862558c049SLokesh Vutla 	plat->base_addr = map_physmem(dev_get_addr(dev), sizeof(struct hsmmc *),
78746831c1aSAdam Ford 				      MAP_NOCACHE) + data->reg_offset;
788a9d6a7e2SMugunthan V N 
789a9d6a7e2SMugunthan V N 	cfg->host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS;
790a9d6a7e2SMugunthan V N 	val = fdtdec_get_int(fdt, node, "bus-width", -1);
791a9d6a7e2SMugunthan V N 	if (val < 0) {
792a9d6a7e2SMugunthan V N 		printf("error: bus-width property missing\n");
793a9d6a7e2SMugunthan V N 		return -ENOENT;
794a9d6a7e2SMugunthan V N 	}
795a9d6a7e2SMugunthan V N 
796a9d6a7e2SMugunthan V N 	switch (val) {
797a9d6a7e2SMugunthan V N 	case 0x8:
798a9d6a7e2SMugunthan V N 		cfg->host_caps |= MMC_MODE_8BIT;
799a9d6a7e2SMugunthan V N 	case 0x4:
800a9d6a7e2SMugunthan V N 		cfg->host_caps |= MMC_MODE_4BIT;
801a9d6a7e2SMugunthan V N 		break;
802a9d6a7e2SMugunthan V N 	default:
803a9d6a7e2SMugunthan V N 		printf("error: invalid bus-width property\n");
804a9d6a7e2SMugunthan V N 		return -ENOENT;
805a9d6a7e2SMugunthan V N 	}
806a9d6a7e2SMugunthan V N 
807a9d6a7e2SMugunthan V N 	cfg->f_min = 400000;
808a9d6a7e2SMugunthan V N 	cfg->f_max = fdtdec_get_int(fdt, node, "max-frequency", 52000000);
809a9d6a7e2SMugunthan V N 	cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195;
810a9d6a7e2SMugunthan V N 	cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
811a9d6a7e2SMugunthan V N 
8124de2de51SSekhar Nori #ifdef OMAP_HSMMC_USE_GPIO
8132558c049SLokesh Vutla 	plat->cd_inverted = fdtdec_get_bool(fdt, node, "cd-inverted");
8144de2de51SSekhar Nori #endif
815a9d6a7e2SMugunthan V N 
816a9d6a7e2SMugunthan V N 	return 0;
817a9d6a7e2SMugunthan V N }
8182558c049SLokesh Vutla #endif
819a9d6a7e2SMugunthan V N 
82017c9a1c1SJean-Jacques Hiblot #ifdef CONFIG_BLK
82117c9a1c1SJean-Jacques Hiblot 
82217c9a1c1SJean-Jacques Hiblot static int omap_hsmmc_bind(struct udevice *dev)
82317c9a1c1SJean-Jacques Hiblot {
82417c9a1c1SJean-Jacques Hiblot 	struct omap_hsmmc_plat *plat = dev_get_platdata(dev);
82517c9a1c1SJean-Jacques Hiblot 
82617c9a1c1SJean-Jacques Hiblot 	return mmc_bind(dev, &plat->mmc, &plat->cfg);
82717c9a1c1SJean-Jacques Hiblot }
82817c9a1c1SJean-Jacques Hiblot #endif
829a9d6a7e2SMugunthan V N static int omap_hsmmc_probe(struct udevice *dev)
830a9d6a7e2SMugunthan V N {
8313d673ffcSJean-Jacques Hiblot 	struct omap_hsmmc_plat *plat = dev_get_platdata(dev);
832a9d6a7e2SMugunthan V N 	struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
833a9d6a7e2SMugunthan V N 	struct omap_hsmmc_data *priv = dev_get_priv(dev);
8343d673ffcSJean-Jacques Hiblot 	struct mmc_config *cfg = &plat->cfg;
835a9d6a7e2SMugunthan V N 	struct mmc *mmc;
836a9d6a7e2SMugunthan V N 
837a9d6a7e2SMugunthan V N 	cfg->name = "OMAP SD/MMC";
838a9d6a7e2SMugunthan V N 	cfg->ops = &omap_hsmmc_ops;
8392558c049SLokesh Vutla 	priv->base_addr = plat->base_addr;
8402558c049SLokesh Vutla #ifdef OMAP_HSMMC_USE_GPIO
8412558c049SLokesh Vutla 	priv->cd_inverted = plat->cd_inverted;
8422558c049SLokesh Vutla #endif
843a9d6a7e2SMugunthan V N 
84417c9a1c1SJean-Jacques Hiblot #ifdef CONFIG_BLK
84517c9a1c1SJean-Jacques Hiblot 	mmc = &plat->mmc;
84617c9a1c1SJean-Jacques Hiblot #else
847a9d6a7e2SMugunthan V N 	mmc = mmc_create(cfg, priv);
848a9d6a7e2SMugunthan V N 	if (mmc == NULL)
849a9d6a7e2SMugunthan V N 		return -1;
85017c9a1c1SJean-Jacques Hiblot #endif
851a9d6a7e2SMugunthan V N 
8522558c049SLokesh Vutla #if defined(OMAP_HSMMC_USE_GPIO) && CONFIG_IS_ENABLED(OF_CONTROL)
8535cc6a245SMugunthan V N 	gpio_request_by_name(dev, "cd-gpios", 0, &priv->cd_gpio, GPIOD_IS_IN);
8545cc6a245SMugunthan V N 	gpio_request_by_name(dev, "wp-gpios", 0, &priv->wp_gpio, GPIOD_IS_IN);
8555cc6a245SMugunthan V N #endif
8565cc6a245SMugunthan V N 
857cffe5d86SSimon Glass 	mmc->dev = dev;
858a9d6a7e2SMugunthan V N 	upriv->mmc = mmc;
859a9d6a7e2SMugunthan V N 
860a9d6a7e2SMugunthan V N 	return 0;
861a9d6a7e2SMugunthan V N }
862a9d6a7e2SMugunthan V N 
8632558c049SLokesh Vutla #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
86446831c1aSAdam Ford static const struct omap2_mmc_platform_config omap3_mmc_pdata = {
86546831c1aSAdam Ford 	.reg_offset = 0,
86646831c1aSAdam Ford };
86746831c1aSAdam Ford 
86846831c1aSAdam Ford static const struct omap2_mmc_platform_config am33xx_mmc_pdata = {
86946831c1aSAdam Ford 	.reg_offset = 0x100,
87046831c1aSAdam Ford };
87146831c1aSAdam Ford 
87246831c1aSAdam Ford static const struct omap2_mmc_platform_config omap4_mmc_pdata = {
87346831c1aSAdam Ford 	.reg_offset = 0x100,
87446831c1aSAdam Ford };
87546831c1aSAdam Ford 
876a9d6a7e2SMugunthan V N static const struct udevice_id omap_hsmmc_ids[] = {
87746831c1aSAdam Ford 	{
87846831c1aSAdam Ford 			.compatible = "ti,omap3-hsmmc",
87946831c1aSAdam Ford 			.data = (ulong)&omap3_mmc_pdata
88046831c1aSAdam Ford 	},
88146831c1aSAdam Ford 	{
88246831c1aSAdam Ford 			.compatible = "ti,omap4-hsmmc",
88346831c1aSAdam Ford 			.data = (ulong)&omap4_mmc_pdata
88446831c1aSAdam Ford 	},
88546831c1aSAdam Ford 	{
88646831c1aSAdam Ford 			.compatible = "ti,am33xx-hsmmc",
88746831c1aSAdam Ford 			.data = (ulong)&am33xx_mmc_pdata
88846831c1aSAdam Ford 	},
889a9d6a7e2SMugunthan V N 	{ }
890a9d6a7e2SMugunthan V N };
8912558c049SLokesh Vutla #endif
892a9d6a7e2SMugunthan V N 
893a9d6a7e2SMugunthan V N U_BOOT_DRIVER(omap_hsmmc) = {
894a9d6a7e2SMugunthan V N 	.name	= "omap_hsmmc",
895a9d6a7e2SMugunthan V N 	.id	= UCLASS_MMC,
8962558c049SLokesh Vutla #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
897a9d6a7e2SMugunthan V N 	.of_match = omap_hsmmc_ids,
898a9d6a7e2SMugunthan V N 	.ofdata_to_platdata = omap_hsmmc_ofdata_to_platdata,
8992558c049SLokesh Vutla 	.platdata_auto_alloc_size = sizeof(struct omap_hsmmc_plat),
9002558c049SLokesh Vutla #endif
90117c9a1c1SJean-Jacques Hiblot #ifdef CONFIG_BLK
90217c9a1c1SJean-Jacques Hiblot 	.bind = omap_hsmmc_bind,
90317c9a1c1SJean-Jacques Hiblot #endif
904a9d6a7e2SMugunthan V N 	.probe	= omap_hsmmc_probe,
905a9d6a7e2SMugunthan V N 	.priv_auto_alloc_size = sizeof(struct omap_hsmmc_data),
906*cbcb1701SLokesh Vutla 	.flags	= DM_FLAG_PRE_RELOC,
907a9d6a7e2SMugunthan V N };
908a9d6a7e2SMugunthan V N #endif
909