blob: 0e4ba0a4cd71b276281ebac68c4dec813c45c497 [file] [log] [blame]
Adrian Hunterc4e05032012-11-23 21:17:34 +01001/*
2 * Secure Digital Host Controller Interface ACPI driver.
3 *
4 * Copyright (c) 2012, Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#include <linux/init.h>
22#include <linux/export.h>
23#include <linux/module.h>
24#include <linux/device.h>
25#include <linux/platform_device.h>
26#include <linux/ioport.h>
27#include <linux/io.h>
28#include <linux/dma-mapping.h>
29#include <linux/compiler.h>
30#include <linux/stddef.h>
31#include <linux/bitops.h>
32#include <linux/types.h>
33#include <linux/err.h>
34#include <linux/interrupt.h>
35#include <linux/acpi.h>
36#include <linux/pm.h>
37#include <linux/pm_runtime.h>
Adrian Hunterb04fa062013-06-13 11:50:27 +030038#include <linux/delay.h>
Adrian Hunterc4e05032012-11-23 21:17:34 +010039
40#include <linux/mmc/host.h>
41#include <linux/mmc/pm.h>
Adrian Hunter4fd44092014-03-10 15:02:42 +020042#include <linux/mmc/slot-gpio.h>
Adrian Hunterc4e05032012-11-23 21:17:34 +010043#include <linux/mmc/sdhci.h>
44
45#include "sdhci.h"
46
47enum {
Adrian Hunter4fd44092014-03-10 15:02:42 +020048 SDHCI_ACPI_SD_CD = BIT(0),
49 SDHCI_ACPI_RUNTIME_PM = BIT(1),
50 SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL = BIT(2),
Adrian Hunterc4e05032012-11-23 21:17:34 +010051};
52
53struct sdhci_acpi_chip {
54 const struct sdhci_ops *ops;
55 unsigned int quirks;
56 unsigned int quirks2;
57 unsigned long caps;
58 unsigned int caps2;
59 mmc_pm_flag_t pm_caps;
60};
61
62struct sdhci_acpi_slot {
63 const struct sdhci_acpi_chip *chip;
64 unsigned int quirks;
65 unsigned int quirks2;
66 unsigned long caps;
67 unsigned int caps2;
68 mmc_pm_flag_t pm_caps;
69 unsigned int flags;
70};
71
72struct sdhci_acpi_host {
73 struct sdhci_host *host;
74 const struct sdhci_acpi_slot *slot;
75 struct platform_device *pdev;
76 bool use_runtime_pm;
77};
78
79static inline bool sdhci_acpi_flag(struct sdhci_acpi_host *c, unsigned int flag)
80{
81 return c->slot && (c->slot->flags & flag);
82}
83
84static int sdhci_acpi_enable_dma(struct sdhci_host *host)
85{
86 return 0;
87}
88
Adrian Hunterb04fa062013-06-13 11:50:27 +030089static void sdhci_acpi_int_hw_reset(struct sdhci_host *host)
90{
91 u8 reg;
92
93 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
94 reg |= 0x10;
95 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
96 /* For eMMC, minimum is 1us but give it 9us for good measure */
97 udelay(9);
98 reg &= ~0x10;
99 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
100 /* For eMMC, minimum is 200us but give it 300us for good measure */
101 usleep_range(300, 1000);
102}
103
Adrian Hunterc4e05032012-11-23 21:17:34 +0100104static const struct sdhci_ops sdhci_acpi_ops_dflt = {
105 .enable_dma = sdhci_acpi_enable_dma,
Russell King2317f562014-04-25 12:57:07 +0100106 .set_bus_width = sdhci_set_bus_width,
Adrian Hunterc4e05032012-11-23 21:17:34 +0100107};
108
Adrian Hunterb04fa062013-06-13 11:50:27 +0300109static const struct sdhci_ops sdhci_acpi_ops_int = {
110 .enable_dma = sdhci_acpi_enable_dma,
Russell King2317f562014-04-25 12:57:07 +0100111 .set_bus_width = sdhci_set_bus_width,
Adrian Hunterb04fa062013-06-13 11:50:27 +0300112 .hw_reset = sdhci_acpi_int_hw_reset,
113};
114
115static const struct sdhci_acpi_chip sdhci_acpi_chip_int = {
116 .ops = &sdhci_acpi_ops_int,
117};
118
Adrian Hunter07a58882013-04-26 11:27:22 +0300119static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = {
Adrian Hunterb04fa062013-06-13 11:50:27 +0300120 .chip = &sdhci_acpi_chip_int,
121 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE | MMC_CAP_HW_RESET,
Adrian Hunter07a58882013-04-26 11:27:22 +0300122 .caps2 = MMC_CAP2_HC_ERASE_SZ,
123 .flags = SDHCI_ACPI_RUNTIME_PM,
124};
125
Adrian Huntere5571392012-12-10 21:18:48 +0100126static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = {
Adrian Hunterc6748012014-04-03 14:58:39 +0300127 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
Adrian Huntere5571392012-12-10 21:18:48 +0100128 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
129 .caps = MMC_CAP_NONREMOVABLE | MMC_CAP_POWER_OFF_CARD,
130 .flags = SDHCI_ACPI_RUNTIME_PM,
131 .pm_caps = MMC_PM_KEEP_POWER,
132};
133
Adrian Hunter07a58882013-04-26 11:27:22 +0300134static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = {
Adrian Hunter4fd44092014-03-10 15:02:42 +0200135 .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL |
136 SDHCI_ACPI_RUNTIME_PM,
Adrian Huntera61abe62013-05-06 12:17:33 +0300137 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON,
Adrian Hunter07a58882013-04-26 11:27:22 +0300138};
139
140struct sdhci_acpi_uid_slot {
141 const char *hid;
142 const char *uid;
143 const struct sdhci_acpi_slot *slot;
144};
145
146static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
147 { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
148 { "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
Adrian Hunteraad95dc2014-03-10 15:02:43 +0200149 { "80860F16" , NULL, &sdhci_acpi_slot_int_sd },
Adrian Hunter07a58882013-04-26 11:27:22 +0300150 { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
151 { "INT33C6" , NULL, &sdhci_acpi_slot_int_sdio },
Mika Westerberg07c001c2013-11-12 12:01:33 +0200152 { "INT3436" , NULL, &sdhci_acpi_slot_int_sdio },
Adrian Hunter07a58882013-04-26 11:27:22 +0300153 { "PNP0D40" },
154 { },
155};
156
Adrian Hunterc4e05032012-11-23 21:17:34 +0100157static const struct acpi_device_id sdhci_acpi_ids[] = {
Adrian Hunter07a58882013-04-26 11:27:22 +0300158 { "80860F14" },
Adrian Hunteraad95dc2014-03-10 15:02:43 +0200159 { "80860F16" },
Adrian Hunter07a58882013-04-26 11:27:22 +0300160 { "INT33BB" },
161 { "INT33C6" },
Mika Westerberg07c001c2013-11-12 12:01:33 +0200162 { "INT3436" },
Adrian Hunter07a58882013-04-26 11:27:22 +0300163 { "PNP0D40" },
Adrian Hunterc4e05032012-11-23 21:17:34 +0100164 { },
165};
166MODULE_DEVICE_TABLE(acpi, sdhci_acpi_ids);
167
Adrian Hunter07a58882013-04-26 11:27:22 +0300168static const struct sdhci_acpi_slot *sdhci_acpi_get_slot_by_ids(const char *hid,
169 const char *uid)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100170{
Adrian Hunter07a58882013-04-26 11:27:22 +0300171 const struct sdhci_acpi_uid_slot *u;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100172
Adrian Hunter07a58882013-04-26 11:27:22 +0300173 for (u = sdhci_acpi_uids; u->hid; u++) {
174 if (strcmp(u->hid, hid))
175 continue;
176 if (!u->uid)
177 return u->slot;
178 if (uid && !strcmp(u->uid, uid))
179 return u->slot;
180 }
Adrian Hunterc4e05032012-11-23 21:17:34 +0100181 return NULL;
182}
183
Adrian Hunter07a58882013-04-26 11:27:22 +0300184static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(acpi_handle handle,
185 const char *hid)
186{
187 const struct sdhci_acpi_slot *slot;
188 struct acpi_device_info *info;
189 const char *uid = NULL;
190 acpi_status status;
191
192 status = acpi_get_object_info(handle, &info);
193 if (!ACPI_FAILURE(status) && (info->valid & ACPI_VALID_UID))
194 uid = info->unique_id.string;
195
196 slot = sdhci_acpi_get_slot_by_ids(hid, uid);
197
198 kfree(info);
199 return slot;
200}
201
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800202static int sdhci_acpi_probe(struct platform_device *pdev)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100203{
204 struct device *dev = &pdev->dev;
205 acpi_handle handle = ACPI_HANDLE(dev);
206 struct acpi_device *device;
207 struct sdhci_acpi_host *c;
208 struct sdhci_host *host;
209 struct resource *iomem;
210 resource_size_t len;
211 const char *hid;
Mika Westerberg87875652014-01-08 12:40:55 +0200212 int err;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100213
214 if (acpi_bus_get_device(handle, &device))
215 return -ENODEV;
216
217 if (acpi_bus_get_status(device) || !device->status.present)
218 return -ENODEV;
219
220 hid = acpi_device_hid(device);
221
222 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
223 if (!iomem)
224 return -ENOMEM;
225
226 len = resource_size(iomem);
227 if (len < 0x100)
228 dev_err(dev, "Invalid iomem size!\n");
229
230 if (!devm_request_mem_region(dev, iomem->start, len, dev_name(dev)))
231 return -ENOMEM;
232
233 host = sdhci_alloc_host(dev, sizeof(struct sdhci_acpi_host));
234 if (IS_ERR(host))
235 return PTR_ERR(host);
236
237 c = sdhci_priv(host);
238 c->host = host;
Adrian Hunter07a58882013-04-26 11:27:22 +0300239 c->slot = sdhci_acpi_get_slot(handle, hid);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100240 c->pdev = pdev;
241 c->use_runtime_pm = sdhci_acpi_flag(c, SDHCI_ACPI_RUNTIME_PM);
242
243 platform_set_drvdata(pdev, c);
244
245 host->hw_name = "ACPI";
246 host->ops = &sdhci_acpi_ops_dflt;
247 host->irq = platform_get_irq(pdev, 0);
248
249 host->ioaddr = devm_ioremap_nocache(dev, iomem->start,
250 resource_size(iomem));
251 if (host->ioaddr == NULL) {
252 err = -ENOMEM;
253 goto err_free;
254 }
255
256 if (!dev->dma_mask) {
257 u64 dma_mask;
258
259 if (sdhci_readl(host, SDHCI_CAPABILITIES) & SDHCI_CAN_64BIT) {
260 /* 64-bit DMA is not supported at present */
261 dma_mask = DMA_BIT_MASK(32);
262 } else {
263 dma_mask = DMA_BIT_MASK(32);
264 }
265
Russell King07f44502013-06-27 14:06:28 +0100266 err = dma_coerce_mask_and_coherent(dev, dma_mask);
267 if (err)
268 goto err_free;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100269 }
270
271 if (c->slot) {
272 if (c->slot->chip) {
273 host->ops = c->slot->chip->ops;
274 host->quirks |= c->slot->chip->quirks;
275 host->quirks2 |= c->slot->chip->quirks2;
276 host->mmc->caps |= c->slot->chip->caps;
277 host->mmc->caps2 |= c->slot->chip->caps2;
278 host->mmc->pm_caps |= c->slot->chip->pm_caps;
279 }
280 host->quirks |= c->slot->quirks;
281 host->quirks2 |= c->slot->quirks2;
282 host->mmc->caps |= c->slot->caps;
283 host->mmc->caps2 |= c->slot->caps2;
284 host->mmc->pm_caps |= c->slot->pm_caps;
285 }
286
Adrian Hunter0d3e3352013-04-04 16:41:06 +0300287 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
288
Adrian Hunter4fd44092014-03-10 15:02:42 +0200289 if (sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD)) {
290 bool v = sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL);
291
292 if (mmc_gpiod_request_cd(host->mmc, NULL, 0, v, 0)) {
293 dev_warn(dev, "failed to setup card detect gpio\n");
294 c->use_runtime_pm = false;
295 }
296 }
297
Adrian Hunterc4e05032012-11-23 21:17:34 +0100298 err = sdhci_add_host(host);
299 if (err)
300 goto err_free;
301
302 if (c->use_runtime_pm) {
Adrian Hunter1d1ff452013-04-26 11:27:21 +0300303 pm_runtime_set_active(dev);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100304 pm_suspend_ignore_children(dev, 1);
305 pm_runtime_set_autosuspend_delay(dev, 50);
306 pm_runtime_use_autosuspend(dev);
307 pm_runtime_enable(dev);
308 }
309
310 return 0;
311
312err_free:
Adrian Hunterc4e05032012-11-23 21:17:34 +0100313 sdhci_free_host(c->host);
314 return err;
315}
316
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800317static int sdhci_acpi_remove(struct platform_device *pdev)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100318{
319 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
320 struct device *dev = &pdev->dev;
321 int dead;
322
323 if (c->use_runtime_pm) {
324 pm_runtime_get_sync(dev);
325 pm_runtime_disable(dev);
326 pm_runtime_put_noidle(dev);
327 }
328
329 dead = (sdhci_readl(c->host, SDHCI_INT_STATUS) == ~0);
330 sdhci_remove_host(c->host, dead);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100331 sdhci_free_host(c->host);
332
333 return 0;
334}
335
336#ifdef CONFIG_PM_SLEEP
337
338static int sdhci_acpi_suspend(struct device *dev)
339{
340 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
341
342 return sdhci_suspend_host(c->host);
343}
344
345static int sdhci_acpi_resume(struct device *dev)
346{
347 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
348
349 return sdhci_resume_host(c->host);
350}
351
352#else
353
354#define sdhci_acpi_suspend NULL
355#define sdhci_acpi_resume NULL
356
357#endif
358
359#ifdef CONFIG_PM_RUNTIME
360
361static int sdhci_acpi_runtime_suspend(struct device *dev)
362{
363 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
364
365 return sdhci_runtime_suspend_host(c->host);
366}
367
368static int sdhci_acpi_runtime_resume(struct device *dev)
369{
370 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
371
372 return sdhci_runtime_resume_host(c->host);
373}
374
375static int sdhci_acpi_runtime_idle(struct device *dev)
376{
377 return 0;
378}
379
380#else
381
382#define sdhci_acpi_runtime_suspend NULL
383#define sdhci_acpi_runtime_resume NULL
384#define sdhci_acpi_runtime_idle NULL
385
386#endif
387
388static const struct dev_pm_ops sdhci_acpi_pm_ops = {
389 .suspend = sdhci_acpi_suspend,
390 .resume = sdhci_acpi_resume,
391 .runtime_suspend = sdhci_acpi_runtime_suspend,
392 .runtime_resume = sdhci_acpi_runtime_resume,
393 .runtime_idle = sdhci_acpi_runtime_idle,
394};
395
396static struct platform_driver sdhci_acpi_driver = {
397 .driver = {
398 .name = "sdhci-acpi",
399 .owner = THIS_MODULE,
400 .acpi_match_table = sdhci_acpi_ids,
401 .pm = &sdhci_acpi_pm_ops,
402 },
403 .probe = sdhci_acpi_probe,
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800404 .remove = sdhci_acpi_remove,
Adrian Hunterc4e05032012-11-23 21:17:34 +0100405};
406
407module_platform_driver(sdhci_acpi_driver);
408
409MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
410MODULE_AUTHOR("Adrian Hunter");
411MODULE_LICENSE("GPL v2");