GNU Linux-libre 4.14.294-gnu1
[releases.git] / drivers / mmc / host / sdhci-pci-core.c
1 /*  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
15 #include <linux/string.h>
16 #include <linux/delay.h>
17 #include <linux/highmem.h>
18 #include <linux/module.h>
19 #include <linux/pci.h>
20 #include <linux/dma-mapping.h>
21 #include <linux/slab.h>
22 #include <linux/device.h>
23 #include <linux/mmc/host.h>
24 #include <linux/mmc/mmc.h>
25 #include <linux/scatterlist.h>
26 #include <linux/io.h>
27 #include <linux/gpio.h>
28 #include <linux/pm_runtime.h>
29 #include <linux/mmc/slot-gpio.h>
30 #include <linux/mmc/sdhci-pci-data.h>
31 #include <linux/acpi.h>
32
33 #include "sdhci.h"
34 #include "sdhci-pci.h"
35 #include "sdhci-pci-o2micro.h"
36
37 static int sdhci_pci_enable_dma(struct sdhci_host *host);
38 static void sdhci_pci_hw_reset(struct sdhci_host *host);
39
40 #ifdef CONFIG_PM_SLEEP
41 static int __sdhci_pci_suspend_host(struct sdhci_pci_chip *chip)
42 {
43         int i, ret;
44
45         for (i = 0; i < chip->num_slots; i++) {
46                 struct sdhci_pci_slot *slot = chip->slots[i];
47                 struct sdhci_host *host;
48
49                 if (!slot)
50                         continue;
51
52                 host = slot->host;
53
54                 if (chip->pm_retune && host->tuning_mode != SDHCI_TUNING_MODE_3)
55                         mmc_retune_needed(host->mmc);
56
57                 ret = sdhci_suspend_host(host);
58                 if (ret)
59                         goto err_pci_suspend;
60
61                 if (host->mmc->pm_flags & MMC_PM_WAKE_SDIO_IRQ)
62                         sdhci_enable_irq_wakeups(host);
63         }
64
65         return 0;
66
67 err_pci_suspend:
68         while (--i >= 0)
69                 sdhci_resume_host(chip->slots[i]->host);
70         return ret;
71 }
72
73 static int sdhci_pci_init_wakeup(struct sdhci_pci_chip *chip)
74 {
75         mmc_pm_flag_t pm_flags = 0;
76         int i;
77
78         for (i = 0; i < chip->num_slots; i++) {
79                 struct sdhci_pci_slot *slot = chip->slots[i];
80
81                 if (slot)
82                         pm_flags |= slot->host->mmc->pm_flags;
83         }
84
85         return device_init_wakeup(&chip->pdev->dev,
86                                   (pm_flags & MMC_PM_KEEP_POWER) &&
87                                   (pm_flags & MMC_PM_WAKE_SDIO_IRQ));
88 }
89
90 static int sdhci_pci_suspend_host(struct sdhci_pci_chip *chip)
91 {
92         int ret;
93
94         ret = __sdhci_pci_suspend_host(chip);
95         if (ret)
96                 return ret;
97
98         sdhci_pci_init_wakeup(chip);
99
100         return 0;
101 }
102
103 int sdhci_pci_resume_host(struct sdhci_pci_chip *chip)
104 {
105         struct sdhci_pci_slot *slot;
106         int i, ret;
107
108         for (i = 0; i < chip->num_slots; i++) {
109                 slot = chip->slots[i];
110                 if (!slot)
111                         continue;
112
113                 ret = sdhci_resume_host(slot->host);
114                 if (ret)
115                         return ret;
116         }
117
118         return 0;
119 }
120 #endif
121
122 #ifdef CONFIG_PM
123 static int sdhci_pci_runtime_suspend_host(struct sdhci_pci_chip *chip)
124 {
125         struct sdhci_pci_slot *slot;
126         struct sdhci_host *host;
127         int i, ret;
128
129         for (i = 0; i < chip->num_slots; i++) {
130                 slot = chip->slots[i];
131                 if (!slot)
132                         continue;
133
134                 host = slot->host;
135
136                 ret = sdhci_runtime_suspend_host(host);
137                 if (ret)
138                         goto err_pci_runtime_suspend;
139
140                 if (chip->rpm_retune &&
141                     host->tuning_mode != SDHCI_TUNING_MODE_3)
142                         mmc_retune_needed(host->mmc);
143         }
144
145         return 0;
146
147 err_pci_runtime_suspend:
148         while (--i >= 0)
149                 sdhci_runtime_resume_host(chip->slots[i]->host);
150         return ret;
151 }
152
153 static int sdhci_pci_runtime_resume_host(struct sdhci_pci_chip *chip)
154 {
155         struct sdhci_pci_slot *slot;
156         int i, ret;
157
158         for (i = 0; i < chip->num_slots; i++) {
159                 slot = chip->slots[i];
160                 if (!slot)
161                         continue;
162
163                 ret = sdhci_runtime_resume_host(slot->host);
164                 if (ret)
165                         return ret;
166         }
167
168         return 0;
169 }
170 #endif
171
172 /*****************************************************************************\
173  *                                                                           *
174  * Hardware specific quirk handling                                          *
175  *                                                                           *
176 \*****************************************************************************/
177
178 static int ricoh_probe(struct sdhci_pci_chip *chip)
179 {
180         if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG ||
181             chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY)
182                 chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
183         return 0;
184 }
185
186 static int ricoh_mmc_probe_slot(struct sdhci_pci_slot *slot)
187 {
188         slot->host->caps =
189                 ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT)
190                         & SDHCI_TIMEOUT_CLK_MASK) |
191
192                 ((0x21 << SDHCI_CLOCK_BASE_SHIFT)
193                         & SDHCI_CLOCK_BASE_MASK) |
194
195                 SDHCI_TIMEOUT_CLK_UNIT |
196                 SDHCI_CAN_VDD_330 |
197                 SDHCI_CAN_DO_HISPD |
198                 SDHCI_CAN_DO_SDMA;
199         return 0;
200 }
201
202 #ifdef CONFIG_PM_SLEEP
203 static int ricoh_mmc_resume(struct sdhci_pci_chip *chip)
204 {
205         /* Apply a delay to allow controller to settle */
206         /* Otherwise it becomes confused if card state changed
207                 during suspend */
208         msleep(500);
209         return sdhci_pci_resume_host(chip);
210 }
211 #endif
212
213 static const struct sdhci_pci_fixes sdhci_ricoh = {
214         .probe          = ricoh_probe,
215         .quirks         = SDHCI_QUIRK_32BIT_DMA_ADDR |
216                           SDHCI_QUIRK_FORCE_DMA |
217                           SDHCI_QUIRK_CLOCK_BEFORE_RESET,
218 };
219
220 static const struct sdhci_pci_fixes sdhci_ricoh_mmc = {
221         .probe_slot     = ricoh_mmc_probe_slot,
222 #ifdef CONFIG_PM_SLEEP
223         .resume         = ricoh_mmc_resume,
224 #endif
225         .quirks         = SDHCI_QUIRK_32BIT_DMA_ADDR |
226                           SDHCI_QUIRK_CLOCK_BEFORE_RESET |
227                           SDHCI_QUIRK_NO_CARD_NO_RESET |
228                           SDHCI_QUIRK_MISSING_CAPS
229 };
230
231 static const struct sdhci_pci_fixes sdhci_ene_712 = {
232         .quirks         = SDHCI_QUIRK_SINGLE_POWER_WRITE |
233                           SDHCI_QUIRK_BROKEN_DMA,
234 };
235
236 static const struct sdhci_pci_fixes sdhci_ene_714 = {
237         .quirks         = SDHCI_QUIRK_SINGLE_POWER_WRITE |
238                           SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS |
239                           SDHCI_QUIRK_BROKEN_DMA,
240 };
241
242 static const struct sdhci_pci_fixes sdhci_cafe = {
243         .quirks         = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
244                           SDHCI_QUIRK_NO_BUSY_IRQ |
245                           SDHCI_QUIRK_BROKEN_CARD_DETECTION |
246                           SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
247 };
248
249 static const struct sdhci_pci_fixes sdhci_intel_qrk = {
250         .quirks         = SDHCI_QUIRK_NO_HISPD_BIT,
251 };
252
253 static int mrst_hc_probe_slot(struct sdhci_pci_slot *slot)
254 {
255         slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
256         return 0;
257 }
258
259 /*
260  * ADMA operation is disabled for Moorestown platform due to
261  * hardware bugs.
262  */
263 static int mrst_hc_probe(struct sdhci_pci_chip *chip)
264 {
265         /*
266          * slots number is fixed here for MRST as SDIO3/5 are never used and
267          * have hardware bugs.
268          */
269         chip->num_slots = 1;
270         return 0;
271 }
272
273 static int pch_hc_probe_slot(struct sdhci_pci_slot *slot)
274 {
275         slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
276         return 0;
277 }
278
279 #ifdef CONFIG_PM
280
281 static irqreturn_t sdhci_pci_sd_cd(int irq, void *dev_id)
282 {
283         struct sdhci_pci_slot *slot = dev_id;
284         struct sdhci_host *host = slot->host;
285
286         mmc_detect_change(host->mmc, msecs_to_jiffies(200));
287         return IRQ_HANDLED;
288 }
289
290 static void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
291 {
292         int err, irq, gpio = slot->cd_gpio;
293
294         slot->cd_gpio = -EINVAL;
295         slot->cd_irq = -EINVAL;
296
297         if (!gpio_is_valid(gpio))
298                 return;
299
300         err = devm_gpio_request(&slot->chip->pdev->dev, gpio, "sd_cd");
301         if (err < 0)
302                 goto out;
303
304         err = gpio_direction_input(gpio);
305         if (err < 0)
306                 goto out_free;
307
308         irq = gpio_to_irq(gpio);
309         if (irq < 0)
310                 goto out_free;
311
312         err = request_irq(irq, sdhci_pci_sd_cd, IRQF_TRIGGER_RISING |
313                           IRQF_TRIGGER_FALLING, "sd_cd", slot);
314         if (err)
315                 goto out_free;
316
317         slot->cd_gpio = gpio;
318         slot->cd_irq = irq;
319
320         return;
321
322 out_free:
323         devm_gpio_free(&slot->chip->pdev->dev, gpio);
324 out:
325         dev_warn(&slot->chip->pdev->dev, "failed to setup card detect wake up\n");
326 }
327
328 static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
329 {
330         if (slot->cd_irq >= 0)
331                 free_irq(slot->cd_irq, slot);
332 }
333
334 #else
335
336 static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
337 {
338 }
339
340 static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
341 {
342 }
343
344 #endif
345
346 static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot)
347 {
348         slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
349         slot->host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC;
350         return 0;
351 }
352
353 static int mfd_sdio_probe_slot(struct sdhci_pci_slot *slot)
354 {
355         slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
356         return 0;
357 }
358
359 static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = {
360         .quirks         = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
361         .probe_slot     = mrst_hc_probe_slot,
362 };
363
364 static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = {
365         .quirks         = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
366         .probe          = mrst_hc_probe,
367 };
368
369 static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = {
370         .quirks         = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
371         .allow_runtime_pm = true,
372         .own_cd_for_runtime_pm = true,
373 };
374
375 static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio = {
376         .quirks         = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
377         .quirks2        = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
378         .allow_runtime_pm = true,
379         .probe_slot     = mfd_sdio_probe_slot,
380 };
381
382 static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc = {
383         .quirks         = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
384         .allow_runtime_pm = true,
385         .probe_slot     = mfd_emmc_probe_slot,
386 };
387
388 static const struct sdhci_pci_fixes sdhci_intel_pch_sdio = {
389         .quirks         = SDHCI_QUIRK_BROKEN_ADMA,
390         .probe_slot     = pch_hc_probe_slot,
391 };
392
393 enum {
394         INTEL_DSM_FNS           =  0,
395         INTEL_DSM_V18_SWITCH    =  3,
396         INTEL_DSM_DRV_STRENGTH  =  9,
397         INTEL_DSM_D3_RETUNE     = 10,
398 };
399
400 struct intel_host {
401         u32     dsm_fns;
402         int     drv_strength;
403         bool    d3_retune;
404 };
405
406 static const guid_t intel_dsm_guid =
407         GUID_INIT(0xF6C13EA5, 0x65CD, 0x461F,
408                   0xAB, 0x7A, 0x29, 0xF7, 0xE8, 0xD5, 0xBD, 0x61);
409
410 static int __intel_dsm(struct intel_host *intel_host, struct device *dev,
411                        unsigned int fn, u32 *result)
412 {
413         union acpi_object *obj;
414         int err = 0;
415         size_t len;
416
417         obj = acpi_evaluate_dsm(ACPI_HANDLE(dev), &intel_dsm_guid, 0, fn, NULL);
418         if (!obj)
419                 return -EOPNOTSUPP;
420
421         if (obj->type != ACPI_TYPE_BUFFER || obj->buffer.length < 1) {
422                 err = -EINVAL;
423                 goto out;
424         }
425
426         len = min_t(size_t, obj->buffer.length, 4);
427
428         *result = 0;
429         memcpy(result, obj->buffer.pointer, len);
430 out:
431         ACPI_FREE(obj);
432
433         return err;
434 }
435
436 static int intel_dsm(struct intel_host *intel_host, struct device *dev,
437                      unsigned int fn, u32 *result)
438 {
439         if (fn > 31 || !(intel_host->dsm_fns & (1 << fn)))
440                 return -EOPNOTSUPP;
441
442         return __intel_dsm(intel_host, dev, fn, result);
443 }
444
445 static void intel_dsm_init(struct intel_host *intel_host, struct device *dev,
446                            struct mmc_host *mmc)
447 {
448         int err;
449         u32 val;
450
451         intel_host->d3_retune = true;
452
453         err = __intel_dsm(intel_host, dev, INTEL_DSM_FNS, &intel_host->dsm_fns);
454         if (err) {
455                 pr_debug("%s: DSM not supported, error %d\n",
456                          mmc_hostname(mmc), err);
457                 return;
458         }
459
460         pr_debug("%s: DSM function mask %#x\n",
461                  mmc_hostname(mmc), intel_host->dsm_fns);
462
463         err = intel_dsm(intel_host, dev, INTEL_DSM_DRV_STRENGTH, &val);
464         intel_host->drv_strength = err ? 0 : val;
465
466         err = intel_dsm(intel_host, dev, INTEL_DSM_D3_RETUNE, &val);
467         intel_host->d3_retune = err ? true : !!val;
468 }
469
470 static void sdhci_pci_int_hw_reset(struct sdhci_host *host)
471 {
472         u8 reg;
473
474         reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
475         reg |= 0x10;
476         sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
477         /* For eMMC, minimum is 1us but give it 9us for good measure */
478         udelay(9);
479         reg &= ~0x10;
480         sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
481         /* For eMMC, minimum is 200us but give it 300us for good measure */
482         usleep_range(300, 1000);
483 }
484
485 static int intel_select_drive_strength(struct mmc_card *card,
486                                        unsigned int max_dtr, int host_drv,
487                                        int card_drv, int *drv_type)
488 {
489         struct sdhci_host *host = mmc_priv(card->host);
490         struct sdhci_pci_slot *slot = sdhci_priv(host);
491         struct intel_host *intel_host = sdhci_pci_priv(slot);
492
493         if (!(mmc_driver_type_mask(intel_host->drv_strength) & card_drv))
494                 return 0;
495
496         return intel_host->drv_strength;
497 }
498
499 static int bxt_get_cd(struct mmc_host *mmc)
500 {
501         int gpio_cd = mmc_gpio_get_cd(mmc);
502         struct sdhci_host *host = mmc_priv(mmc);
503         unsigned long flags;
504         int ret = 0;
505
506         if (!gpio_cd)
507                 return 0;
508
509         spin_lock_irqsave(&host->lock, flags);
510
511         if (host->flags & SDHCI_DEVICE_DEAD)
512                 goto out;
513
514         ret = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
515 out:
516         spin_unlock_irqrestore(&host->lock, flags);
517
518         return ret;
519 }
520
521 #define SDHCI_INTEL_PWR_TIMEOUT_CNT     20
522 #define SDHCI_INTEL_PWR_TIMEOUT_UDELAY  100
523
524 static void sdhci_intel_set_power(struct sdhci_host *host, unsigned char mode,
525                                   unsigned short vdd)
526 {
527         int cntr;
528         u8 reg;
529
530         sdhci_set_power(host, mode, vdd);
531
532         if (mode == MMC_POWER_OFF)
533                 return;
534
535         /*
536          * Bus power might not enable after D3 -> D0 transition due to the
537          * present state not yet having propagated. Retry for up to 2ms.
538          */
539         for (cntr = 0; cntr < SDHCI_INTEL_PWR_TIMEOUT_CNT; cntr++) {
540                 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
541                 if (reg & SDHCI_POWER_ON)
542                         break;
543                 udelay(SDHCI_INTEL_PWR_TIMEOUT_UDELAY);
544                 reg |= SDHCI_POWER_ON;
545                 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
546         }
547 }
548
549 #define INTEL_HS400_ES_REG 0x78
550 #define INTEL_HS400_ES_BIT BIT(0)
551
552 static void intel_hs400_enhanced_strobe(struct mmc_host *mmc,
553                                         struct mmc_ios *ios)
554 {
555         struct sdhci_host *host = mmc_priv(mmc);
556         u32 val;
557
558         val = sdhci_readl(host, INTEL_HS400_ES_REG);
559         if (ios->enhanced_strobe)
560                 val |= INTEL_HS400_ES_BIT;
561         else
562                 val &= ~INTEL_HS400_ES_BIT;
563         sdhci_writel(host, val, INTEL_HS400_ES_REG);
564 }
565
566 static void sdhci_intel_voltage_switch(struct sdhci_host *host)
567 {
568         struct sdhci_pci_slot *slot = sdhci_priv(host);
569         struct intel_host *intel_host = sdhci_pci_priv(slot);
570         struct device *dev = &slot->chip->pdev->dev;
571         u32 result = 0;
572         int err;
573
574         err = intel_dsm(intel_host, dev, INTEL_DSM_V18_SWITCH, &result);
575         pr_debug("%s: %s DSM error %d result %u\n",
576                  mmc_hostname(host->mmc), __func__, err, result);
577 }
578
579 static const struct sdhci_ops sdhci_intel_byt_ops = {
580         .set_clock              = sdhci_set_clock,
581         .set_power              = sdhci_intel_set_power,
582         .enable_dma             = sdhci_pci_enable_dma,
583         .set_bus_width          = sdhci_set_bus_width,
584         .reset                  = sdhci_reset,
585         .set_uhs_signaling      = sdhci_set_uhs_signaling,
586         .hw_reset               = sdhci_pci_hw_reset,
587         .voltage_switch         = sdhci_intel_voltage_switch,
588 };
589
590 static void byt_read_dsm(struct sdhci_pci_slot *slot)
591 {
592         struct intel_host *intel_host = sdhci_pci_priv(slot);
593         struct device *dev = &slot->chip->pdev->dev;
594         struct mmc_host *mmc = slot->host->mmc;
595
596         intel_dsm_init(intel_host, dev, mmc);
597         slot->chip->rpm_retune = intel_host->d3_retune;
598 }
599
600 static int intel_execute_tuning(struct mmc_host *mmc, u32 opcode)
601 {
602         int err = sdhci_execute_tuning(mmc, opcode);
603         struct sdhci_host *host = mmc_priv(mmc);
604
605         if (err)
606                 return err;
607
608         /*
609          * Tuning can leave the IP in an active state (Buffer Read Enable bit
610          * set) which prevents the entry to low power states (i.e. S0i3). Data
611          * reset will clear it.
612          */
613         sdhci_reset(host, SDHCI_RESET_DATA);
614
615         return 0;
616 }
617
618 static void byt_probe_slot(struct sdhci_pci_slot *slot)
619 {
620         struct mmc_host_ops *ops = &slot->host->mmc_host_ops;
621
622         byt_read_dsm(slot);
623
624         ops->execute_tuning = intel_execute_tuning;
625 }
626
627 static int byt_emmc_probe_slot(struct sdhci_pci_slot *slot)
628 {
629         byt_probe_slot(slot);
630         slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
631                                  MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
632                                  MMC_CAP_CMD_DURING_TFR |
633                                  MMC_CAP_WAIT_WHILE_BUSY;
634         slot->hw_reset = sdhci_pci_int_hw_reset;
635         if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BSW_EMMC)
636                 slot->host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
637         slot->host->mmc_host_ops.select_drive_strength =
638                                                 intel_select_drive_strength;
639         return 0;
640 }
641
642 static int glk_emmc_probe_slot(struct sdhci_pci_slot *slot)
643 {
644         int ret = byt_emmc_probe_slot(slot);
645
646         if (slot->chip->pdev->device != PCI_DEVICE_ID_INTEL_GLK_EMMC) {
647                 slot->host->mmc->caps2 |= MMC_CAP2_HS400_ES,
648                 slot->host->mmc_host_ops.hs400_enhanced_strobe =
649                                                 intel_hs400_enhanced_strobe;
650         }
651
652         return ret;
653 }
654
655 #ifdef CONFIG_ACPI
656 static int ni_set_max_freq(struct sdhci_pci_slot *slot)
657 {
658         acpi_status status;
659         unsigned long long max_freq;
660
661         status = acpi_evaluate_integer(ACPI_HANDLE(&slot->chip->pdev->dev),
662                                        "MXFQ", NULL, &max_freq);
663         if (ACPI_FAILURE(status)) {
664                 dev_err(&slot->chip->pdev->dev,
665                         "MXFQ not found in acpi table\n");
666                 return -EINVAL;
667         }
668
669         slot->host->mmc->f_max = max_freq * 1000000;
670
671         return 0;
672 }
673 #else
674 static inline int ni_set_max_freq(struct sdhci_pci_slot *slot)
675 {
676         return 0;
677 }
678 #endif
679
680 static int ni_byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
681 {
682         int err;
683
684         byt_probe_slot(slot);
685
686         err = ni_set_max_freq(slot);
687         if (err)
688                 return err;
689
690         slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE |
691                                  MMC_CAP_WAIT_WHILE_BUSY;
692         return 0;
693 }
694
695 static int byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
696 {
697         byt_probe_slot(slot);
698         slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE |
699                                  MMC_CAP_WAIT_WHILE_BUSY;
700         return 0;
701 }
702
703 static int byt_sd_probe_slot(struct sdhci_pci_slot *slot)
704 {
705         byt_probe_slot(slot);
706         slot->host->mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY |
707                                  MMC_CAP_AGGRESSIVE_PM | MMC_CAP_CD_WAKE;
708         slot->cd_idx = 0;
709         slot->cd_override_level = true;
710         if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BXT_SD ||
711             slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BXTM_SD ||
712             slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_APL_SD ||
713             slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_GLK_SD)
714                 slot->host->mmc_host_ops.get_cd = bxt_get_cd;
715
716         return 0;
717 }
718
719 static const struct sdhci_pci_fixes sdhci_intel_byt_emmc = {
720         .allow_runtime_pm = true,
721         .probe_slot     = byt_emmc_probe_slot,
722         .quirks         = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
723         .quirks2        = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
724                           SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 |
725                           SDHCI_QUIRK2_STOP_WITH_TC,
726         .ops            = &sdhci_intel_byt_ops,
727         .priv_size      = sizeof(struct intel_host),
728 };
729
730 static const struct sdhci_pci_fixes sdhci_intel_glk_emmc = {
731         .allow_runtime_pm       = true,
732         .probe_slot             = glk_emmc_probe_slot,
733         .quirks                 = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
734         .quirks2                = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
735                                   SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 |
736                                   SDHCI_QUIRK2_STOP_WITH_TC,
737         .ops                    = &sdhci_intel_byt_ops,
738         .priv_size              = sizeof(struct intel_host),
739 };
740
741 static const struct sdhci_pci_fixes sdhci_ni_byt_sdio = {
742         .quirks         = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
743         .quirks2        = SDHCI_QUIRK2_HOST_OFF_CARD_ON |
744                           SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
745         .allow_runtime_pm = true,
746         .probe_slot     = ni_byt_sdio_probe_slot,
747         .ops            = &sdhci_intel_byt_ops,
748         .priv_size      = sizeof(struct intel_host),
749 };
750
751 static const struct sdhci_pci_fixes sdhci_intel_byt_sdio = {
752         .quirks         = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
753         .quirks2        = SDHCI_QUIRK2_HOST_OFF_CARD_ON |
754                         SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
755         .allow_runtime_pm = true,
756         .probe_slot     = byt_sdio_probe_slot,
757         .ops            = &sdhci_intel_byt_ops,
758         .priv_size      = sizeof(struct intel_host),
759 };
760
761 static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
762         .quirks         = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
763         .quirks2        = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
764                           SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
765                           SDHCI_QUIRK2_STOP_WITH_TC,
766         .allow_runtime_pm = true,
767         .own_cd_for_runtime_pm = true,
768         .probe_slot     = byt_sd_probe_slot,
769         .ops            = &sdhci_intel_byt_ops,
770         .priv_size      = sizeof(struct intel_host),
771 };
772
773 /* Define Host controllers for Intel Merrifield platform */
774 #define INTEL_MRFLD_EMMC_0      0
775 #define INTEL_MRFLD_EMMC_1      1
776 #define INTEL_MRFLD_SD          2
777 #define INTEL_MRFLD_SDIO        3
778
779 #ifdef CONFIG_ACPI
780 static void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot)
781 {
782         struct acpi_device *device, *child;
783
784         device = ACPI_COMPANION(&slot->chip->pdev->dev);
785         if (!device)
786                 return;
787
788         acpi_device_fix_up_power(device);
789         list_for_each_entry(child, &device->children, node)
790                 if (child->status.present && child->status.enabled)
791                         acpi_device_fix_up_power(child);
792 }
793 #else
794 static inline void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot) {}
795 #endif
796
797 static int intel_mrfld_mmc_probe_slot(struct sdhci_pci_slot *slot)
798 {
799         unsigned int func = PCI_FUNC(slot->chip->pdev->devfn);
800
801         switch (func) {
802         case INTEL_MRFLD_EMMC_0:
803         case INTEL_MRFLD_EMMC_1:
804                 slot->host->mmc->caps |= MMC_CAP_NONREMOVABLE |
805                                          MMC_CAP_8_BIT_DATA |
806                                          MMC_CAP_1_8V_DDR;
807                 break;
808         case INTEL_MRFLD_SD:
809                 slot->host->quirks2 |= SDHCI_QUIRK2_NO_1_8_V;
810                 break;
811         case INTEL_MRFLD_SDIO:
812                 /* Advertise 2.0v for compatibility with the SDIO card's OCR */
813                 slot->host->ocr_mask = MMC_VDD_20_21 | MMC_VDD_165_195;
814                 slot->host->mmc->caps |= MMC_CAP_NONREMOVABLE |
815                                          MMC_CAP_POWER_OFF_CARD;
816                 break;
817         default:
818                 return -ENODEV;
819         }
820
821         intel_mrfld_mmc_fix_up_power_slot(slot);
822         return 0;
823 }
824
825 static const struct sdhci_pci_fixes sdhci_intel_mrfld_mmc = {
826         .quirks         = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
827         .quirks2        = SDHCI_QUIRK2_BROKEN_HS200 |
828                         SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
829         .allow_runtime_pm = true,
830         .probe_slot     = intel_mrfld_mmc_probe_slot,
831 };
832
833 /* O2Micro extra registers */
834 #define O2_SD_LOCK_WP           0xD3
835 #define O2_SD_MULTI_VCC3V       0xEE
836 #define O2_SD_CLKREQ            0xEC
837 #define O2_SD_CAPS              0xE0
838 #define O2_SD_ADMA1             0xE2
839 #define O2_SD_ADMA2             0xE7
840 #define O2_SD_INF_MOD           0xF1
841
842 static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
843 {
844         u8 scratch;
845         int ret;
846
847         ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
848         if (ret)
849                 return ret;
850
851         /*
852          * Turn PMOS on [bit 0], set over current detection to 2.4 V
853          * [bit 1:2] and enable over current debouncing [bit 6].
854          */
855         if (on)
856                 scratch |= 0x47;
857         else
858                 scratch &= ~0x47;
859
860         return pci_write_config_byte(chip->pdev, 0xAE, scratch);
861 }
862
863 static int jmicron_probe(struct sdhci_pci_chip *chip)
864 {
865         int ret;
866         u16 mmcdev = 0;
867
868         if (chip->pdev->revision == 0) {
869                 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
870                           SDHCI_QUIRK_32BIT_DMA_SIZE |
871                           SDHCI_QUIRK_32BIT_ADMA_SIZE |
872                           SDHCI_QUIRK_RESET_AFTER_REQUEST |
873                           SDHCI_QUIRK_BROKEN_SMALL_PIO;
874         }
875
876         /*
877          * JMicron chips can have two interfaces to the same hardware
878          * in order to work around limitations in Microsoft's driver.
879          * We need to make sure we only bind to one of them.
880          *
881          * This code assumes two things:
882          *
883          * 1. The PCI code adds subfunctions in order.
884          *
885          * 2. The MMC interface has a lower subfunction number
886          *    than the SD interface.
887          */
888         if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD)
889                 mmcdev = PCI_DEVICE_ID_JMICRON_JMB38X_MMC;
890         else if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD)
891                 mmcdev = PCI_DEVICE_ID_JMICRON_JMB388_ESD;
892
893         if (mmcdev) {
894                 struct pci_dev *sd_dev;
895
896                 sd_dev = NULL;
897                 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
898                                                 mmcdev, sd_dev)) != NULL) {
899                         if ((PCI_SLOT(chip->pdev->devfn) ==
900                                 PCI_SLOT(sd_dev->devfn)) &&
901                                 (chip->pdev->bus == sd_dev->bus))
902                                 break;
903                 }
904
905                 if (sd_dev) {
906                         pci_dev_put(sd_dev);
907                         dev_info(&chip->pdev->dev, "Refusing to bind to "
908                                 "secondary interface.\n");
909                         return -ENODEV;
910                 }
911         }
912
913         /*
914          * JMicron chips need a bit of a nudge to enable the power
915          * output pins.
916          */
917         ret = jmicron_pmos(chip, 1);
918         if (ret) {
919                 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
920                 return ret;
921         }
922
923         /* quirk for unsable RO-detection on JM388 chips */
924         if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD ||
925             chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
926                 chip->quirks |= SDHCI_QUIRK_UNSTABLE_RO_DETECT;
927
928         return 0;
929 }
930
931 static void jmicron_enable_mmc(struct sdhci_host *host, int on)
932 {
933         u8 scratch;
934
935         scratch = readb(host->ioaddr + 0xC0);
936
937         if (on)
938                 scratch |= 0x01;
939         else
940                 scratch &= ~0x01;
941
942         writeb(scratch, host->ioaddr + 0xC0);
943 }
944
945 static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
946 {
947         if (slot->chip->pdev->revision == 0) {
948                 u16 version;
949
950                 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
951                 version = (version & SDHCI_VENDOR_VER_MASK) >>
952                         SDHCI_VENDOR_VER_SHIFT;
953
954                 /*
955                  * Older versions of the chip have lots of nasty glitches
956                  * in the ADMA engine. It's best just to avoid it
957                  * completely.
958                  */
959                 if (version < 0xAC)
960                         slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
961         }
962
963         /* JM388 MMC doesn't support 1.8V while SD supports it */
964         if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
965                 slot->host->ocr_avail_sd = MMC_VDD_32_33 | MMC_VDD_33_34 |
966                         MMC_VDD_29_30 | MMC_VDD_30_31 |
967                         MMC_VDD_165_195; /* allow 1.8V */
968                 slot->host->ocr_avail_mmc = MMC_VDD_32_33 | MMC_VDD_33_34 |
969                         MMC_VDD_29_30 | MMC_VDD_30_31; /* no 1.8V for MMC */
970         }
971
972         /*
973          * The secondary interface requires a bit set to get the
974          * interrupts.
975          */
976         if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
977             slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
978                 jmicron_enable_mmc(slot->host, 1);
979
980         slot->host->mmc->caps |= MMC_CAP_BUS_WIDTH_TEST;
981
982         return 0;
983 }
984
985 static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
986 {
987         if (dead)
988                 return;
989
990         if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
991             slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
992                 jmicron_enable_mmc(slot->host, 0);
993 }
994
995 #ifdef CONFIG_PM_SLEEP
996 static int jmicron_suspend(struct sdhci_pci_chip *chip)
997 {
998         int i, ret;
999
1000         ret = __sdhci_pci_suspend_host(chip);
1001         if (ret)
1002                 return ret;
1003
1004         if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
1005             chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
1006                 for (i = 0; i < chip->num_slots; i++)
1007                         jmicron_enable_mmc(chip->slots[i]->host, 0);
1008         }
1009
1010         sdhci_pci_init_wakeup(chip);
1011
1012         return 0;
1013 }
1014
1015 static int jmicron_resume(struct sdhci_pci_chip *chip)
1016 {
1017         int ret, i;
1018
1019         if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
1020             chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
1021                 for (i = 0; i < chip->num_slots; i++)
1022                         jmicron_enable_mmc(chip->slots[i]->host, 1);
1023         }
1024
1025         ret = jmicron_pmos(chip, 1);
1026         if (ret) {
1027                 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
1028                 return ret;
1029         }
1030
1031         return sdhci_pci_resume_host(chip);
1032 }
1033 #endif
1034
1035 static const struct sdhci_pci_fixes sdhci_o2 = {
1036         .probe = sdhci_pci_o2_probe,
1037         .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
1038         .quirks2 = SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD,
1039         .probe_slot = sdhci_pci_o2_probe_slot,
1040 #ifdef CONFIG_PM_SLEEP
1041         .resume = sdhci_pci_o2_resume,
1042 #endif
1043 };
1044
1045 static const struct sdhci_pci_fixes sdhci_jmicron = {
1046         .probe          = jmicron_probe,
1047
1048         .probe_slot     = jmicron_probe_slot,
1049         .remove_slot    = jmicron_remove_slot,
1050
1051 #ifdef CONFIG_PM_SLEEP
1052         .suspend        = jmicron_suspend,
1053         .resume         = jmicron_resume,
1054 #endif
1055 };
1056
1057 /* SysKonnect CardBus2SDIO extra registers */
1058 #define SYSKT_CTRL              0x200
1059 #define SYSKT_RDFIFO_STAT       0x204
1060 #define SYSKT_WRFIFO_STAT       0x208
1061 #define SYSKT_POWER_DATA        0x20c
1062 #define   SYSKT_POWER_330       0xef
1063 #define   SYSKT_POWER_300       0xf8
1064 #define   SYSKT_POWER_184       0xcc
1065 #define SYSKT_POWER_CMD         0x20d
1066 #define   SYSKT_POWER_START     (1 << 7)
1067 #define SYSKT_POWER_STATUS      0x20e
1068 #define   SYSKT_POWER_STATUS_OK (1 << 0)
1069 #define SYSKT_BOARD_REV         0x210
1070 #define SYSKT_CHIP_REV          0x211
1071 #define SYSKT_CONF_DATA         0x212
1072 #define   SYSKT_CONF_DATA_1V8   (1 << 2)
1073 #define   SYSKT_CONF_DATA_2V5   (1 << 1)
1074 #define   SYSKT_CONF_DATA_3V3   (1 << 0)
1075
1076 static int syskt_probe(struct sdhci_pci_chip *chip)
1077 {
1078         if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1079                 chip->pdev->class &= ~0x0000FF;
1080                 chip->pdev->class |= PCI_SDHCI_IFDMA;
1081         }
1082         return 0;
1083 }
1084
1085 static int syskt_probe_slot(struct sdhci_pci_slot *slot)
1086 {
1087         int tm, ps;
1088
1089         u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV);
1090         u8  chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV);
1091         dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, "
1092                                          "board rev %d.%d, chip rev %d.%d\n",
1093                                          board_rev >> 4, board_rev & 0xf,
1094                                          chip_rev >> 4,  chip_rev & 0xf);
1095         if (chip_rev >= 0x20)
1096                 slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA;
1097
1098         writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA);
1099         writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD);
1100         udelay(50);
1101         tm = 10;  /* Wait max 1 ms */
1102         do {
1103                 ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS);
1104                 if (ps & SYSKT_POWER_STATUS_OK)
1105                         break;
1106                 udelay(100);
1107         } while (--tm);
1108         if (!tm) {
1109                 dev_err(&slot->chip->pdev->dev,
1110                         "power regulator never stabilized");
1111                 writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD);
1112                 return -ENODEV;
1113         }
1114
1115         return 0;
1116 }
1117
1118 static const struct sdhci_pci_fixes sdhci_syskt = {
1119         .quirks         = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER,
1120         .probe          = syskt_probe,
1121         .probe_slot     = syskt_probe_slot,
1122 };
1123
1124 static int via_probe(struct sdhci_pci_chip *chip)
1125 {
1126         if (chip->pdev->revision == 0x10)
1127                 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
1128
1129         return 0;
1130 }
1131
1132 static const struct sdhci_pci_fixes sdhci_via = {
1133         .probe          = via_probe,
1134 };
1135
1136 static int rtsx_probe_slot(struct sdhci_pci_slot *slot)
1137 {
1138         slot->host->mmc->caps2 |= MMC_CAP2_HS200;
1139         return 0;
1140 }
1141
1142 static const struct sdhci_pci_fixes sdhci_rtsx = {
1143         .quirks2        = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
1144                         SDHCI_QUIRK2_BROKEN_64_BIT_DMA |
1145                         SDHCI_QUIRK2_BROKEN_DDR50,
1146         .probe_slot     = rtsx_probe_slot,
1147 };
1148
1149 /*AMD chipset generation*/
1150 enum amd_chipset_gen {
1151         AMD_CHIPSET_BEFORE_ML,
1152         AMD_CHIPSET_CZ,
1153         AMD_CHIPSET_NL,
1154         AMD_CHIPSET_UNKNOWN,
1155 };
1156
1157 /* AMD registers */
1158 #define AMD_SD_AUTO_PATTERN             0xB8
1159 #define AMD_MSLEEP_DURATION             4
1160 #define AMD_SD_MISC_CONTROL             0xD0
1161 #define AMD_MAX_TUNE_VALUE              0x0B
1162 #define AMD_AUTO_TUNE_SEL               0x10800
1163 #define AMD_FIFO_PTR                    0x30
1164 #define AMD_BIT_MASK                    0x1F
1165
1166 static void amd_tuning_reset(struct sdhci_host *host)
1167 {
1168         unsigned int val;
1169
1170         val = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1171         val |= SDHCI_CTRL_PRESET_VAL_ENABLE | SDHCI_CTRL_EXEC_TUNING;
1172         sdhci_writew(host, val, SDHCI_HOST_CONTROL2);
1173
1174         val = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1175         val &= ~SDHCI_CTRL_EXEC_TUNING;
1176         sdhci_writew(host, val, SDHCI_HOST_CONTROL2);
1177 }
1178
1179 static void amd_config_tuning_phase(struct pci_dev *pdev, u8 phase)
1180 {
1181         unsigned int val;
1182
1183         pci_read_config_dword(pdev, AMD_SD_AUTO_PATTERN, &val);
1184         val &= ~AMD_BIT_MASK;
1185         val |= (AMD_AUTO_TUNE_SEL | (phase << 1));
1186         pci_write_config_dword(pdev, AMD_SD_AUTO_PATTERN, val);
1187 }
1188
1189 static void amd_enable_manual_tuning(struct pci_dev *pdev)
1190 {
1191         unsigned int val;
1192
1193         pci_read_config_dword(pdev, AMD_SD_MISC_CONTROL, &val);
1194         val |= AMD_FIFO_PTR;
1195         pci_write_config_dword(pdev, AMD_SD_MISC_CONTROL, val);
1196 }
1197
1198 static int amd_execute_tuning_hs200(struct sdhci_host *host, u32 opcode)
1199 {
1200         struct sdhci_pci_slot *slot = sdhci_priv(host);
1201         struct pci_dev *pdev = slot->chip->pdev;
1202         u8 valid_win = 0;
1203         u8 valid_win_max = 0;
1204         u8 valid_win_end = 0;
1205         u8 ctrl, tune_around;
1206
1207         amd_tuning_reset(host);
1208
1209         for (tune_around = 0; tune_around < 12; tune_around++) {
1210                 amd_config_tuning_phase(pdev, tune_around);
1211
1212                 if (mmc_send_tuning(host->mmc, opcode, NULL)) {
1213                         valid_win = 0;
1214                         msleep(AMD_MSLEEP_DURATION);
1215                         ctrl = SDHCI_RESET_CMD | SDHCI_RESET_DATA;
1216                         sdhci_writeb(host, ctrl, SDHCI_SOFTWARE_RESET);
1217                 } else if (++valid_win > valid_win_max) {
1218                         valid_win_max = valid_win;
1219                         valid_win_end = tune_around;
1220                 }
1221         }
1222
1223         if (!valid_win_max) {
1224                 dev_err(&pdev->dev, "no tuning point found\n");
1225                 return -EIO;
1226         }
1227
1228         amd_config_tuning_phase(pdev, valid_win_end - valid_win_max / 2);
1229
1230         amd_enable_manual_tuning(pdev);
1231
1232         host->mmc->retune_period = 0;
1233
1234         return 0;
1235 }
1236
1237 static int amd_execute_tuning(struct mmc_host *mmc, u32 opcode)
1238 {
1239         struct sdhci_host *host = mmc_priv(mmc);
1240
1241         /* AMD requires custom HS200 tuning */
1242         if (host->timing == MMC_TIMING_MMC_HS200)
1243                 return amd_execute_tuning_hs200(host, opcode);
1244
1245         /* Otherwise perform standard SDHCI tuning */
1246         return sdhci_execute_tuning(mmc, opcode);
1247 }
1248
1249 static int amd_probe_slot(struct sdhci_pci_slot *slot)
1250 {
1251         struct mmc_host_ops *ops = &slot->host->mmc_host_ops;
1252
1253         ops->execute_tuning = amd_execute_tuning;
1254
1255         return 0;
1256 }
1257
1258 static int amd_probe(struct sdhci_pci_chip *chip)
1259 {
1260         struct pci_dev  *smbus_dev;
1261         enum amd_chipset_gen gen;
1262
1263         smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD,
1264                         PCI_DEVICE_ID_AMD_HUDSON2_SMBUS, NULL);
1265         if (smbus_dev) {
1266                 gen = AMD_CHIPSET_BEFORE_ML;
1267         } else {
1268                 smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD,
1269                                 PCI_DEVICE_ID_AMD_KERNCZ_SMBUS, NULL);
1270                 if (smbus_dev) {
1271                         if (smbus_dev->revision < 0x51)
1272                                 gen = AMD_CHIPSET_CZ;
1273                         else
1274                                 gen = AMD_CHIPSET_NL;
1275                 } else {
1276                         gen = AMD_CHIPSET_UNKNOWN;
1277                 }
1278         }
1279
1280         if (gen == AMD_CHIPSET_BEFORE_ML || gen == AMD_CHIPSET_CZ)
1281                 chip->quirks2 |= SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD;
1282
1283         return 0;
1284 }
1285
1286 static const struct sdhci_ops amd_sdhci_pci_ops = {
1287         .set_clock                      = sdhci_set_clock,
1288         .enable_dma                     = sdhci_pci_enable_dma,
1289         .set_bus_width                  = sdhci_set_bus_width,
1290         .reset                          = sdhci_reset,
1291         .set_uhs_signaling              = sdhci_set_uhs_signaling,
1292 };
1293
1294 static const struct sdhci_pci_fixes sdhci_amd = {
1295         .probe          = amd_probe,
1296         .ops            = &amd_sdhci_pci_ops,
1297         .probe_slot     = amd_probe_slot,
1298 };
1299
1300 static const struct pci_device_id pci_ids[] = {
1301         SDHCI_PCI_DEVICE(RICOH, R5C822,  ricoh),
1302         SDHCI_PCI_DEVICE(RICOH, R5C843,  ricoh_mmc),
1303         SDHCI_PCI_DEVICE(RICOH, R5CE822, ricoh_mmc),
1304         SDHCI_PCI_DEVICE(RICOH, R5CE823, ricoh_mmc),
1305         SDHCI_PCI_DEVICE(ENE, CB712_SD,   ene_712),
1306         SDHCI_PCI_DEVICE(ENE, CB712_SD_2, ene_712),
1307         SDHCI_PCI_DEVICE(ENE, CB714_SD,   ene_714),
1308         SDHCI_PCI_DEVICE(ENE, CB714_SD_2, ene_714),
1309         SDHCI_PCI_DEVICE(MARVELL, 88ALP01_SD, cafe),
1310         SDHCI_PCI_DEVICE(JMICRON, JMB38X_SD,  jmicron),
1311         SDHCI_PCI_DEVICE(JMICRON, JMB38X_MMC, jmicron),
1312         SDHCI_PCI_DEVICE(JMICRON, JMB388_SD,  jmicron),
1313         SDHCI_PCI_DEVICE(JMICRON, JMB388_ESD, jmicron),
1314         SDHCI_PCI_DEVICE(SYSKONNECT, 8000, syskt),
1315         SDHCI_PCI_DEVICE(VIA, 95D0, via),
1316         SDHCI_PCI_DEVICE(REALTEK, 5250, rtsx),
1317         SDHCI_PCI_DEVICE(INTEL, QRK_SD,    intel_qrk),
1318         SDHCI_PCI_DEVICE(INTEL, MRST_SD0,  intel_mrst_hc0),
1319         SDHCI_PCI_DEVICE(INTEL, MRST_SD1,  intel_mrst_hc1_hc2),
1320         SDHCI_PCI_DEVICE(INTEL, MRST_SD2,  intel_mrst_hc1_hc2),
1321         SDHCI_PCI_DEVICE(INTEL, MFD_SD,    intel_mfd_sd),
1322         SDHCI_PCI_DEVICE(INTEL, MFD_SDIO1, intel_mfd_sdio),
1323         SDHCI_PCI_DEVICE(INTEL, MFD_SDIO2, intel_mfd_sdio),
1324         SDHCI_PCI_DEVICE(INTEL, MFD_EMMC0, intel_mfd_emmc),
1325         SDHCI_PCI_DEVICE(INTEL, MFD_EMMC1, intel_mfd_emmc),
1326         SDHCI_PCI_DEVICE(INTEL, PCH_SDIO0, intel_pch_sdio),
1327         SDHCI_PCI_DEVICE(INTEL, PCH_SDIO1, intel_pch_sdio),
1328         SDHCI_PCI_DEVICE(INTEL, BYT_EMMC,  intel_byt_emmc),
1329         SDHCI_PCI_SUBDEVICE(INTEL, BYT_SDIO, NI, 7884, ni_byt_sdio),
1330         SDHCI_PCI_DEVICE(INTEL, BYT_SDIO,  intel_byt_sdio),
1331         SDHCI_PCI_DEVICE(INTEL, BYT_SD,    intel_byt_sd),
1332         SDHCI_PCI_DEVICE(INTEL, BYT_EMMC2, intel_byt_emmc),
1333         SDHCI_PCI_DEVICE(INTEL, BSW_EMMC,  intel_byt_emmc),
1334         SDHCI_PCI_DEVICE(INTEL, BSW_SDIO,  intel_byt_sdio),
1335         SDHCI_PCI_DEVICE(INTEL, BSW_SD,    intel_byt_sd),
1336         SDHCI_PCI_DEVICE(INTEL, CLV_SDIO0, intel_mfd_sd),
1337         SDHCI_PCI_DEVICE(INTEL, CLV_SDIO1, intel_mfd_sdio),
1338         SDHCI_PCI_DEVICE(INTEL, CLV_SDIO2, intel_mfd_sdio),
1339         SDHCI_PCI_DEVICE(INTEL, CLV_EMMC0, intel_mfd_emmc),
1340         SDHCI_PCI_DEVICE(INTEL, CLV_EMMC1, intel_mfd_emmc),
1341         SDHCI_PCI_DEVICE(INTEL, MRFLD_MMC, intel_mrfld_mmc),
1342         SDHCI_PCI_DEVICE(INTEL, SPT_EMMC,  intel_byt_emmc),
1343         SDHCI_PCI_DEVICE(INTEL, SPT_SDIO,  intel_byt_sdio),
1344         SDHCI_PCI_DEVICE(INTEL, SPT_SD,    intel_byt_sd),
1345         SDHCI_PCI_DEVICE(INTEL, DNV_EMMC,  intel_byt_emmc),
1346         SDHCI_PCI_DEVICE(INTEL, BXT_EMMC,  intel_byt_emmc),
1347         SDHCI_PCI_DEVICE(INTEL, BXT_SDIO,  intel_byt_sdio),
1348         SDHCI_PCI_DEVICE(INTEL, BXT_SD,    intel_byt_sd),
1349         SDHCI_PCI_DEVICE(INTEL, BXTM_EMMC, intel_byt_emmc),
1350         SDHCI_PCI_DEVICE(INTEL, BXTM_SDIO, intel_byt_sdio),
1351         SDHCI_PCI_DEVICE(INTEL, BXTM_SD,   intel_byt_sd),
1352         SDHCI_PCI_DEVICE(INTEL, APL_EMMC,  intel_byt_emmc),
1353         SDHCI_PCI_DEVICE(INTEL, APL_SDIO,  intel_byt_sdio),
1354         SDHCI_PCI_DEVICE(INTEL, APL_SD,    intel_byt_sd),
1355         SDHCI_PCI_DEVICE(INTEL, GLK_EMMC,  intel_glk_emmc),
1356         SDHCI_PCI_DEVICE(INTEL, GLK_SDIO,  intel_byt_sdio),
1357         SDHCI_PCI_DEVICE(INTEL, GLK_SD,    intel_byt_sd),
1358         SDHCI_PCI_DEVICE(INTEL, CNP_EMMC,  intel_glk_emmc),
1359         SDHCI_PCI_DEVICE(INTEL, CNP_SD,    intel_byt_sd),
1360         SDHCI_PCI_DEVICE(INTEL, CNPH_SD,   intel_byt_sd),
1361         SDHCI_PCI_DEVICE(O2, 8120,     o2),
1362         SDHCI_PCI_DEVICE(O2, 8220,     o2),
1363         SDHCI_PCI_DEVICE(O2, 8221,     o2),
1364         SDHCI_PCI_DEVICE(O2, 8320,     o2),
1365         SDHCI_PCI_DEVICE(O2, 8321,     o2),
1366         SDHCI_PCI_DEVICE(O2, FUJIN2,   o2),
1367         SDHCI_PCI_DEVICE(O2, SDS0,     o2),
1368         SDHCI_PCI_DEVICE(O2, SDS1,     o2),
1369         SDHCI_PCI_DEVICE(O2, SEABIRD0, o2),
1370         SDHCI_PCI_DEVICE(O2, SEABIRD1, o2),
1371         SDHCI_PCI_DEVICE_CLASS(AMD, SYSTEM_SDHCI, PCI_CLASS_MASK, amd),
1372         /* Generic SD host controller */
1373         {PCI_DEVICE_CLASS(SYSTEM_SDHCI, PCI_CLASS_MASK)},
1374         { /* end: all zeroes */ },
1375 };
1376
1377 MODULE_DEVICE_TABLE(pci, pci_ids);
1378
1379 /*****************************************************************************\
1380  *                                                                           *
1381  * SDHCI core callbacks                                                      *
1382  *                                                                           *
1383 \*****************************************************************************/
1384
1385 static int sdhci_pci_enable_dma(struct sdhci_host *host)
1386 {
1387         struct sdhci_pci_slot *slot;
1388         struct pci_dev *pdev;
1389
1390         slot = sdhci_priv(host);
1391         pdev = slot->chip->pdev;
1392
1393         if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
1394                 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
1395                 (host->flags & SDHCI_USE_SDMA)) {
1396                 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
1397                         "doesn't fully claim to support it.\n");
1398         }
1399
1400         pci_set_master(pdev);
1401
1402         return 0;
1403 }
1404
1405 static void sdhci_pci_gpio_hw_reset(struct sdhci_host *host)
1406 {
1407         struct sdhci_pci_slot *slot = sdhci_priv(host);
1408         int rst_n_gpio = slot->rst_n_gpio;
1409
1410         if (!gpio_is_valid(rst_n_gpio))
1411                 return;
1412         gpio_set_value_cansleep(rst_n_gpio, 0);
1413         /* For eMMC, minimum is 1us but give it 10us for good measure */
1414         udelay(10);
1415         gpio_set_value_cansleep(rst_n_gpio, 1);
1416         /* For eMMC, minimum is 200us but give it 300us for good measure */
1417         usleep_range(300, 1000);
1418 }
1419
1420 static void sdhci_pci_hw_reset(struct sdhci_host *host)
1421 {
1422         struct sdhci_pci_slot *slot = sdhci_priv(host);
1423
1424         if (slot->hw_reset)
1425                 slot->hw_reset(host);
1426 }
1427
1428 static const struct sdhci_ops sdhci_pci_ops = {
1429         .set_clock      = sdhci_set_clock,
1430         .enable_dma     = sdhci_pci_enable_dma,
1431         .set_bus_width  = sdhci_set_bus_width,
1432         .reset          = sdhci_reset,
1433         .set_uhs_signaling = sdhci_set_uhs_signaling,
1434         .hw_reset               = sdhci_pci_hw_reset,
1435 };
1436
1437 /*****************************************************************************\
1438  *                                                                           *
1439  * Suspend/resume                                                            *
1440  *                                                                           *
1441 \*****************************************************************************/
1442
1443 #ifdef CONFIG_PM_SLEEP
1444 static int sdhci_pci_suspend(struct device *dev)
1445 {
1446         struct pci_dev *pdev = to_pci_dev(dev);
1447         struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
1448
1449         if (!chip)
1450                 return 0;
1451
1452         if (chip->fixes && chip->fixes->suspend)
1453                 return chip->fixes->suspend(chip);
1454
1455         return sdhci_pci_suspend_host(chip);
1456 }
1457
1458 static int sdhci_pci_resume(struct device *dev)
1459 {
1460         struct pci_dev *pdev = to_pci_dev(dev);
1461         struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
1462
1463         if (!chip)
1464                 return 0;
1465
1466         if (chip->fixes && chip->fixes->resume)
1467                 return chip->fixes->resume(chip);
1468
1469         return sdhci_pci_resume_host(chip);
1470 }
1471 #endif
1472
1473 #ifdef CONFIG_PM
1474 static int sdhci_pci_runtime_suspend(struct device *dev)
1475 {
1476         struct pci_dev *pdev = to_pci_dev(dev);
1477         struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
1478
1479         if (!chip)
1480                 return 0;
1481
1482         if (chip->fixes && chip->fixes->runtime_suspend)
1483                 return chip->fixes->runtime_suspend(chip);
1484
1485         return sdhci_pci_runtime_suspend_host(chip);
1486 }
1487
1488 static int sdhci_pci_runtime_resume(struct device *dev)
1489 {
1490         struct pci_dev *pdev = to_pci_dev(dev);
1491         struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
1492
1493         if (!chip)
1494                 return 0;
1495
1496         if (chip->fixes && chip->fixes->runtime_resume)
1497                 return chip->fixes->runtime_resume(chip);
1498
1499         return sdhci_pci_runtime_resume_host(chip);
1500 }
1501 #endif
1502
1503 static const struct dev_pm_ops sdhci_pci_pm_ops = {
1504         SET_SYSTEM_SLEEP_PM_OPS(sdhci_pci_suspend, sdhci_pci_resume)
1505         SET_RUNTIME_PM_OPS(sdhci_pci_runtime_suspend,
1506                         sdhci_pci_runtime_resume, NULL)
1507 };
1508
1509 /*****************************************************************************\
1510  *                                                                           *
1511  * Device probing/removal                                                    *
1512  *                                                                           *
1513 \*****************************************************************************/
1514
1515 static struct sdhci_pci_slot *sdhci_pci_probe_slot(
1516         struct pci_dev *pdev, struct sdhci_pci_chip *chip, int first_bar,
1517         int slotno)
1518 {
1519         struct sdhci_pci_slot *slot;
1520         struct sdhci_host *host;
1521         int ret, bar = first_bar + slotno;
1522         size_t priv_size = chip->fixes ? chip->fixes->priv_size : 0;
1523
1524         if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
1525                 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
1526                 return ERR_PTR(-ENODEV);
1527         }
1528
1529         if (pci_resource_len(pdev, bar) < 0x100) {
1530                 dev_err(&pdev->dev, "Invalid iomem size. You may "
1531                         "experience problems.\n");
1532         }
1533
1534         if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1535                 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
1536                 return ERR_PTR(-ENODEV);
1537         }
1538
1539         if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
1540                 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
1541                 return ERR_PTR(-ENODEV);
1542         }
1543
1544         host = sdhci_alloc_host(&pdev->dev, sizeof(*slot) + priv_size);
1545         if (IS_ERR(host)) {
1546                 dev_err(&pdev->dev, "cannot allocate host\n");
1547                 return ERR_CAST(host);
1548         }
1549
1550         slot = sdhci_priv(host);
1551
1552         slot->chip = chip;
1553         slot->host = host;
1554         slot->rst_n_gpio = -EINVAL;
1555         slot->cd_gpio = -EINVAL;
1556         slot->cd_idx = -1;
1557
1558         /* Retrieve platform data if there is any */
1559         if (*sdhci_pci_get_data)
1560                 slot->data = sdhci_pci_get_data(pdev, slotno);
1561
1562         if (slot->data) {
1563                 if (slot->data->setup) {
1564                         ret = slot->data->setup(slot->data);
1565                         if (ret) {
1566                                 dev_err(&pdev->dev, "platform setup failed\n");
1567                                 goto free;
1568                         }
1569                 }
1570                 slot->rst_n_gpio = slot->data->rst_n_gpio;
1571                 slot->cd_gpio = slot->data->cd_gpio;
1572         }
1573
1574         host->hw_name = "PCI";
1575         host->ops = chip->fixes && chip->fixes->ops ?
1576                     chip->fixes->ops :
1577                     &sdhci_pci_ops;
1578         host->quirks = chip->quirks;
1579         host->quirks2 = chip->quirks2;
1580
1581         host->irq = pdev->irq;
1582
1583         ret = pcim_iomap_regions(pdev, BIT(bar), mmc_hostname(host->mmc));
1584         if (ret) {
1585                 dev_err(&pdev->dev, "cannot request region\n");
1586                 goto cleanup;
1587         }
1588
1589         host->ioaddr = pcim_iomap_table(pdev)[bar];
1590
1591         if (chip->fixes && chip->fixes->probe_slot) {
1592                 ret = chip->fixes->probe_slot(slot);
1593                 if (ret)
1594                         goto cleanup;
1595         }
1596
1597         if (gpio_is_valid(slot->rst_n_gpio)) {
1598                 if (!devm_gpio_request(&pdev->dev, slot->rst_n_gpio, "eMMC_reset")) {
1599                         gpio_direction_output(slot->rst_n_gpio, 1);
1600                         slot->host->mmc->caps |= MMC_CAP_HW_RESET;
1601                         slot->hw_reset = sdhci_pci_gpio_hw_reset;
1602                 } else {
1603                         dev_warn(&pdev->dev, "failed to request rst_n_gpio\n");
1604                         slot->rst_n_gpio = -EINVAL;
1605                 }
1606         }
1607
1608         host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ;
1609         host->mmc->slotno = slotno;
1610         host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
1611
1612         if (slot->cd_idx >= 0) {
1613                 ret = mmc_gpiod_request_cd(host->mmc, "cd", slot->cd_idx,
1614                                            slot->cd_override_level, 0, NULL);
1615                 if (ret && ret != -EPROBE_DEFER)
1616                         ret = mmc_gpiod_request_cd(host->mmc, NULL,
1617                                                    slot->cd_idx,
1618                                                    slot->cd_override_level,
1619                                                    0, NULL);
1620                 if (ret == -EPROBE_DEFER)
1621                         goto remove;
1622
1623                 if (ret) {
1624                         dev_warn(&pdev->dev, "failed to setup card detect gpio\n");
1625                         slot->cd_idx = -1;
1626                 }
1627         }
1628
1629         if (chip->fixes && chip->fixes->add_host)
1630                 ret = chip->fixes->add_host(slot);
1631         else
1632                 ret = sdhci_add_host(host);
1633         if (ret)
1634                 goto remove;
1635
1636         sdhci_pci_add_own_cd(slot);
1637
1638         /*
1639          * Check if the chip needs a separate GPIO for card detect to wake up
1640          * from runtime suspend.  If it is not there, don't allow runtime PM.
1641          * Note sdhci_pci_add_own_cd() sets slot->cd_gpio to -EINVAL on failure.
1642          */
1643         if (chip->fixes && chip->fixes->own_cd_for_runtime_pm &&
1644             !gpio_is_valid(slot->cd_gpio) && slot->cd_idx < 0)
1645                 chip->allow_runtime_pm = false;
1646
1647         return slot;
1648
1649 remove:
1650         if (chip->fixes && chip->fixes->remove_slot)
1651                 chip->fixes->remove_slot(slot, 0);
1652
1653 cleanup:
1654         if (slot->data && slot->data->cleanup)
1655                 slot->data->cleanup(slot->data);
1656
1657 free:
1658         sdhci_free_host(host);
1659
1660         return ERR_PTR(ret);
1661 }
1662
1663 static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
1664 {
1665         int dead;
1666         u32 scratch;
1667
1668         sdhci_pci_remove_own_cd(slot);
1669
1670         dead = 0;
1671         scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
1672         if (scratch == (u32)-1)
1673                 dead = 1;
1674
1675         sdhci_remove_host(slot->host, dead);
1676
1677         if (slot->chip->fixes && slot->chip->fixes->remove_slot)
1678                 slot->chip->fixes->remove_slot(slot, dead);
1679
1680         if (slot->data && slot->data->cleanup)
1681                 slot->data->cleanup(slot->data);
1682
1683         sdhci_free_host(slot->host);
1684 }
1685
1686 static void sdhci_pci_runtime_pm_allow(struct device *dev)
1687 {
1688         pm_suspend_ignore_children(dev, 1);
1689         pm_runtime_set_autosuspend_delay(dev, 50);
1690         pm_runtime_use_autosuspend(dev);
1691         pm_runtime_allow(dev);
1692         /* Stay active until mmc core scans for a card */
1693         pm_runtime_put_noidle(dev);
1694 }
1695
1696 static void sdhci_pci_runtime_pm_forbid(struct device *dev)
1697 {
1698         pm_runtime_forbid(dev);
1699         pm_runtime_get_noresume(dev);
1700 }
1701
1702 static int sdhci_pci_probe(struct pci_dev *pdev,
1703                                      const struct pci_device_id *ent)
1704 {
1705         struct sdhci_pci_chip *chip;
1706         struct sdhci_pci_slot *slot;
1707
1708         u8 slots, first_bar;
1709         int ret, i;
1710
1711         BUG_ON(pdev == NULL);
1712         BUG_ON(ent == NULL);
1713
1714         dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
1715                  (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);
1716
1717         ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
1718         if (ret)
1719                 return ret;
1720
1721         slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
1722         dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
1723         if (slots == 0)
1724                 return -ENODEV;
1725
1726         BUG_ON(slots > MAX_SLOTS);
1727
1728         ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
1729         if (ret)
1730                 return ret;
1731
1732         first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
1733
1734         if (first_bar > 5) {
1735                 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
1736                 return -ENODEV;
1737         }
1738
1739         ret = pcim_enable_device(pdev);
1740         if (ret)
1741                 return ret;
1742
1743         chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
1744         if (!chip)
1745                 return -ENOMEM;
1746
1747         chip->pdev = pdev;
1748         chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
1749         if (chip->fixes) {
1750                 chip->quirks = chip->fixes->quirks;
1751                 chip->quirks2 = chip->fixes->quirks2;
1752                 chip->allow_runtime_pm = chip->fixes->allow_runtime_pm;
1753         }
1754         chip->num_slots = slots;
1755         chip->pm_retune = true;
1756         chip->rpm_retune = true;
1757
1758         pci_set_drvdata(pdev, chip);
1759
1760         if (chip->fixes && chip->fixes->probe) {
1761                 ret = chip->fixes->probe(chip);
1762                 if (ret)
1763                         return ret;
1764         }
1765
1766         slots = chip->num_slots;        /* Quirk may have changed this */
1767
1768         for (i = 0; i < slots; i++) {
1769                 slot = sdhci_pci_probe_slot(pdev, chip, first_bar, i);
1770                 if (IS_ERR(slot)) {
1771                         for (i--; i >= 0; i--)
1772                                 sdhci_pci_remove_slot(chip->slots[i]);
1773                         return PTR_ERR(slot);
1774                 }
1775
1776                 chip->slots[i] = slot;
1777         }
1778
1779         if (chip->allow_runtime_pm)
1780                 sdhci_pci_runtime_pm_allow(&pdev->dev);
1781
1782         return 0;
1783 }
1784
1785 static void sdhci_pci_remove(struct pci_dev *pdev)
1786 {
1787         int i;
1788         struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
1789
1790         if (chip->allow_runtime_pm)
1791                 sdhci_pci_runtime_pm_forbid(&pdev->dev);
1792
1793         for (i = 0; i < chip->num_slots; i++)
1794                 sdhci_pci_remove_slot(chip->slots[i]);
1795 }
1796
1797 static struct pci_driver sdhci_driver = {
1798         .name =         "sdhci-pci",
1799         .id_table =     pci_ids,
1800         .probe =        sdhci_pci_probe,
1801         .remove =       sdhci_pci_remove,
1802         .driver =       {
1803                 .pm =   &sdhci_pci_pm_ops
1804         },
1805 };
1806
1807 module_pci_driver(sdhci_driver);
1808
1809 MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
1810 MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
1811 MODULE_LICENSE("GPL");