xref: /openbmc/linux/drivers/mmc/host/sdhci-pxav3.c (revision cc9571e8)
1a702c8abSZhangfei Gao /*
2a702c8abSZhangfei Gao  * Copyright (C) 2010 Marvell International Ltd.
3a702c8abSZhangfei Gao  *		Zhangfei Gao <zhangfei.gao@marvell.com>
4a702c8abSZhangfei Gao  *		Kevin Wang <dwang4@marvell.com>
5a702c8abSZhangfei Gao  *		Mingwei Wang <mwwang@marvell.com>
6a702c8abSZhangfei Gao  *		Philip Rakity <prakity@marvell.com>
7a702c8abSZhangfei Gao  *		Mark Brown <markb@marvell.com>
8a702c8abSZhangfei Gao  *
9a702c8abSZhangfei Gao  * This software is licensed under the terms of the GNU General Public
10a702c8abSZhangfei Gao  * License version 2, as published by the Free Software Foundation, and
11a702c8abSZhangfei Gao  * may be copied, distributed, and modified under those terms.
12a702c8abSZhangfei Gao  *
13a702c8abSZhangfei Gao  * This program is distributed in the hope that it will be useful,
14a702c8abSZhangfei Gao  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15a702c8abSZhangfei Gao  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16a702c8abSZhangfei Gao  * GNU General Public License for more details.
17a702c8abSZhangfei Gao  *
18a702c8abSZhangfei Gao  */
19a702c8abSZhangfei Gao #include <linux/err.h>
20a702c8abSZhangfei Gao #include <linux/init.h>
21a702c8abSZhangfei Gao #include <linux/platform_device.h>
22a702c8abSZhangfei Gao #include <linux/clk.h>
23a702c8abSZhangfei Gao #include <linux/io.h>
24a702c8abSZhangfei Gao #include <linux/gpio.h>
25a702c8abSZhangfei Gao #include <linux/mmc/card.h>
26a702c8abSZhangfei Gao #include <linux/mmc/host.h>
278f63795cSChris Ball #include <linux/mmc/slot-gpio.h>
28bfed345eSZhangfei Gao #include <linux/platform_data/pxa_sdhci.h>
29a702c8abSZhangfei Gao #include <linux/slab.h>
30a702c8abSZhangfei Gao #include <linux/delay.h>
3188b47679SPaul Gortmaker #include <linux/module.h>
32b650352dSChris Ball #include <linux/of.h>
33b650352dSChris Ball #include <linux/of_device.h>
348f63795cSChris Ball #include <linux/of_gpio.h>
35bb691ae4SKevin Liu #include <linux/pm.h>
36bb691ae4SKevin Liu #include <linux/pm_runtime.h>
375491ce3fSMarcin Wojtas #include <linux/mbus.h>
38b650352dSChris Ball 
39a702c8abSZhangfei Gao #include "sdhci.h"
40a702c8abSZhangfei Gao #include "sdhci-pltfm.h"
41a702c8abSZhangfei Gao 
42bb691ae4SKevin Liu #define PXAV3_RPM_DELAY_MS     50
43bb691ae4SKevin Liu 
44a702c8abSZhangfei Gao #define SD_CLOCK_BURST_SIZE_SETUP		0x10A
45a702c8abSZhangfei Gao #define SDCLK_SEL	0x100
46a702c8abSZhangfei Gao #define SDCLK_DELAY_SHIFT	9
47a702c8abSZhangfei Gao #define SDCLK_DELAY_MASK	0x1f
48a702c8abSZhangfei Gao 
49a702c8abSZhangfei Gao #define SD_CFG_FIFO_PARAM       0x100
50a702c8abSZhangfei Gao #define SDCFG_GEN_PAD_CLK_ON	(1<<6)
51a702c8abSZhangfei Gao #define SDCFG_GEN_PAD_CLK_CNT_MASK	0xFF
52a702c8abSZhangfei Gao #define SDCFG_GEN_PAD_CLK_CNT_SHIFT	24
53a702c8abSZhangfei Gao 
54a702c8abSZhangfei Gao #define SD_SPI_MODE          0x108
55a702c8abSZhangfei Gao #define SD_CE_ATA_1          0x10C
56a702c8abSZhangfei Gao 
57a702c8abSZhangfei Gao #define SD_CE_ATA_2          0x10E
58a702c8abSZhangfei Gao #define SDCE_MISC_INT		(1<<2)
59a702c8abSZhangfei Gao #define SDCE_MISC_INT_EN	(1<<1)
60a702c8abSZhangfei Gao 
61cc9571e8SSebastian Hesselbarth struct sdhci_pxa {
62cc9571e8SSebastian Hesselbarth 	u8	clk_enable;
63cc9571e8SSebastian Hesselbarth 	u8	power_mode;
64cc9571e8SSebastian Hesselbarth };
65cc9571e8SSebastian Hesselbarth 
665491ce3fSMarcin Wojtas /*
675491ce3fSMarcin Wojtas  * These registers are relative to the second register region, for the
685491ce3fSMarcin Wojtas  * MBus bridge.
695491ce3fSMarcin Wojtas  */
705491ce3fSMarcin Wojtas #define SDHCI_WINDOW_CTRL(i)	(0x80 + ((i) << 3))
715491ce3fSMarcin Wojtas #define SDHCI_WINDOW_BASE(i)	(0x84 + ((i) << 3))
725491ce3fSMarcin Wojtas #define SDHCI_MAX_WIN_NUM	8
735491ce3fSMarcin Wojtas 
745491ce3fSMarcin Wojtas static int mv_conf_mbus_windows(struct platform_device *pdev,
755491ce3fSMarcin Wojtas 				const struct mbus_dram_target_info *dram)
765491ce3fSMarcin Wojtas {
775491ce3fSMarcin Wojtas 	int i;
785491ce3fSMarcin Wojtas 	void __iomem *regs;
795491ce3fSMarcin Wojtas 	struct resource *res;
805491ce3fSMarcin Wojtas 
815491ce3fSMarcin Wojtas 	if (!dram) {
825491ce3fSMarcin Wojtas 		dev_err(&pdev->dev, "no mbus dram info\n");
835491ce3fSMarcin Wojtas 		return -EINVAL;
845491ce3fSMarcin Wojtas 	}
855491ce3fSMarcin Wojtas 
865491ce3fSMarcin Wojtas 	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
875491ce3fSMarcin Wojtas 	if (!res) {
885491ce3fSMarcin Wojtas 		dev_err(&pdev->dev, "cannot get mbus registers\n");
895491ce3fSMarcin Wojtas 		return -EINVAL;
905491ce3fSMarcin Wojtas 	}
915491ce3fSMarcin Wojtas 
925491ce3fSMarcin Wojtas 	regs = ioremap(res->start, resource_size(res));
935491ce3fSMarcin Wojtas 	if (!regs) {
945491ce3fSMarcin Wojtas 		dev_err(&pdev->dev, "cannot map mbus registers\n");
955491ce3fSMarcin Wojtas 		return -ENOMEM;
965491ce3fSMarcin Wojtas 	}
975491ce3fSMarcin Wojtas 
985491ce3fSMarcin Wojtas 	for (i = 0; i < SDHCI_MAX_WIN_NUM; i++) {
995491ce3fSMarcin Wojtas 		writel(0, regs + SDHCI_WINDOW_CTRL(i));
1005491ce3fSMarcin Wojtas 		writel(0, regs + SDHCI_WINDOW_BASE(i));
1015491ce3fSMarcin Wojtas 	}
1025491ce3fSMarcin Wojtas 
1035491ce3fSMarcin Wojtas 	for (i = 0; i < dram->num_cs; i++) {
1045491ce3fSMarcin Wojtas 		const struct mbus_dram_window *cs = dram->cs + i;
1055491ce3fSMarcin Wojtas 
1065491ce3fSMarcin Wojtas 		/* Write size, attributes and target id to control register */
1075491ce3fSMarcin Wojtas 		writel(((cs->size - 1) & 0xffff0000) |
1085491ce3fSMarcin Wojtas 			(cs->mbus_attr << 8) |
1095491ce3fSMarcin Wojtas 			(dram->mbus_dram_target_id << 4) | 1,
1105491ce3fSMarcin Wojtas 			regs + SDHCI_WINDOW_CTRL(i));
1115491ce3fSMarcin Wojtas 		/* Write base address to base register */
1125491ce3fSMarcin Wojtas 		writel(cs->base, regs + SDHCI_WINDOW_BASE(i));
1135491ce3fSMarcin Wojtas 	}
1145491ce3fSMarcin Wojtas 
1155491ce3fSMarcin Wojtas 	iounmap(regs);
1165491ce3fSMarcin Wojtas 
1175491ce3fSMarcin Wojtas 	return 0;
1185491ce3fSMarcin Wojtas }
1195491ce3fSMarcin Wojtas 
12003231f9bSRussell King static void pxav3_reset(struct sdhci_host *host, u8 mask)
121a702c8abSZhangfei Gao {
122a702c8abSZhangfei Gao 	struct platform_device *pdev = to_platform_device(mmc_dev(host->mmc));
123a702c8abSZhangfei Gao 	struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data;
124a702c8abSZhangfei Gao 
12503231f9bSRussell King 	sdhci_reset(host, mask);
12603231f9bSRussell King 
127a702c8abSZhangfei Gao 	if (mask == SDHCI_RESET_ALL) {
128a702c8abSZhangfei Gao 		/*
129a702c8abSZhangfei Gao 		 * tune timing of read data/command when crc error happen
130a702c8abSZhangfei Gao 		 * no performance impact
131a702c8abSZhangfei Gao 		 */
132a702c8abSZhangfei Gao 		if (pdata && 0 != pdata->clk_delay_cycles) {
133a702c8abSZhangfei Gao 			u16 tmp;
134a702c8abSZhangfei Gao 
135a702c8abSZhangfei Gao 			tmp = readw(host->ioaddr + SD_CLOCK_BURST_SIZE_SETUP);
136a702c8abSZhangfei Gao 			tmp |= (pdata->clk_delay_cycles & SDCLK_DELAY_MASK)
137a702c8abSZhangfei Gao 				<< SDCLK_DELAY_SHIFT;
138a702c8abSZhangfei Gao 			tmp |= SDCLK_SEL;
139a702c8abSZhangfei Gao 			writew(tmp, host->ioaddr + SD_CLOCK_BURST_SIZE_SETUP);
140a702c8abSZhangfei Gao 		}
141a702c8abSZhangfei Gao 	}
142a702c8abSZhangfei Gao }
143a702c8abSZhangfei Gao 
144a702c8abSZhangfei Gao #define MAX_WAIT_COUNT 5
145a702c8abSZhangfei Gao static void pxav3_gen_init_74_clocks(struct sdhci_host *host, u8 power_mode)
146a702c8abSZhangfei Gao {
147a702c8abSZhangfei Gao 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
148a702c8abSZhangfei Gao 	struct sdhci_pxa *pxa = pltfm_host->priv;
149a702c8abSZhangfei Gao 	u16 tmp;
150a702c8abSZhangfei Gao 	int count;
151a702c8abSZhangfei Gao 
152a702c8abSZhangfei Gao 	if (pxa->power_mode == MMC_POWER_UP
153a702c8abSZhangfei Gao 			&& power_mode == MMC_POWER_ON) {
154a702c8abSZhangfei Gao 
155a702c8abSZhangfei Gao 		dev_dbg(mmc_dev(host->mmc),
156a702c8abSZhangfei Gao 				"%s: slot->power_mode = %d,"
157a702c8abSZhangfei Gao 				"ios->power_mode = %d\n",
158a702c8abSZhangfei Gao 				__func__,
159a702c8abSZhangfei Gao 				pxa->power_mode,
160a702c8abSZhangfei Gao 				power_mode);
161a702c8abSZhangfei Gao 
162a702c8abSZhangfei Gao 		/* set we want notice of when 74 clocks are sent */
163a702c8abSZhangfei Gao 		tmp = readw(host->ioaddr + SD_CE_ATA_2);
164a702c8abSZhangfei Gao 		tmp |= SDCE_MISC_INT_EN;
165a702c8abSZhangfei Gao 		writew(tmp, host->ioaddr + SD_CE_ATA_2);
166a702c8abSZhangfei Gao 
167a702c8abSZhangfei Gao 		/* start sending the 74 clocks */
168a702c8abSZhangfei Gao 		tmp = readw(host->ioaddr + SD_CFG_FIFO_PARAM);
169a702c8abSZhangfei Gao 		tmp |= SDCFG_GEN_PAD_CLK_ON;
170a702c8abSZhangfei Gao 		writew(tmp, host->ioaddr + SD_CFG_FIFO_PARAM);
171a702c8abSZhangfei Gao 
172a702c8abSZhangfei Gao 		/* slowest speed is about 100KHz or 10usec per clock */
173a702c8abSZhangfei Gao 		udelay(740);
174a702c8abSZhangfei Gao 		count = 0;
175a702c8abSZhangfei Gao 
176a702c8abSZhangfei Gao 		while (count++ < MAX_WAIT_COUNT) {
177a702c8abSZhangfei Gao 			if ((readw(host->ioaddr + SD_CE_ATA_2)
178a702c8abSZhangfei Gao 						& SDCE_MISC_INT) == 0)
179a702c8abSZhangfei Gao 				break;
180a702c8abSZhangfei Gao 			udelay(10);
181a702c8abSZhangfei Gao 		}
182a702c8abSZhangfei Gao 
183a702c8abSZhangfei Gao 		if (count == MAX_WAIT_COUNT)
184a702c8abSZhangfei Gao 			dev_warn(mmc_dev(host->mmc), "74 clock interrupt not cleared\n");
185a702c8abSZhangfei Gao 
186a702c8abSZhangfei Gao 		/* clear the interrupt bit if posted */
187a702c8abSZhangfei Gao 		tmp = readw(host->ioaddr + SD_CE_ATA_2);
188a702c8abSZhangfei Gao 		tmp |= SDCE_MISC_INT;
189a702c8abSZhangfei Gao 		writew(tmp, host->ioaddr + SD_CE_ATA_2);
190a702c8abSZhangfei Gao 	}
191a702c8abSZhangfei Gao 	pxa->power_mode = power_mode;
192a702c8abSZhangfei Gao }
193a702c8abSZhangfei Gao 
19413e64501SRussell King static void pxav3_set_uhs_signaling(struct sdhci_host *host, unsigned int uhs)
195a702c8abSZhangfei Gao {
196a702c8abSZhangfei Gao 	u16 ctrl_2;
197a702c8abSZhangfei Gao 
198a702c8abSZhangfei Gao 	/*
199a702c8abSZhangfei Gao 	 * Set V18_EN -- UHS modes do not work without this.
200a702c8abSZhangfei Gao 	 * does not change signaling voltage
201a702c8abSZhangfei Gao 	 */
202a702c8abSZhangfei Gao 	ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
203a702c8abSZhangfei Gao 
204a702c8abSZhangfei Gao 	/* Select Bus Speed Mode for host */
205a702c8abSZhangfei Gao 	ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
206a702c8abSZhangfei Gao 	switch (uhs) {
207a702c8abSZhangfei Gao 	case MMC_TIMING_UHS_SDR12:
208a702c8abSZhangfei Gao 		ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
209a702c8abSZhangfei Gao 		break;
210a702c8abSZhangfei Gao 	case MMC_TIMING_UHS_SDR25:
211a702c8abSZhangfei Gao 		ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
212a702c8abSZhangfei Gao 		break;
213a702c8abSZhangfei Gao 	case MMC_TIMING_UHS_SDR50:
214a702c8abSZhangfei Gao 		ctrl_2 |= SDHCI_CTRL_UHS_SDR50 | SDHCI_CTRL_VDD_180;
215a702c8abSZhangfei Gao 		break;
216a702c8abSZhangfei Gao 	case MMC_TIMING_UHS_SDR104:
217a702c8abSZhangfei Gao 		ctrl_2 |= SDHCI_CTRL_UHS_SDR104 | SDHCI_CTRL_VDD_180;
218a702c8abSZhangfei Gao 		break;
219668e84b2SSebastian Hesselbarth 	case MMC_TIMING_MMC_DDR52:
220a702c8abSZhangfei Gao 	case MMC_TIMING_UHS_DDR50:
221a702c8abSZhangfei Gao 		ctrl_2 |= SDHCI_CTRL_UHS_DDR50 | SDHCI_CTRL_VDD_180;
222a702c8abSZhangfei Gao 		break;
223a702c8abSZhangfei Gao 	}
224a702c8abSZhangfei Gao 
225a702c8abSZhangfei Gao 	sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
226a702c8abSZhangfei Gao 	dev_dbg(mmc_dev(host->mmc),
227a702c8abSZhangfei Gao 		"%s uhs = %d, ctrl_2 = %04X\n",
228a702c8abSZhangfei Gao 		__func__, uhs, ctrl_2);
229a702c8abSZhangfei Gao }
230a702c8abSZhangfei Gao 
231c915568dSLars-Peter Clausen static const struct sdhci_ops pxav3_sdhci_ops = {
2321771059cSRussell King 	.set_clock = sdhci_set_clock,
233a702c8abSZhangfei Gao 	.platform_send_init_74_clocks = pxav3_gen_init_74_clocks,
234d005d943SLars-Peter Clausen 	.get_max_clock = sdhci_pltfm_clk_get_max_clock,
2352317f56cSRussell King 	.set_bus_width = sdhci_set_bus_width,
23603231f9bSRussell King 	.reset = pxav3_reset,
237b3153765SPeter Griffin 	.set_uhs_signaling = pxav3_set_uhs_signaling,
238a702c8abSZhangfei Gao };
239a702c8abSZhangfei Gao 
24073b7afb9SKevin Liu static struct sdhci_pltfm_data sdhci_pxav3_pdata = {
241e065162aSKevin Liu 	.quirks = SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
24273b7afb9SKevin Liu 		| SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
24373b7afb9SKevin Liu 		| SDHCI_QUIRK_32BIT_ADMA_SIZE
24473b7afb9SKevin Liu 		| SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
24573b7afb9SKevin Liu 	.ops = &pxav3_sdhci_ops,
24673b7afb9SKevin Liu };
24773b7afb9SKevin Liu 
248b650352dSChris Ball #ifdef CONFIG_OF
249b650352dSChris Ball static const struct of_device_id sdhci_pxav3_of_match[] = {
250b650352dSChris Ball 	{
251b650352dSChris Ball 		.compatible = "mrvl,pxav3-mmc",
252b650352dSChris Ball 	},
2535491ce3fSMarcin Wojtas 	{
2545491ce3fSMarcin Wojtas 		.compatible = "marvell,armada-380-sdhci",
2555491ce3fSMarcin Wojtas 	},
256b650352dSChris Ball 	{},
257b650352dSChris Ball };
258b650352dSChris Ball MODULE_DEVICE_TABLE(of, sdhci_pxav3_of_match);
259b650352dSChris Ball 
260b650352dSChris Ball static struct sdhci_pxa_platdata *pxav3_get_mmc_pdata(struct device *dev)
261b650352dSChris Ball {
262b650352dSChris Ball 	struct sdhci_pxa_platdata *pdata;
263b650352dSChris Ball 	struct device_node *np = dev->of_node;
264b650352dSChris Ball 	u32 clk_delay_cycles;
265b650352dSChris Ball 
266b650352dSChris Ball 	pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
267b650352dSChris Ball 	if (!pdata)
268b650352dSChris Ball 		return NULL;
269b650352dSChris Ball 
270b650352dSChris Ball 	of_property_read_u32(np, "mrvl,clk-delay-cycles", &clk_delay_cycles);
271b650352dSChris Ball 	if (clk_delay_cycles > 0)
272b650352dSChris Ball 		pdata->clk_delay_cycles = clk_delay_cycles;
273b650352dSChris Ball 
274b650352dSChris Ball 	return pdata;
275b650352dSChris Ball }
276b650352dSChris Ball #else
277b650352dSChris Ball static inline struct sdhci_pxa_platdata *pxav3_get_mmc_pdata(struct device *dev)
278b650352dSChris Ball {
279b650352dSChris Ball 	return NULL;
280b650352dSChris Ball }
281b650352dSChris Ball #endif
282b650352dSChris Ball 
283c3be1efdSBill Pemberton static int sdhci_pxav3_probe(struct platform_device *pdev)
284a702c8abSZhangfei Gao {
285a702c8abSZhangfei Gao 	struct sdhci_pltfm_host *pltfm_host;
286a702c8abSZhangfei Gao 	struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data;
287a702c8abSZhangfei Gao 	struct device *dev = &pdev->dev;
2885491ce3fSMarcin Wojtas 	struct device_node *np = pdev->dev.of_node;
289a702c8abSZhangfei Gao 	struct sdhci_host *host = NULL;
290a702c8abSZhangfei Gao 	struct sdhci_pxa *pxa = NULL;
291b650352dSChris Ball 	const struct of_device_id *match;
292b650352dSChris Ball 
293a702c8abSZhangfei Gao 	int ret;
294a702c8abSZhangfei Gao 	struct clk *clk;
295a702c8abSZhangfei Gao 
2963df5b281SLaurent Pinchart 	pxa = devm_kzalloc(&pdev->dev, sizeof(struct sdhci_pxa), GFP_KERNEL);
297a702c8abSZhangfei Gao 	if (!pxa)
298a702c8abSZhangfei Gao 		return -ENOMEM;
299a702c8abSZhangfei Gao 
3000e748234SChristian Daudt 	host = sdhci_pltfm_init(pdev, &sdhci_pxav3_pdata, 0);
3013df5b281SLaurent Pinchart 	if (IS_ERR(host))
302a702c8abSZhangfei Gao 		return PTR_ERR(host);
3035491ce3fSMarcin Wojtas 
3045491ce3fSMarcin Wojtas 	if (of_device_is_compatible(np, "marvell,armada-380-sdhci")) {
3055491ce3fSMarcin Wojtas 		ret = mv_conf_mbus_windows(pdev, mv_mbus_dram_info());
3065491ce3fSMarcin Wojtas 		if (ret < 0)
3075491ce3fSMarcin Wojtas 			goto err_mbus_win;
3085491ce3fSMarcin Wojtas 	}
3095491ce3fSMarcin Wojtas 
3105491ce3fSMarcin Wojtas 
311a702c8abSZhangfei Gao 	pltfm_host = sdhci_priv(host);
312a702c8abSZhangfei Gao 	pltfm_host->priv = pxa;
313a702c8abSZhangfei Gao 
3143df5b281SLaurent Pinchart 	clk = devm_clk_get(dev, NULL);
315a702c8abSZhangfei Gao 	if (IS_ERR(clk)) {
316a702c8abSZhangfei Gao 		dev_err(dev, "failed to get io clock\n");
317a702c8abSZhangfei Gao 		ret = PTR_ERR(clk);
318a702c8abSZhangfei Gao 		goto err_clk_get;
319a702c8abSZhangfei Gao 	}
320a702c8abSZhangfei Gao 	pltfm_host->clk = clk;
321164378efSChao Xie 	clk_prepare_enable(clk);
322a702c8abSZhangfei Gao 
323a702c8abSZhangfei Gao 	/* enable 1/8V DDR capable */
324a702c8abSZhangfei Gao 	host->mmc->caps |= MMC_CAP_1_8V_DDR;
325a702c8abSZhangfei Gao 
326b650352dSChris Ball 	match = of_match_device(of_match_ptr(sdhci_pxav3_of_match), &pdev->dev);
327943647f6SKevin Liu 	if (match) {
328d2cf6071SSimon Baatz 		ret = mmc_of_parse(host->mmc);
329d2cf6071SSimon Baatz 		if (ret)
330d2cf6071SSimon Baatz 			goto err_of_parse;
331943647f6SKevin Liu 		sdhci_get_of_property(pdev);
332b650352dSChris Ball 		pdata = pxav3_get_mmc_pdata(dev);
333943647f6SKevin Liu 	} else if (pdata) {
334a702c8abSZhangfei Gao 		/* on-chip device */
335c844a46fSKevin Liu 		if (pdata->flags & PXA_FLAG_CARD_PERMANENT)
336a702c8abSZhangfei Gao 			host->mmc->caps |= MMC_CAP_NONREMOVABLE;
337a702c8abSZhangfei Gao 
338a702c8abSZhangfei Gao 		/* If slot design supports 8 bit data, indicate this to MMC. */
339a702c8abSZhangfei Gao 		if (pdata->flags & PXA_FLAG_SD_8_BIT_CAPABLE_SLOT)
340a702c8abSZhangfei Gao 			host->mmc->caps |= MMC_CAP_8_BIT_DATA;
341a702c8abSZhangfei Gao 
342a702c8abSZhangfei Gao 		if (pdata->quirks)
343a702c8abSZhangfei Gao 			host->quirks |= pdata->quirks;
3447c52d7bbSKevin Liu 		if (pdata->quirks2)
3457c52d7bbSKevin Liu 			host->quirks2 |= pdata->quirks2;
346a702c8abSZhangfei Gao 		if (pdata->host_caps)
347a702c8abSZhangfei Gao 			host->mmc->caps |= pdata->host_caps;
3488f63795cSChris Ball 		if (pdata->host_caps2)
3498f63795cSChris Ball 			host->mmc->caps2 |= pdata->host_caps2;
350a702c8abSZhangfei Gao 		if (pdata->pm_caps)
351a702c8abSZhangfei Gao 			host->mmc->pm_caps |= pdata->pm_caps;
3528f63795cSChris Ball 
3538f63795cSChris Ball 		if (gpio_is_valid(pdata->ext_cd_gpio)) {
354214fc309SLaurent Pinchart 			ret = mmc_gpio_request_cd(host->mmc, pdata->ext_cd_gpio,
355214fc309SLaurent Pinchart 						  0);
3568f63795cSChris Ball 			if (ret) {
3578f63795cSChris Ball 				dev_err(mmc_dev(host->mmc),
3588f63795cSChris Ball 					"failed to allocate card detect gpio\n");
3598f63795cSChris Ball 				goto err_cd_req;
3608f63795cSChris Ball 			}
3618f63795cSChris Ball 		}
362a702c8abSZhangfei Gao 	}
363a702c8abSZhangfei Gao 
364bb691ae4SKevin Liu 	pm_runtime_enable(&pdev->dev);
3650dcaa249SDaniel Drake 	pm_runtime_get_sync(&pdev->dev);
366bb691ae4SKevin Liu 	pm_runtime_set_autosuspend_delay(&pdev->dev, PXAV3_RPM_DELAY_MS);
367bb691ae4SKevin Liu 	pm_runtime_use_autosuspend(&pdev->dev);
368bb691ae4SKevin Liu 	pm_suspend_ignore_children(&pdev->dev, 1);
369bb691ae4SKevin Liu 
370a702c8abSZhangfei Gao 	ret = sdhci_add_host(host);
371a702c8abSZhangfei Gao 	if (ret) {
372a702c8abSZhangfei Gao 		dev_err(&pdev->dev, "failed to add host\n");
373a702c8abSZhangfei Gao 		goto err_add_host;
374a702c8abSZhangfei Gao 	}
375a702c8abSZhangfei Gao 
376a702c8abSZhangfei Gao 	platform_set_drvdata(pdev, host);
377a702c8abSZhangfei Gao 
378943647f6SKevin Liu 	if (host->mmc->pm_caps & MMC_PM_KEEP_POWER) {
379740b7a44SKevin Liu 		device_init_wakeup(&pdev->dev, 1);
380740b7a44SKevin Liu 		host->mmc->pm_flags |= MMC_PM_WAKE_SDIO_IRQ;
381740b7a44SKevin Liu 	} else {
382740b7a44SKevin Liu 		device_init_wakeup(&pdev->dev, 0);
383740b7a44SKevin Liu 	}
384740b7a44SKevin Liu 
385bb691ae4SKevin Liu 	pm_runtime_put_autosuspend(&pdev->dev);
386bb691ae4SKevin Liu 
387a702c8abSZhangfei Gao 	return 0;
388a702c8abSZhangfei Gao 
389a702c8abSZhangfei Gao err_add_host:
3900dcaa249SDaniel Drake 	pm_runtime_put_sync(&pdev->dev);
3910dcaa249SDaniel Drake 	pm_runtime_disable(&pdev->dev);
39287d2163dSXiang Wang err_of_parse:
39387d2163dSXiang Wang err_cd_req:
394164378efSChao Xie 	clk_disable_unprepare(clk);
395a702c8abSZhangfei Gao err_clk_get:
3965491ce3fSMarcin Wojtas err_mbus_win:
397a702c8abSZhangfei Gao 	sdhci_pltfm_free(pdev);
398a702c8abSZhangfei Gao 	return ret;
399a702c8abSZhangfei Gao }
400a702c8abSZhangfei Gao 
4016e0ee714SBill Pemberton static int sdhci_pxav3_remove(struct platform_device *pdev)
402a702c8abSZhangfei Gao {
403a702c8abSZhangfei Gao 	struct sdhci_host *host = platform_get_drvdata(pdev);
404a702c8abSZhangfei Gao 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
405a702c8abSZhangfei Gao 
406bb691ae4SKevin Liu 	pm_runtime_get_sync(&pdev->dev);
407a702c8abSZhangfei Gao 	sdhci_remove_host(host, 1);
408bb691ae4SKevin Liu 	pm_runtime_disable(&pdev->dev);
409a702c8abSZhangfei Gao 
410164378efSChao Xie 	clk_disable_unprepare(pltfm_host->clk);
4118f63795cSChris Ball 
412a702c8abSZhangfei Gao 	sdhci_pltfm_free(pdev);
413a702c8abSZhangfei Gao 
414a702c8abSZhangfei Gao 	return 0;
415a702c8abSZhangfei Gao }
416a702c8abSZhangfei Gao 
417bb691ae4SKevin Liu #ifdef CONFIG_PM_SLEEP
418bb691ae4SKevin Liu static int sdhci_pxav3_suspend(struct device *dev)
419bb691ae4SKevin Liu {
420bb691ae4SKevin Liu 	int ret;
421bb691ae4SKevin Liu 	struct sdhci_host *host = dev_get_drvdata(dev);
422bb691ae4SKevin Liu 
423bb691ae4SKevin Liu 	pm_runtime_get_sync(dev);
424bb691ae4SKevin Liu 	ret = sdhci_suspend_host(host);
425bb691ae4SKevin Liu 	pm_runtime_mark_last_busy(dev);
426bb691ae4SKevin Liu 	pm_runtime_put_autosuspend(dev);
427bb691ae4SKevin Liu 
428bb691ae4SKevin Liu 	return ret;
429bb691ae4SKevin Liu }
430bb691ae4SKevin Liu 
431bb691ae4SKevin Liu static int sdhci_pxav3_resume(struct device *dev)
432bb691ae4SKevin Liu {
433bb691ae4SKevin Liu 	int ret;
434bb691ae4SKevin Liu 	struct sdhci_host *host = dev_get_drvdata(dev);
435bb691ae4SKevin Liu 
436bb691ae4SKevin Liu 	pm_runtime_get_sync(dev);
437bb691ae4SKevin Liu 	ret = sdhci_resume_host(host);
438bb691ae4SKevin Liu 	pm_runtime_mark_last_busy(dev);
439bb691ae4SKevin Liu 	pm_runtime_put_autosuspend(dev);
440bb691ae4SKevin Liu 
441bb691ae4SKevin Liu 	return ret;
442bb691ae4SKevin Liu }
443bb691ae4SKevin Liu #endif
444bb691ae4SKevin Liu 
445bb691ae4SKevin Liu #ifdef CONFIG_PM_RUNTIME
446bb691ae4SKevin Liu static int sdhci_pxav3_runtime_suspend(struct device *dev)
447bb691ae4SKevin Liu {
448bb691ae4SKevin Liu 	struct sdhci_host *host = dev_get_drvdata(dev);
449bb691ae4SKevin Liu 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
450bb691ae4SKevin Liu 	unsigned long flags;
451bb691ae4SKevin Liu 
452bb691ae4SKevin Liu 	if (pltfm_host->clk) {
453bb691ae4SKevin Liu 		spin_lock_irqsave(&host->lock, flags);
454bb691ae4SKevin Liu 		host->runtime_suspended = true;
455bb691ae4SKevin Liu 		spin_unlock_irqrestore(&host->lock, flags);
456bb691ae4SKevin Liu 
457bb691ae4SKevin Liu 		clk_disable_unprepare(pltfm_host->clk);
458bb691ae4SKevin Liu 	}
459bb691ae4SKevin Liu 
460bb691ae4SKevin Liu 	return 0;
461bb691ae4SKevin Liu }
462bb691ae4SKevin Liu 
463bb691ae4SKevin Liu static int sdhci_pxav3_runtime_resume(struct device *dev)
464bb691ae4SKevin Liu {
465bb691ae4SKevin Liu 	struct sdhci_host *host = dev_get_drvdata(dev);
466bb691ae4SKevin Liu 	struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
467bb691ae4SKevin Liu 	unsigned long flags;
468bb691ae4SKevin Liu 
469bb691ae4SKevin Liu 	if (pltfm_host->clk) {
470bb691ae4SKevin Liu 		clk_prepare_enable(pltfm_host->clk);
471bb691ae4SKevin Liu 
472bb691ae4SKevin Liu 		spin_lock_irqsave(&host->lock, flags);
473bb691ae4SKevin Liu 		host->runtime_suspended = false;
474bb691ae4SKevin Liu 		spin_unlock_irqrestore(&host->lock, flags);
475bb691ae4SKevin Liu 	}
476bb691ae4SKevin Liu 
477bb691ae4SKevin Liu 	return 0;
478bb691ae4SKevin Liu }
479bb691ae4SKevin Liu #endif
480bb691ae4SKevin Liu 
481bb691ae4SKevin Liu #ifdef CONFIG_PM
482bb691ae4SKevin Liu static const struct dev_pm_ops sdhci_pxav3_pmops = {
483bb691ae4SKevin Liu 	SET_SYSTEM_SLEEP_PM_OPS(sdhci_pxav3_suspend, sdhci_pxav3_resume)
484bb691ae4SKevin Liu 	SET_RUNTIME_PM_OPS(sdhci_pxav3_runtime_suspend,
485bb691ae4SKevin Liu 		sdhci_pxav3_runtime_resume, NULL)
486bb691ae4SKevin Liu };
487bb691ae4SKevin Liu 
488bb691ae4SKevin Liu #define SDHCI_PXAV3_PMOPS (&sdhci_pxav3_pmops)
489bb691ae4SKevin Liu 
490bb691ae4SKevin Liu #else
491bb691ae4SKevin Liu #define SDHCI_PXAV3_PMOPS NULL
492bb691ae4SKevin Liu #endif
493bb691ae4SKevin Liu 
494a702c8abSZhangfei Gao static struct platform_driver sdhci_pxav3_driver = {
495a702c8abSZhangfei Gao 	.driver		= {
496a702c8abSZhangfei Gao 		.name	= "sdhci-pxav3",
497b650352dSChris Ball #ifdef CONFIG_OF
498b650352dSChris Ball 		.of_match_table = sdhci_pxav3_of_match,
499b650352dSChris Ball #endif
500bb691ae4SKevin Liu 		.pm	= SDHCI_PXAV3_PMOPS,
501a702c8abSZhangfei Gao 	},
502a702c8abSZhangfei Gao 	.probe		= sdhci_pxav3_probe,
5030433c143SBill Pemberton 	.remove		= sdhci_pxav3_remove,
504a702c8abSZhangfei Gao };
505a702c8abSZhangfei Gao 
506d1f81a64SAxel Lin module_platform_driver(sdhci_pxav3_driver);
507a702c8abSZhangfei Gao 
508a702c8abSZhangfei Gao MODULE_DESCRIPTION("SDHCI driver for pxav3");
509a702c8abSZhangfei Gao MODULE_AUTHOR("Marvell International Ltd.");
510a702c8abSZhangfei Gao MODULE_LICENSE("GPL v2");
511a702c8abSZhangfei Gao 
512