blob: 3e4f04fd51755c6473d3fff0e9adefdca013c32b [file] [log] [blame]
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001/* linux/drivers/mmc/host/sdhci-pci.c - SDHCI on PCI bus interface
2 *
3 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or (at
8 * your option) any later version.
9 *
10 * Thanks to the following companies for their support:
11 *
12 * - JMicron (hardware and technical support)
13 */
14
Adrian Huntera72016a2017-04-19 15:48:55 +030015#include <linux/string.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010016#include <linux/delay.h>
17#include <linux/highmem.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040018#include <linux/module.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010019#include <linux/pci.h>
20#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Maxim Levitskyccc92c22010-08-10 18:01:42 -070022#include <linux/device.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010023#include <linux/mmc/host.h>
Adrian Huntere1bfad62015-02-06 14:13:00 +020024#include <linux/mmc/mmc.h>
Ameya Palandeb177bc92011-04-05 21:13:13 +030025#include <linux/scatterlist.h>
26#include <linux/io.h>
Adrian Hunter0f201652011-08-29 16:42:13 +030027#include <linux/gpio.h>
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030028#include <linux/pm_runtime.h>
Adrian Hunterff59c522014-09-24 10:27:31 +030029#include <linux/mmc/slot-gpio.h>
Adrian Hunter52c506f2011-12-27 15:48:43 +020030#include <linux/mmc/sdhci-pci-data.h>
Zach Brown3f23df72016-11-28 13:16:39 -060031#include <linux/acpi.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010032
33#include "sdhci.h"
Adam Lee522624f2013-12-18 22:23:38 +080034#include "sdhci-pci.h"
Pierre Ossman22606402008-03-23 19:33:23 +010035
Adrian Hunterfee686b2016-10-05 12:11:24 +030036static int sdhci_pci_enable_dma(struct sdhci_host *host);
Adrian Hunterfee686b2016-10-05 12:11:24 +030037static void sdhci_pci_hw_reset(struct sdhci_host *host);
Adrian Hunterfee686b2016-10-05 12:11:24 +030038
Adrian Hunter30cf2802017-03-20 19:50:51 +020039#ifdef CONFIG_PM_SLEEP
40static int __sdhci_pci_suspend_host(struct sdhci_pci_chip *chip)
41{
42 int i, ret;
43
44 for (i = 0; i < chip->num_slots; i++) {
45 struct sdhci_pci_slot *slot = chip->slots[i];
46 struct sdhci_host *host;
47
48 if (!slot)
49 continue;
50
51 host = slot->host;
52
53 if (chip->pm_retune && host->tuning_mode != SDHCI_TUNING_MODE_3)
54 mmc_retune_needed(host->mmc);
55
56 ret = sdhci_suspend_host(host);
57 if (ret)
58 goto err_pci_suspend;
59
60 if (host->mmc->pm_flags & MMC_PM_WAKE_SDIO_IRQ)
61 sdhci_enable_irq_wakeups(host);
62 }
63
64 return 0;
65
66err_pci_suspend:
67 while (--i >= 0)
68 sdhci_resume_host(chip->slots[i]->host);
69 return ret;
70}
71
72static int sdhci_pci_init_wakeup(struct sdhci_pci_chip *chip)
73{
74 mmc_pm_flag_t pm_flags = 0;
75 int i;
76
77 for (i = 0; i < chip->num_slots; i++) {
78 struct sdhci_pci_slot *slot = chip->slots[i];
79
80 if (slot)
81 pm_flags |= slot->host->mmc->pm_flags;
82 }
83
84 return device_init_wakeup(&chip->pdev->dev,
85 (pm_flags & MMC_PM_KEEP_POWER) &&
86 (pm_flags & MMC_PM_WAKE_SDIO_IRQ));
87}
88
89static int sdhci_pci_suspend_host(struct sdhci_pci_chip *chip)
90{
91 int ret;
92
93 ret = __sdhci_pci_suspend_host(chip);
94 if (ret)
95 return ret;
96
97 sdhci_pci_init_wakeup(chip);
98
99 return 0;
100}
101
102int sdhci_pci_resume_host(struct sdhci_pci_chip *chip)
103{
104 struct sdhci_pci_slot *slot;
105 int i, ret;
106
107 for (i = 0; i < chip->num_slots; i++) {
108 slot = chip->slots[i];
109 if (!slot)
110 continue;
111
112 ret = sdhci_resume_host(slot->host);
113 if (ret)
114 return ret;
115 }
116
117 return 0;
118}
119#endif
120
Adrian Hunter966d6962017-03-20 19:50:52 +0200121#ifdef CONFIG_PM
122static int sdhci_pci_runtime_suspend_host(struct sdhci_pci_chip *chip)
123{
124 struct sdhci_pci_slot *slot;
125 struct sdhci_host *host;
126 int i, ret;
127
128 for (i = 0; i < chip->num_slots; i++) {
129 slot = chip->slots[i];
130 if (!slot)
131 continue;
132
133 host = slot->host;
134
135 ret = sdhci_runtime_suspend_host(host);
136 if (ret)
137 goto err_pci_runtime_suspend;
138
139 if (chip->rpm_retune &&
140 host->tuning_mode != SDHCI_TUNING_MODE_3)
141 mmc_retune_needed(host->mmc);
142 }
143
144 return 0;
145
146err_pci_runtime_suspend:
147 while (--i >= 0)
148 sdhci_runtime_resume_host(chip->slots[i]->host);
149 return ret;
150}
151
152static int sdhci_pci_runtime_resume_host(struct sdhci_pci_chip *chip)
153{
154 struct sdhci_pci_slot *slot;
155 int i, ret;
156
157 for (i = 0; i < chip->num_slots; i++) {
158 slot = chip->slots[i];
159 if (!slot)
160 continue;
161
162 ret = sdhci_runtime_resume_host(slot->host);
163 if (ret)
164 return ret;
165 }
166
167 return 0;
168}
169#endif
170
Pierre Ossman22606402008-03-23 19:33:23 +0100171/*****************************************************************************\
172 * *
173 * Hardware specific quirk handling *
174 * *
175\*****************************************************************************/
176
177static int ricoh_probe(struct sdhci_pci_chip *chip)
178{
Chris Ballc99436f2009-09-22 16:45:22 -0700179 if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG ||
180 chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY)
Pierre Ossman22606402008-03-23 19:33:23 +0100181 chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700182 return 0;
183}
Pierre Ossman22606402008-03-23 19:33:23 +0100184
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700185static int ricoh_mmc_probe_slot(struct sdhci_pci_slot *slot)
186{
187 slot->host->caps =
188 ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT)
189 & SDHCI_TIMEOUT_CLK_MASK) |
190
191 ((0x21 << SDHCI_CLOCK_BASE_SHIFT)
192 & SDHCI_CLOCK_BASE_MASK) |
193
194 SDHCI_TIMEOUT_CLK_UNIT |
195 SDHCI_CAN_VDD_330 |
Madhvapathi Sriram1a1f1f02012-10-15 04:47:30 +0000196 SDHCI_CAN_DO_HISPD |
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700197 SDHCI_CAN_DO_SDMA;
198 return 0;
199}
200
Adrian Hunterb7813f02017-03-20 19:50:50 +0200201#ifdef CONFIG_PM_SLEEP
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700202static int ricoh_mmc_resume(struct sdhci_pci_chip *chip)
203{
204 /* Apply a delay to allow controller to settle */
205 /* Otherwise it becomes confused if card state changed
206 during suspend */
207 msleep(500);
Adrian Hunter30cf2802017-03-20 19:50:51 +0200208 return sdhci_pci_resume_host(chip);
Pierre Ossman22606402008-03-23 19:33:23 +0100209}
Adrian Hunterb7813f02017-03-20 19:50:50 +0200210#endif
Pierre Ossman22606402008-03-23 19:33:23 +0100211
212static const struct sdhci_pci_fixes sdhci_ricoh = {
213 .probe = ricoh_probe,
Vasily Khoruzhick84938292010-03-05 13:43:46 -0800214 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
215 SDHCI_QUIRK_FORCE_DMA |
216 SDHCI_QUIRK_CLOCK_BEFORE_RESET,
Pierre Ossman22606402008-03-23 19:33:23 +0100217};
218
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700219static const struct sdhci_pci_fixes sdhci_ricoh_mmc = {
220 .probe_slot = ricoh_mmc_probe_slot,
Adrian Hunterb7813f02017-03-20 19:50:50 +0200221#ifdef CONFIG_PM_SLEEP
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700222 .resume = ricoh_mmc_resume,
Adrian Hunterb7813f02017-03-20 19:50:50 +0200223#endif
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700224 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
225 SDHCI_QUIRK_CLOCK_BEFORE_RESET |
226 SDHCI_QUIRK_NO_CARD_NO_RESET |
227 SDHCI_QUIRK_MISSING_CAPS
228};
229
Pierre Ossman22606402008-03-23 19:33:23 +0100230static const struct sdhci_pci_fixes sdhci_ene_712 = {
231 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
232 SDHCI_QUIRK_BROKEN_DMA,
233};
234
235static const struct sdhci_pci_fixes sdhci_ene_714 = {
236 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
237 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS |
238 SDHCI_QUIRK_BROKEN_DMA,
239};
240
241static const struct sdhci_pci_fixes sdhci_cafe = {
242 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
Andres Salomona0874892009-03-02 21:48:20 +0100243 SDHCI_QUIRK_NO_BUSY_IRQ |
Daniel Drake55fc05b2012-07-03 23:13:39 +0100244 SDHCI_QUIRK_BROKEN_CARD_DETECTION |
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200245 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
Pierre Ossman22606402008-03-23 19:33:23 +0100246};
247
Derek Browne43e968c2014-06-24 06:56:36 -0700248static const struct sdhci_pci_fixes sdhci_intel_qrk = {
249 .quirks = SDHCI_QUIRK_NO_HISPD_BIT,
250};
251
Major Lee68077b02011-06-29 14:23:46 +0300252static int mrst_hc_probe_slot(struct sdhci_pci_slot *slot)
253{
254 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
255 return 0;
256}
257
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100258/*
259 * ADMA operation is disabled for Moorestown platform due to
260 * hardware bugs.
261 */
Jacob Pan35ac6f02010-11-09 13:57:29 +0000262static int mrst_hc_probe(struct sdhci_pci_chip *chip)
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100263{
264 /*
Jacob Pan35ac6f02010-11-09 13:57:29 +0000265 * slots number is fixed here for MRST as SDIO3/5 are never used and
266 * have hardware bugs.
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100267 */
268 chip->num_slots = 1;
269 return 0;
270}
271
Alexander Stein296e0b02012-03-14 08:38:58 +0100272static int pch_hc_probe_slot(struct sdhci_pci_slot *slot)
273{
274 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
275 return 0;
276}
277
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +0100278#ifdef CONFIG_PM
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300279
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200280static irqreturn_t sdhci_pci_sd_cd(int irq, void *dev_id)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300281{
282 struct sdhci_pci_slot *slot = dev_id;
283 struct sdhci_host *host = slot->host;
284
285 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
286 return IRQ_HANDLED;
287}
288
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200289static void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300290{
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200291 int err, irq, gpio = slot->cd_gpio;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300292
293 slot->cd_gpio = -EINVAL;
294 slot->cd_irq = -EINVAL;
295
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200296 if (!gpio_is_valid(gpio))
297 return;
298
Andy Shevchenkoc10bc372016-08-18 14:59:13 +0300299 err = devm_gpio_request(&slot->chip->pdev->dev, gpio, "sd_cd");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300300 if (err < 0)
301 goto out;
302
303 err = gpio_direction_input(gpio);
304 if (err < 0)
305 goto out_free;
306
307 irq = gpio_to_irq(gpio);
308 if (irq < 0)
309 goto out_free;
310
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200311 err = request_irq(irq, sdhci_pci_sd_cd, IRQF_TRIGGER_RISING |
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300312 IRQF_TRIGGER_FALLING, "sd_cd", slot);
313 if (err)
314 goto out_free;
315
316 slot->cd_gpio = gpio;
317 slot->cd_irq = irq;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300318
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200319 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300320
321out_free:
Andy Shevchenkoc10bc372016-08-18 14:59:13 +0300322 devm_gpio_free(&slot->chip->pdev->dev, gpio);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300323out:
324 dev_warn(&slot->chip->pdev->dev, "failed to setup card detect wake up\n");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300325}
326
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200327static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300328{
329 if (slot->cd_irq >= 0)
330 free_irq(slot->cd_irq, slot);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300331}
332
333#else
334
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200335static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
336{
337}
338
339static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
340{
341}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300342
343#endif
344
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300345static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot)
346{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300347 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
Ulf Hanssond2a47172017-06-08 15:23:08 +0200348 slot->host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC;
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300349 return 0;
350}
351
Adrian Hunter93933502011-12-27 15:48:47 +0200352static int mfd_sdio_probe_slot(struct sdhci_pci_slot *slot)
353{
Adrian Hunter012e4672012-01-30 14:27:18 +0200354 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
Adrian Hunter93933502011-12-27 15:48:47 +0200355 return 0;
356}
357
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100358static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = {
359 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Major Lee68077b02011-06-29 14:23:46 +0300360 .probe_slot = mrst_hc_probe_slot,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100361};
362
Jacob Pan35ac6f02010-11-09 13:57:29 +0000363static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = {
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100364 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000365 .probe = mrst_hc_probe,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100366};
367
Xiaochen Shen29229052010-10-04 15:24:52 +0100368static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = {
369 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300370 .allow_runtime_pm = true,
Adrian Hunter77a01222014-01-13 09:49:16 +0200371 .own_cd_for_runtime_pm = true,
Xiaochen Shen29229052010-10-04 15:24:52 +0100372};
373
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300374static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio = {
Xiaochen Shen29229052010-10-04 15:24:52 +0100375 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterf3c55a72012-02-07 14:48:55 +0200376 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300377 .allow_runtime_pm = true,
Adrian Hunter93933502011-12-27 15:48:47 +0200378 .probe_slot = mfd_sdio_probe_slot,
Xiaochen Shen29229052010-10-04 15:24:52 +0100379};
380
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300381static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc = {
382 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300383 .allow_runtime_pm = true,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300384 .probe_slot = mfd_emmc_probe_slot,
385};
386
Alexander Stein296e0b02012-03-14 08:38:58 +0100387static const struct sdhci_pci_fixes sdhci_intel_pch_sdio = {
388 .quirks = SDHCI_QUIRK_BROKEN_ADMA,
389 .probe_slot = pch_hc_probe_slot,
390};
391
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200392enum {
393 INTEL_DSM_FNS = 0,
Adrian Hunter6ae03362017-09-18 15:16:08 +0300394 INTEL_DSM_V18_SWITCH = 3,
Adrian Hunter51ced592017-03-20 19:50:35 +0200395 INTEL_DSM_DRV_STRENGTH = 9,
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200396 INTEL_DSM_D3_RETUNE = 10,
397};
398
399struct intel_host {
400 u32 dsm_fns;
Adrian Hunter51ced592017-03-20 19:50:35 +0200401 int drv_strength;
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200402 bool d3_retune;
403};
404
Colin Ian Kingc37f69f2017-06-19 11:55:21 +0100405static const guid_t intel_dsm_guid =
Andy Shevchenko94116f82017-06-05 19:40:46 +0300406 GUID_INIT(0xF6C13EA5, 0x65CD, 0x461F,
407 0xAB, 0x7A, 0x29, 0xF7, 0xE8, 0xD5, 0xBD, 0x61);
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200408
409static int __intel_dsm(struct intel_host *intel_host, struct device *dev,
410 unsigned int fn, u32 *result)
411{
412 union acpi_object *obj;
413 int err = 0;
Adrian Huntera72016a2017-04-19 15:48:55 +0300414 size_t len;
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200415
Andy Shevchenko94116f82017-06-05 19:40:46 +0300416 obj = acpi_evaluate_dsm(ACPI_HANDLE(dev), &intel_dsm_guid, 0, fn, NULL);
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200417 if (!obj)
418 return -EOPNOTSUPP;
419
420 if (obj->type != ACPI_TYPE_BUFFER || obj->buffer.length < 1) {
421 err = -EINVAL;
422 goto out;
423 }
424
Adrian Huntera72016a2017-04-19 15:48:55 +0300425 len = min_t(size_t, obj->buffer.length, 4);
426
427 *result = 0;
428 memcpy(result, obj->buffer.pointer, len);
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200429out:
430 ACPI_FREE(obj);
431
432 return err;
433}
434
435static int intel_dsm(struct intel_host *intel_host, struct device *dev,
436 unsigned int fn, u32 *result)
437{
438 if (fn > 31 || !(intel_host->dsm_fns & (1 << fn)))
439 return -EOPNOTSUPP;
440
441 return __intel_dsm(intel_host, dev, fn, result);
442}
443
444static void intel_dsm_init(struct intel_host *intel_host, struct device *dev,
445 struct mmc_host *mmc)
446{
447 int err;
448 u32 val;
449
Adrian Huntereb701ce2017-10-09 10:24:01 +0300450 intel_host->d3_retune = true;
451
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200452 err = __intel_dsm(intel_host, dev, INTEL_DSM_FNS, &intel_host->dsm_fns);
453 if (err) {
454 pr_debug("%s: DSM not supported, error %d\n",
455 mmc_hostname(mmc), err);
456 return;
457 }
458
459 pr_debug("%s: DSM function mask %#x\n",
460 mmc_hostname(mmc), intel_host->dsm_fns);
461
Adrian Hunter51ced592017-03-20 19:50:35 +0200462 err = intel_dsm(intel_host, dev, INTEL_DSM_DRV_STRENGTH, &val);
463 intel_host->drv_strength = err ? 0 : val;
464
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200465 err = intel_dsm(intel_host, dev, INTEL_DSM_D3_RETUNE, &val);
466 intel_host->d3_retune = err ? true : !!val;
467}
468
Adrian Hunterc9faff62013-06-13 11:50:26 +0300469static void sdhci_pci_int_hw_reset(struct sdhci_host *host)
470{
471 u8 reg;
472
473 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
474 reg |= 0x10;
475 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
476 /* For eMMC, minimum is 1us but give it 9us for good measure */
477 udelay(9);
478 reg &= ~0x10;
479 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
480 /* For eMMC, minimum is 200us but give it 300us for good measure */
481 usleep_range(300, 1000);
482}
483
Adrian Hunter51ced592017-03-20 19:50:35 +0200484static int intel_select_drive_strength(struct mmc_card *card,
485 unsigned int max_dtr, int host_drv,
486 int card_drv, int *drv_type)
Adrian Huntere1bfad62015-02-06 14:13:00 +0200487{
Adrian Hunter51ced592017-03-20 19:50:35 +0200488 struct sdhci_host *host = mmc_priv(card->host);
489 struct sdhci_pci_slot *slot = sdhci_priv(host);
490 struct intel_host *intel_host = sdhci_pci_priv(slot);
Adrian Huntere1bfad62015-02-06 14:13:00 +0200491
Adrian Hunter51ced592017-03-20 19:50:35 +0200492 return intel_host->drv_strength;
Adrian Huntere1bfad62015-02-06 14:13:00 +0200493}
494
Adrian Hunter163cbe32016-02-09 16:12:37 +0200495static int bxt_get_cd(struct mmc_host *mmc)
496{
497 int gpio_cd = mmc_gpio_get_cd(mmc);
498 struct sdhci_host *host = mmc_priv(mmc);
499 unsigned long flags;
500 int ret = 0;
501
502 if (!gpio_cd)
503 return 0;
504
Adrian Hunter163cbe32016-02-09 16:12:37 +0200505 spin_lock_irqsave(&host->lock, flags);
506
507 if (host->flags & SDHCI_DEVICE_DEAD)
508 goto out;
509
510 ret = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
511out:
512 spin_unlock_irqrestore(&host->lock, flags);
513
Adrian Hunter163cbe32016-02-09 16:12:37 +0200514 return ret;
515}
516
Adrian Hunter48d685a2017-03-20 19:50:53 +0200517#define SDHCI_INTEL_PWR_TIMEOUT_CNT 20
518#define SDHCI_INTEL_PWR_TIMEOUT_UDELAY 100
519
520static void sdhci_intel_set_power(struct sdhci_host *host, unsigned char mode,
521 unsigned short vdd)
522{
523 int cntr;
524 u8 reg;
525
526 sdhci_set_power(host, mode, vdd);
527
528 if (mode == MMC_POWER_OFF)
529 return;
530
531 /*
532 * Bus power might not enable after D3 -> D0 transition due to the
533 * present state not yet having propagated. Retry for up to 2ms.
534 */
535 for (cntr = 0; cntr < SDHCI_INTEL_PWR_TIMEOUT_CNT; cntr++) {
536 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
537 if (reg & SDHCI_POWER_ON)
538 break;
539 udelay(SDHCI_INTEL_PWR_TIMEOUT_UDELAY);
540 reg |= SDHCI_POWER_ON;
541 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
542 }
543}
544
Adrian Hunterbc55dcd2017-06-01 12:10:07 +0300545#define INTEL_HS400_ES_REG 0x78
546#define INTEL_HS400_ES_BIT BIT(0)
547
548static void intel_hs400_enhanced_strobe(struct mmc_host *mmc,
549 struct mmc_ios *ios)
550{
551 struct sdhci_host *host = mmc_priv(mmc);
552 u32 val;
553
554 val = sdhci_readl(host, INTEL_HS400_ES_REG);
555 if (ios->enhanced_strobe)
556 val |= INTEL_HS400_ES_BIT;
557 else
558 val &= ~INTEL_HS400_ES_BIT;
559 sdhci_writel(host, val, INTEL_HS400_ES_REG);
560}
561
Adrian Hunter6ae03362017-09-18 15:16:08 +0300562static void sdhci_intel_voltage_switch(struct sdhci_host *host)
563{
564 struct sdhci_pci_slot *slot = sdhci_priv(host);
565 struct intel_host *intel_host = sdhci_pci_priv(slot);
566 struct device *dev = &slot->chip->pdev->dev;
567 u32 result = 0;
568 int err;
569
570 err = intel_dsm(intel_host, dev, INTEL_DSM_V18_SWITCH, &result);
571 pr_debug("%s: %s DSM error %d result %u\n",
572 mmc_hostname(host->mmc), __func__, err, result);
573}
574
Adrian Hunter48d685a2017-03-20 19:50:53 +0200575static const struct sdhci_ops sdhci_intel_byt_ops = {
576 .set_clock = sdhci_set_clock,
577 .set_power = sdhci_intel_set_power,
578 .enable_dma = sdhci_pci_enable_dma,
Michał Mirosławadc16392017-08-14 22:00:26 +0200579 .set_bus_width = sdhci_set_bus_width,
Adrian Hunter48d685a2017-03-20 19:50:53 +0200580 .reset = sdhci_reset,
581 .set_uhs_signaling = sdhci_set_uhs_signaling,
582 .hw_reset = sdhci_pci_hw_reset,
Adrian Hunter6ae03362017-09-18 15:16:08 +0300583 .voltage_switch = sdhci_intel_voltage_switch,
Adrian Hunter48d685a2017-03-20 19:50:53 +0200584};
585
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200586static void byt_read_dsm(struct sdhci_pci_slot *slot)
587{
588 struct intel_host *intel_host = sdhci_pci_priv(slot);
589 struct device *dev = &slot->chip->pdev->dev;
590 struct mmc_host *mmc = slot->host->mmc;
591
592 intel_dsm_init(intel_host, dev, mmc);
593 slot->chip->rpm_retune = intel_host->d3_retune;
594}
595
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300596static int byt_emmc_probe_slot(struct sdhci_pci_slot *slot)
597{
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200598 byt_read_dsm(slot);
Adrian Hunterc9faff62013-06-13 11:50:26 +0300599 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
Adrian Hunter6aab23a2014-12-01 15:51:18 +0200600 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
Adrian Hunter32828852016-08-16 13:44:14 +0300601 MMC_CAP_CMD_DURING_TFR |
Adrian Hunter6aab23a2014-12-01 15:51:18 +0200602 MMC_CAP_WAIT_WHILE_BUSY;
Adrian Hunterc9faff62013-06-13 11:50:26 +0300603 slot->hw_reset = sdhci_pci_int_hw_reset;
Adrian Huntera06586b2014-09-24 10:27:33 +0300604 if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BSW_EMMC)
605 slot->host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
Adrian Hunter51ced592017-03-20 19:50:35 +0200606 slot->host->mmc_host_ops.select_drive_strength =
607 intel_select_drive_strength;
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300608 return 0;
609}
610
Adrian Hunterbc55dcd2017-06-01 12:10:07 +0300611static int glk_emmc_probe_slot(struct sdhci_pci_slot *slot)
612{
613 int ret = byt_emmc_probe_slot(slot);
614
615 if (slot->chip->pdev->device != PCI_DEVICE_ID_INTEL_GLK_EMMC) {
616 slot->host->mmc->caps2 |= MMC_CAP2_HS400_ES,
617 slot->host->mmc_host_ops.hs400_enhanced_strobe =
618 intel_hs400_enhanced_strobe;
619 }
620
621 return ret;
622}
623
Zach Brown3f23df72016-11-28 13:16:39 -0600624#ifdef CONFIG_ACPI
625static int ni_set_max_freq(struct sdhci_pci_slot *slot)
626{
627 acpi_status status;
628 unsigned long long max_freq;
629
630 status = acpi_evaluate_integer(ACPI_HANDLE(&slot->chip->pdev->dev),
631 "MXFQ", NULL, &max_freq);
632 if (ACPI_FAILURE(status)) {
633 dev_err(&slot->chip->pdev->dev,
634 "MXFQ not found in acpi table\n");
635 return -EINVAL;
636 }
637
638 slot->host->mmc->f_max = max_freq * 1000000;
639
640 return 0;
641}
642#else
643static inline int ni_set_max_freq(struct sdhci_pci_slot *slot)
644{
645 return 0;
646}
647#endif
648
Zach Brown42b06492016-11-28 13:16:38 -0600649static int ni_byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
650{
Zach Brown3f23df72016-11-28 13:16:39 -0600651 int err;
652
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200653 byt_read_dsm(slot);
654
Zach Brown3f23df72016-11-28 13:16:39 -0600655 err = ni_set_max_freq(slot);
656 if (err)
657 return err;
658
Zach Brown42b06492016-11-28 13:16:38 -0600659 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE |
660 MMC_CAP_WAIT_WHILE_BUSY;
661 return 0;
662}
663
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300664static int byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
665{
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200666 byt_read_dsm(slot);
Adrian Hunter6aab23a2014-12-01 15:51:18 +0200667 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE |
Adrian Hunter6aab23a2014-12-01 15:51:18 +0200668 MMC_CAP_WAIT_WHILE_BUSY;
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300669 return 0;
670}
671
Adrian Hunterff59c522014-09-24 10:27:31 +0300672static int byt_sd_probe_slot(struct sdhci_pci_slot *slot)
673{
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200674 byt_read_dsm(slot);
Azhar Shaikhc2c49a22017-03-29 11:16:33 -0700675 slot->host->mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY |
Adrian Hunter6cf41562017-06-13 15:07:52 +0300676 MMC_CAP_AGGRESSIVE_PM | MMC_CAP_CD_WAKE;
Adrian Hunterff59c522014-09-24 10:27:31 +0300677 slot->cd_idx = 0;
678 slot->cd_override_level = true;
Adrian Hunter163cbe32016-02-09 16:12:37 +0200679 if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BXT_SD ||
Adrian Hunter01d6b2a2016-04-04 12:40:37 +0300680 slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BXTM_SD ||
Adrian Hunter2d1956d2016-11-22 11:03:37 +0200681 slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_APL_SD ||
Azhar Shaikhc2c49a22017-03-29 11:16:33 -0700682 slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_GLK_SD)
Adrian Hunter163cbe32016-02-09 16:12:37 +0200683 slot->host->mmc_host_ops.get_cd = bxt_get_cd;
684
Adrian Hunterff59c522014-09-24 10:27:31 +0300685 return 0;
686}
687
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300688static const struct sdhci_pci_fixes sdhci_intel_byt_emmc = {
689 .allow_runtime_pm = true,
690 .probe_slot = byt_emmc_probe_slot,
Adrian Hunterdb6e8cd2014-12-01 15:51:16 +0200691 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Huntere58e4a02014-09-24 10:27:30 +0300692 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
Adrian Hunterb69587e2015-02-06 14:13:01 +0200693 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 |
Adrian Huntere58e4a02014-09-24 10:27:30 +0300694 SDHCI_QUIRK2_STOP_WITH_TC,
Adrian Hunterfee686b2016-10-05 12:11:24 +0300695 .ops = &sdhci_intel_byt_ops,
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200696 .priv_size = sizeof(struct intel_host),
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300697};
698
Adrian Hunterbc55dcd2017-06-01 12:10:07 +0300699static const struct sdhci_pci_fixes sdhci_intel_glk_emmc = {
700 .allow_runtime_pm = true,
701 .probe_slot = glk_emmc_probe_slot,
702 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
703 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
704 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 |
705 SDHCI_QUIRK2_STOP_WITH_TC,
706 .ops = &sdhci_intel_byt_ops,
707 .priv_size = sizeof(struct intel_host),
708};
709
Zach Brown42b06492016-11-28 13:16:38 -0600710static const struct sdhci_pci_fixes sdhci_ni_byt_sdio = {
711 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
712 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON |
713 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
714 .allow_runtime_pm = true,
715 .probe_slot = ni_byt_sdio_probe_slot,
716 .ops = &sdhci_intel_byt_ops,
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200717 .priv_size = sizeof(struct intel_host),
Zach Brown42b06492016-11-28 13:16:38 -0600718};
719
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300720static const struct sdhci_pci_fixes sdhci_intel_byt_sdio = {
Adrian Hunterdb6e8cd2014-12-01 15:51:16 +0200721 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800722 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON |
723 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300724 .allow_runtime_pm = true,
725 .probe_slot = byt_sdio_probe_slot,
Adrian Hunterfee686b2016-10-05 12:11:24 +0300726 .ops = &sdhci_intel_byt_ops,
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200727 .priv_size = sizeof(struct intel_host),
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300728};
729
730static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
Adrian Hunterdb6e8cd2014-12-01 15:51:16 +0200731 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800732 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
Adrian Huntere58e4a02014-09-24 10:27:30 +0300733 SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
734 SDHCI_QUIRK2_STOP_WITH_TC,
Adrian Hunter7396e312013-05-06 12:17:34 +0300735 .allow_runtime_pm = true,
Adrian Hunter77a01222014-01-13 09:49:16 +0200736 .own_cd_for_runtime_pm = true,
Adrian Hunterff59c522014-09-24 10:27:31 +0300737 .probe_slot = byt_sd_probe_slot,
Adrian Hunterfee686b2016-10-05 12:11:24 +0300738 .ops = &sdhci_intel_byt_ops,
Adrian Hunterc959a6b2017-03-20 19:50:34 +0200739 .priv_size = sizeof(struct intel_host),
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300740};
741
David Cohen8776a162013-10-01 13:18:15 -0700742/* Define Host controllers for Intel Merrifield platform */
Andy Shevchenko1f64cec2016-07-12 14:03:42 +0300743#define INTEL_MRFLD_EMMC_0 0
744#define INTEL_MRFLD_EMMC_1 1
Andy Shevchenko4674b6c2016-08-29 12:33:41 +0300745#define INTEL_MRFLD_SD 2
Andy Shevchenkod5565572016-08-29 12:33:40 +0300746#define INTEL_MRFLD_SDIO 3
David Cohen8776a162013-10-01 13:18:15 -0700747
Andy Shevchenko0e392202017-07-24 18:07:50 +0300748#ifdef CONFIG_ACPI
749static void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot)
750{
751 struct acpi_device *device, *child;
752
753 device = ACPI_COMPANION(&slot->chip->pdev->dev);
754 if (!device)
755 return;
756
757 acpi_device_fix_up_power(device);
758 list_for_each_entry(child, &device->children, node)
759 if (child->status.present && child->status.enabled)
760 acpi_device_fix_up_power(child);
761}
762#else
763static inline void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot) {}
764#endif
765
Andy Shevchenko1f64cec2016-07-12 14:03:42 +0300766static int intel_mrfld_mmc_probe_slot(struct sdhci_pci_slot *slot)
David Cohen8776a162013-10-01 13:18:15 -0700767{
Andy Shevchenko2e57bbe2016-08-29 12:33:39 +0300768 unsigned int func = PCI_FUNC(slot->chip->pdev->devfn);
769
770 switch (func) {
771 case INTEL_MRFLD_EMMC_0:
772 case INTEL_MRFLD_EMMC_1:
773 slot->host->mmc->caps |= MMC_CAP_NONREMOVABLE |
774 MMC_CAP_8_BIT_DATA |
775 MMC_CAP_1_8V_DDR;
776 break;
Andy Shevchenko4674b6c2016-08-29 12:33:41 +0300777 case INTEL_MRFLD_SD:
778 slot->host->quirks2 |= SDHCI_QUIRK2_NO_1_8_V;
779 break;
Andy Shevchenkod5565572016-08-29 12:33:40 +0300780 case INTEL_MRFLD_SDIO:
781 slot->host->mmc->caps |= MMC_CAP_NONREMOVABLE |
782 MMC_CAP_POWER_OFF_CARD;
783 break;
Andy Shevchenko2e57bbe2016-08-29 12:33:39 +0300784 default:
David Cohen8776a162013-10-01 13:18:15 -0700785 return -ENODEV;
Andy Shevchenko2e57bbe2016-08-29 12:33:39 +0300786 }
Andy Shevchenko0e392202017-07-24 18:07:50 +0300787
788 intel_mrfld_mmc_fix_up_power_slot(slot);
David Cohen8776a162013-10-01 13:18:15 -0700789 return 0;
790}
791
Andy Shevchenko1f64cec2016-07-12 14:03:42 +0300792static const struct sdhci_pci_fixes sdhci_intel_mrfld_mmc = {
David Cohen8776a162013-10-01 13:18:15 -0700793 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800794 .quirks2 = SDHCI_QUIRK2_BROKEN_HS200 |
795 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Gao, Yunpengf1b55a52014-08-18 15:05:52 +0800796 .allow_runtime_pm = true,
Andy Shevchenko1f64cec2016-07-12 14:03:42 +0300797 .probe_slot = intel_mrfld_mmc_probe_slot,
David Cohen8776a162013-10-01 13:18:15 -0700798};
799
Pierre Ossman45211e22008-03-24 13:09:09 +0100800static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
801{
802 u8 scratch;
803 int ret;
804
805 ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
806 if (ret)
807 return ret;
808
809 /*
810 * Turn PMOS on [bit 0], set over current detection to 2.4 V
811 * [bit 1:2] and enable over current debouncing [bit 6].
812 */
813 if (on)
814 scratch |= 0x47;
815 else
816 scratch &= ~0x47;
817
kbuild test robot75820412015-10-06 04:01:04 +0800818 return pci_write_config_byte(chip->pdev, 0xAE, scratch);
Pierre Ossman45211e22008-03-24 13:09:09 +0100819}
820
821static int jmicron_probe(struct sdhci_pci_chip *chip)
822{
823 int ret;
Takashi Iwai8f230f42010-12-08 10:04:30 +0100824 u16 mmcdev = 0;
Pierre Ossman45211e22008-03-24 13:09:09 +0100825
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200826 if (chip->pdev->revision == 0) {
827 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
828 SDHCI_QUIRK_32BIT_DMA_SIZE |
Pierre Ossman2134a922008-06-28 18:28:51 +0200829 SDHCI_QUIRK_32BIT_ADMA_SIZE |
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200830 SDHCI_QUIRK_RESET_AFTER_REQUEST |
Pierre Ossman86a6a872009-02-02 21:13:49 +0100831 SDHCI_QUIRK_BROKEN_SMALL_PIO;
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200832 }
833
Pierre Ossman45211e22008-03-24 13:09:09 +0100834 /*
Pierre Ossman44894282008-04-04 19:36:59 +0200835 * JMicron chips can have two interfaces to the same hardware
836 * in order to work around limitations in Microsoft's driver.
837 * We need to make sure we only bind to one of them.
838 *
839 * This code assumes two things:
840 *
841 * 1. The PCI code adds subfunctions in order.
842 *
843 * 2. The MMC interface has a lower subfunction number
844 * than the SD interface.
845 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100846 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD)
847 mmcdev = PCI_DEVICE_ID_JMICRON_JMB38X_MMC;
848 else if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD)
849 mmcdev = PCI_DEVICE_ID_JMICRON_JMB388_ESD;
850
851 if (mmcdev) {
Pierre Ossman44894282008-04-04 19:36:59 +0200852 struct pci_dev *sd_dev;
853
854 sd_dev = NULL;
855 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
Takashi Iwai8f230f42010-12-08 10:04:30 +0100856 mmcdev, sd_dev)) != NULL) {
Pierre Ossman44894282008-04-04 19:36:59 +0200857 if ((PCI_SLOT(chip->pdev->devfn) ==
858 PCI_SLOT(sd_dev->devfn)) &&
859 (chip->pdev->bus == sd_dev->bus))
860 break;
861 }
862
863 if (sd_dev) {
864 pci_dev_put(sd_dev);
865 dev_info(&chip->pdev->dev, "Refusing to bind to "
866 "secondary interface.\n");
867 return -ENODEV;
868 }
869 }
870
871 /*
Pierre Ossman45211e22008-03-24 13:09:09 +0100872 * JMicron chips need a bit of a nudge to enable the power
873 * output pins.
874 */
875 ret = jmicron_pmos(chip, 1);
876 if (ret) {
877 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
878 return ret;
879 }
880
Takashi Iwai82b0e232011-04-21 20:26:38 +0200881 /* quirk for unsable RO-detection on JM388 chips */
882 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD ||
883 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
884 chip->quirks |= SDHCI_QUIRK_UNSTABLE_RO_DETECT;
885
Pierre Ossman45211e22008-03-24 13:09:09 +0100886 return 0;
887}
888
Pierre Ossman44894282008-04-04 19:36:59 +0200889static void jmicron_enable_mmc(struct sdhci_host *host, int on)
890{
891 u8 scratch;
892
893 scratch = readb(host->ioaddr + 0xC0);
894
895 if (on)
896 scratch |= 0x01;
897 else
898 scratch &= ~0x01;
899
900 writeb(scratch, host->ioaddr + 0xC0);
901}
902
903static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
904{
Pierre Ossman2134a922008-06-28 18:28:51 +0200905 if (slot->chip->pdev->revision == 0) {
906 u16 version;
907
908 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
909 version = (version & SDHCI_VENDOR_VER_MASK) >>
910 SDHCI_VENDOR_VER_SHIFT;
911
912 /*
913 * Older versions of the chip have lots of nasty glitches
914 * in the ADMA engine. It's best just to avoid it
915 * completely.
916 */
917 if (version < 0xAC)
918 slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
919 }
920
Takashi Iwai8f230f42010-12-08 10:04:30 +0100921 /* JM388 MMC doesn't support 1.8V while SD supports it */
922 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
923 slot->host->ocr_avail_sd = MMC_VDD_32_33 | MMC_VDD_33_34 |
924 MMC_VDD_29_30 | MMC_VDD_30_31 |
925 MMC_VDD_165_195; /* allow 1.8V */
926 slot->host->ocr_avail_mmc = MMC_VDD_32_33 | MMC_VDD_33_34 |
927 MMC_VDD_29_30 | MMC_VDD_30_31; /* no 1.8V for MMC */
928 }
929
Pierre Ossman44894282008-04-04 19:36:59 +0200930 /*
931 * The secondary interface requires a bit set to get the
932 * interrupts.
933 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100934 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
935 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200936 jmicron_enable_mmc(slot->host, 1);
937
Takashi Iwaid75c1082010-12-16 17:54:14 +0100938 slot->host->mmc->caps |= MMC_CAP_BUS_WIDTH_TEST;
939
Pierre Ossman44894282008-04-04 19:36:59 +0200940 return 0;
941}
942
Pierre Ossman1e728592008-04-16 19:13:13 +0200943static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
Pierre Ossman44894282008-04-04 19:36:59 +0200944{
Pierre Ossman1e728592008-04-16 19:13:13 +0200945 if (dead)
946 return;
947
Takashi Iwai8f230f42010-12-08 10:04:30 +0100948 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
949 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200950 jmicron_enable_mmc(slot->host, 0);
951}
952
Adrian Hunterb7813f02017-03-20 19:50:50 +0200953#ifdef CONFIG_PM_SLEEP
Manuel Lauss29495aa2011-11-03 11:09:45 +0100954static int jmicron_suspend(struct sdhci_pci_chip *chip)
Pierre Ossman44894282008-04-04 19:36:59 +0200955{
Adrian Hunter30cf2802017-03-20 19:50:51 +0200956 int i, ret;
957
958 ret = __sdhci_pci_suspend_host(chip);
959 if (ret)
960 return ret;
Pierre Ossman44894282008-04-04 19:36:59 +0200961
Takashi Iwai8f230f42010-12-08 10:04:30 +0100962 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
963 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300964 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200965 jmicron_enable_mmc(chip->slots[i]->host, 0);
966 }
967
Adrian Hunter30cf2802017-03-20 19:50:51 +0200968 sdhci_pci_init_wakeup(chip);
969
Pierre Ossman44894282008-04-04 19:36:59 +0200970 return 0;
971}
972
Pierre Ossman45211e22008-03-24 13:09:09 +0100973static int jmicron_resume(struct sdhci_pci_chip *chip)
974{
Pierre Ossman44894282008-04-04 19:36:59 +0200975 int ret, i;
976
Takashi Iwai8f230f42010-12-08 10:04:30 +0100977 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
978 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300979 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200980 jmicron_enable_mmc(chip->slots[i]->host, 1);
981 }
Pierre Ossman45211e22008-03-24 13:09:09 +0100982
983 ret = jmicron_pmos(chip, 1);
984 if (ret) {
985 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
986 return ret;
987 }
988
Adrian Hunter30cf2802017-03-20 19:50:51 +0200989 return sdhci_pci_resume_host(chip);
Pierre Ossman45211e22008-03-24 13:09:09 +0100990}
Adrian Hunterb7813f02017-03-20 19:50:50 +0200991#endif
Pierre Ossman45211e22008-03-24 13:09:09 +0100992
Jennifer Li26daa1e2010-11-17 23:01:59 -0500993static const struct sdhci_pci_fixes sdhci_o2 = {
Adam Lee01acf692013-12-19 00:01:26 +0800994 .probe = sdhci_pci_o2_probe,
995 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adam Lee143b6482015-08-03 14:33:28 +0800996 .quirks2 = SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD,
Adam Lee01acf692013-12-19 00:01:26 +0800997 .probe_slot = sdhci_pci_o2_probe_slot,
Adrian Hunterb7813f02017-03-20 19:50:50 +0200998#ifdef CONFIG_PM_SLEEP
Adam Lee01acf692013-12-19 00:01:26 +0800999 .resume = sdhci_pci_o2_resume,
Adrian Hunterb7813f02017-03-20 19:50:50 +02001000#endif
Jennifer Li26daa1e2010-11-17 23:01:59 -05001001};
1002
Pierre Ossman22606402008-03-23 19:33:23 +01001003static const struct sdhci_pci_fixes sdhci_jmicron = {
Pierre Ossman45211e22008-03-24 13:09:09 +01001004 .probe = jmicron_probe,
1005
Pierre Ossman44894282008-04-04 19:36:59 +02001006 .probe_slot = jmicron_probe_slot,
1007 .remove_slot = jmicron_remove_slot,
1008
Adrian Hunterb7813f02017-03-20 19:50:50 +02001009#ifdef CONFIG_PM_SLEEP
Pierre Ossman44894282008-04-04 19:36:59 +02001010 .suspend = jmicron_suspend,
Pierre Ossman45211e22008-03-24 13:09:09 +01001011 .resume = jmicron_resume,
Adrian Hunterb7813f02017-03-20 19:50:50 +02001012#endif
Pierre Ossman22606402008-03-23 19:33:23 +01001013};
1014
Nicolas Pitrea7a61862009-12-14 18:01:26 -08001015/* SysKonnect CardBus2SDIO extra registers */
1016#define SYSKT_CTRL 0x200
1017#define SYSKT_RDFIFO_STAT 0x204
1018#define SYSKT_WRFIFO_STAT 0x208
1019#define SYSKT_POWER_DATA 0x20c
1020#define SYSKT_POWER_330 0xef
1021#define SYSKT_POWER_300 0xf8
1022#define SYSKT_POWER_184 0xcc
1023#define SYSKT_POWER_CMD 0x20d
1024#define SYSKT_POWER_START (1 << 7)
1025#define SYSKT_POWER_STATUS 0x20e
1026#define SYSKT_POWER_STATUS_OK (1 << 0)
1027#define SYSKT_BOARD_REV 0x210
1028#define SYSKT_CHIP_REV 0x211
1029#define SYSKT_CONF_DATA 0x212
1030#define SYSKT_CONF_DATA_1V8 (1 << 2)
1031#define SYSKT_CONF_DATA_2V5 (1 << 1)
1032#define SYSKT_CONF_DATA_3V3 (1 << 0)
1033
1034static int syskt_probe(struct sdhci_pci_chip *chip)
1035{
1036 if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1037 chip->pdev->class &= ~0x0000FF;
1038 chip->pdev->class |= PCI_SDHCI_IFDMA;
1039 }
1040 return 0;
1041}
1042
1043static int syskt_probe_slot(struct sdhci_pci_slot *slot)
1044{
1045 int tm, ps;
1046
1047 u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV);
1048 u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV);
1049 dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, "
1050 "board rev %d.%d, chip rev %d.%d\n",
1051 board_rev >> 4, board_rev & 0xf,
1052 chip_rev >> 4, chip_rev & 0xf);
1053 if (chip_rev >= 0x20)
1054 slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA;
1055
1056 writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA);
1057 writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD);
1058 udelay(50);
1059 tm = 10; /* Wait max 1 ms */
1060 do {
1061 ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS);
1062 if (ps & SYSKT_POWER_STATUS_OK)
1063 break;
1064 udelay(100);
1065 } while (--tm);
1066 if (!tm) {
1067 dev_err(&slot->chip->pdev->dev,
1068 "power regulator never stabilized");
1069 writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD);
1070 return -ENODEV;
1071 }
1072
1073 return 0;
1074}
1075
1076static const struct sdhci_pci_fixes sdhci_syskt = {
1077 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER,
1078 .probe = syskt_probe,
1079 .probe_slot = syskt_probe_slot,
1080};
1081
Harald Welte557b0692009-06-18 16:53:38 +02001082static int via_probe(struct sdhci_pci_chip *chip)
1083{
1084 if (chip->pdev->revision == 0x10)
1085 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
1086
1087 return 0;
1088}
1089
1090static const struct sdhci_pci_fixes sdhci_via = {
1091 .probe = via_probe,
1092};
1093
Micky Ching9107ebb2014-02-21 18:40:35 +08001094static int rtsx_probe_slot(struct sdhci_pci_slot *slot)
1095{
1096 slot->host->mmc->caps2 |= MMC_CAP2_HS200;
1097 return 0;
1098}
1099
1100static const struct sdhci_pci_fixes sdhci_rtsx = {
1101 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
Micky Chinge30b9782015-04-07 11:32:01 +08001102 SDHCI_QUIRK2_BROKEN_64_BIT_DMA |
Micky Ching9107ebb2014-02-21 18:40:35 +08001103 SDHCI_QUIRK2_BROKEN_DDR50,
1104 .probe_slot = rtsx_probe_slot,
1105};
1106
Vincent Wanb5e97d62015-06-11 20:11:47 +08001107/*AMD chipset generation*/
1108enum amd_chipset_gen {
1109 AMD_CHIPSET_BEFORE_ML,
1110 AMD_CHIPSET_CZ,
1111 AMD_CHIPSET_NL,
1112 AMD_CHIPSET_UNKNOWN,
1113};
1114
Shyam Sundar S Kc31165d2017-01-12 18:09:00 +05301115/* AMD registers */
1116#define AMD_SD_AUTO_PATTERN 0xB8
1117#define AMD_MSLEEP_DURATION 4
1118#define AMD_SD_MISC_CONTROL 0xD0
1119#define AMD_MAX_TUNE_VALUE 0x0B
1120#define AMD_AUTO_TUNE_SEL 0x10800
1121#define AMD_FIFO_PTR 0x30
1122#define AMD_BIT_MASK 0x1F
1123
1124static void amd_tuning_reset(struct sdhci_host *host)
1125{
1126 unsigned int val;
1127
1128 val = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1129 val |= SDHCI_CTRL_PRESET_VAL_ENABLE | SDHCI_CTRL_EXEC_TUNING;
1130 sdhci_writew(host, val, SDHCI_HOST_CONTROL2);
1131
1132 val = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1133 val &= ~SDHCI_CTRL_EXEC_TUNING;
1134 sdhci_writew(host, val, SDHCI_HOST_CONTROL2);
1135}
1136
1137static void amd_config_tuning_phase(struct pci_dev *pdev, u8 phase)
1138{
1139 unsigned int val;
1140
1141 pci_read_config_dword(pdev, AMD_SD_AUTO_PATTERN, &val);
1142 val &= ~AMD_BIT_MASK;
1143 val |= (AMD_AUTO_TUNE_SEL | (phase << 1));
1144 pci_write_config_dword(pdev, AMD_SD_AUTO_PATTERN, val);
1145}
1146
1147static void amd_enable_manual_tuning(struct pci_dev *pdev)
1148{
1149 unsigned int val;
1150
1151 pci_read_config_dword(pdev, AMD_SD_MISC_CONTROL, &val);
1152 val |= AMD_FIFO_PTR;
1153 pci_write_config_dword(pdev, AMD_SD_MISC_CONTROL, val);
1154}
1155
1156static int amd_execute_tuning(struct sdhci_host *host, u32 opcode)
1157{
1158 struct sdhci_pci_slot *slot = sdhci_priv(host);
1159 struct pci_dev *pdev = slot->chip->pdev;
1160 u8 valid_win = 0;
1161 u8 valid_win_max = 0;
1162 u8 valid_win_end = 0;
1163 u8 ctrl, tune_around;
1164
1165 amd_tuning_reset(host);
1166
1167 for (tune_around = 0; tune_around < 12; tune_around++) {
1168 amd_config_tuning_phase(pdev, tune_around);
1169
1170 if (mmc_send_tuning(host->mmc, opcode, NULL)) {
1171 valid_win = 0;
1172 msleep(AMD_MSLEEP_DURATION);
1173 ctrl = SDHCI_RESET_CMD | SDHCI_RESET_DATA;
1174 sdhci_writeb(host, ctrl, SDHCI_SOFTWARE_RESET);
1175 } else if (++valid_win > valid_win_max) {
1176 valid_win_max = valid_win;
1177 valid_win_end = tune_around;
1178 }
1179 }
1180
1181 if (!valid_win_max) {
1182 dev_err(&pdev->dev, "no tuning point found\n");
1183 return -EIO;
1184 }
1185
1186 amd_config_tuning_phase(pdev, valid_win_end - valid_win_max / 2);
1187
1188 amd_enable_manual_tuning(pdev);
1189
1190 host->mmc->retune_period = 0;
1191
1192 return 0;
1193}
1194
Vincent Wand44f88d2014-11-05 14:09:14 +08001195static int amd_probe(struct sdhci_pci_chip *chip)
1196{
1197 struct pci_dev *smbus_dev;
Vincent Wanb5e97d62015-06-11 20:11:47 +08001198 enum amd_chipset_gen gen;
Vincent Wand44f88d2014-11-05 14:09:14 +08001199
1200 smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD,
1201 PCI_DEVICE_ID_AMD_HUDSON2_SMBUS, NULL);
Vincent Wanb5e97d62015-06-11 20:11:47 +08001202 if (smbus_dev) {
1203 gen = AMD_CHIPSET_BEFORE_ML;
1204 } else {
1205 smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD,
1206 PCI_DEVICE_ID_AMD_KERNCZ_SMBUS, NULL);
1207 if (smbus_dev) {
1208 if (smbus_dev->revision < 0x51)
1209 gen = AMD_CHIPSET_CZ;
1210 else
1211 gen = AMD_CHIPSET_NL;
1212 } else {
1213 gen = AMD_CHIPSET_UNKNOWN;
1214 }
1215 }
Vincent Wand44f88d2014-11-05 14:09:14 +08001216
Shyam Sundar S Kc31165d2017-01-12 18:09:00 +05301217 if (gen == AMD_CHIPSET_BEFORE_ML || gen == AMD_CHIPSET_CZ)
Vincent Wand44f88d2014-11-05 14:09:14 +08001218 chip->quirks2 |= SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD;
1219
1220 return 0;
1221}
1222
Shyam Sundar S Kc31165d2017-01-12 18:09:00 +05301223static const struct sdhci_ops amd_sdhci_pci_ops = {
1224 .set_clock = sdhci_set_clock,
1225 .enable_dma = sdhci_pci_enable_dma,
Michał Mirosławadc16392017-08-14 22:00:26 +02001226 .set_bus_width = sdhci_set_bus_width,
Shyam Sundar S Kc31165d2017-01-12 18:09:00 +05301227 .reset = sdhci_reset,
1228 .set_uhs_signaling = sdhci_set_uhs_signaling,
1229 .platform_execute_tuning = amd_execute_tuning,
1230};
1231
Vincent Wand44f88d2014-11-05 14:09:14 +08001232static const struct sdhci_pci_fixes sdhci_amd = {
1233 .probe = amd_probe,
Shyam Sundar S Kc31165d2017-01-12 18:09:00 +05301234 .ops = &amd_sdhci_pci_ops,
Vincent Wand44f88d2014-11-05 14:09:14 +08001235};
1236
Bill Pemberton9647f842012-11-19 13:25:11 -05001237static const struct pci_device_id pci_ids[] = {
Matthias Kraemerc949c902017-05-15 23:44:17 +02001238 SDHCI_PCI_DEVICE(RICOH, R5C822, ricoh),
1239 SDHCI_PCI_DEVICE(RICOH, R5C843, ricoh_mmc),
1240 SDHCI_PCI_DEVICE(RICOH, R5CE822, ricoh_mmc),
1241 SDHCI_PCI_DEVICE(RICOH, R5CE823, ricoh_mmc),
1242 SDHCI_PCI_DEVICE(ENE, CB712_SD, ene_712),
1243 SDHCI_PCI_DEVICE(ENE, CB712_SD_2, ene_712),
1244 SDHCI_PCI_DEVICE(ENE, CB714_SD, ene_714),
1245 SDHCI_PCI_DEVICE(ENE, CB714_SD_2, ene_714),
1246 SDHCI_PCI_DEVICE(MARVELL, 88ALP01_SD, cafe),
1247 SDHCI_PCI_DEVICE(JMICRON, JMB38X_SD, jmicron),
1248 SDHCI_PCI_DEVICE(JMICRON, JMB38X_MMC, jmicron),
1249 SDHCI_PCI_DEVICE(JMICRON, JMB388_SD, jmicron),
1250 SDHCI_PCI_DEVICE(JMICRON, JMB388_ESD, jmicron),
1251 SDHCI_PCI_DEVICE(SYSKONNECT, 8000, syskt),
1252 SDHCI_PCI_DEVICE(VIA, 95D0, via),
1253 SDHCI_PCI_DEVICE(REALTEK, 5250, rtsx),
1254 SDHCI_PCI_DEVICE(INTEL, QRK_SD, intel_qrk),
1255 SDHCI_PCI_DEVICE(INTEL, MRST_SD0, intel_mrst_hc0),
1256 SDHCI_PCI_DEVICE(INTEL, MRST_SD1, intel_mrst_hc1_hc2),
1257 SDHCI_PCI_DEVICE(INTEL, MRST_SD2, intel_mrst_hc1_hc2),
1258 SDHCI_PCI_DEVICE(INTEL, MFD_SD, intel_mfd_sd),
1259 SDHCI_PCI_DEVICE(INTEL, MFD_SDIO1, intel_mfd_sdio),
1260 SDHCI_PCI_DEVICE(INTEL, MFD_SDIO2, intel_mfd_sdio),
1261 SDHCI_PCI_DEVICE(INTEL, MFD_EMMC0, intel_mfd_emmc),
1262 SDHCI_PCI_DEVICE(INTEL, MFD_EMMC1, intel_mfd_emmc),
1263 SDHCI_PCI_DEVICE(INTEL, PCH_SDIO0, intel_pch_sdio),
1264 SDHCI_PCI_DEVICE(INTEL, PCH_SDIO1, intel_pch_sdio),
1265 SDHCI_PCI_DEVICE(INTEL, BYT_EMMC, intel_byt_emmc),
1266 SDHCI_PCI_SUBDEVICE(INTEL, BYT_SDIO, NI, 7884, ni_byt_sdio),
1267 SDHCI_PCI_DEVICE(INTEL, BYT_SDIO, intel_byt_sdio),
1268 SDHCI_PCI_DEVICE(INTEL, BYT_SD, intel_byt_sd),
1269 SDHCI_PCI_DEVICE(INTEL, BYT_EMMC2, intel_byt_emmc),
1270 SDHCI_PCI_DEVICE(INTEL, BSW_EMMC, intel_byt_emmc),
1271 SDHCI_PCI_DEVICE(INTEL, BSW_SDIO, intel_byt_sdio),
1272 SDHCI_PCI_DEVICE(INTEL, BSW_SD, intel_byt_sd),
1273 SDHCI_PCI_DEVICE(INTEL, CLV_SDIO0, intel_mfd_sd),
1274 SDHCI_PCI_DEVICE(INTEL, CLV_SDIO1, intel_mfd_sdio),
1275 SDHCI_PCI_DEVICE(INTEL, CLV_SDIO2, intel_mfd_sdio),
1276 SDHCI_PCI_DEVICE(INTEL, CLV_EMMC0, intel_mfd_emmc),
1277 SDHCI_PCI_DEVICE(INTEL, CLV_EMMC1, intel_mfd_emmc),
1278 SDHCI_PCI_DEVICE(INTEL, MRFLD_MMC, intel_mrfld_mmc),
1279 SDHCI_PCI_DEVICE(INTEL, SPT_EMMC, intel_byt_emmc),
1280 SDHCI_PCI_DEVICE(INTEL, SPT_SDIO, intel_byt_sdio),
1281 SDHCI_PCI_DEVICE(INTEL, SPT_SD, intel_byt_sd),
1282 SDHCI_PCI_DEVICE(INTEL, DNV_EMMC, intel_byt_emmc),
Adrian Huntercdaba732017-09-18 15:17:05 +03001283 SDHCI_PCI_DEVICE(INTEL, CDF_EMMC, intel_glk_emmc),
Matthias Kraemerc949c902017-05-15 23:44:17 +02001284 SDHCI_PCI_DEVICE(INTEL, BXT_EMMC, intel_byt_emmc),
1285 SDHCI_PCI_DEVICE(INTEL, BXT_SDIO, intel_byt_sdio),
1286 SDHCI_PCI_DEVICE(INTEL, BXT_SD, intel_byt_sd),
1287 SDHCI_PCI_DEVICE(INTEL, BXTM_EMMC, intel_byt_emmc),
1288 SDHCI_PCI_DEVICE(INTEL, BXTM_SDIO, intel_byt_sdio),
1289 SDHCI_PCI_DEVICE(INTEL, BXTM_SD, intel_byt_sd),
1290 SDHCI_PCI_DEVICE(INTEL, APL_EMMC, intel_byt_emmc),
1291 SDHCI_PCI_DEVICE(INTEL, APL_SDIO, intel_byt_sdio),
1292 SDHCI_PCI_DEVICE(INTEL, APL_SD, intel_byt_sd),
Adrian Hunterbc55dcd2017-06-01 12:10:07 +03001293 SDHCI_PCI_DEVICE(INTEL, GLK_EMMC, intel_glk_emmc),
Matthias Kraemerc949c902017-05-15 23:44:17 +02001294 SDHCI_PCI_DEVICE(INTEL, GLK_SDIO, intel_byt_sdio),
1295 SDHCI_PCI_DEVICE(INTEL, GLK_SD, intel_byt_sd),
Adrian Hunterbc55dcd2017-06-01 12:10:07 +03001296 SDHCI_PCI_DEVICE(INTEL, CNP_EMMC, intel_glk_emmc),
1297 SDHCI_PCI_DEVICE(INTEL, CNP_SD, intel_byt_sd),
1298 SDHCI_PCI_DEVICE(INTEL, CNPH_SD, intel_byt_sd),
Matthias Kraemerc949c902017-05-15 23:44:17 +02001299 SDHCI_PCI_DEVICE(O2, 8120, o2),
1300 SDHCI_PCI_DEVICE(O2, 8220, o2),
1301 SDHCI_PCI_DEVICE(O2, 8221, o2),
1302 SDHCI_PCI_DEVICE(O2, 8320, o2),
1303 SDHCI_PCI_DEVICE(O2, 8321, o2),
1304 SDHCI_PCI_DEVICE(O2, FUJIN2, o2),
1305 SDHCI_PCI_DEVICE(O2, SDS0, o2),
1306 SDHCI_PCI_DEVICE(O2, SDS1, o2),
1307 SDHCI_PCI_DEVICE(O2, SEABIRD0, o2),
1308 SDHCI_PCI_DEVICE(O2, SEABIRD1, o2),
1309 SDHCI_PCI_DEVICE_CLASS(AMD, SYSTEM_SDHCI, PCI_CLASS_MASK, amd),
1310 /* Generic SD host controller */
1311 {PCI_DEVICE_CLASS(SYSTEM_SDHCI, PCI_CLASS_MASK)},
Pierre Ossman22606402008-03-23 19:33:23 +01001312 { /* end: all zeroes */ },
1313};
1314
1315MODULE_DEVICE_TABLE(pci, pci_ids);
1316
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001317/*****************************************************************************\
1318 * *
1319 * SDHCI core callbacks *
1320 * *
1321\*****************************************************************************/
1322
1323static int sdhci_pci_enable_dma(struct sdhci_host *host)
1324{
1325 struct sdhci_pci_slot *slot;
1326 struct pci_dev *pdev;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001327
1328 slot = sdhci_priv(host);
1329 pdev = slot->chip->pdev;
1330
1331 if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
1332 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07001333 (host->flags & SDHCI_USE_SDMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001334 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
1335 "doesn't fully claim to support it.\n");
1336 }
1337
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001338 pci_set_master(pdev);
1339
1340 return 0;
1341}
1342
Adrian Hunterc9faff62013-06-13 11:50:26 +03001343static void sdhci_pci_gpio_hw_reset(struct sdhci_host *host)
Adrian Hunter0f201652011-08-29 16:42:13 +03001344{
1345 struct sdhci_pci_slot *slot = sdhci_priv(host);
1346 int rst_n_gpio = slot->rst_n_gpio;
1347
1348 if (!gpio_is_valid(rst_n_gpio))
1349 return;
1350 gpio_set_value_cansleep(rst_n_gpio, 0);
1351 /* For eMMC, minimum is 1us but give it 10us for good measure */
1352 udelay(10);
1353 gpio_set_value_cansleep(rst_n_gpio, 1);
1354 /* For eMMC, minimum is 200us but give it 300us for good measure */
1355 usleep_range(300, 1000);
1356}
1357
Adrian Hunterc9faff62013-06-13 11:50:26 +03001358static void sdhci_pci_hw_reset(struct sdhci_host *host)
1359{
1360 struct sdhci_pci_slot *slot = sdhci_priv(host);
1361
1362 if (slot->hw_reset)
1363 slot->hw_reset(host);
1364}
1365
Lars-Peter Clausenc9155682013-03-13 19:26:05 +01001366static const struct sdhci_ops sdhci_pci_ops = {
Russell King17710592014-04-25 12:58:55 +01001367 .set_clock = sdhci_set_clock,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001368 .enable_dma = sdhci_pci_enable_dma,
Michał Mirosławadc16392017-08-14 22:00:26 +02001369 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +01001370 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +01001371 .set_uhs_signaling = sdhci_set_uhs_signaling,
Adrian Hunter0f201652011-08-29 16:42:13 +03001372 .hw_reset = sdhci_pci_hw_reset,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001373};
1374
1375/*****************************************************************************\
1376 * *
1377 * Suspend/resume *
1378 * *
1379\*****************************************************************************/
1380
Ulf Hanssonf9900f12016-07-27 10:31:41 +02001381#ifdef CONFIG_PM_SLEEP
Manuel Lauss29495aa2011-11-03 11:09:45 +01001382static int sdhci_pci_suspend(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001383{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001384 struct pci_dev *pdev = to_pci_dev(dev);
Adrian Hunter30cf2802017-03-20 19:50:51 +02001385 struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001386
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001387 if (!chip)
1388 return 0;
1389
Adrian Hunter30cf2802017-03-20 19:50:51 +02001390 if (chip->fixes && chip->fixes->suspend)
1391 return chip->fixes->suspend(chip);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001392
Adrian Hunter30cf2802017-03-20 19:50:51 +02001393 return sdhci_pci_suspend_host(chip);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001394}
1395
Manuel Lauss29495aa2011-11-03 11:09:45 +01001396static int sdhci_pci_resume(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001397{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001398 struct pci_dev *pdev = to_pci_dev(dev);
Adrian Hunter30cf2802017-03-20 19:50:51 +02001399 struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001400
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001401 if (!chip)
1402 return 0;
1403
Adrian Hunter30cf2802017-03-20 19:50:51 +02001404 if (chip->fixes && chip->fixes->resume)
1405 return chip->fixes->resume(chip);
Pierre Ossman45211e22008-03-24 13:09:09 +01001406
Adrian Hunter30cf2802017-03-20 19:50:51 +02001407 return sdhci_pci_resume_host(chip);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001408}
Ulf Hanssonf9900f12016-07-27 10:31:41 +02001409#endif
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001410
Ulf Hanssonf9900f12016-07-27 10:31:41 +02001411#ifdef CONFIG_PM
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001412static int sdhci_pci_runtime_suspend(struct device *dev)
1413{
Geliang Tang923a2312015-12-27 18:46:00 +08001414 struct pci_dev *pdev = to_pci_dev(dev);
Adrian Hunter966d6962017-03-20 19:50:52 +02001415 struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001416
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001417 if (!chip)
1418 return 0;
1419
Adrian Hunter966d6962017-03-20 19:50:52 +02001420 if (chip->fixes && chip->fixes->runtime_suspend)
1421 return chip->fixes->runtime_suspend(chip);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001422
Adrian Hunter966d6962017-03-20 19:50:52 +02001423 return sdhci_pci_runtime_suspend_host(chip);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001424}
1425
1426static int sdhci_pci_runtime_resume(struct device *dev)
1427{
Geliang Tang923a2312015-12-27 18:46:00 +08001428 struct pci_dev *pdev = to_pci_dev(dev);
Adrian Hunter966d6962017-03-20 19:50:52 +02001429 struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001430
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001431 if (!chip)
1432 return 0;
1433
Adrian Hunter966d6962017-03-20 19:50:52 +02001434 if (chip->fixes && chip->fixes->runtime_resume)
1435 return chip->fixes->runtime_resume(chip);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001436
Adrian Hunter966d6962017-03-20 19:50:52 +02001437 return sdhci_pci_runtime_resume_host(chip);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001438}
Ulf Hanssonf9900f12016-07-27 10:31:41 +02001439#endif
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001440
1441static const struct dev_pm_ops sdhci_pci_pm_ops = {
Ulf Hanssonf9900f12016-07-27 10:31:41 +02001442 SET_SYSTEM_SLEEP_PM_OPS(sdhci_pci_suspend, sdhci_pci_resume)
Peter Griffinf3a92b12014-08-12 17:14:28 +01001443 SET_RUNTIME_PM_OPS(sdhci_pci_runtime_suspend,
Ulf Hansson106276b2014-12-10 16:49:23 +01001444 sdhci_pci_runtime_resume, NULL)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001445};
1446
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001447/*****************************************************************************\
1448 * *
1449 * Device probing/removal *
1450 * *
1451\*****************************************************************************/
1452
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001453static struct sdhci_pci_slot *sdhci_pci_probe_slot(
Adrian Hunter52c506f2011-12-27 15:48:43 +02001454 struct pci_dev *pdev, struct sdhci_pci_chip *chip, int first_bar,
1455 int slotno)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001456{
1457 struct sdhci_pci_slot *slot;
1458 struct sdhci_host *host;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001459 int ret, bar = first_bar + slotno;
Adrian Hunterac9f67b2017-03-20 19:50:33 +02001460 size_t priv_size = chip->fixes ? chip->fixes->priv_size : 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001461
1462 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
1463 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
1464 return ERR_PTR(-ENODEV);
1465 }
1466
Adrian Hunter90b3e6c2012-10-18 09:54:31 +03001467 if (pci_resource_len(pdev, bar) < 0x100) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001468 dev_err(&pdev->dev, "Invalid iomem size. You may "
1469 "experience problems.\n");
1470 }
1471
1472 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1473 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
1474 return ERR_PTR(-ENODEV);
1475 }
1476
1477 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
1478 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
1479 return ERR_PTR(-ENODEV);
1480 }
1481
Adrian Hunterac9f67b2017-03-20 19:50:33 +02001482 host = sdhci_alloc_host(&pdev->dev, sizeof(*slot) + priv_size);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001483 if (IS_ERR(host)) {
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001484 dev_err(&pdev->dev, "cannot allocate host\n");
Julia Lawalldc0fd7b2010-05-26 14:42:11 -07001485 return ERR_CAST(host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001486 }
1487
1488 slot = sdhci_priv(host);
1489
1490 slot->chip = chip;
1491 slot->host = host;
Adrian Hunter0f201652011-08-29 16:42:13 +03001492 slot->rst_n_gpio = -EINVAL;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001493 slot->cd_gpio = -EINVAL;
Adrian Hunterff59c522014-09-24 10:27:31 +03001494 slot->cd_idx = -1;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001495
Adrian Hunter52c506f2011-12-27 15:48:43 +02001496 /* Retrieve platform data if there is any */
1497 if (*sdhci_pci_get_data)
1498 slot->data = sdhci_pci_get_data(pdev, slotno);
1499
1500 if (slot->data) {
1501 if (slot->data->setup) {
1502 ret = slot->data->setup(slot->data);
1503 if (ret) {
1504 dev_err(&pdev->dev, "platform setup failed\n");
1505 goto free;
1506 }
1507 }
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001508 slot->rst_n_gpio = slot->data->rst_n_gpio;
1509 slot->cd_gpio = slot->data->cd_gpio;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001510 }
1511
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001512 host->hw_name = "PCI";
Adrian Hunter6bc09062016-10-05 12:11:23 +03001513 host->ops = chip->fixes && chip->fixes->ops ?
1514 chip->fixes->ops :
1515 &sdhci_pci_ops;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001516 host->quirks = chip->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001517 host->quirks2 = chip->quirks2;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001518
1519 host->irq = pdev->irq;
1520
Andy Shevchenkoc10bc372016-08-18 14:59:13 +03001521 ret = pcim_iomap_regions(pdev, BIT(bar), mmc_hostname(host->mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001522 if (ret) {
1523 dev_err(&pdev->dev, "cannot request region\n");
Adrian Hunter52c506f2011-12-27 15:48:43 +02001524 goto cleanup;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001525 }
1526
Andy Shevchenkoc10bc372016-08-18 14:59:13 +03001527 host->ioaddr = pcim_iomap_table(pdev)[bar];
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001528
Pierre Ossman44894282008-04-04 19:36:59 +02001529 if (chip->fixes && chip->fixes->probe_slot) {
1530 ret = chip->fixes->probe_slot(slot);
1531 if (ret)
Andy Shevchenkoc10bc372016-08-18 14:59:13 +03001532 goto cleanup;
Pierre Ossman44894282008-04-04 19:36:59 +02001533 }
1534
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001535 if (gpio_is_valid(slot->rst_n_gpio)) {
Andy Shevchenkoc10bc372016-08-18 14:59:13 +03001536 if (!devm_gpio_request(&pdev->dev, slot->rst_n_gpio, "eMMC_reset")) {
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001537 gpio_direction_output(slot->rst_n_gpio, 1);
1538 slot->host->mmc->caps |= MMC_CAP_HW_RESET;
Adrian Hunterc9faff62013-06-13 11:50:26 +03001539 slot->hw_reset = sdhci_pci_gpio_hw_reset;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001540 } else {
1541 dev_warn(&pdev->dev, "failed to request rst_n_gpio\n");
1542 slot->rst_n_gpio = -EINVAL;
1543 }
1544 }
1545
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001546 host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ;
Aaron Lueed222a2013-03-05 11:24:52 +08001547 host->mmc->slotno = slotno;
Adrian Huntera08b17b2013-04-15 11:27:25 -04001548 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001549
David E. Box8f743d02016-11-22 11:03:38 +02001550 if (slot->cd_idx >= 0) {
Andy Shevchenko6ac9b832017-01-02 14:05:24 +02001551 ret = mmc_gpiod_request_cd(host->mmc, NULL, slot->cd_idx,
David E. Box8f743d02016-11-22 11:03:38 +02001552 slot->cd_override_level, 0, NULL);
1553 if (ret == -EPROBE_DEFER)
1554 goto remove;
1555
1556 if (ret) {
1557 dev_warn(&pdev->dev, "failed to setup card detect gpio\n");
1558 slot->cd_idx = -1;
1559 }
Adrian Hunterff59c522014-09-24 10:27:31 +03001560 }
1561
Adrian Hunter61c951d2017-03-20 19:50:48 +02001562 if (chip->fixes && chip->fixes->add_host)
1563 ret = chip->fixes->add_host(slot);
1564 else
1565 ret = sdhci_add_host(host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001566 if (ret)
Pierre Ossman44894282008-04-04 19:36:59 +02001567 goto remove;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001568
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001569 sdhci_pci_add_own_cd(slot);
1570
Adrian Hunter77a01222014-01-13 09:49:16 +02001571 /*
1572 * Check if the chip needs a separate GPIO for card detect to wake up
1573 * from runtime suspend. If it is not there, don't allow runtime PM.
1574 * Note sdhci_pci_add_own_cd() sets slot->cd_gpio to -EINVAL on failure.
1575 */
Adrian Hunter945be382014-01-21 09:52:39 +02001576 if (chip->fixes && chip->fixes->own_cd_for_runtime_pm &&
Adrian Hunterff59c522014-09-24 10:27:31 +03001577 !gpio_is_valid(slot->cd_gpio) && slot->cd_idx < 0)
Adrian Hunter77a01222014-01-13 09:49:16 +02001578 chip->allow_runtime_pm = false;
1579
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001580 return slot;
1581
Pierre Ossman44894282008-04-04 19:36:59 +02001582remove:
1583 if (chip->fixes && chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001584 chip->fixes->remove_slot(slot, 0);
Pierre Ossman44894282008-04-04 19:36:59 +02001585
Adrian Hunter52c506f2011-12-27 15:48:43 +02001586cleanup:
1587 if (slot->data && slot->data->cleanup)
1588 slot->data->cleanup(slot->data);
1589
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001590free:
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001591 sdhci_free_host(host);
1592
1593 return ERR_PTR(ret);
1594}
1595
1596static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
1597{
Pierre Ossman1e728592008-04-16 19:13:13 +02001598 int dead;
1599 u32 scratch;
1600
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001601 sdhci_pci_remove_own_cd(slot);
1602
Pierre Ossman1e728592008-04-16 19:13:13 +02001603 dead = 0;
1604 scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
1605 if (scratch == (u32)-1)
1606 dead = 1;
1607
1608 sdhci_remove_host(slot->host, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001609
1610 if (slot->chip->fixes && slot->chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001611 slot->chip->fixes->remove_slot(slot, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001612
Adrian Hunter52c506f2011-12-27 15:48:43 +02001613 if (slot->data && slot->data->cleanup)
1614 slot->data->cleanup(slot->data);
1615
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001616 sdhci_free_host(slot->host);
1617}
1618
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001619static void sdhci_pci_runtime_pm_allow(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001620{
Adrian Hunter00884b62016-06-29 16:24:19 +03001621 pm_suspend_ignore_children(dev, 1);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001622 pm_runtime_set_autosuspend_delay(dev, 50);
1623 pm_runtime_use_autosuspend(dev);
Adrian Hunter00884b62016-06-29 16:24:19 +03001624 pm_runtime_allow(dev);
1625 /* Stay active until mmc core scans for a card */
1626 pm_runtime_put_noidle(dev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001627}
1628
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001629static void sdhci_pci_runtime_pm_forbid(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001630{
1631 pm_runtime_forbid(dev);
1632 pm_runtime_get_noresume(dev);
1633}
1634
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001635static int sdhci_pci_probe(struct pci_dev *pdev,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001636 const struct pci_device_id *ent)
1637{
1638 struct sdhci_pci_chip *chip;
1639 struct sdhci_pci_slot *slot;
1640
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001641 u8 slots, first_bar;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001642 int ret, i;
1643
1644 BUG_ON(pdev == NULL);
1645 BUG_ON(ent == NULL);
1646
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001647 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001648 (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001649
1650 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
1651 if (ret)
1652 return ret;
1653
1654 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
1655 dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
1656 if (slots == 0)
1657 return -ENODEV;
1658
1659 BUG_ON(slots > MAX_SLOTS);
1660
1661 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
1662 if (ret)
1663 return ret;
1664
1665 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
1666
1667 if (first_bar > 5) {
1668 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
1669 return -ENODEV;
1670 }
1671
Andy Shevchenko52ac7ac2016-07-09 16:41:43 +03001672 ret = pcim_enable_device(pdev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001673 if (ret)
1674 return ret;
1675
Andy Shevchenko52ac7ac2016-07-09 16:41:43 +03001676 chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
1677 if (!chip)
1678 return -ENOMEM;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001679
1680 chip->pdev = pdev;
Ameya Palandeb177bc92011-04-05 21:13:13 +03001681 chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001682 if (chip->fixes) {
Pierre Ossman22606402008-03-23 19:33:23 +01001683 chip->quirks = chip->fixes->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001684 chip->quirks2 = chip->fixes->quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001685 chip->allow_runtime_pm = chip->fixes->allow_runtime_pm;
1686 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001687 chip->num_slots = slots;
Adrian Hunterd38dcad2017-03-20 19:50:32 +02001688 chip->pm_retune = true;
1689 chip->rpm_retune = true;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001690
1691 pci_set_drvdata(pdev, chip);
1692
Pierre Ossman22606402008-03-23 19:33:23 +01001693 if (chip->fixes && chip->fixes->probe) {
1694 ret = chip->fixes->probe(chip);
1695 if (ret)
Andy Shevchenko52ac7ac2016-07-09 16:41:43 +03001696 return ret;
Pierre Ossman22606402008-03-23 19:33:23 +01001697 }
1698
Alan Cox225d85f2010-10-04 15:24:21 +01001699 slots = chip->num_slots; /* Quirk may have changed this */
1700
Ameya Palandeb177bc92011-04-05 21:13:13 +03001701 for (i = 0; i < slots; i++) {
Adrian Hunter52c506f2011-12-27 15:48:43 +02001702 slot = sdhci_pci_probe_slot(pdev, chip, first_bar, i);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001703 if (IS_ERR(slot)) {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001704 for (i--; i >= 0; i--)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001705 sdhci_pci_remove_slot(chip->slots[i]);
Andy Shevchenko52ac7ac2016-07-09 16:41:43 +03001706 return PTR_ERR(slot);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001707 }
1708
1709 chip->slots[i] = slot;
1710 }
1711
Adrian Hunterc43fd772011-10-17 10:52:44 +03001712 if (chip->allow_runtime_pm)
1713 sdhci_pci_runtime_pm_allow(&pdev->dev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001714
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001715 return 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001716}
1717
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001718static void sdhci_pci_remove(struct pci_dev *pdev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001719{
1720 int i;
Andy Shevchenko52ac7ac2016-07-09 16:41:43 +03001721 struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001722
Andy Shevchenko52ac7ac2016-07-09 16:41:43 +03001723 if (chip->allow_runtime_pm)
1724 sdhci_pci_runtime_pm_forbid(&pdev->dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001725
Andy Shevchenko52ac7ac2016-07-09 16:41:43 +03001726 for (i = 0; i < chip->num_slots; i++)
1727 sdhci_pci_remove_slot(chip->slots[i]);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001728}
1729
1730static struct pci_driver sdhci_driver = {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001731 .name = "sdhci-pci",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001732 .id_table = pci_ids,
Ameya Palandeb177bc92011-04-05 21:13:13 +03001733 .probe = sdhci_pci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001734 .remove = sdhci_pci_remove,
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001735 .driver = {
1736 .pm = &sdhci_pci_pm_ops
1737 },
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001738};
1739
Sachin Kamatacc69642012-08-27 11:57:02 +05301740module_pci_driver(sdhci_driver);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001741
Pierre Ossman32710e82009-04-08 20:14:54 +02001742MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001743MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
1744MODULE_LICENSE("GPL");