blob: 946d37f94a31b29e8739304ec71cf7b1468eead6 [file] [log] [blame]
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +08001/*
2 * Copyright (C) 2010 Marvell International Ltd.
3 * Zhangfei Gao <zhangfei.gao@marvell.com>
4 * Kevin Wang <dwang4@marvell.com>
5 * Mingwei Wang <mwwang@marvell.com>
6 * Philip Rakity <prakity@marvell.com>
7 * Mark Brown <markb@marvell.com>
8 *
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 */
19#include <linux/err.h>
20#include <linux/init.h>
21#include <linux/platform_device.h>
22#include <linux/clk.h>
23#include <linux/io.h>
24#include <linux/gpio.h>
25#include <linux/mmc/card.h>
26#include <linux/mmc/host.h>
Chris Ball8f637952012-09-19 16:29:12 +080027#include <linux/mmc/slot-gpio.h>
Zhangfei Gaobfed3452011-06-20 22:11:52 +080028#include <linux/platform_data/pxa_sdhci.h>
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +080029#include <linux/slab.h>
30#include <linux/delay.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040031#include <linux/module.h>
Chris Ballb6503522012-04-10 22:34:33 -040032#include <linux/of.h>
33#include <linux/of_device.h>
Chris Ball8f637952012-09-19 16:29:12 +080034#include <linux/of_gpio.h>
Kevin Liubb691ae2013-02-01 17:48:30 +080035#include <linux/pm.h>
36#include <linux/pm_runtime.h>
Marcin Wojtas5491ce32014-02-18 16:08:29 +010037#include <linux/mbus.h>
Chris Ballb6503522012-04-10 22:34:33 -040038
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +080039#include "sdhci.h"
40#include "sdhci-pltfm.h"
41
Kevin Liubb691ae2013-02-01 17:48:30 +080042#define PXAV3_RPM_DELAY_MS 50
43
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +080044#define SD_CLOCK_BURST_SIZE_SETUP 0x10A
45#define SDCLK_SEL 0x100
46#define SDCLK_DELAY_SHIFT 9
47#define SDCLK_DELAY_MASK 0x1f
48
49#define SD_CFG_FIFO_PARAM 0x100
50#define SDCFG_GEN_PAD_CLK_ON (1<<6)
51#define SDCFG_GEN_PAD_CLK_CNT_MASK 0xFF
52#define SDCFG_GEN_PAD_CLK_CNT_SHIFT 24
53
54#define SD_SPI_MODE 0x108
55#define SD_CE_ATA_1 0x10C
56
57#define SD_CE_ATA_2 0x10E
58#define SDCE_MISC_INT (1<<2)
59#define SDCE_MISC_INT_EN (1<<1)
60
Sebastian Hesselbarthcc9571e2014-10-21 11:22:35 +020061struct sdhci_pxa {
Sebastian Hesselbarth8afdc9c2014-10-21 11:22:40 +020062 struct clk *clk_core;
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +020063 struct clk *clk_io;
Sebastian Hesselbarthcc9571e2014-10-21 11:22:35 +020064 u8 power_mode;
Marcin Wojtas11400112015-01-29 12:36:27 +010065 void __iomem *sdio3_conf_reg;
Sebastian Hesselbarthcc9571e2014-10-21 11:22:35 +020066};
67
Marcin Wojtas5491ce32014-02-18 16:08:29 +010068/*
69 * These registers are relative to the second register region, for the
70 * MBus bridge.
71 */
72#define SDHCI_WINDOW_CTRL(i) (0x80 + ((i) << 3))
73#define SDHCI_WINDOW_BASE(i) (0x84 + ((i) << 3))
74#define SDHCI_MAX_WIN_NUM 8
75
Marcin Wojtas11400112015-01-29 12:36:27 +010076/*
77 * Fields below belong to SDIO3 Configuration Register (third register
78 * region for the Armada 38x flavor)
79 */
80
81#define SDIO3_CONF_CLK_INV BIT(0)
82#define SDIO3_CONF_SD_FB_CLK BIT(2)
83
Marcin Wojtas5491ce32014-02-18 16:08:29 +010084static int mv_conf_mbus_windows(struct platform_device *pdev,
85 const struct mbus_dram_target_info *dram)
86{
87 int i;
88 void __iomem *regs;
89 struct resource *res;
90
91 if (!dram) {
92 dev_err(&pdev->dev, "no mbus dram info\n");
93 return -EINVAL;
94 }
95
96 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
97 if (!res) {
98 dev_err(&pdev->dev, "cannot get mbus registers\n");
99 return -EINVAL;
100 }
101
102 regs = ioremap(res->start, resource_size(res));
103 if (!regs) {
104 dev_err(&pdev->dev, "cannot map mbus registers\n");
105 return -ENOMEM;
106 }
107
108 for (i = 0; i < SDHCI_MAX_WIN_NUM; i++) {
109 writel(0, regs + SDHCI_WINDOW_CTRL(i));
110 writel(0, regs + SDHCI_WINDOW_BASE(i));
111 }
112
113 for (i = 0; i < dram->num_cs; i++) {
114 const struct mbus_dram_window *cs = dram->cs + i;
115
116 /* Write size, attributes and target id to control register */
117 writel(((cs->size - 1) & 0xffff0000) |
118 (cs->mbus_attr << 8) |
119 (dram->mbus_dram_target_id << 4) | 1,
120 regs + SDHCI_WINDOW_CTRL(i));
121 /* Write base address to base register */
122 writel(cs->base, regs + SDHCI_WINDOW_BASE(i));
123 }
124
125 iounmap(regs);
126
127 return 0;
128}
129
Marcin Wojtasa39128b2015-01-29 12:36:25 +0100130static int armada_38x_quirks(struct platform_device *pdev,
131 struct sdhci_host *host)
Gregory CLEMENTd4b803c2015-01-29 12:36:24 +0100132{
Marcin Wojtasa39128b2015-01-29 12:36:25 +0100133 struct device_node *np = pdev->dev.of_node;
Marcin Wojtas11400112015-01-29 12:36:27 +0100134 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
135 struct sdhci_pxa *pxa = pltfm_host->priv;
136 struct resource *res;
Marcin Wojtasa39128b2015-01-29 12:36:25 +0100137
Gregory CLEMENTd4b803c2015-01-29 12:36:24 +0100138 host->quirks |= SDHCI_QUIRK_MISSING_CAPS;
Marcin Wojtas11400112015-01-29 12:36:27 +0100139 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
140 "conf-sdio3");
141 if (res) {
142 pxa->sdio3_conf_reg = devm_ioremap_resource(&pdev->dev, res);
143 if (IS_ERR(pxa->sdio3_conf_reg))
144 return PTR_ERR(pxa->sdio3_conf_reg);
145 } else {
146 /*
147 * According to erratum 'FE-2946959' both SDR50 and DDR50
148 * modes require specific clock adjustments in SDIO3
149 * Configuration register, if the adjustment is not done,
150 * remove them from the capabilities.
151 */
152 host->caps1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
153 host->caps1 &= ~(SDHCI_SUPPORT_SDR50 | SDHCI_SUPPORT_DDR50);
154
155 dev_warn(&pdev->dev, "conf-sdio3 register not found: disabling SDR50 and DDR50 modes.\nConsider updating your dtb\n");
156 }
Marcin Wojtasa39128b2015-01-29 12:36:25 +0100157
158 /*
159 * According to erratum 'ERR-7878951' Armada 38x SDHCI
160 * controller has different capabilities than the ones shown
161 * in its registers
162 */
163 host->caps = sdhci_readl(host, SDHCI_CAPABILITIES);
164 if (of_property_read_bool(np, "no-1-8-v")) {
165 host->caps &= ~SDHCI_CAN_VDD_180;
166 host->mmc->caps &= ~MMC_CAP_1_8V_DDR;
167 } else {
168 host->caps &= ~SDHCI_CAN_VDD_330;
169 }
170 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_USE_SDR50_TUNING);
171
Gregory CLEMENTd4b803c2015-01-29 12:36:24 +0100172 return 0;
173}
174
Russell King03231f92014-04-25 12:57:12 +0100175static void pxav3_reset(struct sdhci_host *host, u8 mask)
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800176{
177 struct platform_device *pdev = to_platform_device(mmc_dev(host->mmc));
178 struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data;
179
Russell King03231f92014-04-25 12:57:12 +0100180 sdhci_reset(host, mask);
181
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800182 if (mask == SDHCI_RESET_ALL) {
183 /*
184 * tune timing of read data/command when crc error happen
185 * no performance impact
186 */
187 if (pdata && 0 != pdata->clk_delay_cycles) {
188 u16 tmp;
189
190 tmp = readw(host->ioaddr + SD_CLOCK_BURST_SIZE_SETUP);
191 tmp |= (pdata->clk_delay_cycles & SDCLK_DELAY_MASK)
192 << SDCLK_DELAY_SHIFT;
193 tmp |= SDCLK_SEL;
194 writew(tmp, host->ioaddr + SD_CLOCK_BURST_SIZE_SETUP);
195 }
196 }
197}
198
199#define MAX_WAIT_COUNT 5
200static void pxav3_gen_init_74_clocks(struct sdhci_host *host, u8 power_mode)
201{
202 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
203 struct sdhci_pxa *pxa = pltfm_host->priv;
204 u16 tmp;
205 int count;
206
207 if (pxa->power_mode == MMC_POWER_UP
208 && power_mode == MMC_POWER_ON) {
209
210 dev_dbg(mmc_dev(host->mmc),
211 "%s: slot->power_mode = %d,"
212 "ios->power_mode = %d\n",
213 __func__,
214 pxa->power_mode,
215 power_mode);
216
217 /* set we want notice of when 74 clocks are sent */
218 tmp = readw(host->ioaddr + SD_CE_ATA_2);
219 tmp |= SDCE_MISC_INT_EN;
220 writew(tmp, host->ioaddr + SD_CE_ATA_2);
221
222 /* start sending the 74 clocks */
223 tmp = readw(host->ioaddr + SD_CFG_FIFO_PARAM);
224 tmp |= SDCFG_GEN_PAD_CLK_ON;
225 writew(tmp, host->ioaddr + SD_CFG_FIFO_PARAM);
226
227 /* slowest speed is about 100KHz or 10usec per clock */
228 udelay(740);
229 count = 0;
230
231 while (count++ < MAX_WAIT_COUNT) {
232 if ((readw(host->ioaddr + SD_CE_ATA_2)
233 & SDCE_MISC_INT) == 0)
234 break;
235 udelay(10);
236 }
237
238 if (count == MAX_WAIT_COUNT)
239 dev_warn(mmc_dev(host->mmc), "74 clock interrupt not cleared\n");
240
241 /* clear the interrupt bit if posted */
242 tmp = readw(host->ioaddr + SD_CE_ATA_2);
243 tmp |= SDCE_MISC_INT;
244 writew(tmp, host->ioaddr + SD_CE_ATA_2);
245 }
246 pxa->power_mode = power_mode;
247}
248
Russell King13e64502014-04-25 12:59:20 +0100249static void pxav3_set_uhs_signaling(struct sdhci_host *host, unsigned int uhs)
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800250{
Marcin Wojtas11400112015-01-29 12:36:27 +0100251 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
252 struct sdhci_pxa *pxa = pltfm_host->priv;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800253 u16 ctrl_2;
254
255 /*
256 * Set V18_EN -- UHS modes do not work without this.
257 * does not change signaling voltage
258 */
259 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
260
261 /* Select Bus Speed Mode for host */
262 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
263 switch (uhs) {
264 case MMC_TIMING_UHS_SDR12:
265 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
266 break;
267 case MMC_TIMING_UHS_SDR25:
268 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
269 break;
270 case MMC_TIMING_UHS_SDR50:
271 ctrl_2 |= SDHCI_CTRL_UHS_SDR50 | SDHCI_CTRL_VDD_180;
272 break;
273 case MMC_TIMING_UHS_SDR104:
274 ctrl_2 |= SDHCI_CTRL_UHS_SDR104 | SDHCI_CTRL_VDD_180;
275 break;
Sebastian Hesselbarth668e84b2014-10-21 11:22:34 +0200276 case MMC_TIMING_MMC_DDR52:
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800277 case MMC_TIMING_UHS_DDR50:
278 ctrl_2 |= SDHCI_CTRL_UHS_DDR50 | SDHCI_CTRL_VDD_180;
279 break;
280 }
281
Marcin Wojtas11400112015-01-29 12:36:27 +0100282 /*
283 * Update SDIO3 Configuration register according to erratum
284 * FE-2946959
285 */
286 if (pxa->sdio3_conf_reg) {
287 u8 reg_val = readb(pxa->sdio3_conf_reg);
288
289 if (uhs == MMC_TIMING_UHS_SDR50 ||
290 uhs == MMC_TIMING_UHS_DDR50) {
291 reg_val &= ~SDIO3_CONF_CLK_INV;
292 reg_val |= SDIO3_CONF_SD_FB_CLK;
293 } else {
294 reg_val |= SDIO3_CONF_CLK_INV;
295 reg_val &= ~SDIO3_CONF_SD_FB_CLK;
296 }
297 writeb(reg_val, pxa->sdio3_conf_reg);
298 }
299
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800300 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
301 dev_dbg(mmc_dev(host->mmc),
302 "%s uhs = %d, ctrl_2 = %04X\n",
303 __func__, uhs, ctrl_2);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800304}
305
Lars-Peter Clausenc9155682013-03-13 19:26:05 +0100306static const struct sdhci_ops pxav3_sdhci_ops = {
Russell King17710592014-04-25 12:58:55 +0100307 .set_clock = sdhci_set_clock,
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800308 .platform_send_init_74_clocks = pxav3_gen_init_74_clocks,
Lars-Peter Clausend005d942013-01-28 19:27:12 +0100309 .get_max_clock = sdhci_pltfm_clk_get_max_clock,
Russell King2317f562014-04-25 12:57:07 +0100310 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +0100311 .reset = pxav3_reset,
Peter Griffinb3153762014-08-15 14:02:15 +0100312 .set_uhs_signaling = pxav3_set_uhs_signaling,
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800313};
314
Kevin Liu73b7afb2013-03-25 17:42:56 +0800315static struct sdhci_pltfm_data sdhci_pxav3_pdata = {
Kevin Liue0651622013-03-25 17:42:59 +0800316 .quirks = SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
Kevin Liu73b7afb2013-03-25 17:42:56 +0800317 | SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
318 | SDHCI_QUIRK_32BIT_ADMA_SIZE
319 | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
320 .ops = &pxav3_sdhci_ops,
321};
322
Chris Ballb6503522012-04-10 22:34:33 -0400323#ifdef CONFIG_OF
324static const struct of_device_id sdhci_pxav3_of_match[] = {
325 {
326 .compatible = "mrvl,pxav3-mmc",
327 },
Marcin Wojtas5491ce32014-02-18 16:08:29 +0100328 {
329 .compatible = "marvell,armada-380-sdhci",
330 },
Chris Ballb6503522012-04-10 22:34:33 -0400331 {},
332};
333MODULE_DEVICE_TABLE(of, sdhci_pxav3_of_match);
334
335static struct sdhci_pxa_platdata *pxav3_get_mmc_pdata(struct device *dev)
336{
337 struct sdhci_pxa_platdata *pdata;
338 struct device_node *np = dev->of_node;
Chris Ballb6503522012-04-10 22:34:33 -0400339 u32 clk_delay_cycles;
340
341 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
342 if (!pdata)
343 return NULL;
344
Jisheng Zhang14460db2015-01-28 19:54:12 +0800345 if (!of_property_read_u32(np, "mrvl,clk-delay-cycles",
346 &clk_delay_cycles))
Chris Ballb6503522012-04-10 22:34:33 -0400347 pdata->clk_delay_cycles = clk_delay_cycles;
348
349 return pdata;
350}
351#else
352static inline struct sdhci_pxa_platdata *pxav3_get_mmc_pdata(struct device *dev)
353{
354 return NULL;
355}
356#endif
357
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500358static int sdhci_pxav3_probe(struct platform_device *pdev)
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800359{
360 struct sdhci_pltfm_host *pltfm_host;
361 struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data;
362 struct device *dev = &pdev->dev;
Marcin Wojtas5491ce32014-02-18 16:08:29 +0100363 struct device_node *np = pdev->dev.of_node;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800364 struct sdhci_host *host = NULL;
365 struct sdhci_pxa *pxa = NULL;
Chris Ballb6503522012-04-10 22:34:33 -0400366 const struct of_device_id *match;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800367 int ret;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800368
Laurent Pinchart3df5b282014-07-16 11:53:42 +0200369 pxa = devm_kzalloc(&pdev->dev, sizeof(struct sdhci_pxa), GFP_KERNEL);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800370 if (!pxa)
371 return -ENOMEM;
372
Christian Daudt0e748232013-05-29 13:50:05 -0700373 host = sdhci_pltfm_init(pdev, &sdhci_pxav3_pdata, 0);
Laurent Pinchart3df5b282014-07-16 11:53:42 +0200374 if (IS_ERR(host))
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800375 return PTR_ERR(host);
Marcin Wojtas5491ce32014-02-18 16:08:29 +0100376
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800377 pltfm_host = sdhci_priv(host);
378 pltfm_host->priv = pxa;
379
Sebastian Hesselbarth01ae1072014-10-21 11:22:39 +0200380 pxa->clk_io = devm_clk_get(dev, "io");
381 if (IS_ERR(pxa->clk_io))
382 pxa->clk_io = devm_clk_get(dev, NULL);
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200383 if (IS_ERR(pxa->clk_io)) {
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800384 dev_err(dev, "failed to get io clock\n");
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200385 ret = PTR_ERR(pxa->clk_io);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800386 goto err_clk_get;
387 }
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200388 pltfm_host->clk = pxa->clk_io;
389 clk_prepare_enable(pxa->clk_io);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800390
Sebastian Hesselbarth8afdc9c2014-10-21 11:22:40 +0200391 pxa->clk_core = devm_clk_get(dev, "core");
392 if (!IS_ERR(pxa->clk_core))
393 clk_prepare_enable(pxa->clk_core);
394
Marcin Wojtasa39128b2015-01-29 12:36:25 +0100395 /* enable 1/8V DDR capable */
396 host->mmc->caps |= MMC_CAP_1_8V_DDR;
397
Thomas Petazzoniaa8165f2014-12-31 11:54:10 +0100398 if (of_device_is_compatible(np, "marvell,armada-380-sdhci")) {
Marcin Wojtasa39128b2015-01-29 12:36:25 +0100399 ret = armada_38x_quirks(pdev, host);
Gregory CLEMENTd4b803c2015-01-29 12:36:24 +0100400 if (ret < 0)
401 goto err_clk_get;
Thomas Petazzoniaa8165f2014-12-31 11:54:10 +0100402 ret = mv_conf_mbus_windows(pdev, mv_mbus_dram_info());
403 if (ret < 0)
404 goto err_mbus_win;
405 }
406
Chris Ballb6503522012-04-10 22:34:33 -0400407 match = of_match_device(of_match_ptr(sdhci_pxav3_of_match), &pdev->dev);
Kevin Liu943647f2013-03-25 17:42:58 +0800408 if (match) {
Simon Baatzd2cf6072013-06-09 22:14:15 +0200409 ret = mmc_of_parse(host->mmc);
410 if (ret)
411 goto err_of_parse;
Kevin Liu943647f2013-03-25 17:42:58 +0800412 sdhci_get_of_property(pdev);
Chris Ballb6503522012-04-10 22:34:33 -0400413 pdata = pxav3_get_mmc_pdata(dev);
Jingju Hou9cd76042015-07-23 17:56:23 +0800414 pdev->dev.platform_data = pdata;
Kevin Liu943647f2013-03-25 17:42:58 +0800415 } else if (pdata) {
Kevin Liuc844a462013-03-25 17:42:57 +0800416 /* on-chip device */
417 if (pdata->flags & PXA_FLAG_CARD_PERMANENT)
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800418 host->mmc->caps |= MMC_CAP_NONREMOVABLE;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800419
420 /* If slot design supports 8 bit data, indicate this to MMC. */
421 if (pdata->flags & PXA_FLAG_SD_8_BIT_CAPABLE_SLOT)
422 host->mmc->caps |= MMC_CAP_8_BIT_DATA;
423
424 if (pdata->quirks)
425 host->quirks |= pdata->quirks;
Kevin Liu7c52d7bb2012-10-17 19:04:48 +0800426 if (pdata->quirks2)
427 host->quirks2 |= pdata->quirks2;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800428 if (pdata->host_caps)
429 host->mmc->caps |= pdata->host_caps;
Chris Ball8f637952012-09-19 16:29:12 +0800430 if (pdata->host_caps2)
431 host->mmc->caps2 |= pdata->host_caps2;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800432 if (pdata->pm_caps)
433 host->mmc->pm_caps |= pdata->pm_caps;
Chris Ball8f637952012-09-19 16:29:12 +0800434
435 if (gpio_is_valid(pdata->ext_cd_gpio)) {
Laurent Pinchart214fc302013-08-08 12:38:31 +0200436 ret = mmc_gpio_request_cd(host->mmc, pdata->ext_cd_gpio,
437 0);
Chris Ball8f637952012-09-19 16:29:12 +0800438 if (ret) {
439 dev_err(mmc_dev(host->mmc),
440 "failed to allocate card detect gpio\n");
441 goto err_cd_req;
442 }
443 }
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800444 }
445
Jisheng Zhang62cf9832015-01-04 23:15:47 +0800446 pm_runtime_get_noresume(&pdev->dev);
447 pm_runtime_set_active(&pdev->dev);
Kevin Liubb691ae2013-02-01 17:48:30 +0800448 pm_runtime_set_autosuspend_delay(&pdev->dev, PXAV3_RPM_DELAY_MS);
449 pm_runtime_use_autosuspend(&pdev->dev);
Jisheng Zhang62cf9832015-01-04 23:15:47 +0800450 pm_runtime_enable(&pdev->dev);
Kevin Liubb691ae2013-02-01 17:48:30 +0800451 pm_suspend_ignore_children(&pdev->dev, 1);
Kevin Liubb691ae2013-02-01 17:48:30 +0800452
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800453 ret = sdhci_add_host(host);
454 if (ret) {
455 dev_err(&pdev->dev, "failed to add host\n");
456 goto err_add_host;
457 }
458
459 platform_set_drvdata(pdev, host);
460
Jisheng Zhang83dc9fe2015-06-02 18:38:35 +0800461 if (host->mmc->pm_caps & MMC_PM_WAKE_SDIO_IRQ)
Kevin Liu740b7a42013-01-14 14:38:53 -0500462 device_init_wakeup(&pdev->dev, 1);
Kevin Liu740b7a42013-01-14 14:38:53 -0500463
Kevin Liubb691ae2013-02-01 17:48:30 +0800464 pm_runtime_put_autosuspend(&pdev->dev);
465
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800466 return 0;
467
468err_add_host:
Daniel Drake0dcaa242013-06-27 11:46:29 -0400469 pm_runtime_disable(&pdev->dev);
Jisheng Zhang62cf9832015-01-04 23:15:47 +0800470 pm_runtime_put_noidle(&pdev->dev);
Xiang Wang87d21632014-07-16 15:50:09 +0800471err_of_parse:
472err_cd_req:
Thomas Petazzoniaa8165f2014-12-31 11:54:10 +0100473err_mbus_win:
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200474 clk_disable_unprepare(pxa->clk_io);
Jisheng Zhangc25d9e12015-01-05 15:59:19 +0800475 clk_disable_unprepare(pxa->clk_core);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800476err_clk_get:
477 sdhci_pltfm_free(pdev);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800478 return ret;
479}
480
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500481static int sdhci_pxav3_remove(struct platform_device *pdev)
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800482{
483 struct sdhci_host *host = platform_get_drvdata(pdev);
484 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200485 struct sdhci_pxa *pxa = pltfm_host->priv;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800486
Kevin Liubb691ae2013-02-01 17:48:30 +0800487 pm_runtime_get_sync(&pdev->dev);
Kevin Liubb691ae2013-02-01 17:48:30 +0800488 pm_runtime_disable(&pdev->dev);
Jisheng Zhang20f1f2d2015-01-04 23:15:48 +0800489 pm_runtime_put_noidle(&pdev->dev);
490
491 sdhci_remove_host(host, 1);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800492
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200493 clk_disable_unprepare(pxa->clk_io);
Jisheng Zhangc25d9e12015-01-05 15:59:19 +0800494 clk_disable_unprepare(pxa->clk_core);
Chris Ball8f637952012-09-19 16:29:12 +0800495
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800496 sdhci_pltfm_free(pdev);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800497
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800498 return 0;
499}
500
Kevin Liubb691ae2013-02-01 17:48:30 +0800501#ifdef CONFIG_PM_SLEEP
502static int sdhci_pxav3_suspend(struct device *dev)
503{
504 int ret;
505 struct sdhci_host *host = dev_get_drvdata(dev);
506
507 pm_runtime_get_sync(dev);
508 ret = sdhci_suspend_host(host);
509 pm_runtime_mark_last_busy(dev);
510 pm_runtime_put_autosuspend(dev);
511
512 return ret;
513}
514
515static int sdhci_pxav3_resume(struct device *dev)
516{
517 int ret;
518 struct sdhci_host *host = dev_get_drvdata(dev);
519
520 pm_runtime_get_sync(dev);
521 ret = sdhci_resume_host(host);
522 pm_runtime_mark_last_busy(dev);
523 pm_runtime_put_autosuspend(dev);
524
525 return ret;
526}
527#endif
528
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +0100529#ifdef CONFIG_PM
Kevin Liubb691ae2013-02-01 17:48:30 +0800530static int sdhci_pxav3_runtime_suspend(struct device *dev)
531{
532 struct sdhci_host *host = dev_get_drvdata(dev);
533 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200534 struct sdhci_pxa *pxa = pltfm_host->priv;
Jisheng Zhang3bb10f62015-01-23 18:08:21 +0800535 int ret;
Kevin Liubb691ae2013-02-01 17:48:30 +0800536
Jisheng Zhang3bb10f62015-01-23 18:08:21 +0800537 ret = sdhci_runtime_suspend_host(host);
538 if (ret)
539 return ret;
Kevin Liubb691ae2013-02-01 17:48:30 +0800540
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200541 clk_disable_unprepare(pxa->clk_io);
Sebastian Hesselbarth8afdc9c2014-10-21 11:22:40 +0200542 if (!IS_ERR(pxa->clk_core))
543 clk_disable_unprepare(pxa->clk_core);
Kevin Liubb691ae2013-02-01 17:48:30 +0800544
545 return 0;
546}
547
548static int sdhci_pxav3_runtime_resume(struct device *dev)
549{
550 struct sdhci_host *host = dev_get_drvdata(dev);
551 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200552 struct sdhci_pxa *pxa = pltfm_host->priv;
Kevin Liubb691ae2013-02-01 17:48:30 +0800553
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200554 clk_prepare_enable(pxa->clk_io);
Sebastian Hesselbarth8afdc9c2014-10-21 11:22:40 +0200555 if (!IS_ERR(pxa->clk_core))
556 clk_prepare_enable(pxa->clk_core);
Kevin Liubb691ae2013-02-01 17:48:30 +0800557
Jisheng Zhang3bb10f62015-01-23 18:08:21 +0800558 return sdhci_runtime_resume_host(host);
Kevin Liubb691ae2013-02-01 17:48:30 +0800559}
560#endif
561
562#ifdef CONFIG_PM
563static const struct dev_pm_ops sdhci_pxav3_pmops = {
564 SET_SYSTEM_SLEEP_PM_OPS(sdhci_pxav3_suspend, sdhci_pxav3_resume)
565 SET_RUNTIME_PM_OPS(sdhci_pxav3_runtime_suspend,
566 sdhci_pxav3_runtime_resume, NULL)
567};
568
569#define SDHCI_PXAV3_PMOPS (&sdhci_pxav3_pmops)
570
571#else
572#define SDHCI_PXAV3_PMOPS NULL
573#endif
574
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800575static struct platform_driver sdhci_pxav3_driver = {
576 .driver = {
577 .name = "sdhci-pxav3",
Axel Lin59d22302015-05-05 17:11:54 +0800578 .of_match_table = of_match_ptr(sdhci_pxav3_of_match),
Kevin Liubb691ae2013-02-01 17:48:30 +0800579 .pm = SDHCI_PXAV3_PMOPS,
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800580 },
581 .probe = sdhci_pxav3_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -0500582 .remove = sdhci_pxav3_remove,
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800583};
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800584
Axel Lind1f81a62011-11-26 12:55:43 +0800585module_platform_driver(sdhci_pxav3_driver);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800586
587MODULE_DESCRIPTION("SDHCI driver for pxav3");
588MODULE_AUTHOR("Marvell International Ltd.");
589MODULE_LICENSE("GPL v2");
590