mmc: sdhci-acpi: Fix broken card detect for ACPI HID 80860F14
[linux-2.6-block.git] / drivers / mmc / host / sdhci-acpi.c
CommitLineData
c4e05037
AH
1/*
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>
b04fa064 38#include <linux/delay.h>
c4e05037
AH
39
40#include <linux/mmc/host.h>
41#include <linux/mmc/pm.h>
4fd4409c 42#include <linux/mmc/slot-gpio.h>
c4e05037
AH
43#include <linux/mmc/sdhci.h>
44
45#include "sdhci.h"
46
47enum {
4fd4409c
AH
48 SDHCI_ACPI_SD_CD = BIT(0),
49 SDHCI_ACPI_RUNTIME_PM = BIT(1),
50 SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL = BIT(2),
c4e05037
AH
51};
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
b04fa064
AH
89static 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
c4e05037
AH
104static const struct sdhci_ops sdhci_acpi_ops_dflt = {
105 .enable_dma = sdhci_acpi_enable_dma,
106};
107
b04fa064
AH
108static const struct sdhci_ops sdhci_acpi_ops_int = {
109 .enable_dma = sdhci_acpi_enable_dma,
110 .hw_reset = sdhci_acpi_int_hw_reset,
111};
112
113static const struct sdhci_acpi_chip sdhci_acpi_chip_int = {
114 .ops = &sdhci_acpi_ops_int,
115};
116
07a58883 117static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = {
b04fa064
AH
118 .chip = &sdhci_acpi_chip_int,
119 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE | MMC_CAP_HW_RESET,
07a58883
AH
120 .caps2 = MMC_CAP2_HC_ERASE_SZ,
121 .flags = SDHCI_ACPI_RUNTIME_PM,
122};
123
e5571397
AH
124static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = {
125 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
126 .caps = MMC_CAP_NONREMOVABLE | MMC_CAP_POWER_OFF_CARD,
127 .flags = SDHCI_ACPI_RUNTIME_PM,
128 .pm_caps = MMC_PM_KEEP_POWER,
129};
130
07a58883 131static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = {
4fd4409c
AH
132 .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL |
133 SDHCI_ACPI_RUNTIME_PM,
a61abe6e 134 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON,
07a58883
AH
135};
136
137struct sdhci_acpi_uid_slot {
138 const char *hid;
139 const char *uid;
140 const struct sdhci_acpi_slot *slot;
141};
142
143static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
144 { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
145 { "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
146 { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
147 { "INT33C6" , NULL, &sdhci_acpi_slot_int_sdio },
07c001c1 148 { "INT3436" , NULL, &sdhci_acpi_slot_int_sdio },
07a58883
AH
149 { "PNP0D40" },
150 { },
151};
152
c4e05037 153static const struct acpi_device_id sdhci_acpi_ids[] = {
07a58883
AH
154 { "80860F14" },
155 { "INT33BB" },
156 { "INT33C6" },
07c001c1 157 { "INT3436" },
07a58883 158 { "PNP0D40" },
c4e05037
AH
159 { },
160};
161MODULE_DEVICE_TABLE(acpi, sdhci_acpi_ids);
162
07a58883
AH
163static const struct sdhci_acpi_slot *sdhci_acpi_get_slot_by_ids(const char *hid,
164 const char *uid)
c4e05037 165{
07a58883
AH
166 const struct sdhci_acpi_uid_slot *u;
167
168 for (u = sdhci_acpi_uids; u->hid; u++) {
169 if (strcmp(u->hid, hid))
170 continue;
171 if (!u->uid)
172 return u->slot;
173 if (uid && !strcmp(u->uid, uid))
174 return u->slot;
175 }
c4e05037
AH
176 return NULL;
177}
178
07a58883
AH
179static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(acpi_handle handle,
180 const char *hid)
181{
182 const struct sdhci_acpi_slot *slot;
183 struct acpi_device_info *info;
184 const char *uid = NULL;
185 acpi_status status;
186
187 status = acpi_get_object_info(handle, &info);
188 if (!ACPI_FAILURE(status) && (info->valid & ACPI_VALID_UID))
189 uid = info->unique_id.string;
190
191 slot = sdhci_acpi_get_slot_by_ids(hid, uid);
192
193 kfree(info);
194 return slot;
195}
196
4e608e4e 197static int sdhci_acpi_probe(struct platform_device *pdev)
c4e05037
AH
198{
199 struct device *dev = &pdev->dev;
200 acpi_handle handle = ACPI_HANDLE(dev);
201 struct acpi_device *device;
202 struct sdhci_acpi_host *c;
203 struct sdhci_host *host;
204 struct resource *iomem;
205 resource_size_t len;
206 const char *hid;
87875655 207 int err;
c4e05037
AH
208
209 if (acpi_bus_get_device(handle, &device))
210 return -ENODEV;
211
212 if (acpi_bus_get_status(device) || !device->status.present)
213 return -ENODEV;
214
215 hid = acpi_device_hid(device);
216
217 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
218 if (!iomem)
219 return -ENOMEM;
220
221 len = resource_size(iomem);
222 if (len < 0x100)
223 dev_err(dev, "Invalid iomem size!\n");
224
225 if (!devm_request_mem_region(dev, iomem->start, len, dev_name(dev)))
226 return -ENOMEM;
227
228 host = sdhci_alloc_host(dev, sizeof(struct sdhci_acpi_host));
229 if (IS_ERR(host))
230 return PTR_ERR(host);
231
232 c = sdhci_priv(host);
233 c->host = host;
07a58883 234 c->slot = sdhci_acpi_get_slot(handle, hid);
c4e05037
AH
235 c->pdev = pdev;
236 c->use_runtime_pm = sdhci_acpi_flag(c, SDHCI_ACPI_RUNTIME_PM);
237
238 platform_set_drvdata(pdev, c);
239
240 host->hw_name = "ACPI";
241 host->ops = &sdhci_acpi_ops_dflt;
242 host->irq = platform_get_irq(pdev, 0);
243
244 host->ioaddr = devm_ioremap_nocache(dev, iomem->start,
245 resource_size(iomem));
246 if (host->ioaddr == NULL) {
247 err = -ENOMEM;
248 goto err_free;
249 }
250
251 if (!dev->dma_mask) {
252 u64 dma_mask;
253
254 if (sdhci_readl(host, SDHCI_CAPABILITIES) & SDHCI_CAN_64BIT) {
255 /* 64-bit DMA is not supported at present */
256 dma_mask = DMA_BIT_MASK(32);
257 } else {
258 dma_mask = DMA_BIT_MASK(32);
259 }
260
07f4450c
RK
261 err = dma_coerce_mask_and_coherent(dev, dma_mask);
262 if (err)
263 goto err_free;
c4e05037
AH
264 }
265
266 if (c->slot) {
267 if (c->slot->chip) {
268 host->ops = c->slot->chip->ops;
269 host->quirks |= c->slot->chip->quirks;
270 host->quirks2 |= c->slot->chip->quirks2;
271 host->mmc->caps |= c->slot->chip->caps;
272 host->mmc->caps2 |= c->slot->chip->caps2;
273 host->mmc->pm_caps |= c->slot->chip->pm_caps;
274 }
275 host->quirks |= c->slot->quirks;
276 host->quirks2 |= c->slot->quirks2;
277 host->mmc->caps |= c->slot->caps;
278 host->mmc->caps2 |= c->slot->caps2;
279 host->mmc->pm_caps |= c->slot->pm_caps;
280 }
281
0d3e3350
AH
282 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
283
a61abe6e 284 if (sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD)) {
4fd4409c
AH
285 bool v = sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL);
286
287 if (mmc_gpiod_request_cd(host->mmc, NULL, 0, v, 0)) {
288 dev_warn(dev, "failed to setup card detect gpio\n");
a61abe6e 289 c->use_runtime_pm = false;
4fd4409c 290 }
a61abe6e
AH
291 }
292
4fd4409c
AH
293 err = sdhci_add_host(host);
294 if (err)
295 goto err_free;
296
c4e05037 297 if (c->use_runtime_pm) {
1d1ff458 298 pm_runtime_set_active(dev);
c4e05037
AH
299 pm_suspend_ignore_children(dev, 1);
300 pm_runtime_set_autosuspend_delay(dev, 50);
301 pm_runtime_use_autosuspend(dev);
302 pm_runtime_enable(dev);
303 }
304
305 return 0;
306
307err_free:
c4e05037
AH
308 sdhci_free_host(c->host);
309 return err;
310}
311
4e608e4e 312static int sdhci_acpi_remove(struct platform_device *pdev)
c4e05037
AH
313{
314 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
315 struct device *dev = &pdev->dev;
316 int dead;
317
318 if (c->use_runtime_pm) {
319 pm_runtime_get_sync(dev);
320 pm_runtime_disable(dev);
321 pm_runtime_put_noidle(dev);
322 }
323
324 dead = (sdhci_readl(c->host, SDHCI_INT_STATUS) == ~0);
325 sdhci_remove_host(c->host, dead);
c4e05037
AH
326 sdhci_free_host(c->host);
327
328 return 0;
329}
330
331#ifdef CONFIG_PM_SLEEP
332
333static int sdhci_acpi_suspend(struct device *dev)
334{
335 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
336
337 return sdhci_suspend_host(c->host);
338}
339
340static int sdhci_acpi_resume(struct device *dev)
341{
342 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
343
344 return sdhci_resume_host(c->host);
345}
346
347#else
348
349#define sdhci_acpi_suspend NULL
350#define sdhci_acpi_resume NULL
351
352#endif
353
354#ifdef CONFIG_PM_RUNTIME
355
356static int sdhci_acpi_runtime_suspend(struct device *dev)
357{
358 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
359
360 return sdhci_runtime_suspend_host(c->host);
361}
362
363static int sdhci_acpi_runtime_resume(struct device *dev)
364{
365 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
366
367 return sdhci_runtime_resume_host(c->host);
368}
369
370static int sdhci_acpi_runtime_idle(struct device *dev)
371{
372 return 0;
373}
374
375#else
376
377#define sdhci_acpi_runtime_suspend NULL
378#define sdhci_acpi_runtime_resume NULL
379#define sdhci_acpi_runtime_idle NULL
380
381#endif
382
383static const struct dev_pm_ops sdhci_acpi_pm_ops = {
384 .suspend = sdhci_acpi_suspend,
385 .resume = sdhci_acpi_resume,
386 .runtime_suspend = sdhci_acpi_runtime_suspend,
387 .runtime_resume = sdhci_acpi_runtime_resume,
388 .runtime_idle = sdhci_acpi_runtime_idle,
389};
390
391static struct platform_driver sdhci_acpi_driver = {
392 .driver = {
393 .name = "sdhci-acpi",
394 .owner = THIS_MODULE,
395 .acpi_match_table = sdhci_acpi_ids,
396 .pm = &sdhci_acpi_pm_ops,
397 },
398 .probe = sdhci_acpi_probe,
4e608e4e 399 .remove = sdhci_acpi_remove,
c4e05037
AH
400};
401
402module_platform_driver(sdhci_acpi_driver);
403
404MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
405MODULE_AUTHOR("Adrian Hunter");
406MODULE_LICENSE("GPL v2");