blob: 3dfd97977515d9c2f8aaecc97ee14b8aa7921764 [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 Hesselbarth8c96a7a2014-10-21 11:22:38 +020062 struct clk *clk_io;
Sebastian Hesselbarthcc9571e2014-10-21 11:22:35 +020063 u8 power_mode;
64};
65
Marcin Wojtas5491ce32014-02-18 16:08:29 +010066/*
67 * These registers are relative to the second register region, for the
68 * MBus bridge.
69 */
70#define SDHCI_WINDOW_CTRL(i) (0x80 + ((i) << 3))
71#define SDHCI_WINDOW_BASE(i) (0x84 + ((i) << 3))
72#define SDHCI_MAX_WIN_NUM 8
73
74static int mv_conf_mbus_windows(struct platform_device *pdev,
75 const struct mbus_dram_target_info *dram)
76{
77 int i;
78 void __iomem *regs;
79 struct resource *res;
80
81 if (!dram) {
82 dev_err(&pdev->dev, "no mbus dram info\n");
83 return -EINVAL;
84 }
85
86 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
87 if (!res) {
88 dev_err(&pdev->dev, "cannot get mbus registers\n");
89 return -EINVAL;
90 }
91
92 regs = ioremap(res->start, resource_size(res));
93 if (!regs) {
94 dev_err(&pdev->dev, "cannot map mbus registers\n");
95 return -ENOMEM;
96 }
97
98 for (i = 0; i < SDHCI_MAX_WIN_NUM; i++) {
99 writel(0, regs + SDHCI_WINDOW_CTRL(i));
100 writel(0, regs + SDHCI_WINDOW_BASE(i));
101 }
102
103 for (i = 0; i < dram->num_cs; i++) {
104 const struct mbus_dram_window *cs = dram->cs + i;
105
106 /* Write size, attributes and target id to control register */
107 writel(((cs->size - 1) & 0xffff0000) |
108 (cs->mbus_attr << 8) |
109 (dram->mbus_dram_target_id << 4) | 1,
110 regs + SDHCI_WINDOW_CTRL(i));
111 /* Write base address to base register */
112 writel(cs->base, regs + SDHCI_WINDOW_BASE(i));
113 }
114
115 iounmap(regs);
116
117 return 0;
118}
119
Russell King03231f92014-04-25 12:57:12 +0100120static void pxav3_reset(struct sdhci_host *host, u8 mask)
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800121{
122 struct platform_device *pdev = to_platform_device(mmc_dev(host->mmc));
123 struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data;
124
Russell King03231f92014-04-25 12:57:12 +0100125 sdhci_reset(host, mask);
126
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800127 if (mask == SDHCI_RESET_ALL) {
128 /*
129 * tune timing of read data/command when crc error happen
130 * no performance impact
131 */
132 if (pdata && 0 != pdata->clk_delay_cycles) {
133 u16 tmp;
134
135 tmp = readw(host->ioaddr + SD_CLOCK_BURST_SIZE_SETUP);
136 tmp |= (pdata->clk_delay_cycles & SDCLK_DELAY_MASK)
137 << SDCLK_DELAY_SHIFT;
138 tmp |= SDCLK_SEL;
139 writew(tmp, host->ioaddr + SD_CLOCK_BURST_SIZE_SETUP);
140 }
141 }
142}
143
144#define MAX_WAIT_COUNT 5
145static void pxav3_gen_init_74_clocks(struct sdhci_host *host, u8 power_mode)
146{
147 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
148 struct sdhci_pxa *pxa = pltfm_host->priv;
149 u16 tmp;
150 int count;
151
152 if (pxa->power_mode == MMC_POWER_UP
153 && power_mode == MMC_POWER_ON) {
154
155 dev_dbg(mmc_dev(host->mmc),
156 "%s: slot->power_mode = %d,"
157 "ios->power_mode = %d\n",
158 __func__,
159 pxa->power_mode,
160 power_mode);
161
162 /* set we want notice of when 74 clocks are sent */
163 tmp = readw(host->ioaddr + SD_CE_ATA_2);
164 tmp |= SDCE_MISC_INT_EN;
165 writew(tmp, host->ioaddr + SD_CE_ATA_2);
166
167 /* start sending the 74 clocks */
168 tmp = readw(host->ioaddr + SD_CFG_FIFO_PARAM);
169 tmp |= SDCFG_GEN_PAD_CLK_ON;
170 writew(tmp, host->ioaddr + SD_CFG_FIFO_PARAM);
171
172 /* slowest speed is about 100KHz or 10usec per clock */
173 udelay(740);
174 count = 0;
175
176 while (count++ < MAX_WAIT_COUNT) {
177 if ((readw(host->ioaddr + SD_CE_ATA_2)
178 & SDCE_MISC_INT) == 0)
179 break;
180 udelay(10);
181 }
182
183 if (count == MAX_WAIT_COUNT)
184 dev_warn(mmc_dev(host->mmc), "74 clock interrupt not cleared\n");
185
186 /* clear the interrupt bit if posted */
187 tmp = readw(host->ioaddr + SD_CE_ATA_2);
188 tmp |= SDCE_MISC_INT;
189 writew(tmp, host->ioaddr + SD_CE_ATA_2);
190 }
191 pxa->power_mode = power_mode;
192}
193
Russell King13e64502014-04-25 12:59:20 +0100194static void pxav3_set_uhs_signaling(struct sdhci_host *host, unsigned int uhs)
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800195{
196 u16 ctrl_2;
197
198 /*
199 * Set V18_EN -- UHS modes do not work without this.
200 * does not change signaling voltage
201 */
202 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
203
204 /* Select Bus Speed Mode for host */
205 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
206 switch (uhs) {
207 case MMC_TIMING_UHS_SDR12:
208 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
209 break;
210 case MMC_TIMING_UHS_SDR25:
211 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
212 break;
213 case MMC_TIMING_UHS_SDR50:
214 ctrl_2 |= SDHCI_CTRL_UHS_SDR50 | SDHCI_CTRL_VDD_180;
215 break;
216 case MMC_TIMING_UHS_SDR104:
217 ctrl_2 |= SDHCI_CTRL_UHS_SDR104 | SDHCI_CTRL_VDD_180;
218 break;
Sebastian Hesselbarth668e84b2014-10-21 11:22:34 +0200219 case MMC_TIMING_MMC_DDR52:
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800220 case MMC_TIMING_UHS_DDR50:
221 ctrl_2 |= SDHCI_CTRL_UHS_DDR50 | SDHCI_CTRL_VDD_180;
222 break;
223 }
224
225 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
226 dev_dbg(mmc_dev(host->mmc),
227 "%s uhs = %d, ctrl_2 = %04X\n",
228 __func__, uhs, ctrl_2);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800229}
230
Lars-Peter Clausenc9155682013-03-13 19:26:05 +0100231static const struct sdhci_ops pxav3_sdhci_ops = {
Russell King17710592014-04-25 12:58:55 +0100232 .set_clock = sdhci_set_clock,
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800233 .platform_send_init_74_clocks = pxav3_gen_init_74_clocks,
Lars-Peter Clausend005d942013-01-28 19:27:12 +0100234 .get_max_clock = sdhci_pltfm_clk_get_max_clock,
Russell King2317f562014-04-25 12:57:07 +0100235 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +0100236 .reset = pxav3_reset,
Peter Griffinb3153762014-08-15 14:02:15 +0100237 .set_uhs_signaling = pxav3_set_uhs_signaling,
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800238};
239
Kevin Liu73b7afb2013-03-25 17:42:56 +0800240static struct sdhci_pltfm_data sdhci_pxav3_pdata = {
Kevin Liue0651622013-03-25 17:42:59 +0800241 .quirks = SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
Kevin Liu73b7afb2013-03-25 17:42:56 +0800242 | SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
243 | SDHCI_QUIRK_32BIT_ADMA_SIZE
244 | SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
245 .ops = &pxav3_sdhci_ops,
246};
247
Chris Ballb6503522012-04-10 22:34:33 -0400248#ifdef CONFIG_OF
249static const struct of_device_id sdhci_pxav3_of_match[] = {
250 {
251 .compatible = "mrvl,pxav3-mmc",
252 },
Marcin Wojtas5491ce32014-02-18 16:08:29 +0100253 {
254 .compatible = "marvell,armada-380-sdhci",
255 },
Chris Ballb6503522012-04-10 22:34:33 -0400256 {},
257};
258MODULE_DEVICE_TABLE(of, sdhci_pxav3_of_match);
259
260static struct sdhci_pxa_platdata *pxav3_get_mmc_pdata(struct device *dev)
261{
262 struct sdhci_pxa_platdata *pdata;
263 struct device_node *np = dev->of_node;
Chris Ballb6503522012-04-10 22:34:33 -0400264 u32 clk_delay_cycles;
265
266 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
267 if (!pdata)
268 return NULL;
269
Chris Ballb6503522012-04-10 22:34:33 -0400270 of_property_read_u32(np, "mrvl,clk-delay-cycles", &clk_delay_cycles);
271 if (clk_delay_cycles > 0)
272 pdata->clk_delay_cycles = clk_delay_cycles;
273
274 return pdata;
275}
276#else
277static inline struct sdhci_pxa_platdata *pxav3_get_mmc_pdata(struct device *dev)
278{
279 return NULL;
280}
281#endif
282
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500283static int sdhci_pxav3_probe(struct platform_device *pdev)
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800284{
285 struct sdhci_pltfm_host *pltfm_host;
286 struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data;
287 struct device *dev = &pdev->dev;
Marcin Wojtas5491ce32014-02-18 16:08:29 +0100288 struct device_node *np = pdev->dev.of_node;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800289 struct sdhci_host *host = NULL;
290 struct sdhci_pxa *pxa = NULL;
Chris Ballb6503522012-04-10 22:34:33 -0400291 const struct of_device_id *match;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800292 int ret;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800293
Laurent Pinchart3df5b282014-07-16 11:53:42 +0200294 pxa = devm_kzalloc(&pdev->dev, sizeof(struct sdhci_pxa), GFP_KERNEL);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800295 if (!pxa)
296 return -ENOMEM;
297
Christian Daudt0e748232013-05-29 13:50:05 -0700298 host = sdhci_pltfm_init(pdev, &sdhci_pxav3_pdata, 0);
Laurent Pinchart3df5b282014-07-16 11:53:42 +0200299 if (IS_ERR(host))
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800300 return PTR_ERR(host);
Marcin Wojtas5491ce32014-02-18 16:08:29 +0100301
302 if (of_device_is_compatible(np, "marvell,armada-380-sdhci")) {
303 ret = mv_conf_mbus_windows(pdev, mv_mbus_dram_info());
304 if (ret < 0)
305 goto err_mbus_win;
306 }
307
308
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800309 pltfm_host = sdhci_priv(host);
310 pltfm_host->priv = pxa;
311
Sebastian Hesselbarth01ae1072014-10-21 11:22:39 +0200312 pxa->clk_io = devm_clk_get(dev, "io");
313 if (IS_ERR(pxa->clk_io))
314 pxa->clk_io = devm_clk_get(dev, NULL);
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200315 if (IS_ERR(pxa->clk_io)) {
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800316 dev_err(dev, "failed to get io clock\n");
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200317 ret = PTR_ERR(pxa->clk_io);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800318 goto err_clk_get;
319 }
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200320 pltfm_host->clk = pxa->clk_io;
321 clk_prepare_enable(pxa->clk_io);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800322
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800323 /* enable 1/8V DDR capable */
324 host->mmc->caps |= MMC_CAP_1_8V_DDR;
325
Chris Ballb6503522012-04-10 22:34:33 -0400326 match = of_match_device(of_match_ptr(sdhci_pxav3_of_match), &pdev->dev);
Kevin Liu943647f2013-03-25 17:42:58 +0800327 if (match) {
Simon Baatzd2cf6072013-06-09 22:14:15 +0200328 ret = mmc_of_parse(host->mmc);
329 if (ret)
330 goto err_of_parse;
Kevin Liu943647f2013-03-25 17:42:58 +0800331 sdhci_get_of_property(pdev);
Chris Ballb6503522012-04-10 22:34:33 -0400332 pdata = pxav3_get_mmc_pdata(dev);
Kevin Liu943647f2013-03-25 17:42:58 +0800333 } else if (pdata) {
Kevin Liuc844a462013-03-25 17:42:57 +0800334 /* on-chip device */
335 if (pdata->flags & PXA_FLAG_CARD_PERMANENT)
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800336 host->mmc->caps |= MMC_CAP_NONREMOVABLE;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800337
338 /* If slot design supports 8 bit data, indicate this to MMC. */
339 if (pdata->flags & PXA_FLAG_SD_8_BIT_CAPABLE_SLOT)
340 host->mmc->caps |= MMC_CAP_8_BIT_DATA;
341
342 if (pdata->quirks)
343 host->quirks |= pdata->quirks;
Kevin Liu7c52d7bb2012-10-17 19:04:48 +0800344 if (pdata->quirks2)
345 host->quirks2 |= pdata->quirks2;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800346 if (pdata->host_caps)
347 host->mmc->caps |= pdata->host_caps;
Chris Ball8f637952012-09-19 16:29:12 +0800348 if (pdata->host_caps2)
349 host->mmc->caps2 |= pdata->host_caps2;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800350 if (pdata->pm_caps)
351 host->mmc->pm_caps |= pdata->pm_caps;
Chris Ball8f637952012-09-19 16:29:12 +0800352
353 if (gpio_is_valid(pdata->ext_cd_gpio)) {
Laurent Pinchart214fc302013-08-08 12:38:31 +0200354 ret = mmc_gpio_request_cd(host->mmc, pdata->ext_cd_gpio,
355 0);
Chris Ball8f637952012-09-19 16:29:12 +0800356 if (ret) {
357 dev_err(mmc_dev(host->mmc),
358 "failed to allocate card detect gpio\n");
359 goto err_cd_req;
360 }
361 }
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800362 }
363
Kevin Liubb691ae2013-02-01 17:48:30 +0800364 pm_runtime_enable(&pdev->dev);
Daniel Drake0dcaa242013-06-27 11:46:29 -0400365 pm_runtime_get_sync(&pdev->dev);
Kevin Liubb691ae2013-02-01 17:48:30 +0800366 pm_runtime_set_autosuspend_delay(&pdev->dev, PXAV3_RPM_DELAY_MS);
367 pm_runtime_use_autosuspend(&pdev->dev);
368 pm_suspend_ignore_children(&pdev->dev, 1);
Kevin Liubb691ae2013-02-01 17:48:30 +0800369
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800370 ret = sdhci_add_host(host);
371 if (ret) {
372 dev_err(&pdev->dev, "failed to add host\n");
373 goto err_add_host;
374 }
375
376 platform_set_drvdata(pdev, host);
377
Kevin Liu943647f2013-03-25 17:42:58 +0800378 if (host->mmc->pm_caps & MMC_PM_KEEP_POWER) {
Kevin Liu740b7a42013-01-14 14:38:53 -0500379 device_init_wakeup(&pdev->dev, 1);
380 host->mmc->pm_flags |= MMC_PM_WAKE_SDIO_IRQ;
381 } else {
382 device_init_wakeup(&pdev->dev, 0);
383 }
384
Kevin Liubb691ae2013-02-01 17:48:30 +0800385 pm_runtime_put_autosuspend(&pdev->dev);
386
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800387 return 0;
388
389err_add_host:
Daniel Drake0dcaa242013-06-27 11:46:29 -0400390 pm_runtime_put_sync(&pdev->dev);
391 pm_runtime_disable(&pdev->dev);
Xiang Wang87d21632014-07-16 15:50:09 +0800392err_of_parse:
393err_cd_req:
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200394 clk_disable_unprepare(pxa->clk_io);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800395err_clk_get:
Marcin Wojtas5491ce32014-02-18 16:08:29 +0100396err_mbus_win:
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800397 sdhci_pltfm_free(pdev);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800398 return ret;
399}
400
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500401static int sdhci_pxav3_remove(struct platform_device *pdev)
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800402{
403 struct sdhci_host *host = platform_get_drvdata(pdev);
404 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200405 struct sdhci_pxa *pxa = pltfm_host->priv;
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800406
Kevin Liubb691ae2013-02-01 17:48:30 +0800407 pm_runtime_get_sync(&pdev->dev);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800408 sdhci_remove_host(host, 1);
Kevin Liubb691ae2013-02-01 17:48:30 +0800409 pm_runtime_disable(&pdev->dev);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800410
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200411 clk_disable_unprepare(pxa->clk_io);
Chris Ball8f637952012-09-19 16:29:12 +0800412
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800413 sdhci_pltfm_free(pdev);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800414
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800415 return 0;
416}
417
Kevin Liubb691ae2013-02-01 17:48:30 +0800418#ifdef CONFIG_PM_SLEEP
419static int sdhci_pxav3_suspend(struct device *dev)
420{
421 int ret;
422 struct sdhci_host *host = dev_get_drvdata(dev);
423
424 pm_runtime_get_sync(dev);
425 ret = sdhci_suspend_host(host);
426 pm_runtime_mark_last_busy(dev);
427 pm_runtime_put_autosuspend(dev);
428
429 return ret;
430}
431
432static int sdhci_pxav3_resume(struct device *dev)
433{
434 int ret;
435 struct sdhci_host *host = dev_get_drvdata(dev);
436
437 pm_runtime_get_sync(dev);
438 ret = sdhci_resume_host(host);
439 pm_runtime_mark_last_busy(dev);
440 pm_runtime_put_autosuspend(dev);
441
442 return ret;
443}
444#endif
445
446#ifdef CONFIG_PM_RUNTIME
447static int sdhci_pxav3_runtime_suspend(struct device *dev)
448{
449 struct sdhci_host *host = dev_get_drvdata(dev);
450 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200451 struct sdhci_pxa *pxa = pltfm_host->priv;
Kevin Liubb691ae2013-02-01 17:48:30 +0800452 unsigned long flags;
453
Sebastian Hesselbarth20d5a702014-10-21 11:22:37 +0200454 spin_lock_irqsave(&host->lock, flags);
455 host->runtime_suspended = true;
456 spin_unlock_irqrestore(&host->lock, flags);
Kevin Liubb691ae2013-02-01 17:48:30 +0800457
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200458 clk_disable_unprepare(pxa->clk_io);
Kevin Liubb691ae2013-02-01 17:48:30 +0800459
460 return 0;
461}
462
463static int sdhci_pxav3_runtime_resume(struct device *dev)
464{
465 struct sdhci_host *host = dev_get_drvdata(dev);
466 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200467 struct sdhci_pxa *pxa = pltfm_host->priv;
Kevin Liubb691ae2013-02-01 17:48:30 +0800468 unsigned long flags;
469
Sebastian Hesselbarth8c96a7a2014-10-21 11:22:38 +0200470 clk_prepare_enable(pxa->clk_io);
Kevin Liubb691ae2013-02-01 17:48:30 +0800471
Sebastian Hesselbarth20d5a702014-10-21 11:22:37 +0200472 spin_lock_irqsave(&host->lock, flags);
473 host->runtime_suspended = false;
474 spin_unlock_irqrestore(&host->lock, flags);
Kevin Liubb691ae2013-02-01 17:48:30 +0800475
476 return 0;
477}
478#endif
479
480#ifdef CONFIG_PM
481static const struct dev_pm_ops sdhci_pxav3_pmops = {
482 SET_SYSTEM_SLEEP_PM_OPS(sdhci_pxav3_suspend, sdhci_pxav3_resume)
483 SET_RUNTIME_PM_OPS(sdhci_pxav3_runtime_suspend,
484 sdhci_pxav3_runtime_resume, NULL)
485};
486
487#define SDHCI_PXAV3_PMOPS (&sdhci_pxav3_pmops)
488
489#else
490#define SDHCI_PXAV3_PMOPS NULL
491#endif
492
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800493static struct platform_driver sdhci_pxav3_driver = {
494 .driver = {
495 .name = "sdhci-pxav3",
Chris Ballb6503522012-04-10 22:34:33 -0400496#ifdef CONFIG_OF
497 .of_match_table = sdhci_pxav3_of_match,
498#endif
Kevin Liubb691ae2013-02-01 17:48:30 +0800499 .pm = SDHCI_PXAV3_PMOPS,
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800500 },
501 .probe = sdhci_pxav3_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -0500502 .remove = sdhci_pxav3_remove,
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800503};
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800504
Axel Lind1f81a62011-11-26 12:55:43 +0800505module_platform_driver(sdhci_pxav3_driver);
Zhangfei Gaoa702c8a2011-06-08 17:41:57 +0800506
507MODULE_DESCRIPTION("SDHCI driver for pxav3");
508MODULE_AUTHOR("Marvell International Ltd.");
509MODULE_LICENSE("GPL v2");
510