blob: 580073bc164caa334f8c3676cb3ff6a481a7405a [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
15#include <linux/delay.h>
16#include <linux/highmem.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040017#include <linux/module.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010018#include <linux/pci.h>
19#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Maxim Levitskyccc92c22010-08-10 18:01:42 -070021#include <linux/device.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010022#include <linux/mmc/host.h>
Ameya Palandeb177bc92011-04-05 21:13:13 +030023#include <linux/scatterlist.h>
24#include <linux/io.h>
Adrian Hunter0f201652011-08-29 16:42:13 +030025#include <linux/gpio.h>
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030026#include <linux/pm_runtime.h>
Adrian Hunter52c506f2011-12-27 15:48:43 +020027#include <linux/mmc/sdhci-pci-data.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010028
29#include "sdhci.h"
Adam Lee522624f2013-12-18 22:23:38 +080030#include "sdhci-pci.h"
Adam Lee01acf692013-12-19 00:01:26 +080031#include "sdhci-pci-o2micro.h"
Pierre Ossman22606402008-03-23 19:33:23 +010032
33/*****************************************************************************\
34 * *
35 * Hardware specific quirk handling *
36 * *
37\*****************************************************************************/
38
39static int ricoh_probe(struct sdhci_pci_chip *chip)
40{
Chris Ballc99436f2009-09-22 16:45:22 -070041 if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG ||
42 chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY)
Pierre Ossman22606402008-03-23 19:33:23 +010043 chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
Maxim Levitskyccc92c22010-08-10 18:01:42 -070044 return 0;
45}
Pierre Ossman22606402008-03-23 19:33:23 +010046
Maxim Levitskyccc92c22010-08-10 18:01:42 -070047static int ricoh_mmc_probe_slot(struct sdhci_pci_slot *slot)
48{
49 slot->host->caps =
50 ((0x21 << SDHCI_TIMEOUT_CLK_SHIFT)
51 & SDHCI_TIMEOUT_CLK_MASK) |
52
53 ((0x21 << SDHCI_CLOCK_BASE_SHIFT)
54 & SDHCI_CLOCK_BASE_MASK) |
55
56 SDHCI_TIMEOUT_CLK_UNIT |
57 SDHCI_CAN_VDD_330 |
Madhvapathi Sriram1a1f1f02012-10-15 04:47:30 +000058 SDHCI_CAN_DO_HISPD |
Maxim Levitskyccc92c22010-08-10 18:01:42 -070059 SDHCI_CAN_DO_SDMA;
60 return 0;
61}
62
63static int ricoh_mmc_resume(struct sdhci_pci_chip *chip)
64{
65 /* Apply a delay to allow controller to settle */
66 /* Otherwise it becomes confused if card state changed
67 during suspend */
68 msleep(500);
Pierre Ossman22606402008-03-23 19:33:23 +010069 return 0;
70}
71
72static const struct sdhci_pci_fixes sdhci_ricoh = {
73 .probe = ricoh_probe,
Vasily Khoruzhick84938292010-03-05 13:43:46 -080074 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
75 SDHCI_QUIRK_FORCE_DMA |
76 SDHCI_QUIRK_CLOCK_BEFORE_RESET,
Pierre Ossman22606402008-03-23 19:33:23 +010077};
78
Maxim Levitskyccc92c22010-08-10 18:01:42 -070079static const struct sdhci_pci_fixes sdhci_ricoh_mmc = {
80 .probe_slot = ricoh_mmc_probe_slot,
81 .resume = ricoh_mmc_resume,
82 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
83 SDHCI_QUIRK_CLOCK_BEFORE_RESET |
84 SDHCI_QUIRK_NO_CARD_NO_RESET |
85 SDHCI_QUIRK_MISSING_CAPS
86};
87
Pierre Ossman22606402008-03-23 19:33:23 +010088static const struct sdhci_pci_fixes sdhci_ene_712 = {
89 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
90 SDHCI_QUIRK_BROKEN_DMA,
91};
92
93static const struct sdhci_pci_fixes sdhci_ene_714 = {
94 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
95 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS |
96 SDHCI_QUIRK_BROKEN_DMA,
97};
98
99static const struct sdhci_pci_fixes sdhci_cafe = {
100 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
Andres Salomona0874892009-03-02 21:48:20 +0100101 SDHCI_QUIRK_NO_BUSY_IRQ |
Daniel Drake55fc05b2012-07-03 23:13:39 +0100102 SDHCI_QUIRK_BROKEN_CARD_DETECTION |
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200103 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
Pierre Ossman22606402008-03-23 19:33:23 +0100104};
105
Derek Browne43e968c2014-06-24 06:56:36 -0700106static const struct sdhci_pci_fixes sdhci_intel_qrk = {
107 .quirks = SDHCI_QUIRK_NO_HISPD_BIT,
108};
109
Major Lee68077b02011-06-29 14:23:46 +0300110static int mrst_hc_probe_slot(struct sdhci_pci_slot *slot)
111{
112 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
113 return 0;
114}
115
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100116/*
117 * ADMA operation is disabled for Moorestown platform due to
118 * hardware bugs.
119 */
Jacob Pan35ac6f02010-11-09 13:57:29 +0000120static int mrst_hc_probe(struct sdhci_pci_chip *chip)
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100121{
122 /*
Jacob Pan35ac6f02010-11-09 13:57:29 +0000123 * slots number is fixed here for MRST as SDIO3/5 are never used and
124 * have hardware bugs.
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100125 */
126 chip->num_slots = 1;
127 return 0;
128}
129
Alexander Stein296e0b02012-03-14 08:38:58 +0100130static int pch_hc_probe_slot(struct sdhci_pci_slot *slot)
131{
132 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
133 return 0;
134}
135
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300136#ifdef CONFIG_PM_RUNTIME
137
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200138static irqreturn_t sdhci_pci_sd_cd(int irq, void *dev_id)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300139{
140 struct sdhci_pci_slot *slot = dev_id;
141 struct sdhci_host *host = slot->host;
142
143 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
144 return IRQ_HANDLED;
145}
146
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200147static void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300148{
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200149 int err, irq, gpio = slot->cd_gpio;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300150
151 slot->cd_gpio = -EINVAL;
152 slot->cd_irq = -EINVAL;
153
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200154 if (!gpio_is_valid(gpio))
155 return;
156
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300157 err = gpio_request(gpio, "sd_cd");
158 if (err < 0)
159 goto out;
160
161 err = gpio_direction_input(gpio);
162 if (err < 0)
163 goto out_free;
164
165 irq = gpio_to_irq(gpio);
166 if (irq < 0)
167 goto out_free;
168
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200169 err = request_irq(irq, sdhci_pci_sd_cd, IRQF_TRIGGER_RISING |
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300170 IRQF_TRIGGER_FALLING, "sd_cd", slot);
171 if (err)
172 goto out_free;
173
174 slot->cd_gpio = gpio;
175 slot->cd_irq = irq;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300176
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200177 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300178
179out_free:
180 gpio_free(gpio);
181out:
182 dev_warn(&slot->chip->pdev->dev, "failed to setup card detect wake up\n");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300183}
184
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200185static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300186{
187 if (slot->cd_irq >= 0)
188 free_irq(slot->cd_irq, slot);
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200189 if (gpio_is_valid(slot->cd_gpio))
190 gpio_free(slot->cd_gpio);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300191}
192
193#else
194
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200195static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
196{
197}
198
199static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
200{
201}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300202
203#endif
204
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300205static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot)
206{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300207 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
Adrian Hunterda721cf2012-02-07 14:48:53 +0200208 slot->host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC |
209 MMC_CAP2_HC_ERASE_SZ;
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300210 return 0;
211}
212
Adrian Hunter93933502011-12-27 15:48:47 +0200213static int mfd_sdio_probe_slot(struct sdhci_pci_slot *slot)
214{
Adrian Hunter012e4672012-01-30 14:27:18 +0200215 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
Adrian Hunter93933502011-12-27 15:48:47 +0200216 return 0;
217}
218
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100219static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = {
220 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Major Lee68077b02011-06-29 14:23:46 +0300221 .probe_slot = mrst_hc_probe_slot,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100222};
223
Jacob Pan35ac6f02010-11-09 13:57:29 +0000224static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = {
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100225 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000226 .probe = mrst_hc_probe,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100227};
228
Xiaochen Shen29229052010-10-04 15:24:52 +0100229static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = {
230 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300231 .allow_runtime_pm = true,
Adrian Hunter77a01222014-01-13 09:49:16 +0200232 .own_cd_for_runtime_pm = true,
Xiaochen Shen29229052010-10-04 15:24:52 +0100233};
234
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300235static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio = {
Xiaochen Shen29229052010-10-04 15:24:52 +0100236 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterf3c55a72012-02-07 14:48:55 +0200237 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300238 .allow_runtime_pm = true,
Adrian Hunter93933502011-12-27 15:48:47 +0200239 .probe_slot = mfd_sdio_probe_slot,
Xiaochen Shen29229052010-10-04 15:24:52 +0100240};
241
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300242static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc = {
243 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300244 .allow_runtime_pm = true,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300245 .probe_slot = mfd_emmc_probe_slot,
246};
247
Alexander Stein296e0b02012-03-14 08:38:58 +0100248static const struct sdhci_pci_fixes sdhci_intel_pch_sdio = {
249 .quirks = SDHCI_QUIRK_BROKEN_ADMA,
250 .probe_slot = pch_hc_probe_slot,
251};
252
Adrian Hunterc9faff62013-06-13 11:50:26 +0300253static void sdhci_pci_int_hw_reset(struct sdhci_host *host)
254{
255 u8 reg;
256
257 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
258 reg |= 0x10;
259 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
260 /* For eMMC, minimum is 1us but give it 9us for good measure */
261 udelay(9);
262 reg &= ~0x10;
263 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
264 /* For eMMC, minimum is 200us but give it 300us for good measure */
265 usleep_range(300, 1000);
266}
267
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300268static int byt_emmc_probe_slot(struct sdhci_pci_slot *slot)
269{
Adrian Hunterc9faff62013-06-13 11:50:26 +0300270 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
Maurice Petallof25c3372014-07-08 19:11:01 +0800271 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR;
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300272 slot->host->mmc->caps2 |= MMC_CAP2_HC_ERASE_SZ;
Adrian Hunterc9faff62013-06-13 11:50:26 +0300273 slot->hw_reset = sdhci_pci_int_hw_reset;
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300274 return 0;
275}
276
277static int byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
278{
279 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
280 return 0;
281}
282
283static const struct sdhci_pci_fixes sdhci_intel_byt_emmc = {
284 .allow_runtime_pm = true,
285 .probe_slot = byt_emmc_probe_slot,
Maurice Petallod61b5942014-07-08 19:11:00 +0800286 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300287};
288
289static const struct sdhci_pci_fixes sdhci_intel_byt_sdio = {
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800290 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON |
291 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300292 .allow_runtime_pm = true,
293 .probe_slot = byt_sdio_probe_slot,
294};
295
296static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800297 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
298 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Adrian Hunter7396e312013-05-06 12:17:34 +0300299 .allow_runtime_pm = true,
Adrian Hunter77a01222014-01-13 09:49:16 +0200300 .own_cd_for_runtime_pm = true,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300301};
302
David Cohen8776a162013-10-01 13:18:15 -0700303/* Define Host controllers for Intel Merrifield platform */
304#define INTEL_MRFL_EMMC_0 0
305#define INTEL_MRFL_EMMC_1 1
306
307static int intel_mrfl_mmc_probe_slot(struct sdhci_pci_slot *slot)
308{
309 if ((PCI_FUNC(slot->chip->pdev->devfn) != INTEL_MRFL_EMMC_0) &&
310 (PCI_FUNC(slot->chip->pdev->devfn) != INTEL_MRFL_EMMC_1))
311 /* SD support is not ready yet */
312 return -ENODEV;
313
314 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
315 MMC_CAP_1_8V_DDR;
316
317 return 0;
318}
319
320static const struct sdhci_pci_fixes sdhci_intel_mrfl_mmc = {
321 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Gao, Yunpengb7574ba2014-09-04 15:18:05 +0800322 .quirks2 = SDHCI_QUIRK2_BROKEN_HS200 |
323 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Gao, Yunpengf1b55a52014-08-18 15:05:52 +0800324 .allow_runtime_pm = true,
David Cohen8776a162013-10-01 13:18:15 -0700325 .probe_slot = intel_mrfl_mmc_probe_slot,
326};
327
Jennifer Li26daa1e2010-11-17 23:01:59 -0500328/* O2Micro extra registers */
329#define O2_SD_LOCK_WP 0xD3
330#define O2_SD_MULTI_VCC3V 0xEE
331#define O2_SD_CLKREQ 0xEC
332#define O2_SD_CAPS 0xE0
333#define O2_SD_ADMA1 0xE2
334#define O2_SD_ADMA2 0xE7
335#define O2_SD_INF_MOD 0xF1
336
Pierre Ossman45211e22008-03-24 13:09:09 +0100337static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
338{
339 u8 scratch;
340 int ret;
341
342 ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
343 if (ret)
344 return ret;
345
346 /*
347 * Turn PMOS on [bit 0], set over current detection to 2.4 V
348 * [bit 1:2] and enable over current debouncing [bit 6].
349 */
350 if (on)
351 scratch |= 0x47;
352 else
353 scratch &= ~0x47;
354
355 ret = pci_write_config_byte(chip->pdev, 0xAE, scratch);
356 if (ret)
357 return ret;
358
359 return 0;
360}
361
362static int jmicron_probe(struct sdhci_pci_chip *chip)
363{
364 int ret;
Takashi Iwai8f230f42010-12-08 10:04:30 +0100365 u16 mmcdev = 0;
Pierre Ossman45211e22008-03-24 13:09:09 +0100366
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200367 if (chip->pdev->revision == 0) {
368 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
369 SDHCI_QUIRK_32BIT_DMA_SIZE |
Pierre Ossman2134a922008-06-28 18:28:51 +0200370 SDHCI_QUIRK_32BIT_ADMA_SIZE |
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200371 SDHCI_QUIRK_RESET_AFTER_REQUEST |
Pierre Ossman86a6a872009-02-02 21:13:49 +0100372 SDHCI_QUIRK_BROKEN_SMALL_PIO;
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200373 }
374
Pierre Ossman45211e22008-03-24 13:09:09 +0100375 /*
Pierre Ossman44894282008-04-04 19:36:59 +0200376 * JMicron chips can have two interfaces to the same hardware
377 * in order to work around limitations in Microsoft's driver.
378 * We need to make sure we only bind to one of them.
379 *
380 * This code assumes two things:
381 *
382 * 1. The PCI code adds subfunctions in order.
383 *
384 * 2. The MMC interface has a lower subfunction number
385 * than the SD interface.
386 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100387 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD)
388 mmcdev = PCI_DEVICE_ID_JMICRON_JMB38X_MMC;
389 else if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD)
390 mmcdev = PCI_DEVICE_ID_JMICRON_JMB388_ESD;
391
392 if (mmcdev) {
Pierre Ossman44894282008-04-04 19:36:59 +0200393 struct pci_dev *sd_dev;
394
395 sd_dev = NULL;
396 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
Takashi Iwai8f230f42010-12-08 10:04:30 +0100397 mmcdev, sd_dev)) != NULL) {
Pierre Ossman44894282008-04-04 19:36:59 +0200398 if ((PCI_SLOT(chip->pdev->devfn) ==
399 PCI_SLOT(sd_dev->devfn)) &&
400 (chip->pdev->bus == sd_dev->bus))
401 break;
402 }
403
404 if (sd_dev) {
405 pci_dev_put(sd_dev);
406 dev_info(&chip->pdev->dev, "Refusing to bind to "
407 "secondary interface.\n");
408 return -ENODEV;
409 }
410 }
411
412 /*
Pierre Ossman45211e22008-03-24 13:09:09 +0100413 * JMicron chips need a bit of a nudge to enable the power
414 * output pins.
415 */
416 ret = jmicron_pmos(chip, 1);
417 if (ret) {
418 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
419 return ret;
420 }
421
Takashi Iwai82b0e232011-04-21 20:26:38 +0200422 /* quirk for unsable RO-detection on JM388 chips */
423 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD ||
424 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
425 chip->quirks |= SDHCI_QUIRK_UNSTABLE_RO_DETECT;
426
Pierre Ossman45211e22008-03-24 13:09:09 +0100427 return 0;
428}
429
Pierre Ossman44894282008-04-04 19:36:59 +0200430static void jmicron_enable_mmc(struct sdhci_host *host, int on)
431{
432 u8 scratch;
433
434 scratch = readb(host->ioaddr + 0xC0);
435
436 if (on)
437 scratch |= 0x01;
438 else
439 scratch &= ~0x01;
440
441 writeb(scratch, host->ioaddr + 0xC0);
442}
443
444static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
445{
Pierre Ossman2134a922008-06-28 18:28:51 +0200446 if (slot->chip->pdev->revision == 0) {
447 u16 version;
448
449 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
450 version = (version & SDHCI_VENDOR_VER_MASK) >>
451 SDHCI_VENDOR_VER_SHIFT;
452
453 /*
454 * Older versions of the chip have lots of nasty glitches
455 * in the ADMA engine. It's best just to avoid it
456 * completely.
457 */
458 if (version < 0xAC)
459 slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
460 }
461
Takashi Iwai8f230f42010-12-08 10:04:30 +0100462 /* JM388 MMC doesn't support 1.8V while SD supports it */
463 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
464 slot->host->ocr_avail_sd = MMC_VDD_32_33 | MMC_VDD_33_34 |
465 MMC_VDD_29_30 | MMC_VDD_30_31 |
466 MMC_VDD_165_195; /* allow 1.8V */
467 slot->host->ocr_avail_mmc = MMC_VDD_32_33 | MMC_VDD_33_34 |
468 MMC_VDD_29_30 | MMC_VDD_30_31; /* no 1.8V for MMC */
469 }
470
Pierre Ossman44894282008-04-04 19:36:59 +0200471 /*
472 * The secondary interface requires a bit set to get the
473 * interrupts.
474 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100475 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
476 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200477 jmicron_enable_mmc(slot->host, 1);
478
Takashi Iwaid75c1082010-12-16 17:54:14 +0100479 slot->host->mmc->caps |= MMC_CAP_BUS_WIDTH_TEST;
480
Pierre Ossman44894282008-04-04 19:36:59 +0200481 return 0;
482}
483
Pierre Ossman1e728592008-04-16 19:13:13 +0200484static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
Pierre Ossman44894282008-04-04 19:36:59 +0200485{
Pierre Ossman1e728592008-04-16 19:13:13 +0200486 if (dead)
487 return;
488
Takashi Iwai8f230f42010-12-08 10:04:30 +0100489 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
490 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200491 jmicron_enable_mmc(slot->host, 0);
492}
493
Manuel Lauss29495aa2011-11-03 11:09:45 +0100494static int jmicron_suspend(struct sdhci_pci_chip *chip)
Pierre Ossman44894282008-04-04 19:36:59 +0200495{
496 int i;
497
Takashi Iwai8f230f42010-12-08 10:04:30 +0100498 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
499 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300500 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200501 jmicron_enable_mmc(chip->slots[i]->host, 0);
502 }
503
504 return 0;
505}
506
Pierre Ossman45211e22008-03-24 13:09:09 +0100507static int jmicron_resume(struct sdhci_pci_chip *chip)
508{
Pierre Ossman44894282008-04-04 19:36:59 +0200509 int ret, i;
510
Takashi Iwai8f230f42010-12-08 10:04:30 +0100511 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
512 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300513 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200514 jmicron_enable_mmc(chip->slots[i]->host, 1);
515 }
Pierre Ossman45211e22008-03-24 13:09:09 +0100516
517 ret = jmicron_pmos(chip, 1);
518 if (ret) {
519 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
520 return ret;
521 }
522
523 return 0;
524}
525
Jennifer Li26daa1e2010-11-17 23:01:59 -0500526static const struct sdhci_pci_fixes sdhci_o2 = {
Adam Lee01acf692013-12-19 00:01:26 +0800527 .probe = sdhci_pci_o2_probe,
528 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
529 .probe_slot = sdhci_pci_o2_probe_slot,
530 .resume = sdhci_pci_o2_resume,
Jennifer Li26daa1e2010-11-17 23:01:59 -0500531};
532
Pierre Ossman22606402008-03-23 19:33:23 +0100533static const struct sdhci_pci_fixes sdhci_jmicron = {
Pierre Ossman45211e22008-03-24 13:09:09 +0100534 .probe = jmicron_probe,
535
Pierre Ossman44894282008-04-04 19:36:59 +0200536 .probe_slot = jmicron_probe_slot,
537 .remove_slot = jmicron_remove_slot,
538
539 .suspend = jmicron_suspend,
Pierre Ossman45211e22008-03-24 13:09:09 +0100540 .resume = jmicron_resume,
Pierre Ossman22606402008-03-23 19:33:23 +0100541};
542
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800543/* SysKonnect CardBus2SDIO extra registers */
544#define SYSKT_CTRL 0x200
545#define SYSKT_RDFIFO_STAT 0x204
546#define SYSKT_WRFIFO_STAT 0x208
547#define SYSKT_POWER_DATA 0x20c
548#define SYSKT_POWER_330 0xef
549#define SYSKT_POWER_300 0xf8
550#define SYSKT_POWER_184 0xcc
551#define SYSKT_POWER_CMD 0x20d
552#define SYSKT_POWER_START (1 << 7)
553#define SYSKT_POWER_STATUS 0x20e
554#define SYSKT_POWER_STATUS_OK (1 << 0)
555#define SYSKT_BOARD_REV 0x210
556#define SYSKT_CHIP_REV 0x211
557#define SYSKT_CONF_DATA 0x212
558#define SYSKT_CONF_DATA_1V8 (1 << 2)
559#define SYSKT_CONF_DATA_2V5 (1 << 1)
560#define SYSKT_CONF_DATA_3V3 (1 << 0)
561
562static int syskt_probe(struct sdhci_pci_chip *chip)
563{
564 if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
565 chip->pdev->class &= ~0x0000FF;
566 chip->pdev->class |= PCI_SDHCI_IFDMA;
567 }
568 return 0;
569}
570
571static int syskt_probe_slot(struct sdhci_pci_slot *slot)
572{
573 int tm, ps;
574
575 u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV);
576 u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV);
577 dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, "
578 "board rev %d.%d, chip rev %d.%d\n",
579 board_rev >> 4, board_rev & 0xf,
580 chip_rev >> 4, chip_rev & 0xf);
581 if (chip_rev >= 0x20)
582 slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA;
583
584 writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA);
585 writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD);
586 udelay(50);
587 tm = 10; /* Wait max 1 ms */
588 do {
589 ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS);
590 if (ps & SYSKT_POWER_STATUS_OK)
591 break;
592 udelay(100);
593 } while (--tm);
594 if (!tm) {
595 dev_err(&slot->chip->pdev->dev,
596 "power regulator never stabilized");
597 writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD);
598 return -ENODEV;
599 }
600
601 return 0;
602}
603
604static const struct sdhci_pci_fixes sdhci_syskt = {
605 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER,
606 .probe = syskt_probe,
607 .probe_slot = syskt_probe_slot,
608};
609
Harald Welte557b0692009-06-18 16:53:38 +0200610static int via_probe(struct sdhci_pci_chip *chip)
611{
612 if (chip->pdev->revision == 0x10)
613 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
614
615 return 0;
616}
617
618static const struct sdhci_pci_fixes sdhci_via = {
619 .probe = via_probe,
620};
621
Micky Ching9107ebb2014-02-21 18:40:35 +0800622static int rtsx_probe_slot(struct sdhci_pci_slot *slot)
623{
624 slot->host->mmc->caps2 |= MMC_CAP2_HS200;
625 return 0;
626}
627
628static const struct sdhci_pci_fixes sdhci_rtsx = {
629 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
630 SDHCI_QUIRK2_BROKEN_DDR50,
631 .probe_slot = rtsx_probe_slot,
632};
633
Bill Pemberton9647f842012-11-19 13:25:11 -0500634static const struct pci_device_id pci_ids[] = {
Pierre Ossman22606402008-03-23 19:33:23 +0100635 {
636 .vendor = PCI_VENDOR_ID_RICOH,
637 .device = PCI_DEVICE_ID_RICOH_R5C822,
638 .subvendor = PCI_ANY_ID,
639 .subdevice = PCI_ANY_ID,
640 .driver_data = (kernel_ulong_t)&sdhci_ricoh,
641 },
642
643 {
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700644 .vendor = PCI_VENDOR_ID_RICOH,
645 .device = 0x843,
646 .subvendor = PCI_ANY_ID,
647 .subdevice = PCI_ANY_ID,
648 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
649 },
650
651 {
Pablo Castillo568133e2010-08-10 18:02:01 -0700652 .vendor = PCI_VENDOR_ID_RICOH,
653 .device = 0xe822,
654 .subvendor = PCI_ANY_ID,
655 .subdevice = PCI_ANY_ID,
656 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
657 },
658
659 {
Manoj Iyer5fd11c02011-02-11 16:25:31 -0600660 .vendor = PCI_VENDOR_ID_RICOH,
661 .device = 0xe823,
662 .subvendor = PCI_ANY_ID,
663 .subdevice = PCI_ANY_ID,
664 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
665 },
666
667 {
Pierre Ossman22606402008-03-23 19:33:23 +0100668 .vendor = PCI_VENDOR_ID_ENE,
669 .device = PCI_DEVICE_ID_ENE_CB712_SD,
670 .subvendor = PCI_ANY_ID,
671 .subdevice = PCI_ANY_ID,
672 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
673 },
674
675 {
676 .vendor = PCI_VENDOR_ID_ENE,
677 .device = PCI_DEVICE_ID_ENE_CB712_SD_2,
678 .subvendor = PCI_ANY_ID,
679 .subdevice = PCI_ANY_ID,
680 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
681 },
682
683 {
684 .vendor = PCI_VENDOR_ID_ENE,
685 .device = PCI_DEVICE_ID_ENE_CB714_SD,
686 .subvendor = PCI_ANY_ID,
687 .subdevice = PCI_ANY_ID,
688 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
689 },
690
691 {
692 .vendor = PCI_VENDOR_ID_ENE,
693 .device = PCI_DEVICE_ID_ENE_CB714_SD_2,
694 .subvendor = PCI_ANY_ID,
695 .subdevice = PCI_ANY_ID,
696 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
697 },
698
699 {
700 .vendor = PCI_VENDOR_ID_MARVELL,
David Woodhouse8c5eb882008-09-03 09:45:57 +0100701 .device = PCI_DEVICE_ID_MARVELL_88ALP01_SD,
Pierre Ossman22606402008-03-23 19:33:23 +0100702 .subvendor = PCI_ANY_ID,
703 .subdevice = PCI_ANY_ID,
704 .driver_data = (kernel_ulong_t)&sdhci_cafe,
705 },
706
707 {
708 .vendor = PCI_VENDOR_ID_JMICRON,
709 .device = PCI_DEVICE_ID_JMICRON_JMB38X_SD,
710 .subvendor = PCI_ANY_ID,
711 .subdevice = PCI_ANY_ID,
712 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
713 },
714
Pierre Ossman44894282008-04-04 19:36:59 +0200715 {
716 .vendor = PCI_VENDOR_ID_JMICRON,
717 .device = PCI_DEVICE_ID_JMICRON_JMB38X_MMC,
718 .subvendor = PCI_ANY_ID,
719 .subdevice = PCI_ANY_ID,
720 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
721 },
722
Harald Welte557b0692009-06-18 16:53:38 +0200723 {
Takashi Iwai8f230f42010-12-08 10:04:30 +0100724 .vendor = PCI_VENDOR_ID_JMICRON,
725 .device = PCI_DEVICE_ID_JMICRON_JMB388_SD,
726 .subvendor = PCI_ANY_ID,
727 .subdevice = PCI_ANY_ID,
728 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
729 },
730
731 {
732 .vendor = PCI_VENDOR_ID_JMICRON,
733 .device = PCI_DEVICE_ID_JMICRON_JMB388_ESD,
734 .subvendor = PCI_ANY_ID,
735 .subdevice = PCI_ANY_ID,
736 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
737 },
738
739 {
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800740 .vendor = PCI_VENDOR_ID_SYSKONNECT,
741 .device = 0x8000,
742 .subvendor = PCI_ANY_ID,
743 .subdevice = PCI_ANY_ID,
744 .driver_data = (kernel_ulong_t)&sdhci_syskt,
745 },
746
747 {
Harald Welte557b0692009-06-18 16:53:38 +0200748 .vendor = PCI_VENDOR_ID_VIA,
749 .device = 0x95d0,
750 .subvendor = PCI_ANY_ID,
751 .subdevice = PCI_ANY_ID,
752 .driver_data = (kernel_ulong_t)&sdhci_via,
753 },
754
Xiaochen Shen29229052010-10-04 15:24:52 +0100755 {
Micky Ching9107ebb2014-02-21 18:40:35 +0800756 .vendor = PCI_VENDOR_ID_REALTEK,
757 .device = 0x5250,
758 .subvendor = PCI_ANY_ID,
759 .subdevice = PCI_ANY_ID,
760 .driver_data = (kernel_ulong_t)&sdhci_rtsx,
761 },
762
763 {
Xiaochen Shen29229052010-10-04 15:24:52 +0100764 .vendor = PCI_VENDOR_ID_INTEL,
Derek Browne43e968c2014-06-24 06:56:36 -0700765 .device = PCI_DEVICE_ID_INTEL_QRK_SD,
766 .subvendor = PCI_ANY_ID,
767 .subdevice = PCI_ANY_ID,
768 .driver_data = (kernel_ulong_t)&sdhci_intel_qrk,
769 },
770
771 {
772 .vendor = PCI_VENDOR_ID_INTEL,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100773 .device = PCI_DEVICE_ID_INTEL_MRST_SD0,
774 .subvendor = PCI_ANY_ID,
775 .subdevice = PCI_ANY_ID,
776 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc0,
777 },
778
779 {
780 .vendor = PCI_VENDOR_ID_INTEL,
781 .device = PCI_DEVICE_ID_INTEL_MRST_SD1,
782 .subvendor = PCI_ANY_ID,
783 .subdevice = PCI_ANY_ID,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000784 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
785 },
786
787 {
788 .vendor = PCI_VENDOR_ID_INTEL,
789 .device = PCI_DEVICE_ID_INTEL_MRST_SD2,
790 .subvendor = PCI_ANY_ID,
791 .subdevice = PCI_ANY_ID,
792 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100793 },
794
795 {
796 .vendor = PCI_VENDOR_ID_INTEL,
Xiaochen Shen29229052010-10-04 15:24:52 +0100797 .device = PCI_DEVICE_ID_INTEL_MFD_SD,
798 .subvendor = PCI_ANY_ID,
799 .subdevice = PCI_ANY_ID,
800 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
801 },
802
803 {
804 .vendor = PCI_VENDOR_ID_INTEL,
805 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO1,
806 .subvendor = PCI_ANY_ID,
807 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300808 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100809 },
810
811 {
812 .vendor = PCI_VENDOR_ID_INTEL,
813 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO2,
814 .subvendor = PCI_ANY_ID,
815 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300816 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100817 },
818
819 {
820 .vendor = PCI_VENDOR_ID_INTEL,
821 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC0,
822 .subvendor = PCI_ANY_ID,
823 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300824 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100825 },
826
827 {
828 .vendor = PCI_VENDOR_ID_INTEL,
829 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC1,
830 .subvendor = PCI_ANY_ID,
831 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300832 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100833 },
834
Jennifer Li26daa1e2010-11-17 23:01:59 -0500835 {
Alexander Stein296e0b02012-03-14 08:38:58 +0100836 .vendor = PCI_VENDOR_ID_INTEL,
837 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO0,
838 .subvendor = PCI_ANY_ID,
839 .subdevice = PCI_ANY_ID,
840 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
841 },
842
843 {
844 .vendor = PCI_VENDOR_ID_INTEL,
845 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO1,
846 .subvendor = PCI_ANY_ID,
847 .subdevice = PCI_ANY_ID,
848 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
849 },
850
851 {
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300852 .vendor = PCI_VENDOR_ID_INTEL,
853 .device = PCI_DEVICE_ID_INTEL_BYT_EMMC,
854 .subvendor = PCI_ANY_ID,
855 .subdevice = PCI_ANY_ID,
856 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
857 },
858
859 {
860 .vendor = PCI_VENDOR_ID_INTEL,
861 .device = PCI_DEVICE_ID_INTEL_BYT_SDIO,
862 .subvendor = PCI_ANY_ID,
863 .subdevice = PCI_ANY_ID,
864 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
865 },
866
867 {
868 .vendor = PCI_VENDOR_ID_INTEL,
869 .device = PCI_DEVICE_ID_INTEL_BYT_SD,
870 .subvendor = PCI_ANY_ID,
871 .subdevice = PCI_ANY_ID,
872 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
873 },
874
875 {
Adrian Hunter30d025c2013-06-20 12:57:59 +0300876 .vendor = PCI_VENDOR_ID_INTEL,
877 .device = PCI_DEVICE_ID_INTEL_BYT_EMMC2,
878 .subvendor = PCI_ANY_ID,
879 .subdevice = PCI_ANY_ID,
880 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
881 },
882
Alan Cox066173b2014-08-20 13:27:44 +0300883 {
884 .vendor = PCI_VENDOR_ID_INTEL,
885 .device = PCI_DEVICE_ID_INTEL_BSW_EMMC,
886 .subvendor = PCI_ANY_ID,
887 .subdevice = PCI_ANY_ID,
888 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
889 },
890
891 {
892 .vendor = PCI_VENDOR_ID_INTEL,
893 .device = PCI_DEVICE_ID_INTEL_BSW_SDIO,
894 .subvendor = PCI_ANY_ID,
895 .subdevice = PCI_ANY_ID,
896 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
897 },
898
899 {
900 .vendor = PCI_VENDOR_ID_INTEL,
901 .device = PCI_DEVICE_ID_INTEL_BSW_SD,
902 .subvendor = PCI_ANY_ID,
903 .subdevice = PCI_ANY_ID,
904 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
905 },
Eric Ernstd0520682013-10-21 09:54:41 -0700906
907 {
908 .vendor = PCI_VENDOR_ID_INTEL,
909 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO0,
910 .subvendor = PCI_ANY_ID,
911 .subdevice = PCI_ANY_ID,
912 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
913 },
914
915 {
916 .vendor = PCI_VENDOR_ID_INTEL,
917 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO1,
918 .subvendor = PCI_ANY_ID,
919 .subdevice = PCI_ANY_ID,
920 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
921 },
922
923 {
924 .vendor = PCI_VENDOR_ID_INTEL,
925 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO2,
926 .subvendor = PCI_ANY_ID,
927 .subdevice = PCI_ANY_ID,
928 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
929 },
930
931 {
932 .vendor = PCI_VENDOR_ID_INTEL,
933 .device = PCI_DEVICE_ID_INTEL_CLV_EMMC0,
934 .subvendor = PCI_ANY_ID,
935 .subdevice = PCI_ANY_ID,
936 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
937 },
938
939 {
940 .vendor = PCI_VENDOR_ID_INTEL,
941 .device = PCI_DEVICE_ID_INTEL_CLV_EMMC1,
942 .subvendor = PCI_ANY_ID,
943 .subdevice = PCI_ANY_ID,
944 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
945 },
946
Adrian Hunter30d025c2013-06-20 12:57:59 +0300947 {
David Cohen8776a162013-10-01 13:18:15 -0700948 .vendor = PCI_VENDOR_ID_INTEL,
949 .device = PCI_DEVICE_ID_INTEL_MRFL_MMC,
950 .subvendor = PCI_ANY_ID,
951 .subdevice = PCI_ANY_ID,
952 .driver_data = (kernel_ulong_t)&sdhci_intel_mrfl_mmc,
953 },
954 {
Jennifer Li26daa1e2010-11-17 23:01:59 -0500955 .vendor = PCI_VENDOR_ID_O2,
956 .device = PCI_DEVICE_ID_O2_8120,
957 .subvendor = PCI_ANY_ID,
958 .subdevice = PCI_ANY_ID,
959 .driver_data = (kernel_ulong_t)&sdhci_o2,
960 },
961
962 {
963 .vendor = PCI_VENDOR_ID_O2,
964 .device = PCI_DEVICE_ID_O2_8220,
965 .subvendor = PCI_ANY_ID,
966 .subdevice = PCI_ANY_ID,
967 .driver_data = (kernel_ulong_t)&sdhci_o2,
968 },
969
970 {
971 .vendor = PCI_VENDOR_ID_O2,
972 .device = PCI_DEVICE_ID_O2_8221,
973 .subvendor = PCI_ANY_ID,
974 .subdevice = PCI_ANY_ID,
975 .driver_data = (kernel_ulong_t)&sdhci_o2,
976 },
977
978 {
979 .vendor = PCI_VENDOR_ID_O2,
980 .device = PCI_DEVICE_ID_O2_8320,
981 .subvendor = PCI_ANY_ID,
982 .subdevice = PCI_ANY_ID,
983 .driver_data = (kernel_ulong_t)&sdhci_o2,
984 },
985
986 {
987 .vendor = PCI_VENDOR_ID_O2,
988 .device = PCI_DEVICE_ID_O2_8321,
989 .subvendor = PCI_ANY_ID,
990 .subdevice = PCI_ANY_ID,
991 .driver_data = (kernel_ulong_t)&sdhci_o2,
992 },
993
Adam Lee01acf692013-12-19 00:01:26 +0800994 {
995 .vendor = PCI_VENDOR_ID_O2,
996 .device = PCI_DEVICE_ID_O2_FUJIN2,
997 .subvendor = PCI_ANY_ID,
998 .subdevice = PCI_ANY_ID,
999 .driver_data = (kernel_ulong_t)&sdhci_o2,
1000 },
1001
1002 {
1003 .vendor = PCI_VENDOR_ID_O2,
1004 .device = PCI_DEVICE_ID_O2_SDS0,
1005 .subvendor = PCI_ANY_ID,
1006 .subdevice = PCI_ANY_ID,
1007 .driver_data = (kernel_ulong_t)&sdhci_o2,
1008 },
1009
1010 {
1011 .vendor = PCI_VENDOR_ID_O2,
1012 .device = PCI_DEVICE_ID_O2_SDS1,
1013 .subvendor = PCI_ANY_ID,
1014 .subdevice = PCI_ANY_ID,
1015 .driver_data = (kernel_ulong_t)&sdhci_o2,
1016 },
1017
1018 {
1019 .vendor = PCI_VENDOR_ID_O2,
1020 .device = PCI_DEVICE_ID_O2_SEABIRD0,
1021 .subvendor = PCI_ANY_ID,
1022 .subdevice = PCI_ANY_ID,
1023 .driver_data = (kernel_ulong_t)&sdhci_o2,
1024 },
1025
1026 {
1027 .vendor = PCI_VENDOR_ID_O2,
1028 .device = PCI_DEVICE_ID_O2_SEABIRD1,
1029 .subvendor = PCI_ANY_ID,
1030 .subdevice = PCI_ANY_ID,
1031 .driver_data = (kernel_ulong_t)&sdhci_o2,
1032 },
1033
Pierre Ossman22606402008-03-23 19:33:23 +01001034 { /* Generic SD host controller */
1035 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00)
1036 },
1037
1038 { /* end: all zeroes */ },
1039};
1040
1041MODULE_DEVICE_TABLE(pci, pci_ids);
1042
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001043/*****************************************************************************\
1044 * *
1045 * SDHCI core callbacks *
1046 * *
1047\*****************************************************************************/
1048
1049static int sdhci_pci_enable_dma(struct sdhci_host *host)
1050{
1051 struct sdhci_pci_slot *slot;
1052 struct pci_dev *pdev;
1053 int ret;
1054
1055 slot = sdhci_priv(host);
1056 pdev = slot->chip->pdev;
1057
1058 if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
1059 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07001060 (host->flags & SDHCI_USE_SDMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001061 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
1062 "doesn't fully claim to support it.\n");
1063 }
1064
Yang Hongyang284901a2009-04-06 19:01:15 -07001065 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001066 if (ret)
1067 return ret;
1068
1069 pci_set_master(pdev);
1070
1071 return 0;
1072}
1073
Russell King2317f562014-04-25 12:57:07 +01001074static void sdhci_pci_set_bus_width(struct sdhci_host *host, int width)
Major Lee68077b02011-06-29 14:23:46 +03001075{
1076 u8 ctrl;
1077
1078 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1079
1080 switch (width) {
1081 case MMC_BUS_WIDTH_8:
1082 ctrl |= SDHCI_CTRL_8BITBUS;
1083 ctrl &= ~SDHCI_CTRL_4BITBUS;
1084 break;
1085 case MMC_BUS_WIDTH_4:
1086 ctrl |= SDHCI_CTRL_4BITBUS;
1087 ctrl &= ~SDHCI_CTRL_8BITBUS;
1088 break;
1089 default:
1090 ctrl &= ~(SDHCI_CTRL_8BITBUS | SDHCI_CTRL_4BITBUS);
1091 break;
1092 }
1093
1094 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Major Lee68077b02011-06-29 14:23:46 +03001095}
1096
Adrian Hunterc9faff62013-06-13 11:50:26 +03001097static void sdhci_pci_gpio_hw_reset(struct sdhci_host *host)
Adrian Hunter0f201652011-08-29 16:42:13 +03001098{
1099 struct sdhci_pci_slot *slot = sdhci_priv(host);
1100 int rst_n_gpio = slot->rst_n_gpio;
1101
1102 if (!gpio_is_valid(rst_n_gpio))
1103 return;
1104 gpio_set_value_cansleep(rst_n_gpio, 0);
1105 /* For eMMC, minimum is 1us but give it 10us for good measure */
1106 udelay(10);
1107 gpio_set_value_cansleep(rst_n_gpio, 1);
1108 /* For eMMC, minimum is 200us but give it 300us for good measure */
1109 usleep_range(300, 1000);
1110}
1111
Adrian Hunterc9faff62013-06-13 11:50:26 +03001112static void sdhci_pci_hw_reset(struct sdhci_host *host)
1113{
1114 struct sdhci_pci_slot *slot = sdhci_priv(host);
1115
1116 if (slot->hw_reset)
1117 slot->hw_reset(host);
1118}
1119
Lars-Peter Clausenc9155682013-03-13 19:26:05 +01001120static const struct sdhci_ops sdhci_pci_ops = {
Russell King17710592014-04-25 12:58:55 +01001121 .set_clock = sdhci_set_clock,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001122 .enable_dma = sdhci_pci_enable_dma,
Russell King2317f562014-04-25 12:57:07 +01001123 .set_bus_width = sdhci_pci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +01001124 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +01001125 .set_uhs_signaling = sdhci_set_uhs_signaling,
Adrian Hunter0f201652011-08-29 16:42:13 +03001126 .hw_reset = sdhci_pci_hw_reset,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001127};
1128
1129/*****************************************************************************\
1130 * *
1131 * Suspend/resume *
1132 * *
1133\*****************************************************************************/
1134
1135#ifdef CONFIG_PM
1136
Manuel Lauss29495aa2011-11-03 11:09:45 +01001137static int sdhci_pci_suspend(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001138{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001139 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001140 struct sdhci_pci_chip *chip;
1141 struct sdhci_pci_slot *slot;
Daniel Drake5f619702010-11-04 22:20:39 +00001142 mmc_pm_flag_t slot_pm_flags;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001143 mmc_pm_flag_t pm_flags = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001144 int i, ret;
1145
1146 chip = pci_get_drvdata(pdev);
1147 if (!chip)
1148 return 0;
1149
Ameya Palandeb177bc92011-04-05 21:13:13 +03001150 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001151 slot = chip->slots[i];
1152 if (!slot)
1153 continue;
1154
Manuel Lauss29495aa2011-11-03 11:09:45 +01001155 ret = sdhci_suspend_host(slot->host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001156
Axel Linb678b912011-12-03 15:28:05 +08001157 if (ret)
1158 goto err_pci_suspend;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001159
Daniel Drake5f619702010-11-04 22:20:39 +00001160 slot_pm_flags = slot->host->mmc->pm_flags;
1161 if (slot_pm_flags & MMC_PM_WAKE_SDIO_IRQ)
1162 sdhci_enable_irq_wakeups(slot->host);
1163
1164 pm_flags |= slot_pm_flags;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001165 }
1166
Pierre Ossman44894282008-04-04 19:36:59 +02001167 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001168 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001169 if (ret)
1170 goto err_pci_suspend;
Pierre Ossman44894282008-04-04 19:36:59 +02001171 }
1172
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001173 if (pm_flags & MMC_PM_KEEP_POWER) {
Chuanxiao.Dong6b91f2d2014-07-15 17:28:05 +08001174 if (pm_flags & MMC_PM_WAKE_SDIO_IRQ)
1175 device_init_wakeup(dev, true);
1176 else
1177 device_init_wakeup(dev, false);
1178 } else
1179 device_init_wakeup(dev, false);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001180
1181 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001182
1183err_pci_suspend:
1184 while (--i >= 0)
1185 sdhci_resume_host(chip->slots[i]->host);
1186 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001187}
1188
Manuel Lauss29495aa2011-11-03 11:09:45 +01001189static int sdhci_pci_resume(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001190{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001191 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001192 struct sdhci_pci_chip *chip;
1193 struct sdhci_pci_slot *slot;
1194 int i, ret;
1195
1196 chip = pci_get_drvdata(pdev);
1197 if (!chip)
1198 return 0;
1199
Pierre Ossman45211e22008-03-24 13:09:09 +01001200 if (chip->fixes && chip->fixes->resume) {
1201 ret = chip->fixes->resume(chip);
1202 if (ret)
1203 return ret;
1204 }
1205
Ameya Palandeb177bc92011-04-05 21:13:13 +03001206 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001207 slot = chip->slots[i];
1208 if (!slot)
1209 continue;
1210
1211 ret = sdhci_resume_host(slot->host);
1212 if (ret)
1213 return ret;
1214 }
1215
1216 return 0;
1217}
1218
1219#else /* CONFIG_PM */
1220
1221#define sdhci_pci_suspend NULL
1222#define sdhci_pci_resume NULL
1223
1224#endif /* CONFIG_PM */
1225
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001226#ifdef CONFIG_PM_RUNTIME
1227
1228static int sdhci_pci_runtime_suspend(struct device *dev)
1229{
1230 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
1231 struct sdhci_pci_chip *chip;
1232 struct sdhci_pci_slot *slot;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001233 int i, ret;
1234
1235 chip = pci_get_drvdata(pdev);
1236 if (!chip)
1237 return 0;
1238
1239 for (i = 0; i < chip->num_slots; i++) {
1240 slot = chip->slots[i];
1241 if (!slot)
1242 continue;
1243
1244 ret = sdhci_runtime_suspend_host(slot->host);
1245
Axel Linb678b912011-12-03 15:28:05 +08001246 if (ret)
1247 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001248 }
1249
1250 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001251 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001252 if (ret)
1253 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001254 }
1255
1256 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001257
1258err_pci_runtime_suspend:
1259 while (--i >= 0)
1260 sdhci_runtime_resume_host(chip->slots[i]->host);
1261 return ret;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001262}
1263
1264static int sdhci_pci_runtime_resume(struct device *dev)
1265{
1266 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
1267 struct sdhci_pci_chip *chip;
1268 struct sdhci_pci_slot *slot;
1269 int i, ret;
1270
1271 chip = pci_get_drvdata(pdev);
1272 if (!chip)
1273 return 0;
1274
1275 if (chip->fixes && chip->fixes->resume) {
1276 ret = chip->fixes->resume(chip);
1277 if (ret)
1278 return ret;
1279 }
1280
1281 for (i = 0; i < chip->num_slots; i++) {
1282 slot = chip->slots[i];
1283 if (!slot)
1284 continue;
1285
1286 ret = sdhci_runtime_resume_host(slot->host);
1287 if (ret)
1288 return ret;
1289 }
1290
1291 return 0;
1292}
1293
1294static int sdhci_pci_runtime_idle(struct device *dev)
1295{
1296 return 0;
1297}
1298
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001299#endif
1300
1301static const struct dev_pm_ops sdhci_pci_pm_ops = {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001302 .suspend = sdhci_pci_suspend,
1303 .resume = sdhci_pci_resume,
Peter Griffinf3a92b12014-08-12 17:14:28 +01001304 SET_RUNTIME_PM_OPS(sdhci_pci_runtime_suspend,
1305 sdhci_pci_runtime_resume, sdhci_pci_runtime_idle)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001306};
1307
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001308/*****************************************************************************\
1309 * *
1310 * Device probing/removal *
1311 * *
1312\*****************************************************************************/
1313
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001314static struct sdhci_pci_slot *sdhci_pci_probe_slot(
Adrian Hunter52c506f2011-12-27 15:48:43 +02001315 struct pci_dev *pdev, struct sdhci_pci_chip *chip, int first_bar,
1316 int slotno)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001317{
1318 struct sdhci_pci_slot *slot;
1319 struct sdhci_host *host;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001320 int ret, bar = first_bar + slotno;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001321
1322 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
1323 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
1324 return ERR_PTR(-ENODEV);
1325 }
1326
Adrian Hunter90b3e6c2012-10-18 09:54:31 +03001327 if (pci_resource_len(pdev, bar) < 0x100) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001328 dev_err(&pdev->dev, "Invalid iomem size. You may "
1329 "experience problems.\n");
1330 }
1331
1332 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1333 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
1334 return ERR_PTR(-ENODEV);
1335 }
1336
1337 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
1338 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
1339 return ERR_PTR(-ENODEV);
1340 }
1341
1342 host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pci_slot));
1343 if (IS_ERR(host)) {
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001344 dev_err(&pdev->dev, "cannot allocate host\n");
Julia Lawalldc0fd7b2010-05-26 14:42:11 -07001345 return ERR_CAST(host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001346 }
1347
1348 slot = sdhci_priv(host);
1349
1350 slot->chip = chip;
1351 slot->host = host;
1352 slot->pci_bar = bar;
Adrian Hunter0f201652011-08-29 16:42:13 +03001353 slot->rst_n_gpio = -EINVAL;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001354 slot->cd_gpio = -EINVAL;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001355
Adrian Hunter52c506f2011-12-27 15:48:43 +02001356 /* Retrieve platform data if there is any */
1357 if (*sdhci_pci_get_data)
1358 slot->data = sdhci_pci_get_data(pdev, slotno);
1359
1360 if (slot->data) {
1361 if (slot->data->setup) {
1362 ret = slot->data->setup(slot->data);
1363 if (ret) {
1364 dev_err(&pdev->dev, "platform setup failed\n");
1365 goto free;
1366 }
1367 }
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001368 slot->rst_n_gpio = slot->data->rst_n_gpio;
1369 slot->cd_gpio = slot->data->cd_gpio;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001370 }
1371
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001372 host->hw_name = "PCI";
1373 host->ops = &sdhci_pci_ops;
1374 host->quirks = chip->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001375 host->quirks2 = chip->quirks2;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001376
1377 host->irq = pdev->irq;
1378
1379 ret = pci_request_region(pdev, bar, mmc_hostname(host->mmc));
1380 if (ret) {
1381 dev_err(&pdev->dev, "cannot request region\n");
Adrian Hunter52c506f2011-12-27 15:48:43 +02001382 goto cleanup;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001383 }
1384
Arjan van de Ven092f82e2008-09-28 16:15:56 -07001385 host->ioaddr = pci_ioremap_bar(pdev, bar);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001386 if (!host->ioaddr) {
1387 dev_err(&pdev->dev, "failed to remap registers\n");
Chris Ball9fdcdbb2011-03-29 00:46:12 -04001388 ret = -ENOMEM;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001389 goto release;
1390 }
1391
Pierre Ossman44894282008-04-04 19:36:59 +02001392 if (chip->fixes && chip->fixes->probe_slot) {
1393 ret = chip->fixes->probe_slot(slot);
1394 if (ret)
1395 goto unmap;
1396 }
1397
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001398 if (gpio_is_valid(slot->rst_n_gpio)) {
1399 if (!gpio_request(slot->rst_n_gpio, "eMMC_reset")) {
1400 gpio_direction_output(slot->rst_n_gpio, 1);
1401 slot->host->mmc->caps |= MMC_CAP_HW_RESET;
Adrian Hunterc9faff62013-06-13 11:50:26 +03001402 slot->hw_reset = sdhci_pci_gpio_hw_reset;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001403 } else {
1404 dev_warn(&pdev->dev, "failed to request rst_n_gpio\n");
1405 slot->rst_n_gpio = -EINVAL;
1406 }
1407 }
1408
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001409 host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ;
Aaron Lueed222a2013-03-05 11:24:52 +08001410 host->mmc->slotno = slotno;
Adrian Huntera08b17b2013-04-15 11:27:25 -04001411 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001412
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001413 ret = sdhci_add_host(host);
1414 if (ret)
Pierre Ossman44894282008-04-04 19:36:59 +02001415 goto remove;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001416
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001417 sdhci_pci_add_own_cd(slot);
1418
Adrian Hunter77a01222014-01-13 09:49:16 +02001419 /*
1420 * Check if the chip needs a separate GPIO for card detect to wake up
1421 * from runtime suspend. If it is not there, don't allow runtime PM.
1422 * Note sdhci_pci_add_own_cd() sets slot->cd_gpio to -EINVAL on failure.
1423 */
Adrian Hunter945be382014-01-21 09:52:39 +02001424 if (chip->fixes && chip->fixes->own_cd_for_runtime_pm &&
1425 !gpio_is_valid(slot->cd_gpio))
Adrian Hunter77a01222014-01-13 09:49:16 +02001426 chip->allow_runtime_pm = false;
1427
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001428 return slot;
1429
Pierre Ossman44894282008-04-04 19:36:59 +02001430remove:
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001431 if (gpio_is_valid(slot->rst_n_gpio))
1432 gpio_free(slot->rst_n_gpio);
1433
Pierre Ossman44894282008-04-04 19:36:59 +02001434 if (chip->fixes && chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001435 chip->fixes->remove_slot(slot, 0);
Pierre Ossman44894282008-04-04 19:36:59 +02001436
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001437unmap:
1438 iounmap(host->ioaddr);
1439
1440release:
1441 pci_release_region(pdev, bar);
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001442
Adrian Hunter52c506f2011-12-27 15:48:43 +02001443cleanup:
1444 if (slot->data && slot->data->cleanup)
1445 slot->data->cleanup(slot->data);
1446
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001447free:
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001448 sdhci_free_host(host);
1449
1450 return ERR_PTR(ret);
1451}
1452
1453static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
1454{
Pierre Ossman1e728592008-04-16 19:13:13 +02001455 int dead;
1456 u32 scratch;
1457
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001458 sdhci_pci_remove_own_cd(slot);
1459
Pierre Ossman1e728592008-04-16 19:13:13 +02001460 dead = 0;
1461 scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
1462 if (scratch == (u32)-1)
1463 dead = 1;
1464
1465 sdhci_remove_host(slot->host, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001466
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001467 if (gpio_is_valid(slot->rst_n_gpio))
1468 gpio_free(slot->rst_n_gpio);
1469
Pierre Ossman44894282008-04-04 19:36:59 +02001470 if (slot->chip->fixes && slot->chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001471 slot->chip->fixes->remove_slot(slot, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001472
Adrian Hunter52c506f2011-12-27 15:48:43 +02001473 if (slot->data && slot->data->cleanup)
1474 slot->data->cleanup(slot->data);
1475
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001476 pci_release_region(slot->chip->pdev, slot->pci_bar);
Pierre Ossman44894282008-04-04 19:36:59 +02001477
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001478 sdhci_free_host(slot->host);
1479}
1480
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001481static void sdhci_pci_runtime_pm_allow(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001482{
1483 pm_runtime_put_noidle(dev);
1484 pm_runtime_allow(dev);
1485 pm_runtime_set_autosuspend_delay(dev, 50);
1486 pm_runtime_use_autosuspend(dev);
1487 pm_suspend_ignore_children(dev, 1);
1488}
1489
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001490static void sdhci_pci_runtime_pm_forbid(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001491{
1492 pm_runtime_forbid(dev);
1493 pm_runtime_get_noresume(dev);
1494}
1495
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001496static int sdhci_pci_probe(struct pci_dev *pdev,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001497 const struct pci_device_id *ent)
1498{
1499 struct sdhci_pci_chip *chip;
1500 struct sdhci_pci_slot *slot;
1501
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001502 u8 slots, first_bar;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001503 int ret, i;
1504
1505 BUG_ON(pdev == NULL);
1506 BUG_ON(ent == NULL);
1507
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001508 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001509 (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001510
1511 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
1512 if (ret)
1513 return ret;
1514
1515 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
1516 dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
1517 if (slots == 0)
1518 return -ENODEV;
1519
1520 BUG_ON(slots > MAX_SLOTS);
1521
1522 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
1523 if (ret)
1524 return ret;
1525
1526 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
1527
1528 if (first_bar > 5) {
1529 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
1530 return -ENODEV;
1531 }
1532
1533 ret = pci_enable_device(pdev);
1534 if (ret)
1535 return ret;
1536
1537 chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
1538 if (!chip) {
1539 ret = -ENOMEM;
1540 goto err;
1541 }
1542
1543 chip->pdev = pdev;
Ameya Palandeb177bc92011-04-05 21:13:13 +03001544 chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001545 if (chip->fixes) {
Pierre Ossman22606402008-03-23 19:33:23 +01001546 chip->quirks = chip->fixes->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001547 chip->quirks2 = chip->fixes->quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001548 chip->allow_runtime_pm = chip->fixes->allow_runtime_pm;
1549 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001550 chip->num_slots = slots;
1551
1552 pci_set_drvdata(pdev, chip);
1553
Pierre Ossman22606402008-03-23 19:33:23 +01001554 if (chip->fixes && chip->fixes->probe) {
1555 ret = chip->fixes->probe(chip);
1556 if (ret)
1557 goto free;
1558 }
1559
Alan Cox225d85f2010-10-04 15:24:21 +01001560 slots = chip->num_slots; /* Quirk may have changed this */
1561
Ameya Palandeb177bc92011-04-05 21:13:13 +03001562 for (i = 0; i < slots; i++) {
Adrian Hunter52c506f2011-12-27 15:48:43 +02001563 slot = sdhci_pci_probe_slot(pdev, chip, first_bar, i);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001564 if (IS_ERR(slot)) {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001565 for (i--; i >= 0; i--)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001566 sdhci_pci_remove_slot(chip->slots[i]);
1567 ret = PTR_ERR(slot);
1568 goto free;
1569 }
1570
1571 chip->slots[i] = slot;
1572 }
1573
Adrian Hunterc43fd772011-10-17 10:52:44 +03001574 if (chip->allow_runtime_pm)
1575 sdhci_pci_runtime_pm_allow(&pdev->dev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001576
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001577 return 0;
1578
1579free:
1580 pci_set_drvdata(pdev, NULL);
1581 kfree(chip);
1582
1583err:
1584 pci_disable_device(pdev);
1585 return ret;
1586}
1587
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001588static void sdhci_pci_remove(struct pci_dev *pdev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001589{
1590 int i;
1591 struct sdhci_pci_chip *chip;
1592
1593 chip = pci_get_drvdata(pdev);
1594
1595 if (chip) {
Adrian Hunterc43fd772011-10-17 10:52:44 +03001596 if (chip->allow_runtime_pm)
1597 sdhci_pci_runtime_pm_forbid(&pdev->dev);
1598
Ameya Palandeb177bc92011-04-05 21:13:13 +03001599 for (i = 0; i < chip->num_slots; i++)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001600 sdhci_pci_remove_slot(chip->slots[i]);
1601
1602 pci_set_drvdata(pdev, NULL);
1603 kfree(chip);
1604 }
1605
1606 pci_disable_device(pdev);
1607}
1608
1609static struct pci_driver sdhci_driver = {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001610 .name = "sdhci-pci",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001611 .id_table = pci_ids,
Ameya Palandeb177bc92011-04-05 21:13:13 +03001612 .probe = sdhci_pci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001613 .remove = sdhci_pci_remove,
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001614 .driver = {
1615 .pm = &sdhci_pci_pm_ops
1616 },
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001617};
1618
Sachin Kamatacc69642012-08-27 11:57:02 +05301619module_pci_driver(sdhci_driver);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001620
Pierre Ossman32710e82009-04-08 20:14:54 +02001621MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001622MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
1623MODULE_LICENSE("GPL");