blob: 87f9dd91f68c0727d5db7c096d9248b4089aab76 [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
Major Lee68077b02011-06-29 14:23:46 +0300106static int mrst_hc_probe_slot(struct sdhci_pci_slot *slot)
107{
108 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
109 return 0;
110}
111
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100112/*
113 * ADMA operation is disabled for Moorestown platform due to
114 * hardware bugs.
115 */
Jacob Pan35ac6f02010-11-09 13:57:29 +0000116static int mrst_hc_probe(struct sdhci_pci_chip *chip)
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100117{
118 /*
Jacob Pan35ac6f02010-11-09 13:57:29 +0000119 * slots number is fixed here for MRST as SDIO3/5 are never used and
120 * have hardware bugs.
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100121 */
122 chip->num_slots = 1;
123 return 0;
124}
125
Alexander Stein296e0b02012-03-14 08:38:58 +0100126static int pch_hc_probe_slot(struct sdhci_pci_slot *slot)
127{
128 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
129 return 0;
130}
131
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300132#ifdef CONFIG_PM_RUNTIME
133
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200134static irqreturn_t sdhci_pci_sd_cd(int irq, void *dev_id)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300135{
136 struct sdhci_pci_slot *slot = dev_id;
137 struct sdhci_host *host = slot->host;
138
139 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
140 return IRQ_HANDLED;
141}
142
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200143static void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300144{
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200145 int err, irq, gpio = slot->cd_gpio;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300146
147 slot->cd_gpio = -EINVAL;
148 slot->cd_irq = -EINVAL;
149
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200150 if (!gpio_is_valid(gpio))
151 return;
152
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300153 err = gpio_request(gpio, "sd_cd");
154 if (err < 0)
155 goto out;
156
157 err = gpio_direction_input(gpio);
158 if (err < 0)
159 goto out_free;
160
161 irq = gpio_to_irq(gpio);
162 if (irq < 0)
163 goto out_free;
164
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200165 err = request_irq(irq, sdhci_pci_sd_cd, IRQF_TRIGGER_RISING |
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300166 IRQF_TRIGGER_FALLING, "sd_cd", slot);
167 if (err)
168 goto out_free;
169
170 slot->cd_gpio = gpio;
171 slot->cd_irq = irq;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300172
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200173 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300174
175out_free:
176 gpio_free(gpio);
177out:
178 dev_warn(&slot->chip->pdev->dev, "failed to setup card detect wake up\n");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300179}
180
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200181static void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300182{
183 if (slot->cd_irq >= 0)
184 free_irq(slot->cd_irq, slot);
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200185 if (gpio_is_valid(slot->cd_gpio))
186 gpio_free(slot->cd_gpio);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300187}
188
189#else
190
Adrian Hunterc5e027a2011-12-27 15:48:44 +0200191static inline void sdhci_pci_add_own_cd(struct sdhci_pci_slot *slot)
192{
193}
194
195static inline void sdhci_pci_remove_own_cd(struct sdhci_pci_slot *slot)
196{
197}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300198
199#endif
200
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300201static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot)
202{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300203 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
Adrian Hunterda721cf2012-02-07 14:48:53 +0200204 slot->host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC |
205 MMC_CAP2_HC_ERASE_SZ;
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300206 return 0;
207}
208
Adrian Hunter93933502011-12-27 15:48:47 +0200209static int mfd_sdio_probe_slot(struct sdhci_pci_slot *slot)
210{
Adrian Hunter012e4672012-01-30 14:27:18 +0200211 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
Adrian Hunter93933502011-12-27 15:48:47 +0200212 return 0;
213}
214
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100215static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = {
216 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Major Lee68077b02011-06-29 14:23:46 +0300217 .probe_slot = mrst_hc_probe_slot,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100218};
219
Jacob Pan35ac6f02010-11-09 13:57:29 +0000220static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = {
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100221 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000222 .probe = mrst_hc_probe,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100223};
224
Xiaochen Shen29229052010-10-04 15:24:52 +0100225static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = {
226 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300227 .allow_runtime_pm = true,
Adrian Hunter77a01222014-01-13 09:49:16 +0200228 .own_cd_for_runtime_pm = true,
Xiaochen Shen29229052010-10-04 15:24:52 +0100229};
230
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300231static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio = {
Xiaochen Shen29229052010-10-04 15:24:52 +0100232 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterf3c55a72012-02-07 14:48:55 +0200233 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300234 .allow_runtime_pm = true,
Adrian Hunter93933502011-12-27 15:48:47 +0200235 .probe_slot = mfd_sdio_probe_slot,
Xiaochen Shen29229052010-10-04 15:24:52 +0100236};
237
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300238static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc = {
239 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunterc43fd772011-10-17 10:52:44 +0300240 .allow_runtime_pm = true,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300241 .probe_slot = mfd_emmc_probe_slot,
242};
243
Alexander Stein296e0b02012-03-14 08:38:58 +0100244static const struct sdhci_pci_fixes sdhci_intel_pch_sdio = {
245 .quirks = SDHCI_QUIRK_BROKEN_ADMA,
246 .probe_slot = pch_hc_probe_slot,
247};
248
Adrian Hunterc9faff62013-06-13 11:50:26 +0300249static void sdhci_pci_int_hw_reset(struct sdhci_host *host)
250{
251 u8 reg;
252
253 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
254 reg |= 0x10;
255 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
256 /* For eMMC, minimum is 1us but give it 9us for good measure */
257 udelay(9);
258 reg &= ~0x10;
259 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
260 /* For eMMC, minimum is 200us but give it 300us for good measure */
261 usleep_range(300, 1000);
262}
263
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300264static int byt_emmc_probe_slot(struct sdhci_pci_slot *slot)
265{
Adrian Hunterc9faff62013-06-13 11:50:26 +0300266 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
267 MMC_CAP_HW_RESET;
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300268 slot->host->mmc->caps2 |= MMC_CAP2_HC_ERASE_SZ;
Adrian Hunterc9faff62013-06-13 11:50:26 +0300269 slot->hw_reset = sdhci_pci_int_hw_reset;
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300270 return 0;
271}
272
273static int byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
274{
275 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
276 return 0;
277}
278
279static const struct sdhci_pci_fixes sdhci_intel_byt_emmc = {
280 .allow_runtime_pm = true,
281 .probe_slot = byt_emmc_probe_slot,
282};
283
284static const struct sdhci_pci_fixes sdhci_intel_byt_sdio = {
285 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
286 .allow_runtime_pm = true,
287 .probe_slot = byt_sdio_probe_slot,
288};
289
290static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
Adrian Hunter7396e312013-05-06 12:17:34 +0300291 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON,
292 .allow_runtime_pm = true,
Adrian Hunter77a01222014-01-13 09:49:16 +0200293 .own_cd_for_runtime_pm = true,
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300294};
295
David Cohen8776a162013-10-01 13:18:15 -0700296/* Define Host controllers for Intel Merrifield platform */
297#define INTEL_MRFL_EMMC_0 0
298#define INTEL_MRFL_EMMC_1 1
299
300static int intel_mrfl_mmc_probe_slot(struct sdhci_pci_slot *slot)
301{
302 if ((PCI_FUNC(slot->chip->pdev->devfn) != INTEL_MRFL_EMMC_0) &&
303 (PCI_FUNC(slot->chip->pdev->devfn) != INTEL_MRFL_EMMC_1))
304 /* SD support is not ready yet */
305 return -ENODEV;
306
307 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
308 MMC_CAP_1_8V_DDR;
309
310 return 0;
311}
312
313static const struct sdhci_pci_fixes sdhci_intel_mrfl_mmc = {
314 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
David Cohen390145f2013-10-29 10:58:27 -0700315 .quirks2 = SDHCI_QUIRK2_BROKEN_HS200,
David Cohen8776a162013-10-01 13:18:15 -0700316 .probe_slot = intel_mrfl_mmc_probe_slot,
317};
318
Jennifer Li26daa1e2010-11-17 23:01:59 -0500319/* O2Micro extra registers */
320#define O2_SD_LOCK_WP 0xD3
321#define O2_SD_MULTI_VCC3V 0xEE
322#define O2_SD_CLKREQ 0xEC
323#define O2_SD_CAPS 0xE0
324#define O2_SD_ADMA1 0xE2
325#define O2_SD_ADMA2 0xE7
326#define O2_SD_INF_MOD 0xF1
327
Pierre Ossman45211e22008-03-24 13:09:09 +0100328static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
329{
330 u8 scratch;
331 int ret;
332
333 ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
334 if (ret)
335 return ret;
336
337 /*
338 * Turn PMOS on [bit 0], set over current detection to 2.4 V
339 * [bit 1:2] and enable over current debouncing [bit 6].
340 */
341 if (on)
342 scratch |= 0x47;
343 else
344 scratch &= ~0x47;
345
346 ret = pci_write_config_byte(chip->pdev, 0xAE, scratch);
347 if (ret)
348 return ret;
349
350 return 0;
351}
352
353static int jmicron_probe(struct sdhci_pci_chip *chip)
354{
355 int ret;
Takashi Iwai8f230f42010-12-08 10:04:30 +0100356 u16 mmcdev = 0;
Pierre Ossman45211e22008-03-24 13:09:09 +0100357
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200358 if (chip->pdev->revision == 0) {
359 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
360 SDHCI_QUIRK_32BIT_DMA_SIZE |
Pierre Ossman2134a922008-06-28 18:28:51 +0200361 SDHCI_QUIRK_32BIT_ADMA_SIZE |
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200362 SDHCI_QUIRK_RESET_AFTER_REQUEST |
Pierre Ossman86a6a872009-02-02 21:13:49 +0100363 SDHCI_QUIRK_BROKEN_SMALL_PIO;
Pierre Ossman93fc48c2008-06-28 18:21:41 +0200364 }
365
Pierre Ossman45211e22008-03-24 13:09:09 +0100366 /*
Pierre Ossman44894282008-04-04 19:36:59 +0200367 * JMicron chips can have two interfaces to the same hardware
368 * in order to work around limitations in Microsoft's driver.
369 * We need to make sure we only bind to one of them.
370 *
371 * This code assumes two things:
372 *
373 * 1. The PCI code adds subfunctions in order.
374 *
375 * 2. The MMC interface has a lower subfunction number
376 * than the SD interface.
377 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100378 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD)
379 mmcdev = PCI_DEVICE_ID_JMICRON_JMB38X_MMC;
380 else if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD)
381 mmcdev = PCI_DEVICE_ID_JMICRON_JMB388_ESD;
382
383 if (mmcdev) {
Pierre Ossman44894282008-04-04 19:36:59 +0200384 struct pci_dev *sd_dev;
385
386 sd_dev = NULL;
387 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
Takashi Iwai8f230f42010-12-08 10:04:30 +0100388 mmcdev, sd_dev)) != NULL) {
Pierre Ossman44894282008-04-04 19:36:59 +0200389 if ((PCI_SLOT(chip->pdev->devfn) ==
390 PCI_SLOT(sd_dev->devfn)) &&
391 (chip->pdev->bus == sd_dev->bus))
392 break;
393 }
394
395 if (sd_dev) {
396 pci_dev_put(sd_dev);
397 dev_info(&chip->pdev->dev, "Refusing to bind to "
398 "secondary interface.\n");
399 return -ENODEV;
400 }
401 }
402
403 /*
Pierre Ossman45211e22008-03-24 13:09:09 +0100404 * JMicron chips need a bit of a nudge to enable the power
405 * output pins.
406 */
407 ret = jmicron_pmos(chip, 1);
408 if (ret) {
409 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
410 return ret;
411 }
412
Takashi Iwai82b0e232011-04-21 20:26:38 +0200413 /* quirk for unsable RO-detection on JM388 chips */
414 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD ||
415 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
416 chip->quirks |= SDHCI_QUIRK_UNSTABLE_RO_DETECT;
417
Pierre Ossman45211e22008-03-24 13:09:09 +0100418 return 0;
419}
420
Pierre Ossman44894282008-04-04 19:36:59 +0200421static void jmicron_enable_mmc(struct sdhci_host *host, int on)
422{
423 u8 scratch;
424
425 scratch = readb(host->ioaddr + 0xC0);
426
427 if (on)
428 scratch |= 0x01;
429 else
430 scratch &= ~0x01;
431
432 writeb(scratch, host->ioaddr + 0xC0);
433}
434
435static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
436{
Pierre Ossman2134a922008-06-28 18:28:51 +0200437 if (slot->chip->pdev->revision == 0) {
438 u16 version;
439
440 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
441 version = (version & SDHCI_VENDOR_VER_MASK) >>
442 SDHCI_VENDOR_VER_SHIFT;
443
444 /*
445 * Older versions of the chip have lots of nasty glitches
446 * in the ADMA engine. It's best just to avoid it
447 * completely.
448 */
449 if (version < 0xAC)
450 slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
451 }
452
Takashi Iwai8f230f42010-12-08 10:04:30 +0100453 /* JM388 MMC doesn't support 1.8V while SD supports it */
454 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
455 slot->host->ocr_avail_sd = MMC_VDD_32_33 | MMC_VDD_33_34 |
456 MMC_VDD_29_30 | MMC_VDD_30_31 |
457 MMC_VDD_165_195; /* allow 1.8V */
458 slot->host->ocr_avail_mmc = MMC_VDD_32_33 | MMC_VDD_33_34 |
459 MMC_VDD_29_30 | MMC_VDD_30_31; /* no 1.8V for MMC */
460 }
461
Pierre Ossman44894282008-04-04 19:36:59 +0200462 /*
463 * The secondary interface requires a bit set to get the
464 * interrupts.
465 */
Takashi Iwai8f230f42010-12-08 10:04:30 +0100466 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
467 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200468 jmicron_enable_mmc(slot->host, 1);
469
Takashi Iwaid75c1082010-12-16 17:54:14 +0100470 slot->host->mmc->caps |= MMC_CAP_BUS_WIDTH_TEST;
471
Pierre Ossman44894282008-04-04 19:36:59 +0200472 return 0;
473}
474
Pierre Ossman1e728592008-04-16 19:13:13 +0200475static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
Pierre Ossman44894282008-04-04 19:36:59 +0200476{
Pierre Ossman1e728592008-04-16 19:13:13 +0200477 if (dead)
478 return;
479
Takashi Iwai8f230f42010-12-08 10:04:30 +0100480 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
481 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
Pierre Ossman44894282008-04-04 19:36:59 +0200482 jmicron_enable_mmc(slot->host, 0);
483}
484
Manuel Lauss29495aa2011-11-03 11:09:45 +0100485static int jmicron_suspend(struct sdhci_pci_chip *chip)
Pierre Ossman44894282008-04-04 19:36:59 +0200486{
487 int i;
488
Takashi Iwai8f230f42010-12-08 10:04:30 +0100489 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
490 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300491 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200492 jmicron_enable_mmc(chip->slots[i]->host, 0);
493 }
494
495 return 0;
496}
497
Pierre Ossman45211e22008-03-24 13:09:09 +0100498static int jmicron_resume(struct sdhci_pci_chip *chip)
499{
Pierre Ossman44894282008-04-04 19:36:59 +0200500 int ret, i;
501
Takashi Iwai8f230f42010-12-08 10:04:30 +0100502 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
503 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
Ameya Palandeb177bc92011-04-05 21:13:13 +0300504 for (i = 0; i < chip->num_slots; i++)
Pierre Ossman44894282008-04-04 19:36:59 +0200505 jmicron_enable_mmc(chip->slots[i]->host, 1);
506 }
Pierre Ossman45211e22008-03-24 13:09:09 +0100507
508 ret = jmicron_pmos(chip, 1);
509 if (ret) {
510 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
511 return ret;
512 }
513
514 return 0;
515}
516
Jennifer Li26daa1e2010-11-17 23:01:59 -0500517static const struct sdhci_pci_fixes sdhci_o2 = {
Adam Lee01acf692013-12-19 00:01:26 +0800518 .probe = sdhci_pci_o2_probe,
519 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
520 .probe_slot = sdhci_pci_o2_probe_slot,
521 .resume = sdhci_pci_o2_resume,
Jennifer Li26daa1e2010-11-17 23:01:59 -0500522};
523
Pierre Ossman22606402008-03-23 19:33:23 +0100524static const struct sdhci_pci_fixes sdhci_jmicron = {
Pierre Ossman45211e22008-03-24 13:09:09 +0100525 .probe = jmicron_probe,
526
Pierre Ossman44894282008-04-04 19:36:59 +0200527 .probe_slot = jmicron_probe_slot,
528 .remove_slot = jmicron_remove_slot,
529
530 .suspend = jmicron_suspend,
Pierre Ossman45211e22008-03-24 13:09:09 +0100531 .resume = jmicron_resume,
Pierre Ossman22606402008-03-23 19:33:23 +0100532};
533
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800534/* SysKonnect CardBus2SDIO extra registers */
535#define SYSKT_CTRL 0x200
536#define SYSKT_RDFIFO_STAT 0x204
537#define SYSKT_WRFIFO_STAT 0x208
538#define SYSKT_POWER_DATA 0x20c
539#define SYSKT_POWER_330 0xef
540#define SYSKT_POWER_300 0xf8
541#define SYSKT_POWER_184 0xcc
542#define SYSKT_POWER_CMD 0x20d
543#define SYSKT_POWER_START (1 << 7)
544#define SYSKT_POWER_STATUS 0x20e
545#define SYSKT_POWER_STATUS_OK (1 << 0)
546#define SYSKT_BOARD_REV 0x210
547#define SYSKT_CHIP_REV 0x211
548#define SYSKT_CONF_DATA 0x212
549#define SYSKT_CONF_DATA_1V8 (1 << 2)
550#define SYSKT_CONF_DATA_2V5 (1 << 1)
551#define SYSKT_CONF_DATA_3V3 (1 << 0)
552
553static int syskt_probe(struct sdhci_pci_chip *chip)
554{
555 if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
556 chip->pdev->class &= ~0x0000FF;
557 chip->pdev->class |= PCI_SDHCI_IFDMA;
558 }
559 return 0;
560}
561
562static int syskt_probe_slot(struct sdhci_pci_slot *slot)
563{
564 int tm, ps;
565
566 u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV);
567 u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV);
568 dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, "
569 "board rev %d.%d, chip rev %d.%d\n",
570 board_rev >> 4, board_rev & 0xf,
571 chip_rev >> 4, chip_rev & 0xf);
572 if (chip_rev >= 0x20)
573 slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA;
574
575 writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA);
576 writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD);
577 udelay(50);
578 tm = 10; /* Wait max 1 ms */
579 do {
580 ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS);
581 if (ps & SYSKT_POWER_STATUS_OK)
582 break;
583 udelay(100);
584 } while (--tm);
585 if (!tm) {
586 dev_err(&slot->chip->pdev->dev,
587 "power regulator never stabilized");
588 writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD);
589 return -ENODEV;
590 }
591
592 return 0;
593}
594
595static const struct sdhci_pci_fixes sdhci_syskt = {
596 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER,
597 .probe = syskt_probe,
598 .probe_slot = syskt_probe_slot,
599};
600
Harald Welte557b0692009-06-18 16:53:38 +0200601static int via_probe(struct sdhci_pci_chip *chip)
602{
603 if (chip->pdev->revision == 0x10)
604 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
605
606 return 0;
607}
608
609static const struct sdhci_pci_fixes sdhci_via = {
610 .probe = via_probe,
611};
612
Micky Ching9107ebb2014-02-21 18:40:35 +0800613static int rtsx_probe_slot(struct sdhci_pci_slot *slot)
614{
615 slot->host->mmc->caps2 |= MMC_CAP2_HS200;
616 return 0;
617}
618
619static const struct sdhci_pci_fixes sdhci_rtsx = {
620 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
621 SDHCI_QUIRK2_BROKEN_DDR50,
622 .probe_slot = rtsx_probe_slot,
623};
624
Bill Pemberton9647f842012-11-19 13:25:11 -0500625static const struct pci_device_id pci_ids[] = {
Pierre Ossman22606402008-03-23 19:33:23 +0100626 {
627 .vendor = PCI_VENDOR_ID_RICOH,
628 .device = PCI_DEVICE_ID_RICOH_R5C822,
629 .subvendor = PCI_ANY_ID,
630 .subdevice = PCI_ANY_ID,
631 .driver_data = (kernel_ulong_t)&sdhci_ricoh,
632 },
633
634 {
Maxim Levitskyccc92c22010-08-10 18:01:42 -0700635 .vendor = PCI_VENDOR_ID_RICOH,
636 .device = 0x843,
637 .subvendor = PCI_ANY_ID,
638 .subdevice = PCI_ANY_ID,
639 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
640 },
641
642 {
Pablo Castillo568133e2010-08-10 18:02:01 -0700643 .vendor = PCI_VENDOR_ID_RICOH,
644 .device = 0xe822,
645 .subvendor = PCI_ANY_ID,
646 .subdevice = PCI_ANY_ID,
647 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
648 },
649
650 {
Manoj Iyer5fd11c02011-02-11 16:25:31 -0600651 .vendor = PCI_VENDOR_ID_RICOH,
652 .device = 0xe823,
653 .subvendor = PCI_ANY_ID,
654 .subdevice = PCI_ANY_ID,
655 .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc,
656 },
657
658 {
Pierre Ossman22606402008-03-23 19:33:23 +0100659 .vendor = PCI_VENDOR_ID_ENE,
660 .device = PCI_DEVICE_ID_ENE_CB712_SD,
661 .subvendor = PCI_ANY_ID,
662 .subdevice = PCI_ANY_ID,
663 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
664 },
665
666 {
667 .vendor = PCI_VENDOR_ID_ENE,
668 .device = PCI_DEVICE_ID_ENE_CB712_SD_2,
669 .subvendor = PCI_ANY_ID,
670 .subdevice = PCI_ANY_ID,
671 .driver_data = (kernel_ulong_t)&sdhci_ene_712,
672 },
673
674 {
675 .vendor = PCI_VENDOR_ID_ENE,
676 .device = PCI_DEVICE_ID_ENE_CB714_SD,
677 .subvendor = PCI_ANY_ID,
678 .subdevice = PCI_ANY_ID,
679 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
680 },
681
682 {
683 .vendor = PCI_VENDOR_ID_ENE,
684 .device = PCI_DEVICE_ID_ENE_CB714_SD_2,
685 .subvendor = PCI_ANY_ID,
686 .subdevice = PCI_ANY_ID,
687 .driver_data = (kernel_ulong_t)&sdhci_ene_714,
688 },
689
690 {
691 .vendor = PCI_VENDOR_ID_MARVELL,
David Woodhouse8c5eb882008-09-03 09:45:57 +0100692 .device = PCI_DEVICE_ID_MARVELL_88ALP01_SD,
Pierre Ossman22606402008-03-23 19:33:23 +0100693 .subvendor = PCI_ANY_ID,
694 .subdevice = PCI_ANY_ID,
695 .driver_data = (kernel_ulong_t)&sdhci_cafe,
696 },
697
698 {
699 .vendor = PCI_VENDOR_ID_JMICRON,
700 .device = PCI_DEVICE_ID_JMICRON_JMB38X_SD,
701 .subvendor = PCI_ANY_ID,
702 .subdevice = PCI_ANY_ID,
703 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
704 },
705
Pierre Ossman44894282008-04-04 19:36:59 +0200706 {
707 .vendor = PCI_VENDOR_ID_JMICRON,
708 .device = PCI_DEVICE_ID_JMICRON_JMB38X_MMC,
709 .subvendor = PCI_ANY_ID,
710 .subdevice = PCI_ANY_ID,
711 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
712 },
713
Harald Welte557b0692009-06-18 16:53:38 +0200714 {
Takashi Iwai8f230f42010-12-08 10:04:30 +0100715 .vendor = PCI_VENDOR_ID_JMICRON,
716 .device = PCI_DEVICE_ID_JMICRON_JMB388_SD,
717 .subvendor = PCI_ANY_ID,
718 .subdevice = PCI_ANY_ID,
719 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
720 },
721
722 {
723 .vendor = PCI_VENDOR_ID_JMICRON,
724 .device = PCI_DEVICE_ID_JMICRON_JMB388_ESD,
725 .subvendor = PCI_ANY_ID,
726 .subdevice = PCI_ANY_ID,
727 .driver_data = (kernel_ulong_t)&sdhci_jmicron,
728 },
729
730 {
Nicolas Pitrea7a61862009-12-14 18:01:26 -0800731 .vendor = PCI_VENDOR_ID_SYSKONNECT,
732 .device = 0x8000,
733 .subvendor = PCI_ANY_ID,
734 .subdevice = PCI_ANY_ID,
735 .driver_data = (kernel_ulong_t)&sdhci_syskt,
736 },
737
738 {
Harald Welte557b0692009-06-18 16:53:38 +0200739 .vendor = PCI_VENDOR_ID_VIA,
740 .device = 0x95d0,
741 .subvendor = PCI_ANY_ID,
742 .subdevice = PCI_ANY_ID,
743 .driver_data = (kernel_ulong_t)&sdhci_via,
744 },
745
Xiaochen Shen29229052010-10-04 15:24:52 +0100746 {
Micky Ching9107ebb2014-02-21 18:40:35 +0800747 .vendor = PCI_VENDOR_ID_REALTEK,
748 .device = 0x5250,
749 .subvendor = PCI_ANY_ID,
750 .subdevice = PCI_ANY_ID,
751 .driver_data = (kernel_ulong_t)&sdhci_rtsx,
752 },
753
754 {
Xiaochen Shen29229052010-10-04 15:24:52 +0100755 .vendor = PCI_VENDOR_ID_INTEL,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100756 .device = PCI_DEVICE_ID_INTEL_MRST_SD0,
757 .subvendor = PCI_ANY_ID,
758 .subdevice = PCI_ANY_ID,
759 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc0,
760 },
761
762 {
763 .vendor = PCI_VENDOR_ID_INTEL,
764 .device = PCI_DEVICE_ID_INTEL_MRST_SD1,
765 .subvendor = PCI_ANY_ID,
766 .subdevice = PCI_ANY_ID,
Jacob Pan35ac6f02010-11-09 13:57:29 +0000767 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
768 },
769
770 {
771 .vendor = PCI_VENDOR_ID_INTEL,
772 .device = PCI_DEVICE_ID_INTEL_MRST_SD2,
773 .subvendor = PCI_ANY_ID,
774 .subdevice = PCI_ANY_ID,
775 .driver_data = (kernel_ulong_t)&sdhci_intel_mrst_hc1_hc2,
Alan Coxf9ee3ea2010-10-04 15:25:11 +0100776 },
777
778 {
779 .vendor = PCI_VENDOR_ID_INTEL,
Xiaochen Shen29229052010-10-04 15:24:52 +0100780 .device = PCI_DEVICE_ID_INTEL_MFD_SD,
781 .subvendor = PCI_ANY_ID,
782 .subdevice = PCI_ANY_ID,
783 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
784 },
785
786 {
787 .vendor = PCI_VENDOR_ID_INTEL,
788 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO1,
789 .subvendor = PCI_ANY_ID,
790 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300791 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100792 },
793
794 {
795 .vendor = PCI_VENDOR_ID_INTEL,
796 .device = PCI_DEVICE_ID_INTEL_MFD_SDIO2,
797 .subvendor = PCI_ANY_ID,
798 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300799 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
Xiaochen Shen29229052010-10-04 15:24:52 +0100800 },
801
802 {
803 .vendor = PCI_VENDOR_ID_INTEL,
804 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC0,
805 .subvendor = PCI_ANY_ID,
806 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300807 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100808 },
809
810 {
811 .vendor = PCI_VENDOR_ID_INTEL,
812 .device = PCI_DEVICE_ID_INTEL_MFD_EMMC1,
813 .subvendor = PCI_ANY_ID,
814 .subdevice = PCI_ANY_ID,
Adrian Hunter0d013bc2011-06-29 14:23:47 +0300815 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
Xiaochen Shen29229052010-10-04 15:24:52 +0100816 },
817
Jennifer Li26daa1e2010-11-17 23:01:59 -0500818 {
Alexander Stein296e0b02012-03-14 08:38:58 +0100819 .vendor = PCI_VENDOR_ID_INTEL,
820 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO0,
821 .subvendor = PCI_ANY_ID,
822 .subdevice = PCI_ANY_ID,
823 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
824 },
825
826 {
827 .vendor = PCI_VENDOR_ID_INTEL,
828 .device = PCI_DEVICE_ID_INTEL_PCH_SDIO1,
829 .subvendor = PCI_ANY_ID,
830 .subdevice = PCI_ANY_ID,
831 .driver_data = (kernel_ulong_t)&sdhci_intel_pch_sdio,
832 },
833
834 {
Adrian Hunter728ef3d2013-04-26 11:27:23 +0300835 .vendor = PCI_VENDOR_ID_INTEL,
836 .device = PCI_DEVICE_ID_INTEL_BYT_EMMC,
837 .subvendor = PCI_ANY_ID,
838 .subdevice = PCI_ANY_ID,
839 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
840 },
841
842 {
843 .vendor = PCI_VENDOR_ID_INTEL,
844 .device = PCI_DEVICE_ID_INTEL_BYT_SDIO,
845 .subvendor = PCI_ANY_ID,
846 .subdevice = PCI_ANY_ID,
847 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sdio,
848 },
849
850 {
851 .vendor = PCI_VENDOR_ID_INTEL,
852 .device = PCI_DEVICE_ID_INTEL_BYT_SD,
853 .subvendor = PCI_ANY_ID,
854 .subdevice = PCI_ANY_ID,
855 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_sd,
856 },
857
858 {
Adrian Hunter30d025c2013-06-20 12:57:59 +0300859 .vendor = PCI_VENDOR_ID_INTEL,
860 .device = PCI_DEVICE_ID_INTEL_BYT_EMMC2,
861 .subvendor = PCI_ANY_ID,
862 .subdevice = PCI_ANY_ID,
863 .driver_data = (kernel_ulong_t)&sdhci_intel_byt_emmc,
864 },
865
Eric Ernstd0520682013-10-21 09:54:41 -0700866
867 {
868 .vendor = PCI_VENDOR_ID_INTEL,
869 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO0,
870 .subvendor = PCI_ANY_ID,
871 .subdevice = PCI_ANY_ID,
872 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sd,
873 },
874
875 {
876 .vendor = PCI_VENDOR_ID_INTEL,
877 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO1,
878 .subvendor = PCI_ANY_ID,
879 .subdevice = PCI_ANY_ID,
880 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
881 },
882
883 {
884 .vendor = PCI_VENDOR_ID_INTEL,
885 .device = PCI_DEVICE_ID_INTEL_CLV_SDIO2,
886 .subvendor = PCI_ANY_ID,
887 .subdevice = PCI_ANY_ID,
888 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_sdio,
889 },
890
891 {
892 .vendor = PCI_VENDOR_ID_INTEL,
893 .device = PCI_DEVICE_ID_INTEL_CLV_EMMC0,
894 .subvendor = PCI_ANY_ID,
895 .subdevice = PCI_ANY_ID,
896 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
897 },
898
899 {
900 .vendor = PCI_VENDOR_ID_INTEL,
901 .device = PCI_DEVICE_ID_INTEL_CLV_EMMC1,
902 .subvendor = PCI_ANY_ID,
903 .subdevice = PCI_ANY_ID,
904 .driver_data = (kernel_ulong_t)&sdhci_intel_mfd_emmc,
905 },
906
Adrian Hunter30d025c2013-06-20 12:57:59 +0300907 {
David Cohen8776a162013-10-01 13:18:15 -0700908 .vendor = PCI_VENDOR_ID_INTEL,
909 .device = PCI_DEVICE_ID_INTEL_MRFL_MMC,
910 .subvendor = PCI_ANY_ID,
911 .subdevice = PCI_ANY_ID,
912 .driver_data = (kernel_ulong_t)&sdhci_intel_mrfl_mmc,
913 },
914 {
Jennifer Li26daa1e2010-11-17 23:01:59 -0500915 .vendor = PCI_VENDOR_ID_O2,
916 .device = PCI_DEVICE_ID_O2_8120,
917 .subvendor = PCI_ANY_ID,
918 .subdevice = PCI_ANY_ID,
919 .driver_data = (kernel_ulong_t)&sdhci_o2,
920 },
921
922 {
923 .vendor = PCI_VENDOR_ID_O2,
924 .device = PCI_DEVICE_ID_O2_8220,
925 .subvendor = PCI_ANY_ID,
926 .subdevice = PCI_ANY_ID,
927 .driver_data = (kernel_ulong_t)&sdhci_o2,
928 },
929
930 {
931 .vendor = PCI_VENDOR_ID_O2,
932 .device = PCI_DEVICE_ID_O2_8221,
933 .subvendor = PCI_ANY_ID,
934 .subdevice = PCI_ANY_ID,
935 .driver_data = (kernel_ulong_t)&sdhci_o2,
936 },
937
938 {
939 .vendor = PCI_VENDOR_ID_O2,
940 .device = PCI_DEVICE_ID_O2_8320,
941 .subvendor = PCI_ANY_ID,
942 .subdevice = PCI_ANY_ID,
943 .driver_data = (kernel_ulong_t)&sdhci_o2,
944 },
945
946 {
947 .vendor = PCI_VENDOR_ID_O2,
948 .device = PCI_DEVICE_ID_O2_8321,
949 .subvendor = PCI_ANY_ID,
950 .subdevice = PCI_ANY_ID,
951 .driver_data = (kernel_ulong_t)&sdhci_o2,
952 },
953
Adam Lee01acf692013-12-19 00:01:26 +0800954 {
955 .vendor = PCI_VENDOR_ID_O2,
956 .device = PCI_DEVICE_ID_O2_FUJIN2,
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_SDS0,
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_SDS1,
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_SEABIRD0,
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_SEABIRD1,
989 .subvendor = PCI_ANY_ID,
990 .subdevice = PCI_ANY_ID,
991 .driver_data = (kernel_ulong_t)&sdhci_o2,
992 },
993
Pierre Ossman22606402008-03-23 19:33:23 +0100994 { /* Generic SD host controller */
995 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00)
996 },
997
998 { /* end: all zeroes */ },
999};
1000
1001MODULE_DEVICE_TABLE(pci, pci_ids);
1002
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001003/*****************************************************************************\
1004 * *
1005 * SDHCI core callbacks *
1006 * *
1007\*****************************************************************************/
1008
1009static int sdhci_pci_enable_dma(struct sdhci_host *host)
1010{
1011 struct sdhci_pci_slot *slot;
1012 struct pci_dev *pdev;
1013 int ret;
1014
1015 slot = sdhci_priv(host);
1016 pdev = slot->chip->pdev;
1017
1018 if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
1019 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07001020 (host->flags & SDHCI_USE_SDMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001021 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
1022 "doesn't fully claim to support it.\n");
1023 }
1024
Yang Hongyang284901a2009-04-06 19:01:15 -07001025 ret = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001026 if (ret)
1027 return ret;
1028
1029 pci_set_master(pdev);
1030
1031 return 0;
1032}
1033
Russell King2317f562014-04-25 12:57:07 +01001034static void sdhci_pci_set_bus_width(struct sdhci_host *host, int width)
Major Lee68077b02011-06-29 14:23:46 +03001035{
1036 u8 ctrl;
1037
1038 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1039
1040 switch (width) {
1041 case MMC_BUS_WIDTH_8:
1042 ctrl |= SDHCI_CTRL_8BITBUS;
1043 ctrl &= ~SDHCI_CTRL_4BITBUS;
1044 break;
1045 case MMC_BUS_WIDTH_4:
1046 ctrl |= SDHCI_CTRL_4BITBUS;
1047 ctrl &= ~SDHCI_CTRL_8BITBUS;
1048 break;
1049 default:
1050 ctrl &= ~(SDHCI_CTRL_8BITBUS | SDHCI_CTRL_4BITBUS);
1051 break;
1052 }
1053
1054 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Major Lee68077b02011-06-29 14:23:46 +03001055}
1056
Adrian Hunterc9faff62013-06-13 11:50:26 +03001057static void sdhci_pci_gpio_hw_reset(struct sdhci_host *host)
Adrian Hunter0f201652011-08-29 16:42:13 +03001058{
1059 struct sdhci_pci_slot *slot = sdhci_priv(host);
1060 int rst_n_gpio = slot->rst_n_gpio;
1061
1062 if (!gpio_is_valid(rst_n_gpio))
1063 return;
1064 gpio_set_value_cansleep(rst_n_gpio, 0);
1065 /* For eMMC, minimum is 1us but give it 10us for good measure */
1066 udelay(10);
1067 gpio_set_value_cansleep(rst_n_gpio, 1);
1068 /* For eMMC, minimum is 200us but give it 300us for good measure */
1069 usleep_range(300, 1000);
1070}
1071
Adrian Hunterc9faff62013-06-13 11:50:26 +03001072static void sdhci_pci_hw_reset(struct sdhci_host *host)
1073{
1074 struct sdhci_pci_slot *slot = sdhci_priv(host);
1075
1076 if (slot->hw_reset)
1077 slot->hw_reset(host);
1078}
1079
Lars-Peter Clausenc9155682013-03-13 19:26:05 +01001080static const struct sdhci_ops sdhci_pci_ops = {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001081 .enable_dma = sdhci_pci_enable_dma,
Russell King2317f562014-04-25 12:57:07 +01001082 .set_bus_width = sdhci_pci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +01001083 .reset = sdhci_reset,
Adrian Hunter0f201652011-08-29 16:42:13 +03001084 .hw_reset = sdhci_pci_hw_reset,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001085};
1086
1087/*****************************************************************************\
1088 * *
1089 * Suspend/resume *
1090 * *
1091\*****************************************************************************/
1092
1093#ifdef CONFIG_PM
1094
Manuel Lauss29495aa2011-11-03 11:09:45 +01001095static int sdhci_pci_suspend(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001096{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001097 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001098 struct sdhci_pci_chip *chip;
1099 struct sdhci_pci_slot *slot;
Daniel Drake5f619702010-11-04 22:20:39 +00001100 mmc_pm_flag_t slot_pm_flags;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001101 mmc_pm_flag_t pm_flags = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001102 int i, ret;
1103
1104 chip = pci_get_drvdata(pdev);
1105 if (!chip)
1106 return 0;
1107
Ameya Palandeb177bc92011-04-05 21:13:13 +03001108 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001109 slot = chip->slots[i];
1110 if (!slot)
1111 continue;
1112
Manuel Lauss29495aa2011-11-03 11:09:45 +01001113 ret = sdhci_suspend_host(slot->host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001114
Axel Linb678b912011-12-03 15:28:05 +08001115 if (ret)
1116 goto err_pci_suspend;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001117
Daniel Drake5f619702010-11-04 22:20:39 +00001118 slot_pm_flags = slot->host->mmc->pm_flags;
1119 if (slot_pm_flags & MMC_PM_WAKE_SDIO_IRQ)
1120 sdhci_enable_irq_wakeups(slot->host);
1121
1122 pm_flags |= slot_pm_flags;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001123 }
1124
Pierre Ossman44894282008-04-04 19:36:59 +02001125 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001126 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001127 if (ret)
1128 goto err_pci_suspend;
Pierre Ossman44894282008-04-04 19:36:59 +02001129 }
1130
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001131 pci_save_state(pdev);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001132 if (pm_flags & MMC_PM_KEEP_POWER) {
Daniel Drake5f619702010-11-04 22:20:39 +00001133 if (pm_flags & MMC_PM_WAKE_SDIO_IRQ) {
1134 pci_pme_active(pdev, true);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001135 pci_enable_wake(pdev, PCI_D3hot, 1);
Daniel Drake5f619702010-11-04 22:20:39 +00001136 }
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001137 pci_set_power_state(pdev, PCI_D3hot);
1138 } else {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001139 pci_enable_wake(pdev, PCI_D3hot, 0);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001140 pci_disable_device(pdev);
Manuel Lauss29495aa2011-11-03 11:09:45 +01001141 pci_set_power_state(pdev, PCI_D3hot);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001142 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001143
1144 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001145
1146err_pci_suspend:
1147 while (--i >= 0)
1148 sdhci_resume_host(chip->slots[i]->host);
1149 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001150}
1151
Manuel Lauss29495aa2011-11-03 11:09:45 +01001152static int sdhci_pci_resume(struct device *dev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001153{
Manuel Lauss29495aa2011-11-03 11:09:45 +01001154 struct pci_dev *pdev = to_pci_dev(dev);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001155 struct sdhci_pci_chip *chip;
1156 struct sdhci_pci_slot *slot;
1157 int i, ret;
1158
1159 chip = pci_get_drvdata(pdev);
1160 if (!chip)
1161 return 0;
1162
1163 pci_set_power_state(pdev, PCI_D0);
1164 pci_restore_state(pdev);
1165 ret = pci_enable_device(pdev);
1166 if (ret)
1167 return ret;
1168
Pierre Ossman45211e22008-03-24 13:09:09 +01001169 if (chip->fixes && chip->fixes->resume) {
1170 ret = chip->fixes->resume(chip);
1171 if (ret)
1172 return ret;
1173 }
1174
Ameya Palandeb177bc92011-04-05 21:13:13 +03001175 for (i = 0; i < chip->num_slots; i++) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001176 slot = chip->slots[i];
1177 if (!slot)
1178 continue;
1179
1180 ret = sdhci_resume_host(slot->host);
1181 if (ret)
1182 return ret;
1183 }
1184
1185 return 0;
1186}
1187
1188#else /* CONFIG_PM */
1189
1190#define sdhci_pci_suspend NULL
1191#define sdhci_pci_resume NULL
1192
1193#endif /* CONFIG_PM */
1194
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001195#ifdef CONFIG_PM_RUNTIME
1196
1197static int sdhci_pci_runtime_suspend(struct device *dev)
1198{
1199 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
1200 struct sdhci_pci_chip *chip;
1201 struct sdhci_pci_slot *slot;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001202 int i, ret;
1203
1204 chip = pci_get_drvdata(pdev);
1205 if (!chip)
1206 return 0;
1207
1208 for (i = 0; i < chip->num_slots; i++) {
1209 slot = chip->slots[i];
1210 if (!slot)
1211 continue;
1212
1213 ret = sdhci_runtime_suspend_host(slot->host);
1214
Axel Linb678b912011-12-03 15:28:05 +08001215 if (ret)
1216 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001217 }
1218
1219 if (chip->fixes && chip->fixes->suspend) {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001220 ret = chip->fixes->suspend(chip);
Axel Linb678b912011-12-03 15:28:05 +08001221 if (ret)
1222 goto err_pci_runtime_suspend;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001223 }
1224
1225 return 0;
Axel Linb678b912011-12-03 15:28:05 +08001226
1227err_pci_runtime_suspend:
1228 while (--i >= 0)
1229 sdhci_runtime_resume_host(chip->slots[i]->host);
1230 return ret;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001231}
1232
1233static int sdhci_pci_runtime_resume(struct device *dev)
1234{
1235 struct pci_dev *pdev = container_of(dev, struct pci_dev, dev);
1236 struct sdhci_pci_chip *chip;
1237 struct sdhci_pci_slot *slot;
1238 int i, ret;
1239
1240 chip = pci_get_drvdata(pdev);
1241 if (!chip)
1242 return 0;
1243
1244 if (chip->fixes && chip->fixes->resume) {
1245 ret = chip->fixes->resume(chip);
1246 if (ret)
1247 return ret;
1248 }
1249
1250 for (i = 0; i < chip->num_slots; i++) {
1251 slot = chip->slots[i];
1252 if (!slot)
1253 continue;
1254
1255 ret = sdhci_runtime_resume_host(slot->host);
1256 if (ret)
1257 return ret;
1258 }
1259
1260 return 0;
1261}
1262
1263static int sdhci_pci_runtime_idle(struct device *dev)
1264{
1265 return 0;
1266}
1267
1268#else
1269
1270#define sdhci_pci_runtime_suspend NULL
1271#define sdhci_pci_runtime_resume NULL
1272#define sdhci_pci_runtime_idle NULL
1273
1274#endif
1275
1276static const struct dev_pm_ops sdhci_pci_pm_ops = {
Manuel Lauss29495aa2011-11-03 11:09:45 +01001277 .suspend = sdhci_pci_suspend,
1278 .resume = sdhci_pci_resume,
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001279 .runtime_suspend = sdhci_pci_runtime_suspend,
1280 .runtime_resume = sdhci_pci_runtime_resume,
1281 .runtime_idle = sdhci_pci_runtime_idle,
1282};
1283
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001284/*****************************************************************************\
1285 * *
1286 * Device probing/removal *
1287 * *
1288\*****************************************************************************/
1289
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001290static struct sdhci_pci_slot *sdhci_pci_probe_slot(
Adrian Hunter52c506f2011-12-27 15:48:43 +02001291 struct pci_dev *pdev, struct sdhci_pci_chip *chip, int first_bar,
1292 int slotno)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001293{
1294 struct sdhci_pci_slot *slot;
1295 struct sdhci_host *host;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001296 int ret, bar = first_bar + slotno;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001297
1298 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
1299 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
1300 return ERR_PTR(-ENODEV);
1301 }
1302
Adrian Hunter90b3e6c2012-10-18 09:54:31 +03001303 if (pci_resource_len(pdev, bar) < 0x100) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001304 dev_err(&pdev->dev, "Invalid iomem size. You may "
1305 "experience problems.\n");
1306 }
1307
1308 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1309 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
1310 return ERR_PTR(-ENODEV);
1311 }
1312
1313 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
1314 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
1315 return ERR_PTR(-ENODEV);
1316 }
1317
1318 host = sdhci_alloc_host(&pdev->dev, sizeof(struct sdhci_pci_slot));
1319 if (IS_ERR(host)) {
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001320 dev_err(&pdev->dev, "cannot allocate host\n");
Julia Lawalldc0fd7b2010-05-26 14:42:11 -07001321 return ERR_CAST(host);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001322 }
1323
1324 slot = sdhci_priv(host);
1325
1326 slot->chip = chip;
1327 slot->host = host;
1328 slot->pci_bar = bar;
Adrian Hunter0f201652011-08-29 16:42:13 +03001329 slot->rst_n_gpio = -EINVAL;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001330 slot->cd_gpio = -EINVAL;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001331
Adrian Hunter52c506f2011-12-27 15:48:43 +02001332 /* Retrieve platform data if there is any */
1333 if (*sdhci_pci_get_data)
1334 slot->data = sdhci_pci_get_data(pdev, slotno);
1335
1336 if (slot->data) {
1337 if (slot->data->setup) {
1338 ret = slot->data->setup(slot->data);
1339 if (ret) {
1340 dev_err(&pdev->dev, "platform setup failed\n");
1341 goto free;
1342 }
1343 }
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001344 slot->rst_n_gpio = slot->data->rst_n_gpio;
1345 slot->cd_gpio = slot->data->cd_gpio;
Adrian Hunter52c506f2011-12-27 15:48:43 +02001346 }
1347
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001348 host->hw_name = "PCI";
1349 host->ops = &sdhci_pci_ops;
1350 host->quirks = chip->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001351 host->quirks2 = chip->quirks2;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001352
1353 host->irq = pdev->irq;
1354
1355 ret = pci_request_region(pdev, bar, mmc_hostname(host->mmc));
1356 if (ret) {
1357 dev_err(&pdev->dev, "cannot request region\n");
Adrian Hunter52c506f2011-12-27 15:48:43 +02001358 goto cleanup;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001359 }
1360
Arjan van de Ven092f82e2008-09-28 16:15:56 -07001361 host->ioaddr = pci_ioremap_bar(pdev, bar);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001362 if (!host->ioaddr) {
1363 dev_err(&pdev->dev, "failed to remap registers\n");
Chris Ball9fdcdbb2011-03-29 00:46:12 -04001364 ret = -ENOMEM;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001365 goto release;
1366 }
1367
Pierre Ossman44894282008-04-04 19:36:59 +02001368 if (chip->fixes && chip->fixes->probe_slot) {
1369 ret = chip->fixes->probe_slot(slot);
1370 if (ret)
1371 goto unmap;
1372 }
1373
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001374 if (gpio_is_valid(slot->rst_n_gpio)) {
1375 if (!gpio_request(slot->rst_n_gpio, "eMMC_reset")) {
1376 gpio_direction_output(slot->rst_n_gpio, 1);
1377 slot->host->mmc->caps |= MMC_CAP_HW_RESET;
Adrian Hunterc9faff62013-06-13 11:50:26 +03001378 slot->hw_reset = sdhci_pci_gpio_hw_reset;
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001379 } else {
1380 dev_warn(&pdev->dev, "failed to request rst_n_gpio\n");
1381 slot->rst_n_gpio = -EINVAL;
1382 }
1383 }
1384
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001385 host->mmc->pm_caps = MMC_PM_KEEP_POWER | MMC_PM_WAKE_SDIO_IRQ;
Aaron Lueed222a2013-03-05 11:24:52 +08001386 host->mmc->slotno = slotno;
Adrian Huntera08b17b2013-04-15 11:27:25 -04001387 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001388
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001389 ret = sdhci_add_host(host);
1390 if (ret)
Pierre Ossman44894282008-04-04 19:36:59 +02001391 goto remove;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001392
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001393 sdhci_pci_add_own_cd(slot);
1394
Adrian Hunter77a01222014-01-13 09:49:16 +02001395 /*
1396 * Check if the chip needs a separate GPIO for card detect to wake up
1397 * from runtime suspend. If it is not there, don't allow runtime PM.
1398 * Note sdhci_pci_add_own_cd() sets slot->cd_gpio to -EINVAL on failure.
1399 */
Adrian Hunter945be382014-01-21 09:52:39 +02001400 if (chip->fixes && chip->fixes->own_cd_for_runtime_pm &&
1401 !gpio_is_valid(slot->cd_gpio))
Adrian Hunter77a01222014-01-13 09:49:16 +02001402 chip->allow_runtime_pm = false;
1403
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001404 return slot;
1405
Pierre Ossman44894282008-04-04 19:36:59 +02001406remove:
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001407 if (gpio_is_valid(slot->rst_n_gpio))
1408 gpio_free(slot->rst_n_gpio);
1409
Pierre Ossman44894282008-04-04 19:36:59 +02001410 if (chip->fixes && chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001411 chip->fixes->remove_slot(slot, 0);
Pierre Ossman44894282008-04-04 19:36:59 +02001412
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001413unmap:
1414 iounmap(host->ioaddr);
1415
1416release:
1417 pci_release_region(pdev, bar);
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001418
Adrian Hunter52c506f2011-12-27 15:48:43 +02001419cleanup:
1420 if (slot->data && slot->data->cleanup)
1421 slot->data->cleanup(slot->data);
1422
Dan Carpenterc60a32c2009-04-10 23:31:10 +02001423free:
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001424 sdhci_free_host(host);
1425
1426 return ERR_PTR(ret);
1427}
1428
1429static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
1430{
Pierre Ossman1e728592008-04-16 19:13:13 +02001431 int dead;
1432 u32 scratch;
1433
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001434 sdhci_pci_remove_own_cd(slot);
1435
Pierre Ossman1e728592008-04-16 19:13:13 +02001436 dead = 0;
1437 scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
1438 if (scratch == (u32)-1)
1439 dead = 1;
1440
1441 sdhci_remove_host(slot->host, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001442
Adrian Hunterc5e027a2011-12-27 15:48:44 +02001443 if (gpio_is_valid(slot->rst_n_gpio))
1444 gpio_free(slot->rst_n_gpio);
1445
Pierre Ossman44894282008-04-04 19:36:59 +02001446 if (slot->chip->fixes && slot->chip->fixes->remove_slot)
Pierre Ossman1e728592008-04-16 19:13:13 +02001447 slot->chip->fixes->remove_slot(slot, dead);
Pierre Ossman44894282008-04-04 19:36:59 +02001448
Adrian Hunter52c506f2011-12-27 15:48:43 +02001449 if (slot->data && slot->data->cleanup)
1450 slot->data->cleanup(slot->data);
1451
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001452 pci_release_region(slot->chip->pdev, slot->pci_bar);
Pierre Ossman44894282008-04-04 19:36:59 +02001453
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001454 sdhci_free_host(slot->host);
1455}
1456
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001457static void sdhci_pci_runtime_pm_allow(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001458{
1459 pm_runtime_put_noidle(dev);
1460 pm_runtime_allow(dev);
1461 pm_runtime_set_autosuspend_delay(dev, 50);
1462 pm_runtime_use_autosuspend(dev);
1463 pm_suspend_ignore_children(dev, 1);
1464}
1465
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001466static void sdhci_pci_runtime_pm_forbid(struct device *dev)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001467{
1468 pm_runtime_forbid(dev);
1469 pm_runtime_get_noresume(dev);
1470}
1471
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001472static int sdhci_pci_probe(struct pci_dev *pdev,
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001473 const struct pci_device_id *ent)
1474{
1475 struct sdhci_pci_chip *chip;
1476 struct sdhci_pci_slot *slot;
1477
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001478 u8 slots, first_bar;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001479 int ret, i;
1480
1481 BUG_ON(pdev == NULL);
1482 BUG_ON(ent == NULL);
1483
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001484 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
Sergei Shtylyovcf5e23e2011-03-17 16:46:17 -04001485 (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001486
1487 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
1488 if (ret)
1489 return ret;
1490
1491 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
1492 dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
1493 if (slots == 0)
1494 return -ENODEV;
1495
1496 BUG_ON(slots > MAX_SLOTS);
1497
1498 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
1499 if (ret)
1500 return ret;
1501
1502 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
1503
1504 if (first_bar > 5) {
1505 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
1506 return -ENODEV;
1507 }
1508
1509 ret = pci_enable_device(pdev);
1510 if (ret)
1511 return ret;
1512
1513 chip = kzalloc(sizeof(struct sdhci_pci_chip), GFP_KERNEL);
1514 if (!chip) {
1515 ret = -ENOMEM;
1516 goto err;
1517 }
1518
1519 chip->pdev = pdev;
Ameya Palandeb177bc92011-04-05 21:13:13 +03001520 chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001521 if (chip->fixes) {
Pierre Ossman22606402008-03-23 19:33:23 +01001522 chip->quirks = chip->fixes->quirks;
Adrian Hunterf3c55a72012-02-07 14:48:55 +02001523 chip->quirks2 = chip->fixes->quirks2;
Adrian Hunterc43fd772011-10-17 10:52:44 +03001524 chip->allow_runtime_pm = chip->fixes->allow_runtime_pm;
1525 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001526 chip->num_slots = slots;
1527
1528 pci_set_drvdata(pdev, chip);
1529
Pierre Ossman22606402008-03-23 19:33:23 +01001530 if (chip->fixes && chip->fixes->probe) {
1531 ret = chip->fixes->probe(chip);
1532 if (ret)
1533 goto free;
1534 }
1535
Alan Cox225d85f2010-10-04 15:24:21 +01001536 slots = chip->num_slots; /* Quirk may have changed this */
1537
Ameya Palandeb177bc92011-04-05 21:13:13 +03001538 for (i = 0; i < slots; i++) {
Adrian Hunter52c506f2011-12-27 15:48:43 +02001539 slot = sdhci_pci_probe_slot(pdev, chip, first_bar, i);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001540 if (IS_ERR(slot)) {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001541 for (i--; i >= 0; i--)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001542 sdhci_pci_remove_slot(chip->slots[i]);
1543 ret = PTR_ERR(slot);
1544 goto free;
1545 }
1546
1547 chip->slots[i] = slot;
1548 }
1549
Adrian Hunterc43fd772011-10-17 10:52:44 +03001550 if (chip->allow_runtime_pm)
1551 sdhci_pci_runtime_pm_allow(&pdev->dev);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001552
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001553 return 0;
1554
1555free:
1556 pci_set_drvdata(pdev, NULL);
1557 kfree(chip);
1558
1559err:
1560 pci_disable_device(pdev);
1561 return ret;
1562}
1563
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001564static void sdhci_pci_remove(struct pci_dev *pdev)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001565{
1566 int i;
1567 struct sdhci_pci_chip *chip;
1568
1569 chip = pci_get_drvdata(pdev);
1570
1571 if (chip) {
Adrian Hunterc43fd772011-10-17 10:52:44 +03001572 if (chip->allow_runtime_pm)
1573 sdhci_pci_runtime_pm_forbid(&pdev->dev);
1574
Ameya Palandeb177bc92011-04-05 21:13:13 +03001575 for (i = 0; i < chip->num_slots; i++)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001576 sdhci_pci_remove_slot(chip->slots[i]);
1577
1578 pci_set_drvdata(pdev, NULL);
1579 kfree(chip);
1580 }
1581
1582 pci_disable_device(pdev);
1583}
1584
1585static struct pci_driver sdhci_driver = {
Ameya Palandeb177bc92011-04-05 21:13:13 +03001586 .name = "sdhci-pci",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001587 .id_table = pci_ids,
Ameya Palandeb177bc92011-04-05 21:13:13 +03001588 .probe = sdhci_pci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001589 .remove = sdhci_pci_remove,
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001590 .driver = {
1591 .pm = &sdhci_pci_pm_ops
1592 },
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001593};
1594
Sachin Kamatacc69642012-08-27 11:57:02 +05301595module_pci_driver(sdhci_driver);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001596
Pierre Ossman32710e82009-04-08 20:14:54 +02001597MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001598MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
1599MODULE_LICENSE("GPL");