blob: 1dc9debf6a7fe4c22155a4f4ae66e4655cab45e1 [file] [log] [blame]
Zhangfei Gao536ac992010-09-20 10:51:28 -04001/* linux/drivers/mmc/host/sdhci-pxa.c
2 *
3 * Copyright (C) 2010 Marvell International Ltd.
4 * Zhangfei Gao <zhangfei.gao@marvell.com>
5 * Kevin Wang <dwang4@marvell.com>
6 * Mingwei Wang <mwwang@marvell.com>
7 * Philip Rakity <prakity@marvell.com>
8 * Mark Brown <markb@marvell.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15/* Supports:
16 * SDHCI support for MMP2/PXA910/PXA168
17 *
18 * Refer to sdhci-s3c.c.
19 */
20
21#include <linux/delay.h>
22#include <linux/platform_device.h>
23#include <linux/mmc/host.h>
24#include <linux/clk.h>
25#include <linux/io.h>
26#include <linux/err.h>
27#include <plat/sdhci.h>
28#include "sdhci.h"
29
30#define DRIVER_NAME "sdhci-pxa"
31
32#define SD_FIFO_PARAM 0x104
33#define DIS_PAD_SD_CLK_GATE 0x400
34
35struct sdhci_pxa {
36 struct sdhci_host *host;
37 struct sdhci_pxa_platdata *pdata;
38 struct clk *clk;
39 struct resource *res;
40
41 u8 clk_enable;
42};
43
44/*****************************************************************************\
45 * *
46 * SDHCI core callbacks *
47 * *
48\*****************************************************************************/
49static void set_clock(struct sdhci_host *host, unsigned int clock)
50{
51 struct sdhci_pxa *pxa = sdhci_priv(host);
52 u32 tmp = 0;
53
54 if (clock == 0) {
55 if (pxa->clk_enable) {
56 clk_disable(pxa->clk);
57 pxa->clk_enable = 0;
58 }
59 } else {
60 if (0 == pxa->clk_enable) {
61 if (pxa->pdata->flags & PXA_FLAG_DISABLE_CLOCK_GATING) {
62 tmp = readl(host->ioaddr + SD_FIFO_PARAM);
63 tmp |= DIS_PAD_SD_CLK_GATE;
64 writel(tmp, host->ioaddr + SD_FIFO_PARAM);
65 }
66 clk_enable(pxa->clk);
67 pxa->clk_enable = 1;
68 }
69 }
70}
71
Philip Rakity756515c2011-05-13 11:17:16 +053072static int set_uhs_signaling(struct sdhci_host *host, unsigned int uhs)
73{
74 u16 ctrl_2;
75
76 /*
77 * Set V18_EN -- UHS modes do not work without this.
78 * does not change signaling voltage
79 */
80 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
81
82 /* Select Bus Speed Mode for host */
83 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
84 switch (uhs) {
85 case MMC_TIMING_UHS_SDR12:
86 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
87 break;
88 case MMC_TIMING_UHS_SDR25:
89 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
90 break;
91 case MMC_TIMING_UHS_SDR50:
92 ctrl_2 |= SDHCI_CTRL_UHS_SDR50 | SDHCI_CTRL_VDD_180;
93 break;
94 case MMC_TIMING_UHS_SDR104:
95 ctrl_2 |= SDHCI_CTRL_UHS_SDR104 | SDHCI_CTRL_VDD_180;
96 break;
97 case MMC_TIMING_UHS_DDR50:
98 ctrl_2 |= SDHCI_CTRL_UHS_DDR50 | SDHCI_CTRL_VDD_180;
99 break;
100 }
101
102 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
103 pr_debug("%s:%s uhs = %d, ctrl_2 = %04X\n",
104 __func__, mmc_hostname(host->mmc), uhs, ctrl_2);
105
106 return 0;
107}
108
Zhangfei Gao536ac992010-09-20 10:51:28 -0400109static struct sdhci_ops sdhci_pxa_ops = {
Philip Rakity756515c2011-05-13 11:17:16 +0530110 .set_uhs_signaling = set_uhs_signaling,
Zhangfei Gao536ac992010-09-20 10:51:28 -0400111 .set_clock = set_clock,
112};
113
114/*****************************************************************************\
115 * *
116 * Device probing/removal *
117 * *
118\*****************************************************************************/
119
120static int __devinit sdhci_pxa_probe(struct platform_device *pdev)
121{
122 struct sdhci_pxa_platdata *pdata = pdev->dev.platform_data;
123 struct device *dev = &pdev->dev;
124 struct sdhci_host *host = NULL;
125 struct resource *iomem = NULL;
126 struct sdhci_pxa *pxa = NULL;
127 int ret, irq;
128
129 irq = platform_get_irq(pdev, 0);
130 if (irq < 0) {
131 dev_err(dev, "no irq specified\n");
132 return irq;
133 }
134
135 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
136 if (!iomem) {
137 dev_err(dev, "no memory specified\n");
138 return -ENOENT;
139 }
140
141 host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pxa));
142 if (IS_ERR(host)) {
143 dev_err(dev, "failed to alloc host\n");
144 return PTR_ERR(host);
145 }
146
147 pxa = sdhci_priv(host);
148 pxa->host = host;
149 pxa->pdata = pdata;
150 pxa->clk_enable = 0;
151
152 pxa->clk = clk_get(dev, "PXA-SDHCLK");
153 if (IS_ERR(pxa->clk)) {
154 dev_err(dev, "failed to get io clock\n");
155 ret = PTR_ERR(pxa->clk);
156 goto out;
157 }
158
159 pxa->res = request_mem_region(iomem->start, resource_size(iomem),
160 mmc_hostname(host->mmc));
161 if (!pxa->res) {
162 dev_err(&pdev->dev, "cannot request region\n");
163 ret = -EBUSY;
164 goto out;
165 }
166
167 host->ioaddr = ioremap(iomem->start, resource_size(iomem));
168 if (!host->ioaddr) {
169 dev_err(&pdev->dev, "failed to remap registers\n");
170 ret = -ENOMEM;
171 goto out;
172 }
173
174 host->hw_name = "MMC";
175 host->ops = &sdhci_pxa_ops;
176 host->irq = irq;
177 host->quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL;
178
179 if (pdata->quirks)
180 host->quirks |= pdata->quirks;
181
Philip Rakity756515c2011-05-13 11:17:16 +0530182 /* enable 1/8V DDR capable */
183 host->mmc->caps |= MMC_CAP_1_8V_DDR;
184
Philip Rakity15ec4462010-11-19 16:48:39 -0500185 /* If slot design supports 8 bit data, indicate this to MMC. */
186 if (pdata->flags & PXA_FLAG_SD_8_BIT_CAPABLE_SLOT)
187 host->mmc->caps |= MMC_CAP_8_BIT_DATA;
188
Zhangfei Gao536ac992010-09-20 10:51:28 -0400189 ret = sdhci_add_host(host);
190 if (ret) {
191 dev_err(&pdev->dev, "failed to add host\n");
192 goto out;
193 }
194
195 if (pxa->pdata->max_speed)
196 host->mmc->f_max = pxa->pdata->max_speed;
197
198 platform_set_drvdata(pdev, host);
199
200 return 0;
201out:
202 if (host) {
203 clk_put(pxa->clk);
204 if (host->ioaddr)
205 iounmap(host->ioaddr);
206 if (pxa->res)
207 release_mem_region(pxa->res->start,
208 resource_size(pxa->res));
209 sdhci_free_host(host);
210 }
211
212 return ret;
213}
214
215static int __devexit sdhci_pxa_remove(struct platform_device *pdev)
216{
217 struct sdhci_host *host = platform_get_drvdata(pdev);
218 struct sdhci_pxa *pxa = sdhci_priv(host);
219 int dead = 0;
220 u32 scratch;
221
222 if (host) {
223 scratch = readl(host->ioaddr + SDHCI_INT_STATUS);
224 if (scratch == (u32)-1)
225 dead = 1;
226
227 sdhci_remove_host(host, dead);
228
229 if (host->ioaddr)
230 iounmap(host->ioaddr);
231 if (pxa->res)
232 release_mem_region(pxa->res->start,
233 resource_size(pxa->res));
234 if (pxa->clk_enable) {
235 clk_disable(pxa->clk);
236 pxa->clk_enable = 0;
237 }
238 clk_put(pxa->clk);
239
240 sdhci_free_host(host);
241 platform_set_drvdata(pdev, NULL);
242 }
243
244 return 0;
245}
246
247#ifdef CONFIG_PM
248static int sdhci_pxa_suspend(struct platform_device *dev, pm_message_t state)
249{
250 struct sdhci_host *host = platform_get_drvdata(dev);
251
252 return sdhci_suspend_host(host, state);
253}
254
255static int sdhci_pxa_resume(struct platform_device *dev)
256{
257 struct sdhci_host *host = platform_get_drvdata(dev);
258
259 return sdhci_resume_host(host);
260}
261#else
262#define sdhci_pxa_suspend NULL
263#define sdhci_pxa_resume NULL
264#endif
265
266static struct platform_driver sdhci_pxa_driver = {
267 .probe = sdhci_pxa_probe,
268 .remove = __devexit_p(sdhci_pxa_remove),
269 .suspend = sdhci_pxa_suspend,
270 .resume = sdhci_pxa_resume,
271 .driver = {
272 .name = DRIVER_NAME,
273 .owner = THIS_MODULE,
274 },
275};
276
277/*****************************************************************************\
278 * *
279 * Driver init/exit *
280 * *
281\*****************************************************************************/
282
283static int __init sdhci_pxa_init(void)
284{
285 return platform_driver_register(&sdhci_pxa_driver);
286}
287
288static void __exit sdhci_pxa_exit(void)
289{
290 platform_driver_unregister(&sdhci_pxa_driver);
291}
292
293module_init(sdhci_pxa_init);
294module_exit(sdhci_pxa_exit);
295
296MODULE_DESCRIPTION("SDH controller driver for PXA168/PXA910/MMP2");
297MODULE_AUTHOR("Zhangfei Gao <zhangfei.gao@marvell.com>");
298MODULE_LICENSE("GPL v2");